-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathmod.rs
3103 lines (2849 loc) · 99.7 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use crate::prelude::*;
use crate::{cmsghdr, off_t};
pub type clock_t = c_uint;
pub type suseconds_t = c_int;
pub type dev_t = u64;
pub type blksize_t = i32;
pub type fsblkcnt_t = u64;
pub type fsfilcnt_t = u64;
pub type idtype_t = c_int;
pub type mqd_t = c_int;
type __pthread_spin_t = __cpu_simple_lock_nv_t;
pub type vm_size_t = crate::uintptr_t; // FIXME: deprecated since long time
pub type lwpid_t = c_uint;
pub type shmatt_t = c_uint;
pub type cpuid_t = c_ulong;
pub type cpuset_t = _cpuset;
pub type pthread_spin_t = c_uchar;
pub type timer_t = c_int;
// elf.h
pub type Elf32_Addr = u32;
pub type Elf32_Half = u16;
pub type Elf32_Lword = u64;
pub type Elf32_Off = u32;
pub type Elf32_Sword = i32;
pub type Elf32_Word = u32;
pub type Elf64_Addr = u64;
pub type Elf64_Half = u16;
pub type Elf64_Lword = u64;
pub type Elf64_Off = u64;
pub type Elf64_Sword = i32;
pub type Elf64_Sxword = i64;
pub type Elf64_Word = u32;
pub type Elf64_Xword = u64;
pub type iconv_t = *mut c_void;
e! {
pub enum fae_action {
FAE_OPEN,
FAE_DUP2,
FAE_CLOSE,
}
}
cfg_if! {
if #[cfg(target_pointer_width = "64")] {
type Elf_Addr = Elf64_Addr;
type Elf_Half = Elf64_Half;
type Elf_Phdr = Elf64_Phdr;
} else if #[cfg(target_pointer_width = "32")] {
type Elf_Addr = Elf32_Addr;
type Elf_Half = Elf32_Half;
type Elf_Phdr = Elf32_Phdr;
}
}
impl siginfo_t {
pub unsafe fn si_addr(&self) -> *mut c_void {
self.si_addr
}
pub unsafe fn si_code(&self) -> c_int {
self.si_code
}
pub unsafe fn si_errno(&self) -> c_int {
self.si_errno
}
pub unsafe fn si_pid(&self) -> crate::pid_t {
#[repr(C)]
struct siginfo_timer {
_si_signo: c_int,
_si_errno: c_int,
_si_code: c_int,
__pad1: c_int,
_pid: crate::pid_t,
}
(*(self as *const siginfo_t as *const siginfo_timer))._pid
}
pub unsafe fn si_uid(&self) -> crate::uid_t {
#[repr(C)]
struct siginfo_timer {
_si_signo: c_int,
_si_errno: c_int,
_si_code: c_int,
__pad1: c_int,
_pid: crate::pid_t,
_uid: crate::uid_t,
}
(*(self as *const siginfo_t as *const siginfo_timer))._uid
}
pub unsafe fn si_value(&self) -> crate::sigval {
#[repr(C)]
struct siginfo_timer {
_si_signo: c_int,
_si_errno: c_int,
_si_code: c_int,
__pad1: c_int,
_pid: crate::pid_t,
_uid: crate::uid_t,
value: crate::sigval,
}
(*(self as *const siginfo_t as *const siginfo_timer)).value
}
pub unsafe fn si_status(&self) -> c_int {
#[repr(C)]
struct siginfo_timer {
_si_signo: c_int,
_si_errno: c_int,
_si_code: c_int,
__pad1: c_int,
_pid: crate::pid_t,
_uid: crate::uid_t,
_value: crate::sigval,
_cpid: crate::pid_t,
_cuid: crate::uid_t,
status: c_int,
}
(*(self as *const siginfo_t as *const siginfo_timer)).status
}
}
s! {
pub struct aiocb {
pub aio_offset: off_t,
pub aio_buf: *mut c_void,
pub aio_nbytes: size_t,
pub aio_fildes: c_int,
pub aio_lio_opcode: c_int,
pub aio_reqprio: c_int,
pub aio_sigevent: crate::sigevent,
_state: c_int,
_errno: c_int,
_retval: ssize_t,
}
pub struct glob_t {
pub gl_pathc: size_t,
pub gl_matchc: size_t,
pub gl_offs: size_t,
pub gl_flags: c_int,
pub gl_pathv: *mut *mut c_char,
__unused3: *mut c_void,
__unused4: *mut c_void,
__unused5: *mut c_void,
__unused6: *mut c_void,
__unused7: *mut c_void,
__unused8: *mut c_void,
}
pub struct mq_attr {
pub mq_flags: c_long,
pub mq_maxmsg: c_long,
pub mq_msgsize: c_long,
pub mq_curmsgs: c_long,
}
pub struct itimerspec {
pub it_interval: crate::timespec,
pub it_value: crate::timespec,
}
pub struct sigset_t {
__bits: [u32; 4],
}
pub struct stat {
pub st_dev: crate::dev_t,
pub st_mode: crate::mode_t,
pub st_ino: crate::ino_t,
pub st_nlink: crate::nlink_t,
pub st_uid: crate::uid_t,
pub st_gid: crate::gid_t,
pub st_rdev: crate::dev_t,
pub st_atime: crate::time_t,
pub st_atimensec: c_long,
pub st_mtime: crate::time_t,
pub st_mtimensec: c_long,
pub st_ctime: crate::time_t,
pub st_ctimensec: c_long,
pub st_birthtime: crate::time_t,
pub st_birthtimensec: c_long,
pub st_size: off_t,
pub st_blocks: crate::blkcnt_t,
pub st_blksize: crate::blksize_t,
pub st_flags: u32,
pub st_gen: u32,
pub st_spare: [u32; 2],
}
pub struct addrinfo {
pub ai_flags: c_int,
pub ai_family: c_int,
pub ai_socktype: c_int,
pub ai_protocol: c_int,
pub ai_addrlen: crate::socklen_t,
pub ai_canonname: *mut c_char,
pub ai_addr: *mut crate::sockaddr,
pub ai_next: *mut crate::addrinfo,
}
pub struct siginfo_t {
pub si_signo: c_int,
pub si_code: c_int,
pub si_errno: c_int,
__pad1: c_int,
pub si_addr: *mut c_void,
__pad2: [u64; 13],
}
pub struct pthread_attr_t {
pta_magic: c_uint,
pta_flags: c_int,
pta_private: *mut c_void,
}
pub struct pthread_mutex_t {
ptm_magic: c_uint,
ptm_errorcheck: __pthread_spin_t,
#[cfg(any(
target_arch = "sparc",
target_arch = "sparc64",
target_arch = "x86",
target_arch = "x86_64"
))]
ptm_pad1: [u8; 3],
// actually a union with a non-unused, 0-initialized field
ptm_unused: __pthread_spin_t,
#[cfg(any(
target_arch = "sparc",
target_arch = "sparc64",
target_arch = "x86",
target_arch = "x86_64"
))]
ptm_pad2: [u8; 3],
ptm_owner: crate::pthread_t,
ptm_waiters: *mut u8,
ptm_recursed: c_uint,
ptm_spare2: *mut c_void,
}
pub struct pthread_mutexattr_t {
ptma_magic: c_uint,
ptma_private: *mut c_void,
}
pub struct pthread_rwlockattr_t {
ptra_magic: c_uint,
ptra_private: *mut c_void,
}
pub struct pthread_cond_t {
ptc_magic: c_uint,
ptc_lock: __pthread_spin_t,
ptc_waiters_first: *mut u8,
ptc_waiters_last: *mut u8,
ptc_mutex: *mut crate::pthread_mutex_t,
ptc_private: *mut c_void,
}
pub struct pthread_condattr_t {
ptca_magic: c_uint,
ptca_private: *mut c_void,
}
pub struct pthread_rwlock_t {
ptr_magic: c_uint,
ptr_interlock: __pthread_spin_t,
ptr_rblocked_first: *mut u8,
ptr_rblocked_last: *mut u8,
ptr_wblocked_first: *mut u8,
ptr_wblocked_last: *mut u8,
ptr_nreaders: c_uint,
ptr_owner: crate::pthread_t,
ptr_private: *mut c_void,
}
pub struct pthread_spinlock_t {
pts_magic: c_uint,
pts_spin: crate::pthread_spin_t,
pts_flags: c_int,
}
pub struct kevent {
pub ident: crate::uintptr_t,
pub filter: u32,
pub flags: u32,
pub fflags: u32,
pub data: i64,
pub udata: intptr_t, /* FIXME: NetBSD 10.0 will finally have same layout as other BSD */
}
pub struct dqblk {
pub dqb_bhardlimit: u32,
pub dqb_bsoftlimit: u32,
pub dqb_curblocks: u32,
pub dqb_ihardlimit: u32,
pub dqb_isoftlimit: u32,
pub dqb_curinodes: u32,
pub dqb_btime: i32,
pub dqb_itime: i32,
}
pub struct Dl_info {
pub dli_fname: *const c_char,
pub dli_fbase: *mut c_void,
pub dli_sname: *const c_char,
pub dli_saddr: *const c_void,
}
pub struct lconv {
pub decimal_point: *mut c_char,
pub thousands_sep: *mut c_char,
pub grouping: *mut c_char,
pub int_curr_symbol: *mut c_char,
pub currency_symbol: *mut c_char,
pub mon_decimal_point: *mut c_char,
pub mon_thousands_sep: *mut c_char,
pub mon_grouping: *mut c_char,
pub positive_sign: *mut c_char,
pub negative_sign: *mut c_char,
pub int_frac_digits: c_char,
pub frac_digits: c_char,
pub p_cs_precedes: c_char,
pub p_sep_by_space: c_char,
pub n_cs_precedes: c_char,
pub n_sep_by_space: c_char,
pub p_sign_posn: c_char,
pub n_sign_posn: c_char,
pub int_p_cs_precedes: c_char,
pub int_n_cs_precedes: c_char,
pub int_p_sep_by_space: c_char,
pub int_n_sep_by_space: c_char,
pub int_p_sign_posn: c_char,
pub int_n_sign_posn: c_char,
}
pub struct if_data {
pub ifi_type: c_uchar,
pub ifi_addrlen: c_uchar,
pub ifi_hdrlen: c_uchar,
pub ifi_link_state: c_int,
pub ifi_mtu: u64,
pub ifi_metric: u64,
pub ifi_baudrate: u64,
pub ifi_ipackets: u64,
pub ifi_ierrors: u64,
pub ifi_opackets: u64,
pub ifi_oerrors: u64,
pub ifi_collisions: u64,
pub ifi_ibytes: u64,
pub ifi_obytes: u64,
pub ifi_imcasts: u64,
pub ifi_omcasts: u64,
pub ifi_iqdrops: u64,
pub ifi_noproto: u64,
pub ifi_lastchange: crate::timespec,
}
pub struct if_msghdr {
pub ifm_msglen: c_ushort,
pub ifm_version: c_uchar,
pub ifm_type: c_uchar,
pub ifm_addrs: c_int,
pub ifm_flags: c_int,
pub ifm_index: c_ushort,
pub ifm_data: if_data,
}
pub struct sockcred {
pub sc_pid: crate::pid_t,
pub sc_uid: crate::uid_t,
pub sc_euid: crate::uid_t,
pub sc_gid: crate::gid_t,
pub sc_egid: crate::gid_t,
pub sc_ngroups: c_int,
pub sc_groups: [crate::gid_t; 1],
}
pub struct uucred {
pub cr_unused: c_ushort,
pub cr_uid: crate::uid_t,
pub cr_gid: crate::gid_t,
pub cr_ngroups: c_int,
pub cr_groups: [crate::gid_t; NGROUPS_MAX as usize],
}
pub struct unpcbid {
pub unp_pid: crate::pid_t,
pub unp_euid: crate::uid_t,
pub unp_egid: crate::gid_t,
}
pub struct sockaddr_dl {
pub sdl_len: c_uchar,
pub sdl_family: c_uchar,
pub sdl_index: c_ushort,
pub sdl_type: u8,
pub sdl_nlen: u8,
pub sdl_alen: u8,
pub sdl_slen: u8,
pub sdl_data: [c_char; 12],
}
pub struct __exit_status {
pub e_termination: u16,
pub e_exit: u16,
}
pub struct shmid_ds {
pub shm_perm: crate::ipc_perm,
pub shm_segsz: size_t,
pub shm_lpid: crate::pid_t,
pub shm_cpid: crate::pid_t,
pub shm_nattch: crate::shmatt_t,
pub shm_atime: crate::time_t,
pub shm_dtime: crate::time_t,
pub shm_ctime: crate::time_t,
_shm_internal: *mut c_void,
}
pub struct utmp {
pub ut_line: [c_char; UT_LINESIZE],
pub ut_name: [c_char; UT_NAMESIZE],
pub ut_host: [c_char; UT_HOSTSIZE],
pub ut_time: crate::time_t,
}
pub struct lastlog {
pub ll_line: [c_char; UT_LINESIZE],
pub ll_host: [c_char; UT_HOSTSIZE],
pub ll_time: crate::time_t,
}
pub struct timex {
pub modes: c_uint,
pub offset: c_long,
pub freq: c_long,
pub maxerror: c_long,
pub esterror: c_long,
pub status: c_int,
pub constant: c_long,
pub precision: c_long,
pub tolerance: c_long,
pub ppsfreq: c_long,
pub jitter: c_long,
pub shift: c_int,
pub stabil: c_long,
pub jitcnt: c_long,
pub calcnt: c_long,
pub errcnt: c_long,
pub stbcnt: c_long,
}
pub struct ntptimeval {
pub time: crate::timespec,
pub maxerror: c_long,
pub esterror: c_long,
pub tai: c_long,
pub time_state: c_int,
}
// elf.h
pub struct Elf32_Phdr {
pub p_type: Elf32_Word,
pub p_offset: Elf32_Off,
pub p_vaddr: Elf32_Addr,
pub p_paddr: Elf32_Addr,
pub p_filesz: Elf32_Word,
pub p_memsz: Elf32_Word,
pub p_flags: Elf32_Word,
pub p_align: Elf32_Word,
}
pub struct Elf64_Phdr {
pub p_type: Elf64_Word,
pub p_flags: Elf64_Word,
pub p_offset: Elf64_Off,
pub p_vaddr: Elf64_Addr,
pub p_paddr: Elf64_Addr,
pub p_filesz: Elf64_Xword,
pub p_memsz: Elf64_Xword,
pub p_align: Elf64_Xword,
}
pub struct Aux32Info {
pub a_type: Elf32_Word,
pub a_v: Elf32_Word,
}
pub struct Aux64Info {
pub a_type: Elf64_Word,
pub a_v: Elf64_Xword,
}
// link.h
pub struct dl_phdr_info {
pub dlpi_addr: Elf_Addr,
pub dlpi_name: *const c_char,
pub dlpi_phdr: *const Elf_Phdr,
pub dlpi_phnum: Elf_Half,
pub dlpi_adds: c_ulonglong,
pub dlpi_subs: c_ulonglong,
pub dlpi_tls_modid: usize,
pub dlpi_tls_data: *mut c_void,
}
pub struct _cpuset {
bits: [u32; 0],
}
pub struct accept_filter_arg {
pub af_name: [c_char; 16],
pub af_arg: [c_char; 256 - 16],
}
pub struct ki_sigset_t {
pub __bits: [u32; 4],
}
pub struct kinfo_proc2 {
pub p_forw: u64,
pub p_back: u64,
pub p_paddr: u64,
pub p_addr: u64,
pub p_fd: u64,
pub p_cwdi: u64,
pub p_stats: u64,
pub p_limit: u64,
pub p_vmspace: u64,
pub p_sigacts: u64,
pub p_sess: u64,
pub p_tsess: u64,
pub p_ru: u64,
pub p_eflag: i32,
pub p_exitsig: i32,
pub p_flag: i32,
pub p_pid: i32,
pub p_ppid: i32,
pub p_sid: i32,
pub p__pgid: i32,
pub p_tpgid: i32,
pub p_uid: u32,
pub p_ruid: u32,
pub p_gid: u32,
pub p_rgid: u32,
pub p_groups: [u32; KI_NGROUPS as usize],
pub p_ngroups: i16,
pub p_jobc: i16,
pub p_tdev: u32,
pub p_estcpu: u32,
pub p_rtime_sec: u32,
pub p_rtime_usec: u32,
pub p_cpticks: i32,
pub p_pctcpu: u32,
pub p_swtime: u32,
pub p_slptime: u32,
pub p_schedflags: i32,
pub p_uticks: u64,
pub p_sticks: u64,
pub p_iticks: u64,
pub p_tracep: u64,
pub p_traceflag: i32,
pub p_holdcnt: i32,
pub p_siglist: ki_sigset_t,
pub p_sigmask: ki_sigset_t,
pub p_sigignore: ki_sigset_t,
pub p_sigcatch: ki_sigset_t,
pub p_stat: i8,
pub p_priority: u8,
pub p_usrpri: u8,
pub p_nice: u8,
pub p_xstat: u16,
pub p_acflag: u16,
pub p_comm: [c_char; KI_MAXCOMLEN as usize],
pub p_wmesg: [c_char; KI_WMESGLEN as usize],
pub p_wchan: u64,
pub p_login: [c_char; KI_MAXLOGNAME as usize],
pub p_vm_rssize: i32,
pub p_vm_tsize: i32,
pub p_vm_dsize: i32,
pub p_vm_ssize: i32,
pub p_uvalid: i64,
pub p_ustart_sec: u32,
pub p_ustart_usec: u32,
pub p_uutime_sec: u32,
pub p_uutime_usec: u32,
pub p_ustime_sec: u32,
pub p_ustime_usec: u32,
pub p_uru_maxrss: u64,
pub p_uru_ixrss: u64,
pub p_uru_idrss: u64,
pub p_uru_isrss: u64,
pub p_uru_minflt: u64,
pub p_uru_majflt: u64,
pub p_uru_nswap: u64,
pub p_uru_inblock: u64,
pub p_uru_oublock: u64,
pub p_uru_msgsnd: u64,
pub p_uru_msgrcv: u64,
pub p_uru_nsignals: u64,
pub p_uru_nvcsw: u64,
pub p_uru_nivcsw: u64,
pub p_uctime_sec: u32,
pub p_uctime_usec: u32,
pub p_cpuid: u64,
pub p_realflag: u64,
pub p_nlwps: u64,
pub p_nrlwps: u64,
pub p_realstat: u64,
pub p_svuid: u32,
pub p_svgid: u32,
pub p_ename: [c_char; KI_MAXEMULLEN as usize],
pub p_vm_vsize: i64,
pub p_vm_msize: i64,
}
pub struct kinfo_lwp {
pub l_forw: u64,
pub l_back: u64,
pub l_laddr: u64,
pub l_addr: u64,
pub l_lid: i32,
pub l_flag: i32,
pub l_swtime: u32,
pub l_slptime: u32,
pub l_schedflags: i32,
pub l_holdcnt: i32,
pub l_priority: u8,
pub l_usrpri: u8,
pub l_stat: i8,
l_pad1: i8,
l_pad2: i32,
pub l_wmesg: [c_char; KI_WMESGLEN as usize],
pub l_wchan: u64,
pub l_cpuid: u64,
pub l_rtime_sec: u32,
pub l_rtime_usec: u32,
pub l_cpticks: u32,
pub l_pctcpu: u32,
pub l_pid: u32,
pub l_name: [c_char; KI_LNAMELEN as usize],
}
pub struct kinfo_vmentry {
pub kve_start: u64,
pub kve_end: u64,
pub kve_offset: u64,
pub kve_type: u32,
pub kve_flags: u32,
pub kve_count: u32,
pub kve_wired_count: u32,
pub kve_advice: u32,
pub kve_attributes: u32,
pub kve_protection: u32,
pub kve_max_protection: u32,
pub kve_ref_count: u32,
pub kve_inheritance: u32,
pub kve_vn_fileid: u64,
pub kve_vn_size: u64,
pub kve_vn_fsid: u64,
pub kve_vn_rdev: u64,
pub kve_vn_type: u32,
pub kve_vn_mode: u32,
pub kve_path: [c_char; crate::PATH_MAX as usize],
}
pub struct __c_anonymous_posix_spawn_fae_open {
pub path: *mut c_char,
pub oflag: c_int,
pub mode: crate::mode_t,
}
pub struct __c_anonymous_posix_spawn_fae_dup2 {
pub newfildes: c_int,
}
pub struct posix_spawnattr_t {
pub sa_flags: c_short,
pub sa_pgroup: crate::pid_t,
pub sa_schedparam: crate::sched_param,
pub sa_schedpolicy: c_int,
pub sa_sigdefault: sigset_t,
pub sa_sigmask: sigset_t,
}
pub struct posix_spawn_file_actions_entry_t {
pub fae_action: fae_action,
pub fae_fildes: c_int,
pub fae_data: __c_anonymous_posix_spawn_fae,
}
pub struct posix_spawn_file_actions_t {
pub size: c_uint,
pub len: c_uint,
pub fae: *mut posix_spawn_file_actions_entry_t,
}
pub struct ptrace_lwpinfo {
pub pl_lwpid: lwpid_t,
pub pl_event: c_int,
}
pub struct ptrace_lwpstatus {
pub pl_lwpid: lwpid_t,
pub pl_sigpend: sigset_t,
pub pl_sigmask: sigset_t,
pub pl_name: [c_char; 20],
pub pl_private: *mut c_void,
}
pub struct ptrace_siginfo {
pub psi_siginfo: siginfo_t,
pub psi_lwpid: lwpid_t,
}
pub struct ptrace_event {
pub pe_set_event: c_int,
}
pub struct sysctldesc {
pub descr_num: i32,
pub descr_ver: u32,
pub descr_len: u32,
pub descr_str: [c_char; 1],
}
pub struct ifreq {
pub _priv: [[c_char; 6]; 24],
}
pub struct ifconf {
pub ifc_len: c_int,
pub ifc_ifcu: __c_anonymous_ifc_ifcu,
}
pub struct tcp_info {
pub tcpi_state: u8,
pub __tcpi_ca_state: u8,
pub __tcpi_retransmits: u8,
pub __tcpi_probes: u8,
pub __tcpi_backoff: u8,
pub tcpi_options: u8,
pub tcp_snd_wscale: u8,
pub tcp_rcv_wscale: u8,
pub tcpi_rto: u32,
pub __tcpi_ato: u32,
pub tcpi_snd_mss: u32,
pub tcpi_rcv_mss: u32,
pub __tcpi_unacked: u32,
pub __tcpi_sacked: u32,
pub __tcpi_lost: u32,
pub __tcpi_retrans: u32,
pub __tcpi_fackets: u32,
pub __tcpi_last_data_sent: u32,
pub __tcpi_last_ack_sent: u32,
pub tcpi_last_data_recv: u32,
pub __tcpi_last_ack_recv: u32,
pub __tcpi_pmtu: u32,
pub __tcpi_rcv_ssthresh: u32,
pub tcpi_rtt: u32,
pub tcpi_rttvar: u32,
pub tcpi_snd_ssthresh: u32,
pub tcpi_snd_cwnd: u32,
pub __tcpi_advmss: u32,
pub __tcpi_reordering: u32,
pub __tcpi_rcv_rtt: u32,
pub tcpi_rcv_space: u32,
pub tcpi_snd_wnd: u32,
pub tcpi_snd_bwnd: u32,
pub tcpi_snd_nxt: u32,
pub tcpi_rcv_nxt: u32,
pub tcpi_toe_tid: u32,
pub tcpi_snd_rexmitpack: u32,
pub tcpi_rcv_ooopack: u32,
pub tcpi_snd_zerowin: u32,
pub __tcpi_pad: [u32; 26],
}
}
s_no_extra_traits! {
pub struct utmpx {
pub ut_name: [c_char; _UTX_USERSIZE],
pub ut_id: [c_char; _UTX_IDSIZE],
pub ut_line: [c_char; _UTX_LINESIZE],
pub ut_host: [c_char; _UTX_HOSTSIZE],
pub ut_session: u16,
pub ut_type: u16,
pub ut_pid: crate::pid_t,
pub ut_exit: __exit_status, // FIXME: when anonymous struct are supported
pub ut_ss: sockaddr_storage,
pub ut_tv: crate::timeval,
pub ut_pad: [u8; _UTX_PADSIZE],
}
pub struct lastlogx {
pub ll_tv: crate::timeval,
pub ll_line: [c_char; _UTX_LINESIZE],
pub ll_host: [c_char; _UTX_HOSTSIZE],
pub ll_ss: sockaddr_storage,
}
pub struct in_pktinfo {
pub ipi_addr: crate::in_addr,
pub ipi_ifindex: c_uint,
}
pub struct arphdr {
pub ar_hrd: u16,
pub ar_pro: u16,
pub ar_hln: u8,
pub ar_pln: u8,
pub ar_op: u16,
}
pub struct in_addr {
pub s_addr: crate::in_addr_t,
}
pub struct ip_mreq {
pub imr_multiaddr: in_addr,
pub imr_interface: in_addr,
}
pub struct sockaddr_in {
pub sin_len: u8,
pub sin_family: crate::sa_family_t,
pub sin_port: crate::in_port_t,
pub sin_addr: crate::in_addr,
pub sin_zero: [i8; 8],
}
pub struct dirent {
pub d_fileno: crate::ino_t,
pub d_reclen: u16,
pub d_namlen: u16,
pub d_type: u8,
pub d_name: [c_char; 512],
}
pub struct statvfs {
pub f_flag: c_ulong,
pub f_bsize: c_ulong,
pub f_frsize: c_ulong,
pub f_iosize: c_ulong,
pub f_blocks: crate::fsblkcnt_t,
pub f_bfree: crate::fsblkcnt_t,
pub f_bavail: crate::fsblkcnt_t,
pub f_bresvd: crate::fsblkcnt_t,
pub f_files: crate::fsfilcnt_t,
pub f_ffree: crate::fsfilcnt_t,
pub f_favail: crate::fsfilcnt_t,
pub f_fresvd: crate::fsfilcnt_t,
pub f_syncreads: u64,
pub f_syncwrites: u64,
pub f_asyncreads: u64,
pub f_asyncwrites: u64,
pub f_fsidx: crate::fsid_t,
pub f_fsid: c_ulong,
pub f_namemax: c_ulong,
pub f_owner: crate::uid_t,
pub f_spare: [u64; 4],
pub f_fstypename: [c_char; 32],
pub f_mntonname: [c_char; 1024],
pub f_mntfromname: [c_char; 1024],
pub f_mntfromlabel: [c_char; 1024],
}
pub struct sockaddr_storage {
pub ss_len: u8,
pub ss_family: crate::sa_family_t,
__ss_pad1: [u8; 6],
__ss_pad2: i64,
__ss_pad3: [u8; 112],
}
pub struct sigevent {
pub sigev_notify: c_int,
pub sigev_signo: c_int,
pub sigev_value: crate::sigval,
__unused1: *mut c_void, //actually a function pointer
pub sigev_notify_attributes: *mut c_void,
}
pub union __c_anonymous_posix_spawn_fae {
pub open: __c_anonymous_posix_spawn_fae_open,
pub dup2: __c_anonymous_posix_spawn_fae_dup2,
}
pub union __c_anonymous_ifc_ifcu {
pub ifcu_buf: *mut c_void,
pub ifcu_req: *mut ifreq,
}
}
cfg_if! {
if #[cfg(feature = "extra_traits")] {
impl PartialEq for utmpx {
fn eq(&self, other: &utmpx) -> bool {
self.ut_type == other.ut_type
&& self.ut_pid == other.ut_pid
&& self.ut_name == other.ut_name
&& self.ut_line == other.ut_line
&& self.ut_id == other.ut_id
&& self.ut_exit == other.ut_exit
&& self.ut_session == other.ut_session
&& self.ut_tv == other.ut_tv
&& self.ut_ss == other.ut_ss
&& self
.ut_pad
.iter()
.zip(other.ut_pad.iter())
.all(|(a, b)| a == b)
&& self
.ut_host
.iter()
.zip(other.ut_host.iter())
.all(|(a, b)| a == b)
}
}
impl Eq for utmpx {}
impl fmt::Debug for utmpx {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("utmpx")
.field("ut_name", &self.ut_name)
.field("ut_id", &self.ut_id)
.field("ut_line", &self.ut_line)
// FIXME .field("ut_host", &self.ut_host)
.field("ut_session", &self.ut_session)
.field("ut_type", &self.ut_type)
.field("ut_pid", &self.ut_pid)
.field("ut_exit", &self.ut_exit)
.field("ut_ss", &self.ut_ss)
.field("ut_tv", &self.ut_tv)
// FIXME .field("ut_pad", &self.ut_pad)
.finish()
}
}
impl hash::Hash for utmpx {
fn hash<H: hash::Hasher>(&self, state: &mut H) {
self.ut_name.hash(state);
self.ut_type.hash(state);
self.ut_pid.hash(state);
self.ut_line.hash(state);
self.ut_id.hash(state);
self.ut_host.hash(state);
self.ut_exit.hash(state);
self.ut_session.hash(state);
self.ut_tv.hash(state);
self.ut_ss.hash(state);
self.ut_pad.hash(state);
}
}
impl PartialEq for lastlogx {
fn eq(&self, other: &lastlogx) -> bool {
self.ll_tv == other.ll_tv
&& self.ll_line == other.ll_line
&& self.ll_ss == other.ll_ss
&& self
.ll_host
.iter()
.zip(other.ll_host.iter())
.all(|(a, b)| a == b)
}
}
impl Eq for lastlogx {}
impl fmt::Debug for lastlogx {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("lastlogx")
.field("ll_tv", &self.ll_tv)
.field("ll_line", &self.ll_line)
// FIXME.field("ll_host", &self.ll_host)
.field("ll_ss", &self.ll_ss)
.finish()
}