rust/crates/ra_proc_macro_srv/src/dylib.rs

212 lines
7.6 KiB
Rust
Raw Normal View History

2020-04-04 03:09:36 -05:00
//! Handles dynamic library loading for proc macro
use crate::{proc_macro::bridge, rustc_server::TokenStream};
use std::path::Path;
use goblin::{mach::Mach, Object};
use libloading::Library;
use ra_proc_macro::ProcMacroKind;
2020-04-11 01:53:13 -05:00
use std::io::Error as IoError;
use std::io::ErrorKind as IoErrorKind;
2020-04-04 03:09:36 -05:00
2020-04-11 01:53:13 -05:00
const NEW_REGISTRAR_SYMBOL: &str = "_rustc_proc_macro_decls_";
2020-04-04 03:09:36 -05:00
2020-04-11 01:53:13 -05:00
fn invalid_data_err(e: impl Into<Box<dyn std::error::Error + Send + Sync>>) -> IoError {
IoError::new(IoErrorKind::InvalidData, e)
}
fn get_symbols_from_lib(file: &Path) -> Result<Vec<String>, IoError> {
let buffer = std::fs::read(file)?;
let object = Object::parse(&buffer).map_err(invalid_data_err)?;
match object {
2020-04-04 03:09:36 -05:00
Object::Elf(elf) => {
2020-04-11 01:53:13 -05:00
let symbols = elf.dynstrtab.to_vec().map_err(invalid_data_err)?;
2020-04-04 03:09:36 -05:00
let names = symbols.iter().map(|s| s.to_string()).collect();
2020-04-11 01:53:13 -05:00
Ok(names)
2020-04-04 03:09:36 -05:00
}
Object::PE(pe) => {
let symbol_names =
pe.exports.iter().flat_map(|s| s.name).map(|n| n.to_string()).collect();
2020-04-11 01:53:13 -05:00
Ok(symbol_names)
2020-04-04 03:09:36 -05:00
}
Object::Mach(mach) => match mach {
Mach::Binary(binary) => {
2020-04-11 01:53:13 -05:00
let exports = binary.exports().map_err(invalid_data_err)?;
2020-04-10 06:06:53 -05:00
let names = exports
2020-04-11 01:53:13 -05:00
.into_iter()
2020-04-10 06:06:53 -05:00
.map(|s| {
// In macos doc:
// https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/dlsym.3.html
// Unlike other dyld API's, the symbol name passed to dlsym() must NOT be
// prepended with an underscore.
if s.name.starts_with("_") {
s.name[1..].to_string()
} else {
2020-04-11 01:53:13 -05:00
s.name
2020-04-10 06:06:53 -05:00
}
})
.collect();
2020-04-11 01:53:13 -05:00
Ok(names)
2020-04-04 03:09:36 -05:00
}
2020-04-11 01:53:13 -05:00
Mach::Fat(_) => Ok(vec![]),
2020-04-04 03:09:36 -05:00
},
2020-04-11 01:53:13 -05:00
Object::Archive(_) | Object::Unknown(_) => Ok(vec![]),
}
2020-04-04 03:09:36 -05:00
}
fn is_derive_registrar_symbol(symbol: &str) -> bool {
symbol.contains(NEW_REGISTRAR_SYMBOL)
}
2020-04-11 01:53:13 -05:00
fn find_registrar_symbol(file: &Path) -> Result<Option<String>, IoError> {
2020-04-04 03:09:36 -05:00
let symbols = get_symbols_from_lib(file)?;
2020-04-11 01:53:13 -05:00
Ok(symbols.into_iter().find(|s| is_derive_registrar_symbol(s)))
2020-04-04 03:09:36 -05:00
}
/// Loads dynamic library in platform dependent manner.
///
/// For unix, you have to use RTLD_DEEPBIND flag to escape problems described
/// [here](https://github.com/fedochet/rust-proc-macro-panic-inside-panic-expample)
/// and [here](https://github.com/rust-lang/rust/issues/60593).
///
/// Usage of RTLD_DEEPBIND
/// [here](https://github.com/fedochet/rust-proc-macro-panic-inside-panic-expample/issues/1)
///
/// It seems that on Windows that behaviour is default, so we do nothing in that case.
#[cfg(windows)]
fn load_library(file: &Path) -> Result<Library, libloading::Error> {
Library::new(file)
}
#[cfg(unix)]
fn load_library(file: &Path) -> Result<Library, libloading::Error> {
use libloading::os::unix::Library as UnixLibrary;
use std::os::raw::c_int;
const RTLD_NOW: c_int = 0x00002;
const RTLD_DEEPBIND: c_int = 0x00008;
UnixLibrary::open(Some(file), RTLD_NOW | RTLD_DEEPBIND).map(|lib| lib.into())
}
struct ProcMacroLibraryLibloading {
// Hold the dylib to prevent it for unloadeding
2020-04-09 13:06:14 -05:00
_lib: Library,
2020-04-04 03:09:36 -05:00
exported_macros: Vec<bridge::client::ProcMacro>,
}
impl ProcMacroLibraryLibloading {
2020-04-11 01:53:13 -05:00
fn open(file: &Path) -> Result<Self, IoError> {
let symbol_name = find_registrar_symbol(file)?
.ok_or(invalid_data_err(format!("Cannot find registrar symbol in file {:?}", file)))?;
2020-04-04 03:09:36 -05:00
2020-04-11 01:53:13 -05:00
let lib = load_library(file).map_err(invalid_data_err)?;
2020-04-04 03:09:36 -05:00
let exported_macros = {
let macros: libloading::Symbol<&&[bridge::client::ProcMacro]> =
2020-04-11 01:53:13 -05:00
unsafe { lib.get(symbol_name.as_bytes()) }.map_err(invalid_data_err)?;
2020-04-04 03:09:36 -05:00
macros.to_vec()
};
2020-04-09 13:06:14 -05:00
Ok(ProcMacroLibraryLibloading { _lib: lib, exported_macros })
2020-04-04 03:09:36 -05:00
}
}
type ProcMacroLibraryImpl = ProcMacroLibraryLibloading;
pub struct Expander {
libs: Vec<ProcMacroLibraryImpl>,
}
impl Expander {
pub fn new<P: AsRef<Path>>(lib: &P) -> Result<Expander, String> {
let mut libs = vec![];
/* Some libraries for dynamic loading require canonicalized path (even when it is
already absolute
*/
let lib =
lib.as_ref().canonicalize().expect(&format!("Cannot canonicalize {:?}", lib.as_ref()));
2020-04-11 01:53:13 -05:00
let library = ProcMacroLibraryImpl::open(&lib).map_err(|e| e.to_string())?;
2020-04-04 03:09:36 -05:00
libs.push(library);
Ok(Expander { libs })
}
pub fn expand(
&self,
macro_name: &str,
macro_body: &ra_tt::Subtree,
attributes: Option<&ra_tt::Subtree>,
) -> Result<ra_tt::Subtree, bridge::PanicMessage> {
let parsed_body = TokenStream::with_subtree(macro_body.clone());
let parsed_attributes = attributes
.map_or(crate::rustc_server::TokenStream::new(), |attr| {
TokenStream::with_subtree(attr.clone())
});
for lib in &self.libs {
for proc_macro in &lib.exported_macros {
match proc_macro {
bridge::client::ProcMacro::CustomDerive { trait_name, client, .. }
if *trait_name == macro_name =>
{
let res = client.run(
&crate::proc_macro::bridge::server::SameThread,
crate::rustc_server::Rustc::default(),
parsed_body,
);
return res.map(|it| it.subtree);
}
bridge::client::ProcMacro::Bang { name, client } if *name == macro_name => {
let res = client.run(
&crate::proc_macro::bridge::server::SameThread,
crate::rustc_server::Rustc::default(),
parsed_body,
);
return res.map(|it| it.subtree);
}
bridge::client::ProcMacro::Attr { name, client } if *name == macro_name => {
let res = client.run(
&crate::proc_macro::bridge::server::SameThread,
crate::rustc_server::Rustc::default(),
parsed_attributes,
parsed_body,
);
return res.map(|it| it.subtree);
}
2020-04-10 06:06:53 -05:00
_ => continue,
2020-04-04 03:09:36 -05:00
}
}
}
Err(bridge::PanicMessage::String("Nothing to expand".to_string()))
}
pub fn list_macros(&self) -> Result<Vec<(String, ProcMacroKind)>, bridge::PanicMessage> {
let mut result = vec![];
for lib in &self.libs {
for proc_macro in &lib.exported_macros {
let res = match proc_macro {
bridge::client::ProcMacro::CustomDerive { trait_name, .. } => {
(trait_name.to_string(), ProcMacroKind::CustomDerive)
}
bridge::client::ProcMacro::Bang { name, .. } => {
(name.to_string(), ProcMacroKind::FuncLike)
}
bridge::client::ProcMacro::Attr { name, .. } => {
(name.to_string(), ProcMacroKind::Attr)
}
};
result.push(res);
}
}
Ok(result)
}
}