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
|
/* $NetBSD: linux_syscallargs.h,v 1.4 2021/12/02 04:39:44 ryo Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.3 2021/11/25 02:29:33 ryo Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
#define _LINUX_SYS_SYSCALLARGS_H_
/* Forward declaration */
struct lwp;
#define LINUX_SYS_MAXSYSARGS 8
#undef syscallarg
#define syscallarg(x) \
union { \
register_t pad; \
struct { x datum; } le; \
struct { /* LINTED zero array dimension */ \
int8_t pad[ /* CONSTCOND */ \
(sizeof (register_t) < sizeof (x)) \
? 0 \
: sizeof (register_t) - sizeof (x)]; \
x datum; \
} be; \
}
#undef check_syscall_args
#define check_syscall_args(call) /*LINTED*/ \
typedef char call##_check_args[sizeof (struct call##_args) \
<= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
struct linux_sys_setxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_setxattr)
struct linux_sys_lsetxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_lsetxattr)
struct linux_sys_fsetxattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_fsetxattr)
struct linux_sys_getxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_getxattr)
struct linux_sys_lgetxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_lgetxattr)
struct linux_sys_fgetxattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_fgetxattr)
struct linux_sys_listxattr_args {
syscallarg(char *) path;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_listxattr)
struct linux_sys_llistxattr_args {
syscallarg(char *) path;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_llistxattr)
struct linux_sys_flistxattr_args {
syscallarg(int) fd;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_flistxattr)
struct linux_sys_removexattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_removexattr)
struct linux_sys_lremovexattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_lremovexattr)
struct linux_sys_fremovexattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_fremovexattr)
struct sys___getcwd_args;
struct linux_sys_eventfd2_args {
syscallarg(unsigned int) initval;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_eventfd2)
struct sys_dup_args;
struct linux_sys_dup3_args {
syscallarg(int) from;
syscallarg(int) to;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_dup3)
struct linux_sys_fcntl_args {
syscallarg(int) fd;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
check_syscall_args(linux_sys_fcntl)
struct linux_sys_ioctl_args {
syscallarg(int) fd;
syscallarg(u_long) com;
syscallarg(void *) data;
};
check_syscall_args(linux_sys_ioctl)
struct sys_flock_args;
struct linux_sys_mknodat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
syscallarg(unsigned) dev;
};
check_syscall_args(linux_sys_mknodat)
struct sys_mkdirat_args;
struct linux_sys_unlinkat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_unlinkat)
struct sys_symlinkat_args;
struct linux_sys_linkat_args {
syscallarg(int) fd1;
syscallarg(const char *) name1;
syscallarg(int) fd2;
syscallarg(const char *) name2;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_linkat)
struct sys_renameat_args;
struct linux_sys_statfs_args {
syscallarg(const char *) path;
syscallarg(struct linux_statfs *) sp;
};
check_syscall_args(linux_sys_statfs)
struct linux_sys_fstatfs_args {
syscallarg(int) fd;
syscallarg(struct linux_statfs *) sp;
};
check_syscall_args(linux_sys_fstatfs)
struct linux_sys_truncate64_args {
syscallarg(const char *) path;
syscallarg(off_t) length;
};
check_syscall_args(linux_sys_truncate64)
struct linux_sys_ftruncate64_args {
syscallarg(unsigned int) fd;
syscallarg(off_t) length;
};
check_syscall_args(linux_sys_ftruncate64)
struct linux_sys_fallocate_args {
syscallarg(int) fd;
syscallarg(int) mode;
syscallarg(off_t) offset;
syscallarg(off_t) len;
};
check_syscall_args(linux_sys_fallocate)
struct linux_sys_faccessat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) amode;
};
check_syscall_args(linux_sys_faccessat)
struct sys_chdir_args;
struct sys_fchdir_args;
struct sys_chroot_args;
struct sys_fchmod_args;
struct linux_sys_fchmodat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_fchmodat)
struct linux_sys_fchownat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(uid_t) owner;
syscallarg(gid_t) group;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_fchownat)
struct sys___posix_fchown_args;
struct linux_sys_openat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) flags;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_openat)
struct sys_close_args;
struct linux_sys_pipe2_args {
syscallarg(int *) pfds;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_pipe2)
struct linux_sys_getdents64_args {
syscallarg(int) fd;
syscallarg(struct linux_dirent64 *) dent;
syscallarg(unsigned int) count;
};
check_syscall_args(linux_sys_getdents64)
struct compat_43_sys_lseek_args;
struct sys_read_args;
struct sys_write_args;
struct sys_readv_args;
struct sys_writev_args;
struct linux_sys_pread_args {
syscallarg(int) fd;
syscallarg(char *) buf;
syscallarg(size_t) nbyte;
syscallarg(off_t) offset;
};
check_syscall_args(linux_sys_pread)
struct linux_sys_pwrite_args {
syscallarg(int) fd;
syscallarg(char *) buf;
syscallarg(size_t) nbyte;
syscallarg(off_t) offset;
};
check_syscall_args(linux_sys_pwrite)
struct linux_sys_preadv_args {
syscallarg(int) fd;
syscallarg(const struct iovec *) iovp;
syscallarg(int) iovcnt;
syscallarg(unsigned long) off_lo;
syscallarg(unsigned long) off_hi;
};
check_syscall_args(linux_sys_preadv)
struct linux_sys_pwritev_args {
syscallarg(int) fd;
syscallarg(const struct iovcnt *) iovp;
syscallarg(int) iovcnt;
syscallarg(unsigned long) off_lo;
syscallarg(unsigned long) off_hi;
};
check_syscall_args(linux_sys_pwritev)
struct linux_sys_pselect6_args {
syscallarg(int) nfds;
syscallarg(fd_set *) readfds;
syscallarg(fd_set *) writefds;
syscallarg(fd_set *) exceptfds;
syscallarg(struct linux_timespec *) timeout;
syscallarg(linux_sized_sigset_t *) ss;
};
check_syscall_args(linux_sys_pselect6)
struct linux_sys_ppoll_args {
syscallarg(struct pollfd *) fds;
syscallarg(u_int) nfds;
syscallarg(struct linux_timespec *) timeout;
syscallarg(linux_sigset_t *) sigset;
};
check_syscall_args(linux_sys_ppoll)
struct sys_readlinkat_args;
struct linux_sys_fstatat64_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(struct linux_stat *) sp;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_fstatat64)
struct linux_sys_fstat64_args {
syscallarg(int) fd;
syscallarg(struct linux_stat *) sp;
};
check_syscall_args(linux_sys_fstat64)
struct sys_fsync_args;
struct linux_sys_fdatasync_args {
syscallarg(int) fd;
};
check_syscall_args(linux_sys_fdatasync)
struct linux_sys_timerfd_create_args {
syscallarg(clockid_t) clock_id;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_timerfd_create)
struct linux_sys_timerfd_settime_args {
syscallarg(int) fd;
syscallarg(int) flags;
syscallarg(const struct linux_itimerspec *) tim;
syscallarg(struct linux_itimerspec *) otim;
};
check_syscall_args(linux_sys_timerfd_settime)
struct linux_sys_timerfd_gettime_args {
syscallarg(int) fd;
syscallarg(struct linux_itimerspec *) tim;
};
check_syscall_args(linux_sys_timerfd_gettime)
struct linux_sys_utimensat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(struct linux_timespec *) times;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_utimensat)
struct sys_acct_args;
struct linux_sys_personality_args {
syscallarg(unsigned long) per;
};
check_syscall_args(linux_sys_personality)
struct linux_sys_exit_args {
syscallarg(int) rval;
};
check_syscall_args(linux_sys_exit)
struct linux_sys_exit_group_args {
syscallarg(int) error_code;
};
check_syscall_args(linux_sys_exit_group)
struct linux_sys_set_tid_address_args {
syscallarg(int *) tid;
};
check_syscall_args(linux_sys_set_tid_address)
struct linux_sys_futex_args {
syscallarg(int *) uaddr;
syscallarg(int) op;
syscallarg(int) val;
syscallarg(const struct linux_timespec *) timeout;
syscallarg(int *) uaddr2;
syscallarg(int) val3;
};
check_syscall_args(linux_sys_futex)
struct sys___futex_set_robust_list_args;
struct sys___futex_get_robust_list_args;
struct linux_sys_nanosleep_args {
syscallarg(const struct linux_timespec *) rqtp;
syscallarg(struct linux_timespec *) rmtp;
};
check_syscall_args(linux_sys_nanosleep)
struct compat_50_sys_getitimer_args;
struct compat_50_sys_setitimer_args;
struct linux_sys_timer_create_args {
syscallarg(clockid_t) clockid;
syscallarg(struct linux_sigevent *) evp;
syscallarg(timer_t *) timerid;
};
check_syscall_args(linux_sys_timer_create)
struct linux_sys_timer_gettime_args {
syscallarg(timer_t) timerid;
syscallarg(struct linux_itimerspec *) tim;
};
check_syscall_args(linux_sys_timer_gettime)
struct sys_timer_getoverrun_args;
struct linux_sys_timer_settime_args {
syscallarg(timer_t) timerid;
syscallarg(int) flags;
syscallarg(const struct linux_itimerspec *) tim;
syscallarg(struct linux_itimerspec *) otim;
};
check_syscall_args(linux_sys_timer_settime)
struct sys_timer_delete_args;
struct linux_sys_clock_settime_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_settime)
struct linux_sys_clock_gettime_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_gettime)
struct linux_sys_clock_getres_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_getres)
struct linux_sys_clock_nanosleep_args {
syscallarg(clockid_t) which;
syscallarg(int) flags;
syscallarg(struct linux_timespec *) rqtp;
syscallarg(struct linux_timespec *) rmtp;
};
check_syscall_args(linux_sys_clock_nanosleep)
struct linux_sys_ptrace_args {
syscallarg(long) request;
syscallarg(long) pid;
syscallarg(long) addr;
syscallarg(long) data;
};
check_syscall_args(linux_sys_ptrace)
struct linux_sys_sched_setparam_args {
syscallarg(pid_t) pid;
syscallarg(const struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_setparam)
struct linux_sys_sched_setscheduler_args {
syscallarg(pid_t) pid;
syscallarg(int) policy;
syscallarg(const struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_setscheduler)
struct linux_sys_sched_getscheduler_args {
syscallarg(pid_t) pid;
};
check_syscall_args(linux_sys_sched_getscheduler)
struct linux_sys_sched_getparam_args {
syscallarg(pid_t) pid;
syscallarg(struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_getparam)
struct linux_sys_sched_setaffinity_args {
syscallarg(pid_t) pid;
syscallarg(unsigned int) len;
syscallarg(unsigned long *) mask;
};
check_syscall_args(linux_sys_sched_setaffinity)
struct linux_sys_sched_getaffinity_args {
syscallarg(pid_t) pid;
syscallarg(unsigned int) len;
syscallarg(unsigned long *) mask;
};
check_syscall_args(linux_sys_sched_getaffinity)
struct linux_sys_sched_get_priority_max_args {
syscallarg(int) policy;
};
check_syscall_args(linux_sys_sched_get_priority_max)
struct linux_sys_sched_get_priority_min_args {
syscallarg(int) policy;
};
check_syscall_args(linux_sys_sched_get_priority_min)
struct linux_sys_kill_args {
syscallarg(int) pid;
syscallarg(int) signum;
};
check_syscall_args(linux_sys_kill)
struct linux_sys_tkill_args {
syscallarg(int) tid;
syscallarg(int) sig;
};
check_syscall_args(linux_sys_tkill)
struct linux_sys_tgkill_args {
syscallarg(int) tgid;
syscallarg(int) tid;
syscallarg(int) sig;
};
check_syscall_args(linux_sys_tgkill)
struct linux_sys_sigaltstack_args {
syscallarg(const struct linux_sigaltstack *) ss;
syscallarg(struct linux_sigaltstack *) oss;
};
check_syscall_args(linux_sys_sigaltstack)
struct linux_sys_rt_sigsuspend_args {
syscallarg(linux_sigset_t *) unewset;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigsuspend)
struct linux_sys_rt_sigaction_args {
syscallarg(int) signum;
syscallarg(const struct linux_sigaction *) nsa;
syscallarg(struct linux_sigaction *) osa;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigaction)
struct linux_sys_rt_sigprocmask_args {
syscallarg(int) how;
syscallarg(const linux_sigset_t *) set;
syscallarg(linux_sigset_t *) oset;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigprocmask)
struct linux_sys_rt_sigpending_args {
syscallarg(linux_sigset_t *) set;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigpending)
struct linux_sys_rt_sigtimedwait_args {
syscallarg(const linux_sigset_t *) set;
syscallarg(linux_siginfo_t *) info;
syscallarg(const struct linux_timespec *) timeout;
};
check_syscall_args(linux_sys_rt_sigtimedwait)
struct sys_setpriority_args;
struct linux_sys_getpriority_args {
syscallarg(int) which;
syscallarg(int) who;
};
check_syscall_args(linux_sys_getpriority)
struct linux_sys_reboot_args {
syscallarg(int) magic1;
syscallarg(int) magic2;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
check_syscall_args(linux_sys_reboot)
struct sys_setregid_args;
struct sys_setgid_args;
struct sys_setreuid_args;
struct sys_setuid_args;
struct linux_sys_setresuid_args {
syscallarg(uid_t) ruid;
syscallarg(uid_t) euid;
syscallarg(uid_t) suid;
};
check_syscall_args(linux_sys_setresuid)
struct linux_sys_getresuid_args {
syscallarg(uid_t *) ruid;
syscallarg(uid_t *) euid;
syscallarg(uid_t *) suid;
};
check_syscall_args(linux_sys_getresuid)
struct linux_sys_setresgid_args {
syscallarg(gid_t) rgid;
syscallarg(gid_t) egid;
syscallarg(gid_t) sgid;
};
check_syscall_args(linux_sys_setresgid)
struct linux_sys_getresgid_args {
syscallarg(gid_t *) rgid;
syscallarg(gid_t *) egid;
syscallarg(gid_t *) sgid;
};
check_syscall_args(linux_sys_getresgid)
struct linux_sys_setfsuid_args {
syscallarg(uid_t) uid;
};
check_syscall_args(linux_sys_setfsuid)
struct linux_sys_setfsgid_args {
syscallarg(gid_t) gid;
};
check_syscall_args(linux_sys_setfsgid)
struct linux_sys_times_args {
syscallarg(struct times *) tms;
};
check_syscall_args(linux_sys_times)
struct sys_setpgid_args;
struct sys_getpgid_args;
struct sys_getsid_args;
struct sys_getgroups_args;
struct sys_setgroups_args;
struct linux_sys_uname_args {
syscallarg(struct linux_utsname *) up;
};
check_syscall_args(linux_sys_uname)
struct compat_43_sys_sethostname_args;
struct linux_sys_setdomainname_args {
syscallarg(char *) domainname;
syscallarg(int) len;
};
check_syscall_args(linux_sys_setdomainname)
struct linux_sys_getrlimit_args {
syscallarg(int) which;
syscallarg(struct rlimit *) rlp;
};
check_syscall_args(linux_sys_getrlimit)
struct linux_sys_setrlimit_args {
syscallarg(u_int) which;
syscallarg(struct rlimit *) rlp;
};
check_syscall_args(linux_sys_setrlimit)
struct compat_50_sys_getrusage_args;
struct sys_umask_args;
struct linux_sys_gettimeofday_args {
syscallarg(struct timeval50 *) tp;
syscallarg(struct timezone *) tzp;
};
check_syscall_args(linux_sys_gettimeofday)
struct linux_sys_settimeofday_args {
syscallarg(struct timeval50 *) tp;
syscallarg(struct timezone *) tzp;
};
check_syscall_args(linux_sys_settimeofday)
struct linux_sys_sysinfo_args {
syscallarg(struct linux_sysinfo *) arg;
};
check_syscall_args(linux_sys_sysinfo)
#ifdef SYSVMSG
struct sys_msgget_args;
struct linux_sys_msgctl_args;
struct sys_msgrcv_args;
struct sys_msgsnd_args;
#else
#endif
#ifdef SYSVSEM
struct sys_semget_args;
struct linux_sys_semctl_args {
syscallarg(int) semid;
syscallarg(int) semnum;
syscallarg(int) cmd;
syscallarg(union linux_semun) arg;
};
check_syscall_args(linux_sys_semctl)
struct sys_semop_args;
#else
#endif
#ifdef SYSVSEM
struct linux_sys_shmget_args;
struct linux_sys_shmctl_args;
struct sys_shmat_args;
struct sys_shmdt_args;
#else
#endif
struct linux_sys_socket_args {
syscallarg(int) domain;
syscallarg(int) type;
syscallarg(int) protocol;
};
check_syscall_args(linux_sys_socket)
struct linux_sys_socketpair_args {
syscallarg(int) domain;
syscallarg(int) type;
syscallarg(int) protocol;
syscallarg(int *) rsv;
};
check_syscall_args(linux_sys_socketpair)
struct linux_sys_bind_args {
syscallarg(int) s;
syscallarg(const struct osockaddr *) name;
syscallarg(unsigned int) namelen;
};
check_syscall_args(linux_sys_bind)
struct sys_listen_args;
struct linux_sys_accept_args {
syscallarg(int) s;
syscallarg(struct osockaddr *) name;
syscallarg(int *) anamelen;
};
check_syscall_args(linux_sys_accept)
struct linux_sys_connect_args {
syscallarg(int) s;
syscallarg(const struct osockaddr *) name;
syscallarg(unsigned int) namelen;
};
check_syscall_args(linux_sys_connect)
struct linux_sys_getsockname_args {
syscallarg(int) fdec;
syscallarg(void *) asa;
syscallarg(int *) alen;
};
check_syscall_args(linux_sys_getsockname)
struct linux_sys_getpeername_args {
syscallarg(int) fdes;
syscallarg(struct sockaddr *) asa;
syscallarg(unsigned int *) alen;
};
check_syscall_args(linux_sys_getpeername)
struct linux_sys_sendto_args {
syscallarg(int) s;
syscallarg(void *) msg;
syscallarg(int) len;
syscallarg(int) flags;
syscallarg(struct osockaddr *) to;
syscallarg(int) tolen;
};
check_syscall_args(linux_sys_sendto)
struct linux_sys_recvfrom_args {
syscallarg(int) s;
syscallarg(void *) buf;
syscallarg(size_t) len;
syscallarg(int) flags;
syscallarg(struct osockaddr *) from;
syscallarg(unsigned int *) fromlenaddr;
};
check_syscall_args(linux_sys_recvfrom)
struct linux_sys_setsockopt_args {
syscallarg(int) s;
syscallarg(int) level;
syscallarg(int) optname;
syscallarg(void *) optval;
syscallarg(int) optlen;
};
check_syscall_args(linux_sys_setsockopt)
struct linux_sys_getsockopt_args {
syscallarg(int) s;
syscallarg(int) level;
syscallarg(int) optname;
syscallarg(void *) optval;
syscallarg(int *) optlen;
};
check_syscall_args(linux_sys_getsockopt)
struct sys_shutdown_args;
struct linux_sys_sendmsg_args {
syscallarg(int) s;
syscallarg(const struct linux_msghdr *) msg;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_sendmsg)
struct linux_sys_recvmsg_args {
syscallarg(int) s;
syscallarg(struct linux_msghdr *) msg;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_recvmsg)
struct linux_sys_brk_args {
syscallarg(char *) nsize;
};
check_syscall_args(linux_sys_brk)
struct sys_munmap_args;
struct linux_sys_mremap_args {
syscallarg(void *) old_address;
syscallarg(size_t) old_size;
syscallarg(size_t) new_size;
syscallarg(u_long) flags;
};
check_syscall_args(linux_sys_mremap)
struct linux_sys_clone_args {
syscallarg(int) flags;
syscallarg(void *) stack;
syscallarg(void *) parent_tidptr;
syscallarg(void *) child_tidptr;
syscallarg(void *) tls;
};
check_syscall_args(linux_sys_clone)
struct sys_execve_args;
struct linux_sys_mmap_args;
struct linux_sys_fadvise64_args {
syscallarg(int) fd;
syscallarg(off_t) offset;
syscallarg(size_t) len;
syscallarg(int) advice;
};
check_syscall_args(linux_sys_fadvise64)
struct linux_sys_swapon_args {
syscallarg(char *) name;
};
check_syscall_args(linux_sys_swapon)
struct linux_sys_swapoff_args {
syscallarg(const char *) path;
};
check_syscall_args(linux_sys_swapoff)
struct linux_sys_mprotect_args {
syscallarg(const void *) start;
syscallarg(unsigned long) len;
syscallarg(int) prot;
};
check_syscall_args(linux_sys_mprotect)
struct sys___msync13_args;
struct sys_mlock_args;
struct sys_munlock_args;
struct sys_mlockall_args;
struct sys_mincore_args;
struct sys_madvise_args;
struct linux_sys_accept4_args {
syscallarg(int) s;
syscallarg(struct osockaddr *) name;
syscallarg(int *) anamelen;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_accept4)
struct linux_sys_recvmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
syscallarg(struct timespec *) timeout;
};
check_syscall_args(linux_sys_recvmmsg)
struct linux_sys_wait4_args {
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
syscallarg(struct rusage50 *) rusage;
};
check_syscall_args(linux_sys_wait4)
struct linux_sys_prlimit64_args {
syscallarg(pid_t) pid;
syscallarg(int) which;
syscallarg(struct rlimit *) new_rlp;
syscallarg(struct rlimit *) old_rlp;
};
check_syscall_args(linux_sys_prlimit64)
struct linux_sys_sendmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
};
check_syscall_args(linux_sys_sendmmsg)
struct sys_getrandom_args;
struct linux_sys_statx_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) flag;
syscallarg(unsigned int) mask;
syscallarg(struct linux_statx *) sp;
};
check_syscall_args(linux_sys_statx)
/*
* System call prototypes.
*/
int linux_sys_setxattr(struct lwp *, const struct linux_sys_setxattr_args *, register_t *);
int linux_sys_lsetxattr(struct lwp *, const struct linux_sys_lsetxattr_args *, register_t *);
int linux_sys_fsetxattr(struct lwp *, const struct linux_sys_fsetxattr_args *, register_t *);
int linux_sys_getxattr(struct lwp *, const struct linux_sys_getxattr_args *, register_t *);
int linux_sys_lgetxattr(struct lwp *, const struct linux_sys_lgetxattr_args *, register_t *);
int linux_sys_fgetxattr(struct lwp *, const struct linux_sys_fgetxattr_args *, register_t *);
int linux_sys_listxattr(struct lwp *, const struct linux_sys_listxattr_args *, register_t *);
int linux_sys_llistxattr(struct lwp *, const struct linux_sys_llistxattr_args *, register_t *);
int linux_sys_flistxattr(struct lwp *, const struct linux_sys_flistxattr_args *, register_t *);
int linux_sys_removexattr(struct lwp *, const struct linux_sys_removexattr_args *, register_t *);
int linux_sys_lremovexattr(struct lwp *, const struct linux_sys_lremovexattr_args *, register_t *);
int linux_sys_fremovexattr(struct lwp *, const struct linux_sys_fremovexattr_args *, register_t *);
int sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *);
int linux_sys_eventfd2(struct lwp *, const struct linux_sys_eventfd2_args *, register_t *);
int sys_dup(struct lwp *, const struct sys_dup_args *, register_t *);
int linux_sys_dup3(struct lwp *, const struct linux_sys_dup3_args *, register_t *);
int linux_sys_fcntl(struct lwp *, const struct linux_sys_fcntl_args *, register_t *);
int linux_sys_ioctl(struct lwp *, const struct linux_sys_ioctl_args *, register_t *);
int sys_flock(struct lwp *, const struct sys_flock_args *, register_t *);
int linux_sys_mknodat(struct lwp *, const struct linux_sys_mknodat_args *, register_t *);
int sys_mkdirat(struct lwp *, const struct sys_mkdirat_args *, register_t *);
int linux_sys_unlinkat(struct lwp *, const struct linux_sys_unlinkat_args *, register_t *);
int sys_symlinkat(struct lwp *, const struct sys_symlinkat_args *, register_t *);
int linux_sys_linkat(struct lwp *, const struct linux_sys_linkat_args *, register_t *);
int sys_renameat(struct lwp *, const struct sys_renameat_args *, register_t *);
int linux_sys_statfs(struct lwp *, const struct linux_sys_statfs_args *, register_t *);
int linux_sys_fstatfs(struct lwp *, const struct linux_sys_fstatfs_args *, register_t *);
int linux_sys_truncate64(struct lwp *, const struct linux_sys_truncate64_args *, register_t *);
int linux_sys_ftruncate64(struct lwp *, const struct linux_sys_ftruncate64_args *, register_t *);
int linux_sys_fallocate(struct lwp *, const struct linux_sys_fallocate_args *, register_t *);
int linux_sys_faccessat(struct lwp *, const struct linux_sys_faccessat_args *, register_t *);
int sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *);
int sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *);
int sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *);
int sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *);
int linux_sys_fchmodat(struct lwp *, const struct linux_sys_fchmodat_args *, register_t *);
int linux_sys_fchownat(struct lwp *, const struct linux_sys_fchownat_args *, register_t *);
int sys___posix_fchown(struct lwp *, const struct sys___posix_fchown_args *, register_t *);
int linux_sys_openat(struct lwp *, const struct linux_sys_openat_args *, register_t *);
int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
int linux_sys_pipe2(struct lwp *, const struct linux_sys_pipe2_args *, register_t *);
int linux_sys_getdents64(struct lwp *, const struct linux_sys_getdents64_args *, register_t *);
int compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *);
int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
int sys_readv(struct lwp *, const struct sys_readv_args *, register_t *);
int sys_writev(struct lwp *, const struct sys_writev_args *, register_t *);
int linux_sys_pread(struct lwp *, const struct linux_sys_pread_args *, register_t *);
int linux_sys_pwrite(struct lwp *, const struct linux_sys_pwrite_args *, register_t *);
int linux_sys_preadv(struct lwp *, const struct linux_sys_preadv_args *, register_t *);
int linux_sys_pwritev(struct lwp *, const struct linux_sys_pwritev_args *, register_t *);
int linux_sys_pselect6(struct lwp *, const struct linux_sys_pselect6_args *, register_t *);
int linux_sys_ppoll(struct lwp *, const struct linux_sys_ppoll_args *, register_t *);
int sys_readlinkat(struct lwp *, const struct sys_readlinkat_args *, register_t *);
int linux_sys_fstatat64(struct lwp *, const struct linux_sys_fstatat64_args *, register_t *);
int linux_sys_fstat64(struct lwp *, const struct linux_sys_fstat64_args *, register_t *);
int sys_sync(struct lwp *, const void *, register_t *);
int sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *);
int linux_sys_fdatasync(struct lwp *, const struct linux_sys_fdatasync_args *, register_t *);
int linux_sys_timerfd_create(struct lwp *, const struct linux_sys_timerfd_create_args *, register_t *);
int linux_sys_timerfd_settime(struct lwp *, const struct linux_sys_timerfd_settime_args *, register_t *);
int linux_sys_timerfd_gettime(struct lwp *, const struct linux_sys_timerfd_gettime_args *, register_t *);
int linux_sys_utimensat(struct lwp *, const struct linux_sys_utimensat_args *, register_t *);
int sys_acct(struct lwp *, const struct sys_acct_args *, register_t *);
int linux_sys_personality(struct lwp *, const struct linux_sys_personality_args *, register_t *);
int linux_sys_exit(struct lwp *, const struct linux_sys_exit_args *, register_t *);
int linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *);
int linux_sys_set_tid_address(struct lwp *, const struct linux_sys_set_tid_address_args *, register_t *);
int linux_sys_futex(struct lwp *, const struct linux_sys_futex_args *, register_t *);
int sys___futex_set_robust_list(struct lwp *, const struct sys___futex_set_robust_list_args *, register_t *);
int sys___futex_get_robust_list(struct lwp *, const struct sys___futex_get_robust_list_args *, register_t *);
int linux_sys_nanosleep(struct lwp *, const struct linux_sys_nanosleep_args *, register_t *);
int compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_args *, register_t *);
int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
int linux_sys_timer_create(struct lwp *, const struct linux_sys_timer_create_args *, register_t *);
int linux_sys_timer_gettime(struct lwp *, const struct linux_sys_timer_gettime_args *, register_t *);
int sys_timer_getoverrun(struct lwp *, const struct sys_timer_getoverrun_args *, register_t *);
int linux_sys_timer_settime(struct lwp *, const struct linux_sys_timer_settime_args *, register_t *);
int sys_timer_delete(struct lwp *, const struct sys_timer_delete_args *, register_t *);
int linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *);
int linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *);
int linux_sys_clock_getres(struct lwp *, const struct linux_sys_clock_getres_args *, register_t *);
int linux_sys_clock_nanosleep(struct lwp *, const struct linux_sys_clock_nanosleep_args *, register_t *);
int linux_sys_ptrace(struct lwp *, const struct linux_sys_ptrace_args *, register_t *);
int linux_sys_sched_setparam(struct lwp *, const struct linux_sys_sched_setparam_args *, register_t *);
int linux_sys_sched_setscheduler(struct lwp *, const struct linux_sys_sched_setscheduler_args *, register_t *);
int linux_sys_sched_getscheduler(struct lwp *, const struct linux_sys_sched_getscheduler_args *, register_t *);
int linux_sys_sched_getparam(struct lwp *, const struct linux_sys_sched_getparam_args *, register_t *);
int linux_sys_sched_setaffinity(struct lwp *, const struct linux_sys_sched_setaffinity_args *, register_t *);
int linux_sys_sched_getaffinity(struct lwp *, const struct linux_sys_sched_getaffinity_args *, register_t *);
int linux_sys_sched_yield(struct lwp *, const void *, register_t *);
int linux_sys_sched_get_priority_max(struct lwp *, const struct linux_sys_sched_get_priority_max_args *, register_t *);
int linux_sys_sched_get_priority_min(struct lwp *, const struct linux_sys_sched_get_priority_min_args *, register_t *);
int linux_sys_kill(struct lwp *, const struct linux_sys_kill_args *, register_t *);
int linux_sys_tkill(struct lwp *, const struct linux_sys_tkill_args *, register_t *);
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
int linux_sys_sigaltstack(struct lwp *, const struct linux_sys_sigaltstack_args *, register_t *);
int linux_sys_rt_sigsuspend(struct lwp *, const struct linux_sys_rt_sigsuspend_args *, register_t *);
int linux_sys_rt_sigaction(struct lwp *, const struct linux_sys_rt_sigaction_args *, register_t *);
int linux_sys_rt_sigprocmask(struct lwp *, const struct linux_sys_rt_sigprocmask_args *, register_t *);
int linux_sys_rt_sigpending(struct lwp *, const struct linux_sys_rt_sigpending_args *, register_t *);
int linux_sys_rt_sigtimedwait(struct lwp *, const struct linux_sys_rt_sigtimedwait_args *, register_t *);
int linux_sys_rt_sigreturn(struct lwp *, const void *, register_t *);
int sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *);
int linux_sys_getpriority(struct lwp *, const struct linux_sys_getpriority_args *, register_t *);
int linux_sys_reboot(struct lwp *, const struct linux_sys_reboot_args *, register_t *);
int sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *);
int sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *);
int sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *);
int sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *);
int linux_sys_setresuid(struct lwp *, const struct linux_sys_setresuid_args *, register_t *);
int linux_sys_getresuid(struct lwp *, const struct linux_sys_getresuid_args *, register_t *);
int linux_sys_setresgid(struct lwp *, const struct linux_sys_setresgid_args *, register_t *);
int linux_sys_getresgid(struct lwp *, const struct linux_sys_getresgid_args *, register_t *);
int linux_sys_setfsuid(struct lwp *, const struct linux_sys_setfsuid_args *, register_t *);
int linux_sys_setfsgid(struct lwp *, const struct linux_sys_setfsgid_args *, register_t *);
int linux_sys_times(struct lwp *, const struct linux_sys_times_args *, register_t *);
int sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *);
int sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *);
int sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *);
int sys_setsid(struct lwp *, const void *, register_t *);
int sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *);
int sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *);
int linux_sys_uname(struct lwp *, const struct linux_sys_uname_args *, register_t *);
int compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *);
int linux_sys_setdomainname(struct lwp *, const struct linux_sys_setdomainname_args *, register_t *);
int linux_sys_getrlimit(struct lwp *, const struct linux_sys_getrlimit_args *, register_t *);
int linux_sys_setrlimit(struct lwp *, const struct linux_sys_setrlimit_args *, register_t *);
int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
int sys_umask(struct lwp *, const struct sys_umask_args *, register_t *);
int linux_sys_gettimeofday(struct lwp *, const struct linux_sys_gettimeofday_args *, register_t *);
int linux_sys_settimeofday(struct lwp *, const struct linux_sys_settimeofday_args *, register_t *);
int sys_getpid(struct lwp *, const void *, register_t *);
int sys_getppid(struct lwp *, const void *, register_t *);
int sys_getuid(struct lwp *, const void *, register_t *);
int sys_geteuid(struct lwp *, const void *, register_t *);
int sys_getgid(struct lwp *, const void *, register_t *);
int sys_getegid(struct lwp *, const void *, register_t *);
int linux_sys_gettid(struct lwp *, const void *, register_t *);
int linux_sys_sysinfo(struct lwp *, const struct linux_sys_sysinfo_args *, register_t *);
#ifdef SYSVMSG
int sys_msgget(struct lwp *, const struct sys_msgget_args *, register_t *);
int linux_sys_msgctl(struct lwp *, const struct linux_sys_msgctl_args *, register_t *);
int sys_msgrcv(struct lwp *, const struct sys_msgrcv_args *, register_t *);
int sys_msgsnd(struct lwp *, const struct sys_msgsnd_args *, register_t *);
#else
#endif
#ifdef SYSVSEM
int sys_semget(struct lwp *, const struct sys_semget_args *, register_t *);
int linux_sys_semctl(struct lwp *, const struct linux_sys_semctl_args *, register_t *);
int sys_semop(struct lwp *, const struct sys_semop_args *, register_t *);
#else
#endif
#ifdef SYSVSEM
int linux_sys_shmget(struct lwp *, const struct linux_sys_shmget_args *, register_t *);
int linux_sys_shmctl(struct lwp *, const struct linux_sys_shmctl_args *, register_t *);
int sys_shmat(struct lwp *, const struct sys_shmat_args *, register_t *);
int sys_shmdt(struct lwp *, const struct sys_shmdt_args *, register_t *);
#else
#endif
int linux_sys_socket(struct lwp *, const struct linux_sys_socket_args *, register_t *);
int linux_sys_socketpair(struct lwp *, const struct linux_sys_socketpair_args *, register_t *);
int linux_sys_bind(struct lwp *, const struct linux_sys_bind_args *, register_t *);
int sys_listen(struct lwp *, const struct sys_listen_args *, register_t *);
int linux_sys_accept(struct lwp *, const struct linux_sys_accept_args *, register_t *);
int linux_sys_connect(struct lwp *, const struct linux_sys_connect_args *, register_t *);
int linux_sys_getsockname(struct lwp *, const struct linux_sys_getsockname_args *, register_t *);
int linux_sys_getpeername(struct lwp *, const struct linux_sys_getpeername_args *, register_t *);
int linux_sys_sendto(struct lwp *, const struct linux_sys_sendto_args *, register_t *);
int linux_sys_recvfrom(struct lwp *, const struct linux_sys_recvfrom_args *, register_t *);
int linux_sys_setsockopt(struct lwp *, const struct linux_sys_setsockopt_args *, register_t *);
int linux_sys_getsockopt(struct lwp *, const struct linux_sys_getsockopt_args *, register_t *);
int sys_shutdown(struct lwp *, const struct sys_shutdown_args *, register_t *);
int linux_sys_sendmsg(struct lwp *, const struct linux_sys_sendmsg_args *, register_t *);
int linux_sys_recvmsg(struct lwp *, const struct linux_sys_recvmsg_args *, register_t *);
int linux_sys_brk(struct lwp *, const struct linux_sys_brk_args *, register_t *);
int sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *);
int linux_sys_mremap(struct lwp *, const struct linux_sys_mremap_args *, register_t *);
int linux_sys_clone(struct lwp *, const struct linux_sys_clone_args *, register_t *);
int sys_execve(struct lwp *, const struct sys_execve_args *, register_t *);
int linux_sys_mmap(struct lwp *, const struct linux_sys_mmap_args *, register_t *);
int linux_sys_fadvise64(struct lwp *, const struct linux_sys_fadvise64_args *, register_t *);
int linux_sys_swapon(struct lwp *, const struct linux_sys_swapon_args *, register_t *);
int linux_sys_swapoff(struct lwp *, const struct linux_sys_swapoff_args *, register_t *);
int linux_sys_mprotect(struct lwp *, const struct linux_sys_mprotect_args *, register_t *);
int sys___msync13(struct lwp *, const struct sys___msync13_args *, register_t *);
int sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *);
int sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *);
int sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *);
int sys_munlockall(struct lwp *, const void *, register_t *);
int sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *);
int sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *);
int linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *);
int linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *);
int linux_sys_wait4(struct lwp *, const struct linux_sys_wait4_args *, register_t *);
int linux_sys_prlimit64(struct lwp *, const struct linux_sys_prlimit64_args *, register_t *);
int linux_sys_sendmmsg(struct lwp *, const struct linux_sys_sendmmsg_args *, register_t *);
int sys_getrandom(struct lwp *, const struct sys_getrandom_args *, register_t *);
int linux_sys_statx(struct lwp *, const struct linux_sys_statx_args *, register_t *);
int linux_sys_nosys(struct lwp *, const void *, register_t *);
#endif /* _LINUX_SYS_SYSCALLARGS_H_ */
|