| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- // Copyright 2017-2018 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <esp_https_ota.h>
- #include <esp_log.h>
- #define IMAGE_HEADER_SIZE sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t) + sizeof(esp_app_desc_t) + 1
- #define DEFAULT_OTA_BUF_SIZE IMAGE_HEADER_SIZE
- static const char *TAG = "esp_https_ota";
- typedef enum {
- ESP_HTTPS_OTA_INIT,
- ESP_HTTPS_OTA_BEGIN,
- ESP_HTTPS_OTA_IN_PROGRESS,
- ESP_HTTPS_OTA_SUCCESS,
- } esp_https_ota_state;
- struct esp_https_ota_handle {
- esp_ota_handle_t update_handle;
- const esp_partition_t *update_partition;
- esp_http_client_handle_t http_client;
- char *ota_upgrade_buf;
- size_t ota_upgrade_buf_size;
- int binary_file_len;
- esp_https_ota_state state;
- };
- typedef struct esp_https_ota_handle esp_https_ota_t;
- static bool process_again(int status_code)
- {
- switch (status_code) {
- case HttpStatus_MovedPermanently:
- case HttpStatus_Found:
- case HttpStatus_Unauthorized:
- return true;
- default:
- return false;
- }
- return false;
- }
- static esp_err_t _http_handle_response_code(esp_http_client_handle_t http_client, int status_code)
- {
- esp_err_t err;
- if (status_code == HttpStatus_MovedPermanently || status_code == HttpStatus_Found) {
- err = esp_http_client_set_redirection(http_client);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "URL redirection Failed");
- return err;
- }
- } else if (status_code == HttpStatus_Unauthorized) {
- esp_http_client_add_auth(http_client);
- }
-
- char upgrade_data_buf[DEFAULT_OTA_BUF_SIZE];
- if (process_again(status_code)) {
- while (1) {
- int data_read = esp_http_client_read(http_client, upgrade_data_buf, DEFAULT_OTA_BUF_SIZE);
- if (data_read < 0) {
- ESP_LOGE(TAG, "Error: SSL data read error");
- return ESP_FAIL;
- } else if (data_read == 0) {
- return ESP_OK;
- }
- }
- }
- return ESP_OK;
- }
- static esp_err_t _http_connect(esp_http_client_handle_t http_client)
- {
- esp_err_t err = ESP_FAIL;
- int status_code;
- do {
- err = esp_http_client_open(http_client, 0);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "Failed to open HTTP connection: %s", esp_err_to_name(err));
- return err;
- }
- esp_http_client_fetch_headers(http_client);
- status_code = esp_http_client_get_status_code(http_client);
- if (_http_handle_response_code(http_client, status_code) != ESP_OK) {
- return ESP_FAIL;
- }
- } while (process_again(status_code));
- return err;
- }
- static void _http_cleanup(esp_http_client_handle_t client)
- {
- esp_http_client_close(client);
- esp_http_client_cleanup(client);
- }
- static esp_err_t _ota_write(esp_https_ota_t *https_ota_handle, const void *buffer, size_t buf_len)
- {
- if (buffer == NULL || https_ota_handle == NULL) {
- return ESP_FAIL;
- }
- esp_err_t err = esp_ota_write(https_ota_handle->update_handle, buffer, buf_len);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "Error: esp_ota_write failed! err=0x%d", err);
- } else {
- https_ota_handle->binary_file_len += buf_len;
- ESP_LOGD(TAG, "Written image length %d", https_ota_handle->binary_file_len);
- err = ESP_ERR_HTTPS_OTA_IN_PROGRESS;
- }
- return err;
- }
- esp_err_t esp_https_ota_begin(esp_https_ota_config_t *ota_config, esp_https_ota_handle_t *handle)
- {
- esp_err_t err;
- if (handle == NULL || ota_config == NULL || ota_config->http_config == NULL) {
- ESP_LOGE(TAG, "esp_https_ota_begin: Invalid argument");
- if (handle) {
- *handle = NULL;
- }
- return ESP_ERR_INVALID_ARG;
- }
- #if !CONFIG_OTA_ALLOW_HTTP
- if (!ota_config->http_config->cert_pem) {
- ESP_LOGE(TAG, "Server certificate not found in esp_http_client config");
- *handle = NULL;
- return ESP_ERR_INVALID_ARG;
- }
- #endif
- esp_https_ota_t *https_ota_handle = calloc(1, sizeof(esp_https_ota_t));
- if (!https_ota_handle) {
- ESP_LOGE(TAG, "Couldn't allocate memory to upgrade data buffer");
- *handle = NULL;
- return ESP_ERR_NO_MEM;
- }
-
- /* Initiate HTTP Connection */
- https_ota_handle->http_client = esp_http_client_init(ota_config->http_config);
- if (https_ota_handle->http_client == NULL) {
- ESP_LOGE(TAG, "Failed to initialise HTTP connection");
- err = ESP_FAIL;
- goto failure;
- }
- err = _http_connect(https_ota_handle->http_client);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "Failed to establish HTTP connection");
- goto http_cleanup;
- }
- https_ota_handle->update_partition = NULL;
- ESP_LOGI(TAG, "Starting OTA...");
- https_ota_handle->update_partition = esp_ota_get_next_update_partition(NULL);
- if (https_ota_handle->update_partition == NULL) {
- ESP_LOGE(TAG, "Passive OTA partition not found");
- err = ESP_FAIL;
- goto http_cleanup;
- }
- ESP_LOGI(TAG, "Writing to partition subtype %d at offset 0x%x",
- https_ota_handle->update_partition->subtype, https_ota_handle->update_partition->address);
- const int alloc_size = (ota_config->http_config->buffer_size > DEFAULT_OTA_BUF_SIZE) ?
- ota_config->http_config->buffer_size : DEFAULT_OTA_BUF_SIZE;
- https_ota_handle->ota_upgrade_buf = (char *)malloc(alloc_size);
- if (!https_ota_handle->ota_upgrade_buf) {
- ESP_LOGE(TAG, "Couldn't allocate memory to upgrade data buffer");
- err = ESP_ERR_NO_MEM;
- goto http_cleanup;
- }
- https_ota_handle->ota_upgrade_buf_size = alloc_size;
- https_ota_handle->binary_file_len = 0;
- *handle = (esp_https_ota_handle_t)https_ota_handle;
- https_ota_handle->state = ESP_HTTPS_OTA_BEGIN;
- return ESP_OK;
- http_cleanup:
- _http_cleanup(https_ota_handle->http_client);
- failure:
- free(https_ota_handle);
- *handle = NULL;
- return err;
- }
- esp_err_t esp_https_ota_get_img_desc(esp_https_ota_handle_t https_ota_handle, esp_app_desc_t *new_app_info)
- {
- esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle;
- if (handle == NULL || new_app_info == NULL) {
- ESP_LOGE(TAG, "esp_https_ota_read_img_desc: Invalid argument");
- return ESP_ERR_INVALID_ARG;
- }
- if (handle->state < ESP_HTTPS_OTA_BEGIN) {
- ESP_LOGE(TAG, "esp_https_ota_read_img_desc: Invalid state");
- return ESP_FAIL;
- }
- int data_read_size = IMAGE_HEADER_SIZE;
- int data_read = esp_http_client_read(handle->http_client,
- handle->ota_upgrade_buf,
- data_read_size);
- if (data_read < 0) {
- return ESP_FAIL;
- }
- if (data_read >= sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t) + sizeof(esp_app_desc_t)) {
- memcpy(new_app_info, &handle->ota_upgrade_buf[sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t)], sizeof(esp_app_desc_t));
- handle->binary_file_len += data_read;
- } else {
- return ESP_FAIL;
- }
- return ESP_OK;
- }
- esp_err_t esp_https_ota_perform(esp_https_ota_handle_t https_ota_handle)
- {
- esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle;
- if (handle == NULL) {
- ESP_LOGE(TAG, "esp_https_ota_perform: Invalid argument");
- return ESP_ERR_INVALID_ARG;
- }
- if (handle->state < ESP_HTTPS_OTA_BEGIN) {
- ESP_LOGE(TAG, "esp_https_ota_perform: Invalid state");
- return ESP_FAIL;
- }
- esp_err_t err;
- int data_read;
- switch (handle->state) {
- case ESP_HTTPS_OTA_BEGIN:
- err = esp_ota_begin(handle->update_partition, OTA_SIZE_UNKNOWN, &handle->update_handle);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "esp_ota_begin failed (%s)", esp_err_to_name(err));
- return err;
- }
- handle->state = ESP_HTTPS_OTA_IN_PROGRESS;
- /* In case `esp_https_ota_read_img_desc` was invoked first,
- then the image data read there should be written to OTA partition
- */
- if (handle->binary_file_len) {
- return _ota_write(handle, (const void *)handle->ota_upgrade_buf, handle->binary_file_len);
- }
- /* falls through */
- case ESP_HTTPS_OTA_IN_PROGRESS:
- data_read = esp_http_client_read(handle->http_client,
- handle->ota_upgrade_buf,
- handle->ota_upgrade_buf_size);
- if (data_read == 0) {
- ESP_LOGI(TAG, "Connection closed, all data received");
- } else if (data_read < 0) {
- ESP_LOGE(TAG, "Error: SSL data read error");
- return ESP_FAIL;
- } else if (data_read > 0) {
- return _ota_write(handle, (const void *)handle->ota_upgrade_buf, data_read);
- }
- handle->state = ESP_HTTPS_OTA_SUCCESS;
- break;
- default:
- ESP_LOGE(TAG, "Invalid ESP HTTPS OTA State");
- return ESP_FAIL;
- break;
- }
- return ESP_OK;
- }
- esp_err_t esp_https_ota_finish(esp_https_ota_handle_t https_ota_handle)
- {
- esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle;
- if (handle == NULL) {
- return ESP_ERR_INVALID_ARG;
- }
- if (handle->state < ESP_HTTPS_OTA_BEGIN) {
- return ESP_FAIL;
- }
- esp_err_t err = ESP_OK;
- switch (handle->state) {
- case ESP_HTTPS_OTA_SUCCESS:
- case ESP_HTTPS_OTA_IN_PROGRESS:
- err = esp_ota_end(handle->update_handle);
- /* falls through */
- case ESP_HTTPS_OTA_BEGIN:
- if (handle->ota_upgrade_buf) {
- free(handle->ota_upgrade_buf);
- }
- if (handle->http_client) {
- _http_cleanup(handle->http_client);
- }
- break;
- default:
- ESP_LOGE(TAG, "Invalid ESP HTTPS OTA State");
- break;
- }
- if ((err == ESP_OK) && (handle->state == ESP_HTTPS_OTA_SUCCESS)) {
- esp_err_t err = esp_ota_set_boot_partition(handle->update_partition);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "esp_ota_set_boot_partition failed! err=0x%d", err);
- }
- }
- free(handle);
- return err;
- }
- int esp_https_ota_get_image_len_read(esp_https_ota_handle_t https_ota_handle)
- {
- esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle;
- if (handle == NULL) {
- return -1;
- }
- if (handle->state < ESP_HTTPS_OTA_IN_PROGRESS) {
- return -1;
- }
- return handle->binary_file_len;
- }
- esp_err_t esp_https_ota(const esp_http_client_config_t *config)
- {
- if (!config) {
- ESP_LOGE(TAG, "esp_http_client config not found");
- return ESP_ERR_INVALID_ARG;
- }
- esp_https_ota_config_t ota_config = {
- .http_config = config,
- };
- esp_https_ota_handle_t https_ota_handle = NULL;
- esp_err_t err = esp_https_ota_begin(&ota_config, &https_ota_handle);
- if (https_ota_handle == NULL) {
- return ESP_FAIL;
- }
- while (1) {
- err = esp_https_ota_perform(https_ota_handle);
- if (err != ESP_ERR_HTTPS_OTA_IN_PROGRESS) {
- break;
- }
- }
- esp_err_t ota_finish_err = esp_https_ota_finish(https_ota_handle);
- if (err != ESP_OK) {
- /* If there was an error in esp_https_ota_perform(),
- then it is given more precedence than error in esp_https_ota_finish()
- */
- return err;
- } else if (ota_finish_err != ESP_OK) {
- return ota_finish_err;
- }
- return ESP_OK;
- }
|