2021-05-31 08:06:09 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2018-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-10-31 18:17:00 -04:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "esp_https_server.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "sdkconfig.h"
|
2019-05-28 07:25:49 -04:00
|
|
|
#include "esp_tls.h"
|
2018-10-31 18:17:00 -04:00
|
|
|
|
|
|
|
const static char *TAG = "esp_https_server";
|
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
typedef struct httpd_ssl_ctx {
|
|
|
|
esp_tls_cfg_server_t *tls_cfg;
|
|
|
|
httpd_open_func_t open_fn;
|
2021-10-08 04:49:57 -04:00
|
|
|
esp_https_server_user_cb *user_cb;
|
2020-09-03 14:28:47 -04:00
|
|
|
} httpd_ssl_ctx_t;
|
|
|
|
|
2018-10-31 18:17:00 -04:00
|
|
|
/**
|
|
|
|
* SSL socket close handler
|
|
|
|
*
|
|
|
|
* @param[in] ctx - session transport context (SSL context we stored there)
|
|
|
|
*/
|
|
|
|
static void httpd_ssl_close(void *ctx)
|
|
|
|
{
|
|
|
|
assert(ctx != NULL);
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_server_session_delete(ctx);
|
2018-10-31 18:17:00 -04:00
|
|
|
ESP_LOGD(TAG, "Secure socket closed");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SSL socket pending-check function
|
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param sockfd
|
|
|
|
* @return number of pending bytes, negative on error
|
|
|
|
*/
|
|
|
|
static int httpd_ssl_pending(httpd_handle_t server, int sockfd)
|
|
|
|
{
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_t *tls = httpd_sess_get_transport_ctx(server, sockfd);
|
|
|
|
assert(tls != NULL);
|
|
|
|
return esp_tls_get_bytes_avail(tls);
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Receive from a SSL socket
|
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param sockfd
|
|
|
|
* @param buf
|
|
|
|
* @param buf_len
|
|
|
|
* @param flags
|
|
|
|
* @return bytes read, negative on error
|
|
|
|
*/
|
|
|
|
static int httpd_ssl_recv(httpd_handle_t server, int sockfd, char *buf, size_t buf_len, int flags)
|
|
|
|
{
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_t *tls = httpd_sess_get_transport_ctx(server, sockfd);
|
|
|
|
assert(tls != NULL);
|
|
|
|
return esp_tls_conn_read(tls, buf, buf_len);
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send to a SSL socket
|
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param sockfd
|
|
|
|
* @param buf
|
|
|
|
* @param buf_len
|
|
|
|
* @param flags
|
|
|
|
* @return bytes sent, negative on error
|
|
|
|
*/
|
|
|
|
static int httpd_ssl_send(httpd_handle_t server, int sockfd, const char *buf, size_t buf_len, int flags)
|
|
|
|
{
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_t *tls = httpd_sess_get_transport_ctx(server, sockfd);
|
|
|
|
assert(tls != NULL);
|
|
|
|
return esp_tls_conn_write(tls, buf, buf_len);
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a SSL socket for the server.
|
|
|
|
* The fd is already open and ready to read / write raw data.
|
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param sockfd - raw socket fd
|
|
|
|
* @return success
|
|
|
|
*/
|
|
|
|
static esp_err_t httpd_ssl_open(httpd_handle_t server, int sockfd)
|
|
|
|
{
|
|
|
|
assert(server != NULL);
|
|
|
|
|
|
|
|
// Retrieve the SSL context from the global context field (set in config)
|
2020-09-03 14:28:47 -04:00
|
|
|
httpd_ssl_ctx_t *global_ctx = httpd_get_global_transport_ctx(server);
|
2018-10-31 18:17:00 -04:00
|
|
|
assert(global_ctx != NULL);
|
|
|
|
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_t *tls = (esp_tls_t *)calloc(1, sizeof(esp_tls_t));
|
|
|
|
if (!tls) {
|
2018-10-31 18:17:00 -04:00
|
|
|
return ESP_ERR_NO_MEM;
|
|
|
|
}
|
2019-05-28 07:25:49 -04:00
|
|
|
ESP_LOGI(TAG, "performing session handshake");
|
2020-09-03 14:28:47 -04:00
|
|
|
int ret = esp_tls_server_session_create(global_ctx->tls_cfg, sockfd, tls);
|
2019-05-28 07:25:49 -04:00
|
|
|
if (ret != 0) {
|
|
|
|
ESP_LOGE(TAG, "esp_tls_create_server_session failed");
|
|
|
|
goto fail;
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Store the SSL session into the context field of the HTTPD session object
|
2019-05-28 07:25:49 -04:00
|
|
|
httpd_sess_set_transport_ctx(server, sockfd, tls, httpd_ssl_close);
|
2018-10-31 18:17:00 -04:00
|
|
|
|
|
|
|
// Set rx/tx/pending override functions
|
2018-11-12 03:49:20 -05:00
|
|
|
httpd_sess_set_send_override(server, sockfd, httpd_ssl_send);
|
|
|
|
httpd_sess_set_recv_override(server, sockfd, httpd_ssl_recv);
|
|
|
|
httpd_sess_set_pending_override(server, sockfd, httpd_ssl_pending);
|
2018-10-31 18:17:00 -04:00
|
|
|
|
|
|
|
// all access should now go through SSL
|
|
|
|
|
|
|
|
ESP_LOGD(TAG, "Secure socket open");
|
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
if (global_ctx->open_fn) {
|
|
|
|
(global_ctx->open_fn)(server, sockfd);
|
|
|
|
}
|
2021-10-08 04:49:57 -04:00
|
|
|
|
|
|
|
if (global_ctx->user_cb) {
|
|
|
|
esp_https_server_user_cb_arg_t user_cb_data = {0};
|
|
|
|
user_cb_data.tls = tls;
|
|
|
|
(global_ctx->user_cb)((void *)&user_cb_data);
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:17:00 -04:00
|
|
|
return ESP_OK;
|
2019-05-28 07:25:49 -04:00
|
|
|
fail:
|
|
|
|
esp_tls_server_session_delete(tls);
|
2018-10-31 18:17:00 -04:00
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tear down the HTTPD global transport context
|
|
|
|
*
|
|
|
|
* @param ctx
|
|
|
|
*/
|
|
|
|
static void free_secure_context(void *ctx)
|
|
|
|
{
|
|
|
|
assert(ctx != NULL);
|
2020-09-03 14:28:47 -04:00
|
|
|
httpd_ssl_ctx_t *ssl_ctx = ctx;
|
|
|
|
esp_tls_cfg_server_t *cfg = ssl_ctx->tls_cfg;
|
2018-10-31 18:17:00 -04:00
|
|
|
ESP_LOGI(TAG, "Server shuts down, releasing SSL context");
|
2019-12-03 06:22:06 -05:00
|
|
|
if (cfg->cacert_buf) {
|
|
|
|
free((void *)cfg->cacert_buf);
|
|
|
|
}
|
2019-08-02 03:20:02 -04:00
|
|
|
if (cfg->servercert_buf) {
|
|
|
|
free((void *)cfg->servercert_buf);
|
2019-05-28 07:25:49 -04:00
|
|
|
}
|
2019-08-02 03:20:02 -04:00
|
|
|
if (cfg->serverkey_buf) {
|
|
|
|
free((void *)cfg->serverkey_buf);
|
2019-05-28 07:25:49 -04:00
|
|
|
}
|
2021-05-19 11:16:59 -04:00
|
|
|
esp_tls_cfg_server_session_tickets_free(cfg);
|
2019-05-28 07:25:49 -04:00
|
|
|
free(cfg);
|
2020-09-03 14:28:47 -04:00
|
|
|
free(ssl_ctx);
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
static httpd_ssl_ctx_t *create_secure_context(const struct httpd_ssl_config *config)
|
2018-10-31 18:17:00 -04:00
|
|
|
{
|
2020-09-03 14:28:47 -04:00
|
|
|
httpd_ssl_ctx_t *ssl_ctx = calloc(1, sizeof(httpd_ssl_ctx_t));
|
|
|
|
if (!ssl_ctx) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-05-28 07:25:49 -04:00
|
|
|
esp_tls_cfg_server_t *cfg = (esp_tls_cfg_server_t *)calloc(1, sizeof(esp_tls_cfg_server_t));
|
|
|
|
if (!cfg) {
|
2020-09-03 14:28:47 -04:00
|
|
|
free(ssl_ctx);
|
2019-05-28 07:25:49 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2021-05-19 11:16:59 -04:00
|
|
|
|
|
|
|
if (config->session_tickets) {
|
|
|
|
if ( esp_tls_cfg_server_session_tickets_init(cfg) != ESP_OK ) {
|
|
|
|
ESP_LOGE(TAG, "Failed to init session ticket support");
|
|
|
|
free(ssl_ctx);
|
|
|
|
free(cfg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
ssl_ctx->tls_cfg = cfg;
|
2021-10-08 04:49:57 -04:00
|
|
|
ssl_ctx->user_cb = config->user_cb;
|
2022-03-27 05:01:30 -04:00
|
|
|
|
2022-01-24 23:33:31 -05:00
|
|
|
/* cacert = CA which signs client cert, or client cert itself */
|
|
|
|
if(config->cacert_pem != NULL) {
|
|
|
|
cfg->cacert_buf = (unsigned char *)malloc(config->cacert_len);
|
2020-02-17 12:29:31 -05:00
|
|
|
if (!cfg->cacert_buf) {
|
|
|
|
ESP_LOGE(TAG, "Could not allocate memory");
|
|
|
|
free(cfg);
|
2020-11-25 02:32:41 -05:00
|
|
|
free(ssl_ctx);
|
2020-02-17 12:29:31 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
2022-01-24 23:33:31 -05:00
|
|
|
memcpy((char *)cfg->cacert_buf, config->cacert_pem, config->cacert_len);
|
|
|
|
cfg->cacert_bytes = config->cacert_len;
|
2019-12-03 06:22:06 -05:00
|
|
|
}
|
2022-03-27 05:01:30 -04:00
|
|
|
|
2022-01-24 23:33:31 -05:00
|
|
|
/* servercert = cert of server itself */
|
|
|
|
cfg->servercert_buf = (unsigned char *)malloc(config->servercert_len);
|
2019-08-02 03:20:02 -04:00
|
|
|
if (!cfg->servercert_buf) {
|
2020-02-17 12:29:31 -05:00
|
|
|
ESP_LOGE(TAG, "Could not allocate memory");
|
2019-12-03 06:22:06 -05:00
|
|
|
free((void *)cfg->cacert_buf);
|
2019-05-28 07:25:49 -04:00
|
|
|
free(cfg);
|
2020-11-25 02:32:41 -05:00
|
|
|
free(ssl_ctx);
|
2019-05-28 07:25:49 -04:00
|
|
|
return NULL;
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
2022-01-24 23:33:31 -05:00
|
|
|
memcpy((char *)cfg->servercert_buf, config->servercert, config->servercert_len);
|
|
|
|
cfg->servercert_bytes = config->servercert_len;
|
2019-05-28 07:25:49 -04:00
|
|
|
|
2022-03-27 05:01:30 -04:00
|
|
|
/* Pass on secure element boolean */
|
|
|
|
cfg->use_secure_element = config->use_secure_element;
|
|
|
|
if (!cfg->use_secure_element) {
|
|
|
|
cfg->serverkey_buf = (unsigned char *)malloc(config->prvtkey_len);
|
|
|
|
if (!cfg->serverkey_buf) {
|
|
|
|
ESP_LOGE(TAG, "Could not allocate memory");
|
|
|
|
free((void *)cfg->servercert_buf);
|
|
|
|
free((void *)cfg->cacert_buf);
|
|
|
|
free(cfg);
|
|
|
|
free(ssl_ctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-05-28 07:25:49 -04:00
|
|
|
}
|
2022-03-27 05:01:30 -04:00
|
|
|
|
2019-08-02 03:20:02 -04:00
|
|
|
memcpy((char *)cfg->serverkey_buf, config->prvtkey_pem, config->prvtkey_len);
|
|
|
|
cfg->serverkey_bytes = config->prvtkey_len;
|
2019-05-28 07:25:49 -04:00
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
return ssl_ctx;
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Start the server */
|
|
|
|
esp_err_t httpd_ssl_start(httpd_handle_t *pHandle, struct httpd_ssl_config *config)
|
|
|
|
{
|
|
|
|
assert(config != NULL);
|
|
|
|
assert(pHandle != NULL);
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "Starting server");
|
|
|
|
|
2018-11-12 03:49:20 -05:00
|
|
|
if (HTTPD_SSL_TRANSPORT_SECURE == config->transport_mode) {
|
2019-05-28 07:25:49 -04:00
|
|
|
|
2020-09-03 14:28:47 -04:00
|
|
|
httpd_ssl_ctx_t *ssl_ctx = create_secure_context(config);
|
|
|
|
if (!ssl_ctx) {
|
2019-05-28 07:25:49 -04:00
|
|
|
return -1;
|
2018-10-31 18:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ESP_LOGD(TAG, "SSL context ready");
|
|
|
|
|
|
|
|
// set SSL specific config
|
2020-09-03 14:28:47 -04:00
|
|
|
config->httpd.global_transport_ctx = ssl_ctx;
|
2018-10-31 18:17:00 -04:00
|
|
|
config->httpd.global_transport_ctx_free_fn = free_secure_context;
|
2020-09-03 14:28:47 -04:00
|
|
|
if (config->httpd.open_fn) {
|
|
|
|
// since the httpd's open_fn is used for opening the SSL session, we save the configured
|
|
|
|
// user pointer and call it upon opening the ssl socket
|
|
|
|
ssl_ctx->open_fn = config->httpd.open_fn;
|
|
|
|
}
|
2018-10-31 18:17:00 -04:00
|
|
|
config->httpd.open_fn = httpd_ssl_open; // the open function configures the created SSL sessions
|
|
|
|
|
|
|
|
config->httpd.server_port = config->port_secure;
|
|
|
|
} else {
|
|
|
|
ESP_LOGD(TAG, "SSL disabled, using plain HTTP");
|
|
|
|
config->httpd.server_port = config->port_insecure;
|
|
|
|
}
|
|
|
|
|
|
|
|
httpd_handle_t handle = NULL;
|
|
|
|
|
|
|
|
esp_err_t ret = httpd_start(&handle, &config->httpd);
|
|
|
|
if (ret != ESP_OK) return ret;
|
|
|
|
|
|
|
|
*pHandle = handle;
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "Server listening on port %d", config->httpd.server_port);
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Stop the server */
|
|
|
|
void httpd_ssl_stop(httpd_handle_t handle)
|
|
|
|
{
|
|
|
|
httpd_stop(handle);
|
|
|
|
}
|