blob: ec54f614d354d703ee61c8454d30579bd0306792 [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
Dave Rodgman16799db2023-11-02 19:47:20 +00008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +02009 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020010#ifndef MBEDTLS_SSL_COOKIE_H
11#define MBEDTLS_SSL_COOKIE_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020012#include "mbedtls/private_access.h"
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020013
Bence Szépkútic662b362021-05-27 11:25:03 +020014#include "mbedtls/build_info.h"
Ron Eldor8b0cf2e2018-02-14 16:02:41 +020015
Jaeden Amero6609aef2019-07-04 20:01:14 +010016#include "mbedtls/ssl.h"
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020017
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020018
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020019/**
20 * \name SECTION: Module settings
21 *
22 * The configuration options you can set for this module are in this section.
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020023 * Either change them in mbedtls_config.h or define them on the compiler command line.
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020024 * \{
25 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020026#ifndef MBEDTLS_SSL_COOKIE_TIMEOUT
27#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 +020028#endif
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020029
Andrzej Kurek38d4fdd2021-12-28 16:22:52 +010030/** \} name SECTION: Module settings */
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020031
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/**
37 * \brief Context for the default cookie functions.
38 */
Gilles Peskine449bd832023-01-11 14:50:10 +010039typedef struct mbedtls_ssl_cookie_ctx {
Neil Armstrong488a40e2022-03-22 10:41:38 +010040 mbedtls_svc_key_id_t MBEDTLS_PRIVATE(psa_hmac_key); /*!< key id for the HMAC portion */
Neil Armstrongbca99ee2022-03-04 10:20:20 +010041 psa_algorithm_t MBEDTLS_PRIVATE(psa_hmac_alg); /*!< key algorithm for the HMAC portion */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020042#if !defined(MBEDTLS_HAVE_TIME)
Mateusz Starzyk2abe51c2021-06-07 11:08:01 +020043 unsigned long MBEDTLS_PRIVATE(serial); /*!< serial number for expiration */
Manuel Pégourié-Gonnarde9030812014-07-23 21:29:11 +020044#endif
Mateusz Starzyk846f0212021-05-19 19:44:07 +020045 unsigned long MBEDTLS_PRIVATE(timeout); /*!< timeout delay, in seconds if HAVE_TIME,
Gilles Peskine449bd832023-01-11 14:50:10 +010046 or in number of tickets issued */
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020047
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020048} mbedtls_ssl_cookie_ctx;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020049
50/**
51 * \brief Initialize cookie context
52 */
Gilles Peskine449bd832023-01-11 14:50:10 +010053void mbedtls_ssl_cookie_init(mbedtls_ssl_cookie_ctx *ctx);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020054
55/**
56 * \brief Setup cookie context (generate keys)
57 */
Ben Taylor0cfe54e2025-03-05 15:49:08 +000058int mbedtls_ssl_cookie_setup(mbedtls_ssl_cookie_ctx *ctx);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020059
60/**
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020061 * \brief Set expiration delay for cookies
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020062 * (Default MBEDTLS_SSL_COOKIE_TIMEOUT)
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020063 *
Shaun Case8b0ecbc2021-12-20 21:14:10 -080064 * \param ctx Cookie context
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020065 * \param delay Delay, in seconds if HAVE_TIME, or in number of cookies
66 * issued in the meantime.
67 * 0 to disable expiration (NOT recommended)
68 */
Gilles Peskine449bd832023-01-11 14:50:10 +010069void mbedtls_ssl_cookie_set_timeout(mbedtls_ssl_cookie_ctx *ctx, unsigned long delay);
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020070
71/**
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020072 * \brief Free cookie context
73 */
Gilles Peskine449bd832023-01-11 14:50:10 +010074void mbedtls_ssl_cookie_free(mbedtls_ssl_cookie_ctx *ctx);
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020075
76/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020077 * \brief Generate cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020078 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020079mbedtls_ssl_cookie_write_t mbedtls_ssl_cookie_write;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020080
81/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020082 * \brief Verify cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020083 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084mbedtls_ssl_cookie_check_t mbedtls_ssl_cookie_check;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020085
86#ifdef __cplusplus
87}
88#endif
89
90#endif /* ssl_cookie.h */