mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
3925365351
- Updated license headers - Re-enabled public headers and static analysis checks - Fix public header file check failure Co-authored-by: Aditya Patwardhan <aditya.patwardhan@espressif.com>
96 lines
2.6 KiB
C
96 lines
2.6 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef _DYNAMIC_IMPL_H_
|
|
#define _DYNAMIC_IMPL_H_
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
/* ToDo - Remove this once appropriate solution is available.
|
|
We need to define this for the file as ssl_misc.h uses private structures from mbedtls,
|
|
which are undefined if the following flag is not defined */
|
|
/* Many APIs in the file make use of this flag instead of `MBEDTLS_PRIVATE` */
|
|
/* ToDo - Replace them with proper getter-setter once they are added */
|
|
#define MBEDTLS_ALLOW_PRIVATE_ACCESS
|
|
|
|
#include "mbedtls/ssl.h"
|
|
#include "ssl_misc.h" // located at mbedtls/library/ssl_misc.h
|
|
#include "mbedtls/platform.h"
|
|
#include "esp_log.h"
|
|
|
|
#define TRACE_CHECK(_fn, _state) \
|
|
({ \
|
|
ESP_LOGV(TAG, "%d " _state " to do \"%s\"", __LINE__, # _fn); \
|
|
})
|
|
|
|
#define CHECK_OK(_fn) \
|
|
({ \
|
|
int _ret; \
|
|
\
|
|
TRACE_CHECK(_fn, "state"); \
|
|
\
|
|
if ((_ret = _fn) != 0) { \
|
|
ESP_LOGV(TAG, "\"%s\" result is %d", # _fn, -_ret); \
|
|
TRACE_CHECK(_fn, "fail"); \
|
|
return _ret; \
|
|
} \
|
|
\
|
|
TRACE_CHECK(_fn, "end"); \
|
|
\
|
|
})
|
|
|
|
typedef enum {
|
|
ESP_MBEDTLS_SSL_BUF_CACHED,
|
|
ESP_MBEDTLS_SSL_BUF_NO_CACHED,
|
|
} esp_mbedtls_ssl_buf_states;
|
|
|
|
struct esp_mbedtls_ssl_buf {
|
|
esp_mbedtls_ssl_buf_states state;
|
|
unsigned int len;
|
|
unsigned char buf[];
|
|
};
|
|
|
|
#define SSL_BUF_HEAD_OFFSET_SIZE ((int)offsetof(struct esp_mbedtls_ssl_buf, buf))
|
|
|
|
void esp_mbedtls_free_buf(unsigned char *buf);
|
|
|
|
int esp_mbedtls_setup_tx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
void esp_mbedtls_setup_rx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_reset_add_tx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_reset_add_rx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_reset_free_tx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
void esp_mbedtls_reset_free_rx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_add_tx_buffer(mbedtls_ssl_context *ssl, size_t buffer_len);
|
|
|
|
int esp_mbedtls_add_rx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_free_tx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
int esp_mbedtls_free_rx_buffer(mbedtls_ssl_context *ssl);
|
|
|
|
size_t esp_mbedtls_get_crt_size(mbedtls_x509_crt *cert, size_t *num);
|
|
|
|
#ifdef CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA
|
|
void esp_mbedtls_free_dhm(mbedtls_ssl_context *ssl);
|
|
|
|
void esp_mbedtls_free_keycert(mbedtls_ssl_context *ssl);
|
|
|
|
void esp_mbedtls_free_keycert_cert(mbedtls_ssl_context *ssl);
|
|
|
|
void esp_mbedtls_free_keycert_key(mbedtls_ssl_context *ssl);
|
|
#endif
|
|
|
|
#ifdef CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT
|
|
void esp_mbedtls_free_cacert(mbedtls_ssl_context *ssl);
|
|
#endif
|
|
|
|
#endif /* _DYNAMIC_IMPL_H_ */
|