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