Skip to content

Commit 3662a9f

Browse files
authored
Rollup merge of rust-lang#63723 - josephlr:sigemptyset, r=alexcrichton
Consolidate sigemptyset workarounds In sys/unix/process, we work around the sigemptyset linking issues on android in two different ways. This change consolidates these workarounds, and avoids duplicating bindings from `libc`.
2 parents af77aed + 8e91dca commit 3662a9f

File tree

2 files changed

+27
-40
lines changed

2 files changed

+27
-40
lines changed

src/libstd/sys/unix/process/process_common.rs

+24-30
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,30 @@ cfg_if::cfg_if! {
2020
}
2121
}
2222

23+
// Android with api less than 21 define sig* functions inline, so it is not
24+
// available for dynamic link. Implementing sigemptyset and sigaddset allow us
25+
// to support older Android version (independent of libc version).
26+
// The following implementations are based on https://git.io/vSkNf
27+
cfg_if::cfg_if! {
28+
if #[cfg(target_os = "android")] {
29+
pub unsafe fn sigemptyset(set: *mut libc::sigset_t) -> libc::c_int {
30+
set.write_bytes(0u8, 1);
31+
return 0;
32+
}
33+
#[allow(dead_code)]
34+
pub unsafe fn sigaddset(set: *mut libc::sigset_t, signum: libc::c_int) -> libc::c_int {
35+
use crate::{slice, mem};
36+
37+
let raw = slice::from_raw_parts_mut(set as *mut u8, mem::size_of::<libc::sigset_t>());
38+
let bit = (signum - 1) as usize;
39+
raw[bit / 8] |= 1 << (bit % 8);
40+
return 0;
41+
}
42+
} else {
43+
pub use libc::{sigemptyset, sigaddset};
44+
}
45+
}
46+
2347
////////////////////////////////////////////////////////////////////////////////
2448
// Command
2549
////////////////////////////////////////////////////////////////////////////////
@@ -429,36 +453,6 @@ mod tests {
429453
}
430454
}
431455

432-
// Android with api less than 21 define sig* functions inline, so it is not
433-
// available for dynamic link. Implementing sigemptyset and sigaddset allow us
434-
// to support older Android version (independent of libc version).
435-
// The following implementations are based on https://git.io/vSkNf
436-
437-
#[cfg(not(target_os = "android"))]
438-
extern {
439-
#[cfg_attr(target_os = "netbsd", link_name = "__sigemptyset14")]
440-
fn sigemptyset(set: *mut libc::sigset_t) -> libc::c_int;
441-
442-
#[cfg_attr(target_os = "netbsd", link_name = "__sigaddset14")]
443-
fn sigaddset(set: *mut libc::sigset_t, signum: libc::c_int) -> libc::c_int;
444-
}
445-
446-
#[cfg(target_os = "android")]
447-
unsafe fn sigemptyset(set: *mut libc::sigset_t) -> libc::c_int {
448-
set.write_bytes(0u8, 1);
449-
return 0;
450-
}
451-
452-
#[cfg(target_os = "android")]
453-
unsafe fn sigaddset(set: *mut libc::sigset_t, signum: libc::c_int) -> libc::c_int {
454-
use crate::slice;
455-
456-
let raw = slice::from_raw_parts_mut(set as *mut u8, mem::size_of::<libc::sigset_t>());
457-
let bit = (signum - 1) as usize;
458-
raw[bit / 8] |= 1 << (bit % 8);
459-
return 0;
460-
}
461-
462456
// See #14232 for more information, but it appears that signal delivery to a
463457
// newly spawned process may just be raced in the macOS, so to prevent this
464458
// test from being flaky we ignore it on macOS.

src/libstd/sys/unix/process/process_unix.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,7 @@ impl Command {
214214
// need to clean things up now to avoid confusing the program
215215
// we're about to run.
216216
let mut set = MaybeUninit::<libc::sigset_t>::uninit();
217-
if cfg!(target_os = "android") {
218-
// Implementing sigemptyset allow us to support older Android
219-
// versions. See the comment about Android and sig* functions in
220-
// process_common.rs
221-
set.as_mut_ptr().write_bytes(0u8, 1);
222-
} else {
223-
cvt(libc::sigemptyset(set.as_mut_ptr()))?;
224-
}
217+
cvt(sigemptyset(set.as_mut_ptr()))?;
225218
cvt(libc::pthread_sigmask(libc::SIG_SETMASK, set.as_ptr(),
226219
ptr::null_mut()))?;
227220
let ret = sys::signal(libc::SIGPIPE, libc::SIG_DFL);
@@ -363,10 +356,10 @@ impl Command {
363356
}
364357

365358
let mut set = MaybeUninit::<libc::sigset_t>::uninit();
366-
cvt(libc::sigemptyset(set.as_mut_ptr()))?;
359+
cvt(sigemptyset(set.as_mut_ptr()))?;
367360
cvt(libc::posix_spawnattr_setsigmask(attrs.0.as_mut_ptr(),
368361
set.as_ptr()))?;
369-
cvt(libc::sigaddset(set.as_mut_ptr(), libc::SIGPIPE))?;
362+
cvt(sigaddset(set.as_mut_ptr(), libc::SIGPIPE))?;
370363
cvt(libc::posix_spawnattr_setsigdefault(attrs.0.as_mut_ptr(),
371364
set.as_ptr()))?;
372365

0 commit comments

Comments
 (0)