]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_metadata/src/locator.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / compiler / rustc_metadata / src / locator.rs
CommitLineData
223e47cc 1//! Finds crate binaries and loads their metadata
1a4d82fc
JJ
2//!
3//! Might I be the first to welcome you to a world of platform differences,
4//! version requirements, dependency graphs, conflicting desires, and fun! This
5//! is the major guts (along with metadata::creader) of the compiler for loading
6//! crates and resolving dependencies. Let's take a tour!
7//!
8//! # The problem
9//!
10//! Each invocation of the compiler is immediately concerned with one primary
11//! problem, to connect a set of crates to resolved crates on the filesystem.
12//! Concretely speaking, the compiler follows roughly these steps to get here:
13//!
14//! 1. Discover a set of `extern crate` statements.
15//! 2. Transform these directives into crate names. If the directive does not
16//! have an explicit name, then the identifier is the name.
17//! 3. For each of these crate names, find a corresponding crate on the
18//! filesystem.
19//!
20//! Sounds easy, right? Let's walk into some of the nuances.
21//!
22//! ## Transitive Dependencies
23//!
24//! Let's say we've got three crates: A, B, and C. A depends on B, and B depends
25//! on C. When we're compiling A, we primarily need to find and locate B, but we
26//! also end up needing to find and locate C as well.
27//!
28//! The reason for this is that any of B's types could be composed of C's types,
29//! any function in B could return a type from C, etc. To be able to guarantee
9fa01778 30//! that we can always type-check/translate any function, we have to have
1a4d82fc
JJ
31//! complete knowledge of the whole ecosystem, not just our immediate
32//! dependencies.
33//!
34//! So now as part of the "find a corresponding crate on the filesystem" step
35//! above, this involves also finding all crates for *all upstream
36//! dependencies*. This includes all dependencies transitively.
37//!
38//! ## Rlibs and Dylibs
39//!
40//! The compiler has two forms of intermediate dependencies. These are dubbed
41//! rlibs and dylibs for the static and dynamic variants, respectively. An rlib
42//! is a rustc-defined file format (currently just an ar archive) while a dylib
43//! is a platform-defined dynamic library. Each library has a metadata somewhere
44//! inside of it.
45//!
476ff2be
SL
46//! A third kind of dependency is an rmeta file. These are metadata files and do
47//! not contain any code, etc. To a first approximation, these are treated in the
48//! same way as rlibs. Where there is both an rlib and an rmeta file, the rlib
49//! gets priority (even if the rmeta file is newer). An rmeta file is only
50//! useful for checking a downstream crate, attempting to link one will cause an
51//! error.
52//!
1a4d82fc
JJ
53//! When translating a crate name to a crate on the filesystem, we all of a
54//! sudden need to take into account both rlibs and dylibs! Linkage later on may
55//! use either one of these files, as each has their pros/cons. The job of crate
56//! loading is to discover what's possible by finding all candidates.
57//!
58//! Most parts of this loading systems keep the dylib/rlib as just separate
59//! variables.
60//!
61//! ## Where to look?
62//!
63//! We can't exactly scan your whole hard drive when looking for dependencies,
64//! so we need to places to look. Currently the compiler will implicitly add the
65//! target lib search path ($prefix/lib/rustlib/$target/lib) to any compilation,
66//! and otherwise all -L flags are added to the search paths.
67//!
68//! ## What criterion to select on?
69//!
70//! This a pretty tricky area of loading crates. Given a file, how do we know
71//! whether it's the right crate? Currently, the rules look along these lines:
72//!
73//! 1. Does the filename match an rlib/dylib pattern? That is to say, does the
74//! filename have the right prefix/suffix?
75//! 2. Does the filename have the right prefix for the crate name being queried?
83c7162d
XL
76//! This is filtering for files like `libfoo*.rlib` and such. If the crate
77//! we're looking for was originally compiled with -C extra-filename, the
78//! extra filename will be included in this prefix to reduce reading
79//! metadata from crates that would otherwise share our prefix.
1a4d82fc
JJ
80//! 3. Is the file an actual rust library? This is done by loading the metadata
81//! from the library and making sure it's actually there.
82//! 4. Does the name in the metadata agree with the name of the library?
83//! 5. Does the target in the metadata agree with the current target?
84//! 6. Does the SVH match? (more on this later)
85//!
86//! If the file answers `yes` to all these questions, then the file is
87//! considered as being *candidate* for being accepted. It is illegal to have
88//! more than two candidates as the compiler has no method by which to resolve
89//! this conflict. Additionally, rlib/dylib candidates are considered
90//! separately.
91//!
92//! After all this has happened, we have 1 or two files as candidates. These
93//! represent the rlib/dylib file found for a library, and they're returned as
94//! being found.
95//!
96//! ### What about versions?
97//!
98//! A lot of effort has been put forth to remove versioning from the compiler.
99//! There have been forays in the past to have versioning baked in, but it was
100//! largely always deemed insufficient to the point that it was recognized that
101//! it's probably something the compiler shouldn't do anyway due to its
102//! complicated nature and the state of the half-baked solutions.
103//!
104//! With a departure from versioning, the primary criterion for loading crates
105//! is just the name of a crate. If we stopped here, it would imply that you
106//! could never link two crates of the same name from different sources
107//! together, which is clearly a bad state to be in.
108//!
109//! To resolve this problem, we come to the next section!
110//!
111//! # Expert Mode
112//!
113//! A number of flags have been added to the compiler to solve the "version
114//! problem" in the previous section, as well as generally enabling more
115//! powerful usage of the crate loading system of the compiler. The goal of
116//! these flags and options are to enable third-party tools to drive the
117//! compiler with prior knowledge about how the world should look.
118//!
119//! ## The `--extern` flag
120//!
121//! The compiler accepts a flag of this form a number of times:
122//!
123//! ```text
124//! --extern crate-name=path/to/the/crate.rlib
125//! ```
126//!
127//! This flag is basically the following letter to the compiler:
128//!
129//! > Dear rustc,
130//! >
131//! > When you are attempting to load the immediate dependency `crate-name`, I
9346a6ac 132//! > would like you to assume that the library is located at
1a4d82fc
JJ
133//! > `path/to/the/crate.rlib`, and look nowhere else. Also, please do not
134//! > assume that the path I specified has the name `crate-name`.
135//!
136//! This flag basically overrides most matching logic except for validating that
137//! the file is indeed a rust library. The same `crate-name` can be specified
138//! twice to specify the rlib/dylib pair.
139//!
140//! ## Enabling "multiple versions"
141//!
142//! This basically boils down to the ability to specify arbitrary packages to
143//! the compiler. For example, if crate A wanted to use Bv1 and Bv2, then it
144//! would look something like:
145//!
041b39d2 146//! ```compile_fail,E0463
1a4d82fc
JJ
147//! extern crate b1;
148//! extern crate b2;
149//!
150//! fn main() {}
151//! ```
152//!
153//! and the compiler would be invoked as:
154//!
155//! ```text
156//! rustc a.rs --extern b1=path/to/libb1.rlib --extern b2=path/to/libb2.rlib
157//! ```
158//!
159//! In this scenario there are two crates named `b` and the compiler must be
160//! manually driven to be informed where each crate is.
161//!
162//! ## Frobbing symbols
163//!
164//! One of the immediate problems with linking the same library together twice
165//! in the same problem is dealing with duplicate symbols. The primary way to
166//! deal with this in rustc is to add hashes to the end of each symbol.
167//!
168//! In order to force hashes to change between versions of a library, if
169//! desired, the compiler exposes an option `-C metadata=foo`, which is used to
170//! initially seed each symbol hash. The string `foo` is prepended to each
171//! string-to-hash to ensure that symbols change over time.
172//!
173//! ## Loading transitive dependencies
174//!
175//! Dealing with same-named-but-distinct crates is not just a local problem, but
176//! one that also needs to be dealt with for transitive dependencies. Note that
177//! in the letter above `--extern` flags only apply to the *local* set of
178//! dependencies, not the upstream transitive dependencies. Consider this
179//! dependency graph:
180//!
181//! ```text
182//! A.1 A.2
183//! | |
184//! | |
185//! B C
186//! \ /
187//! \ /
188//! D
189//! ```
190//!
191//! In this scenario, when we compile `D`, we need to be able to distinctly
192//! resolve `A.1` and `A.2`, but an `--extern` flag cannot apply to these
193//! transitive dependencies.
194//!
195//! Note that the key idea here is that `B` and `C` are both *already compiled*.
196//! That is, they have already resolved their dependencies. Due to unrelated
197//! technical reasons, when a library is compiled, it is only compatible with
198//! the *exact same* version of the upstream libraries it was compiled against.
199//! We use the "Strict Version Hash" to identify the exact copy of an upstream
200//! library.
201//!
202//! With this knowledge, we know that `B` and `C` will depend on `A` with
203//! different SVH values, so we crawl the normal `-L` paths looking for
204//! `liba*.rlib` and filter based on the contained SVH.
205//!
206//! In the end, this ends up not needing `--extern` to specify upstream
207//! transitive dependencies.
208//!
209//! # Wrapping up
210//!
211//! That's the general overview of loading crates in the compiler, but it's by
212//! no means all of the necessary details. Take a look at the rest of
c30ab7b3 213//! metadata::locator or metadata::creader for all the juicy details!
223e47cc 214
9fa01778 215use crate::creader::Library;
dfeec247 216use crate::rmeta::{rustc_version, MetadataBlob, METADATA_HEADER};
92a42be0 217
dfeec247 218use rustc_data_structures::fx::{FxHashMap, FxHashSet};
3dfed10e 219use rustc_data_structures::owning_ref::OwningRef;
dfeec247
XL
220use rustc_data_structures::svh::Svh;
221use rustc_data_structures::sync::MetadataRef;
3dfed10e 222use rustc_errors::struct_span_err;
ba9703b0 223use rustc_middle::middle::cstore::{CrateSource, MetadataLoader};
f9f354fc 224use rustc_session::config::{self, CrateType};
ba9703b0
XL
225use rustc_session::filesearch::{FileDoesntMatch, FileMatches, FileSearch};
226use rustc_session::search_paths::PathKind;
5869c6ff 227use rustc_session::utils::CanonicalizedPath;
f9f354fc 228use rustc_session::{CrateDisambiguator, Session};
dfeec247
XL
229use rustc_span::symbol::{sym, Symbol};
230use rustc_span::Span;
83c7162d 231use rustc_target::spec::{Target, TargetTriple};
1a4d82fc 232
1b1a35ee 233use snap::read::FrameDecoder;
3dfed10e 234use std::io::{Read, Result as IoResult, Write};
a1dfa0c6 235use std::ops::Deref;
c34b1796 236use std::path::{Path, PathBuf};
3dfed10e
XL
237use std::{cmp, fmt, fs};
238use tracing::{debug, info, warn};
223e47cc 239
532ac7d7 240#[derive(Clone)]
60c5eb7d
XL
241crate struct CrateLocator<'a> {
242 // Immutable per-session configuration.
243 sess: &'a Session,
244 metadata_loader: &'a dyn MetadataLoader,
245
246 // Immutable per-search configuration.
247 crate_name: Symbol,
5869c6ff 248 exact_paths: Vec<CanonicalizedPath>,
60c5eb7d
XL
249 pub hash: Option<Svh>,
250 pub host_hash: Option<Svh>,
251 extra_filename: Option<&'a str>,
85aaf69f 252 pub target: &'a Target,
532ac7d7 253 pub triple: TargetTriple,
1a4d82fc 254 pub filesearch: FileSearch<'a>,
60c5eb7d 255 root: Option<&'a CratePaths>,
476ff2be 256 pub is_proc_macro: Option<bool>,
60c5eb7d
XL
257
258 // Mutable in-progress state or output.
259 rejected_via_hash: Vec<CrateMismatch>,
260 rejected_via_triple: Vec<CrateMismatch>,
261 rejected_via_kind: Vec<CrateMismatch>,
262 rejected_via_version: Vec<CrateMismatch>,
263 rejected_via_filename: Vec<CrateMismatch>,
223e47cc
LB
264}
265
3dfed10e 266#[derive(Clone)]
e74abb32 267crate struct CratePaths {
60c5eb7d
XL
268 name: Symbol,
269 source: CrateSource,
270}
271
272impl CratePaths {
273 crate fn new(name: Symbol, source: CrateSource) -> CratePaths {
274 CratePaths { name, source }
275 }
223e47cc
LB
276}
277
a7813a04 278#[derive(Copy, Clone, PartialEq)]
3dfed10e 279crate enum CrateFlavor {
a7813a04 280 Rlib,
476ff2be 281 Rmeta,
c30ab7b3 282 Dylib,
a7813a04
XL
283}
284
285impl fmt::Display for CrateFlavor {
9fa01778 286 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
a7813a04
XL
287 f.write_str(match *self {
288 CrateFlavor::Rlib => "rlib",
476ff2be 289 CrateFlavor::Rmeta => "rmeta",
c30ab7b3 290 CrateFlavor::Dylib => "dylib",
a7813a04
XL
291 })
292 }
293}
294
60c5eb7d
XL
295impl<'a> CrateLocator<'a> {
296 crate fn new(
297 sess: &'a Session,
298 metadata_loader: &'a dyn MetadataLoader,
299 crate_name: Symbol,
300 hash: Option<Svh>,
301 host_hash: Option<Svh>,
302 extra_filename: Option<&'a str>,
303 is_host: bool,
304 path_kind: PathKind,
60c5eb7d
XL
305 root: Option<&'a CratePaths>,
306 is_proc_macro: Option<bool>,
307 ) -> CrateLocator<'a> {
308 CrateLocator {
309 sess,
310 metadata_loader,
311 crate_name,
312 exact_paths: if hash.is_none() {
dfeec247
XL
313 sess.opts
314 .externs
315 .get(&crate_name.as_str())
316 .into_iter()
60c5eb7d
XL
317 .filter_map(|entry| entry.files())
318 .flatten()
5869c6ff 319 .cloned()
dfeec247 320 .collect()
60c5eb7d
XL
321 } else {
322 // SVH being specified means this is a transitive dependency,
323 // so `--extern` options do not apply.
324 Vec::new()
325 },
326 hash,
327 host_hash,
328 extra_filename,
29967ef6 329 target: if is_host { &sess.host } else { &sess.target },
60c5eb7d
XL
330 triple: if is_host {
331 TargetTriple::from_triple(config::host_triple())
332 } else {
333 sess.opts.target_triple.clone()
334 },
335 filesearch: if is_host {
336 sess.host_filesearch(path_kind)
337 } else {
338 sess.target_filesearch(path_kind)
339 },
60c5eb7d
XL
340 root,
341 is_proc_macro,
342 rejected_via_hash: Vec::new(),
343 rejected_via_triple: Vec::new(),
344 rejected_via_kind: Vec::new(),
345 rejected_via_version: Vec::new(),
346 rejected_via_filename: Vec::new(),
347 }
348 }
349
e74abb32 350 crate fn reset(&mut self) {
532ac7d7
XL
351 self.rejected_via_hash.clear();
352 self.rejected_via_triple.clear();
353 self.rejected_via_kind.clear();
354 self.rejected_via_version.clear();
355 self.rejected_via_filename.clear();
356 }
357
3dfed10e 358 crate fn maybe_load_library_crate(&mut self) -> Result<Option<Library>, CrateError> {
60c5eb7d
XL
359 if !self.exact_paths.is_empty() {
360 return self.find_commandline_library();
361 }
b7449926 362 let mut seen_paths = FxHashSet::default();
3dfed10e
XL
363 if let Some(extra_filename) = self.extra_filename {
364 if let library @ Some(_) = self.find_library_crate(extra_filename, &mut seen_paths)? {
365 return Ok(library);
476ff2be
SL
366 }
367 }
3dfed10e 368 self.find_library_crate("", &mut seen_paths)
1a4d82fc
JJ
369 }
370
dfeec247
XL
371 fn find_library_crate(
372 &mut self,
373 extra_prefix: &str,
374 seen_paths: &mut FxHashSet<PathBuf>,
3dfed10e 375 ) -> Result<Option<Library>, CrateError> {
1a4d82fc 376 // want: crate_name.dir_part() + prefix + crate_name.file_part + "-"
29967ef6 377 let dylib_prefix = format!("{}{}{}", self.target.dll_prefix, self.crate_name, extra_prefix);
83c7162d 378 let rlib_prefix = format!("lib{}{}", self.crate_name, extra_prefix);
3dfed10e 379 let staticlib_prefix =
29967ef6 380 format!("{}{}{}", self.target.staticlib_prefix, self.crate_name, extra_prefix);
1a4d82fc 381
dfeec247
XL
382 let mut candidates: FxHashMap<_, (FxHashMap<_, _>, FxHashMap<_, _>, FxHashMap<_, _>)> =
383 Default::default();
c30ab7b3 384 let mut staticlibs = vec![];
1a4d82fc
JJ
385
386 // First, find all possible candidate rlibs and dylibs purely based on
387 // the name of the files themselves. We're trying to match against an
388 // exact crate name and a possibly an exact hash.
389 //
390 // During this step, we can filter all found libraries based on the
391 // name and id found in the crate id (we ignore the path portion for
392 // filename matching), as well as the exact hash (if specified). If we
393 // end up having many candidates, we must look at the metadata to
394 // perform exact matches against hashes/crate ids. Note that opening up
395 // the metadata is where we do an exact match against the full contents
396 // of the crate id (path/name/id).
397 //
398 // The goal of this step is to look at as little metadata as possible.
ba9703b0
XL
399 self.filesearch.search(|spf, kind| {
400 let file = match &spf.file_name_str {
1a4d82fc
JJ
401 None => return FileDoesntMatch,
402 Some(file) => file,
403 };
dfeec247
XL
404 let (hash, found_kind) = if file.starts_with(&rlib_prefix) && file.ends_with(".rlib") {
405 (&file[(rlib_prefix.len())..(file.len() - ".rlib".len())], CrateFlavor::Rlib)
406 } else if file.starts_with(&rlib_prefix) && file.ends_with(".rmeta") {
407 (&file[(rlib_prefix.len())..(file.len() - ".rmeta".len())], CrateFlavor::Rmeta)
29967ef6 408 } else if file.starts_with(&dylib_prefix) && file.ends_with(&self.target.dll_suffix) {
3dfed10e 409 (
29967ef6 410 &file[(dylib_prefix.len())..(file.len() - self.target.dll_suffix.len())],
3dfed10e
XL
411 CrateFlavor::Dylib,
412 )
dfeec247 413 } else {
3dfed10e 414 if file.starts_with(&staticlib_prefix)
29967ef6 415 && file.ends_with(&self.target.staticlib_suffix)
3dfed10e 416 {
ba9703b0
XL
417 staticlibs
418 .push(CrateMismatch { path: spf.path.clone(), got: "static".to_string() });
dfeec247
XL
419 }
420 return FileDoesntMatch;
421 };
83c7162d 422
ba9703b0 423 info!("lib candidate: {}", spf.path.display());
1a4d82fc 424
3dfed10e
XL
425 let (rlibs, rmetas, dylibs) = candidates.entry(hash.to_string()).or_default();
426 let path = fs::canonicalize(&spf.path).unwrap_or_else(|_| spf.path.clone());
427 if seen_paths.contains(&path) {
428 return FileDoesntMatch;
429 };
430 seen_paths.insert(path.clone());
431 match found_kind {
432 CrateFlavor::Rlib => rlibs.insert(path, kind),
433 CrateFlavor::Rmeta => rmetas.insert(path, kind),
434 CrateFlavor::Dylib => dylibs.insert(path, kind),
435 };
436 FileMatches
1a4d82fc 437 });
62682a34 438 self.rejected_via_kind.extend(staticlibs);
1a4d82fc
JJ
439
440 // We have now collected all known libraries into a set of candidates
441 // keyed of the filename hash listed. For each filename, we also have a
442 // list of rlibs/dylibs that apply. Here, we map each of these lists
443 // (per hash), to a Library candidate for returning.
444 //
445 // A Library candidate is created if the metadata for the set of
446 // libraries corresponds to the crate id and hash criteria that this
447 // search is being performed for.
0bf4aa26 448 let mut libraries = FxHashMap::default();
476ff2be 449 for (_hash, (rlibs, rmetas, dylibs)) in candidates {
3dfed10e 450 if let Some((svh, lib)) = self.extract_lib(rlibs, rmetas, dylibs)? {
e74abb32 451 libraries.insert(svh, lib);
1a4d82fc
JJ
452 }
453 }
454
455 // Having now translated all relevant found hashes into libraries, see
456 // what we've got and figure out if we found multiple candidates for
457 // libraries or not.
458 match libraries.len() {
3dfed10e
XL
459 0 => Ok(None),
460 1 => Ok(Some(libraries.into_iter().next().unwrap().1)),
461 _ => Err(CrateError::MultipleMatchingCrates(self.crate_name, libraries)),
1a4d82fc
JJ
462 }
463 }
464
e74abb32
XL
465 fn extract_lib(
466 &mut self,
467 rlibs: FxHashMap<PathBuf, PathKind>,
468 rmetas: FxHashMap<PathBuf, PathKind>,
469 dylibs: FxHashMap<PathBuf, PathKind>,
3dfed10e 470 ) -> Result<Option<(Svh, Library)>, CrateError> {
e74abb32 471 let mut slot = None;
dfeec247
XL
472 // Order here matters, rmeta should come first. See comment in
473 // `extract_one` below.
e74abb32 474 let source = CrateSource {
3dfed10e
XL
475 rmeta: self.extract_one(rmetas, CrateFlavor::Rmeta, &mut slot)?,
476 rlib: self.extract_one(rlibs, CrateFlavor::Rlib, &mut slot)?,
477 dylib: self.extract_one(dylibs, CrateFlavor::Dylib, &mut slot)?,
e74abb32 478 };
3dfed10e 479 Ok(slot.map(|(svh, metadata)| (svh, Library { source, metadata })))
e74abb32
XL
480 }
481
dfeec247
XL
482 fn needs_crate_flavor(&self, flavor: CrateFlavor) -> bool {
483 if flavor == CrateFlavor::Dylib && self.is_proc_macro == Some(true) {
484 return true;
485 }
486
487 // The all loop is because `--crate-type=rlib --crate-type=rlib` is
488 // legal and produces both inside this type.
f9f354fc 489 let is_rlib = self.sess.crate_types().iter().all(|c| *c == CrateType::Rlib);
dfeec247
XL
490 let needs_object_code = self.sess.opts.output_types.should_codegen();
491 // If we're producing an rlib, then we don't need object code.
492 // Or, if we're not producing object code, then we don't need it either
493 // (e.g., if we're a cdylib but emitting just metadata).
494 if is_rlib || !needs_object_code {
495 flavor == CrateFlavor::Rmeta
496 } else {
497 // we need all flavors (perhaps not true, but what we do for now)
498 true
499 }
500 }
501
1a4d82fc
JJ
502 // Attempts to extract *one* library from the set `m`. If the set has no
503 // elements, `None` is returned. If the set has more than one element, then
504 // the errors and notes are emitted about the set of libraries.
505 //
506 // With only one library in the set, this function will extract it, and then
507 // read the metadata from it if `*slot` is `None`. If the metadata couldn't
508 // be read, it is assumed that the file isn't a valid rust library (no
509 // errors are emitted).
dfeec247
XL
510 fn extract_one(
511 &mut self,
512 m: FxHashMap<PathBuf, PathKind>,
513 flavor: CrateFlavor,
514 slot: &mut Option<(Svh, MetadataBlob)>,
3dfed10e 515 ) -> Result<Option<(PathBuf, PathKind)>, CrateError> {
dfeec247
XL
516 // If we are producing an rlib, and we've already loaded metadata, then
517 // we should not attempt to discover further crate sources (unless we're
518 // locating a proc macro; exact logic is in needs_crate_flavor). This means
519 // that under -Zbinary-dep-depinfo we will not emit a dependency edge on
520 // the *unused* rlib, and by returning `None` here immediately we
521 // guarantee that we do indeed not use it.
522 //
523 // See also #68149 which provides more detail on why emitting the
524 // dependency on the rlib is a bad thing.
525 //
74b04a01 526 // We currently do not verify that these other sources are even in sync,
dfeec247
XL
527 // and this is arguably a bug (see #10786), but because reading metadata
528 // is quite slow (especially from dylibs) we currently do not read it
529 // from the other crate sources.
1a4d82fc 530 if slot.is_some() {
dfeec247 531 if m.is_empty() || !self.needs_crate_flavor(flavor) {
3dfed10e 532 return Ok(None);
1a4d82fc 533 } else if m.len() == 1 {
3dfed10e 534 return Ok(Some(m.into_iter().next().unwrap()));
1a4d82fc
JJ
535 }
536 }
537
3dfed10e
XL
538 let mut ret: Option<(PathBuf, PathKind)> = None;
539 let mut err_data: Option<Vec<PathBuf>> = None;
85aaf69f 540 for (lib, kind) in m {
1a4d82fc 541 info!("{} reading metadata from: {}", flavor, lib.display());
7cac9316
XL
542 let (hash, metadata) =
543 match get_metadata_section(self.target, flavor, &lib, self.metadata_loader) {
544 Ok(blob) => {
545 if let Some(h) = self.crate_matches(&blob, &lib) {
546 (h, blob)
547 } else {
548 info!("metadata mismatch");
549 continue;
550 }
551 }
552 Err(err) => {
0bf4aa26 553 warn!("no metadata found: {}", err);
c30ab7b3 554 continue;
1a4d82fc 555 }
7cac9316 556 };
a7813a04
XL
557 // If we see multiple hashes, emit an error about duplicate candidates.
558 if slot.as_ref().map_or(false, |s| s.0 != hash) {
3dfed10e
XL
559 if let Some(candidates) = err_data {
560 return Err(CrateError::MultipleCandidates(
561 self.crate_name,
562 flavor,
563 candidates,
564 ));
9cc50fc6 565 }
3dfed10e 566 err_data = Some(vec![ret.as_ref().unwrap().0.clone()]);
a7813a04 567 *slot = None;
1a4d82fc 568 }
3dfed10e
XL
569 if let Some(candidates) = &mut err_data {
570 candidates.push(lib);
c30ab7b3 571 continue;
970d7e83 572 }
8bb4bdeb
XL
573
574 // Ok so at this point we've determined that `(lib, kind)` above is
575 // a candidate crate to load, and that `slot` is either none (this
576 // is the first crate of its kind) or if some the previous path has
0731742a 577 // the exact same hash (e.g., it's the exact same crate).
8bb4bdeb
XL
578 //
579 // In principle these two candidate crates are exactly the same so
580 // we can choose either of them to link. As a stupidly gross hack,
581 // however, we favor crate in the sysroot.
582 //
583 // You can find more info in rust-lang/rust#39518 and various linked
584 // issues, but the general gist is that during testing libstd the
585 // compilers has two candidates to choose from: one in the sysroot
586 // and one in the deps folder. These two crates are the exact same
587 // crate but if the compiler chooses the one in the deps folder
588 // it'll cause spurious errors on Windows.
589 //
590 // As a result, we favor the sysroot crate here. Note that the
591 // candidates are all canonicalized, so we canonicalize the sysroot
592 // as well.
3dfed10e 593 if let Some((prev, _)) = &ret {
0731742a 594 let sysroot = &self.sess.sysroot;
dfeec247 595 let sysroot = sysroot.canonicalize().unwrap_or_else(|_| sysroot.to_path_buf());
8bb4bdeb 596 if prev.starts_with(&sysroot) {
dfeec247 597 continue;
8bb4bdeb
XL
598 }
599 }
a7813a04 600 *slot = Some((hash, metadata));
85aaf69f 601 ret = Some((lib, kind));
1a4d82fc 602 }
9cc50fc6 603
3dfed10e
XL
604 if let Some(candidates) = err_data {
605 Err(CrateError::MultipleCandidates(self.crate_name, flavor, candidates))
9cc50fc6 606 } else {
3dfed10e 607 Ok(ret)
9cc50fc6 608 }
1a4d82fc
JJ
609 }
610
9e0c209e 611 fn crate_matches(&mut self, metadata: &MetadataBlob, libpath: &Path) -> Option<Svh> {
c30ab7b3 612 let rustc_version = rustc_version();
476ff2be
SL
613 let found_version = metadata.get_rustc_version();
614 if found_version != rustc_version {
dfeec247
XL
615 info!("Rejecting via version: expected {} got {}", rustc_version, found_version);
616 self.rejected_via_version
617 .push(CrateMismatch { path: libpath.to_path_buf(), got: found_version });
a7813a04
XL
618 return None;
619 }
620
476ff2be 621 let root = metadata.get_root();
60c5eb7d
XL
622 if let Some(expected_is_proc_macro) = self.is_proc_macro {
623 let is_proc_macro = root.is_proc_macro_crate();
624 if is_proc_macro != expected_is_proc_macro {
dfeec247
XL
625 info!(
626 "Rejecting via proc macro: expected {} got {}",
627 expected_is_proc_macro, is_proc_macro
628 );
476ff2be
SL
629 return None;
630 }
631 }
632
29967ef6
XL
633 if self.exact_paths.is_empty() && self.crate_name != root.name() {
634 info!("Rejecting via crate name");
635 return None;
1a4d82fc 636 }
1a4d82fc 637
60c5eb7d 638 if root.triple() != &self.triple {
dfeec247 639 info!("Rejecting via crate triple: expected {} got {}", self.triple, root.triple());
1a4d82fc 640 self.rejected_via_triple.push(CrateMismatch {
c34b1796 641 path: libpath.to_path_buf(),
60c5eb7d 642 got: root.triple().to_string(),
1a4d82fc 643 });
a7813a04 644 return None;
223e47cc 645 }
223e47cc 646
60c5eb7d
XL
647 let hash = root.hash();
648 if let Some(expected_hash) = self.hash {
649 if hash != expected_hash {
650 info!("Rejecting via hash: expected {} got {}", expected_hash, hash);
dfeec247
XL
651 self.rejected_via_hash
652 .push(CrateMismatch { path: libpath.to_path_buf(), got: hash.to_string() });
a7813a04 653 return None;
1a4d82fc 654 }
223e47cc 655 }
a7813a04 656
60c5eb7d 657 Some(hash)
223e47cc 658 }
223e47cc 659
3dfed10e 660 fn find_commandline_library(&mut self) -> Result<Option<Library>, CrateError> {
1a4d82fc
JJ
661 // First, filter out all libraries that look suspicious. We only accept
662 // files which actually exist that have the correct naming scheme for
663 // rlibs/dylibs.
0bf4aa26
XL
664 let mut rlibs = FxHashMap::default();
665 let mut rmetas = FxHashMap::default();
666 let mut dylibs = FxHashMap::default();
3dfed10e 667 for loc in &self.exact_paths {
5869c6ff
XL
668 if !loc.canonicalized().exists() {
669 return Err(CrateError::ExternLocationNotExist(
670 self.crate_name,
671 loc.original().clone(),
672 ));
3dfed10e 673 }
5869c6ff 674 let file = match loc.original().file_name().and_then(|s| s.to_str()) {
3dfed10e
XL
675 Some(file) => file,
676 None => {
5869c6ff
XL
677 return Err(CrateError::ExternLocationNotFile(
678 self.crate_name,
679 loc.original().clone(),
680 ));
1a4d82fc 681 }
3dfed10e 682 };
476ff2be 683
3dfed10e 684 if file.starts_with("lib") && (file.ends_with(".rlib") || file.ends_with(".rmeta"))
29967ef6
XL
685 || file.starts_with(&self.target.dll_prefix)
686 && file.ends_with(&self.target.dll_suffix)
3dfed10e
XL
687 {
688 // Make sure there's at most one rlib and at most one dylib.
689 // Note to take care and match against the non-canonicalized name:
690 // some systems save build artifacts into content-addressed stores
691 // that do not preserve extensions, and then link to them using
692 // e.g. symbolic links. If we canonicalize too early, we resolve
693 // the symlink, the file type is lost and we might treat rlibs and
694 // rmetas as dylibs.
5869c6ff
XL
695 let loc_canon = loc.canonicalized().clone();
696 let loc = loc.original();
c34b1796 697 if loc.file_name().unwrap().to_str().unwrap().ends_with(".rlib") {
3dfed10e 698 rlibs.insert(loc_canon, PathKind::ExternFlag);
476ff2be 699 } else if loc.file_name().unwrap().to_str().unwrap().ends_with(".rmeta") {
3dfed10e 700 rmetas.insert(loc_canon, PathKind::ExternFlag);
1a4d82fc 701 } else {
3dfed10e 702 dylibs.insert(loc_canon, PathKind::ExternFlag);
1a4d82fc 703 }
3dfed10e
XL
704 } else {
705 self.rejected_via_filename
5869c6ff 706 .push(CrateMismatch { path: loc.original().clone(), got: String::new() });
1a4d82fc 707 }
3dfed10e 708 }
1a4d82fc 709
e74abb32 710 // Extract the dylib/rlib/rmeta triple.
3dfed10e 711 Ok(self.extract_lib(rlibs, rmetas, dylibs)?.map(|(_, lib)| lib))
223e47cc 712 }
223e47cc 713
3dfed10e
XL
714 crate fn into_error(self) -> CrateError {
715 CrateError::LocatorCombined(CombinedLocatorError {
716 crate_name: self.crate_name,
717 root: self.root.cloned(),
718 triple: self.triple,
29967ef6
XL
719 dll_prefix: self.target.dll_prefix.clone(),
720 dll_suffix: self.target.dll_suffix.clone(),
3dfed10e
XL
721 rejected_via_hash: self.rejected_via_hash,
722 rejected_via_triple: self.rejected_via_triple,
723 rejected_via_kind: self.rejected_via_kind,
724 rejected_via_version: self.rejected_via_version,
725 rejected_via_filename: self.rejected_via_filename,
726 })
727 }
223e47cc
LB
728}
729
a1dfa0c6 730/// A trivial wrapper for `Mmap` that implements `StableDeref`.
6a06907d 731struct StableDerefMmap(memmap2::Mmap);
a1dfa0c6
XL
732
733impl Deref for StableDerefMmap {
734 type Target = [u8];
735
736 fn deref(&self) -> &[u8] {
737 self.0.deref()
738 }
739}
740
741unsafe impl stable_deref_trait::StableDeref for StableDerefMmap {}
742
3dfed10e 743fn get_metadata_section(
dfeec247
XL
744 target: &Target,
745 flavor: CrateFlavor,
746 filename: &Path,
747 loader: &dyn MetadataLoader,
748) -> Result<MetadataBlob, String> {
1a4d82fc
JJ
749 if !filename.exists() {
750 return Err(format!("no such file: '{}'", filename.display()));
751 }
0531ce1d 752 let raw_bytes: MetadataRef = match flavor {
7cac9316
XL
753 CrateFlavor::Rlib => loader.get_rlib_metadata(target, filename)?,
754 CrateFlavor::Dylib => {
755 let buf = loader.get_dylib_metadata(target, filename)?;
756 // The header is uncompressed
757 let header_len = METADATA_HEADER.len();
758 debug!("checking {} bytes of metadata-version stamp", header_len);
759 let header = &buf[..cmp::min(header_len, buf.len())];
760 if header != METADATA_HEADER {
dfeec247
XL
761 return Err(format!(
762 "incompatible metadata version found: '{}'",
763 filename.display()
764 ));
1a4d82fc 765 }
223e47cc 766
7cac9316
XL
767 // Header is okay -> inflate the actual metadata
768 let compressed_bytes = &buf[header_len..];
769 debug!("inflating {} bytes of compressed metadata", compressed_bytes.len());
041b39d2 770 let mut inflated = Vec::new();
1b1a35ee 771 match FrameDecoder::new(compressed_bytes).read_to_end(&mut inflated) {
dfeec247 772 Ok(_) => rustc_erase_owner!(OwningRef::new(inflated).map_owner_box()),
7cac9316
XL
773 Err(_) => {
774 return Err(format!("failed to decompress metadata: {}", filename.display()));
223e47cc
LB
775 }
776 }
223e47cc 777 }
7cac9316 778 CrateFlavor::Rmeta => {
a1dfa0c6 779 // mmap the file, because only a small fraction of it is read.
dfeec247
XL
780 let file = std::fs::File::open(filename)
781 .map_err(|_| format!("failed to open rmeta metadata: '{}'", filename.display()))?;
6a06907d 782 let mmap = unsafe { memmap2::Mmap::map(&file) };
dfeec247
XL
783 let mmap = mmap
784 .map_err(|_| format!("failed to mmap rmeta metadata: '{}'", filename.display()))?;
a1dfa0c6
XL
785
786 rustc_erase_owner!(OwningRef::new(StableDerefMmap(mmap)).map_owner_box())
7cac9316
XL
787 }
788 };
60c5eb7d 789 let blob = MetadataBlob::new(raw_bytes);
7cac9316
XL
790 if blob.is_compatible() {
791 Ok(blob)
1a4d82fc 792 } else {
7cac9316 793 Err(format!("incompatible metadata version found: '{}'", filename.display()))
223e47cc
LB
794 }
795}
796
e74abb32
XL
797/// Look for a plugin registrar. Returns its library path and crate disambiguator.
798pub fn find_plugin_registrar(
799 sess: &Session,
800 metadata_loader: &dyn MetadataLoader,
801 span: Span,
802 name: Symbol,
3dfed10e
XL
803) -> (PathBuf, CrateDisambiguator) {
804 match find_plugin_registrar_impl(sess, metadata_loader, name) {
805 Ok(res) => res,
806 Err(err) => err.report(sess, span),
807 }
808}
809
810fn find_plugin_registrar_impl<'a>(
811 sess: &'a Session,
812 metadata_loader: &dyn MetadataLoader,
813 name: Symbol,
814) -> Result<(PathBuf, CrateDisambiguator), CrateError> {
e74abb32 815 info!("find plugin registrar `{}`", name);
60c5eb7d 816 let mut locator = CrateLocator::new(
e74abb32 817 sess,
e74abb32 818 metadata_loader,
60c5eb7d
XL
819 name,
820 None, // hash
821 None, // host_hash
822 None, // extra_filename
823 true, // is_host
824 PathKind::Crate,
60c5eb7d
XL
825 None, // root
826 None, // is_proc_macro
827 );
e74abb32 828
3dfed10e
XL
829 match locator.maybe_load_library_crate()? {
830 Some(library) => match library.source.dylib {
831 Some(dylib) => Ok((dylib.0, library.metadata.get_root().disambiguator())),
832 None => Err(CrateError::NonDylibPlugin(name)),
833 },
834 None => Err(locator.into_error()),
e74abb32
XL
835 }
836}
837
9fa01778 838/// A diagnostic function for dumping crate metadata to an output stream.
dfeec247
XL
839pub fn list_file_metadata(
840 target: &Target,
841 path: &Path,
842 metadata_loader: &dyn MetadataLoader,
3dfed10e
XL
843 out: &mut dyn Write,
844) -> IoResult<()> {
a7813a04 845 let filename = path.file_name().unwrap().to_str().unwrap();
c30ab7b3
SL
846 let flavor = if filename.ends_with(".rlib") {
847 CrateFlavor::Rlib
476ff2be
SL
848 } else if filename.ends_with(".rmeta") {
849 CrateFlavor::Rmeta
c30ab7b3
SL
850 } else {
851 CrateFlavor::Dylib
852 };
e74abb32 853 match get_metadata_section(target, flavor, path, metadata_loader) {
9e0c209e 854 Ok(metadata) => metadata.list_crate_metadata(out),
c30ab7b3 855 Err(msg) => write!(out, "{}\n", msg),
223e47cc
LB
856 }
857}
3dfed10e
XL
858
859// ------------------------------------------ Error reporting -------------------------------------
860
861#[derive(Clone)]
862struct CrateMismatch {
863 path: PathBuf,
864 got: String,
865}
866
867/// Candidate rejection reasons collected during crate search.
868/// If no candidate is accepted, then these reasons are presented to the user,
869/// otherwise they are ignored.
870crate struct CombinedLocatorError {
871 crate_name: Symbol,
872 root: Option<CratePaths>,
873 triple: TargetTriple,
874 dll_prefix: String,
875 dll_suffix: String,
876 rejected_via_hash: Vec<CrateMismatch>,
877 rejected_via_triple: Vec<CrateMismatch>,
878 rejected_via_kind: Vec<CrateMismatch>,
879 rejected_via_version: Vec<CrateMismatch>,
880 rejected_via_filename: Vec<CrateMismatch>,
881}
882
883crate enum CrateError {
884 NonAsciiName(Symbol),
885 ExternLocationNotExist(Symbol, PathBuf),
886 ExternLocationNotFile(Symbol, PathBuf),
887 MultipleCandidates(Symbol, CrateFlavor, Vec<PathBuf>),
888 MultipleMatchingCrates(Symbol, FxHashMap<Svh, Library>),
889 SymbolConflictsCurrent(Symbol),
890 SymbolConflictsOthers(Symbol),
6a06907d 891 StableCrateIdCollision(Symbol, Symbol),
3dfed10e
XL
892 DlOpen(String),
893 DlSym(String),
894 LocatorCombined(CombinedLocatorError),
895 NonDylibPlugin(Symbol),
896}
897
898impl CrateError {
899 crate fn report(self, sess: &Session, span: Span) -> ! {
900 let mut err = match self {
901 CrateError::NonAsciiName(crate_name) => sess.struct_span_err(
902 span,
903 &format!("cannot load a crate with a non-ascii name `{}`", crate_name),
904 ),
905 CrateError::ExternLocationNotExist(crate_name, loc) => sess.struct_span_err(
906 span,
907 &format!("extern location for {} does not exist: {}", crate_name, loc.display()),
908 ),
909 CrateError::ExternLocationNotFile(crate_name, loc) => sess.struct_span_err(
910 span,
911 &format!("extern location for {} is not a file: {}", crate_name, loc.display()),
912 ),
913 CrateError::MultipleCandidates(crate_name, flavor, candidates) => {
914 let mut err = struct_span_err!(
915 sess,
916 span,
917 E0465,
918 "multiple {} candidates for `{}` found",
919 flavor,
920 crate_name,
921 );
922 for (i, candidate) in candidates.iter().enumerate() {
923 err.span_note(span, &format!("candidate #{}: {}", i + 1, candidate.display()));
924 }
925 err
926 }
927 CrateError::MultipleMatchingCrates(crate_name, libraries) => {
928 let mut err = struct_span_err!(
929 sess,
930 span,
931 E0464,
932 "multiple matching crates for `{}`",
933 crate_name
934 );
935 let candidates = libraries
936 .iter()
937 .filter_map(|(_, lib)| {
938 let crate_name = &lib.metadata.get_root().name().as_str();
939 match (&lib.source.dylib, &lib.source.rlib) {
940 (Some((pd, _)), Some((pr, _))) => Some(format!(
941 "\ncrate `{}`: {}\n{:>padding$}",
942 crate_name,
943 pd.display(),
944 pr.display(),
945 padding = 8 + crate_name.len()
946 )),
947 (Some((p, _)), None) | (None, Some((p, _))) => {
948 Some(format!("\ncrate `{}`: {}", crate_name, p.display()))
949 }
950 (None, None) => None,
951 }
952 })
953 .collect::<String>();
954 err.note(&format!("candidates:{}", candidates));
955 err
956 }
957 CrateError::SymbolConflictsCurrent(root_name) => struct_span_err!(
958 sess,
959 span,
960 E0519,
961 "the current crate is indistinguishable from one of its dependencies: it has the \
962 same crate-name `{}` and was compiled with the same `-C metadata` arguments. \
963 This will result in symbol conflicts between the two.",
964 root_name,
965 ),
966 CrateError::SymbolConflictsOthers(root_name) => struct_span_err!(
967 sess,
968 span,
969 E0523,
970 "found two different crates with name `{}` that are not distinguished by differing \
971 `-C metadata`. This will result in symbol conflicts between the two.",
972 root_name,
973 ),
6a06907d
XL
974 CrateError::StableCrateIdCollision(crate_name0, crate_name1) => {
975 let msg = format!(
976 "found crates (`{}` and `{}`) with colliding StableCrateId values.",
977 crate_name0, crate_name1
978 );
979 sess.struct_span_err(span, &msg)
980 }
3dfed10e
XL
981 CrateError::DlOpen(s) | CrateError::DlSym(s) => sess.struct_span_err(span, &s),
982 CrateError::LocatorCombined(locator) => {
983 let crate_name = locator.crate_name;
984 let add = match &locator.root {
985 None => String::new(),
986 Some(r) => format!(" which `{}` depends on", r.name),
987 };
988 let mut msg = "the following crate versions were found:".to_string();
989 let mut err = if !locator.rejected_via_hash.is_empty() {
990 let mut err = struct_span_err!(
991 sess,
992 span,
993 E0460,
994 "found possibly newer version of crate `{}`{}",
995 crate_name,
996 add,
997 );
998 err.note("perhaps that crate needs to be recompiled?");
999 let mismatches = locator.rejected_via_hash.iter();
1000 for CrateMismatch { path, .. } in mismatches {
1001 msg.push_str(&format!("\ncrate `{}`: {}", crate_name, path.display()));
1002 }
1003 if let Some(r) = locator.root {
1004 for path in r.source.paths() {
1005 msg.push_str(&format!("\ncrate `{}`: {}", r.name, path.display()));
1006 }
1007 }
1008 err.note(&msg);
1009 err
1010 } else if !locator.rejected_via_triple.is_empty() {
1011 let mut err = struct_span_err!(
1012 sess,
1013 span,
1014 E0461,
1015 "couldn't find crate `{}` with expected target triple {}{}",
1016 crate_name,
1017 locator.triple,
1018 add,
1019 );
1020 let mismatches = locator.rejected_via_triple.iter();
1021 for CrateMismatch { path, got } in mismatches {
1022 msg.push_str(&format!(
1023 "\ncrate `{}`, target triple {}: {}",
1024 crate_name,
1025 got,
1026 path.display(),
1027 ));
1028 }
1029 err.note(&msg);
1030 err
1031 } else if !locator.rejected_via_kind.is_empty() {
1032 let mut err = struct_span_err!(
1033 sess,
1034 span,
1035 E0462,
1036 "found staticlib `{}` instead of rlib or dylib{}",
1037 crate_name,
1038 add,
1039 );
1040 err.help("please recompile that crate using --crate-type lib");
1041 let mismatches = locator.rejected_via_kind.iter();
1042 for CrateMismatch { path, .. } in mismatches {
1043 msg.push_str(&format!("\ncrate `{}`: {}", crate_name, path.display()));
1044 }
1045 err.note(&msg);
1046 err
1047 } else if !locator.rejected_via_version.is_empty() {
1048 let mut err = struct_span_err!(
1049 sess,
1050 span,
1051 E0514,
1052 "found crate `{}` compiled by an incompatible version of rustc{}",
1053 crate_name,
1054 add,
1055 );
1056 err.help(&format!(
1057 "please recompile that crate using this compiler ({})",
1058 rustc_version(),
1059 ));
1060 let mismatches = locator.rejected_via_version.iter();
1061 for CrateMismatch { path, got } in mismatches {
1062 msg.push_str(&format!(
1063 "\ncrate `{}` compiled by {}: {}",
1064 crate_name,
1065 got,
1066 path.display(),
1067 ));
1068 }
1069 err.note(&msg);
1070 err
1071 } else {
1072 let mut err = struct_span_err!(
1073 sess,
1074 span,
1075 E0463,
1076 "can't find crate for `{}`{}",
1077 crate_name,
1078 add,
1079 );
1080
1081 if (crate_name == sym::std || crate_name == sym::core)
1082 && locator.triple != TargetTriple::from_triple(config::host_triple())
1083 {
1084 err.note(&format!("the `{}` target may not be installed", locator.triple));
1085 } else if crate_name == sym::profiler_builtins {
1086 err.note(&"the compiler may have been built without the profiler runtime");
1087 }
1088 err.span_label(span, "can't find crate");
1089 err
1090 };
1091
1092 if !locator.rejected_via_filename.is_empty() {
1093 let mismatches = locator.rejected_via_filename.iter();
1094 for CrateMismatch { path, .. } in mismatches {
1095 err.note(&format!(
1096 "extern location for {} is of an unknown type: {}",
1097 crate_name,
1098 path.display(),
1099 ))
1100 .help(&format!(
1101 "file name should be lib*.rlib or {}*.{}",
1102 locator.dll_prefix, locator.dll_suffix
1103 ));
1104 }
1105 }
1106 err
1107 }
1108 CrateError::NonDylibPlugin(crate_name) => struct_span_err!(
1109 sess,
1110 span,
1111 E0457,
1112 "plugin `{}` only found in rlib format, but must be available in dylib format",
1113 crate_name,
1114 ),
1115 };
1116
1117 err.emit();
1118 sess.abort_if_errors();
1119 unreachable!();
1120 }
1121}