]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/locator.rs
Rollup merge of #66468 - RalfJung:simd-cleanup, r=oli-obk
[rust.git] / src / librustc_metadata / locator.rs
1 //! Finds crate binaries and loads their metadata
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
30 //! that we can always type-check/translate any function, we have to have
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 //!
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 //!
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?
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.
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
132 //! > would like you to assume that the library is located at
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 //!
146 //! ```compile_fail,E0463
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
213 //! metadata::locator or metadata::creader for all the juicy details!
214
215 use crate::creader::Library;
216 use crate::rmeta::{METADATA_HEADER, rustc_version, MetadataBlob};
217
218 use rustc_data_structures::fx::FxHashSet;
219 use rustc_data_structures::svh::Svh;
220 use rustc_data_structures::sync::MetadataRef;
221 use rustc::middle::cstore::{CrateSource, MetadataLoader};
222 use rustc::session::{config, Session, CrateDisambiguator};
223 use rustc::session::filesearch::{FileSearch, FileMatches, FileDoesntMatch};
224 use rustc::session::search_paths::PathKind;
225 use rustc::util::nodemap::FxHashMap;
226
227 use errors::DiagnosticBuilder;
228 use syntax::{span_err, span_fatal};
229 use syntax::symbol::{Symbol, sym};
230 use syntax::struct_span_err;
231 use syntax_pos::Span;
232 use rustc_target::spec::{Target, TargetTriple};
233
234 use std::cmp;
235 use std::fmt;
236 use std::fs;
237 use std::io::{self, Read};
238 use std::ops::Deref;
239 use std::path::{Path, PathBuf};
240 use std::time::Instant;
241
242 use flate2::read::DeflateDecoder;
243
244 use rustc_data_structures::owning_ref::OwningRef;
245
246 use log::{debug, info, warn};
247
248 use rustc_error_codes::*;
249
250 #[derive(Clone)]
251 struct CrateMismatch {
252     path: PathBuf,
253     got: String,
254 }
255
256 #[derive(Clone)]
257 crate struct CrateLocator<'a> {
258     // Immutable per-session configuration.
259     sess: &'a Session,
260     metadata_loader: &'a dyn MetadataLoader,
261
262     // Immutable per-search configuration.
263     crate_name: Symbol,
264     exact_paths: Vec<PathBuf>,
265     pub hash: Option<&'a Svh>,
266     pub host_hash: Option<&'a Svh>,
267     extra_filename: Option<&'a str>,
268     pub target: &'a Target,
269     pub triple: TargetTriple,
270     pub filesearch: FileSearch<'a>,
271     span: Span,
272     root: Option<&'a CratePaths>,
273     pub is_proc_macro: Option<bool>,
274
275     // Mutable in-progress state or output.
276     rejected_via_hash: Vec<CrateMismatch>,
277     rejected_via_triple: Vec<CrateMismatch>,
278     rejected_via_kind: Vec<CrateMismatch>,
279     rejected_via_version: Vec<CrateMismatch>,
280     rejected_via_filename: Vec<CrateMismatch>,
281 }
282
283 crate struct CratePaths {
284     name: Symbol,
285     source: CrateSource,
286 }
287
288 impl CratePaths {
289     crate fn new(name: Symbol, source: CrateSource) -> CratePaths {
290         CratePaths { name, source }
291     }
292 }
293
294 #[derive(Copy, Clone, PartialEq)]
295 enum CrateFlavor {
296     Rlib,
297     Rmeta,
298     Dylib,
299 }
300
301 impl fmt::Display for CrateFlavor {
302     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
303         f.write_str(match *self {
304             CrateFlavor::Rlib => "rlib",
305             CrateFlavor::Rmeta => "rmeta",
306             CrateFlavor::Dylib => "dylib",
307         })
308     }
309 }
310
311 impl<'a> CrateLocator<'a> {
312     crate fn new(
313         sess: &'a Session,
314         metadata_loader: &'a dyn MetadataLoader,
315         crate_name: Symbol,
316         hash: Option<&'a Svh>,
317         host_hash: Option<&'a Svh>,
318         extra_filename: Option<&'a str>,
319         is_host: bool,
320         path_kind: PathKind,
321         span: Span,
322         root: Option<&'a CratePaths>,
323         is_proc_macro: Option<bool>,
324     ) -> CrateLocator<'a> {
325         CrateLocator {
326             sess,
327             metadata_loader,
328             crate_name,
329             exact_paths: if hash.is_none() {
330                 sess.opts.externs.get(&crate_name.as_str()).into_iter()
331                     .flat_map(|entry| entry.locations.iter())
332                     .filter_map(|location| location.clone().map(PathBuf::from)).collect()
333             } else {
334                 // SVH being specified means this is a transitive dependency,
335                 // so `--extern` options do not apply.
336                 Vec::new()
337             },
338             hash,
339             host_hash,
340             extra_filename,
341             target: if is_host { &sess.host } else { &sess.target.target },
342             triple: if is_host {
343                 TargetTriple::from_triple(config::host_triple())
344             } else {
345                 sess.opts.target_triple.clone()
346             },
347             filesearch: if is_host {
348                 sess.host_filesearch(path_kind)
349             } else {
350                 sess.target_filesearch(path_kind)
351             },
352             span,
353             root,
354             is_proc_macro,
355             rejected_via_hash: Vec::new(),
356             rejected_via_triple: Vec::new(),
357             rejected_via_kind: Vec::new(),
358             rejected_via_version: Vec::new(),
359             rejected_via_filename: Vec::new(),
360         }
361     }
362
363     crate fn reset(&mut self) {
364         self.rejected_via_hash.clear();
365         self.rejected_via_triple.clear();
366         self.rejected_via_kind.clear();
367         self.rejected_via_version.clear();
368         self.rejected_via_filename.clear();
369     }
370
371     crate fn maybe_load_library_crate(&mut self) -> Option<Library> {
372         if !self.exact_paths.is_empty() {
373             return self.find_commandline_library();
374         }
375         let mut seen_paths = FxHashSet::default();
376         match self.extra_filename {
377             Some(s) => self.find_library_crate(s, &mut seen_paths)
378                 .or_else(|| self.find_library_crate("", &mut seen_paths)),
379             None => self.find_library_crate("", &mut seen_paths)
380         }
381     }
382
383     crate fn report_errs(self) -> ! {
384         let add = match self.root {
385             None => String::new(),
386             Some(r) => format!(" which `{}` depends on", r.name),
387         };
388         let mut msg = "the following crate versions were found:".to_string();
389         let mut err = if !self.rejected_via_hash.is_empty() {
390             let mut err = struct_span_err!(self.sess,
391                                            self.span,
392                                            E0460,
393                                            "found possibly newer version of crate `{}`{}",
394                                            self.crate_name,
395                                            add);
396             err.note("perhaps that crate needs to be recompiled?");
397             let mismatches = self.rejected_via_hash.iter();
398             for &CrateMismatch { ref path, .. } in mismatches {
399                 msg.push_str(&format!("\ncrate `{}`: {}", self.crate_name, path.display()));
400             }
401             match self.root {
402                 None => {}
403                 Some(r) => {
404                     for path in r.source.paths() {
405                         msg.push_str(&format!("\ncrate `{}`: {}", r.name, path.display()));
406                     }
407                 }
408             }
409             err.note(&msg);
410             err
411         } else if !self.rejected_via_triple.is_empty() {
412             let mut err = struct_span_err!(self.sess,
413                                            self.span,
414                                            E0461,
415                                            "couldn't find crate `{}` \
416                                             with expected target triple {}{}",
417                                            self.crate_name,
418                                            self.triple,
419                                            add);
420             let mismatches = self.rejected_via_triple.iter();
421             for &CrateMismatch { ref path, ref got } in mismatches {
422                 msg.push_str(&format!("\ncrate `{}`, target triple {}: {}",
423                                       self.crate_name,
424                                       got,
425                                       path.display()));
426             }
427             err.note(&msg);
428             err
429         } else if !self.rejected_via_kind.is_empty() {
430             let mut err = struct_span_err!(self.sess,
431                                            self.span,
432                                            E0462,
433                                            "found staticlib `{}` instead of rlib or dylib{}",
434                                            self.crate_name,
435                                            add);
436             err.help("please recompile that crate using --crate-type lib");
437             let mismatches = self.rejected_via_kind.iter();
438             for &CrateMismatch { ref path, .. } in mismatches {
439                 msg.push_str(&format!("\ncrate `{}`: {}", self.crate_name, path.display()));
440             }
441             err.note(&msg);
442             err
443         } else if !self.rejected_via_version.is_empty() {
444             let mut err = struct_span_err!(self.sess,
445                                            self.span,
446                                            E0514,
447                                            "found crate `{}` compiled by an incompatible version \
448                                             of rustc{}",
449                                            self.crate_name,
450                                            add);
451             err.help(&format!("please recompile that crate using this compiler ({})",
452                               rustc_version()));
453             let mismatches = self.rejected_via_version.iter();
454             for &CrateMismatch { ref path, ref got } in mismatches {
455                 msg.push_str(&format!("\ncrate `{}` compiled by {}: {}",
456                                       self.crate_name,
457                                       got,
458                                       path.display()));
459             }
460             err.note(&msg);
461             err
462         } else {
463             let mut err = struct_span_err!(self.sess,
464                                            self.span,
465                                            E0463,
466                                            "can't find crate for `{}`{}",
467                                            self.crate_name,
468                                            add);
469
470             if (self.crate_name == sym::std || self.crate_name == sym::core)
471                 && self.triple != TargetTriple::from_triple(config::host_triple()) {
472                 err.note(&format!("the `{}` target may not be installed", self.triple));
473             }
474             err.span_label(self.span, "can't find crate");
475             err
476         };
477
478         if !self.rejected_via_filename.is_empty() {
479             let dylibname = self.dylibname();
480             let mismatches = self.rejected_via_filename.iter();
481             for &CrateMismatch { ref path, .. } in mismatches {
482                 err.note(&format!("extern location for {} is of an unknown type: {}",
483                                   self.crate_name,
484                                   path.display()))
485                    .help(&format!("file name should be lib*.rlib or {}*.{}",
486                                   dylibname.0,
487                                   dylibname.1));
488             }
489         }
490
491         err.emit();
492         self.sess.abort_if_errors();
493         unreachable!();
494     }
495
496     fn find_library_crate(&mut self,
497                           extra_prefix: &str,
498                           seen_paths: &mut FxHashSet<PathBuf>)
499                           -> Option<Library> {
500         let dypair = self.dylibname();
501         let staticpair = self.staticlibname();
502
503         // want: crate_name.dir_part() + prefix + crate_name.file_part + "-"
504         let dylib_prefix = format!("{}{}{}", dypair.0, self.crate_name, extra_prefix);
505         let rlib_prefix = format!("lib{}{}", self.crate_name, extra_prefix);
506         let staticlib_prefix = format!("{}{}{}", staticpair.0, self.crate_name, extra_prefix);
507
508         let mut candidates: FxHashMap<
509             _,
510             (FxHashMap<_, _>, FxHashMap<_, _>, FxHashMap<_, _>),
511         > = Default::default();
512         let mut staticlibs = vec![];
513
514         // First, find all possible candidate rlibs and dylibs purely based on
515         // the name of the files themselves. We're trying to match against an
516         // exact crate name and a possibly an exact hash.
517         //
518         // During this step, we can filter all found libraries based on the
519         // name and id found in the crate id (we ignore the path portion for
520         // filename matching), as well as the exact hash (if specified). If we
521         // end up having many candidates, we must look at the metadata to
522         // perform exact matches against hashes/crate ids. Note that opening up
523         // the metadata is where we do an exact match against the full contents
524         // of the crate id (path/name/id).
525         //
526         // The goal of this step is to look at as little metadata as possible.
527         self.filesearch.search(|path, kind| {
528             let file = match path.file_name().and_then(|s| s.to_str()) {
529                 None => return FileDoesntMatch,
530                 Some(file) => file,
531             };
532             let (hash, found_kind) =
533                 if file.starts_with(&rlib_prefix) && file.ends_with(".rlib") {
534                     (&file[(rlib_prefix.len())..(file.len() - ".rlib".len())], CrateFlavor::Rlib)
535                 } else if file.starts_with(&rlib_prefix) && file.ends_with(".rmeta") {
536                     (&file[(rlib_prefix.len())..(file.len() - ".rmeta".len())], CrateFlavor::Rmeta)
537                 } else if file.starts_with(&dylib_prefix) &&
538                                              file.ends_with(&dypair.1) {
539                     (&file[(dylib_prefix.len())..(file.len() - dypair.1.len())], CrateFlavor::Dylib)
540                 } else {
541                     if file.starts_with(&staticlib_prefix) && file.ends_with(&staticpair.1) {
542                         staticlibs.push(CrateMismatch {
543                             path: path.to_path_buf(),
544                             got: "static".to_string(),
545                         });
546                     }
547                     return FileDoesntMatch;
548                 };
549
550             info!("lib candidate: {}", path.display());
551
552             let hash_str = hash.to_string();
553             let slot = candidates.entry(hash_str).or_default();
554             let (ref mut rlibs, ref mut rmetas, ref mut dylibs) = *slot;
555             fs::canonicalize(path)
556                 .map(|p| {
557                     if seen_paths.contains(&p) {
558                         return FileDoesntMatch
559                     };
560                     seen_paths.insert(p.clone());
561                     match found_kind {
562                         CrateFlavor::Rlib => { rlibs.insert(p, kind); }
563                         CrateFlavor::Rmeta => { rmetas.insert(p, kind); }
564                         CrateFlavor::Dylib => { dylibs.insert(p, kind); }
565                     }
566                     FileMatches
567                 })
568                 .unwrap_or(FileDoesntMatch)
569         });
570         self.rejected_via_kind.extend(staticlibs);
571
572         // We have now collected all known libraries into a set of candidates
573         // keyed of the filename hash listed. For each filename, we also have a
574         // list of rlibs/dylibs that apply. Here, we map each of these lists
575         // (per hash), to a Library candidate for returning.
576         //
577         // A Library candidate is created if the metadata for the set of
578         // libraries corresponds to the crate id and hash criteria that this
579         // search is being performed for.
580         let mut libraries = FxHashMap::default();
581         for (_hash, (rlibs, rmetas, dylibs)) in candidates {
582             if let Some((svh, lib)) = self.extract_lib(rlibs, rmetas, dylibs) {
583                 libraries.insert(svh, lib);
584             }
585         }
586
587         // Having now translated all relevant found hashes into libraries, see
588         // what we've got and figure out if we found multiple candidates for
589         // libraries or not.
590         match libraries.len() {
591             0 => None,
592             1 => Some(libraries.into_iter().next().unwrap().1),
593             _ => {
594                 let mut err = struct_span_err!(self.sess,
595                                                self.span,
596                                                E0464,
597                                                "multiple matching crates for `{}`",
598                                                self.crate_name);
599                 let candidates = libraries.iter().filter_map(|(_, lib)| {
600                     let crate_name = &lib.metadata.get_root().name.as_str();
601                     match &(&lib.source.dylib, &lib.source.rlib) {
602                         &(&Some((ref pd, _)), &Some((ref pr, _))) => {
603                             Some(format!("\ncrate `{}`: {}\n{:>padding$}",
604                                          crate_name,
605                                          pd.display(),
606                                          pr.display(),
607                                          padding=8 + crate_name.len()))
608                         }
609                         &(&Some((ref p, _)), &None) | &(&None, &Some((ref p, _))) => {
610                             Some(format!("\ncrate `{}`: {}", crate_name, p.display()))
611                         }
612                         &(&None, &None) => None,
613                     }
614                 }).collect::<String>();
615                 err.note(&format!("candidates:{}", candidates));
616                 err.emit();
617                 None
618             }
619         }
620     }
621
622     fn extract_lib(
623         &mut self,
624         rlibs: FxHashMap<PathBuf, PathKind>,
625         rmetas: FxHashMap<PathBuf, PathKind>,
626         dylibs: FxHashMap<PathBuf, PathKind>,
627     ) -> Option<(Svh, Library)> {
628         let mut slot = None;
629         let source = CrateSource {
630             rlib: self.extract_one(rlibs, CrateFlavor::Rlib, &mut slot),
631             rmeta: self.extract_one(rmetas, CrateFlavor::Rmeta, &mut slot),
632             dylib: self.extract_one(dylibs, CrateFlavor::Dylib, &mut slot),
633         };
634         slot.map(|(svh, metadata)| (svh, Library { source, metadata }))
635     }
636
637     // Attempts to extract *one* library from the set `m`. If the set has no
638     // elements, `None` is returned. If the set has more than one element, then
639     // the errors and notes are emitted about the set of libraries.
640     //
641     // With only one library in the set, this function will extract it, and then
642     // read the metadata from it if `*slot` is `None`. If the metadata couldn't
643     // be read, it is assumed that the file isn't a valid rust library (no
644     // errors are emitted).
645     fn extract_one(&mut self,
646                    m: FxHashMap<PathBuf, PathKind>,
647                    flavor: CrateFlavor,
648                    slot: &mut Option<(Svh, MetadataBlob)>)
649                    -> Option<(PathBuf, PathKind)> {
650         let mut ret: Option<(PathBuf, PathKind)> = None;
651         let mut error = 0;
652
653         if slot.is_some() {
654             // FIXME(#10786): for an optimization, we only read one of the
655             //                libraries' metadata sections. In theory we should
656             //                read both, but reading dylib metadata is quite
657             //                slow.
658             if m.is_empty() {
659                 return None;
660             } else if m.len() == 1 {
661                 return Some(m.into_iter().next().unwrap());
662             }
663         }
664
665         let mut err: Option<DiagnosticBuilder<'_>> = None;
666         for (lib, kind) in m {
667             info!("{} reading metadata from: {}", flavor, lib.display());
668             let (hash, metadata) =
669                 match get_metadata_section(self.target, flavor, &lib, self.metadata_loader) {
670                     Ok(blob) => {
671                         if let Some(h) = self.crate_matches(&blob, &lib) {
672                             (h, blob)
673                         } else {
674                             info!("metadata mismatch");
675                             continue;
676                         }
677                     }
678                     Err(err) => {
679                         warn!("no metadata found: {}", err);
680                         continue;
681                     }
682                 };
683             // If we see multiple hashes, emit an error about duplicate candidates.
684             if slot.as_ref().map_or(false, |s| s.0 != hash) {
685                 let mut e = struct_span_err!(self.sess,
686                                              self.span,
687                                              E0465,
688                                              "multiple {} candidates for `{}` found",
689                                              flavor,
690                                              self.crate_name);
691                 e.span_note(self.span,
692                             &format!(r"candidate #1: {}",
693                                      ret.as_ref()
694                                          .unwrap()
695                                          .0
696                                          .display()));
697                 if let Some(ref mut e) = err {
698                     e.emit();
699                 }
700                 err = Some(e);
701                 error = 1;
702                 *slot = None;
703             }
704             if error > 0 {
705                 error += 1;
706                 err.as_mut().unwrap().span_note(self.span,
707                                                 &format!(r"candidate #{}: {}",
708                                                          error,
709                                                          lib.display()));
710                 continue;
711             }
712
713             // Ok so at this point we've determined that `(lib, kind)` above is
714             // a candidate crate to load, and that `slot` is either none (this
715             // is the first crate of its kind) or if some the previous path has
716             // the exact same hash (e.g., it's the exact same crate).
717             //
718             // In principle these two candidate crates are exactly the same so
719             // we can choose either of them to link. As a stupidly gross hack,
720             // however, we favor crate in the sysroot.
721             //
722             // You can find more info in rust-lang/rust#39518 and various linked
723             // issues, but the general gist is that during testing libstd the
724             // compilers has two candidates to choose from: one in the sysroot
725             // and one in the deps folder. These two crates are the exact same
726             // crate but if the compiler chooses the one in the deps folder
727             // it'll cause spurious errors on Windows.
728             //
729             // As a result, we favor the sysroot crate here. Note that the
730             // candidates are all canonicalized, so we canonicalize the sysroot
731             // as well.
732             if let Some((ref prev, _)) = ret {
733                 let sysroot = &self.sess.sysroot;
734                 let sysroot = sysroot.canonicalize()
735                                      .unwrap_or_else(|_| sysroot.to_path_buf());
736                 if prev.starts_with(&sysroot) {
737                     continue
738                 }
739             }
740             *slot = Some((hash, metadata));
741             ret = Some((lib, kind));
742         }
743
744         if error > 0 {
745             err.unwrap().emit();
746             None
747         } else {
748             ret
749         }
750     }
751
752     fn crate_matches(&mut self, metadata: &MetadataBlob, libpath: &Path) -> Option<Svh> {
753         let rustc_version = rustc_version();
754         let found_version = metadata.get_rustc_version();
755         if found_version != rustc_version {
756             info!("Rejecting via version: expected {} got {}",
757                   rustc_version,
758                   found_version);
759             self.rejected_via_version.push(CrateMismatch {
760                 path: libpath.to_path_buf(),
761                 got: found_version,
762             });
763             return None;
764         }
765
766         let root = metadata.get_root();
767         if let Some(expected_is_proc_macro) = self.is_proc_macro {
768             let is_proc_macro = root.is_proc_macro_crate();
769             if is_proc_macro != expected_is_proc_macro {
770                 info!("Rejecting via proc macro: expected {} got {}",
771                       expected_is_proc_macro, is_proc_macro);
772                 return None;
773             }
774         }
775
776         if self.exact_paths.is_empty() {
777             if self.crate_name != root.name {
778                 info!("Rejecting via crate name");
779                 return None;
780             }
781         }
782
783         if root.triple != self.triple {
784             info!("Rejecting via crate triple: expected {} got {}",
785                   self.triple,
786                   root.triple);
787             self.rejected_via_triple.push(CrateMismatch {
788                 path: libpath.to_path_buf(),
789                 got: root.triple.to_string(),
790             });
791             return None;
792         }
793
794         if let Some(myhash) = self.hash {
795             if *myhash != root.hash {
796                 info!("Rejecting via hash: expected {} got {}", *myhash, root.hash);
797                 self.rejected_via_hash.push(CrateMismatch {
798                     path: libpath.to_path_buf(),
799                     got: myhash.to_string(),
800                 });
801                 return None;
802             }
803         }
804
805         Some(root.hash)
806     }
807
808
809     // Returns the corresponding (prefix, suffix) that files need to have for
810     // dynamic libraries
811     fn dylibname(&self) -> (String, String) {
812         let t = &self.target;
813         (t.options.dll_prefix.clone(), t.options.dll_suffix.clone())
814     }
815
816     // Returns the corresponding (prefix, suffix) that files need to have for
817     // static libraries
818     fn staticlibname(&self) -> (String, String) {
819         let t = &self.target;
820         (t.options.staticlib_prefix.clone(), t.options.staticlib_suffix.clone())
821     }
822
823     fn find_commandline_library(&mut self) -> Option<Library> {
824         // First, filter out all libraries that look suspicious. We only accept
825         // files which actually exist that have the correct naming scheme for
826         // rlibs/dylibs.
827         let sess = self.sess;
828         let dylibname = self.dylibname();
829         let mut rlibs = FxHashMap::default();
830         let mut rmetas = FxHashMap::default();
831         let mut dylibs = FxHashMap::default();
832         {
833                 let crate_name = self.crate_name;
834                 let rejected_via_filename = &mut self.rejected_via_filename;
835                 let locs = self.exact_paths.iter().filter(|loc| {
836                 if !loc.exists() {
837                     sess.err(&format!("extern location for {} does not exist: {}",
838                                       crate_name,
839                                       loc.display()));
840                     return false;
841                 }
842                 let file = match loc.file_name().and_then(|s| s.to_str()) {
843                     Some(file) => file,
844                     None => {
845                         sess.err(&format!("extern location for {} is not a file: {}",
846                                           crate_name,
847                                           loc.display()));
848                         return false;
849                     }
850                 };
851                 if file.starts_with("lib") &&
852                    (file.ends_with(".rlib") || file.ends_with(".rmeta")) {
853                     return true;
854                 } else {
855                     let (ref prefix, ref suffix) = dylibname;
856                     if file.starts_with(&prefix[..]) && file.ends_with(&suffix[..]) {
857                         return true;
858                     }
859                 }
860
861                 rejected_via_filename.push(CrateMismatch {
862                     path: (*loc).clone(),
863                     got: String::new(),
864                 });
865
866                 false
867             });
868
869             // Now that we have an iterator of good candidates, make sure
870             // there's at most one rlib and at most one dylib.
871             for loc in locs {
872                 if loc.file_name().unwrap().to_str().unwrap().ends_with(".rlib") {
873                     rlibs.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
874                 } else if loc.file_name().unwrap().to_str().unwrap().ends_with(".rmeta") {
875                     rmetas.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
876                 } else {
877                     dylibs.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
878                 }
879             }
880         };
881
882         // Extract the dylib/rlib/rmeta triple.
883         self.extract_lib(rlibs, rmetas, dylibs).map(|(_, lib)| lib)
884     }
885 }
886
887 // Just a small wrapper to time how long reading metadata takes.
888 fn get_metadata_section(target: &Target,
889                         flavor: CrateFlavor,
890                         filename: &Path,
891                         loader: &dyn MetadataLoader)
892                         -> Result<MetadataBlob, String> {
893     let start = Instant::now();
894     let ret = get_metadata_section_imp(target, flavor, filename, loader);
895     info!("reading {:?} => {:?}",
896           filename.file_name().unwrap(),
897           start.elapsed());
898     return ret;
899 }
900
901 /// A trivial wrapper for `Mmap` that implements `StableDeref`.
902 struct StableDerefMmap(memmap::Mmap);
903
904 impl Deref for StableDerefMmap {
905     type Target = [u8];
906
907     fn deref(&self) -> &[u8] {
908         self.0.deref()
909     }
910 }
911
912 unsafe impl stable_deref_trait::StableDeref for StableDerefMmap {}
913
914 fn get_metadata_section_imp(target: &Target,
915                             flavor: CrateFlavor,
916                             filename: &Path,
917                             loader: &dyn MetadataLoader)
918                             -> Result<MetadataBlob, String> {
919     if !filename.exists() {
920         return Err(format!("no such file: '{}'", filename.display()));
921     }
922     let raw_bytes: MetadataRef = match flavor {
923         CrateFlavor::Rlib => loader.get_rlib_metadata(target, filename)?,
924         CrateFlavor::Dylib => {
925             let buf = loader.get_dylib_metadata(target, filename)?;
926             // The header is uncompressed
927             let header_len = METADATA_HEADER.len();
928             debug!("checking {} bytes of metadata-version stamp", header_len);
929             let header = &buf[..cmp::min(header_len, buf.len())];
930             if header != METADATA_HEADER {
931                 return Err(format!("incompatible metadata version found: '{}'",
932                                    filename.display()));
933             }
934
935             // Header is okay -> inflate the actual metadata
936             let compressed_bytes = &buf[header_len..];
937             debug!("inflating {} bytes of compressed metadata", compressed_bytes.len());
938             let mut inflated = Vec::new();
939             match DeflateDecoder::new(compressed_bytes).read_to_end(&mut inflated) {
940                 Ok(_) => {
941                     rustc_erase_owner!(OwningRef::new(inflated).map_owner_box())
942                 }
943                 Err(_) => {
944                     return Err(format!("failed to decompress metadata: {}", filename.display()));
945                 }
946             }
947         }
948         CrateFlavor::Rmeta => {
949             // mmap the file, because only a small fraction of it is read.
950             let file = std::fs::File::open(filename).map_err(|_|
951                 format!("failed to open rmeta metadata: '{}'", filename.display()))?;
952             let mmap = unsafe { memmap::Mmap::map(&file) };
953             let mmap = mmap.map_err(|_|
954                 format!("failed to mmap rmeta metadata: '{}'", filename.display()))?;
955
956             rustc_erase_owner!(OwningRef::new(StableDerefMmap(mmap)).map_owner_box())
957         }
958     };
959     let blob = MetadataBlob::new(raw_bytes);
960     if blob.is_compatible() {
961         Ok(blob)
962     } else {
963         Err(format!("incompatible metadata version found: '{}'", filename.display()))
964     }
965 }
966
967 /// Look for a plugin registrar. Returns its library path and crate disambiguator.
968 pub fn find_plugin_registrar(
969     sess: &Session,
970     metadata_loader: &dyn MetadataLoader,
971     span: Span,
972     name: Symbol,
973 ) -> Option<(PathBuf, CrateDisambiguator)> {
974     info!("find plugin registrar `{}`", name);
975     let target_triple = sess.opts.target_triple.clone();
976     let host_triple = TargetTriple::from_triple(config::host_triple());
977     let is_cross = target_triple != host_triple;
978     let mut target_only = false;
979     let mut locator = CrateLocator::new(
980         sess,
981         metadata_loader,
982         name,
983         None, // hash
984         None, // host_hash
985         None, // extra_filename
986         true, // is_host
987         PathKind::Crate,
988         span,
989         None, // root
990         None, // is_proc_macro
991     );
992
993     let library = locator.maybe_load_library_crate().or_else(|| {
994         if !is_cross {
995             return None
996         }
997         // Try loading from target crates. This will abort later if we
998         // try to load a plugin registrar function,
999         target_only = true;
1000
1001         locator.target = &sess.target.target;
1002         locator.triple = target_triple;
1003         locator.filesearch = sess.target_filesearch(PathKind::Crate);
1004
1005         locator.maybe_load_library_crate()
1006     });
1007     let library = match library {
1008         Some(l) => l,
1009         None => locator.report_errs(),
1010     };
1011
1012     if target_only {
1013         // Need to abort before syntax expansion.
1014         let message = format!("plugin `{}` is not available for triple `{}` \
1015                                 (only found {})",
1016                                 name,
1017                                 config::host_triple(),
1018                                 sess.opts.target_triple);
1019         span_fatal!(sess, span, E0456, "{}", &message);
1020     }
1021
1022     match library.source.dylib {
1023         Some(dylib) => {
1024             Some((dylib.0, library.metadata.get_root().disambiguator))
1025         }
1026         None => {
1027             span_err!(sess, span, E0457,
1028                         "plugin `{}` only found in rlib format, but must be available \
1029                         in dylib format",
1030                         name);
1031             // No need to abort because the loading code will just ignore this
1032             // empty dylib.
1033             None
1034         }
1035     }
1036 }
1037
1038 /// A diagnostic function for dumping crate metadata to an output stream.
1039 pub fn list_file_metadata(target: &Target,
1040                           path: &Path,
1041                           metadata_loader: &dyn MetadataLoader,
1042                           out: &mut dyn io::Write)
1043                           -> io::Result<()> {
1044     let filename = path.file_name().unwrap().to_str().unwrap();
1045     let flavor = if filename.ends_with(".rlib") {
1046         CrateFlavor::Rlib
1047     } else if filename.ends_with(".rmeta") {
1048         CrateFlavor::Rmeta
1049     } else {
1050         CrateFlavor::Dylib
1051     };
1052     match get_metadata_section(target, flavor, path, metadata_loader) {
1053         Ok(metadata) => metadata.list_crate_metadata(out),
1054         Err(msg) => write!(out, "{}\n", msg),
1055     }
1056 }