1 use crate::off64_t; 2 use crate::prelude::*; 3 4 pub type wchar_t = i32; 5 pub type greg_t = i64; 6 pub type __u64 = c_ulonglong; 7 pub type __s64 = c_longlong; 8 9 s! { 10 pub struct stat { 11 pub st_dev: crate::dev_t, 12 pub st_ino: crate::ino_t, 13 pub st_nlink: c_ulong, 14 pub st_mode: c_uint, 15 pub st_uid: crate::uid_t, 16 pub st_gid: crate::gid_t, 17 pub st_rdev: crate::dev_t, 18 pub st_size: off64_t, 19 pub st_blksize: c_long, 20 pub st_blocks: c_long, 21 pub st_atime: c_long, 22 pub st_atime_nsec: c_long, 23 pub st_mtime: c_long, 24 pub st_mtime_nsec: c_long, 25 pub st_ctime: c_long, 26 pub st_ctime_nsec: c_long, 27 __unused: [c_long; 3], 28 } 29 30 pub struct stat64 { 31 pub st_dev: crate::dev_t, 32 pub st_ino: crate::ino_t, 33 pub st_nlink: c_ulong, 34 pub st_mode: c_uint, 35 pub st_uid: crate::uid_t, 36 pub st_gid: crate::gid_t, 37 pub st_rdev: crate::dev_t, 38 pub st_size: off64_t, 39 pub st_blksize: c_long, 40 pub st_blocks: c_long, 41 pub st_atime: c_long, 42 pub st_atime_nsec: c_long, 43 pub st_mtime: c_long, 44 pub st_mtime_nsec: c_long, 45 pub st_ctime: c_long, 46 pub st_ctime_nsec: c_long, 47 __unused: [c_long; 3], 48 } 49 50 pub struct _libc_xmmreg { 51 pub element: [u32; 4], 52 } 53 54 pub struct user_regs_struct { 55 pub r15: c_ulong, 56 pub r14: c_ulong, 57 pub r13: c_ulong, 58 pub r12: c_ulong, 59 pub rbp: c_ulong, 60 pub rbx: c_ulong, 61 pub r11: c_ulong, 62 pub r10: c_ulong, 63 pub r9: c_ulong, 64 pub r8: c_ulong, 65 pub rax: c_ulong, 66 pub rcx: c_ulong, 67 pub rdx: c_ulong, 68 pub rsi: c_ulong, 69 pub rdi: c_ulong, 70 pub orig_rax: c_ulong, 71 pub rip: c_ulong, 72 pub cs: c_ulong, 73 pub eflags: c_ulong, 74 pub rsp: c_ulong, 75 pub ss: c_ulong, 76 pub fs_base: c_ulong, 77 pub gs_base: c_ulong, 78 pub ds: c_ulong, 79 pub es: c_ulong, 80 pub fs: c_ulong, 81 pub gs: c_ulong, 82 } 83 84 pub struct user { 85 pub regs: user_regs_struct, 86 pub u_fpvalid: c_int, 87 pub i387: user_fpregs_struct, 88 pub u_tsize: c_ulong, 89 pub u_dsize: c_ulong, 90 pub u_ssize: c_ulong, 91 pub start_code: c_ulong, 92 pub start_stack: c_ulong, 93 pub signal: c_long, 94 __reserved: c_int, 95 #[cfg(target_pointer_width = "32")] 96 __pad1: u32, 97 pub u_ar0: *mut user_regs_struct, 98 #[cfg(target_pointer_width = "32")] 99 __pad2: u32, 100 pub u_fpstate: *mut user_fpregs_struct, 101 pub magic: c_ulong, 102 pub u_comm: [c_char; 32], 103 pub u_debugreg: [c_ulong; 8], 104 pub error_code: c_ulong, 105 pub fault_address: c_ulong, 106 } 107 } 108 109 s_no_extra_traits! { 110 pub union __c_anonymous_uc_sigmask { 111 uc_sigmask: crate::sigset_t, 112 uc_sigmask64: crate::sigset64_t, 113 } 114 115 #[allow(missing_debug_implementations)] 116 #[repr(align(16))] 117 pub struct max_align_t { 118 priv_: [f64; 4], 119 } 120 } 121 122 cfg_if! { 123 if #[cfg(feature = "extra_traits")] { 124 impl PartialEq for __c_anonymous_uc_sigmask { 125 fn eq(&self, other: &__c_anonymous_uc_sigmask) -> bool { 126 unsafe { self.uc_sigmask == other.uc_sigmask } 127 } 128 } 129 impl Eq for __c_anonymous_uc_sigmask {} 130 impl hash::Hash for __c_anonymous_uc_sigmask { 131 fn hash<H: hash::Hasher>(&self, state: &mut H) { 132 unsafe { self.uc_sigmask.hash(state) } 133 } 134 } 135 } 136 } 137 138 s_no_extra_traits! { 139 pub struct _libc_fpxreg { 140 pub significand: [u16; 4], 141 pub exponent: u16, 142 __padding: [u16; 3], 143 } 144 145 pub struct _libc_fpstate { 146 pub cwd: u16, 147 pub swd: u16, 148 pub ftw: u16, 149 pub fop: u16, 150 pub rip: u64, 151 pub rdp: u64, 152 pub mxcsr: u32, 153 pub mxcr_mask: u32, 154 pub _st: [_libc_fpxreg; 8], 155 pub _xmm: [_libc_xmmreg; 16], 156 __private: [u32; 24], 157 } 158 159 pub struct mcontext_t { 160 pub gregs: [greg_t; 23], 161 pub fpregs: *mut _libc_fpstate, 162 __private: [u64; 8], 163 } 164 165 pub struct ucontext_t { 166 pub uc_flags: c_ulong, 167 pub uc_link: *mut ucontext_t, 168 pub uc_stack: crate::stack_t, 169 pub uc_mcontext: mcontext_t, 170 pub uc_sigmask64: __c_anonymous_uc_sigmask, 171 __fpregs_mem: _libc_fpstate, 172 } 173 174 pub struct user_fpregs_struct { 175 pub cwd: c_ushort, 176 pub swd: c_ushort, 177 pub ftw: c_ushort, 178 pub fop: c_ushort, 179 pub rip: c_ulong, 180 pub rdp: c_ulong, 181 pub mxcsr: c_uint, 182 pub mxcr_mask: c_uint, 183 pub st_space: [c_uint; 32], 184 pub xmm_space: [c_uint; 64], 185 padding: [c_uint; 24], 186 } 187 } 188 189 cfg_if! { 190 if #[cfg(feature = "extra_traits")] { 191 impl PartialEq for _libc_fpxreg { 192 fn eq(&self, other: &Self) -> bool { 193 self.significand == other.significand && self.exponent == other.exponent 194 // Ignore padding field 195 } 196 } 197 impl Eq for _libc_fpxreg {} 198 impl hash::Hash for _libc_fpxreg { 199 fn hash<H: hash::Hasher>(&self, state: &mut H) { 200 self.significand.hash(state); 201 self.exponent.hash(state); 202 // Ignore padding field 203 } 204 } 205 206 impl PartialEq for _libc_fpstate { 207 fn eq(&self, other: &Self) -> bool { 208 self.cwd == other.cwd 209 && self.swd == other.swd 210 && self.ftw == other.ftw 211 && self.fop == other.fop 212 && self.rip == other.rip 213 && self.rdp == other.rdp 214 && self.mxcsr == other.mxcsr 215 && self.mxcr_mask == other.mxcr_mask 216 && self._st == other._st 217 && self._xmm == other._xmm 218 // Ignore padding field 219 } 220 } 221 impl Eq for _libc_fpstate {} 222 impl hash::Hash for _libc_fpstate { 223 fn hash<H: hash::Hasher>(&self, state: &mut H) { 224 self.cwd.hash(state); 225 self.swd.hash(state); 226 self.ftw.hash(state); 227 self.fop.hash(state); 228 self.rip.hash(state); 229 self.rdp.hash(state); 230 self.mxcsr.hash(state); 231 self.mxcr_mask.hash(state); 232 self._st.hash(state); 233 self._xmm.hash(state); 234 // Ignore padding field 235 } 236 } 237 238 impl PartialEq for mcontext_t { 239 fn eq(&self, other: &Self) -> bool { 240 self.gregs == other.gregs && self.fpregs == other.fpregs 241 // Ignore padding field 242 } 243 } 244 impl Eq for mcontext_t {} 245 impl hash::Hash for mcontext_t { 246 fn hash<H: hash::Hasher>(&self, state: &mut H) { 247 self.gregs.hash(state); 248 self.fpregs.hash(state); 249 // Ignore padding field 250 } 251 } 252 253 impl PartialEq for ucontext_t { 254 fn eq(&self, other: &Self) -> bool { 255 self.uc_flags == other.uc_flags 256 && self.uc_link == other.uc_link 257 && self.uc_stack == other.uc_stack 258 && self.uc_mcontext == other.uc_mcontext 259 && self.uc_sigmask64 == other.uc_sigmask64 260 // Ignore padding field 261 } 262 } 263 impl Eq for ucontext_t {} 264 impl hash::Hash for ucontext_t { 265 fn hash<H: hash::Hasher>(&self, state: &mut H) { 266 self.uc_flags.hash(state); 267 self.uc_link.hash(state); 268 self.uc_stack.hash(state); 269 self.uc_mcontext.hash(state); 270 self.uc_sigmask64.hash(state); 271 // Ignore padding field 272 } 273 } 274 275 impl PartialEq for user_fpregs_struct { 276 fn eq(&self, other: &user_fpregs_struct) -> bool { 277 self.cwd == other.cwd 278 && self.swd == other.swd 279 && self.ftw == other.ftw 280 && self.fop == other.fop 281 && self.rip == other.rip 282 && self.rdp == other.rdp 283 && self.mxcsr == other.mxcsr 284 && self.mxcr_mask == other.mxcr_mask 285 && self.st_space == other.st_space 286 && self 287 .xmm_space 288 .iter() 289 .zip(other.xmm_space.iter()) 290 .all(|(a, b)| a == b) 291 // Ignore padding field 292 } 293 } 294 295 impl Eq for user_fpregs_struct {} 296 297 impl hash::Hash for user_fpregs_struct { 298 fn hash<H: hash::Hasher>(&self, state: &mut H) { 299 self.cwd.hash(state); 300 self.swd.hash(state); 301 self.ftw.hash(state); 302 self.fop.hash(state); 303 self.rip.hash(state); 304 self.rdp.hash(state); 305 self.mxcsr.hash(state); 306 self.mxcr_mask.hash(state); 307 self.st_space.hash(state); 308 self.xmm_space.hash(state); 309 // Ignore padding field 310 } 311 } 312 } 313 } 314 315 pub const O_DIRECT: c_int = 0x4000; 316 pub const O_DIRECTORY: c_int = 0x10000; 317 pub const O_NOFOLLOW: c_int = 0x20000; 318 pub const O_LARGEFILE: c_int = 0o0100000; 319 320 pub const SIGSTKSZ: size_t = 8192; 321 pub const MINSIGSTKSZ: size_t = 2048; 322 323 pub const MAP_32BIT: c_int = 0x40; 324 325 // Syscall table 326 327 pub const SYS_read: c_long = 0; 328 pub const SYS_write: c_long = 1; 329 pub const SYS_open: c_long = 2; 330 pub const SYS_close: c_long = 3; 331 pub const SYS_stat: c_long = 4; 332 pub const SYS_fstat: c_long = 5; 333 pub const SYS_lstat: c_long = 6; 334 pub const SYS_poll: c_long = 7; 335 pub const SYS_lseek: c_long = 8; 336 pub const SYS_mmap: c_long = 9; 337 pub const SYS_mprotect: c_long = 10; 338 pub const SYS_munmap: c_long = 11; 339 pub const SYS_brk: c_long = 12; 340 pub const SYS_rt_sigaction: c_long = 13; 341 pub const SYS_rt_sigprocmask: c_long = 14; 342 pub const SYS_rt_sigreturn: c_long = 15; 343 pub const SYS_ioctl: c_long = 16; 344 pub const SYS_pread64: c_long = 17; 345 pub const SYS_pwrite64: c_long = 18; 346 pub const SYS_readv: c_long = 19; 347 pub const SYS_writev: c_long = 20; 348 pub const SYS_access: c_long = 21; 349 pub const SYS_pipe: c_long = 22; 350 pub const SYS_select: c_long = 23; 351 pub const SYS_sched_yield: c_long = 24; 352 pub const SYS_mremap: c_long = 25; 353 pub const SYS_msync: c_long = 26; 354 pub const SYS_mincore: c_long = 27; 355 pub const SYS_madvise: c_long = 28; 356 pub const SYS_shmget: c_long = 29; 357 pub const SYS_shmat: c_long = 30; 358 pub const SYS_shmctl: c_long = 31; 359 pub const SYS_dup: c_long = 32; 360 pub const SYS_dup2: c_long = 33; 361 pub const SYS_pause: c_long = 34; 362 pub const SYS_nanosleep: c_long = 35; 363 pub const SYS_getitimer: c_long = 36; 364 pub const SYS_alarm: c_long = 37; 365 pub const SYS_setitimer: c_long = 38; 366 pub const SYS_getpid: c_long = 39; 367 pub const SYS_sendfile: c_long = 40; 368 pub const SYS_socket: c_long = 41; 369 pub const SYS_connect: c_long = 42; 370 pub const SYS_accept: c_long = 43; 371 pub const SYS_sendto: c_long = 44; 372 pub const SYS_recvfrom: c_long = 45; 373 pub const SYS_sendmsg: c_long = 46; 374 pub const SYS_recvmsg: c_long = 47; 375 pub const SYS_shutdown: c_long = 48; 376 pub const SYS_bind: c_long = 49; 377 pub const SYS_listen: c_long = 50; 378 pub const SYS_getsockname: c_long = 51; 379 pub const SYS_getpeername: c_long = 52; 380 pub const SYS_socketpair: c_long = 53; 381 pub const SYS_setsockopt: c_long = 54; 382 pub const SYS_getsockopt: c_long = 55; 383 pub const SYS_clone: c_long = 56; 384 pub const SYS_fork: c_long = 57; 385 pub const SYS_vfork: c_long = 58; 386 pub const SYS_execve: c_long = 59; 387 pub const SYS_exit: c_long = 60; 388 pub const SYS_wait4: c_long = 61; 389 pub const SYS_kill: c_long = 62; 390 pub const SYS_uname: c_long = 63; 391 pub const SYS_semget: c_long = 64; 392 pub const SYS_semop: c_long = 65; 393 pub const SYS_semctl: c_long = 66; 394 pub const SYS_shmdt: c_long = 67; 395 pub const SYS_msgget: c_long = 68; 396 pub const SYS_msgsnd: c_long = 69; 397 pub const SYS_msgrcv: c_long = 70; 398 pub const SYS_msgctl: c_long = 71; 399 pub const SYS_fcntl: c_long = 72; 400 pub const SYS_flock: c_long = 73; 401 pub const SYS_fsync: c_long = 74; 402 pub const SYS_fdatasync: c_long = 75; 403 pub const SYS_truncate: c_long = 76; 404 pub const SYS_ftruncate: c_long = 77; 405 pub const SYS_getdents: c_long = 78; 406 pub const SYS_getcwd: c_long = 79; 407 pub const SYS_chdir: c_long = 80; 408 pub const SYS_fchdir: c_long = 81; 409 pub const SYS_rename: c_long = 82; 410 pub const SYS_mkdir: c_long = 83; 411 pub const SYS_rmdir: c_long = 84; 412 pub const SYS_creat: c_long = 85; 413 pub const SYS_link: c_long = 86; 414 pub const SYS_unlink: c_long = 87; 415 pub const SYS_symlink: c_long = 88; 416 pub const SYS_readlink: c_long = 89; 417 pub const SYS_chmod: c_long = 90; 418 pub const SYS_fchmod: c_long = 91; 419 pub const SYS_chown: c_long = 92; 420 pub const SYS_fchown: c_long = 93; 421 pub const SYS_lchown: c_long = 94; 422 pub const SYS_umask: c_long = 95; 423 pub const SYS_gettimeofday: c_long = 96; 424 pub const SYS_getrlimit: c_long = 97; 425 pub const SYS_getrusage: c_long = 98; 426 pub const SYS_sysinfo: c_long = 99; 427 pub const SYS_times: c_long = 100; 428 pub const SYS_ptrace: c_long = 101; 429 pub const SYS_getuid: c_long = 102; 430 pub const SYS_syslog: c_long = 103; 431 pub const SYS_getgid: c_long = 104; 432 pub const SYS_setuid: c_long = 105; 433 pub const SYS_setgid: c_long = 106; 434 pub const SYS_geteuid: c_long = 107; 435 pub const SYS_getegid: c_long = 108; 436 pub const SYS_setpgid: c_long = 109; 437 pub const SYS_getppid: c_long = 110; 438 pub const SYS_getpgrp: c_long = 111; 439 pub const SYS_setsid: c_long = 112; 440 pub const SYS_setreuid: c_long = 113; 441 pub const SYS_setregid: c_long = 114; 442 pub const SYS_getgroups: c_long = 115; 443 pub const SYS_setgroups: c_long = 116; 444 pub const SYS_setresuid: c_long = 117; 445 pub const SYS_getresuid: c_long = 118; 446 pub const SYS_setresgid: c_long = 119; 447 pub const SYS_getresgid: c_long = 120; 448 pub const SYS_getpgid: c_long = 121; 449 pub const SYS_setfsuid: c_long = 122; 450 pub const SYS_setfsgid: c_long = 123; 451 pub const SYS_getsid: c_long = 124; 452 pub const SYS_capget: c_long = 125; 453 pub const SYS_capset: c_long = 126; 454 pub const SYS_rt_sigpending: c_long = 127; 455 pub const SYS_rt_sigtimedwait: c_long = 128; 456 pub const SYS_rt_sigqueueinfo: c_long = 129; 457 pub const SYS_rt_sigsuspend: c_long = 130; 458 pub const SYS_sigaltstack: c_long = 131; 459 pub const SYS_utime: c_long = 132; 460 pub const SYS_mknod: c_long = 133; 461 pub const SYS_uselib: c_long = 134; 462 pub const SYS_personality: c_long = 135; 463 pub const SYS_ustat: c_long = 136; 464 pub const SYS_statfs: c_long = 137; 465 pub const SYS_fstatfs: c_long = 138; 466 pub const SYS_sysfs: c_long = 139; 467 pub const SYS_getpriority: c_long = 140; 468 pub const SYS_setpriority: c_long = 141; 469 pub const SYS_sched_setparam: c_long = 142; 470 pub const SYS_sched_getparam: c_long = 143; 471 pub const SYS_sched_setscheduler: c_long = 144; 472 pub const SYS_sched_getscheduler: c_long = 145; 473 pub const SYS_sched_get_priority_max: c_long = 146; 474 pub const SYS_sched_get_priority_min: c_long = 147; 475 pub const SYS_sched_rr_get_interval: c_long = 148; 476 pub const SYS_mlock: c_long = 149; 477 pub const SYS_munlock: c_long = 150; 478 pub const SYS_mlockall: c_long = 151; 479 pub const SYS_munlockall: c_long = 152; 480 pub const SYS_vhangup: c_long = 153; 481 pub const SYS_modify_ldt: c_long = 154; 482 pub const SYS_pivot_root: c_long = 155; 483 // FIXME(android): SYS__sysctl is in the NDK sources but for some reason is 484 // not available in the tests 485 // pub const SYS__sysctl: c_long = 156; 486 pub const SYS_prctl: c_long = 157; 487 pub const SYS_arch_prctl: c_long = 158; 488 pub const SYS_adjtimex: c_long = 159; 489 pub const SYS_setrlimit: c_long = 160; 490 pub const SYS_chroot: c_long = 161; 491 pub const SYS_sync: c_long = 162; 492 pub const SYS_acct: c_long = 163; 493 pub const SYS_settimeofday: c_long = 164; 494 pub const SYS_mount: c_long = 165; 495 pub const SYS_umount2: c_long = 166; 496 pub const SYS_swapon: c_long = 167; 497 pub const SYS_swapoff: c_long = 168; 498 pub const SYS_reboot: c_long = 169; 499 pub const SYS_sethostname: c_long = 170; 500 pub const SYS_setdomainname: c_long = 171; 501 pub const SYS_iopl: c_long = 172; 502 pub const SYS_ioperm: c_long = 173; 503 #[deprecated(since = "0.2.70", note = "Functional up to 2.6 kernel")] 504 pub const SYS_create_module: c_long = 174; 505 pub const SYS_init_module: c_long = 175; 506 pub const SYS_delete_module: c_long = 176; 507 #[deprecated(since = "0.2.70", note = "Functional up to 2.6 kernel")] 508 pub const SYS_get_kernel_syms: c_long = 177; 509 #[deprecated(since = "0.2.70", note = "Functional up to 2.6 kernel")] 510 pub const SYS_query_module: c_long = 178; 511 pub const SYS_quotactl: c_long = 179; 512 pub const SYS_nfsservctl: c_long = 180; 513 pub const SYS_getpmsg: c_long = 181; 514 pub const SYS_putpmsg: c_long = 182; 515 pub const SYS_afs_syscall: c_long = 183; 516 pub const SYS_tuxcall: c_long = 184; 517 pub const SYS_security: c_long = 185; 518 pub const SYS_gettid: c_long = 186; 519 pub const SYS_readahead: c_long = 187; 520 pub const SYS_setxattr: c_long = 188; 521 pub const SYS_lsetxattr: c_long = 189; 522 pub const SYS_fsetxattr: c_long = 190; 523 pub const SYS_getxattr: c_long = 191; 524 pub const SYS_lgetxattr: c_long = 192; 525 pub const SYS_fgetxattr: c_long = 193; 526 pub const SYS_listxattr: c_long = 194; 527 pub const SYS_llistxattr: c_long = 195; 528 pub const SYS_flistxattr: c_long = 196; 529 pub const SYS_removexattr: c_long = 197; 530 pub const SYS_lremovexattr: c_long = 198; 531 pub const SYS_fremovexattr: c_long = 199; 532 pub const SYS_tkill: c_long = 200; 533 pub const SYS_time: c_long = 201; 534 pub const SYS_futex: c_long = 202; 535 pub const SYS_sched_setaffinity: c_long = 203; 536 pub const SYS_sched_getaffinity: c_long = 204; 537 pub const SYS_set_thread_area: c_long = 205; 538 pub const SYS_io_setup: c_long = 206; 539 pub const SYS_io_destroy: c_long = 207; 540 pub const SYS_io_getevents: c_long = 208; 541 pub const SYS_io_submit: c_long = 209; 542 pub const SYS_io_cancel: c_long = 210; 543 pub const SYS_get_thread_area: c_long = 211; 544 pub const SYS_lookup_dcookie: c_long = 212; 545 pub const SYS_epoll_create: c_long = 213; 546 pub const SYS_epoll_ctl_old: c_long = 214; 547 pub const SYS_epoll_wait_old: c_long = 215; 548 pub const SYS_remap_file_pages: c_long = 216; 549 pub const SYS_getdents64: c_long = 217; 550 pub const SYS_set_tid_address: c_long = 218; 551 pub const SYS_restart_syscall: c_long = 219; 552 pub const SYS_semtimedop: c_long = 220; 553 pub const SYS_fadvise64: c_long = 221; 554 pub const SYS_timer_create: c_long = 222; 555 pub const SYS_timer_settime: c_long = 223; 556 pub const SYS_timer_gettime: c_long = 224; 557 pub const SYS_timer_getoverrun: c_long = 225; 558 pub const SYS_timer_delete: c_long = 226; 559 pub const SYS_clock_settime: c_long = 227; 560 pub const SYS_clock_gettime: c_long = 228; 561 pub const SYS_clock_getres: c_long = 229; 562 pub const SYS_clock_nanosleep: c_long = 230; 563 pub const SYS_exit_group: c_long = 231; 564 pub const SYS_epoll_wait: c_long = 232; 565 pub const SYS_epoll_ctl: c_long = 233; 566 pub const SYS_tgkill: c_long = 234; 567 pub const SYS_utimes: c_long = 235; 568 pub const SYS_vserver: c_long = 236; 569 pub const SYS_mbind: c_long = 237; 570 pub const SYS_set_mempolicy: c_long = 238; 571 pub const SYS_get_mempolicy: c_long = 239; 572 pub const SYS_mq_open: c_long = 240; 573 pub const SYS_mq_unlink: c_long = 241; 574 pub const SYS_mq_timedsend: c_long = 242; 575 pub const SYS_mq_timedreceive: c_long = 243; 576 pub const SYS_mq_notify: c_long = 244; 577 pub const SYS_mq_getsetattr: c_long = 245; 578 pub const SYS_kexec_load: c_long = 246; 579 pub const SYS_waitid: c_long = 247; 580 pub const SYS_add_key: c_long = 248; 581 pub const SYS_request_key: c_long = 249; 582 pub const SYS_keyctl: c_long = 250; 583 pub const SYS_ioprio_set: c_long = 251; 584 pub const SYS_ioprio_get: c_long = 252; 585 pub const SYS_inotify_init: c_long = 253; 586 pub const SYS_inotify_add_watch: c_long = 254; 587 pub const SYS_inotify_rm_watch: c_long = 255; 588 pub const SYS_migrate_pages: c_long = 256; 589 pub const SYS_openat: c_long = 257; 590 pub const SYS_mkdirat: c_long = 258; 591 pub const SYS_mknodat: c_long = 259; 592 pub const SYS_fchownat: c_long = 260; 593 pub const SYS_futimesat: c_long = 261; 594 pub const SYS_newfstatat: c_long = 262; 595 pub const SYS_unlinkat: c_long = 263; 596 pub const SYS_renameat: c_long = 264; 597 pub const SYS_linkat: c_long = 265; 598 pub const SYS_symlinkat: c_long = 266; 599 pub const SYS_readlinkat: c_long = 267; 600 pub const SYS_fchmodat: c_long = 268; 601 pub const SYS_faccessat: c_long = 269; 602 pub const SYS_pselect6: c_long = 270; 603 pub const SYS_ppoll: c_long = 271; 604 pub const SYS_unshare: c_long = 272; 605 pub const SYS_set_robust_list: c_long = 273; 606 pub const SYS_get_robust_list: c_long = 274; 607 pub const SYS_splice: c_long = 275; 608 pub const SYS_tee: c_long = 276; 609 pub const SYS_sync_file_range: c_long = 277; 610 pub const SYS_vmsplice: c_long = 278; 611 pub const SYS_move_pages: c_long = 279; 612 pub const SYS_utimensat: c_long = 280; 613 pub const SYS_epoll_pwait: c_long = 281; 614 pub const SYS_signalfd: c_long = 282; 615 pub const SYS_timerfd_create: c_long = 283; 616 pub const SYS_eventfd: c_long = 284; 617 pub const SYS_fallocate: c_long = 285; 618 pub const SYS_timerfd_settime: c_long = 286; 619 pub const SYS_timerfd_gettime: c_long = 287; 620 pub const SYS_accept4: c_long = 288; 621 pub const SYS_signalfd4: c_long = 289; 622 pub const SYS_eventfd2: c_long = 290; 623 pub const SYS_epoll_create1: c_long = 291; 624 pub const SYS_dup3: c_long = 292; 625 pub const SYS_pipe2: c_long = 293; 626 pub const SYS_inotify_init1: c_long = 294; 627 pub const SYS_preadv: c_long = 295; 628 pub const SYS_pwritev: c_long = 296; 629 pub const SYS_rt_tgsigqueueinfo: c_long = 297; 630 pub const SYS_perf_event_open: c_long = 298; 631 pub const SYS_recvmmsg: c_long = 299; 632 pub const SYS_fanotify_init: c_long = 300; 633 pub const SYS_fanotify_mark: c_long = 301; 634 pub const SYS_prlimit64: c_long = 302; 635 pub const SYS_name_to_handle_at: c_long = 303; 636 pub const SYS_open_by_handle_at: c_long = 304; 637 pub const SYS_clock_adjtime: c_long = 305; 638 pub const SYS_syncfs: c_long = 306; 639 pub const SYS_sendmmsg: c_long = 307; 640 pub const SYS_setns: c_long = 308; 641 pub const SYS_getcpu: c_long = 309; 642 pub const SYS_process_vm_readv: c_long = 310; 643 pub const SYS_process_vm_writev: c_long = 311; 644 pub const SYS_kcmp: c_long = 312; 645 pub const SYS_finit_module: c_long = 313; 646 pub const SYS_sched_setattr: c_long = 314; 647 pub const SYS_sched_getattr: c_long = 315; 648 pub const SYS_renameat2: c_long = 316; 649 pub const SYS_seccomp: c_long = 317; 650 pub const SYS_getrandom: c_long = 318; 651 pub const SYS_memfd_create: c_long = 319; 652 pub const SYS_kexec_file_load: c_long = 320; 653 pub const SYS_bpf: c_long = 321; 654 pub const SYS_execveat: c_long = 322; 655 pub const SYS_userfaultfd: c_long = 323; 656 pub const SYS_membarrier: c_long = 324; 657 pub const SYS_mlock2: c_long = 325; 658 pub const SYS_copy_file_range: c_long = 326; 659 pub const SYS_preadv2: c_long = 327; 660 pub const SYS_pwritev2: c_long = 328; 661 pub const SYS_pkey_mprotect: c_long = 329; 662 pub const SYS_pkey_alloc: c_long = 330; 663 pub const SYS_pkey_free: c_long = 331; 664 pub const SYS_statx: c_long = 332; 665 pub const SYS_pidfd_send_signal: c_long = 424; 666 pub const SYS_io_uring_setup: c_long = 425; 667 pub const SYS_io_uring_enter: c_long = 426; 668 pub const SYS_io_uring_register: c_long = 427; 669 pub const SYS_open_tree: c_long = 428; 670 pub const SYS_move_mount: c_long = 429; 671 pub const SYS_fsopen: c_long = 430; 672 pub const SYS_fsconfig: c_long = 431; 673 pub const SYS_fsmount: c_long = 432; 674 pub const SYS_fspick: c_long = 433; 675 pub const SYS_pidfd_open: c_long = 434; 676 pub const SYS_clone3: c_long = 435; 677 pub const SYS_close_range: c_long = 436; 678 pub const SYS_openat2: c_long = 437; 679 pub const SYS_pidfd_getfd: c_long = 438; 680 pub const SYS_faccessat2: c_long = 439; 681 pub const SYS_process_madvise: c_long = 440; 682 pub const SYS_epoll_pwait2: c_long = 441; 683 pub const SYS_mount_setattr: c_long = 442; 684 pub const SYS_quotactl_fd: c_long = 443; 685 pub const SYS_landlock_create_ruleset: c_long = 444; 686 pub const SYS_landlock_add_rule: c_long = 445; 687 pub const SYS_landlock_restrict_self: c_long = 446; 688 pub const SYS_memfd_secret: c_long = 447; 689 pub const SYS_process_mrelease: c_long = 448; 690 pub const SYS_futex_waitv: c_long = 449; 691 pub const SYS_set_mempolicy_home_node: c_long = 450; 692 693 // offsets in user_regs_structs, from sys/reg.h 694 pub const R15: c_int = 0; 695 pub const R14: c_int = 1; 696 pub const R13: c_int = 2; 697 pub const R12: c_int = 3; 698 pub const RBP: c_int = 4; 699 pub const RBX: c_int = 5; 700 pub const R11: c_int = 6; 701 pub const R10: c_int = 7; 702 pub const R9: c_int = 8; 703 pub const R8: c_int = 9; 704 pub const RAX: c_int = 10; 705 pub const RCX: c_int = 11; 706 pub const RDX: c_int = 12; 707 pub const RSI: c_int = 13; 708 pub const RDI: c_int = 14; 709 pub const ORIG_RAX: c_int = 15; 710 pub const RIP: c_int = 16; 711 pub const CS: c_int = 17; 712 pub const EFLAGS: c_int = 18; 713 pub const RSP: c_int = 19; 714 pub const SS: c_int = 20; 715 pub const FS_BASE: c_int = 21; 716 pub const GS_BASE: c_int = 22; 717 pub const DS: c_int = 23; 718 pub const ES: c_int = 24; 719 pub const FS: c_int = 25; 720 pub const GS: c_int = 26; 721 722 // offsets in mcontext_t.gregs from sys/ucontext.h 723 pub const REG_R8: c_int = 0; 724 pub const REG_R9: c_int = 1; 725 pub const REG_R10: c_int = 2; 726 pub const REG_R11: c_int = 3; 727 pub const REG_R12: c_int = 4; 728 pub const REG_R13: c_int = 5; 729 pub const REG_R14: c_int = 6; 730 pub const REG_R15: c_int = 7; 731 pub const REG_RDI: c_int = 8; 732 pub const REG_RSI: c_int = 9; 733 pub const REG_RBP: c_int = 10; 734 pub const REG_RBX: c_int = 11; 735 pub const REG_RDX: c_int = 12; 736 pub const REG_RAX: c_int = 13; 737 pub const REG_RCX: c_int = 14; 738 pub const REG_RSP: c_int = 15; 739 pub const REG_RIP: c_int = 16; 740 pub const REG_EFL: c_int = 17; 741 pub const REG_CSGSFS: c_int = 18; 742 pub const REG_ERR: c_int = 19; 743 pub const REG_TRAPNO: c_int = 20; 744 pub const REG_OLDMASK: c_int = 21; 745 pub const REG_CR2: c_int = 22; 746 747 // From NDK's asm/auxvec.h 748 pub const AT_SYSINFO_EHDR: c_ulong = 33; 749 pub const AT_VECTOR_SIZE_ARCH: c_ulong = 3; 750