Select one of the symbols to view example projects that use it.
 
Outline
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <esp_https_ota.h>
#include <esp_log.h>
#include <esp_ota_ops.h>
#include <errno.h>
#include <sys/param.h>
#include <inttypes.h>
ESP_HTTPS_OTA_EVENT
#define IMAGE_HEADER_SIZE
#define DEFAULT_OTA_BUF_SIZE
#define DEFAULT_REQUEST_SIZE
DEFAULT_MAX_AUTH_RETRIES
TAG
esp_https_ota_state
esp_https_ota_handle
esp_https_ota_t
redirection_required(int)
process_again(int)
_http_handle_response_code(esp_https_ota_t *, int)
_http_connect(esp_https_ota_t *)
_http_cleanup(esp_http_client_handle_t)
ota_event_name_table
#define ESP_HTTPS_OTA_EVENT_POST_TIMEOUT
#define ESP_HTTPS_OTA_EVENT_POST_TIMEOUT
esp_https_ota_dispatch_event(int32_t, const void *, size_t)
_ota_write(esp_https_ota_t *, const void *, size_t)
is_server_verification_enabled(const esp_https_ota_config_t *)
esp_https_ota_begin(const esp_https_ota_config_t *, esp_https_ota_handle_t *)
read_header(esp_https_ota_t *)
esp_https_ota_get_img_desc(esp_https_ota_handle_t, esp_app_desc_t *)
esp_ota_verify_chip_id(const void *)
esp_https_ota_perform(esp_https_ota_handle_t)
esp_https_ota_is_complete_data_received(esp_https_ota_handle_t)
esp_https_ota_finish(esp_https_ota_handle_t)
esp_https_ota_abort(esp_https_ota_handle_t)
esp_https_ota_get_status_code(esp_https_ota_handle_t)
esp_https_ota_get_image_len_read(esp_https_ota_handle_t)
esp_https_ota_get_image_size(esp_https_ota_handle_t)
esp_https_ota(const esp_https_ota_config_t *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_https_ota/src/esp_https_ota.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <esp_https_ota.h> #include <esp_log.h> #include <esp_ota_ops.h> #include <errno.h> #include <sys/param.h> #include <inttypes.h>9 includes ESP_EVENT_DEFINE_BASE(ESP_HTTPS_OTA_EVENT); #define IMAGE_HEADER_SIZE (1024) /* This is kept sufficiently large enough to cover image format headers * and also this defines default minimum OTA buffer chunk size *//* ... */ #define DEFAULT_OTA_BUF_SIZE (IMAGE_HEADER_SIZE) _Static_assert(DEFAULT_OTA_BUF_SIZE > (sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t) + sizeof(esp_app_desc_t) + 1), "OTA data buffer too small"); #define DEFAULT_REQUEST_SIZE (64 * 1024) static const int DEFAULT_MAX_AUTH_RETRIES = 10; 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; int image_length; int max_http_request_size; esp_https_ota_state state; bool bulk_flash_erase; bool partial_http_download; int max_authorization_retries; #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB decrypt_cb_t decrypt_cb; void *decrypt_user_ctx; uint16_t enc_img_header_size;/* ... */ #endif }{ ... }; typedef struct esp_https_ota_handle esp_https_ota_t; static bool redirection_required(int status_code) { switch (status_code) { case HttpStatus_MovedPermanently: case HttpStatus_Found: case HttpStatus_SeeOther: case HttpStatus_TemporaryRedirect: case HttpStatus_PermanentRedirect: return true;... default: return false;... }{...} return false; }{ ... } static bool process_again(int status_code) { switch (status_code) { case HttpStatus_MovedPermanently: case HttpStatus_Found: case HttpStatus_SeeOther: case HttpStatus_TemporaryRedirect: case HttpStatus_PermanentRedirect: case HttpStatus_Unauthorized: return true;... default: return false;... }{...} return false; }{ ... } static esp_err_t _http_handle_response_code(esp_https_ota_t *https_ota_handle, int status_code) { esp_err_t err; if (redirection_required(status_code)) { err = esp_http_client_set_redirection(https_ota_handle->http_client); if (err != ESP_OK) { ESP_LOGE(TAG, "URL redirection Failed"); return err; }{...} }{...} else if (status_code == HttpStatus_Unauthorized) { if (https_ota_handle->max_authorization_retries == 0) { ESP_LOGE(TAG, "Reached max_authorization_retries (%d)", status_code); return ESP_FAIL; }{...} https_ota_handle->max_authorization_retries--; esp_http_client_add_auth(https_ota_handle->http_client); }{...} else if(status_code == HttpStatus_NotFound || status_code == HttpStatus_Forbidden) { ESP_LOGE(TAG, "File not found(%d)", status_code); return ESP_FAIL; }{...} else if (status_code >= HttpStatus_BadRequest && status_code < HttpStatus_InternalError) { ESP_LOGE(TAG, "Client error (%d)", status_code); return ESP_FAIL; }{...} else if (status_code >= HttpStatus_InternalError) { ESP_LOGE(TAG, "Server error (%d)", status_code); return ESP_FAIL; }{...} char upgrade_data_buf[256]; // process_again() returns true only in case of redirection. if (process_again(status_code)) { while (1) { /* * In case of redirection, esp_http_client_read() is called * to clear the response buffer of http_client. *//* ... */ int data_read = esp_http_client_read(https_ota_handle->http_client, upgrade_data_buf, sizeof(upgrade_data_buf)); if (data_read <= 0) { return ESP_OK; }{...} }{...} }{...} return ESP_OK; }{ ... } static esp_err_t _http_connect(esp_https_ota_t *https_ota_handle) { esp_err_t err = ESP_FAIL; int status_code, header_ret; do { char *post_data = NULL; /* Send POST request if body is set. * Note: Sending POST request is not supported if partial_http_download * is enabled *//* ... */ int post_len = esp_http_client_get_post_field(https_ota_handle->http_client, &post_data); err = esp_http_client_open(https_ota_handle->http_client, post_len); if (err != ESP_OK) { ESP_LOGE(TAG, "Failed to open HTTP connection: %s", esp_err_to_name(err)); return err; }{...} if (post_len) { int write_len = 0; while (post_len > 0) { write_len = esp_http_client_write(https_ota_handle->http_client, post_data, post_len); if (write_len < 0) { ESP_LOGE(TAG, "Write failed"); return ESP_FAIL; }{...} post_len -= write_len; post_data += write_len; }{...} }{...} header_ret = esp_http_client_fetch_headers(https_ota_handle->http_client); if (header_ret < 0) { return header_ret; }{...} status_code = esp_http_client_get_status_code(https_ota_handle->http_client); err = _http_handle_response_code(https_ota_handle, status_code); if (err != ESP_OK) { return err; }{...} }{...} 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); }{ ... } // Table to lookup ota event name static const char* ota_event_name_table[] = { "ESP_HTTPS_OTA_START", "ESP_HTTPS_OTA_CONNECTED", "ESP_HTTPS_OTA_GET_IMG_DESC", "ESP_HTTPS_OTA_VERIFY_CHIP_ID", "ESP_HTTPS_OTA_DECRYPT_CB", "ESP_HTTPS_OTA_WRITE_FLASH", "ESP_HTTPS_OTA_UPDATE_BOOT_PARTITION", "ESP_HTTPS_OTA_FINISH", "ESP_HTTPS_OTA_ABORT", }{...}; #if CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT == -1 #define ESP_HTTPS_OTA_EVENT_POST_TIMEOUT portMAX_DELAY #else #define ESP_HTTPS_OTA_EVENT_POST_TIMEOUT pdMS_TO_TICKS(CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT) #endif static void esp_https_ota_dispatch_event(int32_t event_id, const void* event_data, size_t event_data_size) { if (esp_event_post(ESP_HTTPS_OTA_EVENT, event_id, event_data, event_data_size, ESP_HTTPS_OTA_EVENT_POST_TIMEOUT) != ESP_OK) { ESP_LOGE(TAG, "Failed to post https_ota event: %s", ota_event_name_table[event_id]); }{...} }{ ... } #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB static esp_err_t esp_https_ota_decrypt_cb(esp_https_ota_t *handle, decrypt_cb_arg_t *args) { esp_https_ota_dispatch_event(ESP_HTTPS_OTA_DECRYPT_CB, NULL, 0); esp_err_t ret = handle->decrypt_cb(args, handle->decrypt_user_ctx); if (ret != ESP_OK) { ESP_LOGE(TAG, "Decrypt callback failed %d", ret); return ret; }{...} if (args->data_out_len > 0) { return ESP_OK; }{...} else { return ESP_HTTPS_OTA_IN_PROGRESS; }{...} }{...} static void esp_https_ota_decrypt_cb_free_buf(void *buffer) { free(buffer); }{...} /* ... */#endif // CONFIG_ESP_HTTPS_OTA_DECRYPT_CB 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%x", 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; }{...} esp_https_ota_dispatch_event(ESP_HTTPS_OTA_WRITE_FLASH, (void *)(&https_ota_handle->binary_file_len), sizeof(int)); #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB esp_https_ota_decrypt_cb_free_buf((void *) buffer); #endif return err; }{ ... } static bool is_server_verification_enabled(const esp_https_ota_config_t *ota_config) { return (ota_config->http_config->cert_pem || ota_config->http_config->use_global_ca_store || ota_config->http_config->crt_bundle_attach != NULL); }{ ... } esp_err_t esp_https_ota_begin(const esp_https_ota_config_t *ota_config, esp_https_ota_handle_t *handle) { esp_https_ota_dispatch_event(ESP_HTTPS_OTA_START, NULL, 0); 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 (!is_server_verification_enabled(ota_config)) { #if CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP ESP_LOGW(TAG, "Continuing with insecure option because CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is set."); #else ESP_LOGE(TAG, "No option for server verification is enabled 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; }{...} https_ota_handle->partial_http_download = ota_config->partial_http_download; https_ota_handle->max_http_request_size = (ota_config->max_http_request_size == 0) ? DEFAULT_REQUEST_SIZE : ota_config->max_http_request_size; https_ota_handle->max_authorization_retries = ota_config->http_config->max_authorization_retries; if (https_ota_handle->max_authorization_retries == 0) { https_ota_handle->max_authorization_retries = DEFAULT_MAX_AUTH_RETRIES; }{...} else if (https_ota_handle->max_authorization_retries == -1) { https_ota_handle->max_authorization_retries = 0; }{...} /* 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; }{...} if (ota_config->http_client_init_cb) { err = ota_config->http_client_init_cb(https_ota_handle->http_client); if (err != ESP_OK) { ESP_LOGE(TAG, "http_client_init_cb returned 0x%x", err); goto http_cleanup; }{...} }{...} if (https_ota_handle->partial_http_download) { esp_http_client_set_method(https_ota_handle->http_client, HTTP_METHOD_HEAD); err = esp_http_client_perform(https_ota_handle->http_client); if (err == ESP_OK) { int status = esp_http_client_get_status_code(https_ota_handle->http_client); if (status != HttpStatus_Ok) { ESP_LOGE(TAG, "Received incorrect http status %d", status); err = ESP_FAIL; goto http_cleanup; }{...} }{...} else { ESP_LOGE(TAG, "ESP HTTP client perform failed: %d", err); goto http_cleanup; }{...} https_ota_handle->image_length = esp_http_client_get_content_length(https_ota_handle->http_client); #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB /* In case of pre ecnrypted OTA, actual image size of OTA binary includes header size which stored in variable enc_img_header_size*//* ... */ https_ota_handle->image_length -= ota_config->enc_img_header_size;/* ... */ #endif esp_http_client_close(https_ota_handle->http_client); if (https_ota_handle->image_length > https_ota_handle->max_http_request_size) { char *header_val = NULL; asprintf(&header_val, "bytes=0-%d", https_ota_handle->max_http_request_size - 1); if (header_val == NULL) { ESP_LOGE(TAG, "Failed to allocate memory for HTTP header"); err = ESP_ERR_NO_MEM; goto http_cleanup; }{...} esp_http_client_set_header(https_ota_handle->http_client, "Range", header_val); free(header_val); }{...} esp_http_client_set_method(https_ota_handle->http_client, HTTP_METHOD_GET); }{...} err = _http_connect(https_ota_handle); if (err != ESP_OK) { ESP_LOGE(TAG, "Failed to establish HTTP connection"); goto http_cleanup; }{...} else { esp_https_ota_dispatch_event(ESP_HTTPS_OTA_CONNECTED, NULL, 0); }{...} if (!https_ota_handle->partial_http_download) { https_ota_handle->image_length = esp_http_client_get_content_length(https_ota_handle->http_client); #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB /* In case of pre ecnrypted OTA, actual image size of OTA binary includes header size which stored in variable enc_img_header_size*//* ... */ https_ota_handle->image_length -= ota_config->enc_img_header_size;/* ... */ #endif }{...} 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 <%s> partition at offset 0x%" PRIx32, https_ota_handle->update_partition->label, https_ota_handle->update_partition->address); const int alloc_size = MAX(ota_config->http_config->buffer_size, DEFAULT_OTA_BUF_SIZE); if (ota_config->buffer_caps != 0) { https_ota_handle->ota_upgrade_buf = (char *)heap_caps_malloc(alloc_size, ota_config->buffer_caps); }{...} else { 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; }{...} #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB if (ota_config->decrypt_cb == NULL) { err = ESP_ERR_INVALID_ARG; goto http_cleanup; }{...} https_ota_handle->decrypt_cb = ota_config->decrypt_cb; https_ota_handle->decrypt_user_ctx = ota_config->decrypt_user_ctx; https_ota_handle->enc_img_header_size = ota_config->enc_img_header_size;/* ... */ #endif https_ota_handle->ota_upgrade_buf_size = alloc_size; https_ota_handle->bulk_flash_erase = ota_config->bulk_flash_erase; 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; }{ ... } static esp_err_t read_header(esp_https_ota_t *handle) { /* * `data_read_size` holds number of bytes needed to read complete header. * `bytes_read` holds number of bytes read. *//* ... */ int data_read_size = IMAGE_HEADER_SIZE; int data_read = 0, bytes_read = 0; /* * while loop is added to download complete image headers, even if the headers * are not sent in a single packet. *//* ... */ while (data_read_size > 0 && !esp_http_client_is_complete_data_received(handle->http_client)) { data_read = esp_http_client_read(handle->http_client, (handle->ota_upgrade_buf + bytes_read), data_read_size); if (data_read < 0) { if (data_read == -ESP_ERR_HTTP_EAGAIN) { ESP_LOGD(TAG, "ESP_ERR_HTTP_EAGAIN invoked: Call timed out before data was ready"); continue; }{...} ESP_LOGE(TAG, "Connection closed, errno = %d", errno); break; }{...} data_read_size -= data_read; bytes_read += data_read; }{...} if (data_read_size > 0) { ESP_LOGE(TAG, "Complete headers were not received"); return ESP_FAIL; }{...} handle->binary_file_len = bytes_read; return ESP_OK; }{ ... } 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_dispatch_event(ESP_HTTPS_OTA_GET_IMG_DESC, NULL, 0); #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB // This API is not supported in case firmware image is encrypted in nature. // It is recommended to retrieve image description through decryption callback in application layer. return ESP_ERR_NOT_SUPPORTED;/* ... */ #endif 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_get_img_desc: Invalid argument"); return ESP_ERR_INVALID_ARG; }{...} if (handle->state < ESP_HTTPS_OTA_BEGIN) { ESP_LOGE(TAG, "esp_https_ota_get_img_desc: Invalid state"); return ESP_ERR_INVALID_STATE; }{...} if (read_header(handle) != ESP_OK) { return ESP_FAIL; }{...} const int app_desc_offset = sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t); esp_app_desc_t *app_info = (esp_app_desc_t *) &handle->ota_upgrade_buf[app_desc_offset]; if (app_info->magic_word != ESP_APP_DESC_MAGIC_WORD) { ESP_LOGE(TAG, "Incorrect app descriptor magic"); return ESP_FAIL; }{...} memcpy(new_app_info, app_info, sizeof(esp_app_desc_t)); return ESP_OK; }{ ... } static esp_err_t esp_ota_verify_chip_id(const void *arg) { esp_image_header_t *data = (esp_image_header_t *)(arg); esp_https_ota_dispatch_event(ESP_HTTPS_OTA_VERIFY_CHIP_ID, (void *)(&data->chip_id), sizeof(esp_chip_id_t)); if (data->chip_id != CONFIG_IDF_FIRMWARE_CHIP_ID) { ESP_LOGE(TAG, "Mismatch chip id, expected %d, found %d", CONFIG_IDF_FIRMWARE_CHIP_ID, data->chip_id); return ESP_ERR_INVALID_VERSION; }{...} 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; const int erase_size = handle->bulk_flash_erase ? (handle->image_length > 0 ? handle->image_length : OTA_SIZE_UNKNOWN) : OTA_WITH_SEQUENTIAL_WRITES; switch (handle->state) { case ESP_HTTPS_OTA_BEGIN: err = esp_ota_begin(handle->update_partition, erase_size, &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_get_img_desc` was invoked first, then the image data read there should be written to OTA partition *//* ... */ int binary_file_len = 0; if (handle->binary_file_len) { binary_file_len = handle->binary_file_len; }{...} else { if (read_header(handle) != ESP_OK) { return ESP_FAIL; }{...} binary_file_len = IMAGE_HEADER_SIZE; }{...} /* * Header length gets added to handle->binary_file_len in _ota_write * Clear handle->binary_file_len to avoid additional bytes in upgrade image size calculation *//* ... */ handle->binary_file_len = 0; const void *data_buf = (const void *) handle->ota_upgrade_buf; #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB decrypt_cb_arg_t args = {}; args.data_in = handle->ota_upgrade_buf; args.data_in_len = binary_file_len; err = esp_https_ota_decrypt_cb(handle, &args); if (err == ESP_OK) { data_buf = args.data_out; binary_file_len = args.data_out_len; }{...} else { ESP_LOGE(TAG, "Decryption of image header failed"); return ESP_FAIL; }{...} #endif/* ... */ // CONFIG_ESP_HTTPS_OTA_DECRYPT_CB err = esp_ota_verify_chip_id(data_buf); if (err != ESP_OK) { return err; }{...} return _ota_write(handle, data_buf, binary_file_len);... 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_http_client_is_complete_data_received is added to check whether * complete image is received. *//* ... */ if (!esp_http_client_is_complete_data_received(handle->http_client)) { ESP_LOGE(TAG, "Connection closed before complete data was received!"); return ESP_FAIL; }{...} ESP_LOGD(TAG, "Connection closed"); }{...} else if (data_read > 0) { const void *data_buf = (const void *) handle->ota_upgrade_buf; int data_len = data_read; #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB decrypt_cb_arg_t args = {}; args.data_in = handle->ota_upgrade_buf; args.data_in_len = data_read; err = esp_https_ota_decrypt_cb(handle, &args); if (err == ESP_OK) { data_buf = args.data_out; data_len = args.data_out_len; }{...} else { return err; }{...} #endif/* ... */ // CONFIG_ESP_HTTPS_OTA_DECRYPT_CB return _ota_write(handle, data_buf, data_len); }{...} else { if (data_read == -ESP_ERR_HTTP_EAGAIN) { ESP_LOGD(TAG, "ESP_ERR_HTTP_EAGAIN invoked: Call timed out before data was ready"); return ESP_ERR_HTTPS_OTA_IN_PROGRESS; }{...} ESP_LOGE(TAG, "data read %d, errno %d", data_read, errno); return ESP_FAIL; }{...} if (!handle->partial_http_download || (handle->partial_http_download && handle->image_length == handle->binary_file_len)) { handle->state = ESP_HTTPS_OTA_SUCCESS; }{...} break;... default: ESP_LOGE(TAG, "Invalid ESP HTTPS OTA State"); return ESP_FAIL; break;... }{...} if (handle->partial_http_download) { if (handle->state == ESP_HTTPS_OTA_IN_PROGRESS && handle->image_length > handle->binary_file_len) { esp_http_client_close(handle->http_client); char *header_val = NULL; int header_size = 0; #if CONFIG_ESP_HTTPS_OTA_DECRYPT_CB header_size = handle->enc_img_header_size; #endif if ((handle->image_length - handle->binary_file_len) > handle->max_http_request_size) { asprintf(&header_val, "bytes=%d-%d", handle->binary_file_len + header_size, (handle->binary_file_len + header_size + handle->max_http_request_size - 1)); }{...} else { asprintf(&header_val, "bytes=%d-", handle->binary_file_len + header_size); }{...} if (header_val == NULL) { ESP_LOGE(TAG, "Failed to allocate memory for HTTP header"); return ESP_ERR_NO_MEM; }{...} esp_http_client_set_header(handle->http_client, "Range", header_val); free(header_val); err = _http_connect(handle); if (err != ESP_OK) { ESP_LOGE(TAG, "Failed to establish HTTP connection"); return ESP_FAIL; }{...} ESP_LOGD(TAG, "Connection start"); return ESP_ERR_HTTPS_OTA_IN_PROGRESS; }{...} }{...} return ESP_OK; }{ ... } bool esp_https_ota_is_complete_data_received(esp_https_ota_handle_t https_ota_handle) { bool ret = false; esp_https_ota_t *handle = (esp_https_ota_t *)https_ota_handle; if (handle->partial_http_download) { ret = (handle->image_length == handle->binary_file_len); }{...} else { ret = esp_http_client_is_complete_data_received(handle->http_client); }{...} return ret; }{ ... } 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)) { err = esp_ota_set_boot_partition(handle->update_partition); if (err != ESP_OK) { ESP_LOGE(TAG, "esp_ota_set_boot_partition failed! err=0x%x", err); }{...} else { esp_https_ota_dispatch_event(ESP_HTTPS_OTA_UPDATE_BOOT_PARTITION, (void *)(&handle->update_partition->subtype), sizeof(esp_partition_subtype_t)); }{...} }{...} free(handle); esp_https_ota_dispatch_event(ESP_HTTPS_OTA_FINISH, NULL, 0); return err; }{ ... } esp_err_t esp_https_ota_abort(esp_https_ota_handle_t https_ota_handle) { esp_https_ota_dispatch_event(ESP_HTTPS_OTA_ABORT, NULL, 0); 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_abort(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: err = ESP_ERR_INVALID_STATE; ESP_LOGE(TAG, "Invalid ESP HTTPS OTA State"); break;... }{...} free(handle); return err; }{ ... } int esp_https_ota_get_status_code(esp_https_ota_handle_t https_ota_handle) { esp_https_ota_t *handle = (esp_https_ota_t *) https_ota_handle; if (handle == NULL || handle->http_client == NULL) { return -1; }{...} return esp_http_client_get_status_code(handle->http_client); }{ ... } 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; }{ ... } int esp_https_ota_get_image_size(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_BEGIN) { return -1; }{...} return handle->image_length; }{ ... } esp_err_t esp_https_ota(const esp_https_ota_config_t *ota_config) { if (ota_config == NULL || ota_config->http_config == NULL) { ESP_LOGE(TAG, "esp_https_ota: Invalid argument"); return ESP_ERR_INVALID_ARG; }{...} 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; }{...} }{...} if (err != ESP_OK) { esp_https_ota_abort(https_ota_handle); return err; }{...} esp_err_t ota_finish_err = esp_https_ota_finish(https_ota_handle); if (ota_finish_err != ESP_OK) { return ota_finish_err; }{...} return ESP_OK; }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.