2020-09-23 15:13:49 +02:00
|
|
|
//! Creation of ar archives like for the lib and staticlib crate type
|
|
|
|
|
2020-07-11 21:19:10 +02:00
|
|
|
use std::collections::BTreeMap;
|
2018-11-09 18:38:30 +01:00
|
|
|
use std::fs::File;
|
2019-04-01 19:34:26 +02:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-11-09 18:38:30 +01:00
|
|
|
|
2019-08-31 22:58:09 +05:30
|
|
|
use rustc_codegen_ssa::back::archive::{find_library, ArchiveBuilder};
|
2020-05-01 17:51:51 +02:00
|
|
|
use rustc_codegen_ssa::METADATA_FILENAME;
|
2020-08-28 12:10:48 +02:00
|
|
|
use rustc_session::Session;
|
2019-04-01 19:34:26 +02:00
|
|
|
|
2020-11-27 20:48:53 +01:00
|
|
|
use object::{Object, ObjectSymbol, SymbolKind};
|
2020-07-11 21:19:10 +02:00
|
|
|
|
2019-04-16 19:07:30 +02:00
|
|
|
#[derive(Debug)]
|
2019-04-16 18:41:07 +02:00
|
|
|
enum ArchiveEntry {
|
2021-03-05 19:12:59 +01:00
|
|
|
FromArchive { archive_index: usize, entry_index: usize },
|
2019-08-18 16:06:59 +02:00
|
|
|
File(PathBuf),
|
2019-04-16 18:41:07 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 12:14:45 +01:00
|
|
|
pub(crate) struct ArArchiveBuilder<'a> {
|
2020-08-08 16:19:42 +02:00
|
|
|
sess: &'a Session,
|
|
|
|
dst: PathBuf,
|
|
|
|
lib_search_paths: Vec<PathBuf>,
|
|
|
|
use_gnu_style_archive: bool,
|
|
|
|
no_builtin_ranlib: bool,
|
|
|
|
|
2019-08-18 16:06:59 +02:00
|
|
|
src_archives: Vec<(PathBuf, ar::Archive<File>)>,
|
2019-04-27 17:47:15 +02:00
|
|
|
// Don't use `HashMap` here, as the order is important. `rust.metadata.bin` must always be at
|
|
|
|
// the end of an archive for linkers to not get confused.
|
|
|
|
entries: Vec<(String, ArchiveEntry)>,
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
|
|
|
|
fn new(sess: &'a Session, output: &Path, input: Option<&Path>) -> Self {
|
|
|
|
use rustc_codegen_ssa::back::link::archive_search_paths;
|
|
|
|
|
2019-08-18 16:06:59 +02:00
|
|
|
let (src_archives, entries) = if let Some(input) = input {
|
|
|
|
let mut archive = ar::Archive::new(File::open(input).unwrap());
|
2019-04-27 17:47:15 +02:00
|
|
|
let mut entries = Vec::new();
|
2018-11-09 18:38:30 +01:00
|
|
|
|
|
|
|
let mut i = 0;
|
|
|
|
while let Some(entry) = archive.next_entry() {
|
|
|
|
let entry = entry.unwrap();
|
2019-04-27 17:47:15 +02:00
|
|
|
entries.push((
|
2018-11-09 18:38:30 +01:00
|
|
|
String::from_utf8(entry.header().identifier().to_vec()).unwrap(),
|
2021-03-05 19:12:59 +01:00
|
|
|
ArchiveEntry::FromArchive { archive_index: 0, entry_index: i },
|
2019-04-27 17:47:15 +02:00
|
|
|
));
|
2018-11-09 18:38:30 +01:00
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
|
2019-08-18 16:06:59 +02:00
|
|
|
(vec![(input.to_owned(), archive)], entries)
|
2018-11-09 18:38:30 +01:00
|
|
|
} else {
|
2019-04-27 17:47:15 +02:00
|
|
|
(vec![], Vec::new())
|
2018-11-09 18:38:30 +01:00
|
|
|
};
|
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
ArArchiveBuilder {
|
2020-08-08 16:19:42 +02:00
|
|
|
sess,
|
|
|
|
dst: output.to_path_buf(),
|
|
|
|
lib_search_paths: archive_search_paths(sess),
|
2020-11-08 14:27:51 +03:00
|
|
|
use_gnu_style_archive: sess.target.archive_format == "gnu",
|
2020-08-08 16:19:42 +02:00
|
|
|
// FIXME fix builtin ranlib on macOS
|
2020-11-08 14:27:51 +03:00
|
|
|
no_builtin_ranlib: sess.target.is_like_osx,
|
2020-08-08 16:19:42 +02:00
|
|
|
|
2019-04-16 18:41:07 +02:00
|
|
|
src_archives,
|
|
|
|
entries,
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
fn src_files(&mut self) -> Vec<String> {
|
2019-04-27 17:47:15 +02:00
|
|
|
self.entries.iter().map(|(name, _)| name.clone()).collect()
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
fn remove_file(&mut self, name: &str) {
|
2019-08-31 22:58:09 +05:30
|
|
|
let index = self
|
|
|
|
.entries
|
2019-04-27 17:47:15 +02:00
|
|
|
.iter()
|
|
|
|
.position(|(entry_name, _)| entry_name == name)
|
|
|
|
.expect("Tried to remove file not existing in src archive");
|
|
|
|
self.entries.remove(index);
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
fn add_file(&mut self, file: &Path) {
|
2019-04-27 17:47:15 +02:00
|
|
|
self.entries.push((
|
2019-04-16 18:41:07 +02:00
|
|
|
file.file_name().unwrap().to_str().unwrap().to_string(),
|
2019-08-18 16:06:59 +02:00
|
|
|
ArchiveEntry::File(file.to_owned()),
|
2019-04-27 17:47:15 +02:00
|
|
|
));
|
2019-04-01 19:34:26 +02:00
|
|
|
}
|
|
|
|
|
2021-03-24 21:45:09 -07:00
|
|
|
fn add_native_library(&mut self, name: rustc_span::symbol::Symbol, verbatim: bool) {
|
|
|
|
let location = find_library(name, verbatim, &self.lib_search_paths, self.sess);
|
2021-03-05 19:12:59 +01:00
|
|
|
self.add_archive(location.clone(), |_| false).unwrap_or_else(|e| {
|
|
|
|
panic!("failed to add native library {}: {}", location.to_string_lossy(), e);
|
|
|
|
});
|
2019-04-01 19:34:26 +02:00
|
|
|
}
|
|
|
|
|
2019-08-31 22:58:09 +05:30
|
|
|
fn add_rlib(
|
|
|
|
&mut self,
|
|
|
|
rlib: &Path,
|
|
|
|
name: &str,
|
|
|
|
lto: bool,
|
|
|
|
skip_objects: bool,
|
|
|
|
) -> std::io::Result<()> {
|
2019-04-01 19:34:26 +02:00
|
|
|
let obj_start = name.to_owned();
|
|
|
|
|
2019-08-18 16:06:59 +02:00
|
|
|
self.add_archive(rlib.to_owned(), move |fname: &str| {
|
2020-05-01 17:51:51 +02:00
|
|
|
// Ignore metadata files, no matter the name.
|
|
|
|
if fname == METADATA_FILENAME {
|
2019-04-01 19:34:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't include Rust objects if LTO is enabled
|
|
|
|
if lto && fname.starts_with(&obj_start) && fname.ends_with(".o") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise if this is *not* a rust object and we're skipping
|
|
|
|
// objects then skip this file
|
|
|
|
if skip_objects && (!fname.starts_with(&obj_start) || !fname.ends_with(".o")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ok, don't skip this
|
2020-11-03 11:00:04 +01:00
|
|
|
false
|
2019-04-01 19:34:26 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-05 19:12:59 +01:00
|
|
|
fn update_symbols(&mut self) {}
|
2018-11-09 18:38:30 +01:00
|
|
|
|
2019-04-01 19:34:26 +02:00
|
|
|
fn build(mut self) {
|
2020-07-11 21:19:10 +02:00
|
|
|
enum BuilderKind {
|
2019-04-16 19:07:30 +02:00
|
|
|
Bsd(ar::Builder<File>),
|
|
|
|
Gnu(ar::GnuBuilder<File>),
|
|
|
|
}
|
|
|
|
|
2020-08-08 16:19:42 +02:00
|
|
|
let sess = self.sess;
|
2020-08-08 16:14:11 +02:00
|
|
|
|
2020-07-11 21:19:10 +02:00
|
|
|
let mut symbol_table = BTreeMap::new();
|
2019-04-16 18:41:07 +02:00
|
|
|
|
2020-07-11 21:19:10 +02:00
|
|
|
let mut entries = Vec::new();
|
|
|
|
|
|
|
|
for (entry_name, entry) in self.entries {
|
|
|
|
// FIXME only read the symbol table of the object files to avoid having to keep all
|
|
|
|
// object files in memory at once, or read them twice.
|
|
|
|
let data = match entry {
|
2021-03-05 19:12:59 +01:00
|
|
|
ArchiveEntry::FromArchive { archive_index, entry_index } => {
|
2020-07-11 21:19:10 +02:00
|
|
|
// FIXME read symbols from symtab
|
|
|
|
use std::io::Read;
|
|
|
|
let (ref _src_archive_path, ref mut src_archive) =
|
2019-08-31 22:58:09 +05:30
|
|
|
self.src_archives[archive_index];
|
2020-07-11 21:19:10 +02:00
|
|
|
let mut entry = src_archive.jump_to_entry(entry_index).unwrap();
|
|
|
|
let mut data = Vec::new();
|
|
|
|
entry.read_to_end(&mut data).unwrap();
|
|
|
|
data
|
|
|
|
}
|
2020-08-28 12:10:48 +02:00
|
|
|
ArchiveEntry::File(file) => std::fs::read(file).unwrap_or_else(|err| {
|
|
|
|
sess.fatal(&format!(
|
|
|
|
"error while reading object file during archive building: {}",
|
|
|
|
err
|
|
|
|
));
|
|
|
|
}),
|
2020-07-11 21:19:10 +02:00
|
|
|
};
|
|
|
|
|
2020-08-08 16:19:42 +02:00
|
|
|
if !self.no_builtin_ranlib {
|
2021-05-27 13:08:14 +02:00
|
|
|
match object::File::parse(&*data) {
|
2020-07-11 21:19:10 +02:00
|
|
|
Ok(object) => {
|
2020-08-28 12:10:48 +02:00
|
|
|
symbol_table.insert(
|
|
|
|
entry_name.as_bytes().to_vec(),
|
|
|
|
object
|
|
|
|
.symbols()
|
2020-11-27 20:48:53 +01:00
|
|
|
.filter_map(|symbol| {
|
2020-08-28 12:10:48 +02:00
|
|
|
if symbol.is_undefined()
|
|
|
|
|| symbol.is_local()
|
|
|
|
|| symbol.kind() != SymbolKind::Data
|
|
|
|
&& symbol.kind() != SymbolKind::Text
|
|
|
|
&& symbol.kind() != SymbolKind::Tls
|
|
|
|
{
|
|
|
|
None
|
|
|
|
} else {
|
2020-11-27 20:48:53 +01:00
|
|
|
symbol.name().map(|name| name.as_bytes().to_vec()).ok()
|
2020-08-28 12:10:48 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>(),
|
|
|
|
);
|
2020-07-11 21:19:10 +02:00
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
let err = err.to_string();
|
|
|
|
if err == "Unknown file magic" {
|
|
|
|
// Not an object file; skip it.
|
|
|
|
} else {
|
2020-08-28 12:10:48 +02:00
|
|
|
sess.fatal(&format!(
|
|
|
|
"error parsing `{}` during archive creation: {}",
|
|
|
|
entry_name, err
|
|
|
|
));
|
2019-08-18 16:06:59 +02:00
|
|
|
}
|
2019-04-16 19:07:30 +02:00
|
|
|
}
|
2019-04-16 18:41:07 +02:00
|
|
|
}
|
2020-07-11 21:19:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entries.push((entry_name, data));
|
|
|
|
}
|
|
|
|
|
2020-08-08 16:19:42 +02:00
|
|
|
let mut builder = if self.use_gnu_style_archive {
|
2020-08-28 12:10:48 +02:00
|
|
|
BuilderKind::Gnu(
|
|
|
|
ar::GnuBuilder::new(
|
|
|
|
File::create(&self.dst).unwrap_or_else(|err| {
|
|
|
|
sess.fatal(&format!(
|
|
|
|
"error opening destination during archive building: {}",
|
|
|
|
err
|
|
|
|
));
|
|
|
|
}),
|
2021-03-05 19:12:59 +01:00
|
|
|
entries.iter().map(|(name, _)| name.as_bytes().to_vec()).collect(),
|
2020-08-28 12:10:48 +02:00
|
|
|
ar::GnuSymbolTableFormat::Size32,
|
|
|
|
symbol_table,
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
)
|
2020-07-11 21:19:10 +02:00
|
|
|
} else {
|
2020-08-28 12:10:48 +02:00
|
|
|
BuilderKind::Bsd(
|
|
|
|
ar::Builder::new(
|
|
|
|
File::create(&self.dst).unwrap_or_else(|err| {
|
|
|
|
sess.fatal(&format!(
|
|
|
|
"error opening destination during archive building: {}",
|
|
|
|
err
|
|
|
|
));
|
|
|
|
}),
|
|
|
|
symbol_table,
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
)
|
2020-07-11 21:19:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Add all files
|
|
|
|
for (entry_name, data) in entries.into_iter() {
|
|
|
|
let header = ar::Header::new(entry_name.into_bytes(), data.len() as u64);
|
|
|
|
match builder {
|
2020-08-28 12:10:48 +02:00
|
|
|
BuilderKind::Bsd(ref mut builder) => builder.append(&header, &mut &*data).unwrap(),
|
|
|
|
BuilderKind::Gnu(ref mut builder) => builder.append(&header, &mut &*data).unwrap(),
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finalize archive
|
2019-04-16 18:41:07 +02:00
|
|
|
std::mem::drop(builder);
|
2018-11-09 18:38:30 +01:00
|
|
|
|
2020-08-08 16:19:42 +02:00
|
|
|
if self.no_builtin_ranlib {
|
|
|
|
let ranlib = crate::toolchain::get_toolchain_binary(self.sess, "ranlib");
|
2020-07-09 18:55:46 +02:00
|
|
|
|
2020-06-16 11:40:21 +02:00
|
|
|
// Run ranlib to be able to link the archive
|
2020-07-09 18:55:46 +02:00
|
|
|
let status = std::process::Command::new(ranlib)
|
2020-08-08 16:19:42 +02:00
|
|
|
.arg(self.dst)
|
2020-06-16 11:40:21 +02:00
|
|
|
.status()
|
|
|
|
.expect("Couldn't run ranlib");
|
|
|
|
|
|
|
|
if !status.success() {
|
2021-03-05 19:12:59 +01:00
|
|
|
self.sess.fatal(&format!("Ranlib exited with code {:?}", status.code()));
|
2020-06-16 11:40:21 +02:00
|
|
|
}
|
2020-04-14 21:36:28 +05:30
|
|
|
}
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
2021-03-08 12:42:54 -08:00
|
|
|
|
|
|
|
fn inject_dll_import_lib(
|
|
|
|
&mut self,
|
|
|
|
_lib_name: &str,
|
|
|
|
_dll_imports: &[rustc_middle::middle::cstore::DllImport],
|
|
|
|
_tmpdir: &rustc_data_structures::temp_dir::MaybeTempDir,
|
|
|
|
) {
|
|
|
|
bug!("injecting dll imports is not supported");
|
|
|
|
}
|
2018-11-09 18:38:30 +01:00
|
|
|
}
|
2019-04-01 19:34:26 +02:00
|
|
|
|
|
|
|
impl<'a> ArArchiveBuilder<'a> {
|
2019-08-18 16:06:59 +02:00
|
|
|
fn add_archive<F>(&mut self, archive_path: PathBuf, mut skip: F) -> std::io::Result<()>
|
2019-08-31 22:58:09 +05:30
|
|
|
where
|
|
|
|
F: FnMut(&str) -> bool + 'static,
|
2019-04-01 19:34:26 +02:00
|
|
|
{
|
2019-08-18 16:06:59 +02:00
|
|
|
let mut archive = ar::Archive::new(std::fs::File::open(&archive_path)?);
|
2019-04-16 18:41:07 +02:00
|
|
|
let archive_index = self.src_archives.len();
|
2019-04-01 19:34:26 +02:00
|
|
|
|
2019-04-16 18:41:07 +02:00
|
|
|
let mut i = 0;
|
|
|
|
while let Some(entry) = archive.next_entry() {
|
2020-08-08 16:14:11 +02:00
|
|
|
let entry = entry?;
|
2020-08-28 12:10:48 +02:00
|
|
|
let file_name = String::from_utf8(entry.header().identifier().to_vec())
|
|
|
|
.map_err(|err| std::io::Error::new(std::io::ErrorKind::InvalidData, err))?;
|
2019-04-16 18:41:07 +02:00
|
|
|
if !skip(&file_name) {
|
2021-03-05 19:12:59 +01:00
|
|
|
self.entries
|
|
|
|
.push((file_name, ArchiveEntry::FromArchive { archive_index, entry_index: i }));
|
2019-04-01 19:34:26 +02:00
|
|
|
}
|
2019-04-16 18:41:07 +02:00
|
|
|
i += 1;
|
2019-04-01 19:34:26 +02:00
|
|
|
}
|
2019-04-16 18:41:07 +02:00
|
|
|
|
2019-08-18 16:06:59 +02:00
|
|
|
self.src_archives.push((archive_path, archive));
|
2019-04-01 19:34:26 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|