Skip to content

Commit

Permalink
Expose si_addr on siginfo_t. Refs #716
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed May 2, 2019
1 parent 11f30a8 commit 9cfe90b
Showing 1 changed file with 120 additions and 30 deletions.
150 changes: 120 additions & 30 deletions src/unix/notbsd/linux/other/mod.rs
@@ -1,5 +1,125 @@
pub type __priority_which_t = ::c_uint;

cfg_if! {
if #[cfg(libc_union)] {
#[repr(C)]
#[derive(Copy, Clone)]
struct addr_bnd_t {
lower: *mut ::c_void,
upper: *mut ::c_void,
}

#[repr(C)]
#[derive(Copy, Clone)]
union sigfault_t_anonymous_union {
addr_bnd: addr_bnd_t,
pkey: u32,
}

#[repr(C)]
#[derive(Copy, Clone)]
struct sigfault_t {
addr: *mut ::c_void,
#[cfg(target_arch = "sparc")]
trapno: ::c_int,
addr_lsb: ::c_short,
anonymous_union: sigfault_t_anonymous_union,
}

cfg_if! {
if #[cfg(target_pointer_width = "64")] {
type SI_PADDING = [::c_int; 28];
} else {
type SI_PADDING = [::c_int; 29];
}
}

#[repr(C)]
#[derive(Copy, Clone)]
union sifields_t {
_pad: SI_PADDING,
sigfault: sigfault_t,
}

impl ::fmt::Debug for sigfault_t_anonymous_union {
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
// Excludes the fields because we can't know which is valid
f.debug_struct("sigfault_t_anonymous_union")
.finish()
}
}

impl ::fmt::Debug for sigfault_t {
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
// TODO: include trapno on Sparc
f.debug_struct("sigfault_t")
.field("addr", &self.addr)
.field("addr_lsb", &self.addr_lsb)
.field("anonymous_union", &self.anonymous_union)
.finish()
}
}

impl ::fmt::Debug for sifields_t {
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
// No way to print anything more detailed without the
// discriminant from siginfo_t
f.debug_struct("sifields_t").finish()
}
}
} else {
type sifields_t = [::c_int; 29];
}
}

s_no_extra_traits! {
pub struct siginfo_t {
pub si_signo: ::c_int,
pub si_errno: ::c_int,
pub si_code: ::c_int,
sifields: sifields_t,

#[cfg(target_arch = "x86_64")]
_align: [u64; 0],
#[cfg(not(target_arch = "x86_64"))]
_align: [usize; 0],
}
}

cfg_if! {
if #[cfg(libc_union)] {
impl siginfo_t {
pub unsafe fn si_addr(&self) -> *mut ::c_void {
self.sifields.sigfault.addr
}
}
} else {
impl siginfo_t {
pub unsafe fn si_addr(&self) -> *mut ::c_void {
#[repr(C)]
struct siginfo_sigfault {
_si_signo: ::c_int,
_si_errno: ::c_int,
_si_code: ::c_int,
si_addr: *mut ::c_void
}
(*(self as *const siginfo_t as *const siginfo_sigfault)).si_addr
}
}
}
}

impl ::fmt::Debug for siginfo_t {
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
// TODO: include fields from sifields
f.debug_struct("siginfo_t")
.field("si_signo", &self.si_signo)
.field("si_errno", &self.si_errno)
.field("si_code", &self.si_code)
.finish()
}
}

s! {
pub struct aiocb {
pub aio_fildes: ::c_int,
Expand Down Expand Up @@ -44,23 +164,6 @@ s! {
pub ss_size: ::size_t
}

pub struct siginfo_t {
pub si_signo: ::c_int,
pub si_errno: ::c_int,
pub si_code: ::c_int,
#[deprecated(
since="0.2.54",
note="Please leave a comment on \
https://github.com/rust-lang/libc/pull/1316 if you're using \
this field"
)]
pub _pad: [::c_int; 29],
#[cfg(target_arch = "x86_64")]
_align: [u64; 0],
#[cfg(not(target_arch = "x86_64"))]
_align: [usize; 0],
}

pub struct glob64_t {
pub gl_pathc: ::size_t,
pub gl_pathv: *mut *mut ::c_char,
Expand Down Expand Up @@ -200,19 +303,6 @@ s! {
}
}

impl siginfo_t {
pub unsafe fn si_addr(&self) -> *mut ::c_void {
#[repr(C)]
struct siginfo_sigfault {
_si_signo: ::c_int,
_si_errno: ::c_int,
_si_code: ::c_int,
si_addr: *mut ::c_void
}
(*(self as *const siginfo_t as *const siginfo_sigfault)).si_addr
}
}

s_no_extra_traits! {
pub struct utmpx {
pub ut_type: ::c_short,
Expand Down

0 comments on commit 9cfe90b

Please sign in to comment.