Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include <sys/param.h>
#include <esp_cpu.h>
#include <bootloader_utility.h>
#include <esp_secure_boot.h>
#include <esp_fault.h>
#include <esp_log.h>
#include <esp_attr.h>
#include <bootloader_flash_priv.h>
#include <bootloader_random.h>
#include <bootloader_sha.h>
#include "bootloader_util.h"
#include "bootloader_common.h"
#include "esp_rom_sys.h"
#include "esp_efuse.h"
#include "esp_app_desc.h"
#include "bootloader_memory_utils.h"
#include "soc/soc_caps.h"
#include "hal/cache_ll.h"
#include "spi_flash_mmap.h"
#define ALIGN_UP
#define SECURE_BOOT_CHECK_SIGNATURE
#define SECURE_BOOT_CHECK_SIGNATURE
#define SECURE_BOOT_CHECK_SIGNATURE
#define SECURE_BOOT_CHECK_SIGNATURE
TAG
#define HASH_LEN
#define SIXTEEN_MB
#define ESP_ROM_CHECKSUM_INITIAL
#define STACK_LOAD_HEADROOM
image_load(esp_image_load_mode_t, const esp_partition_pos_t *, esp_image_metadata_t *)
bootloader_load_image(const esp_partition_pos_t *, esp_image_metadata_t *)
bootloader_load_image_no_verify(const esp_partition_pos_t *, esp_image_metadata_t *)
esp_image_verify(esp_image_load_mode_t, const esp_partition_pos_t *, esp_image_metadata_t *)
esp_image_get_metadata(const esp_partition_pos_t *, esp_image_metadata_t *)
verify_image_header(uint32_t, const esp_image_header_t *, bool)
process_image_header(esp_image_metadata_t *, uint32_t, bootloader_sha256_handle_t *, bool, bool)
process_segments(esp_image_metadata_t *, bool, bool, bootloader_sha256_handle_t, uint32_t *)
process_segment(int, uint32_t, esp_image_segment_header_t *, bool, bool, bootloader_sha256_handle_t, uint32_t *, esp_image_metadata_t *)
process_segment_data(int, intptr_t, uint32_t, uint32_t, bool, bootloader_sha256_handle_t, uint32_t *, esp_image_metadata_t *)
verify_segment_header(int, const esp_image_segment_header_t *, uint32_t, esp_image_metadata_t *, bool)
should_map(uint32_t)
should_load(uint32_t)
esp_image_verify_bootloader(uint32_t *)
esp_image_verify_bootloader_data(esp_image_metadata_t *)
process_appended_hash_and_sig(esp_image_metadata_t *, uint32_t, uint32_t, bool, bool)
process_checksum(bootloader_sha256_handle_t, uint32_t, esp_image_metadata_t *, bool, bool)
verify_secure_boot_signature(bootloader_sha256_handle_t, esp_image_metadata_t *, uint8_t *, uint8_t *)
verify_simple_hash(bootloader_sha256_handle_t, esp_image_metadata_t *)
esp_image_get_flash_size(esp_image_flash_size_t)
Files
ESP-IDF
components
app_trace
app_update
bootloader_support
bootloader_flash
include
private_include
src
esp32
idf
bt
cmock
console
cxx
driver
efuse
esp_adc
esp_app_format
esp_bootloader_format
esp_coex
esp_common
esp_driver_ana_cmpr
esp_driver_cam
esp_driver_dac
esp_driver_gpio
esp_driver_gptimer
esp_driver_i2c
esp_driver_i2s
esp_driver_jpeg
esp_driver_ledc
esp_driver_mcpwm
esp_driver_parlio
esp_driver_pcnt
esp_driver_rmt
esp_driver_sdio
esp_driver_sdm
esp_driver_sdmmc
esp_driver_sdspi
esp_driver_spi
esp_driver_tsens
esp_driver_uart
esp_driver_usb_serial_jtag
esp_eth
esp_event
esp_gdbstub
esp_hid
esp_http_client
esp_http_server
esp_https_ota
esp_https_server
esp_hw_support
esp_lcd
esp_local_ctrl
esp_mm
esp_netif
esp_partition
esp_phy
esp_pm
esp_psram
esp_ringbuf
esp_rom
esp_security
esp_system
esp_timer
esp_vfs_console
esp_wifi
esp-tls
espcoredump
hal
heap
http_parser
ieee802154
log
mqtt
newlib
nvs_flash
nvs_sec_provider
openthread
perfmon
protobuf-c
protocomm
pthread
rt
sdmmc
soc
spi_flash
spiffs
tcp_transport
ulp
unity
vfs
wear_levelling
wifi_provisioning
wpa_supplicant
xtensa
examples
lwIP
FreeRTOS
cJSON
mbedTLS
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bootloader_support/src/esp_image_format.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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <string.h> #include <sys/param.h> #include <esp_cpu.h> #include <bootloader_utility.h> #include <esp_secure_boot.h> #include <esp_fault.h> #include <esp_log.h> #include <esp_attr.h> #include <bootloader_flash_priv.h> #include <bootloader_random.h> #include <bootloader_sha.h> #include "bootloader_util.h" #include "bootloader_common.h" #include "esp_rom_sys.h" #include "esp_efuse.h" #include "esp_app_desc.h" #include "bootloader_memory_utils.h" #include "soc/soc_caps.h" #include "hal/cache_ll.h" #include "spi_flash_mmap.h"20 includes #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) /* Checking signatures as part of verifying images is necessary: - Always if secure boot is enabled - Differently in bootloader and/or app, depending on kconfig *//* ... */ #ifdef BOOTLOADER_BUILD #ifdef CONFIG_SECURE_SIGNED_ON_BOOT #define SECURE_BOOT_CHECK_SIGNATURE 1 #else #define SECURE_BOOT_CHECK_SIGNATURE 0 #endif/* ... */ #else /* !BOOTLOADER_BUILD */ #ifdef CONFIG_SECURE_SIGNED_ON_UPDATE #define SECURE_BOOT_CHECK_SIGNATURE 1 #else #define SECURE_BOOT_CHECK_SIGNATURE 0 #endif/* ... */ #endif static const char *TAG = "esp_image"; #define HASH_LEN ESP_IMAGE_HASH_LEN #define SIXTEEN_MB 0x1000000 #define ESP_ROM_CHECKSUM_INITIAL 0xEF /* Headroom to ensure between stack SP (at time of checking) and data loaded from flash */ #define STACK_LOAD_HEADROOM 32768 #ifdef BOOTLOADER_BUILD /* 64 bits of random data to obfuscate loaded RAM with, until verification is complete (Means loaded code isn't executable until after the secure boot check.) *//* ... */ static uint32_t ram_obfs_value[2]; /* ... */ #endif /* Return true if load_addr is an address the bootloader should load into */ static bool should_load(uint32_t load_addr); /* Return true if load_addr is an address the bootloader should map via flash cache */ static bool should_map(uint32_t load_addr); static esp_err_t process_segments(esp_image_metadata_t *data, bool silent, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum); /* Load or verify a segment */ static esp_err_t process_segment(int index, uint32_t flash_addr, esp_image_segment_header_t *header, bool silent, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum, esp_image_metadata_t *metadata); /* split segment and verify if data_len is too long */ static esp_err_t process_segment_data(int segment, intptr_t load_addr, uint32_t data_addr, uint32_t data_len, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum, esp_image_metadata_t *metadata); /* Verify the main image header */ static esp_err_t verify_image_header(uint32_t src_addr, const esp_image_header_t *image, bool silent); /* Verify a segment header */ static esp_err_t verify_segment_header(int index, const esp_image_segment_header_t *segment, uint32_t segment_data_offs, esp_image_metadata_t *metadata, bool silent); /* Log-and-fail macro for use in esp_image_load */ #define FAIL_LOAD(...) do { \ if (!silent) { \ ESP_LOGE(TAG, __VA_ARGS__); \ }{...} \ goto err; \ }{...} \ while(0)... #define CHECK_ERR(func) do { \ if ((err = func) != ESP_OK) { \ goto err; \ }{...} \ }{...} \ while(0)... static esp_err_t process_image_header(esp_image_metadata_t *data, uint32_t part_offset, bootloader_sha256_handle_t *sha_handle, bool do_verify, bool silent); static esp_err_t process_appended_hash_and_sig(esp_image_metadata_t *data, uint32_t part_offset, uint32_t part_len, bool do_verify, bool silent); static esp_err_t process_checksum(bootloader_sha256_handle_t sha_handle, uint32_t checksum_word, esp_image_metadata_t *data, bool silent, bool skip_check_checksum); static esp_err_t __attribute__((unused)) verify_secure_boot_signature(bootloader_sha256_handle_t sha_handle, esp_image_metadata_t *data, uint8_t *image_digest, uint8_t *verified_digest); static esp_err_t __attribute__((unused)) verify_simple_hash(bootloader_sha256_handle_t sha_handle, esp_image_metadata_t *data); static esp_err_t image_load(esp_image_load_mode_t mode, const esp_partition_pos_t *part, esp_image_metadata_t *data) { #ifdef BOOTLOADER_BUILD bool do_load = (mode == ESP_IMAGE_LOAD) || (mode == ESP_IMAGE_LOAD_NO_VALIDATE); bool do_verify = (mode == ESP_IMAGE_LOAD) || (mode == ESP_IMAGE_VERIFY) || (mode == ESP_IMAGE_VERIFY_SILENT);/* ... */ #else bool do_load = false; // Can't load the image in app mode bool do_verify = true; // In app mode is available only verify mode/* ... */ #endif bool silent = (mode == ESP_IMAGE_VERIFY_SILENT); esp_err_t err = ESP_OK; // checksum the image a word at a time. This shaves 30-40ms per MB of image size uint32_t checksum_word = ESP_ROM_CHECKSUM_INITIAL; uint32_t *checksum = (do_verify) ? &checksum_word : NULL; bootloader_sha256_handle_t sha_handle = NULL; bool verify_sha; #if (SECURE_BOOT_CHECK_SIGNATURE == 1) /* used for anti-FI checks */ uint8_t image_digest[HASH_LEN] = { [ 0 ... 31] = 0xEE }; uint8_t verified_digest[HASH_LEN] = { [ 0 ... 31 ] = 0x01 };/* ... */ #endif if (data == NULL || part == NULL) { return ESP_ERR_INVALID_ARG; }{...} #if CONFIG_SECURE_BOOT_V2_ENABLED // For Secure Boot V2, we do verify signature on bootloader which includes the SHA calculation. verify_sha = do_verify;/* ... */ #else // Secure boot not enabled // For secure boot V1 on ESP32, we don't calculate SHA or verify signature on bootloaders. // (For non-secure boot, we don't verify any SHA-256 hash appended to the bootloader because // esptool.py may have rewritten the header - rely on esptool.py having verified the bootloader at flashing time, instead.) verify_sha = (part->offset != ESP_BOOTLOADER_OFFSET) && do_verify;/* ... */ #endif if (part->size > SIXTEEN_MB) { err = ESP_ERR_INVALID_ARG; FAIL_LOAD("partition size 0x%"PRIx32" invalid, larger than 16MB", part->size); }{...} bootloader_sha256_handle_t *p_sha_handle = &sha_handle; CHECK_ERR(process_image_header(data, part->offset, (verify_sha) ? p_sha_handle : NULL, do_verify, silent)); CHECK_ERR(process_segments(data, silent, do_load, sha_handle, checksum)); bool skip_check_checksum = !do_verify || esp_cpu_dbgr_is_attached(); CHECK_ERR(process_checksum(sha_handle, checksum_word, data, silent, skip_check_checksum)); CHECK_ERR(process_appended_hash_and_sig(data, part->offset, part->size, do_verify, silent)); if (verify_sha) { #if (SECURE_BOOT_CHECK_SIGNATURE == 1) // secure boot images have a signature appended #if defined(BOOTLOADER_BUILD) && !defined(CONFIG_SECURE_BOOT) // If secure boot is not enabled in hardware, then // skip the signature check in bootloader when the debugger is attached. // This is done to allow for breakpoints in Flash. bool do_verify_sig = !esp_cpu_dbgr_is_attached();/* ... */ #else // CONFIG_SECURE_BOOT bool do_verify_sig = true; #endif // end checking for JTAG if (do_verify_sig) { err = verify_secure_boot_signature(sha_handle, data, image_digest, verified_digest); sha_handle = NULL; // verify_secure_boot_signature finishes sha_handle }{...} #else/* ... */ // SECURE_BOOT_CHECK_SIGNATURE // No secure boot, but SHA-256 can be appended for basic corruption detection if (sha_handle != NULL && !esp_cpu_dbgr_is_attached()) { err = verify_simple_hash(sha_handle, data); sha_handle = NULL; // calling verify_simple_hash finishes sha_handle }{...} #endif/* ... */ // SECURE_BOOT_CHECK_SIGNATURE }{...} // verify_sha // bootloader may still have a sha256 digest handle open if (sha_handle != NULL) { bootloader_sha256_finish(sha_handle, NULL); sha_handle = NULL; }{...} if (err != ESP_OK) { goto err; }{...} #ifdef BOOTLOADER_BUILD #if (SECURE_BOOT_CHECK_SIGNATURE == 1) /* If signature was checked in bootloader build, verified_digest should equal image_digest This is to detect any fault injection that caused signature verification to not complete normally. Any attack which bypasses this check should be of limited use as the RAM contents are still obfuscated, therefore we do the check immediately before we deobfuscate. Note: the conditions for making this check are the same as for setting verify_sha above, but on ESP32 SB V1 we move the test for "only verify signature in bootloader" into the macro so it's tested multiple times. *//* ... */ #if CONFIG_SECURE_BOOT_V2_ENABLED ESP_FAULT_ASSERT(!esp_secure_boot_enabled() || memcmp(image_digest, verified_digest, HASH_LEN) == 0); #else // Secure Boot V1 on ESP32, only verify signatures for apps not bootloaders ESP_FAULT_ASSERT(data->start_addr == ESP_BOOTLOADER_OFFSET || memcmp(image_digest, verified_digest, HASH_LEN) == 0); #endif /* ... */ #endif // SECURE_BOOT_CHECK_SIGNATURE // Deobfuscate RAM if (do_load && ram_obfs_value[0] != 0 && ram_obfs_value[1] != 0) { for (int i = 0; i < data->image.segment_count; i++) { uint32_t load_addr = data->segments[i].load_addr; if (should_load(load_addr)) { uint32_t *loaded = (uint32_t *)load_addr; for (size_t j = 0; j < data->segments[i].data_len / sizeof(uint32_t); j++) { loaded[j] ^= (j & 1) ? ram_obfs_value[0] : ram_obfs_value[1]; }{...} }{...} }{...} #if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE /* We have manipulated data over dcache that will be read over icache and need to writeback, else the data read might be invalid *//* ... */ cache_ll_writeback_all(CACHE_LL_LEVEL_INT_MEM, CACHE_TYPE_DATA, CACHE_LL_ID_ALL);/* ... */ #endif }{...} #if CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK /* For anti-rollback case, reconfirm security version of the application to prevent FI attacks */ bool sec_ver = false; if (do_load) { sec_ver = esp_efuse_check_secure_version(data->secure_version); if (!sec_ver) { err = ESP_FAIL; goto err; }{...} }{...} /* Ensure that the security version check passes for image loading scenario */ ESP_FAULT_ASSERT(!do_load || sec_ver == true);/* ... */ #endif // CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK /* ... */ #endif // BOOTLOADER_BUILD // Success! return ESP_OK; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} if (sha_handle != NULL) { // Need to finish the hash process to free the handle bootloader_sha256_finish(sha_handle, NULL); }{...} // Prevent invalid/incomplete data leaking out bzero(data, sizeof(esp_image_metadata_t)); return err; }{ ... } esp_err_t bootloader_load_image(const esp_partition_pos_t *part, esp_image_metadata_t *data) { #if !defined(BOOTLOADER_BUILD) return ESP_FAIL; #else esp_image_load_mode_t mode = ESP_IMAGE_LOAD; #if !defined(CONFIG_SECURE_BOOT) /* Skip validation under particular configurations */ #if CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS mode = ESP_IMAGE_LOAD_NO_VALIDATE; #elif CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON if (esp_rom_get_reset_reason(0) == RESET_REASON_CHIP_POWER_ON #if SOC_EFUSE_HAS_EFUSE_RST_BUG || esp_rom_get_reset_reason(0) == RESET_REASON_CORE_EFUSE_CRC #endif ) { mode = ESP_IMAGE_LOAD_NO_VALIDATE; }{...} #endif/* ... */ // CONFIG_BOOTLOADER_SKIP_.../* ... */ #endif // CONFIG_SECURE_BOOT return image_load(mode, part, data);/* ... */ #endif // BOOTLOADER_BUILD }{ ... } esp_err_t bootloader_load_image_no_verify(const esp_partition_pos_t *part, esp_image_metadata_t *data) { #ifdef BOOTLOADER_BUILD return image_load(ESP_IMAGE_LOAD_NO_VALIDATE, part, data); #else return ESP_FAIL; #endif }{ ... } esp_err_t esp_image_verify(esp_image_load_mode_t mode, const esp_partition_pos_t *part, esp_image_metadata_t *data) { return image_load(mode, part, data); }{ ... } esp_err_t esp_image_get_metadata(const esp_partition_pos_t *part, esp_image_metadata_t *metadata) { esp_err_t err; if (metadata == NULL || part == NULL || part->size > SIXTEEN_MB) { return ESP_ERR_INVALID_ARG; }{...} bool silent = true; bool do_verify = false; bool do_load = false; CHECK_ERR(process_image_header(metadata, part->offset, NULL, do_verify, silent)); CHECK_ERR(process_segments(metadata, silent, do_load, NULL, NULL)); bool skip_check_checksum = true; CHECK_ERR(process_checksum(NULL, 0, metadata, silent, skip_check_checksum)); CHECK_ERR(process_appended_hash_and_sig(metadata, part->offset, part->size, true, silent)); return ESP_OK; err: return err; }{ ... } static esp_err_t verify_image_header(uint32_t src_addr, const esp_image_header_t *image, bool silent) { esp_err_t err = ESP_OK; ESP_LOGD(TAG, "image header: 0x%02x 0x%02x 0x%02x 0x%02x %08"PRIx32, image->magic, image->segment_count, image->spi_mode, image->spi_size, image->entry_addr); if (image->magic != ESP_IMAGE_HEADER_MAGIC) { FAIL_LOAD("image at 0x%"PRIx32" has invalid magic byte (nothing flashed here?)", src_addr); }{...} // Checking the chip revision header *will* print a bunch of other info // regardless of silent setting as this may be important, but don't bother checking it // if it looks like the app partition is erased or otherwise garbage CHECK_ERR(bootloader_common_check_chip_validity(image, ESP_IMAGE_APPLICATION)); if (image->segment_count > ESP_IMAGE_MAX_SEGMENTS) { FAIL_LOAD("image at 0x%"PRIx32" segment count %d exceeds max %d", src_addr, image->segment_count, ESP_IMAGE_MAX_SEGMENTS); }{...} return err; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} return err; }{ ... } #ifdef BOOTLOADER_BUILD /* Check the region load_addr - load_end doesn't overlap any memory used by the bootloader, registers, or other invalid memory *//* ... */ static bool verify_load_addresses(int segment_index, intptr_t load_addr, intptr_t load_end, bool print_error, bool no_recurse) { /* Addresses of static data and the "loader" section of bootloader IRAM, all defined in ld script */ const char *reason = NULL; extern int _dram_start, _dram_end, _loader_text_start, _loader_text_end; void *load_addr_p = (void *)load_addr; void *load_inclusive_end_p = (void *)load_end - 0x1; void *load_exclusive_end_p = (void *)load_end; if (load_end == load_addr) { return true; // zero-length segments are fine }{...} assert(load_end > load_addr); // data_len<16MB is checked in verify_segment_header() which is called before this, so this should always be true if (esp_ptr_in_dram(load_addr_p) && esp_ptr_in_dram(load_inclusive_end_p)) { /* Writing to DRAM */ /* Check if we're clobbering the stack */ intptr_t sp = (intptr_t)esp_cpu_get_sp(); if (bootloader_util_regions_overlap(sp - STACK_LOAD_HEADROOM, SOC_ROM_STACK_START, load_addr, load_end)) { reason = "overlaps bootloader stack"; goto invalid; }{...} /* Check if we're clobbering static data (_dram_start.._dram_end includes bss, data, rodata sections in DRAM) *//* ... */ if (bootloader_util_regions_overlap((intptr_t)&_dram_start, (intptr_t)&_dram_end, load_addr, load_end)) { reason = "overlaps bootloader data"; goto invalid; }{...} /* LAST DRAM CHECK (recursive): for D/IRAM, check the equivalent IRAM addresses if needed Allow for the possibility that even though both pointers are IRAM, only part of the region is in a D/IRAM section. In which case we recurse to check the part which falls in D/IRAM. Note: We start with SOC_DIRAM_DRAM_LOW/HIGH and convert that address to IRAM to account for any reversing of word order (chip-specific). *//* ... */ if (!no_recurse && bootloader_util_regions_overlap(SOC_DIRAM_DRAM_LOW, SOC_DIRAM_DRAM_HIGH, load_addr, load_end)) { intptr_t iram_load_addr, iram_load_end; if (esp_ptr_in_diram_dram(load_addr_p)) { iram_load_addr = (intptr_t)esp_ptr_diram_dram_to_iram(load_addr_p); }{...} else { iram_load_addr = (intptr_t)esp_ptr_diram_dram_to_iram((void *)SOC_DIRAM_DRAM_LOW); }{...} if (esp_ptr_in_diram_dram(load_inclusive_end_p)) { iram_load_end = (intptr_t)esp_ptr_diram_dram_to_iram(load_exclusive_end_p); }{...} else { iram_load_end = (intptr_t)esp_ptr_diram_dram_to_iram((void *)SOC_DIRAM_DRAM_HIGH); }{...} if (iram_load_end < iram_load_addr) { return verify_load_addresses(segment_index, iram_load_end, iram_load_addr, print_error, true); }{...} else { return verify_load_addresses(segment_index, iram_load_addr, iram_load_end, print_error, true); }{...} }{...} }{...} else if (esp_ptr_in_iram(load_addr_p) && esp_ptr_in_iram(load_inclusive_end_p)) { /* Writing to IRAM */ /* Check for overlap of 'loader' section of IRAM */ if (bootloader_util_regions_overlap((intptr_t)&_loader_text_start, (intptr_t)&_loader_text_end, load_addr, load_end)) { reason = "overlaps loader IRAM"; goto invalid; }{...} /* LAST IRAM CHECK (recursive): for D/IRAM, check the equivalent DRAM address if needed Allow for the possibility that even though both pointers are IRAM, only part of the region is in a D/IRAM section. In which case we recurse to check the part which falls in D/IRAM. Note: We start with SOC_DIRAM_IRAM_LOW/HIGH and convert that address to DRAM to account for any reversing of word order (chip-specific). *//* ... */ if (!no_recurse && bootloader_util_regions_overlap(SOC_DIRAM_IRAM_LOW, SOC_DIRAM_IRAM_HIGH, load_addr, load_end)) { intptr_t dram_load_addr, dram_load_end; if (esp_ptr_in_diram_iram(load_addr_p)) { dram_load_addr = (intptr_t)esp_ptr_diram_iram_to_dram(load_addr_p); }{...} else { dram_load_addr = (intptr_t)esp_ptr_diram_iram_to_dram((void *)SOC_DIRAM_IRAM_LOW); }{...} if (esp_ptr_in_diram_iram(load_inclusive_end_p)) { dram_load_end = (intptr_t)esp_ptr_diram_iram_to_dram(load_exclusive_end_p); }{...} else { dram_load_end = (intptr_t)esp_ptr_diram_iram_to_dram((void *)SOC_DIRAM_IRAM_HIGH); }{...} if (dram_load_end < dram_load_addr) { return verify_load_addresses(segment_index, dram_load_end, dram_load_addr, print_error, true); }{...} else { return verify_load_addresses(segment_index, dram_load_addr, dram_load_end, print_error, true); }{...} }{...} /* Sections entirely in RTC memory won't overlap with a vanilla bootloader but are valid load addresses, thus skipping them from the check */ }{...} #if SOC_RTC_FAST_MEM_SUPPORTED else if (esp_ptr_in_rtc_iram_fast(load_addr_p) && esp_ptr_in_rtc_iram_fast(load_inclusive_end_p)){ return true; }{...} else if (esp_ptr_in_rtc_dram_fast(load_addr_p) && esp_ptr_in_rtc_dram_fast(load_inclusive_end_p)){ return true; }{...} /* ... */#endif #if SOC_RTC_SLOW_MEM_SUPPORTED else if (esp_ptr_in_rtc_slow(load_addr_p) && esp_ptr_in_rtc_slow(load_inclusive_end_p)) { return true; }{...} /* ... */#endif #if SOC_MEM_TCM_SUPPORTED else if (esp_ptr_in_tcm(load_addr_p) && esp_ptr_in_tcm(load_inclusive_end_p)) { return true; }{...} /* ... */#endif else { /* Not a DRAM or an IRAM or RTC Fast IRAM, RTC Fast DRAM or RTC Slow address */ reason = "bad load address range"; goto invalid; }{...} return true; invalid: if (print_error) { ESP_LOGE(TAG, "Segment %d 0x%08x-0x%08x invalid: %s", segment_index, load_addr, load_end, reason); }{...} return false; }{...} /* ... */#endif // BOOTLOADER_BUILD static esp_err_t process_image_header(esp_image_metadata_t *data, uint32_t part_offset, bootloader_sha256_handle_t *sha_handle, bool do_verify, bool silent) { esp_err_t err; bzero(data, sizeof(esp_image_metadata_t)); data->start_addr = part_offset; ESP_LOGD(TAG, "reading image header @ 0x%"PRIx32, data->start_addr); CHECK_ERR(bootloader_flash_read(data->start_addr, &data->image, sizeof(esp_image_header_t), true)); if (do_verify) { // Calculate SHA-256 of image if secure boot is on, or if image has a hash appended if (SECURE_BOOT_CHECK_SIGNATURE || data->image.hash_appended) { if (sha_handle != NULL) { *sha_handle = bootloader_sha256_start(); if (*sha_handle == NULL) { return ESP_ERR_NO_MEM; }{...} bootloader_sha256_data(*sha_handle, &data->image, sizeof(esp_image_header_t)); }{...} }{...} CHECK_ERR(verify_image_header(data->start_addr, &data->image, silent)); }{...} data->image_len = sizeof(esp_image_header_t); return ESP_OK; err: return err; }{ ... } static esp_err_t process_segments(esp_image_metadata_t *data, bool silent, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum) { esp_err_t err = ESP_OK; uint32_t start_segments = data->start_addr + data->image_len; uint32_t next_addr = start_segments; for (int i = 0; i < data->image.segment_count; i++) { esp_image_segment_header_t *header = &data->segments[i]; ESP_LOGV(TAG, "loading segment header %d at offset 0x%"PRIx32, i, next_addr); CHECK_ERR(process_segment(i, next_addr, header, silent, do_load, sha_handle, checksum, data)); next_addr += sizeof(esp_image_segment_header_t); data->segment_data[i] = next_addr; next_addr += header->data_len; }{...} // Segments all loaded, verify length uint32_t end_addr = next_addr; if (end_addr < data->start_addr) { FAIL_LOAD("image offset has wrapped"); }{...} data->image_len += end_addr - start_segments; ESP_LOGV(TAG, "image start 0x%08"PRIx32" end of last section 0x%08"PRIx32, data->start_addr, end_addr); return err; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} return err; }{ ... } static esp_err_t process_segment(int index, uint32_t flash_addr, esp_image_segment_header_t *header, bool silent, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum, esp_image_metadata_t *metadata) { esp_err_t err; /* read segment header */ err = bootloader_flash_read(flash_addr, header, sizeof(esp_image_segment_header_t), true); if (err != ESP_OK) { ESP_LOGE(TAG, "bootloader_flash_read failed at 0x%08"PRIx32, flash_addr); return err; }{...} if (sha_handle != NULL) { bootloader_sha256_data(sha_handle, header, sizeof(esp_image_segment_header_t)); }{...} intptr_t load_addr = header->load_addr; uint32_t data_len = header->data_len; uint32_t data_addr = flash_addr + sizeof(esp_image_segment_header_t); ESP_LOGV(TAG, "segment data length 0x%"PRIx32" data starts 0x%"PRIx32, data_len, data_addr); CHECK_ERR(verify_segment_header(index, header, data_addr, metadata, silent)); if (data_len % 4 != 0) { FAIL_LOAD("unaligned segment length 0x%"PRIx32, data_len); }{...} bool is_mapping = should_map(load_addr); do_load = do_load && should_load(load_addr); if (!silent) { ESP_LOGI(TAG, "segment %d: paddr=%08"PRIx32" vaddr=%08x size=%05"PRIx32"h (%6"PRIu32") %s", index, data_addr, load_addr, data_len, data_len, (do_load) ? "load" : (is_mapping) ? "map" : ""); }{...} #ifdef BOOTLOADER_BUILD /* Before loading segment, check it doesn't clobber bootloader RAM. */ if (do_load && data_len > 0) { if (!verify_load_addresses(index, load_addr, load_addr + data_len, true, false)) { return ESP_ERR_IMAGE_INVALID; }{...} }{...} #endif/* ... */ // BOOTLOADER_BUILD uint32_t free_page_count = bootloader_mmap_get_free_pages(); ESP_LOGD(TAG, "free data page_count 0x%08"PRIx32, free_page_count); uint32_t data_len_remain = data_len; while (data_len_remain > 0) { #if (SECURE_BOOT_CHECK_SIGNATURE == 1) && defined(BOOTLOADER_BUILD) /* Double check the address verification done above */ ESP_FAULT_ASSERT(!do_load || verify_load_addresses(0, load_addr, load_addr + data_len_remain, false, false));/* ... */ #endif uint32_t offset_page = ((data_addr & MMAP_ALIGNED_MASK) != 0) ? 1 : 0; /* Data we could map in case we are not aligned to PAGE boundary is one page size lesser. */ data_len = MIN(data_len_remain, ((free_page_count - offset_page) * SPI_FLASH_MMU_PAGE_SIZE)); CHECK_ERR(process_segment_data(index, load_addr, data_addr, data_len, do_load, sha_handle, checksum, metadata)); data_addr += data_len; data_len_remain -= data_len; }{...} return ESP_OK; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} return err; }{ ... } #if CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK /* The __attribute__((optimize("O0"))) is used to disable optimizations for this function, * preventing the compiler from potentially optimizing data_buffer and reading data directly from src. * This is crucial as we want to read from Flash only once, ensuring the integrity of the data. *//* ... */ __attribute__((optimize("O0"))) static size_t process_esp_app_desc_data(const uint32_t *src, bootloader_sha256_handle_t sha_handle, uint32_t *checksum, esp_image_metadata_t *metadata) { /* Using data_buffer here helps to securely read secure_version * (for anti-rollback) from esp_app_desc_t, preventing FI attack. * We read data from Flash into this buffer, which is covered by sha256. * Therefore, if the flash is under attackers control and contents are modified * the sha256 comparison will fail. * * The esp_app_desc_t structure is located in DROM and is always in segment #0. * * esp_app_desc_t is always at #0 segment (index==0). * secure_version field of esp_app_desc_t is located at #2 word (w_i==1). *//* ... */ uint32_t data_buffer[2]; memcpy(data_buffer, src, sizeof(data_buffer)); assert(data_buffer[0] == ESP_APP_DESC_MAGIC_WORD); metadata->secure_version = data_buffer[1]; if (checksum != NULL) { *checksum ^= data_buffer[0] ^ data_buffer[1]; }{...} if (sha_handle != NULL) { bootloader_sha256_data(sha_handle, data_buffer, sizeof(data_buffer)); }{...} ESP_FAULT_ASSERT(memcmp(data_buffer, src, sizeof(data_buffer)) == 0); ESP_FAULT_ASSERT(memcmp(&metadata->secure_version, &src[1], sizeof(uint32_t)) == 0); return sizeof(data_buffer); }{...} /* ... */#endif // CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK static esp_err_t process_segment_data(int segment, intptr_t load_addr, uint32_t data_addr, uint32_t data_len, bool do_load, bootloader_sha256_handle_t sha_handle, uint32_t *checksum, esp_image_metadata_t *metadata) { // If we are not loading, and the checksum is empty, skip processing this // segment for data if (!do_load && checksum == NULL) { ESP_LOGD(TAG, "skipping checksum for segment"); return ESP_OK; }{...} const uint32_t *data = (const uint32_t *)bootloader_mmap(data_addr, data_len); if (!data) { ESP_LOGE(TAG, "bootloader_mmap(0x%"PRIx32", 0x%"PRIx32") failed", data_addr, data_len); return ESP_FAIL; }{...} if (checksum == NULL && sha_handle == NULL) { memcpy((void *)load_addr, data, data_len); #if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE if (esp_ptr_in_iram((uint32_t *)load_addr)) { /* If we have manipulated data over dcache that will be read over icache then we need to writeback, else the data read might be invalid *//* ... */ cache_ll_writeback_all(CACHE_LL_LEVEL_INT_MEM, CACHE_TYPE_DATA, CACHE_LL_ID_ALL); }{...} #endif/* ... */ bootloader_munmap(data); return ESP_OK; }{...} #ifdef BOOTLOADER_BUILD // Set up the obfuscation value to use for loading while (ram_obfs_value[0] == 0 || ram_obfs_value[1] == 0) { bootloader_fill_random(ram_obfs_value, sizeof(ram_obfs_value)); #if CONFIG_IDF_ENV_FPGA /* FPGA doesn't always emulate the RNG */ ram_obfs_value[0] ^= 0x33; ram_obfs_value[1] ^= 0x66;/* ... */ #endif }{...} uint32_t *dest = (uint32_t *)load_addr;/* ... */ #endif // BOOTLOADER_BUILD const uint32_t *src = data; // Case I: Bootloader verifying application // Case II: Bootloader verifying bootloader // The esp_app_desc_t structure is located in DROM and is always in segment #0. // Anti-rollback check and efuse block version check should handle only Case I from above. if (segment == 0 && metadata->start_addr != ESP_BOOTLOADER_OFFSET) { /* ESP32 doesn't have more memory and more efuse bits for block major version. */ #if !CONFIG_IDF_TARGET_ESP32 const esp_app_desc_t *app_desc = (const esp_app_desc_t *)src; esp_err_t ret = bootloader_common_check_efuse_blk_validity(app_desc->min_efuse_blk_rev_full, app_desc->max_efuse_blk_rev_full); if (ret != ESP_OK) { bootloader_munmap(data); return ret; }{...} #endif/* ... */ // !CONFIG_IDF_TARGET_ESP32 #if CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK ESP_LOGD(TAG, "additional anti-rollback check 0x%"PRIx32, data_addr); size_t len = process_esp_app_desc_data(src, sha_handle, checksum, metadata); data_len -= len; src += len / 4; // In BOOTLOADER_BUILD, for DROM (segment #0) we do not load it into dest (only map it), do_load = false./* ... */ #endif // CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK }{...} for (size_t i = 0; i < data_len; i += 4) { int w_i = i / 4; // Word index uint32_t w = src[w_i]; if (checksum != NULL) { *checksum ^= w; }{...} #ifdef BOOTLOADER_BUILD if (do_load) { dest[w_i] = w ^ ((w_i & 1) ? ram_obfs_value[0] : ram_obfs_value[1]); }{...} #endif/* ... */ // SHA_CHUNK determined experimentally as the optimum size // to call bootloader_sha256_data() with. This is a bit // counter-intuitive, but it's ~3ms better than using the // SHA256 block size. const size_t SHA_CHUNK = 1024; if (sha_handle != NULL && i % SHA_CHUNK == 0) { bootloader_sha256_data(sha_handle, &src[w_i], MIN(SHA_CHUNK, data_len - i)); }{...} }{...} #if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE if (do_load && esp_ptr_in_iram((uint32_t *)load_addr)) { /* If we have manipulated data over dcache that will be read over icache then we need to writeback, else the data read might be invalid *//* ... */ cache_ll_writeback_all(CACHE_LL_LEVEL_INT_MEM, CACHE_TYPE_DATA, CACHE_LL_ID_ALL); }{...} #endif/* ... */ bootloader_munmap(data); return ESP_OK; }{ ... } static esp_err_t verify_segment_header(int index, const esp_image_segment_header_t *segment, uint32_t segment_data_offs, esp_image_metadata_t *metadata, bool silent) { if ((segment->data_len & 3) != 0 || segment->data_len >= SIXTEEN_MB) { if (!silent) { ESP_LOGE(TAG, "invalid segment length 0x%"PRIx32, segment->data_len); }{...} return ESP_ERR_IMAGE_INVALID; }{...} uint32_t load_addr = segment->load_addr; bool map_segment = should_map(load_addr); #if SOC_MMU_PAGE_SIZE_CONFIGURABLE /* ESP APP descriptor is present in the DROM segment #0 */ if (index == 0 && metadata->start_addr != ESP_BOOTLOADER_OFFSET) { const esp_app_desc_t *app_desc = (const esp_app_desc_t *)bootloader_mmap(segment_data_offs, sizeof(esp_app_desc_t)); if (!app_desc || app_desc->magic_word != ESP_APP_DESC_MAGIC_WORD) { ESP_LOGE(TAG, "Failed to fetch app description header!"); return ESP_FAIL; }{...} // Convert from log base 2 number to actual size while handling legacy image case (value 0) metadata->mmu_page_size = (app_desc->mmu_page_size > 0) ? (1UL << app_desc->mmu_page_size) : SPI_FLASH_MMU_PAGE_SIZE; if (metadata->mmu_page_size != SPI_FLASH_MMU_PAGE_SIZE) { ESP_LOGI(TAG, "MMU page size mismatch, configured: 0x%x, found: 0x%"PRIx32, SPI_FLASH_MMU_PAGE_SIZE, metadata->mmu_page_size); }{...} bootloader_munmap(app_desc); }{...} else if (index == 0 && metadata->start_addr == ESP_BOOTLOADER_OFFSET) { // Bootloader always uses the default MMU page size metadata->mmu_page_size = SPI_FLASH_MMU_PAGE_SIZE; }{...} #else/* ... */ // SOC_MMU_PAGE_SIZE_CONFIGURABLE metadata->mmu_page_size = SPI_FLASH_MMU_PAGE_SIZE; #endif // !SOC_MMU_PAGE_SIZE_CONFIGURABLE const int mmu_page_size = metadata->mmu_page_size; ESP_LOGV(TAG, "MMU page size 0x%x", mmu_page_size); /* Check that flash cache mapped segment aligns correctly from flash to its mapped address, relative to the MMU page mapping size. *//* ... */ ESP_LOGV(TAG, "segment %d map_segment %d segment_data_offs 0x%"PRIx32" load_addr 0x%"PRIx32, index, map_segment, segment_data_offs, load_addr); if (map_segment && ((segment_data_offs % mmu_page_size) != (load_addr % mmu_page_size))) { if (!silent) { ESP_LOGE(TAG, "Segment %d load address 0x%08"PRIx32", doesn't match data 0x%08"PRIx32, index, load_addr, segment_data_offs); }{...} return ESP_ERR_IMAGE_INVALID; }{...} return ESP_OK; }{ ... } static bool should_map(uint32_t load_addr) { bool is_irom = (load_addr >= SOC_IROM_LOW) && (load_addr < SOC_IROM_HIGH); bool is_drom = (load_addr >= SOC_DROM_LOW) && (load_addr < SOC_DROM_HIGH); bool is_psram = false; #if SOC_MMU_PER_EXT_MEM_TARGET is_psram = (load_addr >= SOC_EXTRAM_LOW) && (load_addr < SOC_EXTRAM_HIGH); #endif return (is_irom || is_drom || is_psram); }{ ... } static bool should_load(uint32_t load_addr) { /* Reload the RTC memory segments whenever a non-deepsleep reset is occurring *//* ... */ bool load_rtc_memory = esp_rom_get_reset_reason(0) != RESET_REASON_CORE_DEEP_SLEEP; if (should_map(load_addr)) { return false; }{...} if (load_addr < 0x10000000) { // Reserved for non-loaded addresses. // Current reserved values are // 0x0 (padding block) // 0x4 (unused, but reserved for an MD5 block) return false; }{...} if (!load_rtc_memory) { #if SOC_RTC_FAST_MEM_SUPPORTED if (load_addr >= SOC_RTC_IRAM_LOW && load_addr < SOC_RTC_IRAM_HIGH) { ESP_LOGD(TAG, "Skipping RTC fast memory segment at 0x%08"PRIx32, load_addr); return false; }{...} if (load_addr >= SOC_RTC_DRAM_LOW && load_addr < SOC_RTC_DRAM_HIGH) { ESP_LOGD(TAG, "Skipping RTC fast memory segment at 0x%08"PRIx32, load_addr); return false; }{...} #endif/* ... */ #if SOC_RTC_SLOW_MEM_SUPPORTED if (load_addr >= SOC_RTC_DATA_LOW && load_addr < SOC_RTC_DATA_HIGH) { ESP_LOGD(TAG, "Skipping RTC slow memory segment at 0x%08"PRIx32, load_addr); return false; }{...} #endif/* ... */ }{...} return true; }{ ... } esp_err_t esp_image_verify_bootloader(uint32_t *length) { esp_image_metadata_t data; esp_err_t err = esp_image_verify_bootloader_data(&data); if (length != NULL) { *length = (err == ESP_OK) ? data.image_len : 0; }{...} return err; }{ ... } esp_err_t esp_image_verify_bootloader_data(esp_image_metadata_t *data) { if (data == NULL) { return ESP_ERR_INVALID_ARG; }{...} const esp_partition_pos_t bootloader_part = { .offset = ESP_BOOTLOADER_OFFSET, .size = ESP_PARTITION_TABLE_OFFSET - ESP_BOOTLOADER_OFFSET, }{...}; return esp_image_verify(ESP_IMAGE_VERIFY, &bootloader_part, data); }{ ... } static esp_err_t process_appended_hash_and_sig(esp_image_metadata_t *data, uint32_t part_offset, uint32_t part_len, bool do_verify, bool silent) { esp_err_t err = ESP_OK; if (data->image.hash_appended) { // Account for the hash in the total image length if (do_verify) { CHECK_ERR(bootloader_flash_read(data->start_addr + data->image_len, &data->image_digest, HASH_LEN, true)); }{...} data->image_len += HASH_LEN; }{...} uint32_t sig_block_len = 0; const uint32_t end = data->image_len; #if CONFIG_SECURE_BOOT || CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT // Case I: Bootloader part if (part_offset == ESP_BOOTLOADER_OFFSET) { // For bootloader with secure boot v1, signature stays in an independent flash // sector (offset 0x0) and does not get appended to the image. #if CONFIG_SECURE_BOOT_V2_ENABLED // Sanity check - secure boot v2 signature block starts on 4K boundary sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; sig_block_len += sizeof(ets_secure_boot_signature_t);/* ... */ #endif }{...} else { // Case II: Application part #if CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME sig_block_len = sizeof(esp_secure_boot_sig_block_t); #else // Sanity check - secure boot v2 signature block starts on 4K boundary sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; sig_block_len += sizeof(ets_secure_boot_signature_t);/* ... */ #endif }{...} #endif/* ... */ // CONFIG_SECURE_BOOT || CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT const uint32_t full_image_len = end + sig_block_len; if (full_image_len > part_len) { FAIL_LOAD("Image length %"PRIu32" doesn't fit in partition length %"PRIu32, full_image_len, part_len); }{...} return err; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} return err; }{ ... } static esp_err_t process_checksum(bootloader_sha256_handle_t sha_handle, uint32_t checksum_word, esp_image_metadata_t *data, bool silent, bool skip_check_checksum) { esp_err_t err = ESP_OK; uint32_t unpadded_length = data->image_len; uint32_t length = unpadded_length + 1; // Add a byte for the checksum length = (length + 15) & ~15; // Pad to next full 16 byte block length = length - unpadded_length; // Verify checksum WORD_ALIGNED_ATTR uint8_t buf[16] = {0}; if (!skip_check_checksum || sha_handle != NULL) { CHECK_ERR(bootloader_flash_read(data->start_addr + unpadded_length, buf, length, true)); }{...} uint8_t read_checksum = buf[length - 1]; uint8_t calc_checksum = (checksum_word >> 24) ^ (checksum_word >> 16) ^ (checksum_word >> 8) ^ (checksum_word >> 0); if (!skip_check_checksum && calc_checksum != read_checksum) { FAIL_LOAD("Checksum failed. Calculated 0x%x read 0x%x", calc_checksum, read_checksum); }{...} if (sha_handle != NULL) { bootloader_sha256_data(sha_handle, buf, length); }{...} data->image_len += length; return err; err: if (err == ESP_OK) { err = ESP_ERR_IMAGE_INVALID; }{...} return err; }{ ... } static esp_err_t verify_secure_boot_signature(bootloader_sha256_handle_t sha_handle, esp_image_metadata_t *data, uint8_t *image_digest, uint8_t *verified_digest) { #if (SECURE_BOOT_CHECK_SIGNATURE == 1) uint32_t end = data->start_addr + data->image_len; ESP_LOGI(TAG, "Verifying image signature..."); // For secure boot, we calculate the signature hash over the whole file, which includes any "simple" hash // appended to the image for corruption detection if (data->image.hash_appended) { const void *simple_hash = bootloader_mmap(end - HASH_LEN, HASH_LEN); bootloader_sha256_data(sha_handle, simple_hash, HASH_LEN); bootloader_munmap(simple_hash); }{...} #if CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME || CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME // End of the image needs to be padded all the way to a 4KB boundary, after the simple hash // (for apps they are usually already padded due to --secure-pad-v2, only a problem if this option was not used.) uint32_t padded_end = ALIGN_UP(end, FLASH_SECTOR_SIZE); if (padded_end > end) { const void *padding = bootloader_mmap(end, padded_end - end); bootloader_sha256_data(sha_handle, padding, padded_end - end); bootloader_munmap(padding); end = padded_end; }{...} #endif/* ... */ // CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME || CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME bootloader_sha256_finish(sha_handle, image_digest); // Log the hash for debugging bootloader_debug_buffer(image_digest, HASH_LEN, "Calculated secure boot hash"); // Use hash to verify signature block esp_err_t err = ESP_ERR_IMAGE_INVALID; #if CONFIG_SECURE_BOOT || CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT const void *sig_block; ESP_FAULT_ASSERT(memcmp(image_digest, verified_digest, HASH_LEN) != 0); /* sanity check that these values start differently */ #if defined(CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME) sig_block = bootloader_mmap(data->start_addr + data->image_len, sizeof(esp_secure_boot_sig_block_t)); err = esp_secure_boot_verify_ecdsa_signature_block(sig_block, image_digest, verified_digest);/* ... */ #else sig_block = bootloader_mmap(end, sizeof(ets_secure_boot_signature_t)); err = esp_secure_boot_verify_sbv2_signature_block(sig_block, image_digest, verified_digest);/* ... */ #endif bootloader_munmap(sig_block);/* ... */ #endif // CONFIG_SECURE_BOOT || CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT if (err != ESP_OK) { ESP_LOGE(TAG, "Secure boot signature verification failed"); // Go back and check if the simple hash matches or not (we're off the fast path so we can re-hash the whole image now) ESP_LOGI(TAG, "Calculating simple hash to check for corruption..."); const void *whole_image = bootloader_mmap(data->start_addr, data->image_len - HASH_LEN); if (whole_image != NULL) { sha_handle = bootloader_sha256_start(); bootloader_sha256_data(sha_handle, whole_image, data->image_len - HASH_LEN); bootloader_munmap(whole_image); if (verify_simple_hash(sha_handle, data) != ESP_OK) { ESP_LOGW(TAG, "image corrupted on flash"); }{...} else { ESP_LOGW(TAG, "image valid, signature bad"); }{...} }{...} return ESP_ERR_IMAGE_INVALID; }{...} // Adjust image length result to include the appended signature #if CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME || CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME data->image_len = end - data->start_addr + sizeof(ets_secure_boot_signature_t); #elif defined(CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME) if (data->start_addr != ESP_BOOTLOADER_OFFSET) { data->image_len = end - data->start_addr + sizeof(esp_secure_boot_sig_block_t); }{...} #endif/* ... */ /* ... */ #endif // SECURE_BOOT_CHECK_SIGNATURE return ESP_OK; }{ ... } static esp_err_t verify_simple_hash(bootloader_sha256_handle_t sha_handle, esp_image_metadata_t *data) { uint8_t image_hash[HASH_LEN] = { 0 }; bootloader_sha256_finish(sha_handle, image_hash); // Log the hash for debugging bootloader_debug_buffer(image_hash, HASH_LEN, "Calculated hash"); // Simple hash for verification only if (memcmp(data->image_digest, image_hash, HASH_LEN) != 0) { ESP_LOGE(TAG, "Image hash failed - image is corrupt"); bootloader_debug_buffer(data->image_digest, HASH_LEN, "Expected hash"); #if CONFIG_IDF_ENV_FPGA || CONFIG_IDF_ENV_BRINGUP ESP_LOGW(TAG, "Ignoring invalid SHA-256 as running on FPGA / doing bringup"); return ESP_OK;/* ... */ #endif return ESP_ERR_IMAGE_INVALID; }{...} return ESP_OK; }{ ... } int esp_image_get_flash_size(esp_image_flash_size_t app_flash_size) { switch (app_flash_size) { case ESP_IMAGE_FLASH_SIZE_1MB: return 1 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_2MB: return 2 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_4MB: return 4 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_8MB: return 8 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_16MB: return 16 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_32MB: return 32 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_64MB: return 64 * 1024 * 1024;... case ESP_IMAGE_FLASH_SIZE_128MB: return 128 * 1024 * 1024;... default: return 0;... }{...} }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.