// Copyright 2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. /*! Dynamic library facilities. A simple wrapper over the platform's dynamic library facilities */ use c_str::ToCStr; use iter::Iterator; use mem; use ops::*; use option::*; use os; use path::GenericPath; use path; use result::*; use slice::{Vector,OwnedVector}; use str; use vec::Vec; pub struct DynamicLibrary { handle: *u8} impl Drop for DynamicLibrary { fn drop(&mut self) { match dl::check_for_errors_in(|| { unsafe { dl::close(self.handle) } }) { Ok(()) => {}, Err(str) => fail!("{}", str) } } } impl DynamicLibrary { /// Lazily open a dynamic library. When passed None it gives a /// handle to the calling process pub fn open(filename: Option<&path::Path>) -> Result { unsafe { let maybe_library = dl::check_for_errors_in(|| { match filename { Some(name) => dl::open_external(name), None => dl::open_internal() } }); // The dynamic library must not be constructed if there is // an error opening the library so the destructor does not // run. match maybe_library { Err(err) => Err(err), Ok(handle) => Ok(DynamicLibrary { handle: handle }) } } } /// Appends a path to the system search path for dynamic libraries pub fn add_search_path(path: &path::Path) { let (envvar, sep) = if cfg!(windows) { ("PATH", ';' as u8) } else if cfg!(target_os = "macos") { ("DYLD_LIBRARY_PATH", ':' as u8) } else { ("LD_LIBRARY_PATH", ':' as u8) }; let newenv = os::getenv_as_bytes(envvar).unwrap_or(box []); let mut newenv = newenv.move_iter().collect::>(); newenv.push_all(&[sep]); newenv.push_all(path.as_vec()); os::setenv(envvar, str::from_utf8(newenv.as_slice()).unwrap()); } /// Access the value at the symbol of the dynamic library pub unsafe fn symbol(&self, symbol: &str) -> Result { // This function should have a lifetime constraint of 'a on // T but that feature is still unimplemented let maybe_symbol_value = dl::check_for_errors_in(|| { symbol.with_c_str(|raw_string| { dl::symbol(self.handle, raw_string) }) }); // The value must not be constructed if there is an error so // the destructor does not run. match maybe_symbol_value { Err(err) => Err(err), Ok(symbol_value) => Ok(mem::transmute(symbol_value)) } } } #[cfg(test)] mod test { use super::*; use prelude::*; use libc; #[test] #[ignore(cfg(windows))] // FIXME #8818 #[ignore(cfg(target_os="android"))] // FIXME(#10379) fn test_loading_cosine() { // The math library does not need to be loaded since it is already // statically linked in let libm = match DynamicLibrary::open(None) { Err(error) => fail!("Could not load self as module: {}", error), Ok(libm) => libm }; let cosine: extern fn(libc::c_double) -> libc::c_double = unsafe { match libm.symbol("cos") { Err(error) => fail!("Could not load function cos: {}", error), Ok(cosine) => cosine } }; let argument = 0.0; let expected_result = 1.0; let result = cosine(argument); if result != expected_result { fail!("cos({:?}) != {:?} but equaled {:?} instead", argument, expected_result, result) } } #[test] #[cfg(target_os = "linux")] #[cfg(target_os = "macos")] #[cfg(target_os = "freebsd")] fn test_errors_do_not_crash() { // Open /dev/null as a library to get an error, and make sure // that only causes an error, and not a crash. let path = GenericPath::new("/dev/null"); match DynamicLibrary::open(Some(&path)) { Err(_) => {} Ok(_) => fail!("Successfully opened the empty library.") } } } #[cfg(target_os = "linux")] #[cfg(target_os = "android")] #[cfg(target_os = "macos")] #[cfg(target_os = "freebsd")] pub mod dl { use c_str::ToCStr; use libc; use path; use ptr; use str; use result::*; pub unsafe fn open_external(filename: &path::Path) -> *u8 { filename.with_c_str(|raw_name| { dlopen(raw_name, Lazy as libc::c_int) as *u8 }) } pub unsafe fn open_internal() -> *u8 { dlopen(ptr::null(), Lazy as libc::c_int) as *u8 } pub fn check_for_errors_in(f: || -> T) -> Result { use unstable::mutex::{StaticNativeMutex, NATIVE_MUTEX_INIT}; static mut lock: StaticNativeMutex = NATIVE_MUTEX_INIT; unsafe { // dlerror isn't thread safe, so we need to lock around this entire // sequence let _guard = lock.lock(); let _old_error = dlerror(); let result = f(); let last_error = dlerror(); let ret = if ptr::null() == last_error { Ok(result) } else { Err(str::raw::from_c_str(last_error)) }; ret } } pub unsafe fn symbol(handle: *u8, symbol: *libc::c_char) -> *u8 { dlsym(handle as *libc::c_void, symbol) as *u8 } pub unsafe fn close(handle: *u8) { dlclose(handle as *libc::c_void); () } pub enum RTLD { Lazy = 1, Now = 2, Global = 256, Local = 0, } #[link_name = "dl"] extern { fn dlopen(filename: *libc::c_char, flag: libc::c_int) -> *libc::c_void; fn dlerror() -> *libc::c_char; fn dlsym(handle: *libc::c_void, symbol: *libc::c_char) -> *libc::c_void; fn dlclose(handle: *libc::c_void) -> libc::c_int; } } #[cfg(target_os = "win32")] pub mod dl { use libc; use os; use ptr; use result::{Ok, Err, Result}; pub unsafe fn open_external(filename: &path::Path) -> *u8 { os::win32::as_utf16_p(filename.as_str().unwrap(), |raw_name| { LoadLibraryW(raw_name as *libc::c_void) as *u8 }) } pub unsafe fn open_internal() -> *u8 { let handle = ptr::null(); GetModuleHandleExW(0 as libc::DWORD, ptr::null(), &handle as **libc::c_void); handle as *u8 } pub fn check_for_errors_in(f: || -> T) -> Result { unsafe { SetLastError(0); let result = f(); let error = os::errno(); if 0 == error { Ok(result) } else { Err(format!("Error code {}", error)) } } } pub unsafe fn symbol(handle: *u8, symbol: *libc::c_char) -> *u8 { GetProcAddress(handle as *libc::c_void, symbol) as *u8 } pub unsafe fn close(handle: *u8) { FreeLibrary(handle as *libc::c_void); () } extern "system" { fn SetLastError(error: libc::size_t); fn LoadLibraryW(name: *libc::c_void) -> *libc::c_void; fn GetModuleHandleExW(dwFlags: libc::DWORD, name: *u16, handle: **libc::c_void) -> *libc::c_void; fn GetProcAddress(handle: *libc::c_void, name: *libc::c_char) -> *libc::c_void; fn FreeLibrary(handle: *libc::c_void); } }