missing: sort architectures in missing_syscall.h

This commit is contained in:
Yu Watanabe 2020-12-07 13:32:04 +09:00
parent 77613416e0
commit b8bcd4c69f
1 changed files with 133 additions and 131 deletions

View File

@ -15,13 +15,11 @@
#include <asm/sgidefs.h> #include <asm/sgidefs.h>
#endif #endif
#if defined(__x86_64__) && defined(__ILP32__) #if defined(__alpha__)
# define systemd_SC_arch_bias(x) ((x) | /* __X32_SYSCALL_BIT */ 0x40000000) # define systemd_SC_arch_bias(x) (110 + (x))
#elif defined(__ia64__) #elif defined(__ia64__)
# define systemd_SC_arch_bias(x) (1024 + (x)) # define systemd_SC_arch_bias(x) (1024 + (x))
#elif defined __alpha__ #elif defined(_MIPS_SIM)
# define systemd_SC_arch_bias(x) (110 + (x))
#elif defined _MIPS_SIM
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_SC_arch_bias(x) (4000 + (x)) # define systemd_SC_arch_bias(x) (4000 + (x))
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -31,6 +29,8 @@
# else # else
# error "Unknown MIPS ABI" # error "Unknown MIPS ABI"
# endif # endif
#elif defined(__x86_64__) && defined(__ILP32__)
# define systemd_SC_arch_bias(x) ((x) | /* __X32_SYSCALL_BIT */ 0x40000000)
#else #else
# define systemd_SC_arch_bias(x) (x) # define systemd_SC_arch_bias(x) (x)
#endif #endif
@ -53,19 +53,17 @@ static inline int missing_pivot_root(const char *new_root, const char *put_old)
/* ======================================================================= */ /* ======================================================================= */
#if defined __x86_64__ #if defined(__aarch64__)
# define systemd_NR_memfd_create systemd_SC_arch_bias(319)
#elif defined __arm__
# define systemd_NR_memfd_create 385
#elif defined __aarch64__
# define systemd_NR_memfd_create 279 # define systemd_NR_memfd_create 279
#elif defined __alpha__ #elif defined(__alpha__)
# define systemd_NR_memfd_create 512 # define systemd_NR_memfd_create 512
#elif defined(__powerpc__) #elif defined(__arc__)
# define systemd_NR_memfd_create 360 # define systemd_NR_memfd_create 279
#elif defined __s390__ #elif defined(__arm__)
# define systemd_NR_memfd_create 350 # define systemd_NR_memfd_create 385
#elif defined _MIPS_SIM #elif defined(__i386__)
# define systemd_NR_memfd_create 356
#elif defined(_MIPS_SIM)
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_memfd_create systemd_SC_arch_bias(354) # define systemd_NR_memfd_create systemd_SC_arch_bias(354)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -73,10 +71,12 @@ static inline int missing_pivot_root(const char *new_root, const char *put_old)
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_memfd_create systemd_SC_arch_bias(314) # define systemd_NR_memfd_create systemd_SC_arch_bias(314)
# endif # endif
#elif defined __i386__ #elif defined(__powerpc__)
# define systemd_NR_memfd_create 356 # define systemd_NR_memfd_create 360
#elif defined __arc__ #elif defined(__s390__)
# define systemd_NR_memfd_create 279 # define systemd_NR_memfd_create 350
#elif defined(__x86_64__)
# define systemd_NR_memfd_create systemd_SC_arch_bias(319)
#else #else
# warning "memfd_create() syscall number unknown for your architecture" # warning "memfd_create() syscall number unknown for your architecture"
#endif #endif
@ -110,25 +110,21 @@ static inline int missing_memfd_create(const char *name, unsigned int flags) {
/* ======================================================================= */ /* ======================================================================= */
#if defined __x86_64__ #if defined(__aarch64__)
# define systemd_NR_getrandom systemd_SC_arch_bias(318)
#elif defined(__i386__)
# define systemd_NR_getrandom 355
#elif defined(__arm__)
# define systemd_NR_getrandom 384
#elif defined(__aarch64__)
# define systemd_NR_getrandom 278 # define systemd_NR_getrandom 278
#elif defined(__alpha__) #elif defined(__alpha__)
# define systemd_NR_getrandom 511 # define systemd_NR_getrandom 511
#elif defined(__arc__)
# define systemd_NR_getrandom 278
#elif defined(__arm__)
# define systemd_NR_getrandom 384
#elif defined(__i386__)
# define systemd_NR_getrandom 355
#elif defined(__ia64__) #elif defined(__ia64__)
# define systemd_NR_getrandom systemd_SC_arch_bias(318) # define systemd_NR_getrandom systemd_SC_arch_bias(318)
#elif defined(__m68k__) #elif defined(__m68k__)
# define systemd_NR_getrandom 352 # define systemd_NR_getrandom 352
#elif defined(__s390x__) #elif defined(_MIPS_SIM)
# define systemd_NR_getrandom 349
#elif defined(__powerpc__)
# define systemd_NR_getrandom 359
#elif defined _MIPS_SIM
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_getrandom systemd_SC_arch_bias(353) # define systemd_NR_getrandom systemd_SC_arch_bias(353)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -136,8 +132,12 @@ static inline int missing_memfd_create(const char *name, unsigned int flags) {
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_getrandom systemd_SC_arch_bias(313) # define systemd_NR_getrandom systemd_SC_arch_bias(313)
# endif # endif
#elif defined(__arc__) #elif defined(__powerpc__)
# define systemd_NR_getrandom 278 # define systemd_NR_getrandom 359
#elif defined(__s390x__)
# define systemd_NR_getrandom 349
#elif defined(__x86_64__)
# define systemd_NR_getrandom systemd_SC_arch_bias(318)
#else #else
# warning "getrandom() syscall number unknown for your architecture" # warning "getrandom() syscall number unknown for your architecture"
#endif #endif
@ -186,23 +186,17 @@ static inline pid_t missing_gettid(void) {
/* ======================================================================= */ /* ======================================================================= */
#if defined(__x86_64__) #if defined(__aarch64__)
# define systemd_NR_name_to_handle_at systemd_SC_arch_bias(303)
#elif defined(__i386__)
# define systemd_NR_name_to_handle_at 341
#elif defined(__arm__)
# define systemd_NR_name_to_handle_at 370
#elif defined __aarch64__
# define systemd_NR_name_to_handle_at 264 # define systemd_NR_name_to_handle_at 264
#elif defined(__alpha__) #elif defined(__alpha__)
# define systemd_NR_name_to_handle_at 497 # define systemd_NR_name_to_handle_at 497
#elif defined(__powerpc__)
# define systemd_NR_name_to_handle_at 345
#elif defined __s390__ || defined __s390x__
# define systemd_NR_name_to_handle_at 335
#elif defined(__arc__) #elif defined(__arc__)
# define systemd_NR_name_to_handle_at 264 # define systemd_NR_name_to_handle_at 264
#elif defined _MIPS_SIM #elif defined(__arm__)
# define systemd_NR_name_to_handle_at 370
#elif defined(__i386__)
# define systemd_NR_name_to_handle_at 341
#elif defined(_MIPS_SIM)
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_name_to_handle_at systemd_SC_arch_bias(339) # define systemd_NR_name_to_handle_at systemd_SC_arch_bias(339)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -210,6 +204,12 @@ static inline pid_t missing_gettid(void) {
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_name_to_handle_at systemd_SC_arch_bias(298) # define systemd_NR_name_to_handle_at systemd_SC_arch_bias(298)
# endif # endif
#elif defined(__powerpc__)
# define systemd_NR_name_to_handle_at 345
#elif defined(__s390__) || defined(__s390x__)
# define systemd_NR_name_to_handle_at 335
#elif defined(__x86_64__)
# define systemd_NR_name_to_handle_at systemd_SC_arch_bias(303)
#else #else
# warning "name_to_handle_at number is not defined" # warning "name_to_handle_at number is not defined"
#endif #endif
@ -249,23 +249,17 @@ static inline int missing_name_to_handle_at(int fd, const char *name, struct fil
/* ======================================================================= */ /* ======================================================================= */
#if defined __aarch64__ #if defined(__aarch64__)
# define systemd_NR_setns 268 # define systemd_NR_setns 268
#elif defined __arm__ #elif defined(__alpha__)
# define systemd_NR_setns 375
#elif defined __alpha__
# define systemd_NR_setns 501 # define systemd_NR_setns 501
#elif defined(__x86_64__)
# define systemd_NR_setns systemd_SC_arch_bias(308)
#elif defined(__i386__)
# define systemd_NR_setns 346
#elif defined(__powerpc__)
# define systemd_NR_setns 350
#elif defined __s390__ || defined __s390x__
# define systemd_NR_setns 339
#elif defined(__arc__) #elif defined(__arc__)
# define systemd_NR_setns 268 # define systemd_NR_setns 268
#elif defined _MIPS_SIM #elif defined(__arm__)
# define systemd_NR_setns 375
#elif defined(__i386__)
# define systemd_NR_setns 346
#elif defined(_MIPS_SIM)
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_setns systemd_SC_arch_bias(344) # define systemd_NR_setns systemd_SC_arch_bias(344)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -273,6 +267,12 @@ static inline int missing_name_to_handle_at(int fd, const char *name, struct fil
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_setns systemd_SC_arch_bias(303) # define systemd_NR_setns systemd_SC_arch_bias(303)
# endif # endif
#elif defined(__powerpc__)
# define systemd_NR_setns 350
#elif defined(__s390__) || defined(__s390x__)
# define systemd_NR_setns 339
#elif defined(__x86_64__)
# define systemd_NR_setns systemd_SC_arch_bias(308)
#else #else
# warning "setns() syscall number unknown for your architecture" # warning "setns() syscall number unknown for your architecture"
#endif #endif
@ -316,15 +316,17 @@ static inline pid_t raw_getpid(void) {
/* ======================================================================= */ /* ======================================================================= */
#if defined __x86_64__ #if defined(__aarch64__)
# define systemd_NR_renameat2 systemd_SC_arch_bias(316)
#elif defined __arm__
# define systemd_NR_renameat2 382
#elif defined __aarch64__
# define systemd_NR_renameat2 276 # define systemd_NR_renameat2 276
#elif defined __alpha__ #elif defined(__alpha__)
# define systemd_NR_renameat2 510 # define systemd_NR_renameat2 510
#elif defined _MIPS_SIM #elif defined(__arc__)
# define systemd_NR_renameat2 276
#elif defined(__arm__)
# define systemd_NR_renameat2 382
#elif defined(__i386__)
# define systemd_NR_renameat2 353
#elif defined(_MIPS_SIM)
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_renameat2 systemd_SC_arch_bias(351) # define systemd_NR_renameat2 systemd_SC_arch_bias(351)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -332,14 +334,12 @@ static inline pid_t raw_getpid(void) {
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_renameat2 systemd_SC_arch_bias(311) # define systemd_NR_renameat2 systemd_SC_arch_bias(311)
# endif # endif
#elif defined __i386__ #elif defined(__powerpc64__)
# define systemd_NR_renameat2 353
#elif defined __powerpc64__
# define systemd_NR_renameat2 357 # define systemd_NR_renameat2 357
#elif defined __s390__ || defined __s390x__ #elif defined(__s390__) || defined(__s390x__)
# define systemd_NR_renameat2 347 # define systemd_NR_renameat2 347
#elif defined __arc__ #elif defined(__x86_64__)
# define systemd_NR_renameat2 276 # define systemd_NR_renameat2 systemd_SC_arch_bias(316)
#else #else
# warning "renameat2() syscall number unknown for your architecture" # warning "renameat2() syscall number unknown for your architecture"
#endif #endif
@ -425,23 +425,17 @@ static inline key_serial_t missing_request_key(const char *type, const char *des
/* ======================================================================= */ /* ======================================================================= */
#if defined(__x86_64__) #if defined(__aarch64__)
# define systemd_NR_copy_file_range systemd_SC_arch_bias(326) # define systemd_NR_copy_file_range 285
#elif defined(__alpha__)
# define systemd_NR_copy_file_range 519
#elif defined(__arc__)
# define systemd_NR_copy_file_range 285
#elif defined(__arm__)
# define systemd_NR_copy_file_range 391
#elif defined(__i386__) #elif defined(__i386__)
# define systemd_NR_copy_file_range 377 # define systemd_NR_copy_file_range 377
#elif defined __s390__ #elif defined(_MIPS_SIM)
# define systemd_NR_copy_file_range 375
#elif defined __arm__
# define systemd_NR_copy_file_range 391
#elif defined __aarch64__
# define systemd_NR_copy_file_range 285
#elif defined __alpha__
# define systemd_NR_copy_file_range 519
#elif defined __powerpc__
# define systemd_NR_copy_file_range 379
#elif defined __arc__
# define systemd_NR_copy_file_range 285
#elif defined _MIPS_SIM
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_copy_file_range systemd_SC_arch_bias(360) # define systemd_NR_copy_file_range systemd_SC_arch_bias(360)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -449,6 +443,12 @@ static inline key_serial_t missing_request_key(const char *type, const char *des
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_copy_file_range systemd_SC_arch_bias(320) # define systemd_NR_copy_file_range systemd_SC_arch_bias(320)
# endif # endif
#elif defined(__powerpc__)
# define systemd_NR_copy_file_range 379
#elif defined(__s390__)
# define systemd_NR_copy_file_range 375
#elif defined(__x86_64__)
# define systemd_NR_copy_file_range systemd_SC_arch_bias(326)
#else #else
# warning "copy_file_range() syscall number unknown for your architecture" # warning "copy_file_range() syscall number unknown for your architecture"
#endif #endif
@ -485,25 +485,15 @@ static inline ssize_t missing_copy_file_range(int fd_in, loff_t *off_in,
/* ======================================================================= */ /* ======================================================================= */
#if defined __i386__ #if defined(__aarch64__)
# define systemd_NR_bpf 357
#elif defined __x86_64__
# define systemd_NR_bpf systemd_SC_arch_bias(321)
#elif defined __aarch64__
# define systemd_NR_bpf 280 # define systemd_NR_bpf 280
#elif defined __arm__ #elif defined(__alpha__)
# define systemd_NR_bpf 386
#elif defined __alpha__
# define systemd_NR_bpf 515 # define systemd_NR_bpf 515
#elif defined(__powerpc__) #elif defined(__arm__)
# define systemd_NR_bpf 361 # define systemd_NR_bpf 386
#elif defined __sparc__ #elif defined(__i386__)
# define systemd_NR_bpf 349 # define systemd_NR_bpf 357
#elif defined __s390__ #elif defined(_MIPS_SIM)
# define systemd_NR_bpf 351
#elif defined __tilegx__
# define systemd_NR_bpf 280
#elif defined _MIPS_SIM
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_bpf systemd_SC_arch_bias(355) # define systemd_NR_bpf systemd_SC_arch_bias(355)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -511,6 +501,16 @@ static inline ssize_t missing_copy_file_range(int fd_in, loff_t *off_in,
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_bpf systemd_SC_arch_bias(315) # define systemd_NR_bpf systemd_SC_arch_bias(315)
# endif # endif
#elif defined(__powerpc__)
# define systemd_NR_bpf 361
#elif defined(__s390__)
# define systemd_NR_bpf 351
#elif defined(__sparc__)
# define systemd_NR_bpf 349
#elif defined(__tilegx__)
# define systemd_NR_bpf 280
#elif defined(__x86_64__)
# define systemd_NR_bpf systemd_SC_arch_bias(321)
#else #else
# warning "bpf() syscall number unknown for your architecture" # warning "bpf() syscall number unknown for your architecture"
#endif #endif
@ -547,21 +547,15 @@ static inline int missing_bpf(int cmd, union bpf_attr *attr, size_t size) {
/* ======================================================================= */ /* ======================================================================= */
#ifndef __IGNORE_pkey_mprotect #ifndef __IGNORE_pkey_mprotect
# if defined __i386__ # if defined(__aarch64__)
# define systemd_NR_pkey_mprotect 380
# elif defined __x86_64__
# define systemd_NR_pkey_mprotect systemd_SC_arch_bias(329)
# elif defined __aarch64__
# define systemd_NR_pkey_mprotect 288 # define systemd_NR_pkey_mprotect 288
# elif defined __arm__ # elif defined(__alpha__)
# define systemd_NR_pkey_mprotect 394
# elif defined __alpha__
# define systemd_NR_pkey_mprotect 524 # define systemd_NR_pkey_mprotect 524
# elif defined __powerpc__ # elif defined(__arm__)
# define systemd_NR_pkey_mprotect 386 # define systemd_NR_pkey_mprotect 394
# elif defined __s390__ # elif defined(__i386__)
# define systemd_NR_pkey_mprotect 384 # define systemd_NR_pkey_mprotect 380
# elif defined _MIPS_SIM # elif defined(_MIPS_SIM)
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_pkey_mprotect systemd_SC_arch_bias(363) # define systemd_NR_pkey_mprotect systemd_SC_arch_bias(363)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -569,6 +563,12 @@ static inline int missing_bpf(int cmd, union bpf_attr *attr, size_t size) {
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_pkey_mprotect systemd_SC_arch_bias(323) # define systemd_NR_pkey_mprotect systemd_SC_arch_bias(323)
# endif # endif
# elif defined(__powerpc__)
# define systemd_NR_pkey_mprotect 386
# elif defined(__s390__)
# define systemd_NR_pkey_mprotect 384
# elif defined(__x86_64__)
# define systemd_NR_pkey_mprotect systemd_SC_arch_bias(329)
# else # else
# warning "pkey_mprotect() syscall number unknown for your architecture" # warning "pkey_mprotect() syscall number unknown for your architecture"
# endif # endif
@ -590,21 +590,15 @@ assert_cc(__NR_pkey_mprotect == systemd_NR_pkey_mprotect);
/* ======================================================================= */ /* ======================================================================= */
#if defined __aarch64__ #if defined(__aarch64__)
# define systemd_NR_statx 291 # define systemd_NR_statx 291
#elif defined __arm__ #elif defined(__alpha__)
# define systemd_NR_statx 397
#elif defined __alpha__
# define systemd_NR_statx 522 # define systemd_NR_statx 522
#elif defined __i386__ || defined __powerpc64__ #elif defined(__arm__)
# define systemd_NR_statx 397
#elif defined(__i386__)
# define systemd_NR_statx 383 # define systemd_NR_statx 383
#elif defined __s390__ || defined __s390x__ #elif defined(_MIPS_SIM)
# define systemd_NR_statx 379
#elif defined __sparc__
# define systemd_NR_statx 360
#elif defined __x86_64__
# define systemd_NR_statx systemd_SC_arch_bias(332)
#elif defined _MIPS_SIM
# if _MIPS_SIM == _MIPS_SIM_ABI32 # if _MIPS_SIM == _MIPS_SIM_ABI32
# define systemd_NR_statx systemd_SC_arch_bias(366) # define systemd_NR_statx systemd_SC_arch_bias(366)
# elif _MIPS_SIM == _MIPS_SIM_NABI32 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@ -612,6 +606,14 @@ assert_cc(__NR_pkey_mprotect == systemd_NR_pkey_mprotect);
# elif _MIPS_SIM == _MIPS_SIM_ABI64 # elif _MIPS_SIM == _MIPS_SIM_ABI64
# define systemd_NR_statx systemd_SC_arch_bias(326) # define systemd_NR_statx systemd_SC_arch_bias(326)
# endif # endif
#elif defined(__powerpc64__)
# define systemd_NR_statx 383
#elif defined(__s390__) || defined(__s390x__)
# define systemd_NR_statx 379
#elif defined(__sparc__)
# define systemd_NR_statx 360
#elif defined(__x86_64__)
# define systemd_NR_statx systemd_SC_arch_bias(332)
#else #else
# warning "statx() syscall number unknown for your architecture" # warning "statx() syscall number unknown for your architecture"
#endif #endif
@ -766,7 +768,7 @@ static inline int missing_rt_sigqueueinfo(pid_t tgid, int sig, siginfo_t *info)
#endif #endif
/* ======================================================================= */ /* ======================================================================= */
#if !HAVE_EXECVEAT #if !HAVE_EXECVEAT
static inline int missing_execveat(int dirfd, const char *pathname, static inline int missing_execveat(int dirfd, const char *pathname,
char *const argv[], char *const envp[], char *const argv[], char *const envp[],
@ -778,7 +780,7 @@ static inline int missing_execveat(int dirfd, const char *pathname,
return -1; return -1;
# endif # endif
} }
# undef AT_EMPTY_PATH # undef AT_EMPTY_PATH
# define AT_EMPTY_PATH 0x1000 # define AT_EMPTY_PATH 0x1000
# define execveat missing_execveat # define execveat missing_execveat