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
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
|
#define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef Py_BUILD_CORE_BUILTIN
# define Py_BUILD_CORE_MODULE 1
#endif
#include "Python.h"
#include <internal/pycore_debug_offsets.h> // _Py_DebugOffsets
#include <internal/pycore_frame.h> // FRAME_SUSPENDED_YIELD_FROM
#include <internal/pycore_interpframe.h> // FRAME_OWNED_BY_CSTACK
#include <internal/pycore_llist.h> // struct llist_node
#include <internal/pycore_stackref.h> // Py_TAG_BITS
#include "../Python/remote_debug.h"
#ifndef HAVE_PROCESS_VM_READV
# define HAVE_PROCESS_VM_READV 0
#endif
struct _Py_AsyncioModuleDebugOffsets {
struct _asyncio_task_object {
uint64_t size;
uint64_t task_name;
uint64_t task_awaited_by;
uint64_t task_is_task;
uint64_t task_awaited_by_is_set;
uint64_t task_coro;
uint64_t task_node;
} asyncio_task_object;
struct _asyncio_interpreter_state {
uint64_t size;
uint64_t asyncio_tasks_head;
} asyncio_interpreter_state;
struct _asyncio_thread_state {
uint64_t size;
uint64_t asyncio_running_loop;
uint64_t asyncio_running_task;
uint64_t asyncio_tasks_head;
} asyncio_thread_state;
};
// Get the PyAsyncioDebug section address for any platform
static uintptr_t
_Py_RemoteDebug_GetAsyncioDebugAddress(proc_handle_t* handle)
{
uintptr_t address;
#ifdef MS_WINDOWS
// On Windows, search for asyncio debug in executable or DLL
address = search_windows_map_for_section(handle, "AsyncioD", L"_asyncio");
#elif defined(__linux__)
// On Linux, search for asyncio debug in executable or DLL
address = search_linux_map_for_section(handle, "AsyncioDebug", "_asyncio.cpython");
#elif defined(__APPLE__) && TARGET_OS_OSX
// On macOS, try libpython first, then fall back to python
address = search_map_for_section(handle, "AsyncioDebug", "_asyncio.cpython");
if (address == 0) {
PyErr_Clear();
address = search_map_for_section(handle, "AsyncioDebug", "_asyncio.cpython");
}
#else
address = 0;
#endif
return address;
}
static int
read_string(
proc_handle_t *handle,
_Py_DebugOffsets* debug_offsets,
uintptr_t address,
char* buffer,
Py_ssize_t size
) {
Py_ssize_t len;
int result = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address + debug_offsets->unicode_object.length,
sizeof(Py_ssize_t),
&len
);
if (result < 0) {
return -1;
}
if (len >= size) {
PyErr_SetString(PyExc_RuntimeError, "Buffer too small");
return -1;
}
size_t offset = debug_offsets->unicode_object.asciiobject_size;
result = _Py_RemoteDebug_ReadRemoteMemory(handle, address + offset, len, buffer);
if (result < 0) {
return -1;
}
buffer[len] = '\0';
return 0;
}
static inline int
read_ptr(proc_handle_t *handle, uintptr_t address, uintptr_t *ptr_addr)
{
int result = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(void*), ptr_addr);
if (result < 0) {
return -1;
}
return 0;
}
static inline int
read_Py_ssize_t(proc_handle_t *handle, uintptr_t address, Py_ssize_t *size)
{
int result = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(Py_ssize_t), size);
if (result < 0) {
return -1;
}
return 0;
}
static int
read_py_ptr(proc_handle_t *handle, uintptr_t address, uintptr_t *ptr_addr)
{
if (read_ptr(handle, address, ptr_addr)) {
return -1;
}
*ptr_addr &= ~Py_TAG_BITS;
return 0;
}
static int
read_char(proc_handle_t *handle, uintptr_t address, char *result)
{
int res = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(char), result);
if (res < 0) {
return -1;
}
return 0;
}
static int
read_int(proc_handle_t *handle, uintptr_t address, int *result)
{
int res = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(int), result);
if (res < 0) {
return -1;
}
return 0;
}
static int
read_unsigned_long(proc_handle_t *handle, uintptr_t address, unsigned long *result)
{
int res = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(unsigned long), result);
if (res < 0) {
return -1;
}
return 0;
}
static int
read_pyobj(proc_handle_t *handle, uintptr_t address, PyObject *ptr_addr)
{
int res = _Py_RemoteDebug_ReadRemoteMemory(handle, address, sizeof(PyObject), ptr_addr);
if (res < 0) {
return -1;
}
return 0;
}
static PyObject *
read_py_str(
proc_handle_t *handle,
_Py_DebugOffsets* debug_offsets,
uintptr_t address,
Py_ssize_t max_len
) {
assert(max_len > 0);
PyObject *result = NULL;
char *buf = (char *)PyMem_RawMalloc(max_len);
if (buf == NULL) {
PyErr_NoMemory();
return NULL;
}
if (read_string(handle, debug_offsets, address, buf, max_len)) {
goto err;
}
result = PyUnicode_FromString(buf);
if (result == NULL) {
goto err;
}
PyMem_RawFree(buf);
assert(result != NULL);
return result;
err:
PyMem_RawFree(buf);
return NULL;
}
static long
read_py_long(proc_handle_t *handle, _Py_DebugOffsets* offsets, uintptr_t address)
{
unsigned int shift = PYLONG_BITS_IN_DIGIT;
Py_ssize_t size;
uintptr_t lv_tag;
int bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle, address + offsets->long_object.lv_tag,
sizeof(uintptr_t),
&lv_tag);
if (bytes_read < 0) {
return -1;
}
int negative = (lv_tag & 3) == 2;
size = lv_tag >> 3;
if (size == 0) {
return 0;
}
digit *digits = (digit *)PyMem_RawMalloc(size * sizeof(digit));
if (!digits) {
PyErr_NoMemory();
return -1;
}
bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address + offsets->long_object.ob_digit,
sizeof(digit) * size,
digits
);
if (bytes_read < 0) {
goto error;
}
long long value = 0;
// In theory this can overflow, but because of llvm/llvm-project#16778
// we can't use __builtin_mul_overflow because it fails to link with
// __muloti4 on aarch64. In practice this is fine because all we're
// testing here are task numbers that would fit in a single byte.
for (Py_ssize_t i = 0; i < size; ++i) {
long long factor = digits[i] * (1UL << (Py_ssize_t)(shift * i));
value += factor;
}
PyMem_RawFree(digits);
if (negative) {
value *= -1;
}
return (long)value;
error:
PyMem_RawFree(digits);
return -1;
}
static PyObject *
parse_task_name(
proc_handle_t *handle,
_Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t task_address
) {
uintptr_t task_name_addr;
int err = read_py_ptr(
handle,
task_address + async_offsets->asyncio_task_object.task_name,
&task_name_addr);
if (err) {
return NULL;
}
// The task name can be a long or a string so we need to check the type
PyObject task_name_obj;
err = read_pyobj(
handle,
task_name_addr,
&task_name_obj);
if (err) {
return NULL;
}
unsigned long flags;
err = read_unsigned_long(
handle,
(uintptr_t)task_name_obj.ob_type + offsets->type_object.tp_flags,
&flags);
if (err) {
return NULL;
}
if ((flags & Py_TPFLAGS_LONG_SUBCLASS)) {
long res = read_py_long(handle, offsets, task_name_addr);
if (res == -1) {
PyErr_SetString(PyExc_RuntimeError, "Failed to get task name");
return NULL;
}
return PyUnicode_FromFormat("Task-%d", res);
}
if(!(flags & Py_TPFLAGS_UNICODE_SUBCLASS)) {
PyErr_SetString(PyExc_RuntimeError, "Invalid task name object");
return NULL;
}
return read_py_str(
handle,
offsets,
task_name_addr,
255
);
}
static int
parse_coro_chain(
proc_handle_t *handle,
struct _Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t coro_address,
PyObject *render_to
) {
assert((void*)coro_address != NULL);
uintptr_t gen_type_addr;
int err = read_ptr(
handle,
coro_address + sizeof(void*),
&gen_type_addr);
if (err) {
return -1;
}
uintptr_t gen_name_addr;
err = read_py_ptr(
handle,
coro_address + offsets->gen_object.gi_name,
&gen_name_addr);
if (err) {
return -1;
}
PyObject *name = read_py_str(
handle,
offsets,
gen_name_addr,
255
);
if (name == NULL) {
return -1;
}
if (PyList_Append(render_to, name)) {
Py_DECREF(name);
return -1;
}
Py_DECREF(name);
int gi_frame_state;
err = read_int(
handle,
coro_address + offsets->gen_object.gi_frame_state,
&gi_frame_state);
if (err) {
return -1;
}
if (gi_frame_state == FRAME_SUSPENDED_YIELD_FROM) {
char owner;
err = read_char(
handle,
coro_address + offsets->gen_object.gi_iframe +
offsets->interpreter_frame.owner,
&owner
);
if (err) {
return -1;
}
if (owner != FRAME_OWNED_BY_GENERATOR) {
PyErr_SetString(
PyExc_RuntimeError,
"generator doesn't own its frame \\_o_/");
return -1;
}
uintptr_t stackpointer_addr;
err = read_py_ptr(
handle,
coro_address + offsets->gen_object.gi_iframe +
offsets->interpreter_frame.stackpointer,
&stackpointer_addr);
if (err) {
return -1;
}
if ((void*)stackpointer_addr != NULL) {
uintptr_t gi_await_addr;
err = read_py_ptr(
handle,
stackpointer_addr - sizeof(void*),
&gi_await_addr);
if (err) {
return -1;
}
if ((void*)gi_await_addr != NULL) {
uintptr_t gi_await_addr_type_addr;
int err = read_ptr(
handle,
gi_await_addr + sizeof(void*),
&gi_await_addr_type_addr);
if (err) {
return -1;
}
if (gen_type_addr == gi_await_addr_type_addr) {
/* This needs an explanation. We always start with parsing
native coroutine / generator frames. Ultimately they
are awaiting on something. That something can be
a native coroutine frame or... an iterator.
If it's the latter -- we can't continue building
our chain. So the condition to bail out of this is
to do that when the type of the current coroutine
doesn't match the type of whatever it points to
in its cr_await.
*/
err = parse_coro_chain(
handle,
offsets,
async_offsets,
gi_await_addr,
render_to
);
if (err) {
return -1;
}
}
}
}
}
return 0;
}
static int
parse_task_awaited_by(
proc_handle_t *handle,
struct _Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t task_address,
PyObject *awaited_by
);
static int
parse_task(
proc_handle_t *handle,
struct _Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t task_address,
PyObject *render_to
) {
char is_task;
int err = read_char(
handle,
task_address + async_offsets->asyncio_task_object.task_is_task,
&is_task);
if (err) {
return -1;
}
uintptr_t refcnt;
read_ptr(handle, task_address + sizeof(Py_ssize_t), &refcnt);
PyObject* result = PyList_New(0);
if (result == NULL) {
return -1;
}
PyObject *call_stack = PyList_New(0);
if (call_stack == NULL) {
goto err;
}
if (PyList_Append(result, call_stack)) {
Py_DECREF(call_stack);
goto err;
}
/* we can operate on a borrowed one to simplify cleanup */
Py_DECREF(call_stack);
if (is_task) {
PyObject *tn = parse_task_name(
handle, offsets, async_offsets, task_address);
if (tn == NULL) {
goto err;
}
if (PyList_Append(result, tn)) {
Py_DECREF(tn);
goto err;
}
Py_DECREF(tn);
uintptr_t coro_addr;
err = read_py_ptr(
handle,
task_address + async_offsets->asyncio_task_object.task_coro,
&coro_addr);
if (err) {
goto err;
}
if ((void*)coro_addr != NULL) {
err = parse_coro_chain(
handle,
offsets,
async_offsets,
coro_addr,
call_stack
);
if (err) {
goto err;
}
if (PyList_Reverse(call_stack)) {
goto err;
}
}
}
if (PyList_Append(render_to, result)) {
goto err;
}
PyObject *awaited_by = PyList_New(0);
if (awaited_by == NULL) {
goto err;
}
if (PyList_Append(result, awaited_by)) {
Py_DECREF(awaited_by);
goto err;
}
/* we can operate on a borrowed one to simplify cleanup */
Py_DECREF(awaited_by);
if (parse_task_awaited_by(handle, offsets, async_offsets,
task_address, awaited_by)
) {
goto err;
}
Py_DECREF(result);
return 0;
err:
Py_DECREF(result);
return -1;
}
static int
parse_tasks_in_set(
proc_handle_t *handle,
struct _Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t set_addr,
PyObject *awaited_by
) {
uintptr_t set_obj;
if (read_py_ptr(
handle,
set_addr,
&set_obj)
) {
return -1;
}
Py_ssize_t num_els;
if (read_Py_ssize_t(
handle,
set_obj + offsets->set_object.used,
&num_els)
) {
return -1;
}
Py_ssize_t set_len;
if (read_Py_ssize_t(
handle,
set_obj + offsets->set_object.mask,
&set_len)
) {
return -1;
}
set_len++; // The set contains the `mask+1` element slots.
uintptr_t table_ptr;
if (read_ptr(
handle,
set_obj + offsets->set_object.table,
&table_ptr)
) {
return -1;
}
Py_ssize_t i = 0;
Py_ssize_t els = 0;
while (i < set_len) {
uintptr_t key_addr;
if (read_py_ptr(handle, table_ptr, &key_addr)) {
return -1;
}
if ((void*)key_addr != NULL) {
Py_ssize_t ref_cnt;
if (read_Py_ssize_t(handle, table_ptr, &ref_cnt)) {
return -1;
}
if (ref_cnt) {
// if 'ref_cnt=0' it's a set dummy marker
if (parse_task(
handle,
offsets,
async_offsets,
key_addr,
awaited_by)
) {
return -1;
}
if (++els == num_els) {
break;
}
}
}
table_ptr += sizeof(void*) * 2;
i++;
}
return 0;
}
static int
parse_task_awaited_by(
proc_handle_t *handle,
struct _Py_DebugOffsets* offsets,
struct _Py_AsyncioModuleDebugOffsets* async_offsets,
uintptr_t task_address,
PyObject *awaited_by
) {
uintptr_t task_ab_addr;
int err = read_py_ptr(
handle,
task_address + async_offsets->asyncio_task_object.task_awaited_by,
&task_ab_addr);
if (err) {
return -1;
}
if ((void*)task_ab_addr == NULL) {
return 0;
}
char awaited_by_is_a_set;
err = read_char(
handle,
task_address + async_offsets->asyncio_task_object.task_awaited_by_is_set,
&awaited_by_is_a_set);
if (err) {
return -1;
}
if (awaited_by_is_a_set) {
if (parse_tasks_in_set(
handle,
offsets,
async_offsets,
task_address + async_offsets->asyncio_task_object.task_awaited_by,
awaited_by)
) {
return -1;
}
} else {
uintptr_t sub_task;
if (read_py_ptr(
handle,
task_address + async_offsets->asyncio_task_object.task_awaited_by,
&sub_task)
) {
return -1;
}
if (parse_task(
handle,
offsets,
async_offsets,
sub_task,
awaited_by)
) {
return -1;
}
}
return 0;
}
static int
parse_code_object(
proc_handle_t *handle,
PyObject* result,
struct _Py_DebugOffsets* offsets,
uintptr_t address,
uintptr_t* previous_frame
) {
uintptr_t address_of_function_name;
int bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address + offsets->code_object.name,
sizeof(void*),
&address_of_function_name
);
if (bytes_read < 0) {
return -1;
}
if ((void*)address_of_function_name == NULL) {
PyErr_SetString(PyExc_RuntimeError, "No function name found");
return -1;
}
PyObject* py_function_name = read_py_str(
handle, offsets, address_of_function_name, 256);
if (py_function_name == NULL) {
return -1;
}
if (PyList_Append(result, py_function_name) == -1) {
Py_DECREF(py_function_name);
return -1;
}
Py_DECREF(py_function_name);
return 0;
}
static int
parse_frame_object(
proc_handle_t *handle,
PyObject* result,
struct _Py_DebugOffsets* offsets,
uintptr_t address,
uintptr_t* previous_frame
) {
int err;
Py_ssize_t bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address + offsets->interpreter_frame.previous,
sizeof(void*),
previous_frame
);
if (bytes_read < 0) {
return -1;
}
char owner;
if (read_char(handle, address + offsets->interpreter_frame.owner, &owner)) {
return -1;
}
if (owner >= FRAME_OWNED_BY_INTERPRETER) {
return 0;
}
uintptr_t address_of_code_object;
err = read_py_ptr(
handle,
address + offsets->interpreter_frame.executable,
&address_of_code_object
);
if (err) {
return -1;
}
if ((void*)address_of_code_object == NULL) {
return 0;
}
return parse_code_object(
handle, result, offsets, address_of_code_object, previous_frame);
}
static int
parse_async_frame_object(
proc_handle_t *handle,
PyObject* result,
struct _Py_DebugOffsets* offsets,
uintptr_t address,
uintptr_t* previous_frame,
uintptr_t* code_object
) {
int err;
Py_ssize_t bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address + offsets->interpreter_frame.previous,
sizeof(void*),
previous_frame
);
if (bytes_read < 0) {
return -1;
}
char owner;
bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle, address + offsets->interpreter_frame.owner, sizeof(char), &owner);
if (bytes_read < 0) {
return -1;
}
if (owner == FRAME_OWNED_BY_CSTACK || owner == FRAME_OWNED_BY_INTERPRETER) {
return 0; // C frame
}
if (owner != FRAME_OWNED_BY_GENERATOR
&& owner != FRAME_OWNED_BY_THREAD) {
PyErr_Format(PyExc_RuntimeError, "Unhandled frame owner %d.\n", owner);
return -1;
}
err = read_py_ptr(
handle,
address + offsets->interpreter_frame.executable,
code_object
);
if (err) {
return -1;
}
assert(code_object != NULL);
if ((void*)*code_object == NULL) {
return 0;
}
if (parse_code_object(
handle, result, offsets, *code_object, previous_frame)) {
return -1;
}
return 1;
}
static int
read_async_debug(
proc_handle_t *handle,
struct _Py_AsyncioModuleDebugOffsets* async_debug
) {
uintptr_t async_debug_addr = _Py_RemoteDebug_GetAsyncioDebugAddress(handle);
if (!async_debug_addr) {
return -1;
}
size_t size = sizeof(struct _Py_AsyncioModuleDebugOffsets);
int result = _Py_RemoteDebug_ReadRemoteMemory(handle, async_debug_addr, size, async_debug);
return result;
}
static int
find_running_frame(
proc_handle_t *handle,
uintptr_t runtime_start_address,
_Py_DebugOffsets* local_debug_offsets,
uintptr_t *frame
) {
uint64_t interpreter_state_list_head =
local_debug_offsets->runtime_state.interpreters_head;
uintptr_t address_of_interpreter_state;
int bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
runtime_start_address + interpreter_state_list_head,
sizeof(void*),
&address_of_interpreter_state);
if (bytes_read < 0) {
return -1;
}
if (address_of_interpreter_state == 0) {
PyErr_SetString(PyExc_RuntimeError, "No interpreter state found");
return -1;
}
uintptr_t address_of_thread;
bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address_of_interpreter_state +
local_debug_offsets->interpreter_state.threads_main,
sizeof(void*),
&address_of_thread);
if (bytes_read < 0) {
return -1;
}
// No Python frames are available for us (can happen at tear-down).
if ((void*)address_of_thread != NULL) {
int err = read_ptr(
handle,
address_of_thread + local_debug_offsets->thread_state.current_frame,
frame);
if (err) {
return -1;
}
return 0;
}
*frame = (uintptr_t)NULL;
return 0;
}
static int
find_running_task(
proc_handle_t *handle,
uintptr_t runtime_start_address,
_Py_DebugOffsets *local_debug_offsets,
struct _Py_AsyncioModuleDebugOffsets *async_offsets,
uintptr_t *running_task_addr
) {
*running_task_addr = (uintptr_t)NULL;
uint64_t interpreter_state_list_head =
local_debug_offsets->runtime_state.interpreters_head;
uintptr_t address_of_interpreter_state;
int bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
runtime_start_address + interpreter_state_list_head,
sizeof(void*),
&address_of_interpreter_state);
if (bytes_read < 0) {
return -1;
}
if (address_of_interpreter_state == 0) {
PyErr_SetString(PyExc_RuntimeError, "No interpreter state found");
return -1;
}
uintptr_t address_of_thread;
bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
handle,
address_of_interpreter_state +
local_debug_offsets->interpreter_state.threads_head,
sizeof(void*),
&address_of_thread);
if (bytes_read < 0) {
return -1;
}
uintptr_t address_of_running_loop;
// No Python frames are available for us (can happen at tear-down).
if ((void*)address_of_thread == NULL) {
return 0;
}
bytes_read = read_py_ptr(
handle,
address_of_thread
+ async_offsets->asyncio_thread_state.asyncio_running_loop,
&address_of_running_loop);
if (bytes_read == -1) {
return -1;
}
// no asyncio loop is now running
if ((void*)address_of_running_loop == NULL) {
return 0;
}
int err = read_ptr(
handle,
address_of_thread
+ async_offsets->asyncio_thread_state.asyncio_running_task,
running_task_addr);
if (err) {
return -1;
}
return 0;
}
static int
append_awaited_by_for_thread(
proc_handle_t *handle,
uintptr_t head_addr,
struct _Py_DebugOffsets *debug_offsets,
struct _Py_AsyncioModuleDebugOffsets *async_offsets,
PyObject *result
) {
struct llist_node task_node;
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
head_addr,
sizeof(task_node),
&task_node))
{
return -1;
}
size_t iteration_count = 0;
const size_t MAX_ITERATIONS = 2 << 15; // A reasonable upper bound
while ((uintptr_t)task_node.next != head_addr) {
if (++iteration_count > MAX_ITERATIONS) {
PyErr_SetString(PyExc_RuntimeError, "Task list appears corrupted");
return -1;
}
if (task_node.next == NULL) {
PyErr_SetString(
PyExc_RuntimeError,
"Invalid linked list structure reading remote memory");
return -1;
}
uintptr_t task_addr = (uintptr_t)task_node.next
- async_offsets->asyncio_task_object.task_node;
PyObject *tn = parse_task_name(
handle,
debug_offsets,
async_offsets,
task_addr);
if (tn == NULL) {
return -1;
}
PyObject *current_awaited_by = PyList_New(0);
if (current_awaited_by == NULL) {
Py_DECREF(tn);
return -1;
}
PyObject *result_item = PyTuple_New(2);
if (result_item == NULL) {
Py_DECREF(tn);
Py_DECREF(current_awaited_by);
return -1;
}
PyTuple_SET_ITEM(result_item, 0, tn); // steals ref
PyTuple_SET_ITEM(result_item, 1, current_awaited_by); // steals ref
if (PyList_Append(result, result_item)) {
Py_DECREF(result_item);
return -1;
}
Py_DECREF(result_item);
if (parse_task_awaited_by(handle, debug_offsets, async_offsets,
task_addr, current_awaited_by))
{
return -1;
}
// onto the next one...
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
(uintptr_t)task_node.next,
sizeof(task_node),
&task_node))
{
return -1;
}
}
return 0;
}
static int
append_awaited_by(
proc_handle_t *handle,
unsigned long tid,
uintptr_t head_addr,
struct _Py_DebugOffsets *debug_offsets,
struct _Py_AsyncioModuleDebugOffsets *async_offsets,
PyObject *result)
{
PyObject *tid_py = PyLong_FromUnsignedLong(tid);
if (tid_py == NULL) {
return -1;
}
PyObject *result_item = PyTuple_New(2);
if (result_item == NULL) {
Py_DECREF(tid_py);
return -1;
}
PyObject* awaited_by_for_thread = PyList_New(0);
if (awaited_by_for_thread == NULL) {
Py_DECREF(tid_py);
Py_DECREF(result_item);
return -1;
}
PyTuple_SET_ITEM(result_item, 0, tid_py); // steals ref
PyTuple_SET_ITEM(result_item, 1, awaited_by_for_thread); // steals ref
if (PyList_Append(result, result_item)) {
Py_DECREF(result_item);
return -1;
}
Py_DECREF(result_item);
if (append_awaited_by_for_thread(
handle,
head_addr,
debug_offsets,
async_offsets,
awaited_by_for_thread))
{
return -1;
}
return 0;
}
static PyObject*
get_all_awaited_by(PyObject* self, PyObject* args)
{
#if (!defined(__linux__) && !defined(__APPLE__)) && !defined(MS_WINDOWS) || \
(defined(__linux__) && !HAVE_PROCESS_VM_READV)
PyErr_SetString(
PyExc_RuntimeError,
"get_all_awaited_by is not implemented on this platform");
return NULL;
#endif
int pid;
if (!PyArg_ParseTuple(args, "i", &pid)) {
return NULL;
}
proc_handle_t the_handle;
proc_handle_t *handle = &the_handle;
if (_Py_RemoteDebug_InitProcHandle(handle, pid) < 0) {
return 0;
}
uintptr_t runtime_start_addr = _Py_RemoteDebug_GetPyRuntimeAddress(handle);
if (runtime_start_addr == 0) {
if (!PyErr_Occurred()) {
PyErr_SetString(
PyExc_RuntimeError, "Failed to get .PyRuntime address");
}
return NULL;
}
struct _Py_DebugOffsets local_debug_offsets;
if (_Py_RemoteDebug_ReadDebugOffsets(handle, &runtime_start_addr, &local_debug_offsets)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read debug offsets");
return NULL;
}
struct _Py_AsyncioModuleDebugOffsets local_async_debug;
if (read_async_debug(handle, &local_async_debug)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read asyncio debug offsets");
return NULL;
}
PyObject *result = PyList_New(0);
if (result == NULL) {
return NULL;
}
uint64_t interpreter_state_list_head =
local_debug_offsets.runtime_state.interpreters_head;
uintptr_t interpreter_state_addr;
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
runtime_start_addr + interpreter_state_list_head,
sizeof(void*),
&interpreter_state_addr))
{
goto result_err;
}
uintptr_t thread_state_addr;
unsigned long tid = 0;
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
interpreter_state_addr
+ local_debug_offsets.interpreter_state.threads_head,
sizeof(void*),
&thread_state_addr))
{
goto result_err;
}
uintptr_t head_addr;
while (thread_state_addr != 0) {
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
thread_state_addr
+ local_debug_offsets.thread_state.native_thread_id,
sizeof(tid),
&tid))
{
goto result_err;
}
head_addr = thread_state_addr
+ local_async_debug.asyncio_thread_state.asyncio_tasks_head;
if (append_awaited_by(handle, tid, head_addr, &local_debug_offsets,
&local_async_debug, result))
{
goto result_err;
}
if (0 > _Py_RemoteDebug_ReadRemoteMemory(
handle,
thread_state_addr + local_debug_offsets.thread_state.next,
sizeof(void*),
&thread_state_addr))
{
goto result_err;
}
}
head_addr = interpreter_state_addr
+ local_async_debug.asyncio_interpreter_state.asyncio_tasks_head;
// On top of a per-thread task lists used by default by asyncio to avoid
// contention, there is also a fallback per-interpreter list of tasks;
// any tasks still pending when a thread is destroyed will be moved to the
// per-interpreter task list. It's unlikely we'll find anything here, but
// interesting for debugging.
if (append_awaited_by(handle, 0, head_addr, &local_debug_offsets,
&local_async_debug, result))
{
goto result_err;
}
_Py_RemoteDebug_CleanupProcHandle(handle);
return result;
result_err:
Py_DECREF(result);
_Py_RemoteDebug_CleanupProcHandle(handle);
return NULL;
}
static PyObject*
get_stack_trace(PyObject* self, PyObject* args)
{
#if (!defined(__linux__) && !defined(__APPLE__)) && !defined(MS_WINDOWS) || \
(defined(__linux__) && !HAVE_PROCESS_VM_READV)
PyErr_SetString(
PyExc_RuntimeError,
"get_stack_trace is not supported on this platform");
return NULL;
#endif
int pid;
if (!PyArg_ParseTuple(args, "i", &pid)) {
return NULL;
}
proc_handle_t the_handle;
proc_handle_t *handle = &the_handle;
if (_Py_RemoteDebug_InitProcHandle(handle, pid) < 0) {
return 0;
}
PyObject* result = NULL;
uintptr_t runtime_start_address = _Py_RemoteDebug_GetPyRuntimeAddress(handle);
if (runtime_start_address == 0) {
if (!PyErr_Occurred()) {
PyErr_SetString(
PyExc_RuntimeError, "Failed to get .PyRuntime address");
}
goto result_err;
}
struct _Py_DebugOffsets local_debug_offsets;
if (_Py_RemoteDebug_ReadDebugOffsets(handle, &runtime_start_address, &local_debug_offsets)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read debug offsets");
goto result_err;
}
uintptr_t address_of_current_frame;
if (find_running_frame(
handle, runtime_start_address, &local_debug_offsets,
&address_of_current_frame)
) {
goto result_err;
}
result = PyList_New(0);
if (result == NULL) {
goto result_err;
}
while ((void*)address_of_current_frame != NULL) {
if (parse_frame_object(
handle,
result,
&local_debug_offsets,
address_of_current_frame,
&address_of_current_frame)
< 0)
{
Py_DECREF(result);
goto result_err;
}
}
result_err:
_Py_RemoteDebug_CleanupProcHandle(handle);
return result;
}
static PyObject*
get_async_stack_trace(PyObject* self, PyObject* args)
{
#if (!defined(__linux__) && !defined(__APPLE__)) && !defined(MS_WINDOWS) || \
(defined(__linux__) && !HAVE_PROCESS_VM_READV)
PyErr_SetString(
PyExc_RuntimeError,
"get_stack_trace is not supported on this platform");
return NULL;
#endif
int pid;
if (!PyArg_ParseTuple(args, "i", &pid)) {
return NULL;
}
proc_handle_t the_handle;
proc_handle_t *handle = &the_handle;
if (_Py_RemoteDebug_InitProcHandle(handle, pid) < 0) {
return 0;
}
uintptr_t runtime_start_address = _Py_RemoteDebug_GetPyRuntimeAddress(handle);
if (runtime_start_address == 0) {
if (!PyErr_Occurred()) {
PyErr_SetString(
PyExc_RuntimeError, "Failed to get .PyRuntime address");
}
return NULL;
}
struct _Py_DebugOffsets local_debug_offsets;
if (_Py_RemoteDebug_ReadDebugOffsets(handle, &runtime_start_address, &local_debug_offsets)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read debug offsets");
return NULL;
}
struct _Py_AsyncioModuleDebugOffsets local_async_debug;
if (read_async_debug(handle, &local_async_debug)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read asyncio debug offsets");
return NULL;
}
PyObject* result = PyList_New(1);
if (result == NULL) {
return NULL;
}
PyObject* calls = PyList_New(0);
if (calls == NULL) {
Py_DECREF(result);
return NULL;
}
if (PyList_SetItem(result, 0, calls)) { /* steals ref to 'calls' */
Py_DECREF(result);
Py_DECREF(calls);
return NULL;
}
uintptr_t running_task_addr = (uintptr_t)NULL;
if (find_running_task(
handle, runtime_start_address, &local_debug_offsets, &local_async_debug,
&running_task_addr)
) {
PyErr_SetString(PyExc_RuntimeError, "Failed to find running task");
goto result_err;
}
if ((void*)running_task_addr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "No running task found");
goto result_err;
}
uintptr_t running_coro_addr;
if (read_py_ptr(
handle,
running_task_addr + local_async_debug.asyncio_task_object.task_coro,
&running_coro_addr
)) {
PyErr_SetString(PyExc_RuntimeError, "Failed to read running task coro");
goto result_err;
}
if ((void*)running_coro_addr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "Running task coro is NULL");
goto result_err;
}
// note: genobject's gi_iframe is an embedded struct so the address to
// the offset leads directly to its first field: f_executable
uintptr_t address_of_running_task_code_obj;
if (read_py_ptr(
handle,
running_coro_addr + local_debug_offsets.gen_object.gi_iframe,
&address_of_running_task_code_obj
)) {
goto result_err;
}
if ((void*)address_of_running_task_code_obj == NULL) {
PyErr_SetString(PyExc_RuntimeError, "Running task code object is NULL");
goto result_err;
}
uintptr_t address_of_current_frame;
if (find_running_frame(
handle, runtime_start_address, &local_debug_offsets,
&address_of_current_frame)
) {
PyErr_SetString(PyExc_RuntimeError, "Failed to find running frame");
goto result_err;
}
uintptr_t address_of_code_object;
while ((void*)address_of_current_frame != NULL) {
int res = parse_async_frame_object(
handle,
calls,
&local_debug_offsets,
address_of_current_frame,
&address_of_current_frame,
&address_of_code_object
);
if (res < 0) {
PyErr_SetString(PyExc_RuntimeError, "Failed to parse async frame object");
goto result_err;
}
if (address_of_code_object == address_of_running_task_code_obj) {
break;
}
}
PyObject *tn = parse_task_name(
handle, &local_debug_offsets, &local_async_debug, running_task_addr);
if (tn == NULL) {
goto result_err;
}
if (PyList_Append(result, tn)) {
Py_DECREF(tn);
goto result_err;
}
Py_DECREF(tn);
PyObject* awaited_by = PyList_New(0);
if (awaited_by == NULL) {
goto result_err;
}
if (PyList_Append(result, awaited_by)) {
Py_DECREF(awaited_by);
goto result_err;
}
Py_DECREF(awaited_by);
if (parse_task_awaited_by(
handle, &local_debug_offsets, &local_async_debug,
running_task_addr, awaited_by)
) {
goto result_err;
}
_Py_RemoteDebug_CleanupProcHandle(handle);
return result;
result_err:
_Py_RemoteDebug_CleanupProcHandle(handle);
Py_DECREF(result);
return NULL;
}
static PyMethodDef methods[] = {
{"get_stack_trace", get_stack_trace, METH_VARARGS,
"Get the Python stack from a given pod"},
{"get_async_stack_trace", get_async_stack_trace, METH_VARARGS,
"Get the asyncio stack from a given pid"},
{"get_all_awaited_by", get_all_awaited_by, METH_VARARGS,
"Get all tasks and their awaited_by from a given pid"},
{NULL, NULL, 0, NULL},
};
static struct PyModuleDef module = {
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "_testexternalinspection",
.m_size = -1,
.m_methods = methods,
};
PyMODINIT_FUNC
PyInit__testexternalinspection(void)
{
PyObject* mod = PyModule_Create(&module);
if (mod == NULL) {
return NULL;
}
#ifdef Py_GIL_DISABLED
PyUnstable_Module_SetGIL(mod, Py_MOD_GIL_NOT_USED);
#endif
int rc = PyModule_AddIntConstant(
mod, "PROCESS_VM_READV_SUPPORTED", HAVE_PROCESS_VM_READV);
if (rc < 0) {
Py_DECREF(mod);
return NULL;
}
return mod;
}
|