Skip to content

Refactor dynamic library error checking on *nix #75811

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

Merged
merged 4 commits into from
Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from 2 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
114 changes: 80 additions & 34 deletions src/librustc_metadata/dynamic_lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,51 +51,97 @@ mod tests;

#[cfg(unix)]
mod dl {
use std::ffi::{CStr, CString, OsStr};
use std::ffi::{CString, OsStr};
use std::os::unix::prelude::*;
use std::ptr;
use std::str;

pub(super) fn open(filename: &OsStr) -> Result<*mut u8, String> {
check_for_errors_in(|| unsafe {
let s = CString::new(filename.as_bytes()).unwrap();
libc::dlopen(s.as_ptr(), libc::RTLD_LAZY) as *mut u8
})
}
// `dlerror` is process global, so we can only allow a single thread at a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: dlerror It is MT-safe (thread local) on most modern POSIX implementations. Exceptions include freebsd and dragonflybsd as per investigation I did early this year, and apparently illumos as I’ve just learnt.

POSIX in particular allows for dlerror to be MT-safe (since a comparatively recent standard revision), but does not require it.

// time to call `dlsym` and `dlopen` if we want to check the error message.
mod error {
use std::ffi::CStr;
use std::lazy::SyncLazy;
use std::sync::{Mutex, MutexGuard};

fn check_for_errors_in<T, F>(f: F) -> Result<T, String>
where
F: FnOnce() -> T,
{
use std::sync::{Mutex, Once};
static INIT: Once = Once::new();
static mut LOCK: *mut Mutex<()> = ptr::null_mut();
unsafe {
INIT.call_once(|| {
LOCK = Box::into_raw(Box::new(Mutex::new(())));
});
// dlerror isn't thread safe, so we need to lock around this entire
// sequence
let _guard = (*LOCK).lock();
let _old_error = libc::dlerror();

let result = f();

let last_error = libc::dlerror() as *const _;
if ptr::null() == last_error {
Ok(result)
} else {
let s = CStr::from_ptr(last_error).to_bytes();
Err(str::from_utf8(s).unwrap().to_owned())
pub fn lock() -> MutexGuard<'static, Guard> {
static LOCK: SyncLazy<Mutex<Guard>> = SyncLazy::new(|| Mutex::new(Guard { _priv: () }));
LOCK.lock().unwrap()
}

pub struct Guard {
_priv: (),
}

impl Guard {
pub fn get(&mut self) -> Result<(), String> {
let msg = unsafe { libc::dlerror() };
if msg.is_null() {
Ok(())
} else {
let msg = unsafe { CStr::from_ptr(msg as *const _) };
Err(msg.to_string_lossy().into_owned())
}
}

pub fn clear(&mut self) {
let _ = unsafe { libc::dlerror() };
}
}
}

pub(super) fn open(filename: &OsStr) -> Result<*mut u8, String> {
let s = CString::new(filename.as_bytes()).unwrap();

let mut dlerror = error::lock();
let ret = unsafe { libc::dlopen(s.as_ptr(), libc::RTLD_LAZY) } as *mut u8;

if !ret.is_null() {
return Ok(ret);
}

// A NULL return from `dlopen` indicates that an error has
// definitely occurred, so if nothing is in `dlerror`, we are
// racing with another thread that has stolen our error message.
dlerror.get().and_then(|()| Err("Unknown error".to_string()))
}

pub(super) unsafe fn symbol(
handle: *mut u8,
symbol: *const libc::c_char,
) -> Result<*mut u8, String> {
check_for_errors_in(|| libc::dlsym(handle as *mut libc::c_void, symbol) as *mut u8)
// HACK(#74469): On some platforms, users observed foreign code
// (specifically libc) invoking `dlopen`/`dlsym` in parallel with the
// functions in this module. This is problematic because, according to
// the POSIX API documentation, `dlerror` must be called to determine
// whether `dlsym` succeeded. Unlike `dlopen`, a NULL return value may
// indicate a successfully resolved symbol with an address of zero.
//
// Because symbols with address zero shouldn't occur in practice, we
// treat them as errors on platforms with misbehaving libc
// implementations.
const DLSYM_NULL_IS_ERROR: bool = cfg!(target_os = "illumos");

let mut dlerror = error::lock();

// No need to flush `dlerror` if we aren't using it to determine whether
// the subsequent call to `dlsym` succeeded. If an error occurs, any
// stale value will be overwritten.
if !DLSYM_NULL_IS_ERROR {
dlerror.clear();
}

let ret = libc::dlsym(handle as *mut libc::c_void, symbol) as *mut u8;

// A non-NULL return value *always* indicates success. There's no need
// to check `dlerror`.
if !ret.is_null() {
return Ok(ret);
}

match dlerror.get() {
Ok(()) if DLSYM_NULL_IS_ERROR => Err("Unknown error".to_string()),
Ok(()) => Ok(ret),

Err(msg) => Err(msg),
}
}

pub(super) unsafe fn close(handle: *mut u8) {
Expand Down
1 change: 1 addition & 0 deletions src/librustc_metadata/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#![feature(drain_filter)]
#![feature(in_band_lifetimes)]
#![feature(nll)]
#![feature(once_cell)]
#![feature(or_patterns)]
#![feature(proc_macro_internals)]
#![feature(min_specialization)]
Expand Down