Skip to content

Commit 90af735

Browse files
committedApr 21, 2019
Expose si_addr on siginfo_t. Refs rust-lang#716
1 parent fa186bb commit 90af735

File tree

1 file changed

+115
-11
lines changed
  • src/unix/notbsd/linux/other

1 file changed

+115
-11
lines changed
 

‎src/unix/notbsd/linux/other/mod.rs

+115-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,120 @@
11
pub type __priority_which_t = ::c_uint;
22

3+
cfg_if! {
4+
if #[cfg(libc_union)] {
5+
#[repr(C)]
6+
#[derive(Copy, Clone)]
7+
struct addr_bnd_t {
8+
lower: *mut ::c_void,
9+
upper: *mut ::c_void,
10+
}
11+
12+
#[repr(C)]
13+
#[derive(Copy, Clone)]
14+
union sigfault_t_anonymous_union {
15+
addr_bnd: addr_bnd_t,
16+
pkey: u32,
17+
}
18+
19+
#[repr(C)]
20+
#[derive(Copy, Clone)]
21+
struct sigfault_t {
22+
addr: *mut ::c_void,
23+
#[cfg(target_arch = "sparc")]
24+
trapno: ::c_int,
25+
addr_lsb: ::c_short,
26+
anonymous_union: sigfault_t_anonymous_union,
27+
}
28+
29+
#[repr(C)]
30+
#[derive(Copy, Clone)]
31+
union sifields_t {
32+
#[cfg(target_arch = "x86_64")]
33+
_pad: [::c_int; 28],
34+
#[cfg(not(target_arch = "x86_64"))]
35+
_pad: [::c_int; 29],
36+
sigfault: sigfault_t,
37+
}
38+
39+
impl ::fmt::Debug for sigfault_t_anonymous_union {
40+
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
41+
// Excludes the fields because we can't know which is valid
42+
f.debug_struct("sigfault_t_anonymous_union")
43+
.finish()
44+
}
45+
}
46+
47+
impl ::fmt::Debug for sigfault_t {
48+
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
49+
// TODO: include trapno on Sparc
50+
f.debug_struct("sigfault_t")
51+
.field("addr", &self.addr)
52+
.field("addr_lsb", &self.addr_lsb)
53+
.field("anonymous_union", &self.anonymous_union)
54+
.finish()
55+
}
56+
}
57+
58+
impl ::fmt::Debug for sifields_t {
59+
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
60+
// No way to print anything more detailed without the
61+
// discriminant from siginfo_t
62+
f.debug_struct("sifields_t").finish()
63+
}
64+
}
65+
} else {
66+
type sifields_t = [::c_int; 29];
67+
}
68+
}
69+
70+
s_no_extra_traits! {
71+
pub struct siginfo_t {
72+
pub si_signo: ::c_int,
73+
pub si_errno: ::c_int,
74+
pub si_code: ::c_int,
75+
sifields: sifields_t,
76+
77+
#[cfg(target_arch = "x86_64")]
78+
_align: [u64; 0],
79+
#[cfg(not(target_arch = "x86_64"))]
80+
_align: [usize; 0],
81+
}
82+
}
83+
84+
cfg_if! {
85+
if #[cfg(libc_union)] {
86+
impl siginfo_t {
87+
pub unsafe fn si_addr(&self) -> *mut ::c_void {
88+
self.sifields.sigfault.addr
89+
}
90+
}
91+
} else {
92+
impl siginfo_t {
93+
pub unsafe fn si_addr(&self) -> *mut ::c_void {
94+
#[repr(C)]
95+
struct siginfo_sigfault {
96+
_si_signo: ::c_int,
97+
_si_errno: ::c_int,
98+
_si_code: ::c_int,
99+
si_addr: *mut ::c_void
100+
}
101+
(*(self as *const siginfo_t as *const siginfo_sigfault)).si_addr
102+
}
103+
}
104+
}
105+
}
106+
107+
impl ::fmt::Debug for siginfo_t {
108+
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
109+
// TODO: include fields from sifields
110+
f.debug_struct("siginfo_t")
111+
.field("si_signo", &self.si_signo)
112+
.field("si_errno", &self.si_errno)
113+
.field("si_code", &self.si_code)
114+
.finish()
115+
}
116+
}
117+
3118
s! {
4119
pub struct aiocb {
5120
pub aio_fildes: ::c_int,
@@ -44,17 +159,6 @@ s! {
44159
pub ss_size: ::size_t
45160
}
46161

47-
pub struct siginfo_t {
48-
pub si_signo: ::c_int,
49-
pub si_errno: ::c_int,
50-
pub si_code: ::c_int,
51-
pub _pad: [::c_int; 29],
52-
#[cfg(target_arch = "x86_64")]
53-
_align: [u64; 0],
54-
#[cfg(not(target_arch = "x86_64"))]
55-
_align: [usize; 0],
56-
}
57-
58162
pub struct glob64_t {
59163
pub gl_pathc: ::size_t,
60164
pub gl_pathv: *mut *mut ::c_char,

0 commit comments

Comments
 (0)