blob: 334c005a820b5a263ee141c976a662f49cb0f7b3 [file] [log] [blame]
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +02001/**
2 * \file ssl_cookie.h
3 *
4 * \brief DTLS cookie callbacks implementation
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020021 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#ifndef MBEDTLS_SSL_COOKIE_H
23#define MBEDTLS_SSL_COOKIE_H
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020024
Ron Eldor8b0cf2e2018-02-14 16:02:41 +020025#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amero6609aef2019-07-04 20:01:14 +010026#include "mbedtls/config.h"
Ron Eldor8b0cf2e2018-02-14 16:02:41 +020027#else
28#include MBEDTLS_CONFIG_FILE
29#endif
30
Jaeden Amero6609aef2019-07-04 20:01:14 +010031#include "mbedtls/ssl.h"
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020032
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020033#if defined(MBEDTLS_THREADING_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010034#include "mbedtls/threading.h"
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020035#endif
36
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020037/**
38 * \name SECTION: Module settings
39 *
40 * The configuration options you can set for this module are in this section.
41 * Either change them in config.h or define them on the compiler command line.
42 * \{
43 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020044#ifndef MBEDTLS_SSL_COOKIE_TIMEOUT
45#define MBEDTLS_SSL_COOKIE_TIMEOUT 60 /**< Default expiration delay of DTLS cookies, in seconds if HAVE_TIME, or in number of cookies issued */
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020046#endif
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020047
Andrzej Kurek73afe272022-01-24 10:31:06 -050048/** \} name SECTION: Module settings */
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020049
50#ifdef __cplusplus
51extern "C" {
52#endif
53
54/**
55 * \brief Context for the default cookie functions.
56 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010057typedef struct mbedtls_ssl_cookie_ctx {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058 mbedtls_md_context_t hmac_ctx; /*!< context for the HMAC portion */
59#if !defined(MBEDTLS_HAVE_TIME)
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020060 unsigned long serial; /*!< serial number for expiration */
Manuel Pégourié-Gonnarde9030812014-07-23 21:29:11 +020061#endif
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020062 unsigned long timeout; /*!< timeout delay, in seconds if HAVE_TIME,
63 or in number of tickets issued */
64
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020065#if defined(MBEDTLS_THREADING_C)
66 mbedtls_threading_mutex_t mutex;
67#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020068} mbedtls_ssl_cookie_ctx;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020069
70/**
71 * \brief Initialize cookie context
72 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010073void mbedtls_ssl_cookie_init(mbedtls_ssl_cookie_ctx *ctx);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020074
75/**
76 * \brief Setup cookie context (generate keys)
77 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010078int mbedtls_ssl_cookie_setup(mbedtls_ssl_cookie_ctx *ctx,
79 int (*f_rng)(void *, unsigned char *, size_t),
80 void *p_rng);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020081
82/**
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020083 * \brief Set expiration delay for cookies
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084 * (Default MBEDTLS_SSL_COOKIE_TIMEOUT)
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020085 *
Shaun Case0e7791f2021-12-20 21:14:10 -080086 * \param ctx Cookie context
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020087 * \param delay Delay, in seconds if HAVE_TIME, or in number of cookies
88 * issued in the meantime.
89 * 0 to disable expiration (NOT recommended)
90 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010091void mbedtls_ssl_cookie_set_timeout(mbedtls_ssl_cookie_ctx *ctx, unsigned long delay);
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020092
93/**
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020094 * \brief Free cookie context
95 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010096void mbedtls_ssl_cookie_free(mbedtls_ssl_cookie_ctx *ctx);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020097
98/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020099 * \brief Generate cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200100 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200101mbedtls_ssl_cookie_write_t mbedtls_ssl_cookie_write;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200102
103/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200104 * \brief Verify cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200105 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106mbedtls_ssl_cookie_check_t mbedtls_ssl_cookie_check;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200107
108#ifdef __cplusplus
109}
110#endif
111
112#endif /* ssl_cookie.h */