blob: 80b65bbbb987f889f2c79bb3126b414fb475f70b [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/*
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02007 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
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é-Gonnarde4d48902015-03-06 13:40:52 +000022 * This file is part of mbed TLS (https://tls.mbed.org)
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020023 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_SSL_COOKIE_H
25#define MBEDTLS_SSL_COOKIE_H
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020026
27#include "ssl.h"
28
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020029#if defined(MBEDTLS_THREADING_C)
30#include "threading.h"
31#endif
32
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020033/**
34 * \name SECTION: Module settings
35 *
36 * The configuration options you can set for this module are in this section.
37 * Either change them in config.h or define them on the compiler command line.
38 * \{
39 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040#ifndef MBEDTLS_SSL_COOKIE_TIMEOUT
41#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 +020042#endif
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020043
44/* \} name SECTION: Module settings */
45
46#ifdef __cplusplus
47extern "C" {
48#endif
49
50/**
51 * \brief Context for the default cookie functions.
52 */
53typedef struct
54{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020055 mbedtls_md_context_t hmac_ctx; /*!< context for the HMAC portion */
56#if !defined(MBEDTLS_HAVE_TIME)
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020057 unsigned long serial; /*!< serial number for expiration */
Manuel Pégourié-Gonnarde9030812014-07-23 21:29:11 +020058#endif
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020059 unsigned long timeout; /*!< timeout delay, in seconds if HAVE_TIME,
60 or in number of tickets issued */
61
Manuel Pégourié-Gonnard2a84dfd2015-05-28 15:48:09 +020062#if defined(MBEDTLS_THREADING_C)
63 mbedtls_threading_mutex_t mutex;
64#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020065} mbedtls_ssl_cookie_ctx;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020066
67/**
68 * \brief Initialize cookie context
69 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020070void mbedtls_ssl_cookie_init( mbedtls_ssl_cookie_ctx *ctx );
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020071
72/**
73 * \brief Setup cookie context (generate keys)
74 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020075int mbedtls_ssl_cookie_setup( mbedtls_ssl_cookie_ctx *ctx,
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020076 int (*f_rng)(void *, unsigned char *, size_t),
77 void *p_rng );
78
79/**
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020080 * \brief Set expiration delay for cookies
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081 * (Default MBEDTLS_SSL_COOKIE_TIMEOUT)
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020082 *
83 * \param ctx Cookie contex
84 * \param delay Delay, in seconds if HAVE_TIME, or in number of cookies
85 * issued in the meantime.
86 * 0 to disable expiration (NOT recommended)
87 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020088void mbedtls_ssl_cookie_set_timeout( mbedtls_ssl_cookie_ctx *ctx, unsigned long delay );
Manuel Pégourié-Gonnardbef8f092014-07-23 23:40:29 +020089
90/**
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020091 * \brief Free cookie context
92 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020093void mbedtls_ssl_cookie_free( mbedtls_ssl_cookie_ctx *ctx );
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020094
95/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020096 * \brief Generate cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020097 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020098mbedtls_ssl_cookie_write_t mbedtls_ssl_cookie_write;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020099
100/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200101 * \brief Verify cookie, see \c mbedtls_ssl_cookie_write_t
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200102 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200103mbedtls_ssl_cookie_check_t mbedtls_ssl_cookie_check;
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +0200104
105#ifdef __cplusplus
106}
107#endif
108
109#endif /* ssl_cookie.h */