1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#![allow(missing_docs)]
use std::env;
use std::ffi::{CString, OsString};
use std::mem;
use std::path::{Path, PathBuf};
use libc;
pub struct DynamicLibrary {
handle: *mut u8
}
unsafe impl Send for DynamicLibrary {}
unsafe impl Sync for DynamicLibrary {}
impl Drop for DynamicLibrary {
fn drop(&mut self) {
if let Err(str) = dl::check_for_errors_in(|| unsafe {
dl::close(self.handle)
}) {
panic!("{}", str)
}
}
}
#[cfg(target_os = "linux")]
pub enum SpecialHandles {
Next,
Default,
}
impl DynamicLibrary {
pub fn open(filename: Option<&Path>) -> Result<Self, String> {
dl::open(filename.map(|path| path.as_os_str()))
.map(|handle| DynamicLibrary { handle })
}
pub fn prepend_search_path(path: &Path) {
let mut search_path = Self::search_path();
search_path.insert(0, path.to_path_buf());
env::set_var(Self::envvar(), &Self::create_path(&search_path));
}
pub fn create_path(path: &[PathBuf]) -> OsString {
let mut newvar = OsString::new();
for (i, path) in path.iter().enumerate() {
if i > 0 { newvar.push(Self::separator()); }
newvar.push(path);
}
newvar
}
pub fn envvar() -> &'static str {
if cfg!(windows) {
"PATH"
} else if cfg!(target_os = "macos") {
"DYLD_LIBRARY_PATH"
} else {
"LD_LIBRARY_PATH"
}
}
fn separator() -> &'static str {
if cfg!(windows) { ";" } else { ":" }
}
pub fn search_path() -> Vec<PathBuf> {
match env::var_os(Self::envvar()) {
Some(var) => env::split_paths(&var).collect(),
None => Vec::new(),
}
}
pub unsafe fn symbol<T>(&self, symbol: &str) -> Result<*mut T, String> {
let raw_string = CString::new(symbol).unwrap();
dl::check_for_errors_in(|| {
dl::symbol(self.handle as *mut libc::c_void, raw_string.as_ptr() as *const _)
})
.map(|sym| mem::transmute(sym))
}
#[cfg(target_os = "linux")]
pub unsafe fn symbol_special<T>(handle: SpecialHandles, symbol: &str) -> Result<*mut T, String> {
let handle = match handle {
SpecialHandles::Next => mem::transmute::<libc::c_long, _>(-1),
SpecialHandles::Default => ::std::ptr::null_mut(),
};
let raw_string = CString::new(symbol).unwrap();
dl::check_for_errors_in(|| {
dl::symbol(handle, raw_string.as_ptr() as *const _)
})
.map(|sym| mem::transmute(sym))
}
}
#[cfg(all(test, not(target_os = "ios")))]
mod test {
use super::*;
use std::mem;
use std::path::Path;
#[test]
#[cfg_attr(any(windows, target_os = "android"), ignore)]
fn test_loading_cosine() {
let libm = match DynamicLibrary::open(None) {
Err(error) => panic!("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) => panic!("Could not load function cos: {}", error),
Ok(cosine) => mem::transmute::<*mut u8, _>(cosine)
}
};
let argument = 0.0;
let expected_result = 1.0;
let result = cosine(argument);
if result != expected_result {
panic!("cos({}) != {} but equaled {} instead", argument,
expected_result, result)
}
}
#[test]
#[cfg(any(target_os = "linux",
target_os = "macos",
target_os = "freebsd",
target_os = "fuchsia",
target_os = "netbsd",
target_os = "dragonfly",
target_os = "bitrig",
target_os = "openbsd",
target_os = "solaris"))]
fn test_errors_do_not_crash() {
let path = Path::new("/dev/null");
match DynamicLibrary::open(Some(&path)) {
Err(_) => {}
Ok(_) => panic!("Successfully opened the empty library.")
}
}
}
#[cfg(any(target_os = "linux",
target_os = "android",
target_os = "macos",
target_os = "ios",
target_os = "fuchsia",
target_os = "freebsd",
target_os = "netbsd",
target_os = "dragonfly",
target_os = "bitrig",
target_os = "openbsd",
target_os = "solaris",
target_os = "emscripten"))]
mod dl {
use std::ffi::{CString, CStr, OsStr};
use std::os::unix::ffi::OsStrExt;
use std::str;
use libc;
use std::ptr;
use std::sync::Mutex;
lazy_static! {
static ref LOCK: Mutex<()> = Mutex::new(());
}
pub fn open(filename: Option<&OsStr>) -> Result<*mut u8, String> {
check_for_errors_in(|| unsafe {
match filename {
Some(filename) => open_external(filename),
None => open_internal(),
}
})
}
const LAZY: libc::c_int = 1;
unsafe fn open_external(filename: &OsStr) -> *mut u8 {
let s = CString::new(filename.as_bytes().to_vec()).unwrap();
dlopen(s.as_ptr() as *const _, LAZY) as *mut u8
}
unsafe fn open_internal() -> *mut u8 {
dlopen(ptr::null(), LAZY) as *mut u8
}
pub fn check_for_errors_in<T, F>(f: F) -> Result<T, String> where
F: FnOnce() -> T,
{
unsafe {
let _guard = LOCK.lock();
let _old_error = dlerror();
let result = f();
let last_error = dlerror() as *const _;
let ret = if ptr::null() == last_error {
Ok(result)
} else {
let s = CStr::from_ptr(last_error).to_bytes();
Err(str::from_utf8(s).unwrap().to_string())
};
ret
}
}
pub unsafe fn symbol(
handle: *mut libc::c_void,
symbol: *const libc::c_char,
) -> *mut u8 {
dlsym(handle, symbol) as *mut u8
}
pub unsafe fn close(handle: *mut u8) {
dlclose(handle as *mut libc::c_void); ()
}
extern {
fn dlopen(
filename: *const libc::c_char,
flag: libc::c_int,
) -> *mut libc::c_void;
fn dlerror() -> *mut libc::c_char;
fn dlsym(
handle: *mut libc::c_void,
symbol: *const libc::c_char,
) -> *mut libc::c_void;
fn dlclose(
handle: *mut libc::c_void,
) -> libc::c_int;
}
}
#[cfg(target_os = "windows")]
mod dl {
use std::ffi::OsStr;
use std::iter::Iterator;
use libc;
use std::ops::FnOnce;
use std::io::Error as IoError;
use std::os::windows::prelude::*;
use std::option::Option::{self, Some, None};
use std::ptr;
use std::result::Result;
use std::result::Result::{Ok, Err};
use std::string::String;
use std::vec::Vec;
pub fn open(filename: Option<&OsStr>) -> Result<*mut u8, String> {
let prev_error_mode = unsafe {
let new_error_mode = 1;
SetErrorMode(new_error_mode)
};
unsafe {
SetLastError(0);
}
let result = match filename {
Some(filename) => {
let filename_str: Vec<_> =
filename.encode_wide().chain(Some(0).into_iter()).collect();
let result = unsafe {
LoadLibraryW(filename_str.as_ptr() as *const libc::c_void)
};
if result == ptr::null_mut() {
Err(format!("{}", IoError::last_os_error()))
} else {
Ok(result as *mut u8)
}
}
None => {
let mut handle = ptr::null_mut();
let succeeded = unsafe {
GetModuleHandleExW(0, ptr::null(), &mut handle)
};
if succeeded == 0 {
Err(format!("{}", IoError::last_os_error()))
} else {
Ok(handle as *mut u8)
}
}
};
unsafe {
SetErrorMode(prev_error_mode);
}
result
}
pub fn check_for_errors_in<T, F>(f: F) -> Result<T, String> where
F: FnOnce() -> T,
{
unsafe {
SetLastError(0);
let result = f();
let error = IoError::last_os_error();
if 0 == error.raw_os_error().unwrap() {
Ok(result)
} else {
Err(format!("{}", error))
}
}
}
pub unsafe fn symbol(handle: *mut libc::c_void, symbol: *const libc::c_char) -> *mut u8 {
GetProcAddress(handle, symbol) as *mut u8
}
pub unsafe fn close(handle: *mut u8) {
FreeLibrary(handle as *mut libc::c_void); ()
}
#[allow(non_snake_case)]
extern "system" {
fn SetLastError(error: libc::size_t);
fn LoadLibraryW(name: *const libc::c_void) -> *mut libc::c_void;
fn GetModuleHandleExW(
dwFlags: u32,
name: *const u16,
handle: *mut *mut libc::c_void,
) -> i32;
fn GetProcAddress(
handle: *mut libc::c_void,
name: *const libc::c_char,
) -> *mut libc::c_void;
fn FreeLibrary(handle: *mut libc::c_void);
fn SetErrorMode(uMode: libc::c_uint) -> libc::c_uint;
}
}