| 1 | //! x86_64-specific definitions for 64-bit linux-like values |
| 2 | |
| 3 | pub type c_char = i8; |
| 4 | pub type wchar_t = i32; |
| 5 | pub type nlink_t = u64; |
| 6 | pub type blksize_t = i64; |
| 7 | pub type greg_t = i64; |
| 8 | pub type suseconds_t = i64; |
| 9 | pub type __u64 = ::c_ulonglong; |
| 10 | pub type __s64 = ::c_longlong; |
| 11 | |
| 12 | s! { |
| 13 | pub struct sigaction { |
| 14 | pub sa_sigaction: ::sighandler_t, |
| 15 | pub sa_mask: ::sigset_t, |
| 16 | #[cfg (target_arch = "sparc64" )] |
| 17 | __reserved0: ::c_int, |
| 18 | pub sa_flags: ::c_int, |
| 19 | pub sa_restorer: ::Option<extern fn()>, |
| 20 | } |
| 21 | |
| 22 | pub struct statfs { |
| 23 | pub f_type: ::__fsword_t, |
| 24 | pub f_bsize: ::__fsword_t, |
| 25 | pub f_blocks: ::fsblkcnt_t, |
| 26 | pub f_bfree: ::fsblkcnt_t, |
| 27 | pub f_bavail: ::fsblkcnt_t, |
| 28 | |
| 29 | pub f_files: ::fsfilcnt_t, |
| 30 | pub f_ffree: ::fsfilcnt_t, |
| 31 | pub f_fsid: ::fsid_t, |
| 32 | |
| 33 | pub f_namelen: ::__fsword_t, |
| 34 | pub f_frsize: ::__fsword_t, |
| 35 | f_spare: [::__fsword_t; 5], |
| 36 | } |
| 37 | |
| 38 | pub struct flock { |
| 39 | pub l_type: ::c_short, |
| 40 | pub l_whence: ::c_short, |
| 41 | pub l_start: ::off_t, |
| 42 | pub l_len: ::off_t, |
| 43 | pub l_pid: ::pid_t, |
| 44 | } |
| 45 | |
| 46 | pub struct flock64 { |
| 47 | pub l_type: ::c_short, |
| 48 | pub l_whence: ::c_short, |
| 49 | pub l_start: ::off64_t, |
| 50 | pub l_len: ::off64_t, |
| 51 | pub l_pid: ::pid_t, |
| 52 | } |
| 53 | |
| 54 | pub struct siginfo_t { |
| 55 | pub si_signo: ::c_int, |
| 56 | pub si_errno: ::c_int, |
| 57 | pub si_code: ::c_int, |
| 58 | #[doc (hidden)] |
| 59 | #[deprecated ( |
| 60 | since="0.2.54" , |
| 61 | note="Please leave a comment on \ |
| 62 | https://github.com/rust-lang/libc/pull/1316 if you're using \ |
| 63 | this field" |
| 64 | )] |
| 65 | pub _pad: [::c_int; 29], |
| 66 | _align: [u64; 0], |
| 67 | } |
| 68 | |
| 69 | pub struct stack_t { |
| 70 | pub ss_sp: *mut ::c_void, |
| 71 | pub ss_flags: ::c_int, |
| 72 | pub ss_size: ::size_t |
| 73 | } |
| 74 | |
| 75 | pub struct stat { |
| 76 | pub st_dev: ::dev_t, |
| 77 | pub st_ino: ::ino_t, |
| 78 | pub st_nlink: ::nlink_t, |
| 79 | pub st_mode: ::mode_t, |
| 80 | pub st_uid: ::uid_t, |
| 81 | pub st_gid: ::gid_t, |
| 82 | __pad0: ::c_int, |
| 83 | pub st_rdev: ::dev_t, |
| 84 | pub st_size: ::off_t, |
| 85 | pub st_blksize: ::blksize_t, |
| 86 | pub st_blocks: ::blkcnt_t, |
| 87 | pub st_atime: ::time_t, |
| 88 | pub st_atime_nsec: i64, |
| 89 | pub st_mtime: ::time_t, |
| 90 | pub st_mtime_nsec: i64, |
| 91 | pub st_ctime: ::time_t, |
| 92 | pub st_ctime_nsec: i64, |
| 93 | __unused: [i64; 3], |
| 94 | } |
| 95 | |
| 96 | pub struct stat64 { |
| 97 | pub st_dev: ::dev_t, |
| 98 | pub st_ino: ::ino64_t, |
| 99 | pub st_nlink: ::nlink_t, |
| 100 | pub st_mode: ::mode_t, |
| 101 | pub st_uid: ::uid_t, |
| 102 | pub st_gid: ::gid_t, |
| 103 | __pad0: ::c_int, |
| 104 | pub st_rdev: ::dev_t, |
| 105 | pub st_size: ::off_t, |
| 106 | pub st_blksize: ::blksize_t, |
| 107 | pub st_blocks: ::blkcnt64_t, |
| 108 | pub st_atime: ::time_t, |
| 109 | pub st_atime_nsec: i64, |
| 110 | pub st_mtime: ::time_t, |
| 111 | pub st_mtime_nsec: i64, |
| 112 | pub st_ctime: ::time_t, |
| 113 | pub st_ctime_nsec: i64, |
| 114 | __reserved: [i64; 3], |
| 115 | } |
| 116 | |
| 117 | pub struct statfs64 { |
| 118 | pub f_type: ::__fsword_t, |
| 119 | pub f_bsize: ::__fsword_t, |
| 120 | pub f_blocks: u64, |
| 121 | pub f_bfree: u64, |
| 122 | pub f_bavail: u64, |
| 123 | pub f_files: u64, |
| 124 | pub f_ffree: u64, |
| 125 | pub f_fsid: ::fsid_t, |
| 126 | pub f_namelen: ::__fsword_t, |
| 127 | pub f_frsize: ::__fsword_t, |
| 128 | pub f_flags: ::__fsword_t, |
| 129 | pub f_spare: [::__fsword_t; 4], |
| 130 | } |
| 131 | |
| 132 | pub struct statvfs64 { |
| 133 | pub f_bsize: ::c_ulong, |
| 134 | pub f_frsize: ::c_ulong, |
| 135 | pub f_blocks: u64, |
| 136 | pub f_bfree: u64, |
| 137 | pub f_bavail: u64, |
| 138 | pub f_files: u64, |
| 139 | pub f_ffree: u64, |
| 140 | pub f_favail: u64, |
| 141 | pub f_fsid: ::c_ulong, |
| 142 | pub f_flag: ::c_ulong, |
| 143 | pub f_namemax: ::c_ulong, |
| 144 | __f_spare: [::c_int; 6], |
| 145 | } |
| 146 | |
| 147 | pub struct pthread_attr_t { |
| 148 | #[cfg (target_pointer_width = "32" )] |
| 149 | __size: [u32; 8], |
| 150 | #[cfg (target_pointer_width = "64" )] |
| 151 | __size: [u64; 7] |
| 152 | } |
| 153 | |
| 154 | pub struct _libc_fpxreg { |
| 155 | pub significand: [u16; 4], |
| 156 | pub exponent: u16, |
| 157 | __private: [u16; 3], |
| 158 | } |
| 159 | |
| 160 | pub struct _libc_xmmreg { |
| 161 | pub element: [u32; 4], |
| 162 | } |
| 163 | |
| 164 | pub struct _libc_fpstate { |
| 165 | pub cwd: u16, |
| 166 | pub swd: u16, |
| 167 | pub ftw: u16, |
| 168 | pub fop: u16, |
| 169 | pub rip: u64, |
| 170 | pub rdp: u64, |
| 171 | pub mxcsr: u32, |
| 172 | pub mxcr_mask: u32, |
| 173 | pub _st: [_libc_fpxreg; 8], |
| 174 | pub _xmm: [_libc_xmmreg; 16], |
| 175 | __private: [u64; 12], |
| 176 | } |
| 177 | |
| 178 | pub struct user_regs_struct { |
| 179 | pub r15: ::c_ulonglong, |
| 180 | pub r14: ::c_ulonglong, |
| 181 | pub r13: ::c_ulonglong, |
| 182 | pub r12: ::c_ulonglong, |
| 183 | pub rbp: ::c_ulonglong, |
| 184 | pub rbx: ::c_ulonglong, |
| 185 | pub r11: ::c_ulonglong, |
| 186 | pub r10: ::c_ulonglong, |
| 187 | pub r9: ::c_ulonglong, |
| 188 | pub r8: ::c_ulonglong, |
| 189 | pub rax: ::c_ulonglong, |
| 190 | pub rcx: ::c_ulonglong, |
| 191 | pub rdx: ::c_ulonglong, |
| 192 | pub rsi: ::c_ulonglong, |
| 193 | pub rdi: ::c_ulonglong, |
| 194 | pub orig_rax: ::c_ulonglong, |
| 195 | pub rip: ::c_ulonglong, |
| 196 | pub cs: ::c_ulonglong, |
| 197 | pub eflags: ::c_ulonglong, |
| 198 | pub rsp: ::c_ulonglong, |
| 199 | pub ss: ::c_ulonglong, |
| 200 | pub fs_base: ::c_ulonglong, |
| 201 | pub gs_base: ::c_ulonglong, |
| 202 | pub ds: ::c_ulonglong, |
| 203 | pub es: ::c_ulonglong, |
| 204 | pub fs: ::c_ulonglong, |
| 205 | pub gs: ::c_ulonglong, |
| 206 | } |
| 207 | |
| 208 | pub struct user { |
| 209 | pub regs: user_regs_struct, |
| 210 | pub u_fpvalid: ::c_int, |
| 211 | pub i387: user_fpregs_struct, |
| 212 | pub u_tsize: ::c_ulonglong, |
| 213 | pub u_dsize: ::c_ulonglong, |
| 214 | pub u_ssize: ::c_ulonglong, |
| 215 | pub start_code: ::c_ulonglong, |
| 216 | pub start_stack: ::c_ulonglong, |
| 217 | pub signal: ::c_longlong, |
| 218 | __reserved: ::c_int, |
| 219 | #[cfg (target_pointer_width = "32" )] |
| 220 | __pad1: u32, |
| 221 | pub u_ar0: *mut user_regs_struct, |
| 222 | #[cfg (target_pointer_width = "32" )] |
| 223 | __pad2: u32, |
| 224 | pub u_fpstate: *mut user_fpregs_struct, |
| 225 | pub magic: ::c_ulonglong, |
| 226 | pub u_comm: [::c_char; 32], |
| 227 | pub u_debugreg: [::c_ulonglong; 8], |
| 228 | } |
| 229 | |
| 230 | pub struct mcontext_t { |
| 231 | pub gregs: [greg_t; 23], |
| 232 | pub fpregs: *mut _libc_fpstate, |
| 233 | __private: [u64; 8], |
| 234 | } |
| 235 | |
| 236 | pub struct ipc_perm { |
| 237 | pub __key: ::key_t, |
| 238 | pub uid: ::uid_t, |
| 239 | pub gid: ::gid_t, |
| 240 | pub cuid: ::uid_t, |
| 241 | pub cgid: ::gid_t, |
| 242 | pub mode: ::c_ushort, |
| 243 | __pad1: ::c_ushort, |
| 244 | pub __seq: ::c_ushort, |
| 245 | __pad2: ::c_ushort, |
| 246 | __unused1: u64, |
| 247 | __unused2: u64 |
| 248 | } |
| 249 | |
| 250 | pub struct shmid_ds { |
| 251 | pub shm_perm: ::ipc_perm, |
| 252 | pub shm_segsz: ::size_t, |
| 253 | pub shm_atime: ::time_t, |
| 254 | pub shm_dtime: ::time_t, |
| 255 | pub shm_ctime: ::time_t, |
| 256 | pub shm_cpid: ::pid_t, |
| 257 | pub shm_lpid: ::pid_t, |
| 258 | pub shm_nattch: ::shmatt_t, |
| 259 | __unused4: u64, |
| 260 | __unused5: u64 |
| 261 | } |
| 262 | |
| 263 | pub struct seccomp_notif_sizes { |
| 264 | pub seccomp_notif: ::__u16, |
| 265 | pub seccomp_notif_resp: ::__u16, |
| 266 | pub seccomp_data: ::__u16, |
| 267 | } |
| 268 | |
| 269 | pub struct ptrace_rseq_configuration { |
| 270 | pub rseq_abi_pointer: ::__u64, |
| 271 | pub rseq_abi_size: ::__u32, |
| 272 | pub signature: ::__u32, |
| 273 | pub flags: ::__u32, |
| 274 | pub pad: ::__u32, |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | s_no_extra_traits! { |
| 279 | pub struct user_fpregs_struct { |
| 280 | pub cwd: ::c_ushort, |
| 281 | pub swd: ::c_ushort, |
| 282 | pub ftw: ::c_ushort, |
| 283 | pub fop: ::c_ushort, |
| 284 | pub rip: ::c_ulonglong, |
| 285 | pub rdp: ::c_ulonglong, |
| 286 | pub mxcsr: ::c_uint, |
| 287 | pub mxcr_mask: ::c_uint, |
| 288 | pub st_space: [::c_uint; 32], |
| 289 | pub xmm_space: [::c_uint; 64], |
| 290 | padding: [::c_uint; 24], |
| 291 | } |
| 292 | |
| 293 | pub struct ucontext_t { |
| 294 | pub uc_flags: ::c_ulong, |
| 295 | pub uc_link: *mut ucontext_t, |
| 296 | pub uc_stack: ::stack_t, |
| 297 | pub uc_mcontext: mcontext_t, |
| 298 | pub uc_sigmask: ::sigset_t, |
| 299 | __private: [u8; 512], |
| 300 | // FIXME: the shadow stack field requires glibc >= 2.28. |
| 301 | // Re-add once we drop compatibility with glibc versions older than |
| 302 | // 2.28. |
| 303 | // |
| 304 | // __ssp: [::c_ulonglong; 4], |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | cfg_if! { |
| 309 | if #[cfg(feature = "extra_traits" )] { |
| 310 | impl PartialEq for user_fpregs_struct { |
| 311 | fn eq(&self, other: &user_fpregs_struct) -> bool { |
| 312 | self.cwd == other.cwd |
| 313 | && self.swd == other.swd |
| 314 | && self.ftw == other.ftw |
| 315 | && self.fop == other.fop |
| 316 | && self.rip == other.rip |
| 317 | && self.rdp == other.rdp |
| 318 | && self.mxcsr == other.mxcsr |
| 319 | && self.mxcr_mask == other.mxcr_mask |
| 320 | && self.st_space == other.st_space |
| 321 | && self |
| 322 | .xmm_space |
| 323 | .iter() |
| 324 | .zip(other.xmm_space.iter()) |
| 325 | .all(|(a,b)| a == b) |
| 326 | // Ignore padding field |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | impl Eq for user_fpregs_struct {} |
| 331 | |
| 332 | impl ::fmt::Debug for user_fpregs_struct { |
| 333 | fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result { |
| 334 | f.debug_struct("user_fpregs_struct" ) |
| 335 | .field("cwd" , &self.cwd) |
| 336 | .field("ftw" , &self.ftw) |
| 337 | .field("fop" , &self.fop) |
| 338 | .field("rip" , &self.rip) |
| 339 | .field("rdp" , &self.rdp) |
| 340 | .field("mxcsr" , &self.mxcsr) |
| 341 | .field("mxcr_mask" , &self.mxcr_mask) |
| 342 | .field("st_space" , &self.st_space) |
| 343 | // FIXME: .field("xmm_space", &self.xmm_space) |
| 344 | // Ignore padding field |
| 345 | .finish() |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | impl ::hash::Hash for user_fpregs_struct { |
| 350 | fn hash<H: ::hash::Hasher>(&self, state: &mut H) { |
| 351 | self.cwd.hash(state); |
| 352 | self.ftw.hash(state); |
| 353 | self.fop.hash(state); |
| 354 | self.rip.hash(state); |
| 355 | self.rdp.hash(state); |
| 356 | self.mxcsr.hash(state); |
| 357 | self.mxcr_mask.hash(state); |
| 358 | self.st_space.hash(state); |
| 359 | self.xmm_space.hash(state); |
| 360 | // Ignore padding field |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | impl PartialEq for ucontext_t { |
| 365 | fn eq(&self, other: &ucontext_t) -> bool { |
| 366 | self.uc_flags == other.uc_flags |
| 367 | && self.uc_link == other.uc_link |
| 368 | && self.uc_stack == other.uc_stack |
| 369 | && self.uc_mcontext == other.uc_mcontext |
| 370 | && self.uc_sigmask == other.uc_sigmask |
| 371 | // Ignore __private field |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | impl Eq for ucontext_t {} |
| 376 | |
| 377 | impl ::fmt::Debug for ucontext_t { |
| 378 | fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result { |
| 379 | f.debug_struct("ucontext_t" ) |
| 380 | .field("uc_flags" , &self.uc_flags) |
| 381 | .field("uc_link" , &self.uc_link) |
| 382 | .field("uc_stack" , &self.uc_stack) |
| 383 | .field("uc_mcontext" , &self.uc_mcontext) |
| 384 | .field("uc_sigmask" , &self.uc_sigmask) |
| 385 | // Ignore __private field |
| 386 | .finish() |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | impl ::hash::Hash for ucontext_t { |
| 391 | fn hash<H: ::hash::Hasher>(&self, state: &mut H) { |
| 392 | self.uc_flags.hash(state); |
| 393 | self.uc_link.hash(state); |
| 394 | self.uc_stack.hash(state); |
| 395 | self.uc_mcontext.hash(state); |
| 396 | self.uc_sigmask.hash(state); |
| 397 | // Ignore __private field |
| 398 | } |
| 399 | } |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | pub const POSIX_FADV_DONTNEED: ::c_int = 4; |
| 404 | pub const POSIX_FADV_NOREUSE: ::c_int = 5; |
| 405 | |
| 406 | pub const VEOF: usize = 4; |
| 407 | pub const RTLD_DEEPBIND: ::c_int = 0x8; |
| 408 | pub const RTLD_GLOBAL: ::c_int = 0x100; |
| 409 | pub const RTLD_NOLOAD: ::c_int = 0x4; |
| 410 | |
| 411 | pub const O_APPEND: ::c_int = 1024; |
| 412 | pub const O_CREAT: ::c_int = 64; |
| 413 | pub const O_EXCL: ::c_int = 128; |
| 414 | pub const O_NOCTTY: ::c_int = 256; |
| 415 | pub const O_NONBLOCK: ::c_int = 2048; |
| 416 | pub const O_SYNC: ::c_int = 1052672; |
| 417 | pub const O_RSYNC: ::c_int = 1052672; |
| 418 | pub const O_DSYNC: ::c_int = 4096; |
| 419 | pub const O_FSYNC: ::c_int = 0x101000; |
| 420 | pub const O_NOATIME: ::c_int = 0o1000000; |
| 421 | pub const O_PATH: ::c_int = 0o10000000; |
| 422 | pub const O_TMPFILE: ::c_int = 0o20000000 | O_DIRECTORY; |
| 423 | |
| 424 | pub const MADV_SOFT_OFFLINE: ::c_int = 101; |
| 425 | pub const MAP_GROWSDOWN: ::c_int = 0x0100; |
| 426 | |
| 427 | pub const EDEADLK: ::c_int = 35; |
| 428 | pub const ENAMETOOLONG: ::c_int = 36; |
| 429 | pub const ENOLCK: ::c_int = 37; |
| 430 | pub const ENOSYS: ::c_int = 38; |
| 431 | pub const ENOTEMPTY: ::c_int = 39; |
| 432 | pub const ELOOP: ::c_int = 40; |
| 433 | pub const ENOMSG: ::c_int = 42; |
| 434 | pub const EIDRM: ::c_int = 43; |
| 435 | pub const ECHRNG: ::c_int = 44; |
| 436 | pub const EL2NSYNC: ::c_int = 45; |
| 437 | pub const EL3HLT: ::c_int = 46; |
| 438 | pub const EL3RST: ::c_int = 47; |
| 439 | pub const ELNRNG: ::c_int = 48; |
| 440 | pub const EUNATCH: ::c_int = 49; |
| 441 | pub const ENOCSI: ::c_int = 50; |
| 442 | pub const EL2HLT: ::c_int = 51; |
| 443 | pub const EBADE: ::c_int = 52; |
| 444 | pub const EBADR: ::c_int = 53; |
| 445 | pub const EXFULL: ::c_int = 54; |
| 446 | pub const ENOANO: ::c_int = 55; |
| 447 | pub const EBADRQC: ::c_int = 56; |
| 448 | pub const EBADSLT: ::c_int = 57; |
| 449 | pub const EMULTIHOP: ::c_int = 72; |
| 450 | pub const EOVERFLOW: ::c_int = 75; |
| 451 | pub const ENOTUNIQ: ::c_int = 76; |
| 452 | pub const EBADFD: ::c_int = 77; |
| 453 | pub const EBADMSG: ::c_int = 74; |
| 454 | pub const EREMCHG: ::c_int = 78; |
| 455 | pub const ELIBACC: ::c_int = 79; |
| 456 | pub const ELIBBAD: ::c_int = 80; |
| 457 | pub const ELIBSCN: ::c_int = 81; |
| 458 | pub const ELIBMAX: ::c_int = 82; |
| 459 | pub const ELIBEXEC: ::c_int = 83; |
| 460 | pub const EILSEQ: ::c_int = 84; |
| 461 | pub const ERESTART: ::c_int = 85; |
| 462 | pub const ESTRPIPE: ::c_int = 86; |
| 463 | pub const EUSERS: ::c_int = 87; |
| 464 | pub const ENOTSOCK: ::c_int = 88; |
| 465 | pub const EDESTADDRREQ: ::c_int = 89; |
| 466 | pub const EMSGSIZE: ::c_int = 90; |
| 467 | pub const EPROTOTYPE: ::c_int = 91; |
| 468 | pub const ENOPROTOOPT: ::c_int = 92; |
| 469 | pub const EPROTONOSUPPORT: ::c_int = 93; |
| 470 | pub const ESOCKTNOSUPPORT: ::c_int = 94; |
| 471 | pub const EOPNOTSUPP: ::c_int = 95; |
| 472 | pub const EPFNOSUPPORT: ::c_int = 96; |
| 473 | pub const EAFNOSUPPORT: ::c_int = 97; |
| 474 | pub const EADDRINUSE: ::c_int = 98; |
| 475 | pub const EADDRNOTAVAIL: ::c_int = 99; |
| 476 | pub const ENETDOWN: ::c_int = 100; |
| 477 | pub const ENETUNREACH: ::c_int = 101; |
| 478 | pub const ENETRESET: ::c_int = 102; |
| 479 | pub const ECONNABORTED: ::c_int = 103; |
| 480 | pub const ECONNRESET: ::c_int = 104; |
| 481 | pub const ENOBUFS: ::c_int = 105; |
| 482 | pub const EISCONN: ::c_int = 106; |
| 483 | pub const ENOTCONN: ::c_int = 107; |
| 484 | pub const ESHUTDOWN: ::c_int = 108; |
| 485 | pub const ETOOMANYREFS: ::c_int = 109; |
| 486 | pub const ETIMEDOUT: ::c_int = 110; |
| 487 | pub const ECONNREFUSED: ::c_int = 111; |
| 488 | pub const EHOSTDOWN: ::c_int = 112; |
| 489 | pub const EHOSTUNREACH: ::c_int = 113; |
| 490 | pub const EALREADY: ::c_int = 114; |
| 491 | pub const EINPROGRESS: ::c_int = 115; |
| 492 | pub const ESTALE: ::c_int = 116; |
| 493 | pub const EDQUOT: ::c_int = 122; |
| 494 | pub const ENOMEDIUM: ::c_int = 123; |
| 495 | pub const EMEDIUMTYPE: ::c_int = 124; |
| 496 | pub const ECANCELED: ::c_int = 125; |
| 497 | pub const ENOKEY: ::c_int = 126; |
| 498 | pub const EKEYEXPIRED: ::c_int = 127; |
| 499 | pub const EKEYREVOKED: ::c_int = 128; |
| 500 | pub const EKEYREJECTED: ::c_int = 129; |
| 501 | pub const EOWNERDEAD: ::c_int = 130; |
| 502 | pub const ENOTRECOVERABLE: ::c_int = 131; |
| 503 | pub const EHWPOISON: ::c_int = 133; |
| 504 | pub const ERFKILL: ::c_int = 132; |
| 505 | |
| 506 | pub const SOCK_STREAM: ::c_int = 1; |
| 507 | pub const SOCK_DGRAM: ::c_int = 2; |
| 508 | |
| 509 | pub const SA_ONSTACK: ::c_int = 0x08000000; |
| 510 | pub const SA_SIGINFO: ::c_int = 0x00000004; |
| 511 | pub const SA_NOCLDWAIT: ::c_int = 0x00000002; |
| 512 | |
| 513 | pub const SIGTTIN: ::c_int = 21; |
| 514 | pub const SIGTTOU: ::c_int = 22; |
| 515 | pub const SIGXCPU: ::c_int = 24; |
| 516 | pub const SIGXFSZ: ::c_int = 25; |
| 517 | pub const SIGVTALRM: ::c_int = 26; |
| 518 | pub const SIGPROF: ::c_int = 27; |
| 519 | pub const SIGWINCH: ::c_int = 28; |
| 520 | pub const SIGCHLD: ::c_int = 17; |
| 521 | pub const SIGBUS: ::c_int = 7; |
| 522 | pub const SIGUSR1: ::c_int = 10; |
| 523 | pub const SIGUSR2: ::c_int = 12; |
| 524 | pub const SIGCONT: ::c_int = 18; |
| 525 | pub const SIGSTOP: ::c_int = 19; |
| 526 | pub const SIGTSTP: ::c_int = 20; |
| 527 | pub const SIGURG: ::c_int = 23; |
| 528 | pub const SIGIO: ::c_int = 29; |
| 529 | pub const SIGSYS: ::c_int = 31; |
| 530 | pub const SIGSTKFLT: ::c_int = 16; |
| 531 | #[deprecated (since = "0.2.55" , note = "Use SIGSYS instead" )] |
| 532 | pub const SIGUNUSED: ::c_int = 31; |
| 533 | pub const SIGPOLL: ::c_int = 29; |
| 534 | pub const SIGPWR: ::c_int = 30; |
| 535 | pub const SIG_SETMASK: ::c_int = 2; |
| 536 | pub const SIG_BLOCK: ::c_int = 0x000000; |
| 537 | pub const SIG_UNBLOCK: ::c_int = 0x01; |
| 538 | |
| 539 | pub const POLLWRNORM: ::c_short = 0x100; |
| 540 | pub const POLLWRBAND: ::c_short = 0x200; |
| 541 | |
| 542 | pub const O_ASYNC: ::c_int = 0x2000; |
| 543 | pub const O_NDELAY: ::c_int = 0x800; |
| 544 | |
| 545 | pub const PTRACE_DETACH: ::c_uint = 17; |
| 546 | pub const PTRACE_GET_RSEQ_CONFIGURATION: ::c_uint = 0x420f; |
| 547 | |
| 548 | pub const EFD_NONBLOCK: ::c_int = 0x800; |
| 549 | |
| 550 | pub const F_GETLK: ::c_int = 5; |
| 551 | pub const F_GETOWN: ::c_int = 9; |
| 552 | pub const F_SETOWN: ::c_int = 8; |
| 553 | pub const F_SETLK: ::c_int = 6; |
| 554 | pub const F_SETLKW: ::c_int = 7; |
| 555 | pub const F_OFD_GETLK: ::c_int = 36; |
| 556 | pub const F_OFD_SETLK: ::c_int = 37; |
| 557 | pub const F_OFD_SETLKW: ::c_int = 38; |
| 558 | |
| 559 | pub const F_RDLCK: ::c_int = 0; |
| 560 | pub const F_WRLCK: ::c_int = 1; |
| 561 | pub const F_UNLCK: ::c_int = 2; |
| 562 | |
| 563 | pub const SFD_NONBLOCK: ::c_int = 0x0800; |
| 564 | |
| 565 | pub const TCSANOW: ::c_int = 0; |
| 566 | pub const TCSADRAIN: ::c_int = 1; |
| 567 | pub const TCSAFLUSH: ::c_int = 2; |
| 568 | |
| 569 | pub const SFD_CLOEXEC: ::c_int = 0x080000; |
| 570 | |
| 571 | pub const NCCS: usize = 32; |
| 572 | |
| 573 | pub const O_TRUNC: ::c_int = 512; |
| 574 | |
| 575 | pub const O_CLOEXEC: ::c_int = 0x80000; |
| 576 | |
| 577 | pub const EBFONT: ::c_int = 59; |
| 578 | pub const ENOSTR: ::c_int = 60; |
| 579 | pub const ENODATA: ::c_int = 61; |
| 580 | pub const ETIME: ::c_int = 62; |
| 581 | pub const ENOSR: ::c_int = 63; |
| 582 | pub const ENONET: ::c_int = 64; |
| 583 | pub const ENOPKG: ::c_int = 65; |
| 584 | pub const EREMOTE: ::c_int = 66; |
| 585 | pub const ENOLINK: ::c_int = 67; |
| 586 | pub const EADV: ::c_int = 68; |
| 587 | pub const ESRMNT: ::c_int = 69; |
| 588 | pub const ECOMM: ::c_int = 70; |
| 589 | pub const EPROTO: ::c_int = 71; |
| 590 | pub const EDOTDOT: ::c_int = 73; |
| 591 | |
| 592 | pub const SA_NODEFER: ::c_int = 0x40000000; |
| 593 | pub const SA_RESETHAND: ::c_int = 0x80000000; |
| 594 | pub const SA_RESTART: ::c_int = 0x10000000; |
| 595 | pub const SA_NOCLDSTOP: ::c_int = 0x00000001; |
| 596 | |
| 597 | pub const EPOLL_CLOEXEC: ::c_int = 0x80000; |
| 598 | |
| 599 | pub const EFD_CLOEXEC: ::c_int = 0x80000; |
| 600 | |
| 601 | pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4; |
| 602 | pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; |
| 603 | pub const __SIZEOF_PTHREAD_BARRIERATTR_T: usize = 4; |
| 604 | |
| 605 | pub const O_DIRECT: ::c_int = 0x4000; |
| 606 | pub const O_DIRECTORY: ::c_int = 0x10000; |
| 607 | pub const O_NOFOLLOW: ::c_int = 0x20000; |
| 608 | |
| 609 | pub const MAP_HUGETLB: ::c_int = 0x040000; |
| 610 | pub const MAP_LOCKED: ::c_int = 0x02000; |
| 611 | pub const MAP_NORESERVE: ::c_int = 0x04000; |
| 612 | pub const MAP_32BIT: ::c_int = 0x0040; |
| 613 | pub const MAP_ANON: ::c_int = 0x0020; |
| 614 | pub const MAP_ANONYMOUS: ::c_int = 0x0020; |
| 615 | pub const MAP_DENYWRITE: ::c_int = 0x0800; |
| 616 | pub const MAP_EXECUTABLE: ::c_int = 0x01000; |
| 617 | pub const MAP_POPULATE: ::c_int = 0x08000; |
| 618 | pub const MAP_NONBLOCK: ::c_int = 0x010000; |
| 619 | pub const MAP_STACK: ::c_int = 0x020000; |
| 620 | pub const MAP_SYNC: ::c_int = 0x080000; |
| 621 | |
| 622 | pub const EDEADLOCK: ::c_int = 35; |
| 623 | pub const EUCLEAN: ::c_int = 117; |
| 624 | pub const ENOTNAM: ::c_int = 118; |
| 625 | pub const ENAVAIL: ::c_int = 119; |
| 626 | pub const EISNAM: ::c_int = 120; |
| 627 | pub const EREMOTEIO: ::c_int = 121; |
| 628 | |
| 629 | pub const PTRACE_GETFPREGS: ::c_uint = 14; |
| 630 | pub const PTRACE_SETFPREGS: ::c_uint = 15; |
| 631 | pub const PTRACE_GETFPXREGS: ::c_uint = 18; |
| 632 | pub const PTRACE_SETFPXREGS: ::c_uint = 19; |
| 633 | pub const PTRACE_GETREGS: ::c_uint = 12; |
| 634 | pub const PTRACE_SETREGS: ::c_uint = 13; |
| 635 | pub const PTRACE_PEEKSIGINFO_SHARED: ::c_uint = 1; |
| 636 | pub const PTRACE_SYSEMU: ::c_uint = 31; |
| 637 | pub const PTRACE_SYSEMU_SINGLESTEP: ::c_uint = 32; |
| 638 | |
| 639 | pub const PR_GET_SPECULATION_CTRL: ::c_int = 52; |
| 640 | pub const PR_SET_SPECULATION_CTRL: ::c_int = 53; |
| 641 | pub const PR_SPEC_NOT_AFFECTED: ::c_uint = 0; |
| 642 | pub const PR_SPEC_PRCTL: ::c_uint = 1 << 0; |
| 643 | pub const PR_SPEC_ENABLE: ::c_uint = 1 << 1; |
| 644 | pub const PR_SPEC_DISABLE: ::c_uint = 1 << 2; |
| 645 | pub const PR_SPEC_FORCE_DISABLE: ::c_uint = 1 << 3; |
| 646 | pub const PR_SPEC_DISABLE_NOEXEC: ::c_uint = 1 << 4; |
| 647 | pub const PR_SPEC_STORE_BYPASS: ::c_int = 0; |
| 648 | pub const PR_SPEC_INDIRECT_BRANCH: ::c_int = 1; |
| 649 | // FIXME: perharps for later |
| 650 | //pub const PR_SPEC_L1D_FLUSH: ::c_int = 2; |
| 651 | |
| 652 | pub const MCL_CURRENT: ::c_int = 0x0001; |
| 653 | pub const MCL_FUTURE: ::c_int = 0x0002; |
| 654 | pub const MCL_ONFAULT: ::c_int = 0x0004; |
| 655 | |
| 656 | pub const SIGSTKSZ: ::size_t = 8192; |
| 657 | pub const MINSIGSTKSZ: ::size_t = 2048; |
| 658 | pub const CBAUD: ::tcflag_t = 0o0010017; |
| 659 | pub const TAB1: ::tcflag_t = 0x00000800; |
| 660 | pub const TAB2: ::tcflag_t = 0x00001000; |
| 661 | pub const TAB3: ::tcflag_t = 0x00001800; |
| 662 | pub const CR1: ::tcflag_t = 0x00000200; |
| 663 | pub const CR2: ::tcflag_t = 0x00000400; |
| 664 | pub const CR3: ::tcflag_t = 0x00000600; |
| 665 | pub const FF1: ::tcflag_t = 0x00008000; |
| 666 | pub const BS1: ::tcflag_t = 0x00002000; |
| 667 | pub const VT1: ::tcflag_t = 0x00004000; |
| 668 | pub const VWERASE: usize = 14; |
| 669 | pub const VREPRINT: usize = 12; |
| 670 | pub const VSUSP: usize = 10; |
| 671 | pub const VSTART: usize = 8; |
| 672 | pub const VSTOP: usize = 9; |
| 673 | pub const VDISCARD: usize = 13; |
| 674 | pub const VTIME: usize = 5; |
| 675 | pub const IXON: ::tcflag_t = 0x00000400; |
| 676 | pub const IXOFF: ::tcflag_t = 0x00001000; |
| 677 | pub const ONLCR: ::tcflag_t = 0x4; |
| 678 | pub const CSIZE: ::tcflag_t = 0x00000030; |
| 679 | pub const CS6: ::tcflag_t = 0x00000010; |
| 680 | pub const CS7: ::tcflag_t = 0x00000020; |
| 681 | pub const CS8: ::tcflag_t = 0x00000030; |
| 682 | pub const CSTOPB: ::tcflag_t = 0x00000040; |
| 683 | pub const CREAD: ::tcflag_t = 0x00000080; |
| 684 | pub const PARENB: ::tcflag_t = 0x00000100; |
| 685 | pub const PARODD: ::tcflag_t = 0x00000200; |
| 686 | pub const HUPCL: ::tcflag_t = 0x00000400; |
| 687 | pub const CLOCAL: ::tcflag_t = 0x00000800; |
| 688 | pub const ECHOKE: ::tcflag_t = 0x00000800; |
| 689 | pub const ECHOE: ::tcflag_t = 0x00000010; |
| 690 | pub const ECHOK: ::tcflag_t = 0x00000020; |
| 691 | pub const ECHONL: ::tcflag_t = 0x00000040; |
| 692 | pub const ECHOPRT: ::tcflag_t = 0x00000400; |
| 693 | pub const ECHOCTL: ::tcflag_t = 0x00000200; |
| 694 | pub const ISIG: ::tcflag_t = 0x00000001; |
| 695 | pub const ICANON: ::tcflag_t = 0x00000002; |
| 696 | pub const PENDIN: ::tcflag_t = 0x00004000; |
| 697 | pub const NOFLSH: ::tcflag_t = 0x00000080; |
| 698 | pub const CIBAUD: ::tcflag_t = 0o02003600000; |
| 699 | pub const CBAUDEX: ::tcflag_t = 0o010000; |
| 700 | pub const VSWTC: usize = 7; |
| 701 | pub const OLCUC: ::tcflag_t = 0o000002; |
| 702 | pub const NLDLY: ::tcflag_t = 0o000400; |
| 703 | pub const CRDLY: ::tcflag_t = 0o003000; |
| 704 | pub const TABDLY: ::tcflag_t = 0o014000; |
| 705 | pub const BSDLY: ::tcflag_t = 0o020000; |
| 706 | pub const FFDLY: ::tcflag_t = 0o100000; |
| 707 | pub const VTDLY: ::tcflag_t = 0o040000; |
| 708 | pub const XTABS: ::tcflag_t = 0o014000; |
| 709 | |
| 710 | pub const B0: ::speed_t = 0o000000; |
| 711 | pub const B50: ::speed_t = 0o000001; |
| 712 | pub const B75: ::speed_t = 0o000002; |
| 713 | pub const B110: ::speed_t = 0o000003; |
| 714 | pub const B134: ::speed_t = 0o000004; |
| 715 | pub const B150: ::speed_t = 0o000005; |
| 716 | pub const B200: ::speed_t = 0o000006; |
| 717 | pub const B300: ::speed_t = 0o000007; |
| 718 | pub const B600: ::speed_t = 0o000010; |
| 719 | pub const B1200: ::speed_t = 0o000011; |
| 720 | pub const B1800: ::speed_t = 0o000012; |
| 721 | pub const B2400: ::speed_t = 0o000013; |
| 722 | pub const B4800: ::speed_t = 0o000014; |
| 723 | pub const B9600: ::speed_t = 0o000015; |
| 724 | pub const B19200: ::speed_t = 0o000016; |
| 725 | pub const B38400: ::speed_t = 0o000017; |
| 726 | pub const EXTA: ::speed_t = B19200; |
| 727 | pub const EXTB: ::speed_t = B38400; |
| 728 | pub const B57600: ::speed_t = 0o010001; |
| 729 | pub const B115200: ::speed_t = 0o010002; |
| 730 | pub const B230400: ::speed_t = 0o010003; |
| 731 | pub const B460800: ::speed_t = 0o010004; |
| 732 | pub const B500000: ::speed_t = 0o010005; |
| 733 | pub const B576000: ::speed_t = 0o010006; |
| 734 | pub const B921600: ::speed_t = 0o010007; |
| 735 | pub const B1000000: ::speed_t = 0o010010; |
| 736 | pub const B1152000: ::speed_t = 0o010011; |
| 737 | pub const B1500000: ::speed_t = 0o010012; |
| 738 | pub const B2000000: ::speed_t = 0o010013; |
| 739 | pub const B2500000: ::speed_t = 0o010014; |
| 740 | pub const B3000000: ::speed_t = 0o010015; |
| 741 | pub const B3500000: ::speed_t = 0o010016; |
| 742 | pub const B4000000: ::speed_t = 0o010017; |
| 743 | |
| 744 | pub const VEOL: usize = 11; |
| 745 | pub const VEOL2: usize = 16; |
| 746 | pub const VMIN: usize = 6; |
| 747 | pub const IEXTEN: ::tcflag_t = 0x00008000; |
| 748 | pub const TOSTOP: ::tcflag_t = 0x00000100; |
| 749 | pub const FLUSHO: ::tcflag_t = 0x00001000; |
| 750 | pub const EXTPROC: ::tcflag_t = 0x00010000; |
| 751 | |
| 752 | // offsets in user_regs_structs, from sys/reg.h |
| 753 | pub const R15: ::c_int = 0; |
| 754 | pub const R14: ::c_int = 1; |
| 755 | pub const R13: ::c_int = 2; |
| 756 | pub const R12: ::c_int = 3; |
| 757 | pub const RBP: ::c_int = 4; |
| 758 | pub const RBX: ::c_int = 5; |
| 759 | pub const R11: ::c_int = 6; |
| 760 | pub const R10: ::c_int = 7; |
| 761 | pub const R9: ::c_int = 8; |
| 762 | pub const R8: ::c_int = 9; |
| 763 | pub const RAX: ::c_int = 10; |
| 764 | pub const RCX: ::c_int = 11; |
| 765 | pub const RDX: ::c_int = 12; |
| 766 | pub const RSI: ::c_int = 13; |
| 767 | pub const RDI: ::c_int = 14; |
| 768 | pub const ORIG_RAX: ::c_int = 15; |
| 769 | pub const RIP: ::c_int = 16; |
| 770 | pub const CS: ::c_int = 17; |
| 771 | pub const EFLAGS: ::c_int = 18; |
| 772 | pub const RSP: ::c_int = 19; |
| 773 | pub const SS: ::c_int = 20; |
| 774 | pub const FS_BASE: ::c_int = 21; |
| 775 | pub const GS_BASE: ::c_int = 22; |
| 776 | pub const DS: ::c_int = 23; |
| 777 | pub const ES: ::c_int = 24; |
| 778 | pub const FS: ::c_int = 25; |
| 779 | pub const GS: ::c_int = 26; |
| 780 | |
| 781 | // offsets in mcontext_t.gregs from sys/ucontext.h |
| 782 | pub const REG_R8: ::c_int = 0; |
| 783 | pub const REG_R9: ::c_int = 1; |
| 784 | pub const REG_R10: ::c_int = 2; |
| 785 | pub const REG_R11: ::c_int = 3; |
| 786 | pub const REG_R12: ::c_int = 4; |
| 787 | pub const REG_R13: ::c_int = 5; |
| 788 | pub const REG_R14: ::c_int = 6; |
| 789 | pub const REG_R15: ::c_int = 7; |
| 790 | pub const REG_RDI: ::c_int = 8; |
| 791 | pub const REG_RSI: ::c_int = 9; |
| 792 | pub const REG_RBP: ::c_int = 10; |
| 793 | pub const REG_RBX: ::c_int = 11; |
| 794 | pub const REG_RDX: ::c_int = 12; |
| 795 | pub const REG_RAX: ::c_int = 13; |
| 796 | pub const REG_RCX: ::c_int = 14; |
| 797 | pub const REG_RSP: ::c_int = 15; |
| 798 | pub const REG_RIP: ::c_int = 16; |
| 799 | pub const REG_EFL: ::c_int = 17; |
| 800 | pub const REG_CSGSFS: ::c_int = 18; |
| 801 | pub const REG_ERR: ::c_int = 19; |
| 802 | pub const REG_TRAPNO: ::c_int = 20; |
| 803 | pub const REG_OLDMASK: ::c_int = 21; |
| 804 | pub const REG_CR2: ::c_int = 22; |
| 805 | |
| 806 | pub const SECCOMP_SET_MODE_STRICT: ::c_uint = 0; |
| 807 | pub const SECCOMP_SET_MODE_FILTER: ::c_uint = 1; |
| 808 | pub const SECCOMP_GET_ACTION_AVAIL: ::c_uint = 2; |
| 809 | pub const SECCOMP_GET_NOTIF_SIZES: ::c_uint = 3; |
| 810 | |
| 811 | extern "C" { |
| 812 | pub fn getcontext(ucp: *mut ucontext_t) -> ::c_int; |
| 813 | pub fn setcontext(ucp: *const ucontext_t) -> ::c_int; |
| 814 | pub fn makecontext(ucp: *mut ucontext_t, func: extern "C" fn(), argc: ::c_int, ...); |
| 815 | pub fn swapcontext(uocp: *mut ucontext_t, ucp: *const ucontext_t) -> ::c_int; |
| 816 | pub fn iopl(level: ::c_int) -> ::c_int; |
| 817 | pub fn ioperm(from: ::c_ulong, num: ::c_ulong, turn_on: ::c_int) -> ::c_int; |
| 818 | } |
| 819 | |
| 820 | cfg_if! { |
| 821 | if #[cfg(target_pointer_width = "32" )] { |
| 822 | mod x32; |
| 823 | pub use self::x32::*; |
| 824 | } else { |
| 825 | mod not_x32; |
| 826 | pub use self::not_x32::*; |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | cfg_if! { |
| 831 | if #[cfg(libc_align)] { |
| 832 | mod align; |
| 833 | pub use self::align::*; |
| 834 | } |
| 835 | } |
| 836 | |