| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 1 | /** | 
|  | 2 | * \file ssl_cookie.h | 
|  | 3 | * | 
|  | 4 | * \brief DTLS cookie callbacks implementation | 
| Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 5 | */ | 
|  | 6 | /* | 
| Manuel Pégourié-Gonnard | 6fb8187 | 2015-07-27 11:11:48 +0200 | [diff] [blame] | 7 | *  Copyright (C) 2006-2015, ARM Limited, All Rights Reserved | 
| Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 8 | *  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é-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 21 | * | 
| Manuel Pégourié-Gonnard | e4d4890 | 2015-03-06 13:40:52 +0000 | [diff] [blame] | 22 | *  This file is part of mbed TLS (https://tls.mbed.org) | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 23 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 24 | #ifndef MBEDTLS_SSL_COOKIE_H | 
|  | 25 | #define MBEDTLS_SSL_COOKIE_H | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 26 |  | 
| Ron Eldor | 8b0cf2e | 2018-02-14 16:02:41 +0200 | [diff] [blame] | 27 | #if !defined(MBEDTLS_CONFIG_FILE) | 
|  | 28 | #include "config.h" | 
|  | 29 | #else | 
|  | 30 | #include MBEDTLS_CONFIG_FILE | 
|  | 31 | #endif | 
|  | 32 |  | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 33 | #include "ssl.h" | 
|  | 34 |  | 
| Manuel Pégourié-Gonnard | 2a84dfd | 2015-05-28 15:48:09 +0200 | [diff] [blame] | 35 | #if defined(MBEDTLS_THREADING_C) | 
|  | 36 | #include "threading.h" | 
|  | 37 | #endif | 
|  | 38 |  | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 39 | /** | 
|  | 40 | * \name SECTION: Module settings | 
|  | 41 | * | 
|  | 42 | * The configuration options you can set for this module are in this section. | 
|  | 43 | * Either change them in config.h or define them on the compiler command line. | 
|  | 44 | * \{ | 
|  | 45 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 46 | #ifndef MBEDTLS_SSL_COOKIE_TIMEOUT | 
|  | 47 | #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é-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 48 | #endif | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 49 |  | 
|  | 50 | /* \} name SECTION: Module settings */ | 
|  | 51 |  | 
|  | 52 | #ifdef __cplusplus | 
|  | 53 | extern "C" { | 
|  | 54 | #endif | 
|  | 55 |  | 
|  | 56 | /** | 
|  | 57 | * \brief          Context for the default cookie functions. | 
|  | 58 | */ | 
| Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 59 | typedef struct mbedtls_ssl_cookie_ctx | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 60 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 61 | mbedtls_md_context_t    hmac_ctx;   /*!< context for the HMAC portion   */ | 
|  | 62 | #if !defined(MBEDTLS_HAVE_TIME) | 
| Manuel Pégourié-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 63 | unsigned long   serial;     /*!< serial number for expiration   */ | 
| Manuel Pégourié-Gonnard | e903081 | 2014-07-23 21:29:11 +0200 | [diff] [blame] | 64 | #endif | 
| Manuel Pégourié-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 65 | unsigned long   timeout;    /*!< timeout delay, in seconds if HAVE_TIME, | 
|  | 66 | or in number of tickets issued */ | 
|  | 67 |  | 
| Manuel Pégourié-Gonnard | 2a84dfd | 2015-05-28 15:48:09 +0200 | [diff] [blame] | 68 | #if defined(MBEDTLS_THREADING_C) | 
|  | 69 | mbedtls_threading_mutex_t mutex; | 
|  | 70 | #endif | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 71 | } mbedtls_ssl_cookie_ctx; | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 72 |  | 
|  | 73 | /** | 
|  | 74 | * \brief          Initialize cookie context | 
|  | 75 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 76 | void mbedtls_ssl_cookie_init( mbedtls_ssl_cookie_ctx *ctx ); | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 77 |  | 
|  | 78 | /** | 
|  | 79 | * \brief          Setup cookie context (generate keys) | 
|  | 80 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 81 | int mbedtls_ssl_cookie_setup( mbedtls_ssl_cookie_ctx *ctx, | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 82 | int (*f_rng)(void *, unsigned char *, size_t), | 
|  | 83 | void *p_rng ); | 
|  | 84 |  | 
|  | 85 | /** | 
| Manuel Pégourié-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 86 | * \brief          Set expiration delay for cookies | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 87 | *                 (Default MBEDTLS_SSL_COOKIE_TIMEOUT) | 
| Manuel Pégourié-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 88 | * | 
|  | 89 | * \param ctx      Cookie contex | 
|  | 90 | * \param delay    Delay, in seconds if HAVE_TIME, or in number of cookies | 
|  | 91 | *                 issued in the meantime. | 
|  | 92 | *                 0 to disable expiration (NOT recommended) | 
|  | 93 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 94 | void mbedtls_ssl_cookie_set_timeout( mbedtls_ssl_cookie_ctx *ctx, unsigned long delay ); | 
| Manuel Pégourié-Gonnard | bef8f09 | 2014-07-23 23:40:29 +0200 | [diff] [blame] | 95 |  | 
|  | 96 | /** | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 97 | * \brief          Free cookie context | 
|  | 98 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 99 | void mbedtls_ssl_cookie_free( mbedtls_ssl_cookie_ctx *ctx ); | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 100 |  | 
|  | 101 | /** | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 102 | * \brief          Generate cookie, see \c mbedtls_ssl_cookie_write_t | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 103 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 104 | mbedtls_ssl_cookie_write_t mbedtls_ssl_cookie_write; | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 105 |  | 
|  | 106 | /** | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 107 | * \brief          Verify cookie, see \c mbedtls_ssl_cookie_write_t | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 108 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 109 | mbedtls_ssl_cookie_check_t mbedtls_ssl_cookie_check; | 
| Manuel Pégourié-Gonnard | 232edd4 | 2014-07-23 16:56:27 +0200 | [diff] [blame] | 110 |  | 
|  | 111 | #ifdef __cplusplus | 
|  | 112 | } | 
|  | 113 | #endif | 
|  | 114 |  | 
|  | 115 | #endif /* ssl_cookie.h */ |