willb (owner)

Revisions

gist: 14488 Download_button fork
public
Description:
This is some example code showing how to use the ptrace system call under Linux to trace the system calls of a child process.
Public Clone URL: git://gist.github.com/14488.git
Embed All Files: show embed
ptr_inspect.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
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
/*
ptr_inspect.c
 
Demonstration code; shows how to trace the system calls in a child
process with ptrace. Only works on 64-bit x86 Linux for now, I'm
afraid. (Even worse, it's only tested on Linux 2.6....)
The callname() function looks clunky and machine-generated because it
*is* clunky and machine-generated.
 
I got inspiration and a starting point from this old LJ article:
http://www.linuxjournal.com/article/6100
 
This code is in the public domain. Share and enjoy.
 
Will Benton
Madison, 2008
*/
 
#include <sys/ptrace.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/user.h>
 
#include <syscall.h>
 
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
 
const char* callname(long call);
 
#if __WORDSIZE == 64
#define REG(reg) reg.orig_rax
#else
#define REG(reg) reg.orig_eax
#endif
 
int main(int argc, char* argv[]) {
  pid_t child;
 
  if (argc == 1) {
    exit(0);
  }
 
  char* chargs[argc];
  int i = 0;
 
  while (i < argc - 1) {
    chargs[i] = argv[i+1];
    i++;
  }
  chargs[i] = NULL;
 
  child = fork();
  if(child == 0) {
    ptrace(PTRACE_TRACEME, 0, NULL, NULL);
    execvp(chargs[0], chargs);
  } else {
    int status;
 
    while(waitpid(child, &status, 0) && ! WIFEXITED(status)) {
      struct user_regs_struct regs;
      ptrace(PTRACE_GETREGS, child, NULL, &regs);
      fprintf(stderr, "system call %s from pid %d\n", callname(REG(regs)), child);
      ptrace(PTRACE_SYSCALL, child, NULL, NULL);
    }
  }
  exit(0);
}
 
const char* callname(long call) {
  switch(call) {
#ifdef SYS__sysctl
  case SYS__sysctl : return "_sysctl";
#endif
 
#ifdef SYS_access
  case SYS_access : return "access";
#endif
 
#ifdef SYS_acct
  case SYS_acct : return "acct";
#endif
 
#ifdef SYS_add_key
  case SYS_add_key : return "add_key";
#endif
 
#ifdef SYS_adjtimex
  case SYS_adjtimex : return "adjtimex";
#endif
 
#ifdef SYS_afs_syscall
  case SYS_afs_syscall : return "afs_syscall";
#endif
 
#ifdef SYS_alarm
  case SYS_alarm : return "alarm";
#endif
 
#ifdef SYS_brk
  case SYS_brk : return "brk";
#endif
 
#ifdef SYS_capget
  case SYS_capget : return "capget";
#endif
 
#ifdef SYS_capset
  case SYS_capset : return "capset";
#endif
 
#ifdef SYS_chdir
  case SYS_chdir : return "chdir";
#endif
 
#ifdef SYS_chmod
  case SYS_chmod : return "chmod";
#endif
 
#ifdef SYS_chown
  case SYS_chown : return "chown";
#endif
 
#ifdef SYS_chroot
  case SYS_chroot : return "chroot";
#endif
 
#ifdef SYS_clock_getres
  case SYS_clock_getres : return "clock_getres";
#endif
 
#ifdef SYS_clock_gettime
  case SYS_clock_gettime : return "clock_gettime";
#endif
 
#ifdef SYS_clock_nanosleep
  case SYS_clock_nanosleep : return "clock_nanosleep";
#endif
 
#ifdef SYS_clock_settime
  case SYS_clock_settime : return "clock_settime";
#endif
 
#ifdef SYS_clone
  case SYS_clone : return "clone";
#endif
 
#ifdef SYS_close
  case SYS_close : return "close";
#endif
 
#ifdef SYS_creat
  case SYS_creat : return "creat";
#endif
 
#ifdef SYS_create_module
  case SYS_create_module : return "create_module";
#endif
 
#ifdef SYS_delete_module
  case SYS_delete_module : return "delete_module";
#endif
 
#ifdef SYS_dup
  case SYS_dup : return "dup";
#endif
 
#ifdef SYS_dup2
  case SYS_dup2 : return "dup2";
#endif
 
#ifdef SYS_epoll_create
  case SYS_epoll_create : return "epoll_create";
#endif
 
#ifdef SYS_epoll_ctl
  case SYS_epoll_ctl : return "epoll_ctl";
#endif
 
#ifdef SYS_epoll_pwait
  case SYS_epoll_pwait : return "epoll_pwait";
#endif
 
#ifdef SYS_epoll_wait
  case SYS_epoll_wait : return "epoll_wait";
#endif
 
#ifdef SYS_eventfd
  case SYS_eventfd : return "eventfd";
#endif
 
#ifdef SYS_execve
  case SYS_execve : return "execve";
#endif
 
#ifdef SYS_exit
  case SYS_exit : return "exit";
#endif
 
#ifdef SYS_exit_group
  case SYS_exit_group : return "exit_group";
#endif
 
#ifdef SYS_faccessat
  case SYS_faccessat : return "faccessat";
#endif
 
#ifdef SYS_fadvise64
  case SYS_fadvise64 : return "fadvise64";
#endif
 
#ifdef SYS_fallocate
  case SYS_fallocate : return "fallocate";
#endif
 
#ifdef SYS_fchdir
  case SYS_fchdir : return "fchdir";
#endif
 
#ifdef SYS_fchmod
  case SYS_fchmod : return "fchmod";
#endif
 
#ifdef SYS_fchmodat
  case SYS_fchmodat : return "fchmodat";
#endif
 
#ifdef SYS_fchown
  case SYS_fchown : return "fchown";
#endif
 
#ifdef SYS_fchownat
  case SYS_fchownat : return "fchownat";
#endif
 
#ifdef SYS_fcntl
  case SYS_fcntl : return "fcntl";
#endif
 
#ifdef SYS_fdatasync
  case SYS_fdatasync : return "fdatasync";
#endif
 
#ifdef SYS_fgetxattr
  case SYS_fgetxattr : return "fgetxattr";
#endif
 
#ifdef SYS_flistxattr
  case SYS_flistxattr : return "flistxattr";
#endif
 
#ifdef SYS_flock
  case SYS_flock : return "flock";
#endif
 
#ifdef SYS_fork
  case SYS_fork : return "fork";
#endif
 
#ifdef SYS_fremovexattr
  case SYS_fremovexattr : return "fremovexattr";
#endif
 
#ifdef SYS_fsetxattr
  case SYS_fsetxattr : return "fsetxattr";
#endif
 
#ifdef SYS_fstat
  case SYS_fstat : return "fstat";
#endif
 
#ifdef SYS_fstatfs
  case SYS_fstatfs : return "fstatfs";
#endif
 
#ifdef SYS_fsync
  case SYS_fsync : return "fsync";
#endif
 
#ifdef SYS_ftruncate
  case SYS_ftruncate : return "ftruncate";
#endif
 
#ifdef SYS_futex
  case SYS_futex : return "futex";
#endif
 
#ifdef SYS_futimesat
  case SYS_futimesat : return "futimesat";
#endif
 
#ifdef SYS_get_kernel_syms
  case SYS_get_kernel_syms : return "get_kernel_syms";
#endif
 
#ifdef SYS_get_mempolicy
  case SYS_get_mempolicy : return "get_mempolicy";
#endif
 
#ifdef SYS_get_robust_list
  case SYS_get_robust_list : return "get_robust_list";
#endif
 
#ifdef SYS_get_thread_area
  case SYS_get_thread_area : return "get_thread_area";
#endif
 
#ifdef SYS_getcwd
  case SYS_getcwd : return "getcwd";
#endif
 
#ifdef SYS_getdents
  case SYS_getdents : return "getdents";
#endif
 
#ifdef SYS_getdents64
  case SYS_getdents64 : return "getdents64";
#endif
 
#ifdef SYS_getegid
  case SYS_getegid : return "getegid";
#endif
 
#ifdef SYS_geteuid
  case SYS_geteuid : return "geteuid";
#endif
 
#ifdef SYS_getgid
  case SYS_getgid : return "getgid";
#endif
 
#ifdef SYS_getgroups
  case SYS_getgroups : return "getgroups";
#endif
 
#ifdef SYS_getitimer
  case SYS_getitimer : return "getitimer";
#endif
 
#ifdef SYS_getpgid
  case SYS_getpgid : return "getpgid";
#endif
 
#ifdef SYS_getpgrp
  case SYS_getpgrp : return "getpgrp";
#endif
 
#ifdef SYS_getpid
  case SYS_getpid : return "getpid";
#endif
 
#ifdef SYS_getpmsg
  case SYS_getpmsg : return "getpmsg";
#endif
 
#ifdef SYS_getppid
  case SYS_getppid : return "getppid";
#endif
 
#ifdef SYS_getpriority
  case SYS_getpriority : return "getpriority";
#endif
 
#ifdef SYS_getresgid
  case SYS_getresgid : return "getresgid";
#endif
 
#ifdef SYS_getresuid
  case SYS_getresuid : return "getresuid";
#endif
 
#ifdef SYS_getrlimit
  case SYS_getrlimit : return "getrlimit";
#endif
 
#ifdef SYS_getrusage
  case SYS_getrusage : return "getrusage";
#endif
 
#ifdef SYS_getsid
  case SYS_getsid : return "getsid";
#endif
 
#ifdef SYS_gettid
  case SYS_gettid : return "gettid";
#endif
 
#ifdef SYS_gettimeofday
  case SYS_gettimeofday : return "gettimeofday";
#endif
 
#ifdef SYS_getuid
  case SYS_getuid : return "getuid";
#endif
 
#ifdef SYS_getxattr
  case SYS_getxattr : return "getxattr";
#endif
 
#ifdef SYS_init_module
  case SYS_init_module : return "init_module";
#endif
 
#ifdef SYS_inotify_add_watch
  case SYS_inotify_add_watch : return "inotify_add_watch";
#endif
 
#ifdef SYS_inotify_init
  case SYS_inotify_init : return "inotify_init";
#endif
 
#ifdef SYS_inotify_rm_watch
  case SYS_inotify_rm_watch : return "inotify_rm_watch";
#endif
 
#ifdef SYS_io_cancel
  case SYS_io_cancel : return "io_cancel";
#endif
 
#ifdef SYS_io_destroy
  case SYS_io_destroy : return "io_destroy";
#endif
 
#ifdef SYS_io_getevents
  case SYS_io_getevents : return "io_getevents";
#endif
 
#ifdef SYS_io_setup
  case SYS_io_setup : return "io_setup";
#endif
 
#ifdef SYS_io_submit
  case SYS_io_submit : return "io_submit";
#endif
 
#ifdef SYS_ioctl
  case SYS_ioctl : return "ioctl";
#endif
 
#ifdef SYS_ioperm
  case SYS_ioperm : return "ioperm";
#endif
 
#ifdef SYS_iopl
  case SYS_iopl : return "iopl";
#endif
 
#ifdef SYS_ioprio_get
  case SYS_ioprio_get : return "ioprio_get";
#endif
 
#ifdef SYS_ioprio_set
  case SYS_ioprio_set : return "ioprio_set";
#endif
 
#ifdef SYS_kexec_load
  case SYS_kexec_load : return "kexec_load";
#endif
 
#ifdef SYS_keyctl
  case SYS_keyctl : return "keyctl";
#endif
 
#ifdef SYS_kill
  case SYS_kill : return "kill";
#endif
 
#ifdef SYS_lchown
  case SYS_lchown : return "lchown";
#endif
 
#ifdef SYS_lgetxattr
  case SYS_lgetxattr : return "lgetxattr";
#endif
 
#ifdef SYS_link
  case SYS_link : return "link";
#endif
 
#ifdef SYS_linkat
  case SYS_linkat : return "linkat";
#endif
 
#ifdef SYS_listxattr
  case SYS_listxattr : return "listxattr";
#endif
 
#ifdef SYS_llistxattr
  case SYS_llistxattr : return "llistxattr";
#endif
 
#ifdef SYS_lookup_dcookie
  case SYS_lookup_dcookie : return "lookup_dcookie";
#endif
 
#ifdef SYS_lremovexattr
  case SYS_lremovexattr : return "lremovexattr";
#endif
 
#ifdef SYS_lseek
  case SYS_lseek : return "lseek";
#endif
 
#ifdef SYS_lsetxattr
  case SYS_lsetxattr : return "lsetxattr";
#endif
 
#ifdef SYS_lstat
  case SYS_lstat : return "lstat";
#endif
 
#ifdef SYS_madvise
  case SYS_madvise : return "madvise";
#endif
 
#ifdef SYS_mbind
  case SYS_mbind : return "mbind";
#endif
 
#ifdef SYS_migrate_pages
  case SYS_migrate_pages : return "migrate_pages";
#endif
 
#ifdef SYS_mincore
  case SYS_mincore : return "mincore";
#endif
 
#ifdef SYS_mkdir
  case SYS_mkdir : return "mkdir";
#endif
 
#ifdef SYS_mkdirat
  case SYS_mkdirat : return "mkdirat";
#endif
 
#ifdef SYS_mknod
  case SYS_mknod : return "mknod";
#endif
 
#ifdef SYS_mknodat
  case SYS_mknodat : return "mknodat";
#endif
 
#ifdef SYS_mlock
  case SYS_mlock : return "mlock";
#endif
 
#ifdef SYS_mlockall
  case SYS_mlockall : return "mlockall";
#endif
 
#ifdef SYS_mmap
  case SYS_mmap : return "mmap";
#endif
 
#ifdef SYS_modify_ldt
  case SYS_modify_ldt : return "modify_ldt";
#endif
 
#ifdef SYS_mount
  case SYS_mount : return "mount";
#endif
 
#ifdef SYS_move_pages
  case SYS_move_pages : return "move_pages";
#endif
 
#ifdef SYS_mprotect
  case SYS_mprotect : return "mprotect";
#endif
 
#ifdef SYS_mq_getsetattr
  case SYS_mq_getsetattr : return "mq_getsetattr";
#endif
 
#ifdef SYS_mq_notify
  case SYS_mq_notify : return "mq_notify";
#endif
 
#ifdef SYS_mq_open
  case SYS_mq_open : return "mq_open";
#endif
 
#ifdef SYS_mq_timedreceive
  case SYS_mq_timedreceive : return "mq_timedreceive";
#endif
 
#ifdef SYS_mq_timedsend
  case SYS_mq_timedsend : return "mq_timedsend";
#endif
 
#ifdef SYS_mq_unlink
  case SYS_mq_unlink : return "mq_unlink";
#endif
 
#ifdef SYS_mremap
  case SYS_mremap : return "mremap";
#endif
 
#ifdef SYS_msync
  case SYS_msync : return "msync";
#endif
 
#ifdef SYS_munlock
  case SYS_munlock : return "munlock";
#endif
 
#ifdef SYS_munlockall
  case SYS_munlockall : return "munlockall";
#endif
 
#ifdef SYS_munmap
  case SYS_munmap : return "munmap";
#endif
 
#ifdef SYS_nanosleep
  case SYS_nanosleep : return "nanosleep";
#endif
 
#ifdef SYS_nfsservctl
  case SYS_nfsservctl : return "nfsservctl";
#endif
 
#ifdef SYS_open
  case SYS_open : return "open";
#endif
 
#ifdef SYS_openat
  case SYS_openat : return "openat";
#endif
 
#ifdef SYS_pause
  case SYS_pause : return "pause";
#endif
 
#ifdef SYS_personality
  case SYS_personality : return "personality";
#endif
 
#ifdef SYS_pipe
  case SYS_pipe : return "pipe";
#endif
 
#ifdef SYS_pivot_root
  case SYS_pivot_root : return "pivot_root";
#endif
 
#ifdef SYS_poll
  case SYS_poll : return "poll";
#endif
 
#ifdef SYS_ppoll
  case SYS_ppoll : return "ppoll";
#endif
 
#ifdef SYS_prctl
  case SYS_prctl : return "prctl";
#endif
 
#ifdef SYS_pread64
  case SYS_pread64 : return "pread64";
#endif
 
#ifdef SYS_pselect6
  case SYS_pselect6 : return "pselect6";
#endif
 
#ifdef SYS_ptrace
  case SYS_ptrace : return "ptrace";
#endif
 
#ifdef SYS_putpmsg
  case SYS_putpmsg : return "putpmsg";
#endif
 
#ifdef SYS_pwrite64
  case SYS_pwrite64 : return "pwrite64";
#endif
 
#ifdef SYS_query_module
  case SYS_query_module : return "query_module";
#endif
 
#ifdef SYS_quotactl
  case SYS_quotactl : return "quotactl";
#endif
 
#ifdef SYS_read
  case SYS_read : return "read";
#endif
 
#ifdef SYS_readahead
  case SYS_readahead : return "readahead";
#endif
 
#ifdef SYS_readlink
  case SYS_readlink : return "readlink";
#endif
 
#ifdef SYS_readlinkat
  case SYS_readlinkat : return "readlinkat";
#endif
 
#ifdef SYS_readv
  case SYS_readv : return "readv";
#endif
 
#ifdef SYS_reboot
  case SYS_reboot : return "reboot";
#endif
 
#ifdef SYS_remap_file_pages
  case SYS_remap_file_pages : return "remap_file_pages";
#endif
 
#ifdef SYS_removexattr
  case SYS_removexattr : return "removexattr";
#endif
 
#ifdef SYS_rename
  case SYS_rename : return "rename";
#endif
 
#ifdef SYS_renameat
  case SYS_renameat : return "renameat";
#endif
 
#ifdef SYS_request_key
  case SYS_request_key : return "request_key";
#endif
 
#ifdef SYS_restart_syscall
  case SYS_restart_syscall : return "restart_syscall";
#endif
 
#ifdef SYS_rmdir
  case SYS_rmdir : return "rmdir";
#endif
 
#ifdef SYS_rt_sigaction
  case SYS_rt_sigaction : return "rt_sigaction";
#endif
 
#ifdef SYS_rt_sigpending
  case SYS_rt_sigpending : return "rt_sigpending";
#endif
 
#ifdef SYS_rt_sigprocmask
  case SYS_rt_sigprocmask : return "rt_sigprocmask";
#endif
 
#ifdef SYS_rt_sigqueueinfo
  case SYS_rt_sigqueueinfo : return "rt_sigqueueinfo";
#endif
 
#ifdef SYS_rt_sigreturn
  case SYS_rt_sigreturn : return "rt_sigreturn";
#endif
 
#ifdef SYS_rt_sigsuspend
  case SYS_rt_sigsuspend : return "rt_sigsuspend";
#endif
 
#ifdef SYS_rt_sigtimedwait
  case SYS_rt_sigtimedwait : return "rt_sigtimedwait";
#endif
 
#ifdef SYS_sched_get_priority_max
  case SYS_sched_get_priority_max : return "sched_get_priority_max";
#endif
 
#ifdef SYS_sched_get_priority_min
  case SYS_sched_get_priority_min : return "sched_get_priority_min";
#endif
 
#ifdef SYS_sched_getaffinity
  case SYS_sched_getaffinity : return "sched_getaffinity";
#endif
 
#ifdef SYS_sched_getparam
  case SYS_sched_getparam : return "sched_getparam";
#endif
 
#ifdef SYS_sched_getscheduler
  case SYS_sched_getscheduler : return "sched_getscheduler";
#endif
 
#ifdef SYS_sched_rr_get_interval
  case SYS_sched_rr_get_interval : return "sched_rr_get_interval";
#endif
 
#ifdef SYS_sched_setaffinity
  case SYS_sched_setaffinity : return "sched_setaffinity";
#endif
 
#ifdef SYS_sched_setparam
  case SYS_sched_setparam : return "sched_setparam";
#endif
 
#ifdef SYS_sched_setscheduler
  case SYS_sched_setscheduler : return "sched_setscheduler";
#endif
 
#ifdef SYS_sched_yield
  case SYS_sched_yield : return "sched_yield";
#endif
 
#ifdef SYS_select
  case SYS_select : return "select";
#endif
 
#ifdef SYS_sendfile
  case SYS_sendfile : return "sendfile";
#endif
 
#ifdef SYS_set_mempolicy
  case SYS_set_mempolicy : return "set_mempolicy";
#endif
 
#ifdef SYS_set_robust_list
  case SYS_set_robust_list : return "set_robust_list";
#endif
 
#ifdef SYS_set_thread_area
  case SYS_set_thread_area : return "set_thread_area";
#endif
 
#ifdef SYS_set_tid_address
  case SYS_set_tid_address : return "set_tid_address";
#endif
 
#ifdef SYS_setdomainname
  case SYS_setdomainname : return "setdomainname";
#endif
 
#ifdef SYS_setfsgid
  case SYS_setfsgid : return "setfsgid";
#endif
 
#ifdef SYS_setfsuid
  case SYS_setfsuid : return "setfsuid";
#endif
 
#ifdef SYS_setgid
  case SYS_setgid : return "setgid";
#endif
 
#ifdef SYS_setgroups
  case SYS_setgroups : return "setgroups";
#endif
 
#ifdef SYS_sethostname
  case SYS_sethostname : return "sethostname";
#endif
 
#ifdef SYS_setitimer
  case SYS_setitimer : return "setitimer";
#endif
 
#ifdef SYS_setpgid
  case SYS_setpgid : return "setpgid";
#endif
 
#ifdef SYS_setpriority
  case SYS_setpriority : return "setpriority";
#endif
 
#ifdef SYS_setregid
  case SYS_setregid : return "setregid";
#endif
 
#ifdef SYS_setresgid
  case SYS_setresgid : return "setresgid";
#endif
 
#ifdef SYS_setresuid
  case SYS_setresuid : return "setresuid";
#endif
 
#ifdef SYS_setreuid
  case SYS_setreuid : return "setreuid";
#endif
 
#ifdef SYS_setrlimit
  case SYS_setrlimit : return "setrlimit";
#endif
 
#ifdef SYS_setsid
  case SYS_setsid : return "setsid";
#endif
 
#ifdef SYS_settimeofday
  case SYS_settimeofday : return "settimeofday";
#endif
 
 
#ifdef SYS_setuid
  case SYS_setuid : return "setuid";
#endif
 
#ifdef SYS_setxattr
  case SYS_setxattr : return "setxattr";
#endif
 
#ifdef SYS_sigaltstack
  case SYS_sigaltstack : return "sigaltstack";
#endif
 
#ifdef SYS_signalfd
  case SYS_signalfd : return "signalfd";
#endif
 
#ifdef SYS_splice
  case SYS_splice : return "splice";
#endif
 
#ifdef SYS_stat
  case SYS_stat : return "stat";
#endif
 
#ifdef SYS_statfs
  case SYS_statfs : return "statfs";
#endif
 
#ifdef SYS_swapoff
  case SYS_swapoff : return "swapoff";
#endif
 
#ifdef SYS_swapon
  case SYS_swapon : return "swapon";
#endif
 
#ifdef SYS_symlink
  case SYS_symlink : return "symlink";
#endif
 
#ifdef SYS_symlinkat
  case SYS_symlinkat : return "symlinkat";
#endif
 
#ifdef SYS_sync
  case SYS_sync : return "sync";
#endif
 
#ifdef SYS_sync_file_range
  case SYS_sync_file_range : return "sync_file_range";
#endif
 
#ifdef SYS_sysfs
  case SYS_sysfs : return "sysfs";
#endif
 
#ifdef SYS_sysinfo
  case SYS_sysinfo : return "sysinfo";
#endif
 
#ifdef SYS_syslog
  case SYS_syslog : return "syslog";
#endif
 
#ifdef SYS_tee
  case SYS_tee : return "tee";
#endif
 
#ifdef SYS_tgkill
  case SYS_tgkill : return "tgkill";
#endif
 
#ifdef SYS_time
  case SYS_time : return "time";
#endif
 
#ifdef SYS_timer_create
  case SYS_timer_create : return "timer_create";
#endif
 
#ifdef SYS_timer_delete
  case SYS_timer_delete : return "timer_delete";
#endif
 
#ifdef SYS_timer_getoverrun
  case SYS_timer_getoverrun : return "timer_getoverrun";
#endif
 
#ifdef SYS_timer_gettime
  case SYS_timer_gettime : return "timer_gettime";
#endif
 
#ifdef SYS_timer_settime
  case SYS_timer_settime : return "timer_settime";
#endif
 
#ifdef SYS_timerfd_create
  case SYS_timerfd_create : return "timerfd_create";
#endif
 
#ifdef SYS_timerfd_gettime
  case SYS_timerfd_gettime : return "timerfd_gettime";
#endif
 
#ifdef SYS_timerfd_settime
  case SYS_timerfd_settime : return "timerfd_settime";
#endif
 
#ifdef SYS_times
  case SYS_times : return "times";
#endif
 
#ifdef SYS_tkill
  case SYS_tkill : return "tkill";
#endif
 
#ifdef SYS_truncate
  case SYS_truncate : return "truncate";
#endif
 
#ifdef SYS_umask
  case SYS_umask : return "umask";
#endif
 
#ifdef SYS_umount2
  case SYS_umount2 : return "umount2";
#endif
 
#ifdef SYS_uname
  case SYS_uname : return "uname";
#endif
 
#ifdef SYS_unlink
  case SYS_unlink : return "unlink";
#endif
 
#ifdef SYS_unlinkat
  case SYS_unlinkat : return "unlinkat";
#endif
 
#ifdef SYS_unshare
  case SYS_unshare : return "unshare";
#endif
 
#ifdef SYS_uselib
  case SYS_uselib : return "uselib";
#endif
 
#ifdef SYS_ustat
  case SYS_ustat : return "ustat";
#endif
 
#ifdef SYS_utime
  case SYS_utime : return "utime";
#endif
 
#ifdef SYS_utimensat
  case SYS_utimensat : return "utimensat";
#endif
 
#ifdef SYS_utimes
  case SYS_utimes : return "utimes";
#endif
 
#ifdef SYS_vfork
  case SYS_vfork : return "vfork";
#endif
 
#ifdef SYS_vhangup
  case SYS_vhangup : return "vhangup";
#endif
 
#ifdef SYS_vmsplice
  case SYS_vmsplice : return "vmsplice";
#endif
 
#ifdef SYS_vserver
  case SYS_vserver : return "vserver";
#endif
 
#ifdef SYS_wait4
  case SYS_wait4 : return "wait4";
#endif
 
#ifdef SYS_waitid
  case SYS_waitid : return "waitid";
#endif
 
#ifdef SYS_write
  case SYS_write : return "write";
#endif
 
#ifdef SYS_writev
  case SYS_writev : return "writev";
#endif
 
#ifdef SYS_accept
  case SYS_accept : return "accept";
#endif
 
#ifdef SYS_arch_prctl
  case SYS_arch_prctl : return "arch_prctl";
#endif
 
#ifdef SYS_bind
  case SYS_bind : return "bind";
#endif
 
#ifdef SYS_connect
  case SYS_connect : return "connect";
#endif
 
#ifdef SYS_epoll_ctl_old
  case SYS_epoll_ctl_old : return "epoll_ctl_old";
#endif
 
#ifdef SYS_epoll_wait_old
  case SYS_epoll_wait_old : return "epoll_wait_old";
#endif
 
#ifdef SYS_getpeername
  case SYS_getpeername : return "getpeername";
#endif
 
#ifdef SYS_getsockname
  case SYS_getsockname : return "getsockname";
#endif
 
#ifdef SYS_getsockopt
  case SYS_getsockopt : return "getsockopt";
#endif
 
#ifdef SYS_listen
  case SYS_listen : return "listen";
#endif
 
#ifdef SYS_msgctl
  case SYS_msgctl : return "msgctl";
#endif
 
#ifdef SYS_msgget
  case SYS_msgget : return "msgget";
#endif
 
#ifdef SYS_msgrcv
  case SYS_msgrcv : return "msgrcv";
#endif
 
#ifdef SYS_msgsnd
  case SYS_msgsnd : return "msgsnd";
#endif
 
#ifdef SYS_newfstatat
  case SYS_newfstatat : return "newfstatat";
#endif
 
#ifdef SYS_recvfrom
  case SYS_recvfrom : return "recvfrom";
#endif
 
#ifdef SYS_recvmsg
  case SYS_recvmsg : return "recvmsg";
#endif
 
#ifdef SYS_security
  case SYS_security : return "security";
#endif
 
#ifdef SYS_semctl
  case SYS_semctl : return "semctl";
#endif
 
#ifdef SYS_semget
  case SYS_semget : return "semget";
#endif
 
#ifdef SYS_semop
  case SYS_semop : return "semop";
#endif
 
#ifdef SYS_semtimedop
  case SYS_semtimedop : return "semtimedop";
#endif
 
#ifdef SYS_sendmsg
  case SYS_sendmsg : return "sendmsg";
#endif
 
#ifdef SYS_sendto
  case SYS_sendto : return "sendto";
#endif
 
#ifdef SYS_setsockopt
  case SYS_setsockopt : return "setsockopt";
#endif
 
#ifdef SYS_shmat
  case SYS_shmat : return "shmat";
#endif
 
#ifdef SYS_shmctl
  case SYS_shmctl : return "shmctl";
#endif
 
#ifdef SYS_shmdt
  case SYS_shmdt : return "shmdt";
#endif
 
#ifdef SYS_shmget
  case SYS_shmget : return "shmget";
#endif
 
#ifdef SYS_shutdown
  case SYS_shutdown : return "shutdown";
#endif
 
#ifdef SYS_socket
  case SYS_socket : return "socket";
#endif
 
#ifdef SYS_socketpair
  case SYS_socketpair : return "socketpair";
#endif
 
#ifdef SYS_tuxcall
  case SYS_tuxcall : return "tuxcall";
#endif
 
#ifdef SYS__llseek
  case SYS__llseek : return "_llseek";
#endif
 
#ifdef SYS__newselect
  case SYS__newselect : return "_newselect";
#endif
 
#ifdef SYS_bdflush
  case SYS_bdflush : return "bdflush";
#endif
 
#ifdef SYS_break
  case SYS_break : return "break";
#endif
 
#ifdef SYS_chown32
  case SYS_chown32 : return "chown32";
#endif
 
#ifdef SYS_fadvise64_64
  case SYS_fadvise64_64 : return "fadvise64_64";
#endif
 
#ifdef SYS_fchown32
  case SYS_fchown32 : return "fchown32";
#endif
 
#ifdef SYS_fcntl64
  case SYS_fcntl64 : return "fcntl64";
#endif
 
#ifdef SYS_fstat64
  case SYS_fstat64 : return "fstat64";
#endif
 
#ifdef SYS_fstatat64
  case SYS_fstatat64 : return "fstatat64";
#endif
 
#ifdef SYS_fstatfs64
  case SYS_fstatfs64 : return "fstatfs64";
#endif
 
#ifdef SYS_ftime
  case SYS_ftime : return "ftime";
#endif
 
#ifdef SYS_ftruncate64
  case SYS_ftruncate64 : return "ftruncate64";
#endif
 
#ifdef SYS_getcpu
  case SYS_getcpu : return "getcpu";
#endif
 
#ifdef SYS_getegid32
  case SYS_getegid32 : return "getegid32";
#endif
 
#ifdef SYS_geteuid32
  case SYS_geteuid32 : return "geteuid32";
#endif
 
#ifdef SYS_getgid32
  case SYS_getgid32 : return "getgid32";
#endif
 
#ifdef SYS_getgroups32
  case SYS_getgroups32 : return "getgroups32";
#endif
 
#ifdef SYS_getresgid32
  case SYS_getresgid32 : return "getresgid32";
#endif
 
#ifdef SYS_getresuid32
  case SYS_getresuid32 : return "getresuid32";
#endif
 
#ifdef SYS_getuid32
  case SYS_getuid32 : return "getuid32";
#endif
 
#ifdef SYS_gtty
  case SYS_gtty : return "gtty";
#endif
 
#ifdef SYS_idle
  case SYS_idle : return "idle";
#endif
 
#ifdef SYS_ipc
  case SYS_ipc : return "ipc";
#endif
 
#ifdef SYS_lchown32
  case SYS_lchown32 : return "lchown32";
#endif
 
#ifdef SYS_lock
  case SYS_lock : return "lock";
#endif
 
#ifdef SYS_lstat64
  case SYS_lstat64 : return "lstat64";
#endif
 
#ifdef SYS_madvise1
  case SYS_madvise1 : return "madvise1";
#endif
 
#ifdef SYS_mmap2
  case SYS_mmap2 : return "mmap2";
#endif
 
#ifdef SYS_mpx
  case SYS_mpx : return "mpx";
#endif
 
#ifdef SYS_nice
  case SYS_nice : return "nice";
#endif
 
#ifdef SYS_oldfstat
  case SYS_oldfstat : return "oldfstat";
#endif
 
#ifdef SYS_oldlstat
  case SYS_oldlstat : return "oldlstat";
#endif
 
#ifdef SYS_oldolduname
  case SYS_oldolduname : return "oldolduname";
#endif
 
#ifdef SYS_oldstat
  case SYS_oldstat : return "oldstat";
#endif
 
#ifdef SYS_olduname
  case SYS_olduname : return "olduname";
#endif
 
#ifdef SYS_prof
  case SYS_prof : return "prof";
#endif
 
#ifdef SYS_profil
  case SYS_profil : return "profil";
#endif
 
#ifdef SYS_readdir
  case SYS_readdir : return "readdir";
#endif
 
#ifdef SYS_sendfile64
  case SYS_sendfile64 : return "sendfile64";
#endif
 
#ifdef SYS_setfsgid32
  case SYS_setfsgid32 : return "setfsgid32";
#endif
 
#ifdef SYS_setfsuid32
  case SYS_setfsuid32 : return "setfsuid32";
#endif
 
#ifdef SYS_setgid32
  case SYS_setgid32 : return "setgid32";
#endif
 
#ifdef SYS_setgroups32
  case SYS_setgroups32 : return "setgroups32";
#endif
 
#ifdef SYS_setregid32
  case SYS_setregid32 : return "setregid32";
#endif
 
#ifdef SYS_setresgid32
  case SYS_setresgid32 : return "setresgid32";
#endif
 
#ifdef SYS_setresuid32
  case SYS_setresuid32 : return "setresuid32";
#endif
 
#ifdef SYS_setreuid32
  case SYS_setreuid32 : return "setreuid32";
#endif
 
#ifdef SYS_setuid32
  case SYS_setuid32 : return "setuid32";
#endif
 
#ifdef SYS_sgetmask
  case SYS_sgetmask : return "sgetmask";
#endif
 
#ifdef SYS_sigaction
  case SYS_sigaction : return "sigaction";
#endif
 
#ifdef SYS_signal
  case SYS_signal : return "signal";
#endif
 
#ifdef SYS_sigpending
  case SYS_sigpending : return "sigpending";
#endif
 
#ifdef SYS_sigprocmask
  case SYS_sigprocmask : return "sigprocmask";
#endif
 
#ifdef SYS_sigreturn
  case SYS_sigreturn : return "sigreturn";
#endif
 
#ifdef SYS_sigsuspend
  case SYS_sigsuspend : return "sigsuspend";
#endif
 
#ifdef SYS_socketcall
  case SYS_socketcall : return "socketcall";
#endif
 
#ifdef SYS_ssetmask
  case SYS_ssetmask : return "ssetmask";
#endif
 
#ifdef SYS_stat64
  case SYS_stat64 : return "stat64";
#endif
 
#ifdef SYS_statfs64
  case SYS_statfs64 : return "statfs64";
#endif
 
#ifdef SYS_stime
  case SYS_stime : return "stime";
#endif
 
#ifdef SYS_stty
  case SYS_stty : return "stty";
#endif
 
#ifdef SYS_truncate64
  case SYS_truncate64 : return "truncate64";
#endif
 
#ifdef SYS_ugetrlimit
  case SYS_ugetrlimit : return "ugetrlimit";
#endif
 
#ifdef SYS_ulimit
  case SYS_ulimit : return "ulimit";
#endif
 
#ifdef SYS_umount
  case SYS_umount : return "umount";
#endif
 
#ifdef SYS_vm86
  case SYS_vm86 : return "vm86";
#endif
 
#ifdef SYS_vm86old
  case SYS_vm86old : return "vm86old";
#endif
 
#ifdef SYS_waitpid
  case SYS_waitpid : return "waitpid";
#endif
 
  default:
    return "unknown";
  }
}