syscall_nr.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. #ifndef LINUX_USER_OPENRISC_SYSCALL_NR_H
  2. #define LINUX_USER_OPENRISC_SYSCALL_NR_H
  3. #define TARGET_NR_io_setup 0
  4. #define TARGET_NR_io_destroy 1
  5. #define TARGET_NR_io_submit 2
  6. #define TARGET_NR_io_cancel 3
  7. #define TARGET_NR_io_getevents 4
  8. /* fs/xattr.c */
  9. #define TARGET_NR_setxattr 5
  10. #define TARGET_NR_lsetxattr 6
  11. #define TARGET_NR_fsetxattr 7
  12. #define TARGET_NR_getxattr 8
  13. #define TARGET_NR_lgetxattr 9
  14. #define TARGET_NR_fgetxattr 10
  15. #define TARGET_NR_listxattr 11
  16. #define TARGET_NR_llistxattr 12
  17. #define TARGET_NR_flistxattr 13
  18. #define TARGET_NR_removexattr 14
  19. #define TARGET_NR_lremovexattr 15
  20. #define TARGET_NR_fremovexattr 16
  21. /* fs/dcache.c */
  22. #define TARGET_NR_getcwd 17
  23. /* fs/cookies.c */
  24. #define TARGET_NR_lookup_dcookie 18
  25. /* fs/eventfd.c */
  26. #define TARGET_NR_eventfd2 19
  27. /* fs/eventpoll.c */
  28. #define TARGET_NR_epoll_create1 20
  29. #define TARGET_NR_epoll_ctl 21
  30. #define TARGET_NR_epoll_pwait 22
  31. /* fs/fcntl.c */
  32. #define TARGET_NR_dup 23
  33. #define TARGET_NR_dup3 24
  34. #define TARGET_NR_3264_fcntl 25
  35. /* fs/inotify_user.c */
  36. #define TARGET_NR_inotify_init1 26
  37. #define TARGET_NR_inotify_add_watch 27
  38. #define TARGET_NR_inotify_rm_watch 28
  39. /* fs/ioctl.c */
  40. #define TARGET_NR_ioctl 29
  41. /* fs/ioprio.c */
  42. #define TARGET_NR_ioprio_set 30
  43. #define TARGET_NR_ioprio_get 31
  44. /* fs/locks.c */
  45. #define TARGET_NR_flock 32
  46. /* fs/namei.c */
  47. #define TARGET_NR_mknodat 33
  48. #define TARGET_NR_mkdirat 34
  49. #define TARGET_NR_unlinkat 35
  50. #define TARGET_NR_symlinkat 36
  51. #define TARGET_NR_linkat 37
  52. #define TARGET_NR_renameat 38
  53. /* fs/namespace.c */
  54. #define TARGET_NR_umount2 39
  55. #define TARGET_NR_mount 40
  56. #define TARGET_NR_pivot_root 41
  57. /* fs/nfsctl.c */
  58. #define TARGET_NR_nfsservctl 42
  59. /* fs/open.c */
  60. #define TARGET_NR_3264_statfs 43
  61. #define TARGET_NR_3264_fstatfs 44
  62. #define TARGET_NR_3264_truncate 45
  63. #define TARGET_NR_3264_ftruncate 46
  64. #define TARGET_NR_fallocate 47
  65. #define TARGET_NR_faccessat 48
  66. #define TARGET_NR_chdir 49
  67. #define TARGET_NR_fchdir 50
  68. #define TARGET_NR_chroot 51
  69. #define TARGET_NR_fchmod 52
  70. #define TARGET_NR_fchmodat 53
  71. #define TARGET_NR_fchownat 54
  72. #define TARGET_NR_fchown 55
  73. #define TARGET_NR_openat 56
  74. #define TARGET_NR_close 57
  75. #define TARGET_NR_vhangup 58
  76. /* fs/pipe.c */
  77. #define TARGET_NR_pipe2 59
  78. /* fs/quota.c */
  79. #define TARGET_NR_quotactl 60
  80. /* fs/readdir.c */
  81. #define TARGET_NR_getdents64 61
  82. /* fs/read_write.c */
  83. #define TARGET_NR_3264_lseek 62
  84. #define TARGET_NR_read 63
  85. #define TARGET_NR_write 64
  86. #define TARGET_NR_readv 65
  87. #define TARGET_NR_writev 66
  88. #define TARGET_NR_pread64 67
  89. #define TARGET_NR_pwrite64 68
  90. #define TARGET_NR_preadv 69
  91. #define TARGET_NR_pwritev 70
  92. /* fs/sendfile.c */
  93. #define TARGET_NR_3264_sendfile 71
  94. /* fs/select.c */
  95. #define TARGET_NR_pselect6 72
  96. #define TARGET_NR_ppoll 73
  97. /* fs/signalfd.c */
  98. #define TARGET_NR_signalfd4 74
  99. /* fs/splice.c */
  100. #define TARGET_NR_vmsplice 75
  101. #define TARGET_NR_splice 76
  102. #define TARGET_NR_tee 77
  103. /* fs/stat.c */
  104. #define TARGET_NR_readlinkat 78
  105. #define TARGET_NR_3264_fstatat 79
  106. #define TARGET_NR_3264_fstat 80
  107. /* fs/sync.c */
  108. #define TARGET_NR_sync 81
  109. #define TARGET_NR_fsync 82
  110. #define TARGET_NR_fdatasync 83
  111. #ifdef __ARCH_WANT_SYNC_FILE_RANGE2
  112. #define TARGET_NR_sync_file_range2 84
  113. #else
  114. #define TARGET_NR_sync_file_range 84
  115. #endif
  116. /* fs/timerfd.c */
  117. #define TARGET_NR_timerfd_create 85
  118. #define TARGET_NR_timerfd_settime 86
  119. #define TARGET_NR_timerfd_gettime 87
  120. /* fs/utimes.c */
  121. #define TARGET_NR_utimensat 88
  122. /* kernel/acct.c */
  123. #define TARGET_NR_acct 89
  124. /* kernel/capability.c */
  125. #define TARGET_NR_capget 90
  126. #define TARGET_NR_capset 91
  127. /* kernel/exec_domain.c */
  128. #define TARGET_NR_personality 92
  129. /* kernel/exit.c */
  130. #define TARGET_NR_exit 93
  131. #define TARGET_NR_exit_group 94
  132. #define TARGET_NR_waitid 95
  133. /* kernel/fork.c */
  134. #define TARGET_NR_set_tid_address 96
  135. #define TARGET_NR_unshare 97
  136. /* kernel/futex.c */
  137. #define TARGET_NR_futex 98
  138. #define TARGET_NR_set_robust_list 99
  139. #define TARGET_NR_get_robust_list 100
  140. /* kernel/hrtimer.c */
  141. #define TARGET_NR_nanosleep 101
  142. /* kernel/itimer.c */
  143. #define TARGET_NR_getitimer 102
  144. #define TARGET_NR_setitimer 103
  145. /* kernel/kexec.c */
  146. #define TARGET_NR_kexec_load 104
  147. /* kernel/module.c */
  148. #define TARGET_NR_init_module 105
  149. #define TARGET_NR_delete_module 106
  150. /* kernel/posix-timers.c */
  151. #define TARGET_NR_timer_create 107
  152. #define TARGET_NR_timer_gettime 108
  153. #define TARGET_NR_timer_getoverrun 109
  154. #define TARGET_NR_timer_settime 110
  155. #define TARGET_NR_timer_delete 111
  156. #define TARGET_NR_clock_settime 112
  157. #define TARGET_NR_clock_gettime 113
  158. #define TARGET_NR_clock_getres 114
  159. #define TARGET_NR_clock_nanosleep 115
  160. /* kernel/printk.c */
  161. #define TARGET_NR_syslog 116
  162. /* kernel/ptrace.c */
  163. #define TARGET_NR_ptrace 117
  164. /* kernel/sched.c */
  165. #define TARGET_NR_sched_setparam 118
  166. #define TARGET_NR_sched_setscheduler 119
  167. #define TARGET_NR_sched_getscheduler 120
  168. #define TARGET_NR_sched_getparam 121
  169. #define TARGET_NR_sched_setaffinity 122
  170. #define TARGET_NR_sched_getaffinity 123
  171. #define TARGET_NR_sched_yield 124
  172. #define TARGET_NR_sched_get_priority_max 125
  173. #define TARGET_NR_sched_get_priority_min 126
  174. #define TARGET_NR_sched_rr_get_interval 127
  175. /* kernel/signal.c */
  176. #define TARGET_NR_restart_syscall 128
  177. #define TARGET_NR_kill 129
  178. #define TARGET_NR_tkill 130
  179. #define TARGET_NR_tgkill 131
  180. #define TARGET_NR_sigaltstack 132
  181. #define TARGET_NR_rt_sigsuspend 133
  182. #define TARGET_NR_rt_sigaction 134
  183. #define TARGET_NR_rt_sigprocmask 135
  184. #define TARGET_NR_rt_sigpending 136
  185. #define TARGET_NR_rt_sigtimedwait 137
  186. #define TARGET_NR_rt_sigqueueinfo 138
  187. #define TARGET_NR_rt_sigreturn 139
  188. /* kernel/sys.c */
  189. #define TARGET_NR_setpriority 140
  190. #define TARGET_NR_getpriority 141
  191. #define TARGET_NR_reboot 142
  192. #define TARGET_NR_setregid 143
  193. #define TARGET_NR_setgid 144
  194. #define TARGET_NR_setreuid 145
  195. #define TARGET_NR_setuid 146
  196. #define TARGET_NR_setresuid 147
  197. #define TARGET_NR_getresuid 148
  198. #define TARGET_NR_setresgid 149
  199. #define TARGET_NR_getresgid 150
  200. #define TARGET_NR_setfsuid 151
  201. #define TARGET_NR_setfsgid 152
  202. #define TARGET_NR_times 153
  203. #define TARGET_NR_setpgid 154
  204. #define TARGET_NR_getpgid 155
  205. #define TARGET_NR_getsid 156
  206. #define TARGET_NR_setsid 157
  207. #define TARGET_NR_getgroups 158
  208. #define TARGET_NR_setgroups 159
  209. #define TARGET_NR_uname 160
  210. #define TARGET_NR_sethostname 161
  211. #define TARGET_NR_setdomainname 162
  212. #define TARGET_NR_getrlimit 163
  213. #define TARGET_NR_setrlimit 164
  214. #define TARGET_NR_getrusage 165
  215. #define TARGET_NR_umask 166
  216. #define TARGET_NR_prctl 167
  217. #define TARGET_NR_getcpu 168
  218. /* kernel/time.c */
  219. #define TARGET_NR_gettimeofday 169
  220. #define TARGET_NR_settimeofday 170
  221. #define TARGET_NR_adjtimex 171
  222. /* kernel/timer.c */
  223. #define TARGET_NR_getpid 172
  224. #define TARGET_NR_getppid 173
  225. #define TARGET_NR_getuid 174
  226. #define TARGET_NR_geteuid 175
  227. #define TARGET_NR_getgid 176
  228. #define TARGET_NR_getegid 177
  229. #define TARGET_NR_gettid 178
  230. #define TARGET_NR_sysinfo 179
  231. /* ipc/mqueue.c */
  232. #define TARGET_NR_mq_open 180
  233. #define TARGET_NR_mq_unlink 181
  234. #define TARGET_NR_mq_timedsend 182
  235. #define TARGET_NR_mq_timedreceive 183
  236. #define TARGET_NR_mq_notify 184
  237. #define TARGET_NR_mq_getsetattr 185
  238. /* ipc/msg.c */
  239. #define TARGET_NR_msgget 186
  240. #define TARGET_NR_msgctl 187
  241. #define TARGET_NR_msgrcv 188
  242. #define TARGET_NR_msgsnd 189
  243. /* ipc/sem.c */
  244. #define TARGET_NR_semget 190
  245. #define TARGET_NR_semctl 191
  246. #define TARGET_NR_semtimedop 192
  247. #define TARGET_NR_semop 193
  248. /* ipc/shm.c */
  249. #define TARGET_NR_shmget 194
  250. #define TARGET_NR_shmctl 195
  251. #define TARGET_NR_shmat 196
  252. #define TARGET_NR_shmdt 197
  253. /* net/socket.c */
  254. #define TARGET_NR_socket 198
  255. #define TARGET_NR_socketpair 199
  256. #define TARGET_NR_bind 200
  257. #define TARGET_NR_listen 201
  258. #define TARGET_NR_accept 202
  259. #define TARGET_NR_connect 203
  260. #define TARGET_NR_getsockname 204
  261. #define TARGET_NR_getpeername 205
  262. #define TARGET_NR_sendto 206
  263. #define TARGET_NR_recvfrom 207
  264. #define TARGET_NR_setsockopt 208
  265. #define TARGET_NR_getsockopt 209
  266. #define TARGET_NR_shutdown 210
  267. #define TARGET_NR_sendmsg 211
  268. #define TARGET_NR_recvmsg 212
  269. /* mm/filemap.c */
  270. #define TARGET_NR_readahead 213
  271. /* mm/nommu.c, also with MMU */
  272. #define TARGET_NR_brk 214
  273. #define TARGET_NR_munmap 215
  274. #define TARGET_NR_mremap 216
  275. /* security/keys/keyctl.c */
  276. #define TARGET_NR_add_key 217
  277. #define TARGET_NR_request_key 218
  278. #define TARGET_NR_keyctl 219
  279. /* arch/example/kernel/sys_example.c */
  280. #define TARGET_NR_clone 220
  281. #define TARGET_NR_execve 221
  282. #define TARGET_NR_3264_mmap 222
  283. /* mm/fadvise.c */
  284. #define TARGET_NR_3264_fadvise64 223
  285. /* mm/, CONFIG_MMU only */
  286. #ifndef __ARCH_NOMMU
  287. #define TARGET_NR_swapon 224
  288. #define TARGET_NR_swapoff 225
  289. #define TARGET_NR_mprotect 226
  290. #define TARGET_NR_msync 227
  291. #define TARGET_NR_mlock 228
  292. #define TARGET_NR_munlock 229
  293. #define TARGET_NR_mlockall 230
  294. #define TARGET_NR_munlockall 231
  295. #define TARGET_NR_mincore 232
  296. #define TARGET_NR_madvise 233
  297. #define TARGET_NR_remap_file_pages 234
  298. #define TARGET_NR_mbind 235
  299. #define TARGET_NR_get_mempolicy 236
  300. #define TARGET_NR_set_mempolicy 237
  301. #define TARGET_NR_migrate_pages 238
  302. #define TARGET_NR_move_pages 239
  303. #endif
  304. #define TARGET_NR_rt_tgsigqueueinfo 240
  305. #define TARGET_NR_perf_event_open 241
  306. #define TARGET_NR_accept4 242
  307. #define TARGET_NR_recvmmsg 243
  308. /*
  309. * Architectures may provide up to 16 syscalls of their own
  310. * starting with this value.
  311. */
  312. #define TARGET_NR_arch_specific_syscall 244
  313. #define TARGET_NR_wait4 260
  314. #define TARGET_NR_prlimit64 261
  315. #define TARGET_NR_fanotify_init 262
  316. #define TARGET_NR_fanotify_mark 263
  317. #define TARGET_NR_name_to_handle_at 264
  318. #define TARGET_NR_open_by_handle_at 265
  319. #define TARGET_NR_clock_adjtime 266
  320. #define TARGET_NR_syncfs 267
  321. #define TARGET_NR_setns 268
  322. #define TARGET_NR_sendmmsg 269
  323. #define TARGET_NR_process_vm_readv 270
  324. #define TARGET_NR_process_vm_writev 271
  325. #define TARGET_NR_kcmp 272
  326. #define TARGET_NR_finit_module 273
  327. #define TARGET_NR_sched_setattr 274
  328. #define TARGET_NR_sched_getattr 275
  329. #define TARGET_NR_renameat2 276
  330. #define TARGET_NR_seccomp 277
  331. #define TARGET_NR_getrandom 278
  332. #define TARGET_NR_memfd_create 279
  333. #define TARGET_NR_bpf 280
  334. #define TARGET_NR_execveat 281
  335. #define TARGET_NR_userfaultfd 282
  336. #define TARGET_NR_membarrier 283
  337. #define TARGET_NR_mlock2 284
  338. #define TARGET_NR_copy_file_range 285
  339. /*
  340. * All syscalls below here should go away really,
  341. * these are provided for both review and as a porting
  342. * help for the C library version.
  343. *
  344. * Last chance: are any of these important enough to
  345. * enable by default?
  346. */
  347. #define TARGET_NR_open 1024
  348. #define TARGET_NR_link 1025
  349. #define TARGET_NR_unlink 1026
  350. #define TARGET_NR_mknod 1027
  351. #define TARGET_NR_chmod 1028
  352. #define TARGET_NR_chown 1029
  353. #define TARGET_NR_mkdir 1030
  354. #define TARGET_NR_rmdir 1031
  355. #define TARGET_NR_lchown 1032
  356. #define TARGET_NR_access 1033
  357. #define TARGET_NR_rename 1034
  358. #define TARGET_NR_readlink 1035
  359. #define TARGET_NR_symlink 1036
  360. #define TARGET_NR_utimes 1037
  361. #define TARGET_NR_3264_stat 1038
  362. #define TARGET_NR_3264_lstat 1039
  363. #define TARGET_NR_pipe 1040
  364. #define TARGET_NR_dup2 1041
  365. #define TARGET_NR_epoll_create 1042
  366. #define TARGET_NR_inotify_init 1043
  367. #define TARGET_NR_eventfd 1044
  368. #define TARGET_NR_signalfd 1045
  369. #define TARGET_NR_sendfile 1046
  370. #define TARGET_NR_ftruncate 1047
  371. #define TARGET_NR_truncate 1048
  372. #define TARGET_NR_stat 1049
  373. #define TARGET_NR_lstat 1050
  374. #define TARGET_NR_fstat 1051
  375. #define TARGET_NR_fcntl 1052
  376. #define TARGET_NR_fadvise64 1053
  377. #define __ARCH_WANT_SYS_FADVISE64
  378. #define TARGET_NR_newfstatat 1054
  379. #define __ARCH_WANT_SYS_NEWFSTATAT
  380. #define TARGET_NR_fstatfs 1055
  381. #define TARGET_NR_statfs 1056
  382. #define TARGET_NR_lseek 1057
  383. #define TARGET_NR_mmap 1058
  384. #define TARGET_NR_alarm 1059
  385. #define __ARCH_WANT_SYS_ALARM
  386. #define TARGET_NR_getpgrp 1060
  387. #define __ARCH_WANT_SYS_GETPGRP
  388. #define TARGET_NR_pause 1061
  389. #define __ARCH_WANT_SYS_PAUSE
  390. #define TARGET_NR_time 1062
  391. #define __ARCH_WANT_SYS_TIME
  392. #define __ARCH_WANT_COMPAT_SYS_TIME
  393. #define TARGET_NR_utime 1063
  394. #define __ARCH_WANT_SYS_UTIME
  395. #define TARGET_NR_creat 1064
  396. #define TARGET_NR_getdents 1065
  397. #define __ARCH_WANT_SYS_GETDENTS
  398. #define TARGET_NR_futimesat 1066
  399. #define TARGET_NR_poll 1068
  400. #define TARGET_NR_epoll_wait 1069
  401. #define TARGET_NR_ustat 1070
  402. #define TARGET_NR_vfork 1071
  403. #define TARGET_NR_oldwait4 1072
  404. #define TARGET_NR_recv 1073
  405. #define TARGET_NR_send 1074
  406. #define TARGET_NR_bdflush 1075
  407. #define TARGET_NR_umount 1076
  408. #define __ARCH_WANT_SYS_OLDUMOUNT
  409. #define TARGET_NR_uselib 1077
  410. #define TARGET_NR__sysctl 1078
  411. #define TARGET_NR_fork 1079
  412. /*
  413. * 32 bit systems traditionally used different
  414. * syscalls for off_t and loff_t arguments, while
  415. * 64 bit systems only need the off_t version.
  416. * For new 32 bit platforms, there is no need to
  417. * implement the old 32 bit off_t syscalls, so
  418. * they take different names.
  419. * Here we map the numbers so that both versions
  420. * use the same syscall table layout.
  421. */
  422. #define TARGET_NR_fcntl64 TARGET_NR_3264_fcntl
  423. #define TARGET_NR_statfs64 TARGET_NR_3264_statfs
  424. #define TARGET_NR_fstatfs64 TARGET_NR_3264_fstatfs
  425. #define TARGET_NR_truncate64 TARGET_NR_3264_truncate
  426. #define TARGET_NR_ftruncate64 TARGET_NR_3264_ftruncate
  427. #define TARGET_NR_llseek TARGET_NR_3264_lseek
  428. #define TARGET_NR_sendfile64 TARGET_NR_3264_sendfile
  429. #define TARGET_NR_fstatat64 TARGET_NR_3264_fstatat
  430. #define TARGET_NR_fstat64 TARGET_NR_3264_fstat
  431. #define TARGET_NR_mmap2 TARGET_NR_3264_mmap
  432. #define TARGET_NR_fadvise64_64 TARGET_NR_3264_fadvise64
  433. #ifdef TARGET_NR_3264_stat
  434. #define TARGET_NR_stat64 TARGET_NR_3264_stat
  435. #define TARGET_NR_lstat64 TARGET_NR_3264_lstat
  436. #endif
  437. #endif