Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include "esp_gdbstub.h"
#include "esp_gdbstub_common.h"
#include "esp_gdbstub_memory_regions.h"
#include "sdkconfig.h"
#include <sys/param.h>
#include "soc/soc_caps.h"
#include "soc/uart_reg.h"
#include "soc/periph_defs.h"
#include "esp_attr.h"
#include "esp_cpu.h"
#include "esp_log.h"
#include "esp_intr_alloc.h"
#include "hal/wdt_hal.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
s_scratch
gdb_local_regfile
esp_gdbstub_panic_handler(void *)
send_reason()
gdbstub_hton(uint32_t)
rtc_wdt_ctx
rtc_wdt_ctx_enabled
wdt0_context
wdt0_context_enabled
wdt1_context
wdt1_context_enabled
disable_all_wdts()
enable_all_wdts()
temp_regs_frame
esp_gdbstub_send_str_as_hex(const char *)
handle_g_command(const unsigned char *, int)
handle_G_command(const unsigned char *, int)
esp_gdbstub_readmem(intptr_t)
esp_gdbstub_writemem(unsigned int, unsigned char)
handle_m_command(const unsigned char *, int)
handle_M_command(const unsigned char *, int)
esp_gdbstub_handle_command(unsigned char *, int)
gdbstub__swrite(struct _reent *, void *, const char *, int)
gdb_get_asci_char(unsigned char, char *)
gdb_packet(char *, char *, int)
command_name_matches(const char *, const unsigned char *, int)
gdb_tid_to_task_index(int)
task_index_to_gdb_tid(int)
init_task_info()
get_task_handle(size_t, TaskHandle_t *)
get_task_state(size_t)
get_task_cpu_id(size_t)
find_paniced_task_index()
set_active_task(size_t)
handle_H_command(const unsigned char *, int)
handle_qC_command(const unsigned char *, int)
getActiveTaskNum()
handle_T_command(const unsigned char *, int)
send_single_thread_info(int)
handle_qfThreadInfo_command(const unsigned char *, int)
handle_qsThreadInfo_command(const unsigned char *, int)
handle_qThreadExtraInfo_command(const unsigned char *, int)
handle_task_commands(unsigned char *, int)
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_gdbstub/src/gdbstub.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
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <string.h> #include "esp_gdbstub.h" #include "esp_gdbstub_common.h" #include "esp_gdbstub_memory_regions.h" #include "sdkconfig.h" #include <sys/param.h> #include "soc/soc_caps.h" #include "soc/uart_reg.h" #include "soc/periph_defs.h" #include "esp_attr.h" #include "esp_cpu.h" #include "esp_log.h" #include "esp_intr_alloc.h" #include "hal/wdt_hal.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h"16 includes #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS static inline int gdb_tid_to_task_index(int tid); static inline int task_index_to_gdb_tid(int tid); static void init_task_info(void); static void find_paniced_task_index(void); static void set_active_task(size_t index); static int handle_task_commands(unsigned char *cmd, int len); static void esp_gdbstub_send_str_as_hex(const char *str);/* ... */ #endif #ifdef CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME static void handle_qSupported_command(const unsigned char *cmd, int len); #endif // CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME #if (CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME || CONFIG_ESP_GDBSTUB_SUPPORT_TASKS) static bool command_name_matches(const char *pattern, const unsigned char *ucmd, int len); #endif // (CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME || CONFIG_ESP_GDBSTUB_SUPPORT_TASKS) static void send_reason(void); static char gdb_packet(char *dest_buff, char *src_buff, int len); esp_gdbstub_scratch_t s_scratch; esp_gdbstub_gdb_regfile_t *gdb_local_regfile = &s_scratch.regfile; /** * @brief panic handler *//* ... */ void esp_gdbstub_panic_handler(void *in_frame) { esp_gdbstub_frame_t *frame = (esp_gdbstub_frame_t *)in_frame; #ifndef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS esp_gdbstub_frame_to_regfile(frame, &s_scratch.regfile); #else if (s_scratch.state == GDBSTUB_STARTED) { /* We have re-entered GDB Stub. Try disabling task support. */ s_scratch.state = GDBSTUB_TASK_SUPPORT_DISABLED; /* Flush any pending GDB packet (this creates a garbage value) */ esp_gdbstub_send_end(); }{...} else if (s_scratch.state == GDBSTUB_NOT_STARTED) { s_scratch.state = GDBSTUB_STARTED; /* Save the panicked frame and get the list of tasks */ memcpy(&s_scratch.paniced_frame, frame, sizeof(*frame)); init_task_info(); find_paniced_task_index(); /* Current task is the panicked task */ if (s_scratch.paniced_task_index == GDBSTUB_CUR_TASK_INDEX_UNKNOWN) { set_active_task(0); }{...} else { set_active_task(s_scratch.paniced_task_index); }{...} }{...} #endif/* ... */ /* CONFIG_ESP_GDBSTUB_SUPPORT_TASKS */ s_scratch.signal = esp_gdbstub_get_signal(frame); send_reason(); while (true) { unsigned char *cmd; size_t size; int res = esp_gdbstub_read_command(&cmd, &size); if (res > 0) { /* character received instead of a command */ continue; }{...} if (res == GDBSTUB_ST_ERR) { esp_gdbstub_send_str_packet("E01"); continue; }{...} res = esp_gdbstub_handle_command(cmd, size); if (res == GDBSTUB_ST_ERR) { esp_gdbstub_send_str_packet(NULL); }{...} }{...} }{ ... } /** * Set interrupt reason to GDB *//* ... */ static void send_reason(void) { esp_gdbstub_send_start(); esp_gdbstub_send_char('T'); esp_gdbstub_send_hex(s_scratch.signal, 8); esp_gdbstub_send_end(); }{ ... } /** * Swap bytes in word *//* ... */ static uint32_t gdbstub_hton(uint32_t i) { return __builtin_bswap32(i); }{ ... } static wdt_hal_context_t rtc_wdt_ctx = RWDT_HAL_CONTEXT_DEFAULT(); static bool rtc_wdt_ctx_enabled = false; static wdt_hal_context_t wdt0_context = {.inst = WDT_MWDT0, .mwdt_dev = &TIMERG0}; static bool wdt0_context_enabled = false; #if SOC_TIMER_GROUPS >= 2 static wdt_hal_context_t wdt1_context = {.inst = WDT_MWDT1, .mwdt_dev = &TIMERG1}; static bool wdt1_context_enabled = false;/* ... */ #endif // SOC_TIMER_GROUPS /** * Disable all enabled WDTs *//* ... */ static inline void disable_all_wdts(void) { wdt0_context_enabled = wdt_hal_is_enabled(&wdt0_context); #if SOC_TIMER_GROUPS >= 2 wdt1_context_enabled = wdt_hal_is_enabled(&wdt1_context); #endif rtc_wdt_ctx_enabled = wdt_hal_is_enabled(&rtc_wdt_ctx); /*Task WDT is the Main Watchdog Timer of Timer Group 0 */ if (true == wdt0_context_enabled) { wdt_hal_write_protect_disable(&wdt0_context); wdt_hal_disable(&wdt0_context); wdt_hal_feed(&wdt0_context); wdt_hal_write_protect_enable(&wdt0_context); }{...} #if SOC_TIMER_GROUPS >= 2 /* Interrupt WDT is the Main Watchdog Timer of Timer Group 1 */ if (true == wdt1_context_enabled) { wdt_hal_write_protect_disable(&wdt1_context); wdt_hal_disable(&wdt1_context); wdt_hal_feed(&wdt1_context); wdt_hal_write_protect_enable(&wdt1_context); }{...} /* ... */#endif // SOC_TIMER_GROUPS >= 2 if (true == rtc_wdt_ctx_enabled) { wdt_hal_write_protect_disable(&rtc_wdt_ctx); wdt_hal_disable(&rtc_wdt_ctx); wdt_hal_feed(&rtc_wdt_ctx); wdt_hal_write_protect_enable(&rtc_wdt_ctx); }{...} }{ ... } /** * Enable all enabled WDTs *//* ... */ static inline void enable_all_wdts(void) { /* Task WDT is the Main Watchdog Timer of Timer Group 0 */ if (false == wdt0_context_enabled) { wdt_hal_write_protect_disable(&wdt0_context); wdt_hal_enable(&wdt0_context); wdt_hal_write_protect_enable(&wdt0_context); }{...} #if SOC_TIMER_GROUPS >= 2 /* Interrupt WDT is the Main Watchdog Timer of Timer Group 1 */ if (false == wdt1_context_enabled) { wdt_hal_write_protect_disable(&wdt1_context); wdt_hal_enable(&wdt1_context); wdt_hal_write_protect_enable(&wdt1_context); }{...} /* ... */#endif // SOC_TIMER_GROUPS >= 2 if (false == rtc_wdt_ctx_enabled) { wdt_hal_write_protect_disable(&rtc_wdt_ctx); wdt_hal_enable(&rtc_wdt_ctx); wdt_hal_write_protect_enable(&rtc_wdt_ctx); }{...} }{ ... } int getActiveTaskNum(void); int __swrite(struct _reent *, void *, const char *, int); int gdbstub__swrite(struct _reent *data1, void *data2, const char *buff, int len); volatile esp_gdbstub_frame_t *temp_regs_frame; #ifdef CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME static int bp_count = 0; static int wp_count = 0; static uint32_t bp_list[SOC_CPU_BREAKPOINTS_NUM] = {0}; static uint32_t wp_list[SOC_CPU_WATCHPOINTS_NUM] = {0}; static uint32_t wp_size[SOC_CPU_WATCHPOINTS_NUM] = {0}; static esp_cpu_watchpoint_trigger_t wp_access[SOC_CPU_WATCHPOINTS_NUM] = {0}; static volatile bool step_in_progress = false; static bool not_send_reason = false; static bool process_gdb_kill = false; static bool gdb_debug_int = false; /** * @brief Handle UART interrupt * * Handle UART interrupt for gdbstub. The function disable WDT. * If Ctrl+C combination detected (0x03), then application will start to process incoming GDB messages. * The gdbstub will stay in this interrupt until continue command will be received ($c#63). * * @param curr_regs - actual registers frame * *//* ... */ void gdbstub_handle_uart_int(esp_gdbstub_frame_t *regs_frame) { temp_regs_frame = regs_frame; not_send_reason = step_in_progress; if (step_in_progress == true) { esp_gdbstub_send_str_packet("S05"); step_in_progress = false; }{...} // process_gdb_kill = false; bp_count = 0; wp_count = 0; /* Disable all enabled WDT on enter */ disable_all_wdts(); int doDebug = esp_gdbstub_getfifo(); s_scratch.signal = esp_gdbstub_get_signal(regs_frame); if (doDebug) { process_gdb_kill = false; /* To enable console output in GDB, we replace the default stdout->_write function */ stdout->_write = gdbstub__swrite; stderr->_write = gdbstub__swrite; /* Stall other core until GDB exit */ esp_gdbstub_stall_other_cpus_start(); #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS init_task_info(); #endif/* CONFIG_ESP_GDBSTUB_SUPPORT_TASKS */ esp_gdbstub_frame_to_regfile(regs_frame, gdb_local_regfile); send_reason(); while (true) { unsigned char *cmd; size_t size; int res = esp_gdbstub_read_command(&cmd, &size); if (res == '-') { send_reason(); continue; }{...} if (res > 0) { /* character received instead of a command */ continue; }{...} if (res == -2) { esp_gdbstub_send_str_packet("E01"); continue; }{...} res = esp_gdbstub_handle_command(cmd, size); if (res == -2) { esp_gdbstub_send_str_packet(NULL); }{...} if (res == GDBSTUB_ST_CONT) { break; }{...} }{...} { /* Resume other core */ if (step_in_progress == false) { esp_gdbstub_stall_other_cpus_end(); }{...} }{...} }{...} esp_gdbstub_getfifo(); /* This is workaround for problem with 'next' command. */ if (process_gdb_kill == false) { esp_gdbstub_send_str("OK"); }{...} else { /* We flush all data before exit from GDB.*/ esp_gdbstub_flush(); }{...} }{...} void gdbstub_handle_debug_int(esp_gdbstub_frame_t *regs_frame) { bp_count = 0; wp_count = 0; temp_regs_frame = regs_frame; gdb_debug_int = true; not_send_reason = step_in_progress; if (step_in_progress == true) { esp_gdbstub_clear_step(); esp_gdbstub_send_str_packet("S05"); step_in_progress = false; }{...} int doDebug = esp_gdbstub_getfifo(); s_scratch.signal = 5; /* esp_gdbstub_get_db_signal(regs_frame); */ doDebug = 1; if (doDebug) { #if CONFIG_ESP_GDBSTUB_SUPPORT_TASKS s_scratch.current_task_index = getActiveTaskNum(); #endif process_gdb_kill = false; /* Stall other core until GDB exit */ esp_gdbstub_stall_other_cpus_start(); #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS init_task_info(); #endif/* CONFIG_ESP_GDBSTUB_SUPPORT_TASKS */ esp_gdbstub_frame_to_regfile(regs_frame, gdb_local_regfile); send_reason(); while (true) { unsigned char *cmd; size_t size; int res = esp_gdbstub_read_command(&cmd, &size); if (res == '-') { send_reason(); continue; }{...} if (res > 0) { /* character received instead of a command */ continue; }{...} if (res == -2) { esp_gdbstub_send_str_packet("E01"); continue; }{...} res = esp_gdbstub_handle_command(cmd, size); if (res == -2) { esp_gdbstub_send_str_packet(NULL); }{...} if (res == GDBSTUB_ST_CONT) { break; }{...} }{...} { /* Resume other core */ if (step_in_progress == false) { esp_gdbstub_stall_other_cpus_end(); }{...} }{...} }{...} esp_gdbstub_getfifo(); if (process_gdb_kill == true) { /* We flush all data before exit from GDB.*/ esp_gdbstub_flush(); }{...} gdb_debug_int = false; }{...} /** @brief Init gdbstub * Init uart interrupt for gdbstub * *//* ... */ void esp_gdbstub_init(void) { esp_intr_alloc(ETS_UART0_INTR_SOURCE, 0, esp_gdbstub_int, NULL, NULL); esp_gdbstub_init_dports(); }{...} /* ... */#endif /* CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME */ #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS /** Send string as a het to uart */ static void esp_gdbstub_send_str_as_hex(const char *str) { while (*str) { esp_gdbstub_send_hex(*str, 8); str++; }{...} }{ ... } #endif/* ... */ /** Send all registers to gdb */ static void handle_g_command(const unsigned char *cmd, int len) { uint32_t *p = (uint32_t *) &s_scratch.regfile; esp_gdbstub_send_start(); for (int i = 0; i < sizeof(s_scratch.regfile) / sizeof(*p); ++i) { esp_gdbstub_send_hex(gdbstub_hton(*p++), 32); }{...} esp_gdbstub_send_end(); }{ ... } /** Receive register values from gdb */ static void handle_G_command(const unsigned char *cmd, int len) { uint32_t *p = (uint32_t *) &s_scratch.regfile; for (int i = 0; i < sizeof(s_scratch.regfile) / sizeof(*p); ++i) { *p++ = gdbstub_hton(esp_gdbstub_gethex(&cmd, 32)); }{...} esp_gdbstub_send_str_packet("OK"); }{ ... } static int esp_gdbstub_readmem(intptr_t addr) { if (!is_valid_memory_region(addr)) { /* see esp_cpu_configure_region_protection */ return -1; }{...} uint32_t val_aligned = *(uint32_t *)(addr & (~3)); uint32_t shift = (addr & 3) * 8; return (val_aligned >> shift) & 0xff; }{ ... } static int esp_gdbstub_writemem(unsigned int addr, unsigned char data) { if (!is_valid_memory_region(addr)) { /* see esp_cpu_configure_region_protection */ return -1; }{...} unsigned *addr_aligned = (unsigned *)(addr & (~3)); const uint32_t bit_offset = (addr & 0x3) * 8; const uint32_t mask = ~(0xff << bit_offset); *addr_aligned = (*addr_aligned & mask) | (data << bit_offset); #if CONFIG_IDF_TARGET_ARCH_XTENSA asm volatile("ISYNC\nISYNC\n"); #endif // CONFIG_IDF_TARGET_ARCH_XTENSA return 0; }{ ... } /** Read memory to gdb */ static void handle_m_command(const unsigned char *cmd, int len) { intptr_t addr = (intptr_t) esp_gdbstub_gethex(&cmd, -1); cmd++; uint32_t size = esp_gdbstub_gethex(&cmd, -1); if (esp_gdbstub_readmem(addr) < 0 || esp_gdbstub_readmem(addr + size - 1) < 0) { esp_gdbstub_send_str_packet("E01"); return; }{...} esp_gdbstub_send_start(); for (int i = 0; i < size; ++i) { int b = esp_gdbstub_readmem(addr++); esp_gdbstub_send_hex(b, 8); }{...} esp_gdbstub_send_end(); }{ ... } /** Write memory from gdb */ static void handle_M_command(const unsigned char *cmd, int len) { intptr_t addr = (intptr_t) esp_gdbstub_gethex(&cmd, -1); cmd++; /* skip '.' */ uint32_t size = esp_gdbstub_gethex(&cmd, -1); cmd++; /* skip ':' */ if (esp_gdbstub_readmem(addr) < 0 || esp_gdbstub_readmem(addr + size - 1) < 0) { esp_gdbstub_send_str_packet("E01"); return; }{...} for (int k = 0; k < size; k++) { esp_gdbstub_writemem(addr, esp_gdbstub_gethex(&cmd, 8)); addr++; }{...} esp_gdbstub_send_start(); esp_gdbstub_send_str_packet("OK"); esp_gdbstub_send_end(); }{ ... } #ifdef CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME void update_breakpoints(void) { #if CONFIG_IDF_TARGET_ARCH_XTENSA for (size_t i = 0; i < SOC_CPU_BREAKPOINTS_NUM; i++) { if (bp_list[i] != 0) { esp_cpu_set_breakpoint(i, (const void *)bp_list[i]); }{...} else { esp_cpu_clear_breakpoint(i); }{...} }{...} for (size_t i = 0; i < SOC_CPU_WATCHPOINTS_NUM; i++) { if (wp_list[i] != 0) { esp_cpu_set_watchpoint(i, (void *)wp_list[i], wp_size[i], wp_access[i]); }{...} else { esp_cpu_clear_watchpoint(i); }{...} }{...} /* ... */#else // CONFIG_IDF_TARGET_ARCH_XTENSA #if (SOC_CPU_BREAKPOINTS_NUM != SOC_CPU_WATCHPOINTS_NUM) #error "riscv have a common number of BP and WP" #endif /* * On riscv we have no separated registers for setting BP and WP as we have for xtensa. * Instead we have common registers which could be configured as BP or WP. *//* ... */ size_t i = 0; for (size_t b = 0; b < SOC_CPU_BREAKPOINTS_NUM; b++) { if (bp_list[b] != 0) { esp_cpu_set_breakpoint(i, (const void *)bp_list[b]); i++; }{...} }{...} for (size_t w = 0; w < SOC_CPU_WATCHPOINTS_NUM && i < SOC_CPU_WATCHPOINTS_NUM; w++) { if (wp_list[w] != 0) { esp_cpu_set_watchpoint(i, (void *)wp_list[w], wp_size[w], wp_access[w]); i++; }{...} }{...} for (; i < SOC_CPU_BREAKPOINTS_NUM; i++) { esp_cpu_clear_breakpoint(i); }{...} /* ... */#endif // CONFIG_IDF_TARGET_ARCH_XTENSA }{...} /** Write breakpoint */ static void handle_Z0_command(const unsigned char *cmd, int len) { cmd++; /* skip 'Z' */ cmd++; /* skip '0' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); if (bp_count >= SOC_CPU_BREAKPOINTS_NUM) { esp_gdbstub_send_str_packet("E02"); return; }{...} bool add_bp = true; /* Check if bp already exist */ for (size_t i = 0; i < SOC_CPU_BREAKPOINTS_NUM; i++) { if (bp_list[i] == addr) { add_bp = false; break; }{...} }{...} if (true == add_bp) { for (size_t i = 0; i < SOC_CPU_BREAKPOINTS_NUM; i++) { if (bp_list[i] == 0) { bp_list[i] = (uint32_t)addr; bp_count++; break; }{...} }{...} }{...} update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Clear breakpoint */ static void handle_z0_command(const unsigned char *cmd, int len) { cmd++; /* skip 'z' */ cmd++; /* skip '0' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); for (size_t i = 0; i < SOC_CPU_BREAKPOINTS_NUM; i++) { if (bp_list[i] == addr) { bp_list[i] = 0; bp_count--; }{...} }{...} update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Write watchpoints write*/ static void handle_Z2_command(const unsigned char *cmd, int len) { cmd++; /* skip 'Z' */ cmd++; /* skip '2' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); cmd++; uint32_t size = esp_gdbstub_gethex(&cmd, -1); if (wp_count >= SOC_CPU_WATCHPOINTS_NUM) { esp_gdbstub_send_str_packet("E02"); return; }{...} wp_access[wp_count] = ESP_CPU_WATCHPOINT_STORE; wp_size[wp_count] = size; wp_list[wp_count++] = (uint32_t)addr; update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Write watchpoints read*/ static void handle_Z3_command(const unsigned char *cmd, int len) { cmd++; /* skip 'Z' */ cmd++; /* skip '3' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); cmd++; uint32_t size = esp_gdbstub_gethex(&cmd, -1); if (wp_count >= SOC_CPU_WATCHPOINTS_NUM) { esp_gdbstub_send_str_packet("E02"); return; }{...} wp_access[wp_count] = ESP_CPU_WATCHPOINT_LOAD; wp_size[wp_count] = size; wp_list[wp_count++] = (uint32_t)addr; update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Write watchpoints access*/ static void handle_Z4_command(const unsigned char *cmd, int len) { cmd++; /* skip 'Z' */ cmd++; /* skip '4' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); cmd++; uint32_t size = esp_gdbstub_gethex(&cmd, -1); if (wp_count >= SOC_CPU_WATCHPOINTS_NUM) { esp_gdbstub_send_str_packet("E02"); return; }{...} wp_access[wp_count] = ESP_CPU_WATCHPOINT_ACCESS; wp_size[wp_count] = size; wp_list[wp_count++] = (uint32_t)addr; update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Clear watchpoint */ static void handle_zx_command(const unsigned char *cmd, int len) { cmd++; /* skip 'z' */ cmd++; /* skip 'x' */ uint32_t addr = esp_gdbstub_gethex(&cmd, -1); for (size_t i = 0; i < SOC_CPU_WATCHPOINTS_NUM; i++) { if (wp_list[i] == addr) { wp_access[i] = 0; wp_list[i] = 0; }{...} }{...} update_breakpoints(); esp_gdbstub_trigger_cpu(); esp_gdbstub_send_str_packet("OK"); }{...} /** Step ... */ static void handle_S_command(const unsigned char *cmd, int len) { esp_gdbstub_send_str_packet("S05"); }{...} /** Step ... */ static void handle_s_command(const unsigned char *cmd, int len) { step_in_progress = true; esp_gdbstub_do_step((esp_gdbstub_frame_t *)temp_regs_frame); }{...} /** Step ... */ static void handle_C_command(const unsigned char *cmd, int len) { esp_gdbstub_send_str_packet("OK"); }{...} /* Set Register ... */ static void handle_P_command(const unsigned char *cmd, int len) { uint32_t reg_index = 0; if (cmd[1] == '=') { reg_index = esp_gdbstub_gethex(&cmd, 4); cmd++; }{...} else if (cmd[2] == '=') { reg_index = esp_gdbstub_gethex(&cmd, 8); cmd++; cmd++; }{...} else { esp_gdbstub_send_str_packet("E02"); return; }{...} uint32_t addr = esp_gdbstub_gethex(&cmd, -1); /* The address comes with inverted byte order.*/ uint8_t *addr_ptr = (uint8_t *)&addr; uint32_t p_address = 0; uint8_t *p_addr_ptr = (uint8_t *)&p_address; p_addr_ptr[3] = addr_ptr[0]; p_addr_ptr[2] = addr_ptr[1]; p_addr_ptr[1] = addr_ptr[2]; p_addr_ptr[0] = addr_ptr[3]; esp_gdbstub_set_register((esp_gdbstub_frame_t *)temp_regs_frame, reg_index, p_address); /* Convert current register file to GDB*/ esp_gdbstub_frame_to_regfile((esp_gdbstub_frame_t *)temp_regs_frame, gdb_local_regfile); /* Sen OK response*/ esp_gdbstub_send_str_packet("OK"); }{...} /** qSupported requests the communication with GUI *//* ... */ static void handle_qSupported_command(const unsigned char *cmd, int len) { esp_gdbstub_send_start(); esp_gdbstub_send_str("qSupported:multiprocess+;swbreak-;hwbreak+;qRelocInsn+;fork-events+;vfork-events+;exec-events+;vContSupported+;QThreadEvents+;no-resumed+"); esp_gdbstub_send_end(); }{...} /* ... */ #endif // CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME /** Handle a command received from gdb */ int esp_gdbstub_handle_command(unsigned char *cmd, int len) { unsigned char *data = cmd + 1; if (cmd[0] == 'g') { handle_g_command(data, len - 1); }{...} else if (cmd[0] == 'G') { /* receive content for all registers from gdb */ handle_G_command(data, len - 1); }{...} else if (cmd[0] == 'm') { /* read memory to gdb */ handle_m_command(data, len - 1); }{...} else if (cmd[0] == 'M') { /* write to memory from GDB */ handle_M_command(data, len - 1); }{...} else if (cmd[0] == '?') { /* Reply with stop reason */ send_reason(); #ifdef CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME }{...} else if (cmd[0] == 'Z') { if (cmd[1] == '0') { /* Write breakpoint */ handle_Z0_command(data, len - 1); }{...} if (cmd[1] == '2') { /* Write breakpoint */ handle_Z2_command(data, len - 1); }{...} if (cmd[1] == '3') { /* Write breakpoint */ handle_Z3_command(data, len - 1); }{...} if (cmd[1] == '4') { /* Write breakpoint */ handle_Z4_command(data, len - 1); }{...} }{...} else if (cmd[0] == 'z') { /* Clear breakpoint*/ if (cmd[1] == '0') { handle_z0_command(data, len - 1); }{...} /* Clear breakpoint*/ if ((cmd[1] == '2') || (cmd[1] == '3') || (cmd[1] == '4')) { handle_zx_command(data, len - 1); }{...} }{...} else if (cmd[0] == 'S') { /* Step */ handle_S_command(data, len - 1); }{...} else if (cmd[0] == 'k') { /* Kill GDB and continue without */ /* By exit from GDB we have to replcae stdout->_write back */ stdout->_write = __swrite; stderr->_write = __swrite; process_gdb_kill = true; return GDBSTUB_ST_CONT; }{...} else if (cmd[0] == 's') { /* Step and continue*/ handle_s_command(data, len - 1); return GDBSTUB_ST_CONT; }{...} else if (cmd[0] == 'C') { /* Just continue*/ handle_C_command(data, len - 1); size_t size; esp_gdbstub_read_command(&cmd, &size); return GDBSTUB_ST_CONT; }{...} else if (cmd[0] == 'P') { handle_P_command(data, len - 1); }{...} else if (cmd[0] == 'c') { //continue execution return GDBSTUB_ST_CONT; }{...} else if (command_name_matches("qSupported", cmd, 10)) { handle_qSupported_command(cmd, len); #endif // CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME #if CONFIG_ESP_GDBSTUB_SUPPORT_TASKS }{...} else if (s_scratch.state != GDBSTUB_TASK_SUPPORT_DISABLED) { return handle_task_commands(cmd, len); #endif // CONFIG_ESP_GDBSTUB_SUPPORT_TASKS }{...} else { /* Unrecognized command */ return GDBSTUB_ST_ERR; }{...} return GDBSTUB_ST_OK; }{ ... } /** * Replace standard __swrite function for GDB *//* ... */ /* const int buff_len = 16; */ /* static char log_buffer[16*2 + 7]; */ int gdbstub__swrite(struct _reent *data1, void *data2, const char *buff, int len) { const int buff_len = 16; char log_buffer[buff_len * 2 + 7]; char s_chsum = 'O'; char *sent_data = (char *)buff; size_t remaining = len; size_t send_pos = 0; while (remaining > 0) { size_t will_send = MIN(remaining, buff_len); remaining -= will_send; /* prepare and set 'will_send' number of bytes */ if (will_send > 0) { log_buffer[0] = '$'; log_buffer[1] = 'O'; s_chsum = 'O'; s_chsum += gdb_packet(&log_buffer[2], &sent_data[send_pos], will_send); sprintf(&log_buffer[will_send * 2 + 2], "#%2.2x\n", s_chsum); __swrite(data1, data2, log_buffer, will_send * 2 + 6); send_pos += buff_len; }{...} }{...} return len; }{ ... } /** @brief Convert to ASCI * Function convert byte value to two ASCI carecters *//* ... */ void gdb_get_asci_char(unsigned char data, char *buff) { const char *hex_chars = "0123456789abcdef"; buff[0] = hex_chars[(data >> 4) & 0x0f]; buff[1] = hex_chars[(data) & 0x0f]; }{ ... } /* Everything below is related to the support for listing FreeRTOS tasks as threads in GDB */ /** @brief Prepare GDB packet * Function build GDB asci packet and return checksum * * Return checksum *//* ... */ char gdb_packet(char *dest_buff, char *src_buff, int len) { char s_chsum = 0; for (size_t i = 0; i < len; i++) { gdb_get_asci_char(src_buff[i], &dest_buff[i * 2 + 0]); }{...} for (size_t i = 0; i < len * 2; i++) { s_chsum += dest_buff[i]; }{...} return s_chsum; }{ ... } #if (CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME || CONFIG_ESP_GDBSTUB_SUPPORT_TASKS) static bool command_name_matches(const char *pattern, const unsigned char *ucmd, int len) { const char *cmd = (const char *) ucmd; const char *end = cmd + len; for (; *pattern && cmd < end; ++cmd, ++pattern) { if (*pattern == '?') { continue; }{...} if (*pattern != *cmd) { return false; }{...} }{...} return *pattern == 0 && (cmd == end || *cmd == ','); }{ ... } /* ... */#endif // (CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME || CONFIG_ESP_GDBSTUB_SUPPORT_TASKS) #ifdef CONFIG_ESP_GDBSTUB_SUPPORT_TASKS /* Some terminology related to task/thread indices: * * "task index" — Index used here in gdbstub.c to enumberate all the tasks. * Range is from 0 to <number of tasks> - 1. * The order is defined by uxTaskGetSnapshotAll. * * "GDB TID" — Thread ID used by GDB internally and in the remote protocol. * IDs of real threads can be any positive values other than 0. * For example, OpenOCD uses the TCB pointer (cast to a 32-bit int) as GDB TID. * Values 0 and -1, when used in place of TID in the remote protocol * have special meanings: * -1: indicates all threads, may be used in 'Hc' command * 0: indicates an arbitrary process or thread (GDB client doesn't care, server decides) * * Since GDB TIDs are arbitrary, except that 0 is reserved, we set them using a simple rule: * GDB TID = task index + 1. * The two functions below perform the conversions between the kinds of IDs. *//* ... */ static inline int gdb_tid_to_task_index(int tid) { return tid - 1; }{ ... } static inline int task_index_to_gdb_tid(int tid) { return tid + 1; }{ ... } static void init_task_info(void) { unsigned tcb_size; s_scratch.task_count = uxTaskGetSnapshotAll(s_scratch.tasks, GDBSTUB_TASKS_NUM, &tcb_size); }{ ... } static bool get_task_handle(size_t index, TaskHandle_t *handle) { if (index >= s_scratch.task_count) { return false; }{...} *handle = (TaskHandle_t) s_scratch.tasks[index].pxTCB; return true; }{ ... } static eTaskState get_task_state(size_t index) { eTaskState result = eReady; TaskHandle_t handle = NULL; get_task_handle(index, &handle); #if CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME if (gdb_debug_int == false) { result = eTaskGetState(handle); }{...} #endif/* ... */ return result; }{ ... } static int get_task_cpu_id(size_t index) { TaskHandle_t handle; if (!get_task_handle(index, &handle)) { return -1; }{...} BaseType_t core_id = xTaskGetCoreID(handle); return (int)core_id; }{ ... } /** Get the index of the task running on the current CPU, and save the result */ static void find_paniced_task_index(void) { TaskHandle_t cur_handle = (TaskHandle_t)xTaskGetCurrentTaskHandleForCore(xPortGetCoreID()); TaskHandle_t handle; for (int i = 0; i < s_scratch.task_count; i++) { if (get_task_handle(i, &handle) && cur_handle == handle) { s_scratch.paniced_task_index = i; return; }{...} }{...} s_scratch.paniced_task_index = GDBSTUB_CUR_TASK_INDEX_UNKNOWN; }{ ... } /** Select the current task and update the regfile */ static void set_active_task(size_t index) { if (index == s_scratch.paniced_task_index) { /* Have to get the registers from exception frame */ esp_gdbstub_frame_to_regfile(&s_scratch.paniced_frame, &s_scratch.regfile); }{...} else { /* Get the registers from TCB. * FIXME: for the task currently running on the other CPU, extracting the registers from TCB * isn't valid. Need to use some IPC mechanism to obtain the registers of the other CPU. *//* ... */ TaskHandle_t handle = NULL; get_task_handle(index, &handle); if (handle != NULL) { esp_gdbstub_tcb_to_regfile(handle, &s_scratch.regfile); }{...} }{...} s_scratch.current_task_index = index; }{ ... } /** H command sets the "current task" for the purpose of further commands */ static void handle_H_command(const unsigned char *cmd, int len) { const char *ret = "OK"; if (cmd[1] == 'g') { cmd += 2; int requested_tid = esp_gdbstub_gethex(&cmd, -1); int requested_task_index = gdb_tid_to_task_index(requested_tid); if (requested_tid == 0) { /* 0 means "arbitrary process or thread", keep the current thread */ }{...} else if (requested_task_index >= s_scratch.task_count || requested_tid == -1) { /* -1 means "all threads", which doesn't make sense for "Hg" */ ret = "E00"; }{...} else { set_active_task(requested_task_index); }{...} esp_gdbstub_send_str_packet(ret); }{...} else if (cmd[1] == 'c') { /* Select the task for "continue" and "step" operations. No-op in post-mortem mode. */ /* Note that the argument may be -1 to indicate "all threads" or 0 to indicate "any thread" */ esp_gdbstub_send_str_packet(ret); }{...} else { esp_gdbstub_send_str_packet(NULL); }{...} }{ ... } /** qC returns the current thread ID */ static void handle_qC_command(const unsigned char *cmd, int len) { esp_gdbstub_send_start(); esp_gdbstub_send_str("QC"); esp_gdbstub_send_hex(task_index_to_gdb_tid(s_scratch.current_task_index), 32); esp_gdbstub_send_end(); }{ ... } int getActiveTaskNum(void) { for (size_t i = 0; i < s_scratch.task_count; i++) { { eTaskState state = get_task_state(task_index_to_gdb_tid(i)); if (state == eRunning) { return i; } } } return s_scratch.task_count; } /** T command checks if the task is alive. * Since GDB isn't going to ask about the tasks which haven't been listed by q*ThreadInfo, * and the state of tasks can not change (no stepping allowed), simply return "OK" here. */ static void handle_T_command(const unsigned char *cmd, int len) { esp_gdbstub_send_str_packet("OK"); } /** Called by qfThreadInfo and qsThreadInfo handlers */ static void send_single_thread_info(int task_index) { esp_gdbstub_send_start(); esp_gdbstub_send_str("m"); esp_gdbstub_send_hex(task_index_to_gdb_tid(task_index), 32); esp_gdbstub_send_end(); } /** qfThreadInfo requests the start of the thread list, qsThreadInfo (below) is repeated to * get the subsequent threads. */ static void handle_qfThreadInfo_command(const unsigned char *cmd, int len) { assert(s_scratch.task_count > 0); /* There should be at least one task */ send_single_thread_info(0); s_scratch.thread_info_index = 1; } static void handle_qsThreadInfo_command(const unsigned char *cmd, int len) { int task_index = s_scratch.thread_info_index; if (task_index == s_scratch.task_count) { /* No more tasks */ esp_gdbstub_send_str_packet("l"); return; } send_single_thread_info(s_scratch.thread_info_index); s_scratch.thread_info_index++; } /** qThreadExtraInfo requests the thread name */ static void handle_qThreadExtraInfo_command(const unsigned char *cmd, int len) { cmd += sizeof("qThreadExtraInfo,") - 1; int task_index = gdb_tid_to_task_index(esp_gdbstub_gethex(&cmd, -1)); TaskHandle_t handle; if (!get_task_handle(task_index, &handle)) { esp_gdbstub_send_str_packet("E01"); return; } esp_gdbstub_send_start(); esp_gdbstub_send_str_as_hex("Name: "); esp_gdbstub_send_str_as_hex((const char *)pcTaskGetName(handle)); esp_gdbstub_send_hex(' ', 8); eTaskState state = get_task_state(task_index); /* esp_gdbstub_send_str_as_hex("State: Suspended"); */ switch (state) { case eRunning: esp_gdbstub_send_str_as_hex("State: Running "); esp_gdbstub_send_str_as_hex("@CPU - "); esp_gdbstub_send_hex(get_task_cpu_id(task_index) + '0', 8); break; case eReady: esp_gdbstub_send_str_as_hex("State: Ready"); break; case eBlocked: esp_gdbstub_send_str_as_hex("State: Blocked"); break; case eSuspended: esp_gdbstub_send_str_as_hex("State: Suspended"); break; case eDeleted: esp_gdbstub_send_str_as_hex("State: Deleted"); break; default: esp_gdbstub_send_str_as_hex("State: Invalid"); break; } esp_gdbstub_send_end(); } /** Handle all the thread-related commands */ static int handle_task_commands(unsigned char *cmd, int len) { if (cmd[0] == 'H') { /* Continue with task */ handle_H_command(cmd, len); } else if (cmd[0] == 'T') { /* Task alive check */ handle_T_command(cmd, len); } else if (cmd[0] == 'q') { if (command_name_matches("qfThreadInfo", cmd, len)) { handle_qfThreadInfo_command(cmd, len); } else if (command_name_matches("qsThreadInfo", cmd, len)) { handle_qsThreadInfo_command(cmd, len); } else if (command_name_matches("qC", cmd, len)) { handle_qC_command(cmd, len); } else if (command_name_matches("qThreadExtraInfo", cmd, len)) { handle_qThreadExtraInfo_command(cmd, len); } else { /* Unrecognized command */ return GDBSTUB_ST_ERR; } } else if (strncmp((char *)cmd, "vCont;c", 7) == 0 || cmd[0] == 'c') { /*continue execution */ return GDBSTUB_ST_CONT; } else { /* Unrecognized command */ return GDBSTUB_ST_ERR; } return GDBSTUB_ST_OK; } #endif /* CONFIG_ESP_GDBSTUB_SUPPORT_TASKS */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.