Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fallback to .init_array when no arguments are available on glibc Linux #66547

Merged
merged 6 commits into from
Nov 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/libstd/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,11 @@ pub struct ArgsOs { inner: sys::args::Args }
/// (such as `*` and `?`). On Windows this is not done, and such arguments are
/// passed as-is.
///
/// On glibc Linux, arguments are retrieved by placing a function in .init_array.
/// glibc passes argc, argv, and envp to functions in .init_array, as a non-standard extension.
/// This allows `std::env::args` to work even in a `cdylib` or `staticlib`, as it does on macOS
/// and Windows.
///
/// # Panics
///
/// The returned iterator will panic during iteration if any argument to the
Expand Down Expand Up @@ -732,6 +737,11 @@ pub fn args() -> Args {
/// set to arbitrary text, and it may not even exist, so this property should
/// not be relied upon for security purposes.
///
/// On glibc Linux, arguments are retrieved by placing a function in .init_array.
/// glibc passes argc, argv, and envp to functions in .init_array, as a non-standard extension.
/// This allows `std::env::args` to work even in a `cdylib` or `staticlib`, as it does on macOS
/// and Windows.
///
/// # Examples
///
/// ```
Expand Down
30 changes: 29 additions & 1 deletion src/libstd/sys/unix/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,40 @@ mod imp {
// acquire this mutex reentrantly!
static LOCK: Mutex = Mutex::new();

pub unsafe fn init(argc: isize, argv: *const *const u8) {
unsafe fn really_init(argc: isize, argv: *const *const u8) {
let _guard = LOCK.lock();
ARGC = argc;
ARGV = argv;
}

#[inline(always)]
pub unsafe fn init(_argc: isize, _argv: *const *const u8) {
#[cfg(not(all(target_os = "linux", target_env = "gnu")))]
really_init(_argc, _argv);
}

/// glibc passes argc, argv, and envp to functions in .init_array, as a non-standard extension.
/// This allows `std::env::args` to work even in a `cdylib`, as it does on macOS and Windows.
#[cfg(all(target_os = "linux", target_env = "gnu"))]
#[used]
#[link_section = ".init_array.00099"]
static ARGV_INIT_ARRAY: extern "C" fn(
crate::os::raw::c_int,
*const *const u8,
*const *const u8,
) = {
extern "C" fn init_wrapper(
argc: crate::os::raw::c_int,
argv: *const *const u8,
_envp: *const *const u8,
) {
unsafe {
really_init(argc as isize, argv);
}
}
init_wrapper
};

pub unsafe fn cleanup() {
let _guard = LOCK.lock();
ARGC = 0;
Expand Down
12 changes: 12 additions & 0 deletions src/test/run-make-fulldeps/glibc-staticlib-args/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# only-gnu
# only-linux

-include ../tools.mk

# This ensures that std::env::args works in a library called from C on glibc Linux.

all:
$(RUSTC) --crate-type=staticlib library.rs
$(CC) program.c $(call STATICLIB,library) $(call OUT_EXE,program) \
$(EXTRACFLAGS) $(EXTRACXXFLAGS)
$(call RUN,program)
4 changes: 4 additions & 0 deletions src/test/run-make-fulldeps/glibc-staticlib-args/library.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#[no_mangle]
pub extern fn args_check() {
assert_ne!(std::env::args_os().count(), 0);
}
7 changes: 7 additions & 0 deletions src/test/run-make-fulldeps/glibc-staticlib-args/program.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// ignore-license
void args_check();

int main() {
args_check();
return 0;
}