]> git.proxmox.com Git - rustc.git/blame - vendor/libc/src/unix/linux_like/android/mod.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / vendor / libc / src / unix / linux_like / android / mod.rs
CommitLineData
476ff2be
SL
1//! Android-specific definitions for linux-like values
2
476ff2be
SL
3pub type clock_t = ::c_long;
4pub type time_t = ::c_long;
5pub type suseconds_t = ::c_long;
476ff2be
SL
6pub type off_t = ::c_long;
7pub type blkcnt_t = ::c_ulong;
8pub type blksize_t = ::c_ulong;
9pub type nlink_t = u32;
10pub type useconds_t = u32;
476ff2be
SL
11pub type pthread_t = ::c_long;
12pub type pthread_mutexattr_t = ::c_long;
041b39d2 13pub type pthread_rwlockattr_t = ::c_long;
476ff2be 14pub type pthread_condattr_t = ::c_long;
416331ca 15pub type pthread_key_t = ::c_int;
476ff2be
SL
16pub type fsfilcnt_t = ::c_ulong;
17pub type fsblkcnt_t = ::c_ulong;
18pub type nfds_t = ::c_uint;
19pub type rlim_t = ::c_ulong;
20pub type dev_t = ::c_ulong;
21pub type ino_t = ::c_ulong;
3dfed10e 22pub type ino64_t = u64;
476ff2be 23pub type __CPU_BITTYPE = ::c_ulong;
8bb4bdeb 24pub type idtype_t = ::c_int;
ea8adc8c 25pub type loff_t = ::c_longlong;
dfeec247
XL
26pub type __kernel_loff_t = ::c_longlong;
27pub type __kernel_pid_t = ::c_int;
476ff2be
SL
28
29s! {
476ff2be
SL
30 pub struct stack_t {
31 pub ss_sp: *mut ::c_void,
32 pub ss_flags: ::c_int,
33 pub ss_size: ::size_t
34 }
35
476ff2be
SL
36 pub struct __fsid_t {
37 __val: [::c_int; 2],
38 }
39
40 pub struct msghdr {
41 pub msg_name: *mut ::c_void,
8bb4bdeb 42 pub msg_namelen: ::socklen_t,
476ff2be
SL
43 pub msg_iov: *mut ::iovec,
44 pub msg_iovlen: ::size_t,
45 pub msg_control: *mut ::c_void,
46 pub msg_controllen: ::size_t,
47 pub msg_flags: ::c_int,
48 }
49
8bb4bdeb
XL
50 pub struct cmsghdr {
51 pub cmsg_len: ::size_t,
52 pub cmsg_level: ::c_int,
53 pub cmsg_type: ::c_int,
54 }
55
476ff2be
SL
56 pub struct termios {
57 pub c_iflag: ::tcflag_t,
58 pub c_oflag: ::tcflag_t,
59 pub c_cflag: ::tcflag_t,
60 pub c_lflag: ::tcflag_t,
61 pub c_line: ::cc_t,
62 pub c_cc: [::cc_t; ::NCCS],
63 }
64
abe05a73
XL
65 pub struct termios2 {
66 pub c_iflag: ::tcflag_t,
67 pub c_oflag: ::tcflag_t,
68 pub c_cflag: ::tcflag_t,
69 pub c_lflag: ::tcflag_t,
70 pub c_line: ::cc_t,
71 pub c_cc: [::cc_t; 19],
72 pub c_ispeed: ::speed_t,
73 pub c_ospeed: ::speed_t,
74 }
75
476ff2be
SL
76 pub struct flock {
77 pub l_type: ::c_short,
78 pub l_whence: ::c_short,
79 pub l_start: ::off_t,
80 pub l_len: ::off_t,
81 pub l_pid: ::pid_t,
82 }
83
dfeec247
XL
84 pub struct flock64 {
85 pub l_type: ::c_short,
86 pub l_whence: ::c_short,
87 pub l_start: ::__kernel_loff_t,
88 pub l_len: ::__kernel_loff_t,
89 pub l_pid: ::__kernel_pid_t,
90 }
91
476ff2be
SL
92 pub struct cpu_set_t {
93 #[cfg(target_pointer_width = "64")]
94 __bits: [__CPU_BITTYPE; 16],
95 #[cfg(target_pointer_width = "32")]
96 __bits: [__CPU_BITTYPE; 1],
97 }
98
99 pub struct sem_t {
100 count: ::c_uint,
8bb4bdeb
XL
101 #[cfg(target_pointer_width = "64")]
102 __reserved: [::c_int; 3],
476ff2be
SL
103 }
104
476ff2be
SL
105 pub struct exit_status {
106 pub e_termination: ::c_short,
107 pub e_exit: ::c_short,
108 }
109
8bb4bdeb
XL
110 pub struct statvfs {
111 pub f_bsize: ::c_ulong,
112 pub f_frsize: ::c_ulong,
113 pub f_blocks: ::fsblkcnt_t,
114 pub f_bfree: ::fsblkcnt_t,
115 pub f_bavail: ::fsblkcnt_t,
116 pub f_files: ::fsfilcnt_t,
117 pub f_ffree: ::fsfilcnt_t,
118 pub f_favail: ::fsfilcnt_t,
119 pub f_fsid: ::c_ulong,
120 pub f_flag: ::c_ulong,
121 pub f_namemax: ::c_ulong,
122 #[cfg(target_pointer_width = "64")]
123 __f_reserved: [u32; 6],
124 }
3b2f2976
XL
125
126 pub struct signalfd_siginfo {
416331ca
XL
127 pub ssi_signo: u32,
128 pub ssi_errno: i32,
129 pub ssi_code: i32,
130 pub ssi_pid: u32,
131 pub ssi_uid: u32,
132 pub ssi_fd: i32,
133 pub ssi_tid: u32,
134 pub ssi_band: u32,
135 pub ssi_overrun: u32,
136 pub ssi_trapno: u32,
137 pub ssi_status: i32,
138 pub ssi_int: i32,
3b2f2976
XL
139 pub ssi_ptr: ::c_ulonglong,
140 pub ssi_utime: ::c_ulonglong,
141 pub ssi_stime: ::c_ulonglong,
142 pub ssi_addr: ::c_ulonglong,
416331ca
XL
143 pub ssi_addr_lsb: u16,
144 _pad2: u16,
145 pub ssi_syscall: i32,
146 pub ssi_call_addr: u64,
147 pub ssi_arch: u32,
148 _pad: [u8; 28],
3b2f2976 149 }
abe05a73 150
3dfed10e
XL
151 pub struct itimerspec {
152 pub it_interval: ::timespec,
153 pub it_value: ::timespec,
154 }
155
abe05a73
XL
156 pub struct ucred {
157 pub pid: ::pid_t,
158 pub uid: ::uid_t,
159 pub gid: ::gid_t,
160 }
2c00a5a8
XL
161
162 pub struct genlmsghdr {
8faf50e0
XL
163 pub cmd: u8,
164 pub version: u8,
165 pub reserved: u16,
2c00a5a8
XL
166 }
167
168 pub struct nlmsghdr {
8faf50e0
XL
169 pub nlmsg_len: u32,
170 pub nlmsg_type: u16,
171 pub nlmsg_flags: u16,
172 pub nlmsg_seq: u32,
173 pub nlmsg_pid: u32,
2c00a5a8
XL
174 }
175
176 pub struct nlmsgerr {
8faf50e0
XL
177 pub error: ::c_int,
178 pub msg: nlmsghdr,
2c00a5a8
XL
179 }
180
181 pub struct nl_pktinfo {
8faf50e0 182 pub group: u32,
2c00a5a8
XL
183 }
184
185 pub struct nl_mmap_req {
8faf50e0
XL
186 pub nm_block_size: ::c_uint,
187 pub nm_block_nr: ::c_uint,
188 pub nm_frame_size: ::c_uint,
189 pub nm_frame_nr: ::c_uint,
2c00a5a8
XL
190 }
191
192 pub struct nl_mmap_hdr {
8faf50e0
XL
193 pub nm_status: ::c_uint,
194 pub nm_len: ::c_uint,
195 pub nm_group: u32,
196 pub nm_pid: u32,
197 pub nm_uid: u32,
198 pub nm_gid: u32,
2c00a5a8
XL
199 }
200
201 pub struct nlattr {
8faf50e0
XL
202 pub nla_len: u16,
203 pub nla_type: u16,
204 }
205
206 pub struct in6_pktinfo {
207 pub ipi6_addr: ::in6_addr,
208 pub ipi6_ifindex: ::c_int,
2c00a5a8 209 }
532ac7d7
XL
210
211 pub struct inotify_event {
212 pub wd: ::c_int,
416331ca
XL
213 pub mask: u32,
214 pub cookie: u32,
215 pub len: u32
532ac7d7 216 }
ba9703b0
XL
217
218 pub struct sock_extended_err {
219 pub ee_errno: u32,
220 pub ee_origin: u8,
221 pub ee_type: u8,
222 pub ee_code: u8,
223 pub ee_pad: u8,
224 pub ee_info: u32,
225 pub ee_data: u32,
226 }
3dfed10e
XL
227
228 pub struct regex_t {
229 re_magic: ::c_int,
230 re_nsub: ::size_t,
231 re_endp: *const ::c_char,
232 re_guts: *mut ::c_void,
233 }
234
235 pub struct regmatch_t {
236 pub rm_so: ::ssize_t,
237 pub rm_eo: ::ssize_t,
238 }
29967ef6
XL
239
240 pub struct sockaddr_vm {
241 pub svm_family: ::sa_family_t,
242 pub svm_reserved1: ::c_ushort,
243 pub svm_port: ::c_uint,
244 pub svm_cid: ::c_uint,
245 pub svm_zero: [u8; 4]
246 }
532ac7d7
XL
247}
248
e74abb32 249s_no_extra_traits! {
416331ca
XL
250 pub struct sockaddr_nl {
251 pub nl_family: ::sa_family_t,
252 nl_pad: ::c_ushort,
253 pub nl_pid: u32,
254 pub nl_groups: u32
255 }
256
532ac7d7
XL
257 pub struct dirent {
258 pub d_ino: u64,
259 pub d_off: i64,
260 pub d_reclen: ::c_ushort,
261 pub d_type: ::c_uchar,
262 pub d_name: [::c_char; 256],
263 }
264
265 pub struct dirent64 {
266 pub d_ino: u64,
267 pub d_off: i64,
268 pub d_reclen: ::c_ushort,
269 pub d_type: ::c_uchar,
270 pub d_name: [::c_char; 256],
271 }
272
273 pub struct siginfo_t {
274 pub si_signo: ::c_int,
275 pub si_errno: ::c_int,
276 pub si_code: ::c_int,
277 pub _pad: [::c_int; 29],
278 _align: [usize; 0],
279 }
280
281 pub struct lastlog {
282 ll_time: ::time_t,
283 ll_line: [::c_char; UT_LINESIZE],
284 ll_host: [::c_char; UT_HOSTSIZE],
285 }
286
287 pub struct utmp {
288 pub ut_type: ::c_short,
289 pub ut_pid: ::pid_t,
290 pub ut_line: [::c_char; UT_LINESIZE],
291 pub ut_id: [::c_char; 4],
292 pub ut_user: [::c_char; UT_NAMESIZE],
293 pub ut_host: [::c_char; UT_HOSTSIZE],
294 pub ut_exit: exit_status,
295 pub ut_session: ::c_long,
296 pub ut_tv: ::timeval,
416331ca 297 pub ut_addr_v6: [i32; 4],
532ac7d7
XL
298 unused: [::c_char; 20],
299 }
300
301 pub struct sockaddr_alg {
302 pub salg_family: ::sa_family_t,
303 pub salg_type: [::c_uchar; 14],
304 pub salg_feat: u32,
305 pub salg_mask: u32,
306 pub salg_name: [::c_uchar; 64],
307 }
308
fc512014
XL
309 /// WARNING: The `PartialEq`, `Eq` and `Hash` implementations of this
310 /// type are unsound and will be removed in the future.
311 #[deprecated(
312 note = "this struct has unsafe trait implementations that will be \
313 removed in the future",
314 since = "0.2.80"
315 )]
532ac7d7
XL
316 pub struct af_alg_iv {
317 pub ivlen: u32,
318 pub iv: [::c_uchar; 0],
319 }
320}
321
322cfg_if! {
323 if #[cfg(feature = "extra_traits")] {
416331ca
XL
324 impl PartialEq for sockaddr_nl {
325 fn eq(&self, other: &sockaddr_nl) -> bool {
326 self.nl_family == other.nl_family &&
327 self.nl_pid == other.nl_pid &&
328 self.nl_groups == other.nl_groups
329 }
330 }
331 impl Eq for sockaddr_nl {}
332 impl ::fmt::Debug for sockaddr_nl {
333 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
334 f.debug_struct("sockaddr_nl")
335 .field("nl_family", &self.nl_family)
336 .field("nl_pid", &self.nl_pid)
337 .field("nl_groups", &self.nl_groups)
338 .finish()
339 }
340 }
341 impl ::hash::Hash for sockaddr_nl {
342 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
343 self.nl_family.hash(state);
344 self.nl_pid.hash(state);
345 self.nl_groups.hash(state);
346 }
347 }
348
532ac7d7
XL
349 impl PartialEq for dirent {
350 fn eq(&self, other: &dirent) -> bool {
351 self.d_ino == other.d_ino
352 && self.d_off == other.d_off
353 && self.d_reclen == other.d_reclen
354 && self.d_type == other.d_type
355 && self
356 .d_name
357 .iter()
358 .zip(other.d_name.iter())
359 .all(|(a,b)| a == b)
360 }
361 }
362
363 impl Eq for dirent {}
364
365 impl ::fmt::Debug for dirent {
366 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
367 f.debug_struct("dirent")
368 .field("d_ino", &self.d_ino)
369 .field("d_off", &self.d_off)
370 .field("d_reclen", &self.d_reclen)
371 .field("d_type", &self.d_type)
372 // FIXME: .field("d_name", &self.d_name)
373 .finish()
374 }
375 }
376
377 impl ::hash::Hash for dirent {
378 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
379 self.d_ino.hash(state);
380 self.d_off.hash(state);
381 self.d_reclen.hash(state);
382 self.d_type.hash(state);
383 self.d_name.hash(state);
384 }
385 }
386
387 impl PartialEq for dirent64 {
388 fn eq(&self, other: &dirent64) -> bool {
389 self.d_ino == other.d_ino
390 && self.d_off == other.d_off
391 && self.d_reclen == other.d_reclen
392 && self.d_type == other.d_type
393 && self
394 .d_name
395 .iter()
396 .zip(other.d_name.iter())
397 .all(|(a,b)| a == b)
398 }
399 }
400
401 impl Eq for dirent64 {}
402
403 impl ::fmt::Debug for dirent64 {
404 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
405 f.debug_struct("dirent64")
406 .field("d_ino", &self.d_ino)
407 .field("d_off", &self.d_off)
408 .field("d_reclen", &self.d_reclen)
409 .field("d_type", &self.d_type)
410 // FIXME: .field("d_name", &self.d_name)
411 .finish()
412 }
413 }
414
415 impl ::hash::Hash for dirent64 {
416 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
417 self.d_ino.hash(state);
418 self.d_off.hash(state);
419 self.d_reclen.hash(state);
420 self.d_type.hash(state);
421 self.d_name.hash(state);
422 }
423 }
424
425 impl PartialEq for siginfo_t {
426 fn eq(&self, other: &siginfo_t) -> bool {
427 self.si_signo == other.si_signo
428 && self.si_errno == other.si_errno
429 && self.si_code == other.si_code
430 // Ignore _pad
431 // Ignore _align
432 }
433 }
434
435 impl Eq for siginfo_t {}
436
437 impl ::fmt::Debug for siginfo_t {
438 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
439 f.debug_struct("siginfo_t")
440 .field("si_signo", &self.si_signo)
441 .field("si_errno", &self.si_errno)
442 .field("si_code", &self.si_code)
443 // Ignore _pad
444 // Ignore _align
445 .finish()
446 }
447 }
448
449 impl ::hash::Hash for siginfo_t {
450 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
451 self.si_signo.hash(state);
452 self.si_errno.hash(state);
453 self.si_code.hash(state);
454 // Ignore _pad
455 // Ignore _align
456 }
457 }
458
459 impl PartialEq for lastlog {
460 fn eq(&self, other: &lastlog) -> bool {
461 self.ll_time == other.ll_time
462 && self
463 .ll_line
464 .iter()
465 .zip(other.ll_line.iter())
466 .all(|(a,b)| a == b)
467 && self
468 .ll_host
469 .iter()
470 .zip(other.ll_host.iter())
471 .all(|(a,b)| a == b)
472 }
473 }
474
475 impl Eq for lastlog {}
476
477 impl ::fmt::Debug for lastlog {
478 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
479 f.debug_struct("lastlog")
480 .field("ll_time", &self.ll_time)
481 .field("ll_line", &self.ll_line)
482 // FIXME: .field("ll_host", &self.ll_host)
483 .finish()
484 }
485 }
486
487 impl ::hash::Hash for lastlog {
488 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
489 self.ll_time.hash(state);
490 self.ll_line.hash(state);
491 self.ll_host.hash(state);
492 }
493 }
494
495 impl PartialEq for utmp {
496 fn eq(&self, other: &utmp) -> bool {
497 self.ut_type == other.ut_type
498 && self.ut_pid == other.ut_pid
499 && self
500 .ut_line
501 .iter()
502 .zip(other.ut_line.iter())
503 .all(|(a,b)| a == b)
504 && self.ut_id == other.ut_id
505 && self
506 .ut_user
507 .iter()
508 .zip(other.ut_user.iter())
509 .all(|(a,b)| a == b)
510 && self
511 .ut_host
512 .iter()
513 .zip(other.ut_host.iter())
514 .all(|(a,b)| a == b)
515 && self.ut_exit == other.ut_exit
516 && self.ut_session == other.ut_session
517 && self.ut_tv == other.ut_tv
518 && self.ut_addr_v6 == other.ut_addr_v6
519 && self.unused == other.unused
520 }
521 }
522
523 impl Eq for utmp {}
524
525 impl ::fmt::Debug for utmp {
526 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
527 f.debug_struct("utmp")
528 .field("ut_type", &self.ut_type)
529 .field("ut_pid", &self.ut_pid)
530 .field("ut_line", &self.ut_line)
531 .field("ut_id", &self.ut_id)
532 .field("ut_user", &self.ut_user)
533 // FIXME: .field("ut_host", &self.ut_host)
534 .field("ut_exit", &self.ut_exit)
535 .field("ut_session", &self.ut_session)
536 .field("ut_tv", &self.ut_tv)
537 .field("ut_addr_v6", &self.ut_addr_v6)
538 .field("unused", &self.unused)
539 .finish()
540 }
541 }
542
543 impl ::hash::Hash for utmp {
544 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
545 self.ut_type.hash(state);
546 self.ut_pid.hash(state);
547 self.ut_line.hash(state);
548 self.ut_id.hash(state);
549 self.ut_user.hash(state);
550 self.ut_host.hash(state);
551 self.ut_exit.hash(state);
552 self.ut_session.hash(state);
553 self.ut_tv.hash(state);
554 self.ut_addr_v6.hash(state);
555 self.unused.hash(state);
556 }
557 }
558
559 impl PartialEq for sockaddr_alg {
560 fn eq(&self, other: &sockaddr_alg) -> bool {
561 self.salg_family == other.salg_family
562 && self
563 .salg_type
564 .iter()
565 .zip(other.salg_type.iter())
566 .all(|(a, b)| a == b)
567 && self.salg_feat == other.salg_feat
568 && self.salg_mask == other.salg_mask
569 && self
570 .salg_name
571 .iter()
572 .zip(other.salg_name.iter())
573 .all(|(a, b)| a == b)
574 }
575 }
576
577 impl Eq for sockaddr_alg {}
578
579 impl ::fmt::Debug for sockaddr_alg {
580 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
581 f.debug_struct("sockaddr_alg")
582 .field("salg_family", &self.salg_family)
583 .field("salg_type", &self.salg_type)
584 .field("salg_feat", &self.salg_feat)
585 .field("salg_mask", &self.salg_mask)
586 .field("salg_name", &&self.salg_name[..])
587 .finish()
588 }
589 }
590
591 impl ::hash::Hash for sockaddr_alg {
592 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
593 self.salg_family.hash(state);
594 self.salg_type.hash(state);
595 self.salg_feat.hash(state);
596 self.salg_mask.hash(state);
597 self.salg_name.hash(state);
598 }
599 }
600
fc512014 601 #[allow(deprecated)]
532ac7d7
XL
602 impl af_alg_iv {
603 fn as_slice(&self) -> &[u8] {
604 unsafe {
605 ::core::slice::from_raw_parts(
606 self.iv.as_ptr(),
607 self.ivlen as usize
608 )
609 }
610 }
611 }
612
fc512014 613 #[allow(deprecated)]
532ac7d7
XL
614 impl PartialEq for af_alg_iv {
615 fn eq(&self, other: &af_alg_iv) -> bool {
616 *self.as_slice() == *other.as_slice()
617 }
618 }
619
fc512014 620 #[allow(deprecated)]
532ac7d7
XL
621 impl Eq for af_alg_iv {}
622
fc512014 623 #[allow(deprecated)]
532ac7d7
XL
624 impl ::fmt::Debug for af_alg_iv {
625 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
626 f.debug_struct("af_alg_iv")
fc512014 627 .field("ivlen", &self.ivlen)
532ac7d7
XL
628 .finish()
629 }
630 }
631
fc512014 632 #[allow(deprecated)]
532ac7d7
XL
633 impl ::hash::Hash for af_alg_iv {
634 fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
635 self.as_slice().hash(state);
636 }
637 }
638 }
476ff2be
SL
639}
640
416331ca
XL
641pub const MADV_SOFT_OFFLINE: ::c_int = 101;
642pub const MS_NOUSER: ::c_ulong = 0xffffffff80000000;
643pub const MS_RMT_MASK: ::c_ulong = 0x02800051;
644
8bb4bdeb 645pub const O_TRUNC: ::c_int = 512;
8bb4bdeb 646pub const O_CLOEXEC: ::c_int = 0x80000;
ea8adc8c
XL
647pub const O_PATH: ::c_int = 0o10000000;
648pub const O_NOATIME: ::c_int = 0o1000000;
8bb4bdeb
XL
649
650pub const EBFONT: ::c_int = 59;
651pub const ENOSTR: ::c_int = 60;
652pub const ENODATA: ::c_int = 61;
653pub const ETIME: ::c_int = 62;
654pub const ENOSR: ::c_int = 63;
655pub const ENONET: ::c_int = 64;
656pub const ENOPKG: ::c_int = 65;
657pub const EREMOTE: ::c_int = 66;
658pub const ENOLINK: ::c_int = 67;
659pub const EADV: ::c_int = 68;
660pub const ESRMNT: ::c_int = 69;
661pub const ECOMM: ::c_int = 70;
662pub const EPROTO: ::c_int = 71;
663pub const EDOTDOT: ::c_int = 73;
664
8bb4bdeb 665pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
041b39d2
XL
666pub const EPOLLONESHOT: ::c_int = 0x40000000;
667pub const EPOLLRDHUP: ::c_int = 0x00002000;
668pub const EPOLLWAKEUP: ::c_int = 0x20000000;
8bb4bdeb 669
3dfed10e
XL
670// sys/eventfd.h
671pub const EFD_SEMAPHORE: ::c_int = 0x1;
672pub const EFD_CLOEXEC: ::c_int = O_CLOEXEC;
673pub const EFD_NONBLOCK: ::c_int = O_NONBLOCK;
674
675// sys/timerfd.h
676pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC;
677pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK;
678pub const TFD_TIMER_ABSTIME: ::c_int = 1;
679pub const TFD_TIMER_CANCEL_ON_SET: ::c_int = 2;
8bb4bdeb 680
476ff2be
SL
681pub const USER_PROCESS: ::c_short = 7;
682
3dfed10e
XL
683// linux/falloc.h
684pub const FALLOC_FL_KEEP_SIZE: ::c_int = 0x01;
685pub const FALLOC_FL_PUNCH_HOLE: ::c_int = 0x02;
686pub const FALLOC_FL_NO_HIDE_STALE: ::c_int = 0x04;
416331ca 687pub const FALLOC_FL_COLLAPSE_RANGE: ::c_int = 0x08;
3dfed10e
XL
688pub const FALLOC_FL_ZERO_RANGE: ::c_int = 0x10;
689pub const FALLOC_FL_INSERT_RANGE: ::c_int = 0x20;
690pub const FALLOC_FL_UNSHARE_RANGE: ::c_int = 0x40;
416331ca 691
476ff2be 692pub const BUFSIZ: ::c_uint = 1024;
416331ca 693pub const FILENAME_MAX: ::c_uint = 4096;
476ff2be
SL
694pub const FOPEN_MAX: ::c_uint = 20;
695pub const POSIX_FADV_DONTNEED: ::c_int = 4;
696pub const POSIX_FADV_NOREUSE: ::c_int = 5;
416331ca 697pub const L_tmpnam: ::c_uint = 4096;
476ff2be
SL
698pub const TMP_MAX: ::c_uint = 308915776;
699pub const _PC_LINK_MAX: ::c_int = 1;
700pub const _PC_MAX_CANON: ::c_int = 2;
701pub const _PC_MAX_INPUT: ::c_int = 3;
702pub const _PC_NAME_MAX: ::c_int = 4;
703pub const _PC_PATH_MAX: ::c_int = 5;
704pub const _PC_PIPE_BUF: ::c_int = 6;
041b39d2
XL
705pub const _PC_2_SYMLINKS: ::c_int = 7;
706pub const _PC_ALLOC_SIZE_MIN: ::c_int = 8;
707pub const _PC_REC_INCR_XFER_SIZE: ::c_int = 9;
708pub const _PC_REC_MAX_XFER_SIZE: ::c_int = 10;
709pub const _PC_REC_MIN_XFER_SIZE: ::c_int = 11;
710pub const _PC_REC_XFER_ALIGN: ::c_int = 12;
711pub const _PC_SYMLINK_MAX: ::c_int = 13;
476ff2be
SL
712pub const _PC_CHOWN_RESTRICTED: ::c_int = 14;
713pub const _PC_NO_TRUNC: ::c_int = 15;
714pub const _PC_VDISABLE: ::c_int = 16;
041b39d2
XL
715pub const _PC_ASYNC_IO: ::c_int = 17;
716pub const _PC_PRIO_IO: ::c_int = 18;
717pub const _PC_SYNC_IO: ::c_int = 19;
476ff2be
SL
718
719pub const FIONBIO: ::c_int = 0x5421;
720
721pub const _SC_ARG_MAX: ::c_int = 0;
722pub const _SC_BC_BASE_MAX: ::c_int = 1;
723pub const _SC_BC_DIM_MAX: ::c_int = 2;
724pub const _SC_BC_SCALE_MAX: ::c_int = 3;
725pub const _SC_BC_STRING_MAX: ::c_int = 4;
726pub const _SC_CHILD_MAX: ::c_int = 5;
727pub const _SC_CLK_TCK: ::c_int = 6;
728pub const _SC_COLL_WEIGHTS_MAX: ::c_int = 7;
729pub const _SC_EXPR_NEST_MAX: ::c_int = 8;
730pub const _SC_LINE_MAX: ::c_int = 9;
731pub const _SC_NGROUPS_MAX: ::c_int = 10;
732pub const _SC_OPEN_MAX: ::c_int = 11;
041b39d2 733pub const _SC_PASS_MAX: ::c_int = 12;
476ff2be
SL
734pub const _SC_2_C_BIND: ::c_int = 13;
735pub const _SC_2_C_DEV: ::c_int = 14;
736pub const _SC_2_C_VERSION: ::c_int = 15;
737pub const _SC_2_CHAR_TERM: ::c_int = 16;
738pub const _SC_2_FORT_DEV: ::c_int = 17;
739pub const _SC_2_FORT_RUN: ::c_int = 18;
740pub const _SC_2_LOCALEDEF: ::c_int = 19;
741pub const _SC_2_SW_DEV: ::c_int = 20;
742pub const _SC_2_UPE: ::c_int = 21;
743pub const _SC_2_VERSION: ::c_int = 22;
744pub const _SC_JOB_CONTROL: ::c_int = 23;
745pub const _SC_SAVED_IDS: ::c_int = 24;
746pub const _SC_VERSION: ::c_int = 25;
747pub const _SC_RE_DUP_MAX: ::c_int = 26;
748pub const _SC_STREAM_MAX: ::c_int = 27;
749pub const _SC_TZNAME_MAX: ::c_int = 28;
750pub const _SC_XOPEN_CRYPT: ::c_int = 29;
751pub const _SC_XOPEN_ENH_I18N: ::c_int = 30;
752pub const _SC_XOPEN_SHM: ::c_int = 31;
753pub const _SC_XOPEN_VERSION: ::c_int = 32;
754pub const _SC_XOPEN_XCU_VERSION: ::c_int = 33;
755pub const _SC_XOPEN_REALTIME: ::c_int = 34;
756pub const _SC_XOPEN_REALTIME_THREADS: ::c_int = 35;
757pub const _SC_XOPEN_LEGACY: ::c_int = 36;
758pub const _SC_ATEXIT_MAX: ::c_int = 37;
759pub const _SC_IOV_MAX: ::c_int = 38;
760pub const _SC_PAGESIZE: ::c_int = 39;
761pub const _SC_PAGE_SIZE: ::c_int = 40;
762pub const _SC_XOPEN_UNIX: ::c_int = 41;
041b39d2
XL
763pub const _SC_XBS5_ILP32_OFF32: ::c_int = 42;
764pub const _SC_XBS5_ILP32_OFFBIG: ::c_int = 43;
765pub const _SC_XBS5_LP64_OFF64: ::c_int = 44;
766pub const _SC_XBS5_LPBIG_OFFBIG: ::c_int = 45;
767pub const _SC_AIO_LISTIO_MAX: ::c_int = 46;
768pub const _SC_AIO_MAX: ::c_int = 47;
769pub const _SC_AIO_PRIO_DELTA_MAX: ::c_int = 48;
770pub const _SC_DELAYTIMER_MAX: ::c_int = 49;
771pub const _SC_MQ_OPEN_MAX: ::c_int = 50;
476ff2be 772pub const _SC_MQ_PRIO_MAX: ::c_int = 51;
041b39d2
XL
773pub const _SC_RTSIG_MAX: ::c_int = 52;
774pub const _SC_SEM_NSEMS_MAX: ::c_int = 53;
775pub const _SC_SEM_VALUE_MAX: ::c_int = 54;
776pub const _SC_SIGQUEUE_MAX: ::c_int = 55;
777pub const _SC_TIMER_MAX: ::c_int = 56;
778pub const _SC_ASYNCHRONOUS_IO: ::c_int = 57;
779pub const _SC_FSYNC: ::c_int = 58;
780pub const _SC_MAPPED_FILES: ::c_int = 59;
781pub const _SC_MEMLOCK: ::c_int = 60;
782pub const _SC_MEMLOCK_RANGE: ::c_int = 61;
783pub const _SC_MEMORY_PROTECTION: ::c_int = 62;
784pub const _SC_MESSAGE_PASSING: ::c_int = 63;
785pub const _SC_PRIORITIZED_IO: ::c_int = 64;
786pub const _SC_PRIORITY_SCHEDULING: ::c_int = 65;
787pub const _SC_REALTIME_SIGNALS: ::c_int = 66;
788pub const _SC_SEMAPHORES: ::c_int = 67;
789pub const _SC_SHARED_MEMORY_OBJECTS: ::c_int = 68;
790pub const _SC_SYNCHRONIZED_IO: ::c_int = 69;
791pub const _SC_TIMERS: ::c_int = 70;
476ff2be
SL
792pub const _SC_GETGR_R_SIZE_MAX: ::c_int = 71;
793pub const _SC_GETPW_R_SIZE_MAX: ::c_int = 72;
794pub const _SC_LOGIN_NAME_MAX: ::c_int = 73;
795pub const _SC_THREAD_DESTRUCTOR_ITERATIONS: ::c_int = 74;
796pub const _SC_THREAD_KEYS_MAX: ::c_int = 75;
797pub const _SC_THREAD_STACK_MIN: ::c_int = 76;
798pub const _SC_THREAD_THREADS_MAX: ::c_int = 77;
799pub const _SC_TTY_NAME_MAX: ::c_int = 78;
800pub const _SC_THREADS: ::c_int = 79;
801pub const _SC_THREAD_ATTR_STACKADDR: ::c_int = 80;
802pub const _SC_THREAD_ATTR_STACKSIZE: ::c_int = 81;
803pub const _SC_THREAD_PRIORITY_SCHEDULING: ::c_int = 82;
804pub const _SC_THREAD_PRIO_INHERIT: ::c_int = 83;
805pub const _SC_THREAD_PRIO_PROTECT: ::c_int = 84;
806pub const _SC_THREAD_SAFE_FUNCTIONS: ::c_int = 85;
041b39d2 807pub const _SC_NPROCESSORS_CONF: ::c_int = 96;
476ff2be 808pub const _SC_NPROCESSORS_ONLN: ::c_int = 97;
041b39d2
XL
809pub const _SC_PHYS_PAGES: ::c_int = 98;
810pub const _SC_AVPHYS_PAGES: ::c_int = 99;
811pub const _SC_MONOTONIC_CLOCK: ::c_int = 100;
476ff2be 812
8faf50e0
XL
813pub const _SC_2_PBS: ::c_int = 101;
814pub const _SC_2_PBS_ACCOUNTING: ::c_int = 102;
815pub const _SC_2_PBS_CHECKPOINT: ::c_int = 103;
816pub const _SC_2_PBS_LOCATE: ::c_int = 104;
817pub const _SC_2_PBS_MESSAGE: ::c_int = 105;
818pub const _SC_2_PBS_TRACK: ::c_int = 106;
819pub const _SC_ADVISORY_INFO: ::c_int = 107;
820pub const _SC_BARRIERS: ::c_int = 108;
821pub const _SC_CLOCK_SELECTION: ::c_int = 109;
822pub const _SC_CPUTIME: ::c_int = 110;
823pub const _SC_HOST_NAME_MAX: ::c_int = 111;
824pub const _SC_IPV6: ::c_int = 112;
825pub const _SC_RAW_SOCKETS: ::c_int = 113;
826pub const _SC_READER_WRITER_LOCKS: ::c_int = 114;
827pub const _SC_REGEXP: ::c_int = 115;
828pub const _SC_SHELL: ::c_int = 116;
829pub const _SC_SPAWN: ::c_int = 117;
830pub const _SC_SPIN_LOCKS: ::c_int = 118;
831pub const _SC_SPORADIC_SERVER: ::c_int = 119;
832pub const _SC_SS_REPL_MAX: ::c_int = 120;
833pub const _SC_SYMLOOP_MAX: ::c_int = 121;
834pub const _SC_THREAD_CPUTIME: ::c_int = 122;
835pub const _SC_THREAD_PROCESS_SHARED: ::c_int = 123;
836pub const _SC_THREAD_ROBUST_PRIO_INHERIT: ::c_int = 124;
837pub const _SC_THREAD_ROBUST_PRIO_PROTECT: ::c_int = 125;
838pub const _SC_THREAD_SPORADIC_SERVER: ::c_int = 126;
839pub const _SC_TIMEOUTS: ::c_int = 127;
840pub const _SC_TRACE: ::c_int = 128;
841pub const _SC_TRACE_EVENT_FILTER: ::c_int = 129;
842pub const _SC_TRACE_EVENT_NAME_MAX: ::c_int = 130;
843pub const _SC_TRACE_INHERIT: ::c_int = 131;
844pub const _SC_TRACE_LOG: ::c_int = 132;
845pub const _SC_TRACE_NAME_MAX: ::c_int = 133;
846pub const _SC_TRACE_SYS_MAX: ::c_int = 134;
847pub const _SC_TRACE_USER_EVENT_MAX: ::c_int = 135;
848pub const _SC_TYPED_MEMORY_OBJECTS: ::c_int = 136;
849pub const _SC_V7_ILP32_OFF32: ::c_int = 137;
850pub const _SC_V7_ILP32_OFFBIG: ::c_int = 138;
851pub const _SC_V7_LP64_OFF64: ::c_int = 139;
852pub const _SC_V7_LPBIG_OFFBIG: ::c_int = 140;
853pub const _SC_XOPEN_STREAMS: ::c_int = 141;
854pub const _SC_XOPEN_UUCP: ::c_int = 142;
855
fc512014
XL
856pub const F_LOCK: ::c_int = 1;
857pub const F_TEST: ::c_int = 3;
858pub const F_TLOCK: ::c_int = 2;
859pub const F_ULOCK: ::c_int = 0;
860
476ff2be
SL
861pub const PTHREAD_MUTEX_NORMAL: ::c_int = 0;
862pub const PTHREAD_MUTEX_RECURSIVE: ::c_int = 1;
863pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 2;
864pub const PTHREAD_MUTEX_DEFAULT: ::c_int = PTHREAD_MUTEX_NORMAL;
865
3dfed10e
XL
866// stdio.h
867pub const RENAME_NOREPLACE: ::c_int = 1;
868pub const RENAME_EXCHANGE: ::c_int = 2;
869pub const RENAME_WHITEOUT: ::c_int = 4;
870
476ff2be 871pub const FIOCLEX: ::c_int = 0x5451;
416331ca 872pub const FIONCLEX: ::c_int = 0x5450;
476ff2be 873
476ff2be
SL
874pub const SIGCHLD: ::c_int = 17;
875pub const SIGBUS: ::c_int = 7;
876pub const SIGUSR1: ::c_int = 10;
877pub const SIGUSR2: ::c_int = 12;
878pub const SIGCONT: ::c_int = 18;
879pub const SIGSTOP: ::c_int = 19;
880pub const SIGTSTP: ::c_int = 20;
881pub const SIGURG: ::c_int = 23;
882pub const SIGIO: ::c_int = 29;
883pub const SIGSYS: ::c_int = 31;
884pub const SIGSTKFLT: ::c_int = 16;
e74abb32 885#[deprecated(since = "0.2.55", note = "Use SIGSYS instead")]
476ff2be
SL
886pub const SIGUNUSED: ::c_int = 31;
887pub const SIGTTIN: ::c_int = 21;
888pub const SIGTTOU: ::c_int = 22;
889pub const SIGXCPU: ::c_int = 24;
890pub const SIGXFSZ: ::c_int = 25;
891pub const SIGVTALRM: ::c_int = 26;
892pub const SIGPROF: ::c_int = 27;
893pub const SIGWINCH: ::c_int = 28;
894pub const SIGPOLL: ::c_int = 29;
895pub const SIGPWR: ::c_int = 30;
896pub const SIG_SETMASK: ::c_int = 2;
897pub const SIG_BLOCK: ::c_int = 0x000000;
898pub const SIG_UNBLOCK: ::c_int = 0x01;
899
900pub const RUSAGE_CHILDREN: ::c_int = -1;
901
902pub const LC_PAPER: ::c_int = 7;
903pub const LC_NAME: ::c_int = 8;
904pub const LC_ADDRESS: ::c_int = 9;
905pub const LC_TELEPHONE: ::c_int = 10;
906pub const LC_MEASUREMENT: ::c_int = 11;
907pub const LC_IDENTIFICATION: ::c_int = 12;
ba9703b0
XL
908pub const LC_PAPER_MASK: ::c_int = 1 << LC_PAPER;
909pub const LC_NAME_MASK: ::c_int = 1 << LC_NAME;
910pub const LC_ADDRESS_MASK: ::c_int = 1 << LC_ADDRESS;
911pub const LC_TELEPHONE_MASK: ::c_int = 1 << LC_TELEPHONE;
912pub const LC_MEASUREMENT_MASK: ::c_int = 1 << LC_MEASUREMENT;
913pub const LC_IDENTIFICATION_MASK: ::c_int = 1 << LC_IDENTIFICATION;
476ff2be 914pub const LC_ALL_MASK: ::c_int = ::LC_CTYPE_MASK
e74abb32
XL
915 | ::LC_NUMERIC_MASK
916 | ::LC_TIME_MASK
917 | ::LC_COLLATE_MASK
918 | ::LC_MONETARY_MASK
919 | ::LC_MESSAGES_MASK
920 | LC_PAPER_MASK
921 | LC_NAME_MASK
922 | LC_ADDRESS_MASK
923 | LC_TELEPHONE_MASK
924 | LC_MEASUREMENT_MASK
925 | LC_IDENTIFICATION_MASK;
476ff2be
SL
926
927pub const MAP_ANON: ::c_int = 0x0020;
928pub const MAP_ANONYMOUS: ::c_int = 0x0020;
929pub const MAP_GROWSDOWN: ::c_int = 0x0100;
930pub const MAP_DENYWRITE: ::c_int = 0x0800;
931pub const MAP_EXECUTABLE: ::c_int = 0x01000;
932pub const MAP_LOCKED: ::c_int = 0x02000;
933pub const MAP_NORESERVE: ::c_int = 0x04000;
934pub const MAP_POPULATE: ::c_int = 0x08000;
935pub const MAP_NONBLOCK: ::c_int = 0x010000;
936pub const MAP_STACK: ::c_int = 0x020000;
937
938pub const EDEADLK: ::c_int = 35;
939pub const ENAMETOOLONG: ::c_int = 36;
940pub const ENOLCK: ::c_int = 37;
941pub const ENOSYS: ::c_int = 38;
942pub const ENOTEMPTY: ::c_int = 39;
943pub const ELOOP: ::c_int = 40;
944pub const ENOMSG: ::c_int = 42;
945pub const EIDRM: ::c_int = 43;
946pub const ECHRNG: ::c_int = 44;
947pub const EL2NSYNC: ::c_int = 45;
948pub const EL3HLT: ::c_int = 46;
949pub const EL3RST: ::c_int = 47;
950pub const ELNRNG: ::c_int = 48;
951pub const EUNATCH: ::c_int = 49;
952pub const ENOCSI: ::c_int = 50;
953pub const EL2HLT: ::c_int = 51;
954pub const EBADE: ::c_int = 52;
955pub const EBADR: ::c_int = 53;
956pub const EXFULL: ::c_int = 54;
957pub const ENOANO: ::c_int = 55;
958pub const EBADRQC: ::c_int = 56;
959pub const EBADSLT: ::c_int = 57;
960
961pub const EMULTIHOP: ::c_int = 72;
962pub const EBADMSG: ::c_int = 74;
963pub const EOVERFLOW: ::c_int = 75;
964pub const ENOTUNIQ: ::c_int = 76;
965pub const EBADFD: ::c_int = 77;
966pub const EREMCHG: ::c_int = 78;
967pub const ELIBACC: ::c_int = 79;
968pub const ELIBBAD: ::c_int = 80;
969pub const ELIBSCN: ::c_int = 81;
970pub const ELIBMAX: ::c_int = 82;
971pub const ELIBEXEC: ::c_int = 83;
972pub const EILSEQ: ::c_int = 84;
973pub const ERESTART: ::c_int = 85;
974pub const ESTRPIPE: ::c_int = 86;
975pub const EUSERS: ::c_int = 87;
976pub const ENOTSOCK: ::c_int = 88;
977pub const EDESTADDRREQ: ::c_int = 89;
978pub const EMSGSIZE: ::c_int = 90;
979pub const EPROTOTYPE: ::c_int = 91;
980pub const ENOPROTOOPT: ::c_int = 92;
981pub const EPROTONOSUPPORT: ::c_int = 93;
982pub const ESOCKTNOSUPPORT: ::c_int = 94;
983pub const EOPNOTSUPP: ::c_int = 95;
8bb4bdeb 984pub const ENOTSUP: ::c_int = EOPNOTSUPP;
476ff2be
SL
985pub const EPFNOSUPPORT: ::c_int = 96;
986pub const EAFNOSUPPORT: ::c_int = 97;
987pub const EADDRINUSE: ::c_int = 98;
988pub const EADDRNOTAVAIL: ::c_int = 99;
989pub const ENETDOWN: ::c_int = 100;
990pub const ENETUNREACH: ::c_int = 101;
991pub const ENETRESET: ::c_int = 102;
992pub const ECONNABORTED: ::c_int = 103;
993pub const ECONNRESET: ::c_int = 104;
994pub const ENOBUFS: ::c_int = 105;
995pub const EISCONN: ::c_int = 106;
996pub const ENOTCONN: ::c_int = 107;
997pub const ESHUTDOWN: ::c_int = 108;
998pub const ETOOMANYREFS: ::c_int = 109;
999pub const ETIMEDOUT: ::c_int = 110;
1000pub const ECONNREFUSED: ::c_int = 111;
1001pub const EHOSTDOWN: ::c_int = 112;
1002pub const EHOSTUNREACH: ::c_int = 113;
1003pub const EALREADY: ::c_int = 114;
1004pub const EINPROGRESS: ::c_int = 115;
1005pub const ESTALE: ::c_int = 116;
1006pub const EUCLEAN: ::c_int = 117;
1007pub const ENOTNAM: ::c_int = 118;
1008pub const ENAVAIL: ::c_int = 119;
1009pub const EISNAM: ::c_int = 120;
1010pub const EREMOTEIO: ::c_int = 121;
1011pub const EDQUOT: ::c_int = 122;
1012pub const ENOMEDIUM: ::c_int = 123;
1013pub const EMEDIUMTYPE: ::c_int = 124;
1014pub const ECANCELED: ::c_int = 125;
1015pub const ENOKEY: ::c_int = 126;
1016pub const EKEYEXPIRED: ::c_int = 127;
1017pub const EKEYREVOKED: ::c_int = 128;
1018pub const EKEYREJECTED: ::c_int = 129;
1019pub const EOWNERDEAD: ::c_int = 130;
1020pub const ENOTRECOVERABLE: ::c_int = 131;
1021
1022pub const SOCK_STREAM: ::c_int = 1;
1023pub const SOCK_DGRAM: ::c_int = 2;
1024pub const SOCK_SEQPACKET: ::c_int = 5;
abe05a73
XL
1025pub const SOCK_DCCP: ::c_int = 6;
1026pub const SOCK_PACKET: ::c_int = 10;
476ff2be 1027
fc512014
XL
1028pub const IPPROTO_MAX: ::c_int = 256;
1029
476ff2be 1030pub const SOL_SOCKET: ::c_int = 1;
8bb4bdeb
XL
1031pub const SOL_SCTP: ::c_int = 132;
1032pub const SOL_IPX: ::c_int = 256;
1033pub const SOL_AX25: ::c_int = 257;
1034pub const SOL_ATALK: ::c_int = 258;
1035pub const SOL_NETROM: ::c_int = 259;
1036pub const SOL_ROSE: ::c_int = 260;
1037
abe05a73
XL
1038/* DCCP socket options */
1039pub const DCCP_SOCKOPT_PACKET_SIZE: ::c_int = 1;
1040pub const DCCP_SOCKOPT_SERVICE: ::c_int = 2;
1041pub const DCCP_SOCKOPT_CHANGE_L: ::c_int = 3;
1042pub const DCCP_SOCKOPT_CHANGE_R: ::c_int = 4;
1043pub const DCCP_SOCKOPT_GET_CUR_MPS: ::c_int = 5;
1044pub const DCCP_SOCKOPT_SERVER_TIMEWAIT: ::c_int = 6;
1045pub const DCCP_SOCKOPT_SEND_CSCOV: ::c_int = 10;
1046pub const DCCP_SOCKOPT_RECV_CSCOV: ::c_int = 11;
1047pub const DCCP_SOCKOPT_AVAILABLE_CCIDS: ::c_int = 12;
1048pub const DCCP_SOCKOPT_CCID: ::c_int = 13;
1049pub const DCCP_SOCKOPT_TX_CCID: ::c_int = 14;
1050pub const DCCP_SOCKOPT_RX_CCID: ::c_int = 15;
1051pub const DCCP_SOCKOPT_QPOLICY_ID: ::c_int = 16;
1052pub const DCCP_SOCKOPT_QPOLICY_TXQLEN: ::c_int = 17;
1053pub const DCCP_SOCKOPT_CCID_RX_INFO: ::c_int = 128;
1054pub const DCCP_SOCKOPT_CCID_TX_INFO: ::c_int = 192;
1055
1056/// maximum number of services provided on the same listening port
1057pub const DCCP_SERVICE_LIST_MAX_LEN: ::c_int = 32;
1058
476ff2be
SL
1059pub const SO_REUSEADDR: ::c_int = 2;
1060pub const SO_TYPE: ::c_int = 3;
1061pub const SO_ERROR: ::c_int = 4;
1062pub const SO_DONTROUTE: ::c_int = 5;
1063pub const SO_BROADCAST: ::c_int = 6;
1064pub const SO_SNDBUF: ::c_int = 7;
1065pub const SO_RCVBUF: ::c_int = 8;
1066pub const SO_KEEPALIVE: ::c_int = 9;
1067pub const SO_OOBINLINE: ::c_int = 10;
041b39d2 1068pub const SO_PRIORITY: ::c_int = 12;
476ff2be 1069pub const SO_LINGER: ::c_int = 13;
041b39d2 1070pub const SO_BSDCOMPAT: ::c_int = 14;
476ff2be 1071pub const SO_REUSEPORT: ::c_int = 15;
041b39d2
XL
1072pub const SO_PASSCRED: ::c_int = 16;
1073pub const SO_PEERCRED: ::c_int = 17;
476ff2be
SL
1074pub const SO_RCVLOWAT: ::c_int = 18;
1075pub const SO_SNDLOWAT: ::c_int = 19;
1076pub const SO_RCVTIMEO: ::c_int = 20;
1077pub const SO_SNDTIMEO: ::c_int = 21;
041b39d2
XL
1078pub const SO_BINDTODEVICE: ::c_int = 25;
1079pub const SO_TIMESTAMP: ::c_int = 29;
476ff2be 1080pub const SO_ACCEPTCONN: ::c_int = 30;
cdc7bbd5 1081pub const SO_PEERSEC: ::c_int = 31;
041b39d2 1082pub const SO_SNDBUFFORCE: ::c_int = 32;
3b2f2976 1083pub const SO_RCVBUFFORCE: ::c_int = 33;
cdc7bbd5 1084pub const SO_PASSSEC: ::c_int = 34;
041b39d2
XL
1085pub const SO_MARK: ::c_int = 36;
1086pub const SO_PROTOCOL: ::c_int = 38;
1087pub const SO_DOMAIN: ::c_int = 39;
1088pub const SO_RXQ_OVFL: ::c_int = 40;
1089pub const SO_PEEK_OFF: ::c_int = 42;
1090pub const SO_BUSY_POLL: ::c_int = 46;
476ff2be 1091
fc512014
XL
1092pub const TCP_ULP: ::c_int = 31;
1093
0731742a
XL
1094pub const IPTOS_ECN_NOTECT: u8 = 0x00;
1095
476ff2be
SL
1096pub const O_ACCMODE: ::c_int = 3;
1097pub const O_APPEND: ::c_int = 1024;
1098pub const O_CREAT: ::c_int = 64;
1099pub const O_EXCL: ::c_int = 128;
1100pub const O_NOCTTY: ::c_int = 256;
1101pub const O_NONBLOCK: ::c_int = 2048;
1102pub const O_SYNC: ::c_int = 0x101000;
476ff2be
SL
1103pub const O_ASYNC: ::c_int = 0x2000;
1104pub const O_NDELAY: ::c_int = 0x800;
041b39d2 1105pub const O_DSYNC: ::c_int = 4096;
5869c6ff 1106pub const O_RSYNC: ::c_int = O_SYNC;
476ff2be
SL
1107
1108pub const NI_MAXHOST: ::size_t = 1025;
3dfed10e
XL
1109pub const NI_MAXSERV: ::size_t = 32;
1110
1111pub const NI_NOFQDN: ::c_int = 0x00000001;
1112pub const NI_NUMERICHOST: ::c_int = 0x00000002;
1113pub const NI_NAMEREQD: ::c_int = 0x00000004;
1114pub const NI_NUMERICSERV: ::c_int = 0x00000008;
1115pub const NI_DGRAM: ::c_int = 0x00000010;
476ff2be
SL
1116
1117pub const NCCS: usize = 19;
1118pub const TCSBRKP: ::c_int = 0x5425;
1119pub const TCSANOW: ::c_int = 0;
1120pub const TCSADRAIN: ::c_int = 0x1;
1121pub const TCSAFLUSH: ::c_int = 0x2;
476ff2be
SL
1122pub const VEOF: usize = 4;
1123pub const VEOL: usize = 11;
1124pub const VEOL2: usize = 16;
1125pub const VMIN: usize = 6;
1126pub const IEXTEN: ::tcflag_t = 0x00008000;
1127pub const TOSTOP: ::tcflag_t = 0x00000100;
1128pub const FLUSHO: ::tcflag_t = 0x00001000;
041b39d2 1129pub const EXTPROC: ::tcflag_t = 0o200000;
476ff2be
SL
1130
1131pub const ADFS_SUPER_MAGIC: ::c_long = 0x0000adf5;
1132pub const AFFS_SUPER_MAGIC: ::c_long = 0x0000adff;
1133pub const CODA_SUPER_MAGIC: ::c_long = 0x73757245;
1134pub const CRAMFS_MAGIC: ::c_long = 0x28cd3d45;
1135pub const EFS_SUPER_MAGIC: ::c_long = 0x00414a53;
1136pub const EXT2_SUPER_MAGIC: ::c_long = 0x0000ef53;
1137pub const EXT3_SUPER_MAGIC: ::c_long = 0x0000ef53;
1138pub const EXT4_SUPER_MAGIC: ::c_long = 0x0000ef53;
1139pub const HPFS_SUPER_MAGIC: ::c_long = 0xf995e849;
1140pub const HUGETLBFS_MAGIC: ::c_long = 0x958458f6;
1141pub const ISOFS_SUPER_MAGIC: ::c_long = 0x00009660;
1142pub const JFFS2_SUPER_MAGIC: ::c_long = 0x000072b6;
1143pub const MINIX_SUPER_MAGIC: ::c_long = 0x0000137f;
1144pub const MINIX_SUPER_MAGIC2: ::c_long = 0x0000138f;
1145pub const MINIX2_SUPER_MAGIC: ::c_long = 0x00002468;
1146pub const MINIX2_SUPER_MAGIC2: ::c_long = 0x00002478;
1147pub const MSDOS_SUPER_MAGIC: ::c_long = 0x00004d44;
1148pub const NCP_SUPER_MAGIC: ::c_long = 0x0000564c;
1149pub const NFS_SUPER_MAGIC: ::c_long = 0x00006969;
1150pub const OPENPROM_SUPER_MAGIC: ::c_long = 0x00009fa1;
1151pub const PROC_SUPER_MAGIC: ::c_long = 0x00009fa0;
1152pub const QNX4_SUPER_MAGIC: ::c_long = 0x0000002f;
1153pub const REISERFS_SUPER_MAGIC: ::c_long = 0x52654973;
1154pub const SMB_SUPER_MAGIC: ::c_long = 0x0000517b;
1155pub const TMPFS_MAGIC: ::c_long = 0x01021994;
1156pub const USBDEVICE_SUPER_MAGIC: ::c_long = 0x00009fa2;
1157
476ff2be
SL
1158pub const MAP_HUGETLB: ::c_int = 0x040000;
1159
1160pub const PTRACE_TRACEME: ::c_int = 0;
1161pub const PTRACE_PEEKTEXT: ::c_int = 1;
1162pub const PTRACE_PEEKDATA: ::c_int = 2;
1163pub const PTRACE_PEEKUSER: ::c_int = 3;
1164pub const PTRACE_POKETEXT: ::c_int = 4;
1165pub const PTRACE_POKEDATA: ::c_int = 5;
1166pub const PTRACE_POKEUSER: ::c_int = 6;
1167pub const PTRACE_CONT: ::c_int = 7;
1168pub const PTRACE_KILL: ::c_int = 8;
1169pub const PTRACE_SINGLESTEP: ::c_int = 9;
1170pub const PTRACE_ATTACH: ::c_int = 16;
1171pub const PTRACE_DETACH: ::c_int = 17;
1172pub const PTRACE_SYSCALL: ::c_int = 24;
1173pub const PTRACE_SETOPTIONS: ::c_int = 0x4200;
1174pub const PTRACE_GETEVENTMSG: ::c_int = 0x4201;
1175pub const PTRACE_GETSIGINFO: ::c_int = 0x4202;
1176pub const PTRACE_SETSIGINFO: ::c_int = 0x4203;
476ff2be 1177
3dfed10e 1178pub const PTRACE_EVENT_STOP: ::c_int = 128;
476ff2be
SL
1179
1180pub const F_GETLK: ::c_int = 5;
1181pub const F_GETOWN: ::c_int = 9;
1182pub const F_SETOWN: ::c_int = 8;
1183pub const F_SETLK: ::c_int = 6;
1184pub const F_SETLKW: ::c_int = 7;
69743fb6
XL
1185pub const F_RDLCK: ::c_int = 0;
1186pub const F_WRLCK: ::c_int = 1;
1187pub const F_UNLCK: ::c_int = 2;
ba9703b0
XL
1188pub const F_OFD_GETLK: ::c_int = 36;
1189pub const F_OFD_SETLK: ::c_int = 37;
1190pub const F_OFD_SETLKW: ::c_int = 38;
69743fb6 1191
416331ca
XL
1192pub const RLIMIT_CPU: ::c_int = 0;
1193pub const RLIMIT_FSIZE: ::c_int = 1;
1194pub const RLIMIT_DATA: ::c_int = 2;
1195pub const RLIMIT_STACK: ::c_int = 3;
1196pub const RLIMIT_CORE: ::c_int = 4;
f035d41b
XL
1197pub const RLIMIT_RSS: ::c_int = 5;
1198pub const RLIMIT_NPROC: ::c_int = 6;
1199pub const RLIMIT_NOFILE: ::c_int = 7;
1200pub const RLIMIT_MEMLOCK: ::c_int = 8;
1201pub const RLIMIT_AS: ::c_int = 9;
416331ca
XL
1202pub const RLIMIT_LOCKS: ::c_int = 10;
1203pub const RLIMIT_SIGPENDING: ::c_int = 11;
1204pub const RLIMIT_MSGQUEUE: ::c_int = 12;
1205pub const RLIMIT_NICE: ::c_int = 13;
1206pub const RLIMIT_RTPRIO: ::c_int = 14;
1207
dfeec247
XL
1208pub const RLIM_INFINITY: ::rlim_t = !0;
1209
476ff2be
SL
1210pub const TCGETS: ::c_int = 0x5401;
1211pub const TCSETS: ::c_int = 0x5402;
1212pub const TCSETSW: ::c_int = 0x5403;
1213pub const TCSETSF: ::c_int = 0x5404;
1214pub const TCGETA: ::c_int = 0x5405;
1215pub const TCSETA: ::c_int = 0x5406;
1216pub const TCSETAW: ::c_int = 0x5407;
1217pub const TCSETAF: ::c_int = 0x5408;
1218pub const TCSBRK: ::c_int = 0x5409;
1219pub const TCXONC: ::c_int = 0x540A;
1220pub const TCFLSH: ::c_int = 0x540B;
1221pub const TIOCGSOFTCAR: ::c_int = 0x5419;
1222pub const TIOCSSOFTCAR: ::c_int = 0x541A;
1223pub const TIOCINQ: ::c_int = 0x541B;
1224pub const TIOCLINUX: ::c_int = 0x541C;
1225pub const TIOCGSERIAL: ::c_int = 0x541E;
1226pub const TIOCEXCL: ::c_int = 0x540C;
1227pub const TIOCNXCL: ::c_int = 0x540D;
1228pub const TIOCSCTTY: ::c_int = 0x540E;
1229pub const TIOCGPGRP: ::c_int = 0x540F;
1230pub const TIOCSPGRP: ::c_int = 0x5410;
1231pub const TIOCOUTQ: ::c_int = 0x5411;
1232pub const TIOCSTI: ::c_int = 0x5412;
1233pub const TIOCGWINSZ: ::c_int = 0x5413;
1234pub const TIOCSWINSZ: ::c_int = 0x5414;
1235pub const TIOCMGET: ::c_int = 0x5415;
1236pub const TIOCMBIS: ::c_int = 0x5416;
1237pub const TIOCMBIC: ::c_int = 0x5417;
1238pub const TIOCMSET: ::c_int = 0x5418;
1239pub const FIONREAD: ::c_int = 0x541B;
1240pub const TIOCCONS: ::c_int = 0x541D;
f035d41b
XL
1241pub const TIOCSBRK: ::c_int = 0x5427;
1242pub const TIOCCBRK: ::c_int = 0x5428;
476ff2be 1243
2c00a5a8
XL
1244pub const ST_RDONLY: ::c_ulong = 1;
1245pub const ST_NOSUID: ::c_ulong = 2;
1246pub const ST_NODEV: ::c_ulong = 4;
1247pub const ST_NOEXEC: ::c_ulong = 8;
1248pub const ST_SYNCHRONOUS: ::c_ulong = 16;
1249pub const ST_MANDLOCK: ::c_ulong = 64;
1250pub const ST_NOATIME: ::c_ulong = 1024;
1251pub const ST_NODIRATIME: ::c_ulong = 2048;
1252pub const ST_RELATIME: ::c_ulong = 4096;
1253
476ff2be 1254pub const RTLD_NOLOAD: ::c_int = 0x4;
476ff2be
SL
1255
1256pub const SEM_FAILED: *mut sem_t = 0 as *mut sem_t;
1257
ba9703b0
XL
1258pub const AI_PASSIVE: ::c_int = 0x00000001;
1259pub const AI_CANONNAME: ::c_int = 0x00000002;
1260pub const AI_NUMERICHOST: ::c_int = 0x00000004;
1261pub const AI_NUMERICSERV: ::c_int = 0x00000008;
cdc7bbd5
XL
1262pub const AI_MASK: ::c_int =
1263 AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV | AI_ADDRCONFIG;
ba9703b0
XL
1264pub const AI_ALL: ::c_int = 0x00000100;
1265pub const AI_V4MAPPED_CFG: ::c_int = 0x00000200;
1266pub const AI_ADDRCONFIG: ::c_int = 0x00000400;
1267pub const AI_V4MAPPED: ::c_int = 0x00000800;
1268pub const AI_DEFAULT: ::c_int = AI_V4MAPPED_CFG | AI_ADDRCONFIG;
1269
476ff2be
SL
1270pub const LINUX_REBOOT_MAGIC1: ::c_int = 0xfee1dead;
1271pub const LINUX_REBOOT_MAGIC2: ::c_int = 672274793;
1272pub const LINUX_REBOOT_MAGIC2A: ::c_int = 85072278;
1273pub const LINUX_REBOOT_MAGIC2B: ::c_int = 369367448;
1274pub const LINUX_REBOOT_MAGIC2C: ::c_int = 537993216;
1275
1276pub const LINUX_REBOOT_CMD_RESTART: ::c_int = 0x01234567;
1277pub const LINUX_REBOOT_CMD_HALT: ::c_int = 0xCDEF0123;
1278pub const LINUX_REBOOT_CMD_CAD_ON: ::c_int = 0x89ABCDEF;
1279pub const LINUX_REBOOT_CMD_CAD_OFF: ::c_int = 0x00000000;
1280pub const LINUX_REBOOT_CMD_POWER_OFF: ::c_int = 0x4321FEDC;
1281pub const LINUX_REBOOT_CMD_RESTART2: ::c_int = 0xA1B2C3D4;
1282pub const LINUX_REBOOT_CMD_SW_SUSPEND: ::c_int = 0xD000FCE2;
1283pub const LINUX_REBOOT_CMD_KEXEC: ::c_int = 0x45584543;
1284
3dfed10e
XL
1285pub const REG_BASIC: ::c_int = 0;
1286pub const REG_EXTENDED: ::c_int = 1;
1287pub const REG_ICASE: ::c_int = 2;
1288pub const REG_NOSUB: ::c_int = 4;
1289pub const REG_NEWLINE: ::c_int = 8;
1290pub const REG_NOSPEC: ::c_int = 16;
1291pub const REG_PEND: ::c_int = 32;
1292pub const REG_DUMP: ::c_int = 128;
1293
1294pub const REG_NOMATCH: ::c_int = 1;
1295pub const REG_BADPAT: ::c_int = 2;
1296pub const REG_ECOLLATE: ::c_int = 3;
1297pub const REG_ECTYPE: ::c_int = 4;
1298pub const REG_EESCAPE: ::c_int = 5;
1299pub const REG_ESUBREG: ::c_int = 6;
1300pub const REG_EBRACK: ::c_int = 7;
1301pub const REG_EPAREN: ::c_int = 8;
1302pub const REG_EBRACE: ::c_int = 9;
1303pub const REG_BADBR: ::c_int = 10;
1304pub const REG_ERANGE: ::c_int = 11;
1305pub const REG_ESPACE: ::c_int = 12;
1306pub const REG_BADRPT: ::c_int = 13;
1307pub const REG_EMPTY: ::c_int = 14;
1308pub const REG_ASSERT: ::c_int = 15;
1309pub const REG_INVARG: ::c_int = 16;
1310pub const REG_ATOI: ::c_int = 255;
1311pub const REG_ITOA: ::c_int = 256;
1312
1313pub const REG_NOTBOL: ::c_int = 1;
1314pub const REG_NOTEOL: ::c_int = 2;
1315pub const REG_STARTEND: ::c_int = 4;
1316pub const REG_TRACE: ::c_int = 256;
1317pub const REG_LARGE: ::c_int = 512;
1318pub const REG_BACKR: ::c_int = 1024;
1319
476ff2be
SL
1320pub const MCL_CURRENT: ::c_int = 0x0001;
1321pub const MCL_FUTURE: ::c_int = 0x0002;
1322
476ff2be 1323pub const CBAUD: ::tcflag_t = 0o0010017;
416331ca
XL
1324pub const TAB1: ::tcflag_t = 0x00000800;
1325pub const TAB2: ::tcflag_t = 0x00001000;
1326pub const TAB3: ::tcflag_t = 0x00001800;
1327pub const CR1: ::tcflag_t = 0x00000200;
1328pub const CR2: ::tcflag_t = 0x00000400;
1329pub const CR3: ::tcflag_t = 0x00000600;
1330pub const FF1: ::tcflag_t = 0x00008000;
1331pub const BS1: ::tcflag_t = 0x00002000;
1332pub const VT1: ::tcflag_t = 0x00004000;
476ff2be
SL
1333pub const VWERASE: usize = 14;
1334pub const VREPRINT: usize = 12;
1335pub const VSUSP: usize = 10;
1336pub const VSTART: usize = 8;
1337pub const VSTOP: usize = 9;
1338pub const VDISCARD: usize = 13;
1339pub const VTIME: usize = 5;
1340pub const IXON: ::tcflag_t = 0x00000400;
1341pub const IXOFF: ::tcflag_t = 0x00001000;
1342pub const ONLCR: ::tcflag_t = 0x4;
1343pub const CSIZE: ::tcflag_t = 0x00000030;
1344pub const CS6: ::tcflag_t = 0x00000010;
1345pub const CS7: ::tcflag_t = 0x00000020;
1346pub const CS8: ::tcflag_t = 0x00000030;
1347pub const CSTOPB: ::tcflag_t = 0x00000040;
1348pub const CREAD: ::tcflag_t = 0x00000080;
1349pub const PARENB: ::tcflag_t = 0x00000100;
1350pub const PARODD: ::tcflag_t = 0x00000200;
1351pub const HUPCL: ::tcflag_t = 0x00000400;
1352pub const CLOCAL: ::tcflag_t = 0x00000800;
1353pub const ECHOKE: ::tcflag_t = 0x00000800;
1354pub const ECHOE: ::tcflag_t = 0x00000010;
1355pub const ECHOK: ::tcflag_t = 0x00000020;
1356pub const ECHONL: ::tcflag_t = 0x00000040;
1357pub const ECHOPRT: ::tcflag_t = 0x00000400;
1358pub const ECHOCTL: ::tcflag_t = 0x00000200;
1359pub const ISIG: ::tcflag_t = 0x00000001;
1360pub const ICANON: ::tcflag_t = 0x00000002;
1361pub const PENDIN: ::tcflag_t = 0x00004000;
1362pub const NOFLSH: ::tcflag_t = 0x00000080;
041b39d2 1363pub const VSWTC: usize = 7;
e74abb32
XL
1364pub const OLCUC: ::tcflag_t = 0o000002;
1365pub const NLDLY: ::tcflag_t = 0o000400;
1366pub const CRDLY: ::tcflag_t = 0o003000;
041b39d2 1367pub const TABDLY: ::tcflag_t = 0o014000;
e74abb32
XL
1368pub const BSDLY: ::tcflag_t = 0o020000;
1369pub const FFDLY: ::tcflag_t = 0o100000;
1370pub const VTDLY: ::tcflag_t = 0o040000;
1371pub const XTABS: ::tcflag_t = 0o014000;
476ff2be 1372
8bb4bdeb
XL
1373pub const B0: ::speed_t = 0o000000;
1374pub const B50: ::speed_t = 0o000001;
1375pub const B75: ::speed_t = 0o000002;
1376pub const B110: ::speed_t = 0o000003;
1377pub const B134: ::speed_t = 0o000004;
1378pub const B150: ::speed_t = 0o000005;
1379pub const B200: ::speed_t = 0o000006;
1380pub const B300: ::speed_t = 0o000007;
1381pub const B600: ::speed_t = 0o000010;
1382pub const B1200: ::speed_t = 0o000011;
1383pub const B1800: ::speed_t = 0o000012;
1384pub const B2400: ::speed_t = 0o000013;
1385pub const B4800: ::speed_t = 0o000014;
1386pub const B9600: ::speed_t = 0o000015;
1387pub const B19200: ::speed_t = 0o000016;
1388pub const B38400: ::speed_t = 0o000017;
1389pub const EXTA: ::speed_t = B19200;
1390pub const EXTB: ::speed_t = B38400;
abe05a73 1391pub const BOTHER: ::speed_t = 0o010000;
8bb4bdeb
XL
1392pub const B57600: ::speed_t = 0o010001;
1393pub const B115200: ::speed_t = 0o010002;
1394pub const B230400: ::speed_t = 0o010003;
1395pub const B460800: ::speed_t = 0o010004;
1396pub const B500000: ::speed_t = 0o010005;
1397pub const B576000: ::speed_t = 0o010006;
1398pub const B921600: ::speed_t = 0o010007;
1399pub const B1000000: ::speed_t = 0o010010;
1400pub const B1152000: ::speed_t = 0o010011;
1401pub const B1500000: ::speed_t = 0o010012;
1402pub const B2000000: ::speed_t = 0o010013;
1403pub const B2500000: ::speed_t = 0o010014;
1404pub const B3000000: ::speed_t = 0o010015;
1405pub const B3500000: ::speed_t = 0o010016;
1406pub const B4000000: ::speed_t = 0o010017;
1407
2c00a5a8
XL
1408pub const EAI_AGAIN: ::c_int = 2;
1409pub const EAI_BADFLAGS: ::c_int = 3;
1410pub const EAI_FAIL: ::c_int = 4;
1411pub const EAI_FAMILY: ::c_int = 5;
1412pub const EAI_MEMORY: ::c_int = 6;
1413pub const EAI_NODATA: ::c_int = 7;
1414pub const EAI_NONAME: ::c_int = 8;
1415pub const EAI_SERVICE: ::c_int = 9;
1416pub const EAI_SOCKTYPE: ::c_int = 10;
476ff2be 1417pub const EAI_SYSTEM: ::c_int = 11;
2c00a5a8 1418pub const EAI_OVERFLOW: ::c_int = 14;
476ff2be
SL
1419
1420pub const NETLINK_ROUTE: ::c_int = 0;
1421pub const NETLINK_UNUSED: ::c_int = 1;
1422pub const NETLINK_USERSOCK: ::c_int = 2;
1423pub const NETLINK_FIREWALL: ::c_int = 3;
1424pub const NETLINK_SOCK_DIAG: ::c_int = 4;
1425pub const NETLINK_NFLOG: ::c_int = 5;
1426pub const NETLINK_XFRM: ::c_int = 6;
1427pub const NETLINK_SELINUX: ::c_int = 7;
1428pub const NETLINK_ISCSI: ::c_int = 8;
1429pub const NETLINK_AUDIT: ::c_int = 9;
1430pub const NETLINK_FIB_LOOKUP: ::c_int = 10;
1431pub const NETLINK_CONNECTOR: ::c_int = 11;
1432pub const NETLINK_NETFILTER: ::c_int = 12;
1433pub const NETLINK_IP6_FW: ::c_int = 13;
1434pub const NETLINK_DNRTMSG: ::c_int = 14;
1435pub const NETLINK_KOBJECT_UEVENT: ::c_int = 15;
1436pub const NETLINK_GENERIC: ::c_int = 16;
1437pub const NETLINK_SCSITRANSPORT: ::c_int = 18;
1438pub const NETLINK_ECRYPTFS: ::c_int = 19;
1439pub const NETLINK_RDMA: ::c_int = 20;
1440pub const NETLINK_CRYPTO: ::c_int = 21;
1441pub const NETLINK_INET_DIAG: ::c_int = NETLINK_SOCK_DIAG;
1442
1443pub const MAX_LINKS: ::c_int = 32;
1444
1445pub const NLM_F_REQUEST: ::c_int = 1;
1446pub const NLM_F_MULTI: ::c_int = 2;
1447pub const NLM_F_ACK: ::c_int = 4;
1448pub const NLM_F_ECHO: ::c_int = 8;
1449pub const NLM_F_DUMP_INTR: ::c_int = 16;
1450
1451pub const NLM_F_ROOT: ::c_int = 0x100;
1452pub const NLM_F_MATCH: ::c_int = 0x200;
1453pub const NLM_F_ATOMIC: ::c_int = 0x400;
1454pub const NLM_F_DUMP: ::c_int = NLM_F_ROOT | NLM_F_MATCH;
1455
1456pub const NLM_F_REPLACE: ::c_int = 0x100;
1457pub const NLM_F_EXCL: ::c_int = 0x200;
1458pub const NLM_F_CREATE: ::c_int = 0x400;
1459pub const NLM_F_APPEND: ::c_int = 0x800;
1460
1461pub const NLMSG_NOOP: ::c_int = 0x1;
1462pub const NLMSG_ERROR: ::c_int = 0x2;
1463pub const NLMSG_DONE: ::c_int = 0x3;
1464pub const NLMSG_OVERRUN: ::c_int = 0x4;
1465pub const NLMSG_MIN_TYPE: ::c_int = 0x10;
1466
dfeec247
XL
1467// linux/netfilter/nfnetlink.h
1468pub const NFNLGRP_NONE: ::c_int = 0;
1469pub const NFNLGRP_CONNTRACK_NEW: ::c_int = 1;
1470pub const NFNLGRP_CONNTRACK_UPDATE: ::c_int = 2;
1471pub const NFNLGRP_CONNTRACK_DESTROY: ::c_int = 3;
1472pub const NFNLGRP_CONNTRACK_EXP_NEW: ::c_int = 4;
1473pub const NFNLGRP_CONNTRACK_EXP_UPDATE: ::c_int = 5;
1474pub const NFNLGRP_CONNTRACK_EXP_DESTROY: ::c_int = 6;
1475pub const NFNLGRP_NFTABLES: ::c_int = 7;
1476pub const NFNLGRP_ACCT_QUOTA: ::c_int = 8;
1477
1478pub const NFNETLINK_V0: ::c_int = 0;
1479
1480pub const NFNL_SUBSYS_NONE: ::c_int = 0;
1481pub const NFNL_SUBSYS_CTNETLINK: ::c_int = 1;
1482pub const NFNL_SUBSYS_CTNETLINK_EXP: ::c_int = 2;
1483pub const NFNL_SUBSYS_QUEUE: ::c_int = 3;
1484pub const NFNL_SUBSYS_ULOG: ::c_int = 4;
1485pub const NFNL_SUBSYS_OSF: ::c_int = 5;
1486pub const NFNL_SUBSYS_IPSET: ::c_int = 6;
1487pub const NFNL_SUBSYS_ACCT: ::c_int = 7;
1488pub const NFNL_SUBSYS_CTNETLINK_TIMEOUT: ::c_int = 8;
1489pub const NFNL_SUBSYS_CTHELPER: ::c_int = 9;
1490pub const NFNL_SUBSYS_NFTABLES: ::c_int = 10;
1491pub const NFNL_SUBSYS_NFT_COMPAT: ::c_int = 11;
1492pub const NFNL_SUBSYS_COUNT: ::c_int = 12;
1493
1494pub const NFNL_MSG_BATCH_BEGIN: ::c_int = NLMSG_MIN_TYPE;
1495pub const NFNL_MSG_BATCH_END: ::c_int = NLMSG_MIN_TYPE + 1;
1496
1497// linux/netfilter/nfnetlink_log.h
1498pub const NFULNL_MSG_PACKET: ::c_int = 0;
1499pub const NFULNL_MSG_CONFIG: ::c_int = 1;
1500
1501pub const NFULA_UNSPEC: ::c_int = 0;
1502pub const NFULA_PACKET_HDR: ::c_int = 1;
1503pub const NFULA_MARK: ::c_int = 2;
1504pub const NFULA_TIMESTAMP: ::c_int = 3;
1505pub const NFULA_IFINDEX_INDEV: ::c_int = 4;
1506pub const NFULA_IFINDEX_OUTDEV: ::c_int = 5;
1507pub const NFULA_IFINDEX_PHYSINDEV: ::c_int = 6;
1508pub const NFULA_IFINDEX_PHYSOUTDEV: ::c_int = 7;
1509pub const NFULA_HWADDR: ::c_int = 8;
1510pub const NFULA_PAYLOAD: ::c_int = 9;
1511pub const NFULA_PREFIX: ::c_int = 10;
1512pub const NFULA_UID: ::c_int = 11;
1513pub const NFULA_SEQ: ::c_int = 12;
1514pub const NFULA_SEQ_GLOBAL: ::c_int = 13;
1515pub const NFULA_GID: ::c_int = 14;
1516pub const NFULA_HWTYPE: ::c_int = 15;
1517pub const NFULA_HWHEADER: ::c_int = 16;
1518pub const NFULA_HWLEN: ::c_int = 17;
1519pub const NFULA_CT: ::c_int = 18;
1520pub const NFULA_CT_INFO: ::c_int = 19;
1521
1522pub const NFULNL_CFG_CMD_NONE: ::c_int = 0;
1523pub const NFULNL_CFG_CMD_BIND: ::c_int = 1;
1524pub const NFULNL_CFG_CMD_UNBIND: ::c_int = 2;
1525pub const NFULNL_CFG_CMD_PF_BIND: ::c_int = 3;
1526pub const NFULNL_CFG_CMD_PF_UNBIND: ::c_int = 4;
1527
1528pub const NFULA_CFG_UNSPEC: ::c_int = 0;
1529pub const NFULA_CFG_CMD: ::c_int = 1;
1530pub const NFULA_CFG_MODE: ::c_int = 2;
1531pub const NFULA_CFG_NLBUFSIZ: ::c_int = 3;
1532pub const NFULA_CFG_TIMEOUT: ::c_int = 4;
1533pub const NFULA_CFG_QTHRESH: ::c_int = 5;
1534pub const NFULA_CFG_FLAGS: ::c_int = 6;
1535
1536pub const NFULNL_COPY_NONE: ::c_int = 0x00;
1537pub const NFULNL_COPY_META: ::c_int = 0x01;
1538pub const NFULNL_COPY_PACKET: ::c_int = 0x02;
1539
1540pub const NFULNL_CFG_F_SEQ: ::c_int = 0x0001;
1541pub const NFULNL_CFG_F_SEQ_GLOBAL: ::c_int = 0x0002;
1542pub const NFULNL_CFG_F_CONNTRACK: ::c_int = 0x0004;
1543
ba9703b0
XL
1544// linux/netfilter/nfnetlink_log.h
1545pub const NFQNL_MSG_PACKET: ::c_int = 0;
1546pub const NFQNL_MSG_VERDICT: ::c_int = 1;
1547pub const NFQNL_MSG_CONFIG: ::c_int = 2;
1548pub const NFQNL_MSG_VERDICT_BATCH: ::c_int = 3;
1549
1550pub const NFQA_UNSPEC: ::c_int = 0;
1551pub const NFQA_PACKET_HDR: ::c_int = 1;
1552pub const NFQA_VERDICT_HDR: ::c_int = 2;
1553pub const NFQA_MARK: ::c_int = 3;
1554pub const NFQA_TIMESTAMP: ::c_int = 4;
1555pub const NFQA_IFINDEX_INDEV: ::c_int = 5;
1556pub const NFQA_IFINDEX_OUTDEV: ::c_int = 6;
1557pub const NFQA_IFINDEX_PHYSINDEV: ::c_int = 7;
1558pub const NFQA_IFINDEX_PHYSOUTDEV: ::c_int = 8;
1559pub const NFQA_HWADDR: ::c_int = 9;
1560pub const NFQA_PAYLOAD: ::c_int = 10;
1561pub const NFQA_CT: ::c_int = 11;
1562pub const NFQA_CT_INFO: ::c_int = 12;
1563pub const NFQA_CAP_LEN: ::c_int = 13;
1564pub const NFQA_SKB_INFO: ::c_int = 14;
1565pub const NFQA_EXP: ::c_int = 15;
1566pub const NFQA_UID: ::c_int = 16;
1567pub const NFQA_GID: ::c_int = 17;
1568pub const NFQA_SECCTX: ::c_int = 18;
1569/*
1570 FIXME: These are not yet available in musl sanitized kernel headers and
1571 make the tests fail. Enable them once musl has them.
1572
1573 See https://github.com/rust-lang/libc/pull/1628 for more details.
1574pub const NFQA_VLAN: ::c_int = 19;
1575pub const NFQA_L2HDR: ::c_int = 20;
1576
1577pub const NFQA_VLAN_UNSPEC: ::c_int = 0;
1578pub const NFQA_VLAN_PROTO: ::c_int = 1;
1579pub const NFQA_VLAN_TCI: ::c_int = 2;
1580*/
1581
1582pub const NFQNL_CFG_CMD_NONE: ::c_int = 0;
1583pub const NFQNL_CFG_CMD_BIND: ::c_int = 1;
1584pub const NFQNL_CFG_CMD_UNBIND: ::c_int = 2;
1585pub const NFQNL_CFG_CMD_PF_BIND: ::c_int = 3;
1586pub const NFQNL_CFG_CMD_PF_UNBIND: ::c_int = 4;
1587
1588pub const NFQNL_COPY_NONE: ::c_int = 0;
1589pub const NFQNL_COPY_META: ::c_int = 1;
1590pub const NFQNL_COPY_PACKET: ::c_int = 2;
1591
1592pub const NFQA_CFG_UNSPEC: ::c_int = 0;
1593pub const NFQA_CFG_CMD: ::c_int = 1;
1594pub const NFQA_CFG_PARAMS: ::c_int = 2;
1595pub const NFQA_CFG_QUEUE_MAXLEN: ::c_int = 3;
1596pub const NFQA_CFG_MASK: ::c_int = 4;
1597pub const NFQA_CFG_FLAGS: ::c_int = 5;
1598
1599pub const NFQA_CFG_F_FAIL_OPEN: ::c_int = 0x0001;
1600pub const NFQA_CFG_F_CONNTRACK: ::c_int = 0x0002;
1601pub const NFQA_CFG_F_GSO: ::c_int = 0x0004;
1602pub const NFQA_CFG_F_UID_GID: ::c_int = 0x0008;
1603pub const NFQA_CFG_F_SECCTX: ::c_int = 0x0010;
1604pub const NFQA_CFG_F_MAX: ::c_int = 0x0020;
1605
1606pub const NFQA_SKB_CSUMNOTREADY: ::c_int = 0x0001;
1607pub const NFQA_SKB_GSO: ::c_int = 0x0002;
1608pub const NFQA_SKB_CSUM_NOTVERIFIED: ::c_int = 0x0004;
1609
2c00a5a8
XL
1610pub const GENL_NAMSIZ: ::c_int = 16;
1611
1612pub const GENL_MIN_ID: ::c_int = NLMSG_MIN_TYPE;
1613pub const GENL_MAX_ID: ::c_int = 1023;
1614
1615pub const GENL_ADMIN_PERM: ::c_int = 0x01;
1616pub const GENL_CMD_CAP_DO: ::c_int = 0x02;
1617pub const GENL_CMD_CAP_DUMP: ::c_int = 0x04;
1618pub const GENL_CMD_CAP_HASPOL: ::c_int = 0x08;
1619pub const GENL_UNS_ADMIN_PERM: ::c_int = 0x10;
1620
1621pub const GENL_ID_CTRL: ::c_int = NLMSG_MIN_TYPE;
1622pub const GENL_ID_VFS_DQUOT: ::c_int = NLMSG_MIN_TYPE + 1;
1623pub const GENL_ID_PMCRAID: ::c_int = NLMSG_MIN_TYPE + 2;
1624
1625pub const CTRL_CMD_UNSPEC: ::c_int = 0;
1626pub const CTRL_CMD_NEWFAMILY: ::c_int = 1;
1627pub const CTRL_CMD_DELFAMILY: ::c_int = 2;
1628pub const CTRL_CMD_GETFAMILY: ::c_int = 3;
1629pub const CTRL_CMD_NEWOPS: ::c_int = 4;
1630pub const CTRL_CMD_DELOPS: ::c_int = 5;
1631pub const CTRL_CMD_GETOPS: ::c_int = 6;
1632pub const CTRL_CMD_NEWMCAST_GRP: ::c_int = 7;
1633pub const CTRL_CMD_DELMCAST_GRP: ::c_int = 8;
1634pub const CTRL_CMD_GETMCAST_GRP: ::c_int = 9;
1635
1636pub const CTRL_ATTR_UNSPEC: ::c_int = 0;
1637pub const CTRL_ATTR_FAMILY_ID: ::c_int = 1;
1638pub const CTRL_ATTR_FAMILY_NAME: ::c_int = 2;
1639pub const CTRL_ATTR_VERSION: ::c_int = 3;
1640pub const CTRL_ATTR_HDRSIZE: ::c_int = 4;
1641pub const CTRL_ATTR_MAXATTR: ::c_int = 5;
1642pub const CTRL_ATTR_OPS: ::c_int = 6;
1643pub const CTRL_ATTR_MCAST_GROUPS: ::c_int = 7;
1644
1645pub const CTRL_ATTR_OP_UNSPEC: ::c_int = 0;
1646pub const CTRL_ATTR_OP_ID: ::c_int = 1;
1647pub const CTRL_ATTR_OP_FLAGS: ::c_int = 2;
1648
1649pub const CTRL_ATTR_MCAST_GRP_UNSPEC: ::c_int = 0;
1650pub const CTRL_ATTR_MCAST_GRP_NAME: ::c_int = 1;
1651pub const CTRL_ATTR_MCAST_GRP_ID: ::c_int = 2;
1652
476ff2be
SL
1653pub const NETLINK_ADD_MEMBERSHIP: ::c_int = 1;
1654pub const NETLINK_DROP_MEMBERSHIP: ::c_int = 2;
1655pub const NETLINK_PKTINFO: ::c_int = 3;
1656pub const NETLINK_BROADCAST_ERROR: ::c_int = 4;
1657pub const NETLINK_NO_ENOBUFS: ::c_int = 5;
1658pub const NETLINK_RX_RING: ::c_int = 6;
1659pub const NETLINK_TX_RING: ::c_int = 7;
1660
ff7c6d11
XL
1661pub const GRND_NONBLOCK: ::c_uint = 0x0001;
1662pub const GRND_RANDOM: ::c_uint = 0x0002;
1663
2c00a5a8
XL
1664pub const SECCOMP_MODE_DISABLED: ::c_uint = 0;
1665pub const SECCOMP_MODE_STRICT: ::c_uint = 1;
1666pub const SECCOMP_MODE_FILTER: ::c_uint = 2;
1667
476ff2be
SL
1668pub const NLA_F_NESTED: ::c_int = 1 << 15;
1669pub const NLA_F_NET_BYTEORDER: ::c_int = 1 << 14;
1670pub const NLA_TYPE_MASK: ::c_int = !(NLA_F_NESTED | NLA_F_NET_BYTEORDER);
1671
2c00a5a8
XL
1672pub const NLA_ALIGNTO: ::c_int = 4;
1673
8bb4bdeb 1674pub const SIGEV_THREAD_ID: ::c_int = 4;
476ff2be 1675
041b39d2
XL
1676pub const CIBAUD: ::tcflag_t = 0o02003600000;
1677pub const CBAUDEX: ::tcflag_t = 0o010000;
1678
1679pub const TIOCM_LE: ::c_int = 0x001;
1680pub const TIOCM_DTR: ::c_int = 0x002;
1681pub const TIOCM_RTS: ::c_int = 0x004;
1682pub const TIOCM_ST: ::c_int = 0x008;
1683pub const TIOCM_SR: ::c_int = 0x010;
1684pub const TIOCM_CTS: ::c_int = 0x020;
1685pub const TIOCM_CAR: ::c_int = 0x040;
1686pub const TIOCM_RNG: ::c_int = 0x080;
1687pub const TIOCM_DSR: ::c_int = 0x100;
1688pub const TIOCM_CD: ::c_int = TIOCM_CAR;
1689pub const TIOCM_RI: ::c_int = TIOCM_RNG;
1690
3b2f2976
XL
1691pub const POLLWRNORM: ::c_short = 0x100;
1692pub const POLLWRBAND: ::c_short = 0x200;
1693
1694pub const SFD_CLOEXEC: ::c_int = O_CLOEXEC;
1695pub const SFD_NONBLOCK: ::c_int = O_NONBLOCK;
1696
ea8adc8c
XL
1697pub const SOCK_NONBLOCK: ::c_int = O_NONBLOCK;
1698
1699pub const SO_ORIGINAL_DST: ::c_int = 80;
29967ef6
XL
1700
1701pub const IP_RECVFRAGSIZE: ::c_int = 25;
1702
ba9703b0 1703pub const IPV6_FLOWINFO: ::c_int = 11;
29967ef6
XL
1704pub const IPV6_MULTICAST_ALL: ::c_int = 29;
1705pub const IPV6_ROUTER_ALERT_ISOLATE: ::c_int = 30;
532ac7d7
XL
1706pub const IPV6_FLOWLABEL_MGR: ::c_int = 32;
1707pub const IPV6_FLOWINFO_SEND: ::c_int = 33;
29967ef6
XL
1708pub const IPV6_RECVFRAGSIZE: ::c_int = 77;
1709pub const IPV6_FREEBIND: ::c_int = 78;
532ac7d7
XL
1710pub const IPV6_FLOWINFO_FLOWLABEL: ::c_int = 0x000fffff;
1711pub const IPV6_FLOWINFO_PRIORITY: ::c_int = 0x0ff00000;
dfeec247 1712
ea8adc8c
XL
1713pub const IUTF8: ::tcflag_t = 0x00004000;
1714pub const CMSPAR: ::tcflag_t = 0o10000000000;
1715pub const O_TMPFILE: ::c_int = 0o20000000 | O_DIRECTORY;
1716
ff7c6d11
XL
1717pub const MFD_CLOEXEC: ::c_uint = 0x0001;
1718pub const MFD_ALLOW_SEALING: ::c_uint = 0x0002;
0731742a 1719pub const MFD_HUGETLB: ::c_uint = 0x0004;
ff7c6d11 1720
2c00a5a8
XL
1721// linux/netfilter.h
1722pub const NF_DROP: ::c_int = 0;
e74abb32
XL
1723pub const NF_ACCEPT: ::c_int = 1;
1724pub const NF_STOLEN: ::c_int = 2;
1725pub const NF_QUEUE: ::c_int = 3;
1726pub const NF_REPEAT: ::c_int = 4;
1727pub const NF_STOP: ::c_int = 5;
2c00a5a8
XL
1728pub const NF_MAX_VERDICT: ::c_int = NF_STOP;
1729
1730pub const NF_VERDICT_MASK: ::c_int = 0x000000ff;
1731pub const NF_VERDICT_FLAG_QUEUE_BYPASS: ::c_int = 0x00008000;
1732
1733pub const NF_VERDICT_QMASK: ::c_int = 0xffff0000;
1734pub const NF_VERDICT_QBITS: ::c_int = 16;
1735
1736pub const NF_VERDICT_BITS: ::c_int = 16;
1737
1738pub const NF_INET_PRE_ROUTING: ::c_int = 0;
1739pub const NF_INET_LOCAL_IN: ::c_int = 1;
1740pub const NF_INET_FORWARD: ::c_int = 2;
1741pub const NF_INET_LOCAL_OUT: ::c_int = 3;
1742pub const NF_INET_POST_ROUTING: ::c_int = 4;
1743pub const NF_INET_NUMHOOKS: ::c_int = 5;
1744
1745pub const NF_NETDEV_INGRESS: ::c_int = 0;
1746pub const NF_NETDEV_NUMHOOKS: ::c_int = 1;
1747
1748pub const NFPROTO_UNSPEC: ::c_int = 0;
1749pub const NFPROTO_INET: ::c_int = 1;
1750pub const NFPROTO_IPV4: ::c_int = 2;
1751pub const NFPROTO_ARP: ::c_int = 3;
1752pub const NFPROTO_NETDEV: ::c_int = 5;
1753pub const NFPROTO_BRIDGE: ::c_int = 7;
1754pub const NFPROTO_IPV6: ::c_int = 10;
1755pub const NFPROTO_DECNET: ::c_int = 12;
1756pub const NFPROTO_NUMPROTO: ::c_int = 13;
1757
1758// linux/netfilter_ipv4.h
1759pub const NF_IP_PRE_ROUTING: ::c_int = 0;
1760pub const NF_IP_LOCAL_IN: ::c_int = 1;
1761pub const NF_IP_FORWARD: ::c_int = 2;
1762pub const NF_IP_LOCAL_OUT: ::c_int = 3;
1763pub const NF_IP_POST_ROUTING: ::c_int = 4;
1764pub const NF_IP_NUMHOOKS: ::c_int = 5;
1765
1766pub const NF_IP_PRI_FIRST: ::c_int = ::INT_MIN;
1767pub const NF_IP_PRI_CONNTRACK_DEFRAG: ::c_int = -400;
1768pub const NF_IP_PRI_RAW: ::c_int = -300;
1769pub const NF_IP_PRI_SELINUX_FIRST: ::c_int = -225;
1770pub const NF_IP_PRI_CONNTRACK: ::c_int = -200;
1771pub const NF_IP_PRI_MANGLE: ::c_int = -150;
1772pub const NF_IP_PRI_NAT_DST: ::c_int = -100;
1773pub const NF_IP_PRI_FILTER: ::c_int = 0;
1774pub const NF_IP_PRI_SECURITY: ::c_int = 50;
1775pub const NF_IP_PRI_NAT_SRC: ::c_int = 100;
1776pub const NF_IP_PRI_SELINUX_LAST: ::c_int = 225;
1777pub const NF_IP_PRI_CONNTRACK_HELPER: ::c_int = 300;
1778pub const NF_IP_PRI_CONNTRACK_CONFIRM: ::c_int = ::INT_MAX;
1779pub const NF_IP_PRI_LAST: ::c_int = ::INT_MAX;
1780
1781// linux/netfilter_ipv6.h
1782pub const NF_IP6_PRE_ROUTING: ::c_int = 0;
1783pub const NF_IP6_LOCAL_IN: ::c_int = 1;
1784pub const NF_IP6_FORWARD: ::c_int = 2;
1785pub const NF_IP6_LOCAL_OUT: ::c_int = 3;
1786pub const NF_IP6_POST_ROUTING: ::c_int = 4;
1787pub const NF_IP6_NUMHOOKS: ::c_int = 5;
1788
1789pub const NF_IP6_PRI_FIRST: ::c_int = ::INT_MIN;
1790pub const NF_IP6_PRI_CONNTRACK_DEFRAG: ::c_int = -400;
1791pub const NF_IP6_PRI_RAW: ::c_int = -300;
1792pub const NF_IP6_PRI_SELINUX_FIRST: ::c_int = -225;
1793pub const NF_IP6_PRI_CONNTRACK: ::c_int = -200;
1794pub const NF_IP6_PRI_MANGLE: ::c_int = -150;
1795pub const NF_IP6_PRI_NAT_DST: ::c_int = -100;
1796pub const NF_IP6_PRI_FILTER: ::c_int = 0;
1797pub const NF_IP6_PRI_SECURITY: ::c_int = 50;
1798pub const NF_IP6_PRI_NAT_SRC: ::c_int = 100;
1799pub const NF_IP6_PRI_SELINUX_LAST: ::c_int = 225;
1800pub const NF_IP6_PRI_CONNTRACK_HELPER: ::c_int = 300;
1801pub const NF_IP6_PRI_LAST: ::c_int = ::INT_MAX;
1802
ba9703b0
XL
1803// linux/netfilter_ipv6/ip6_tables.h
1804pub const IP6T_SO_ORIGINAL_DST: ::c_int = 80;
1805
2c00a5a8 1806// linux/netfilter/nf_tables.h
416331ca
XL
1807pub const NFT_TABLE_MAXNAMELEN: ::c_int = 256;
1808pub const NFT_CHAIN_MAXNAMELEN: ::c_int = 256;
1809pub const NFT_SET_MAXNAMELEN: ::c_int = 256;
1810pub const NFT_OBJ_MAXNAMELEN: ::c_int = 256;
2c00a5a8
XL
1811pub const NFT_USERDATA_MAXLEN: ::c_int = 256;
1812
1813pub const NFT_REG_VERDICT: ::c_int = 0;
1814pub const NFT_REG_1: ::c_int = 1;
1815pub const NFT_REG_2: ::c_int = 2;
1816pub const NFT_REG_3: ::c_int = 3;
1817pub const NFT_REG_4: ::c_int = 4;
1818pub const __NFT_REG_MAX: ::c_int = 5;
1819pub const NFT_REG32_00: ::c_int = 8;
1820pub const NFT_REG32_01: ::c_int = 9;
1821pub const NFT_REG32_02: ::c_int = 10;
1822pub const NFT_REG32_03: ::c_int = 11;
1823pub const NFT_REG32_04: ::c_int = 12;
1824pub const NFT_REG32_05: ::c_int = 13;
1825pub const NFT_REG32_06: ::c_int = 14;
1826pub const NFT_REG32_07: ::c_int = 15;
1827pub const NFT_REG32_08: ::c_int = 16;
1828pub const NFT_REG32_09: ::c_int = 17;
1829pub const NFT_REG32_10: ::c_int = 18;
1830pub const NFT_REG32_11: ::c_int = 19;
1831pub const NFT_REG32_12: ::c_int = 20;
1832pub const NFT_REG32_13: ::c_int = 21;
1833pub const NFT_REG32_14: ::c_int = 22;
1834pub const NFT_REG32_15: ::c_int = 23;
1835
1836pub const NFT_REG_SIZE: ::c_int = 16;
1837pub const NFT_REG32_SIZE: ::c_int = 4;
1838
1839pub const NFT_CONTINUE: ::c_int = -1;
1840pub const NFT_BREAK: ::c_int = -2;
1841pub const NFT_JUMP: ::c_int = -3;
1842pub const NFT_GOTO: ::c_int = -4;
1843pub const NFT_RETURN: ::c_int = -5;
1844
1845pub const NFT_MSG_NEWTABLE: ::c_int = 0;
1846pub const NFT_MSG_GETTABLE: ::c_int = 1;
1847pub const NFT_MSG_DELTABLE: ::c_int = 2;
1848pub const NFT_MSG_NEWCHAIN: ::c_int = 3;
1849pub const NFT_MSG_GETCHAIN: ::c_int = 4;
1850pub const NFT_MSG_DELCHAIN: ::c_int = 5;
1851pub const NFT_MSG_NEWRULE: ::c_int = 6;
1852pub const NFT_MSG_GETRULE: ::c_int = 7;
1853pub const NFT_MSG_DELRULE: ::c_int = 8;
1854pub const NFT_MSG_NEWSET: ::c_int = 9;
1855pub const NFT_MSG_GETSET: ::c_int = 10;
1856pub const NFT_MSG_DELSET: ::c_int = 11;
1857pub const NFT_MSG_NEWSETELEM: ::c_int = 12;
1858pub const NFT_MSG_GETSETELEM: ::c_int = 13;
1859pub const NFT_MSG_DELSETELEM: ::c_int = 14;
1860pub const NFT_MSG_NEWGEN: ::c_int = 15;
1861pub const NFT_MSG_GETGEN: ::c_int = 16;
1862pub const NFT_MSG_TRACE: ::c_int = 17;
1863pub const NFT_MSG_NEWOBJ: ::c_int = 18;
1864pub const NFT_MSG_GETOBJ: ::c_int = 19;
1865pub const NFT_MSG_DELOBJ: ::c_int = 20;
1866pub const NFT_MSG_GETOBJ_RESET: ::c_int = 21;
416331ca 1867pub const NFT_MSG_MAX: ::c_int = 25;
2c00a5a8
XL
1868
1869pub const NFT_SET_ANONYMOUS: ::c_int = 0x1;
1870pub const NFT_SET_CONSTANT: ::c_int = 0x2;
1871pub const NFT_SET_INTERVAL: ::c_int = 0x4;
1872pub const NFT_SET_MAP: ::c_int = 0x8;
1873pub const NFT_SET_TIMEOUT: ::c_int = 0x10;
1874pub const NFT_SET_EVAL: ::c_int = 0x20;
1875
1876pub const NFT_SET_POL_PERFORMANCE: ::c_int = 0;
1877pub const NFT_SET_POL_MEMORY: ::c_int = 1;
1878
1879pub const NFT_SET_ELEM_INTERVAL_END: ::c_int = 0x1;
1880
1881pub const NFT_DATA_VALUE: ::c_uint = 0;
1882pub const NFT_DATA_VERDICT: ::c_uint = 0xffffff00;
1883
1884pub const NFT_DATA_RESERVED_MASK: ::c_uint = 0xffffff00;
1885
1886pub const NFT_DATA_VALUE_MAXLEN: ::c_int = 64;
1887
1888pub const NFT_BYTEORDER_NTOH: ::c_int = 0;
1889pub const NFT_BYTEORDER_HTON: ::c_int = 1;
1890
1891pub const NFT_CMP_EQ: ::c_int = 0;
1892pub const NFT_CMP_NEQ: ::c_int = 1;
1893pub const NFT_CMP_LT: ::c_int = 2;
1894pub const NFT_CMP_LTE: ::c_int = 3;
1895pub const NFT_CMP_GT: ::c_int = 4;
1896pub const NFT_CMP_GTE: ::c_int = 5;
1897
1898pub const NFT_RANGE_EQ: ::c_int = 0;
1899pub const NFT_RANGE_NEQ: ::c_int = 1;
1900
ba9703b0 1901pub const NFT_LOOKUP_F_INV: ::c_int = 1 << 0;
2c00a5a8
XL
1902
1903pub const NFT_DYNSET_OP_ADD: ::c_int = 0;
1904pub const NFT_DYNSET_OP_UPDATE: ::c_int = 1;
1905
ba9703b0 1906pub const NFT_DYNSET_F_INV: ::c_int = 1 << 0;
2c00a5a8
XL
1907
1908pub const NFT_PAYLOAD_LL_HEADER: ::c_int = 0;
1909pub const NFT_PAYLOAD_NETWORK_HEADER: ::c_int = 1;
1910pub const NFT_PAYLOAD_TRANSPORT_HEADER: ::c_int = 2;
1911
1912pub const NFT_PAYLOAD_CSUM_NONE: ::c_int = 0;
1913pub const NFT_PAYLOAD_CSUM_INET: ::c_int = 1;
1914
1915pub const NFT_META_LEN: ::c_int = 0;
1916pub const NFT_META_PROTOCOL: ::c_int = 1;
1917pub const NFT_META_PRIORITY: ::c_int = 2;
1918pub const NFT_META_MARK: ::c_int = 3;
1919pub const NFT_META_IIF: ::c_int = 4;
1920pub const NFT_META_OIF: ::c_int = 5;
1921pub const NFT_META_IIFNAME: ::c_int = 6;
1922pub const NFT_META_OIFNAME: ::c_int = 7;
1923pub const NFT_META_IIFTYPE: ::c_int = 8;
1924pub const NFT_META_OIFTYPE: ::c_int = 9;
1925pub const NFT_META_SKUID: ::c_int = 10;
1926pub const NFT_META_SKGID: ::c_int = 11;
1927pub const NFT_META_NFTRACE: ::c_int = 12;
1928pub const NFT_META_RTCLASSID: ::c_int = 13;
1929pub const NFT_META_SECMARK: ::c_int = 14;
1930pub const NFT_META_NFPROTO: ::c_int = 15;
1931pub const NFT_META_L4PROTO: ::c_int = 16;
1932pub const NFT_META_BRI_IIFNAME: ::c_int = 17;
1933pub const NFT_META_BRI_OIFNAME: ::c_int = 18;
1934pub const NFT_META_PKTTYPE: ::c_int = 19;
1935pub const NFT_META_CPU: ::c_int = 20;
1936pub const NFT_META_IIFGROUP: ::c_int = 21;
1937pub const NFT_META_OIFGROUP: ::c_int = 22;
1938pub const NFT_META_CGROUP: ::c_int = 23;
1939pub const NFT_META_PRANDOM: ::c_int = 24;
1940
1941pub const NFT_CT_STATE: ::c_int = 0;
1942pub const NFT_CT_DIRECTION: ::c_int = 1;
1943pub const NFT_CT_STATUS: ::c_int = 2;
1944pub const NFT_CT_MARK: ::c_int = 3;
1945pub const NFT_CT_SECMARK: ::c_int = 4;
1946pub const NFT_CT_EXPIRATION: ::c_int = 5;
1947pub const NFT_CT_HELPER: ::c_int = 6;
1948pub const NFT_CT_L3PROTOCOL: ::c_int = 7;
1949pub const NFT_CT_SRC: ::c_int = 8;
1950pub const NFT_CT_DST: ::c_int = 9;
1951pub const NFT_CT_PROTOCOL: ::c_int = 10;
1952pub const NFT_CT_PROTO_SRC: ::c_int = 11;
1953pub const NFT_CT_PROTO_DST: ::c_int = 12;
1954pub const NFT_CT_LABELS: ::c_int = 13;
1955pub const NFT_CT_PKTS: ::c_int = 14;
1956pub const NFT_CT_BYTES: ::c_int = 15;
1957
1958pub const NFT_LIMIT_PKTS: ::c_int = 0;
1959pub const NFT_LIMIT_PKT_BYTES: ::c_int = 1;
1960
ba9703b0 1961pub const NFT_LIMIT_F_INV: ::c_int = 1 << 0;
2c00a5a8
XL
1962
1963pub const NFT_QUEUE_FLAG_BYPASS: ::c_int = 0x01;
1964pub const NFT_QUEUE_FLAG_CPU_FANOUT: ::c_int = 0x02;
1965pub const NFT_QUEUE_FLAG_MASK: ::c_int = 0x03;
1966
ba9703b0 1967pub const NFT_QUOTA_F_INV: ::c_int = 1 << 0;
2c00a5a8
XL
1968
1969pub const NFT_REJECT_ICMP_UNREACH: ::c_int = 0;
1970pub const NFT_REJECT_TCP_RST: ::c_int = 1;
1971pub const NFT_REJECT_ICMPX_UNREACH: ::c_int = 2;
1972
1973pub const NFT_REJECT_ICMPX_NO_ROUTE: ::c_int = 0;
1974pub const NFT_REJECT_ICMPX_PORT_UNREACH: ::c_int = 1;
1975pub const NFT_REJECT_ICMPX_HOST_UNREACH: ::c_int = 2;
1976pub const NFT_REJECT_ICMPX_ADMIN_PROHIBITED: ::c_int = 3;
1977
1978pub const NFT_NAT_SNAT: ::c_int = 0;
1979pub const NFT_NAT_DNAT: ::c_int = 1;
1980
1981pub const NFT_TRACETYPE_UNSPEC: ::c_int = 0;
1982pub const NFT_TRACETYPE_POLICY: ::c_int = 1;
1983pub const NFT_TRACETYPE_RETURN: ::c_int = 2;
1984pub const NFT_TRACETYPE_RULE: ::c_int = 3;
1985
1986pub const NFT_NG_INCREMENTAL: ::c_int = 0;
1987pub const NFT_NG_RANDOM: ::c_int = 1;
1988
1989pub const IFF_TUN: ::c_int = 0x0001;
1990pub const IFF_TAP: ::c_int = 0x0002;
1991pub const IFF_NO_PI: ::c_int = 0x1000;
1992
1993// start android/platform/bionic/libc/kernel/uapi/linux/if_ether.h
1994// from https://android.googlesource.com/
1995// platform/bionic/+/master/libc/kernel/uapi/linux/if_ether.h
1996pub const ETH_ALEN: ::c_int = 6;
1997pub const ETH_HLEN: ::c_int = 14;
1998pub const ETH_ZLEN: ::c_int = 60;
1999pub const ETH_DATA_LEN: ::c_int = 1500;
2000pub const ETH_FRAME_LEN: ::c_int = 1514;
2001pub const ETH_FCS_LEN: ::c_int = 4;
2002pub const ETH_MIN_MTU: ::c_int = 68;
2003pub const ETH_MAX_MTU: ::c_int = 0xFFFF;
2004pub const ETH_P_LOOP: ::c_int = 0x0060;
2005pub const ETH_P_PUP: ::c_int = 0x0200;
2006pub const ETH_P_PUPAT: ::c_int = 0x0201;
2007pub const ETH_P_TSN: ::c_int = 0x22F0;
2008pub const ETH_P_IP: ::c_int = 0x0800;
2009pub const ETH_P_X25: ::c_int = 0x0805;
2010pub const ETH_P_ARP: ::c_int = 0x0806;
2011pub const ETH_P_BPQ: ::c_int = 0x08FF;
2012pub const ETH_P_IEEEPUP: ::c_int = 0x0a00;
2013pub const ETH_P_IEEEPUPAT: ::c_int = 0x0a01;
2014pub const ETH_P_BATMAN: ::c_int = 0x4305;
2015pub const ETH_P_DEC: ::c_int = 0x6000;
2016pub const ETH_P_DNA_DL: ::c_int = 0x6001;
2017pub const ETH_P_DNA_RC: ::c_int = 0x6002;
2018pub const ETH_P_DNA_RT: ::c_int = 0x6003;
2019pub const ETH_P_LAT: ::c_int = 0x6004;
2020pub const ETH_P_DIAG: ::c_int = 0x6005;
2021pub const ETH_P_CUST: ::c_int = 0x6006;
2022pub const ETH_P_SCA: ::c_int = 0x6007;
2023pub const ETH_P_TEB: ::c_int = 0x6558;
2024pub const ETH_P_RARP: ::c_int = 0x8035;
2025pub const ETH_P_ATALK: ::c_int = 0x809B;
2026pub const ETH_P_AARP: ::c_int = 0x80F3;
2027pub const ETH_P_8021Q: ::c_int = 0x8100;
2028/* see rust-lang/libc#924 pub const ETH_P_ERSPAN: ::c_int = 0x88BE;*/
2029pub const ETH_P_IPX: ::c_int = 0x8137;
2030pub const ETH_P_IPV6: ::c_int = 0x86DD;
2031pub const ETH_P_PAUSE: ::c_int = 0x8808;
2032pub const ETH_P_SLOW: ::c_int = 0x8809;
2033pub const ETH_P_WCCP: ::c_int = 0x883E;
2034pub const ETH_P_MPLS_UC: ::c_int = 0x8847;
2035pub const ETH_P_MPLS_MC: ::c_int = 0x8848;
2036pub const ETH_P_ATMMPOA: ::c_int = 0x884c;
2037pub const ETH_P_PPP_DISC: ::c_int = 0x8863;
2038pub const ETH_P_PPP_SES: ::c_int = 0x8864;
2039pub const ETH_P_LINK_CTL: ::c_int = 0x886c;
2040pub const ETH_P_ATMFATE: ::c_int = 0x8884;
2041pub const ETH_P_PAE: ::c_int = 0x888E;
2042pub const ETH_P_AOE: ::c_int = 0x88A2;
2043pub const ETH_P_8021AD: ::c_int = 0x88A8;
2044pub const ETH_P_802_EX1: ::c_int = 0x88B5;
2045pub const ETH_P_TIPC: ::c_int = 0x88CA;
2046pub const ETH_P_MACSEC: ::c_int = 0x88E5;
2047pub const ETH_P_8021AH: ::c_int = 0x88E7;
2048pub const ETH_P_MVRP: ::c_int = 0x88F5;
2049pub const ETH_P_1588: ::c_int = 0x88F7;
2050pub const ETH_P_NCSI: ::c_int = 0x88F8;
2051pub const ETH_P_PRP: ::c_int = 0x88FB;
2052pub const ETH_P_FCOE: ::c_int = 0x8906;
2053/* see rust-lang/libc#924 pub const ETH_P_IBOE: ::c_int = 0x8915;*/
2054pub const ETH_P_TDLS: ::c_int = 0x890D;
2055pub const ETH_P_FIP: ::c_int = 0x8914;
2056pub const ETH_P_80221: ::c_int = 0x8917;
2057pub const ETH_P_HSR: ::c_int = 0x892F;
2058/* see rust-lang/libc#924 pub const ETH_P_NSH: ::c_int = 0x894F;*/
2059pub const ETH_P_LOOPBACK: ::c_int = 0x9000;
2060pub const ETH_P_QINQ1: ::c_int = 0x9100;
2061pub const ETH_P_QINQ2: ::c_int = 0x9200;
2062pub const ETH_P_QINQ3: ::c_int = 0x9300;
2063pub const ETH_P_EDSA: ::c_int = 0xDADA;
2064/* see rust-lang/libc#924 pub const ETH_P_IFE: ::c_int = 0xED3E;*/
2065pub const ETH_P_AF_IUCV: ::c_int = 0xFBFB;
2066pub const ETH_P_802_3_MIN: ::c_int = 0x0600;
2067pub const ETH_P_802_3: ::c_int = 0x0001;
2068pub const ETH_P_AX25: ::c_int = 0x0002;
2069pub const ETH_P_ALL: ::c_int = 0x0003;
2070pub const ETH_P_802_2: ::c_int = 0x0004;
2071pub const ETH_P_SNAP: ::c_int = 0x0005;
2072pub const ETH_P_DDCMP: ::c_int = 0x0006;
2073pub const ETH_P_WAN_PPP: ::c_int = 0x0007;
2074pub const ETH_P_PPP_MP: ::c_int = 0x0008;
2075pub const ETH_P_LOCALTALK: ::c_int = 0x0009;
2076pub const ETH_P_CAN: ::c_int = 0x000C;
2077pub const ETH_P_CANFD: ::c_int = 0x000D;
2078pub const ETH_P_PPPTALK: ::c_int = 0x0010;
2079pub const ETH_P_TR_802_2: ::c_int = 0x0011;
2080pub const ETH_P_MOBITEX: ::c_int = 0x0015;
2081pub const ETH_P_CONTROL: ::c_int = 0x0016;
2082pub const ETH_P_IRDA: ::c_int = 0x0017;
2083pub const ETH_P_ECONET: ::c_int = 0x0018;
2084pub const ETH_P_HDLC: ::c_int = 0x0019;
2085pub const ETH_P_ARCNET: ::c_int = 0x001A;
2086pub const ETH_P_DSA: ::c_int = 0x001B;
2087pub const ETH_P_TRAILER: ::c_int = 0x001C;
2088pub const ETH_P_PHONET: ::c_int = 0x00F5;
2089pub const ETH_P_IEEE802154: ::c_int = 0x00F6;
2090pub const ETH_P_CAIF: ::c_int = 0x00F7;
2091pub const ETH_P_XDSA: ::c_int = 0x00F8;
2092/* see rust-lang/libc#924 pub const ETH_P_MAP: ::c_int = 0x00F9;*/
2093// end android/platform/bionic/libc/kernel/uapi/linux/if_ether.h
2094
8faf50e0
XL
2095pub const SIOCADDRT: ::c_ulong = 0x0000890B;
2096pub const SIOCDELRT: ::c_ulong = 0x0000890C;
2097pub const SIOCGIFNAME: ::c_ulong = 0x00008910;
2098pub const SIOCSIFLINK: ::c_ulong = 0x00008911;
2099pub const SIOCGIFCONF: ::c_ulong = 0x00008912;
2100pub const SIOCGIFFLAGS: ::c_ulong = 0x00008913;
2101pub const SIOCSIFFLAGS: ::c_ulong = 0x00008914;
2102pub const SIOCGIFADDR: ::c_ulong = 0x00008915;
2103pub const SIOCSIFADDR: ::c_ulong = 0x00008916;
2104pub const SIOCGIFDSTADDR: ::c_ulong = 0x00008917;
2105pub const SIOCSIFDSTADDR: ::c_ulong = 0x00008918;
2106pub const SIOCGIFBRDADDR: ::c_ulong = 0x00008919;
2107pub const SIOCSIFBRDADDR: ::c_ulong = 0x0000891A;
2108pub const SIOCGIFNETMASK: ::c_ulong = 0x0000891B;
2109pub const SIOCSIFNETMASK: ::c_ulong = 0x0000891C;
2110pub const SIOCGIFMETRIC: ::c_ulong = 0x0000891D;
2111pub const SIOCSIFMETRIC: ::c_ulong = 0x0000891E;
2112pub const SIOCGIFMEM: ::c_ulong = 0x0000891F;
2113pub const SIOCSIFMEM: ::c_ulong = 0x00008920;
2114pub const SIOCGIFMTU: ::c_ulong = 0x00008921;
2115pub const SIOCSIFMTU: ::c_ulong = 0x00008922;
2116pub const SIOCSIFHWADDR: ::c_ulong = 0x00008924;
2117pub const SIOCGIFENCAP: ::c_ulong = 0x00008925;
2118pub const SIOCSIFENCAP: ::c_ulong = 0x00008926;
2119pub const SIOCGIFHWADDR: ::c_ulong = 0x00008927;
2120pub const SIOCGIFSLAVE: ::c_ulong = 0x00008929;
2121pub const SIOCSIFSLAVE: ::c_ulong = 0x00008930;
2122pub const SIOCADDMULTI: ::c_ulong = 0x00008931;
2123pub const SIOCDELMULTI: ::c_ulong = 0x00008932;
2124pub const SIOCDARP: ::c_ulong = 0x00008953;
2125pub const SIOCGARP: ::c_ulong = 0x00008954;
2126pub const SIOCSARP: ::c_ulong = 0x00008955;
2127pub const SIOCDRARP: ::c_ulong = 0x00008960;
2128pub const SIOCGRARP: ::c_ulong = 0x00008961;
2129pub const SIOCSRARP: ::c_ulong = 0x00008962;
2130pub const SIOCGIFMAP: ::c_ulong = 0x00008970;
2131pub const SIOCSIFMAP: ::c_ulong = 0x00008971;
2132
b7449926
XL
2133// linux/module.h
2134pub const MODULE_INIT_IGNORE_MODVERSIONS: ::c_uint = 0x0001;
2135pub const MODULE_INIT_IGNORE_VERMAGIC: ::c_uint = 0x0002;
2136
416331ca
XL
2137#[deprecated(
2138 since = "0.2.55",
2139 note = "ENOATTR is not available on Android; use ENODATA instead"
2140)]
b7449926
XL
2141pub const ENOATTR: ::c_int = ::ENODATA;
2142
532ac7d7
XL
2143// linux/if_alg.h
2144pub const ALG_SET_KEY: ::c_int = 1;
2145pub const ALG_SET_IV: ::c_int = 2;
2146pub const ALG_SET_OP: ::c_int = 3;
2147pub const ALG_SET_AEAD_ASSOCLEN: ::c_int = 4;
2148pub const ALG_SET_AEAD_AUTHSIZE: ::c_int = 5;
2149
2150pub const ALG_OP_DECRYPT: ::c_int = 0;
2151pub const ALG_OP_ENCRYPT: ::c_int = 1;
2152
fc512014
XL
2153// uapi/linux/vm_sockets.h
2154pub const VMADDR_CID_ANY: ::c_uint = 0xFFFFFFFF;
2155pub const VMADDR_CID_HYPERVISOR: ::c_uint = 0;
2156pub const VMADDR_CID_LOCAL: ::c_uint = 1;
2157pub const VMADDR_CID_HOST: ::c_uint = 2;
2158pub const VMADDR_PORT_ANY: ::c_uint = 0xFFFFFFFF;
2159
532ac7d7 2160// uapi/linux/inotify.h
e74abb32
XL
2161pub const IN_ACCESS: u32 = 0x0000_0001;
2162pub const IN_MODIFY: u32 = 0x0000_0002;
2163pub const IN_ATTRIB: u32 = 0x0000_0004;
2164pub const IN_CLOSE_WRITE: u32 = 0x0000_0008;
416331ca 2165pub const IN_CLOSE_NOWRITE: u32 = 0x0000_0010;
ba9703b0 2166pub const IN_CLOSE: u32 = IN_CLOSE_WRITE | IN_CLOSE_NOWRITE;
e74abb32
XL
2167pub const IN_OPEN: u32 = 0x0000_0020;
2168pub const IN_MOVED_FROM: u32 = 0x0000_0040;
2169pub const IN_MOVED_TO: u32 = 0x0000_0080;
ba9703b0 2170pub const IN_MOVE: u32 = IN_MOVED_FROM | IN_MOVED_TO;
e74abb32
XL
2171pub const IN_CREATE: u32 = 0x0000_0100;
2172pub const IN_DELETE: u32 = 0x0000_0200;
2173pub const IN_DELETE_SELF: u32 = 0x0000_0400;
2174pub const IN_MOVE_SELF: u32 = 0x0000_0800;
2175pub const IN_UNMOUNT: u32 = 0x0000_2000;
2176pub const IN_Q_OVERFLOW: u32 = 0x0000_4000;
2177pub const IN_IGNORED: u32 = 0x0000_8000;
2178pub const IN_ONLYDIR: u32 = 0x0100_0000;
2179pub const IN_DONT_FOLLOW: u32 = 0x0200_0000;
416331ca
XL
2180// pub const IN_EXCL_UNLINK: u32 = 0x0400_0000;
2181
2182// pub const IN_MASK_CREATE: u32 = 0x1000_0000;
2183// pub const IN_MASK_ADD: u32 = 0x2000_0000;
e74abb32
XL
2184pub const IN_ISDIR: u32 = 0x4000_0000;
2185pub const IN_ONESHOT: u32 = 0x8000_0000;
2186
ba9703b0 2187pub const IN_ALL_EVENTS: u32 = IN_ACCESS
e74abb32
XL
2188 | IN_MODIFY
2189 | IN_ATTRIB
2190 | IN_CLOSE_WRITE
2191 | IN_CLOSE_NOWRITE
2192 | IN_OPEN
2193 | IN_MOVED_FROM
2194 | IN_MOVED_TO
2195 | IN_DELETE
2196 | IN_CREATE
2197 | IN_DELETE_SELF
ba9703b0 2198 | IN_MOVE_SELF;
532ac7d7
XL
2199
2200pub const IN_CLOEXEC: ::c_int = O_CLOEXEC;
2201pub const IN_NONBLOCK: ::c_int = O_NONBLOCK;
2202
416331ca
XL
2203pub const FUTEX_WAIT: ::c_int = 0;
2204pub const FUTEX_WAKE: ::c_int = 1;
2205pub const FUTEX_FD: ::c_int = 2;
2206pub const FUTEX_REQUEUE: ::c_int = 3;
2207pub const FUTEX_CMP_REQUEUE: ::c_int = 4;
2208pub const FUTEX_WAKE_OP: ::c_int = 5;
2209pub const FUTEX_LOCK_PI: ::c_int = 6;
2210pub const FUTEX_UNLOCK_PI: ::c_int = 7;
2211pub const FUTEX_TRYLOCK_PI: ::c_int = 8;
2212pub const FUTEX_WAIT_BITSET: ::c_int = 9;
2213pub const FUTEX_WAKE_BITSET: ::c_int = 10;
2214pub const FUTEX_WAIT_REQUEUE_PI: ::c_int = 11;
2215pub const FUTEX_CMP_REQUEUE_PI: ::c_int = 12;
2216
2217pub const FUTEX_PRIVATE_FLAG: ::c_int = 128;
2218pub const FUTEX_CLOCK_REALTIME: ::c_int = 256;
cdc7bbd5 2219pub const FUTEX_CMD_MASK: ::c_int = !(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME);
416331ca 2220
ba9703b0
XL
2221// linux/errqueue.h
2222pub const SO_EE_ORIGIN_NONE: u8 = 0;
2223pub const SO_EE_ORIGIN_LOCAL: u8 = 1;
2224pub const SO_EE_ORIGIN_ICMP: u8 = 2;
2225pub const SO_EE_ORIGIN_ICMP6: u8 = 3;
2226pub const SO_EE_ORIGIN_TXSTATUS: u8 = 4;
2227pub const SO_EE_ORIGIN_TIMESTAMPING: u8 = SO_EE_ORIGIN_TXSTATUS;
2228
2229// errno.h
2230pub const EPERM: ::c_int = 1;
2231pub const ENOENT: ::c_int = 2;
2232pub const ESRCH: ::c_int = 3;
2233pub const EINTR: ::c_int = 4;
2234pub const EIO: ::c_int = 5;
2235pub const ENXIO: ::c_int = 6;
2236pub const E2BIG: ::c_int = 7;
2237pub const ENOEXEC: ::c_int = 8;
2238pub const EBADF: ::c_int = 9;
2239pub const ECHILD: ::c_int = 10;
2240pub const EAGAIN: ::c_int = 11;
2241pub const ENOMEM: ::c_int = 12;
2242pub const EACCES: ::c_int = 13;
2243pub const EFAULT: ::c_int = 14;
2244pub const ENOTBLK: ::c_int = 15;
2245pub const EBUSY: ::c_int = 16;
2246pub const EEXIST: ::c_int = 17;
2247pub const EXDEV: ::c_int = 18;
2248pub const ENODEV: ::c_int = 19;
2249pub const ENOTDIR: ::c_int = 20;
2250pub const EISDIR: ::c_int = 21;
2251pub const EINVAL: ::c_int = 22;
2252pub const ENFILE: ::c_int = 23;
2253pub const EMFILE: ::c_int = 24;
2254pub const ENOTTY: ::c_int = 25;
2255pub const ETXTBSY: ::c_int = 26;
2256pub const EFBIG: ::c_int = 27;
2257pub const ENOSPC: ::c_int = 28;
2258pub const ESPIPE: ::c_int = 29;
2259pub const EROFS: ::c_int = 30;
2260pub const EMLINK: ::c_int = 31;
2261pub const EPIPE: ::c_int = 32;
2262pub const EDOM: ::c_int = 33;
2263pub const ERANGE: ::c_int = 34;
2264pub const EWOULDBLOCK: ::c_int = EAGAIN;
2265
f035d41b
XL
2266pub const PRIO_PROCESS: ::c_int = 0;
2267pub const PRIO_PGRP: ::c_int = 1;
2268pub const PRIO_USER: ::c_int = 2;
2269
3dfed10e
XL
2270// linux/sched.h
2271pub const SCHED_NORMAL: ::c_int = 0;
2272pub const SCHED_FIFO: ::c_int = 1;
2273pub const SCHED_RR: ::c_int = 2;
2274pub const SCHED_BATCH: ::c_int = 3;
2275pub const SCHED_IDLE: ::c_int = 5;
2276pub const SCHED_DEADLINE: ::c_int = 6;
2277
2278// bits/seek_constants.h
2279pub const SEEK_DATA: ::c_int = 3;
2280pub const SEEK_HOLE: ::c_int = 4;
2281
29967ef6
XL
2282// sys/socket.h
2283pub const AF_NFC: ::c_int = 39;
2284pub const AF_VSOCK: ::c_int = 40;
2285pub const PF_NFC: ::c_int = AF_NFC;
2286pub const PF_VSOCK: ::c_int = AF_VSOCK;
2287
8bb4bdeb 2288f! {
532ac7d7
XL
2289 pub fn CMSG_NXTHDR(mhdr: *const msghdr,
2290 cmsg: *const cmsghdr) -> *mut cmsghdr {
2291 let next = (cmsg as usize
2292 + super::CMSG_ALIGN((*cmsg).cmsg_len as usize))
2293 as *mut cmsghdr;
2294 let max = (*mhdr).msg_control as usize
2295 + (*mhdr).msg_controllen as usize;
2296 if (next.offset(1)) as usize > max {
2297 0 as *mut cmsghdr
2298 } else {
2299 next as *mut cmsghdr
2300 }
2301 }
2302
476ff2be
SL
2303 pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () {
2304 for slot in cpuset.__bits.iter_mut() {
2305 *slot = 0;
2306 }
2307 }
2308
2309 pub fn CPU_SET(cpu: usize, cpuset: &mut cpu_set_t) -> () {
532ac7d7 2310 let size_in___bits = 8 * ::mem::size_of_val(&cpuset.__bits[0]);
476ff2be
SL
2311 let (idx, offset) = (cpu / size_in___bits, cpu % size_in___bits);
2312 cpuset.__bits[idx] |= 1 << offset;
2313 ()
2314 }
2315
2316 pub fn CPU_CLR(cpu: usize, cpuset: &mut cpu_set_t) -> () {
532ac7d7 2317 let size_in___bits = 8 * ::mem::size_of_val(&cpuset.__bits[0]);
476ff2be
SL
2318 let (idx, offset) = (cpu / size_in___bits, cpu % size_in___bits);
2319 cpuset.__bits[idx] &= !(1 << offset);
2320 ()
2321 }
2322
2323 pub fn CPU_ISSET(cpu: usize, cpuset: &cpu_set_t) -> bool {
532ac7d7 2324 let size_in___bits = 8 * ::mem::size_of_val(&cpuset.__bits[0]);
476ff2be
SL
2325 let (idx, offset) = (cpu / size_in___bits, cpu % size_in___bits);
2326 0 != (cpuset.__bits[idx] & (1 << offset))
2327 }
2328
2329 pub fn CPU_EQUAL(set1: &cpu_set_t, set2: &cpu_set_t) -> bool {
2330 set1.__bits == set2.__bits
2331 }
041b39d2
XL
2332 pub fn major(dev: ::dev_t) -> ::c_int {
2333 ((dev >> 8) & 0xfff) as ::c_int
2334 }
2335 pub fn minor(dev: ::dev_t) -> ::c_int {
2336 ((dev & 0xff) | ((dev >> 12) & 0xfff00)) as ::c_int
2337 }
2338 pub fn makedev(ma: ::c_int, mi: ::c_int) -> ::dev_t {
2339 let ma = ma as ::dev_t;
2340 let mi = mi as ::dev_t;
2341 ((ma & 0xfff) << 8) | (mi & 0xff) | ((mi & 0xfff00) << 12)
2342 }
2c00a5a8
XL
2343
2344 pub fn NLA_ALIGN(len: ::c_int) -> ::c_int {
2345 return ((len) + NLA_ALIGNTO - 1) & !(NLA_ALIGNTO - 1)
2346 }
ba9703b0
XL
2347
2348 pub fn SO_EE_OFFENDER(ee: *const ::sock_extended_err) -> *mut ::sockaddr {
2349 ee.offset(1) as *mut ::sockaddr
2350 }
476ff2be
SL
2351}
2352
e74abb32
XL
2353extern "C" {
2354 pub fn getrlimit64(resource: ::c_int, rlim: *mut rlimit64) -> ::c_int;
2355 pub fn setrlimit64(resource: ::c_int, rlim: *const rlimit64) -> ::c_int;
416331ca
XL
2356 pub fn getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int;
2357 pub fn setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int;
3dfed10e
XL
2358 pub fn prlimit(
2359 pid: ::pid_t,
2360 resource: ::c_int,
2361 new_limit: *const ::rlimit,
2362 old_limit: *mut ::rlimit,
2363 ) -> ::c_int;
2364 pub fn prlimit64(
2365 pid: ::pid_t,
2366 resource: ::c_int,
2367 new_limit: *const ::rlimit64,
2368 old_limit: *mut ::rlimit64,
2369 ) -> ::c_int;
cdc7bbd5 2370 pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int;
e74abb32
XL
2371
2372 pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int;
cdc7bbd5 2373 pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int) -> ::c_int;
476ff2be 2374 pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
cdc7bbd5
XL
2375 pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
2376 pub fn mprotect(addr: *mut ::c_void, len: ::size_t, prot: ::c_int) -> ::c_int;
e74abb32
XL
2377 pub fn recvfrom(
2378 socket: ::c_int,
2379 buf: *mut ::c_void,
2380 len: ::size_t,
2381 flags: ::c_int,
2382 addr: *mut ::sockaddr,
2383 addrlen: *mut ::socklen_t,
2384 ) -> ::ssize_t;
2385 pub fn getnameinfo(
2386 sa: *const ::sockaddr,
2387 salen: ::socklen_t,
2388 host: *mut ::c_char,
2389 hostlen: ::size_t,
2390 serv: *mut ::c_char,
2391 sevlen: ::size_t,
2392 flags: ::c_int,
2393 ) -> ::c_int;
cdc7bbd5
XL
2394 pub fn preadv(fd: ::c_int, iov: *const ::iovec, count: ::c_int, offset: ::off_t) -> ::ssize_t;
2395 pub fn pwritev(fd: ::c_int, iov: *const ::iovec, count: ::c_int, offset: ::off_t) -> ::ssize_t;
fc512014
XL
2396 pub fn process_vm_readv(
2397 pid: ::pid_t,
2398 local_iov: *const ::iovec,
2399 local_iov_count: ::c_ulong,
2400 remote_iov: *const ::iovec,
2401 remote_iov_count: ::c_ulong,
2402 flags: ::c_ulong,
2403 ) -> ::ssize_t;
2404 pub fn process_vm_writev(
2405 pid: ::pid_t,
2406 local_iov: *const ::iovec,
2407 local_iov_count: ::c_ulong,
2408 remote_iov: *const ::iovec,
2409 remote_iov_count: ::c_ulong,
2410 flags: ::c_ulong,
2411 ) -> ::ssize_t;
476ff2be 2412 pub fn ptrace(request: ::c_int, ...) -> ::c_long;
416331ca
XL
2413 pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int;
2414 pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int;
476ff2be
SL
2415 pub fn __sched_cpualloc(count: ::size_t) -> *mut ::cpu_set_t;
2416 pub fn __sched_cpufree(set: *mut ::cpu_set_t);
cdc7bbd5 2417 pub fn __sched_cpucount(setsize: ::size_t, set: *const cpu_set_t) -> ::c_int;
476ff2be
SL
2418 pub fn sched_getcpu() -> ::c_int;
2419
2420 pub fn utmpname(name: *const ::c_char) -> ::c_int;
2421 pub fn setutent();
2422 pub fn getutent() -> *mut utmp;
8bb4bdeb 2423
5869c6ff
XL
2424 pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
2425 pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
cdc7bbd5
XL
2426 pub fn fallocate(fd: ::c_int, mode: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
2427 pub fn fallocate64(fd: ::c_int, mode: ::c_int, offset: ::off64_t, len: ::off64_t) -> ::c_int;
2428 pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
2429 pub fn posix_fallocate64(fd: ::c_int, offset: ::off64_t, len: ::off64_t) -> ::c_int;
3dfed10e
XL
2430 pub fn getxattr(
2431 path: *const c_char,
2432 name: *const c_char,
2433 value: *mut ::c_void,
2434 size: ::size_t,
2435 ) -> ::ssize_t;
2436 pub fn lgetxattr(
2437 path: *const c_char,
2438 name: *const c_char,
2439 value: *mut ::c_void,
2440 size: ::size_t,
2441 ) -> ::ssize_t;
2442 pub fn fgetxattr(
2443 filedes: ::c_int,
2444 name: *const c_char,
2445 value: *mut ::c_void,
2446 size: ::size_t,
2447 ) -> ::ssize_t;
2448 pub fn setxattr(
2449 path: *const c_char,
2450 name: *const c_char,
2451 value: *const ::c_void,
2452 size: ::size_t,
2453 flags: ::c_int,
2454 ) -> ::c_int;
2455 pub fn lsetxattr(
2456 path: *const c_char,
2457 name: *const c_char,
2458 value: *const ::c_void,
2459 size: ::size_t,
2460 flags: ::c_int,
2461 ) -> ::c_int;
2462 pub fn fsetxattr(
2463 filedes: ::c_int,
2464 name: *const c_char,
2465 value: *const ::c_void,
2466 size: ::size_t,
2467 flags: ::c_int,
2468 ) -> ::c_int;
cdc7bbd5
XL
2469 pub fn listxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t;
2470 pub fn llistxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t;
2471 pub fn flistxattr(filedes: ::c_int, list: *mut c_char, size: ::size_t) -> ::ssize_t;
3dfed10e
XL
2472 pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int;
2473 pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int;
2474 pub fn fremovexattr(filedes: ::c_int, name: *const c_char) -> ::c_int;
cdc7bbd5 2475 pub fn signalfd(fd: ::c_int, mask: *const ::sigset_t, flags: ::c_int) -> ::c_int;
3dfed10e 2476 pub fn timerfd_create(clock: ::clockid_t, flags: ::c_int) -> ::c_int;
cdc7bbd5 2477 pub fn timerfd_gettime(fd: ::c_int, current_value: *mut itimerspec) -> ::c_int;
3dfed10e
XL
2478 pub fn timerfd_settime(
2479 fd: ::c_int,
2480 flags: ::c_int,
2481 new_value: *const itimerspec,
2482 old_value: *mut itimerspec,
2483 ) -> ::c_int;
ea8adc8c 2484 pub fn syscall(num: ::c_long, ...) -> ::c_long;
cdc7bbd5
XL
2485 pub fn sched_getaffinity(pid: ::pid_t, cpusetsize: ::size_t, cpuset: *mut cpu_set_t)
2486 -> ::c_int;
e74abb32
XL
2487 pub fn sched_setaffinity(
2488 pid: ::pid_t,
2489 cpusetsize: ::size_t,
2490 cpuset: *const cpu_set_t,
2491 ) -> ::c_int;
ea8adc8c
XL
2492 pub fn epoll_create(size: ::c_int) -> ::c_int;
2493 pub fn epoll_create1(flags: ::c_int) -> ::c_int;
e74abb32
XL
2494 pub fn epoll_wait(
2495 epfd: ::c_int,
2496 events: *mut ::epoll_event,
2497 maxevents: ::c_int,
2498 timeout: ::c_int,
2499 ) -> ::c_int;
cdc7bbd5
XL
2500 pub fn epoll_ctl(epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event)
2501 -> ::c_int;
e74abb32
XL
2502 pub fn pthread_getschedparam(
2503 native: ::pthread_t,
2504 policy: *mut ::c_int,
2505 param: *mut ::sched_param,
2506 ) -> ::c_int;
ea8adc8c
XL
2507 pub fn unshare(flags: ::c_int) -> ::c_int;
2508 pub fn umount(target: *const ::c_char) -> ::c_int;
2509 pub fn sched_get_priority_max(policy: ::c_int) -> ::c_int;
cdc7bbd5
XL
2510 pub fn tee(fd_in: ::c_int, fd_out: ::c_int, len: ::size_t, flags: ::c_uint) -> ::ssize_t;
2511 pub fn settimeofday(tv: *const ::timeval, tz: *const ::timezone) -> ::c_int;
e74abb32
XL
2512 pub fn splice(
2513 fd_in: ::c_int,
2514 off_in: *mut ::loff_t,
2515 fd_out: ::c_int,
2516 off_out: *mut ::loff_t,
2517 len: ::size_t,
2518 flags: ::c_uint,
2519 ) -> ::ssize_t;
ea8adc8c 2520 pub fn eventfd(init: ::c_uint, flags: ::c_int) -> ::c_int;
cdc7bbd5
XL
2521 pub fn sched_rr_get_interval(pid: ::pid_t, tp: *mut ::timespec) -> ::c_int;
2522 pub fn sem_timedwait(sem: *mut sem_t, abstime: *const ::timespec) -> ::c_int;
e74abb32 2523 pub fn sem_getvalue(sem: *mut sem_t, sval: *mut ::c_int) -> ::c_int;
cdc7bbd5 2524 pub fn sched_setparam(pid: ::pid_t, param: *const ::sched_param) -> ::c_int;
ea8adc8c
XL
2525 pub fn setns(fd: ::c_int, nstype: ::c_int) -> ::c_int;
2526 pub fn swapoff(puath: *const ::c_char) -> ::c_int;
e74abb32
XL
2527 pub fn vmsplice(
2528 fd: ::c_int,
2529 iov: *const ::iovec,
2530 nr_segs: ::size_t,
2531 flags: ::c_uint,
2532 ) -> ::ssize_t;
2533 pub fn mount(
2534 src: *const ::c_char,
2535 target: *const ::c_char,
2536 fstype: *const ::c_char,
2537 flags: ::c_ulong,
2538 data: *const ::c_void,
2539 ) -> ::c_int;
416331ca 2540 pub fn personality(persona: ::c_uint) -> ::c_int;
ea8adc8c
XL
2541 pub fn prctl(option: ::c_int, ...) -> ::c_int;
2542 pub fn sched_getparam(pid: ::pid_t, param: *mut ::sched_param) -> ::c_int;
e74abb32
XL
2543 pub fn ppoll(
2544 fds: *mut ::pollfd,
2545 nfds: nfds_t,
2546 timeout: *const ::timespec,
2547 sigmask: *const sigset_t,
2548 ) -> ::c_int;
2549 pub fn pthread_mutex_timedlock(
2550 lock: *mut pthread_mutex_t,
2551 abstime: *const ::timespec,
2552 ) -> ::c_int;
2553 pub fn clone(
2554 cb: extern "C" fn(*mut ::c_void) -> ::c_int,
2555 child_stack: *mut ::c_void,
2556 flags: ::c_int,
2557 arg: *mut ::c_void,
2558 ...
2559 ) -> ::c_int;
ea8adc8c 2560 pub fn sched_getscheduler(pid: ::pid_t) -> ::c_int;
e74abb32
XL
2561 pub fn clock_nanosleep(
2562 clk_id: ::clockid_t,
2563 flags: ::c_int,
2564 rqtp: *const ::timespec,
2565 rmtp: *mut ::timespec,
2566 ) -> ::c_int;
2567 pub fn pthread_attr_getguardsize(
2568 attr: *const ::pthread_attr_t,
2569 guardsize: *mut ::size_t,
2570 ) -> ::c_int;
ea8adc8c
XL
2571 pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
2572 pub fn sched_get_priority_min(policy: ::c_int) -> ::c_int;
e74abb32
XL
2573 pub fn pthread_condattr_getpshared(
2574 attr: *const pthread_condattr_t,
2575 pshared: *mut ::c_int,
2576 ) -> ::c_int;
ea8adc8c
XL
2577 pub fn sysinfo(info: *mut ::sysinfo) -> ::c_int;
2578 pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int;
e74abb32
XL
2579 pub fn pthread_setschedparam(
2580 native: ::pthread_t,
2581 policy: ::c_int,
2582 param: *const ::sched_param,
2583 ) -> ::c_int;
ea8adc8c 2584 pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int;
e74abb32
XL
2585 pub fn sched_setscheduler(
2586 pid: ::pid_t,
2587 policy: ::c_int,
2588 param: *const ::sched_param,
2589 ) -> ::c_int;
2590 pub fn sendfile(
2591 out_fd: ::c_int,
2592 in_fd: ::c_int,
2593 offset: *mut off_t,
2594 count: ::size_t,
2595 ) -> ::ssize_t;
abe05a73
XL
2596 pub fn setfsgid(gid: ::gid_t) -> ::c_int;
2597 pub fn setfsuid(uid: ::uid_t) -> ::c_int;
ea8adc8c 2598 pub fn sigsuspend(mask: *const ::sigset_t) -> ::c_int;
e74abb32
XL
2599 pub fn getgrgid_r(
2600 gid: ::gid_t,
2601 grp: *mut ::group,
2602 buf: *mut ::c_char,
2603 buflen: ::size_t,
2604 result: *mut *mut ::group,
2605 ) -> ::c_int;
e74abb32 2606 pub fn sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> ::c_int;
ea8adc8c 2607 pub fn sem_close(sem: *mut sem_t) -> ::c_int;
e74abb32
XL
2608 pub fn getgrnam_r(
2609 name: *const ::c_char,
2610 grp: *mut ::group,
2611 buf: *mut ::c_char,
2612 buflen: ::size_t,
2613 result: *mut *mut ::group,
2614 ) -> ::c_int;
cdc7bbd5 2615 pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int;
ea8adc8c
XL
2616 pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
2617 pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
2618 pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
2619 pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
2620 pub fn daemon(nochdir: ::c_int, noclose: ::c_int) -> ::c_int;
e74abb32
XL
2621 pub fn getpwnam_r(
2622 name: *const ::c_char,
2623 pwd: *mut passwd,
2624 buf: *mut ::c_char,
2625 buflen: ::size_t,
2626 result: *mut *mut passwd,
2627 ) -> ::c_int;
e74abb32
XL
2628 pub fn getpwuid_r(
2629 uid: ::uid_t,
2630 pwd: *mut passwd,
2631 buf: *mut ::c_char,
2632 buflen: ::size_t,
2633 result: *mut *mut passwd,
2634 ) -> ::c_int;
3dfed10e
XL
2635 pub fn sigtimedwait(
2636 set: *const sigset_t,
2637 info: *mut siginfo_t,
2638 timeout: *const ::timespec,
2639 ) -> ::c_int;
e74abb32
XL
2640 pub fn sigwait(set: *const sigset_t, sig: *mut ::c_int) -> ::c_int;
2641 pub fn pthread_atfork(
2642 prepare: ::Option<unsafe extern "C" fn()>,
2643 parent: ::Option<unsafe extern "C" fn()>,
2644 child: ::Option<unsafe extern "C" fn()>,
2645 ) -> ::c_int;
ea8adc8c 2646 pub fn getgrgid(gid: ::gid_t) -> *mut ::group;
e74abb32
XL
2647 pub fn getgrouplist(
2648 user: *const ::c_char,
2649 group: ::gid_t,
2650 groups: *mut ::gid_t,
2651 ngroups: *mut ::c_int,
2652 ) -> ::c_int;
ea8adc8c 2653 pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int;
e74abb32
XL
2654 pub fn pthread_mutexattr_getpshared(
2655 attr: *const pthread_mutexattr_t,
2656 pshared: *mut ::c_int,
2657 ) -> ::c_int;
e74abb32
XL
2658 pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE;
2659 pub fn faccessat(
2660 dirfd: ::c_int,
2661 pathname: *const ::c_char,
2662 mode: ::c_int,
2663 flags: ::c_int,
2664 ) -> ::c_int;
2665 pub fn pthread_create(
2666 native: *mut ::pthread_t,
2667 attr: *const ::pthread_attr_t,
2668 f: extern "C" fn(*mut ::c_void) -> *mut ::c_void,
2669 value: *mut ::c_void,
2670 ) -> ::c_int;
ff7c6d11 2671 pub fn __errno() -> *mut ::c_int;
416331ca 2672 pub fn inotify_rm_watch(fd: ::c_int, wd: u32) -> ::c_int;
e74abb32
XL
2673 pub fn sendmmsg(
2674 sockfd: ::c_int,
2675 msgvec: *const ::mmsghdr,
2676 vlen: ::c_uint,
2677 flags: ::c_int,
2678 ) -> ::c_int;
2679 pub fn recvmmsg(
2680 sockfd: ::c_int,
2681 msgvec: *mut ::mmsghdr,
2682 vlen: ::c_uint,
2683 flags: ::c_int,
2684 timeout: *const ::timespec,
2685 ) -> ::c_int;
532ac7d7
XL
2686 pub fn inotify_init() -> ::c_int;
2687 pub fn inotify_init1(flags: ::c_int) -> ::c_int;
cdc7bbd5 2688 pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_char, mask: u32) -> ::c_int;
3dfed10e 2689
cdc7bbd5 2690 pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int;
3dfed10e
XL
2691
2692 pub fn regexec(
2693 preg: *const ::regex_t,
2694 input: *const ::c_char,
2695 nmatch: ::size_t,
2696 pmatch: *mut regmatch_t,
2697 eflags: ::c_int,
2698 ) -> ::c_int;
2699
2700 pub fn regerror(
2701 errcode: ::c_int,
2702 preg: *const ::regex_t,
2703 errbuf: *mut ::c_char,
2704 errbuf_size: ::size_t,
2705 ) -> ::size_t;
2706
2707 pub fn regfree(preg: *mut ::regex_t);
5869c6ff
XL
2708
2709 pub fn android_set_abort_message(msg: *const ::c_char);
6a06907d
XL
2710
2711 pub fn gettid() -> ::pid_t;
476ff2be
SL
2712}
2713
2714cfg_if! {
2715 if #[cfg(target_pointer_width = "32")] {
2716 mod b32;
2717 pub use self::b32::*;
2718 } else if #[cfg(target_pointer_width = "64")] {
2719 mod b64;
2720 pub use self::b64::*;
2721 } else {
2722 // Unknown target_pointer_width
2723 }
2724}
416331ca
XL
2725
2726impl siginfo_t {
6a06907d
XL
2727 pub unsafe fn si_addr(&self) -> *mut ::c_void {
2728 #[repr(C)]
2729 struct siginfo_sigfault {
2730 _si_signo: ::c_int,
2731 _si_errno: ::c_int,
2732 _si_code: ::c_int,
2733 si_addr: *mut ::c_void,
2734 }
2735 (*(self as *const siginfo_t as *const siginfo_sigfault)).si_addr
2736 }
2737
416331ca
XL
2738 pub unsafe fn si_value(&self) -> ::sigval {
2739 #[repr(C)]
2740 struct siginfo_timer {
2741 _si_signo: ::c_int,
2742 _si_errno: ::c_int,
2743 _si_code: ::c_int,
2744 _si_tid: ::c_int,
2745 _si_overrun: ::c_int,
2746 si_sigval: ::sigval,
2747 }
2748 (*(self as *const siginfo_t as *const siginfo_timer)).si_sigval
2749 }
2750}
6a06907d
XL
2751
2752cfg_if! {
2753 if #[cfg(libc_union)] {
2754 // Internal, for casts to access union fields
2755 #[repr(C)]
2756 struct sifields_sigchld {
2757 si_pid: ::pid_t,
2758 si_uid: ::uid_t,
2759 si_status: ::c_int,
2760 si_utime: ::c_long,
2761 si_stime: ::c_long,
2762 }
2763 impl ::Copy for sifields_sigchld {}
2764 impl ::Clone for sifields_sigchld {
2765 fn clone(&self) -> sifields_sigchld {
2766 *self
2767 }
2768 }
2769
2770 // Internal, for casts to access union fields
2771 #[repr(C)]
2772 union sifields {
2773 _align_pointer: *mut ::c_void,
2774 sigchld: sifields_sigchld,
2775 }
2776
2777 // Internal, for casts to access union fields. Note that some variants
2778 // of sifields start with a pointer, which makes the alignment of
2779 // sifields vary on 32-bit and 64-bit architectures.
2780 #[repr(C)]
2781 struct siginfo_f {
2782 _siginfo_base: [::c_int; 3],
2783 sifields: sifields,
2784 }
2785
2786 impl siginfo_t {
2787 unsafe fn sifields(&self) -> &sifields {
2788 &(*(self as *const siginfo_t as *const siginfo_f)).sifields
2789 }
2790
2791 pub unsafe fn si_pid(&self) -> ::pid_t {
2792 self.sifields().sigchld.si_pid
2793 }
2794
2795 pub unsafe fn si_uid(&self) -> ::uid_t {
2796 self.sifields().sigchld.si_uid
2797 }
2798
2799 pub unsafe fn si_status(&self) -> ::c_int {
2800 self.sifields().sigchld.si_status
2801 }
2802
2803 pub unsafe fn si_utime(&self) -> ::c_long {
2804 self.sifields().sigchld.si_utime
2805 }
2806
2807 pub unsafe fn si_stime(&self) -> ::c_long {
2808 self.sifields().sigchld.si_stime
2809 }
2810 }
2811 }
2812}