]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/locator.rs
Rollup merge of #55901 - euclio:speling, r=petrochenkov
[rust.git] / src / librustc_metadata / locator.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Finds crate binaries and loads their metadata
12 //!
13 //! Might I be the first to welcome you to a world of platform differences,
14 //! version requirements, dependency graphs, conflicting desires, and fun! This
15 //! is the major guts (along with metadata::creader) of the compiler for loading
16 //! crates and resolving dependencies. Let's take a tour!
17 //!
18 //! # The problem
19 //!
20 //! Each invocation of the compiler is immediately concerned with one primary
21 //! problem, to connect a set of crates to resolved crates on the filesystem.
22 //! Concretely speaking, the compiler follows roughly these steps to get here:
23 //!
24 //! 1. Discover a set of `extern crate` statements.
25 //! 2. Transform these directives into crate names. If the directive does not
26 //!    have an explicit name, then the identifier is the name.
27 //! 3. For each of these crate names, find a corresponding crate on the
28 //!    filesystem.
29 //!
30 //! Sounds easy, right? Let's walk into some of the nuances.
31 //!
32 //! ## Transitive Dependencies
33 //!
34 //! Let's say we've got three crates: A, B, and C. A depends on B, and B depends
35 //! on C. When we're compiling A, we primarily need to find and locate B, but we
36 //! also end up needing to find and locate C as well.
37 //!
38 //! The reason for this is that any of B's types could be composed of C's types,
39 //! any function in B could return a type from C, etc. To be able to guarantee
40 //! that we can always typecheck/translate any function, we have to have
41 //! complete knowledge of the whole ecosystem, not just our immediate
42 //! dependencies.
43 //!
44 //! So now as part of the "find a corresponding crate on the filesystem" step
45 //! above, this involves also finding all crates for *all upstream
46 //! dependencies*. This includes all dependencies transitively.
47 //!
48 //! ## Rlibs and Dylibs
49 //!
50 //! The compiler has two forms of intermediate dependencies. These are dubbed
51 //! rlibs and dylibs for the static and dynamic variants, respectively. An rlib
52 //! is a rustc-defined file format (currently just an ar archive) while a dylib
53 //! is a platform-defined dynamic library. Each library has a metadata somewhere
54 //! inside of it.
55 //!
56 //! A third kind of dependency is an rmeta file. These are metadata files and do
57 //! not contain any code, etc. To a first approximation, these are treated in the
58 //! same way as rlibs. Where there is both an rlib and an rmeta file, the rlib
59 //! gets priority (even if the rmeta file is newer). An rmeta file is only
60 //! useful for checking a downstream crate, attempting to link one will cause an
61 //! error.
62 //!
63 //! When translating a crate name to a crate on the filesystem, we all of a
64 //! sudden need to take into account both rlibs and dylibs! Linkage later on may
65 //! use either one of these files, as each has their pros/cons. The job of crate
66 //! loading is to discover what's possible by finding all candidates.
67 //!
68 //! Most parts of this loading systems keep the dylib/rlib as just separate
69 //! variables.
70 //!
71 //! ## Where to look?
72 //!
73 //! We can't exactly scan your whole hard drive when looking for dependencies,
74 //! so we need to places to look. Currently the compiler will implicitly add the
75 //! target lib search path ($prefix/lib/rustlib/$target/lib) to any compilation,
76 //! and otherwise all -L flags are added to the search paths.
77 //!
78 //! ## What criterion to select on?
79 //!
80 //! This a pretty tricky area of loading crates. Given a file, how do we know
81 //! whether it's the right crate? Currently, the rules look along these lines:
82 //!
83 //! 1. Does the filename match an rlib/dylib pattern? That is to say, does the
84 //!    filename have the right prefix/suffix?
85 //! 2. Does the filename have the right prefix for the crate name being queried?
86 //!    This is filtering for files like `libfoo*.rlib` and such. If the crate
87 //!    we're looking for was originally compiled with -C extra-filename, the
88 //!    extra filename will be included in this prefix to reduce reading
89 //!    metadata from crates that would otherwise share our prefix.
90 //! 3. Is the file an actual rust library? This is done by loading the metadata
91 //!    from the library and making sure it's actually there.
92 //! 4. Does the name in the metadata agree with the name of the library?
93 //! 5. Does the target in the metadata agree with the current target?
94 //! 6. Does the SVH match? (more on this later)
95 //!
96 //! If the file answers `yes` to all these questions, then the file is
97 //! considered as being *candidate* for being accepted. It is illegal to have
98 //! more than two candidates as the compiler has no method by which to resolve
99 //! this conflict. Additionally, rlib/dylib candidates are considered
100 //! separately.
101 //!
102 //! After all this has happened, we have 1 or two files as candidates. These
103 //! represent the rlib/dylib file found for a library, and they're returned as
104 //! being found.
105 //!
106 //! ### What about versions?
107 //!
108 //! A lot of effort has been put forth to remove versioning from the compiler.
109 //! There have been forays in the past to have versioning baked in, but it was
110 //! largely always deemed insufficient to the point that it was recognized that
111 //! it's probably something the compiler shouldn't do anyway due to its
112 //! complicated nature and the state of the half-baked solutions.
113 //!
114 //! With a departure from versioning, the primary criterion for loading crates
115 //! is just the name of a crate. If we stopped here, it would imply that you
116 //! could never link two crates of the same name from different sources
117 //! together, which is clearly a bad state to be in.
118 //!
119 //! To resolve this problem, we come to the next section!
120 //!
121 //! # Expert Mode
122 //!
123 //! A number of flags have been added to the compiler to solve the "version
124 //! problem" in the previous section, as well as generally enabling more
125 //! powerful usage of the crate loading system of the compiler. The goal of
126 //! these flags and options are to enable third-party tools to drive the
127 //! compiler with prior knowledge about how the world should look.
128 //!
129 //! ## The `--extern` flag
130 //!
131 //! The compiler accepts a flag of this form a number of times:
132 //!
133 //! ```text
134 //! --extern crate-name=path/to/the/crate.rlib
135 //! ```
136 //!
137 //! This flag is basically the following letter to the compiler:
138 //!
139 //! > Dear rustc,
140 //! >
141 //! > When you are attempting to load the immediate dependency `crate-name`, I
142 //! > would like you to assume that the library is located at
143 //! > `path/to/the/crate.rlib`, and look nowhere else. Also, please do not
144 //! > assume that the path I specified has the name `crate-name`.
145 //!
146 //! This flag basically overrides most matching logic except for validating that
147 //! the file is indeed a rust library. The same `crate-name` can be specified
148 //! twice to specify the rlib/dylib pair.
149 //!
150 //! ## Enabling "multiple versions"
151 //!
152 //! This basically boils down to the ability to specify arbitrary packages to
153 //! the compiler. For example, if crate A wanted to use Bv1 and Bv2, then it
154 //! would look something like:
155 //!
156 //! ```compile_fail,E0463
157 //! extern crate b1;
158 //! extern crate b2;
159 //!
160 //! fn main() {}
161 //! ```
162 //!
163 //! and the compiler would be invoked as:
164 //!
165 //! ```text
166 //! rustc a.rs --extern b1=path/to/libb1.rlib --extern b2=path/to/libb2.rlib
167 //! ```
168 //!
169 //! In this scenario there are two crates named `b` and the compiler must be
170 //! manually driven to be informed where each crate is.
171 //!
172 //! ## Frobbing symbols
173 //!
174 //! One of the immediate problems with linking the same library together twice
175 //! in the same problem is dealing with duplicate symbols. The primary way to
176 //! deal with this in rustc is to add hashes to the end of each symbol.
177 //!
178 //! In order to force hashes to change between versions of a library, if
179 //! desired, the compiler exposes an option `-C metadata=foo`, which is used to
180 //! initially seed each symbol hash. The string `foo` is prepended to each
181 //! string-to-hash to ensure that symbols change over time.
182 //!
183 //! ## Loading transitive dependencies
184 //!
185 //! Dealing with same-named-but-distinct crates is not just a local problem, but
186 //! one that also needs to be dealt with for transitive dependencies. Note that
187 //! in the letter above `--extern` flags only apply to the *local* set of
188 //! dependencies, not the upstream transitive dependencies. Consider this
189 //! dependency graph:
190 //!
191 //! ```text
192 //! A.1   A.2
193 //! |     |
194 //! |     |
195 //! B     C
196 //!  \   /
197 //!   \ /
198 //!    D
199 //! ```
200 //!
201 //! In this scenario, when we compile `D`, we need to be able to distinctly
202 //! resolve `A.1` and `A.2`, but an `--extern` flag cannot apply to these
203 //! transitive dependencies.
204 //!
205 //! Note that the key idea here is that `B` and `C` are both *already compiled*.
206 //! That is, they have already resolved their dependencies. Due to unrelated
207 //! technical reasons, when a library is compiled, it is only compatible with
208 //! the *exact same* version of the upstream libraries it was compiled against.
209 //! We use the "Strict Version Hash" to identify the exact copy of an upstream
210 //! library.
211 //!
212 //! With this knowledge, we know that `B` and `C` will depend on `A` with
213 //! different SVH values, so we crawl the normal `-L` paths looking for
214 //! `liba*.rlib` and filter based on the contained SVH.
215 //!
216 //! In the end, this ends up not needing `--extern` to specify upstream
217 //! transitive dependencies.
218 //!
219 //! # Wrapping up
220 //!
221 //! That's the general overview of loading crates in the compiler, but it's by
222 //! no means all of the necessary details. Take a look at the rest of
223 //! metadata::locator or metadata::creader for all the juicy details!
224
225 use cstore::{MetadataRef, MetadataBlob};
226 use creader::Library;
227 use schema::{METADATA_HEADER, rustc_version};
228
229 use rustc_data_structures::fx::FxHashSet;
230 use rustc_data_structures::svh::Svh;
231 use rustc::middle::cstore::MetadataLoader;
232 use rustc::session::{config, Session};
233 use rustc::session::filesearch::{FileSearch, FileMatches, FileDoesntMatch};
234 use rustc::session::search_paths::PathKind;
235 use rustc::util::nodemap::FxHashMap;
236
237 use errors::DiagnosticBuilder;
238 use syntax::symbol::Symbol;
239 use syntax_pos::Span;
240 use rustc_target::spec::{Target, TargetTriple};
241
242 use std::cmp;
243 use std::fmt;
244 use std::fs;
245 use std::io::{self, Read};
246 use std::ops::Deref;
247 use std::path::{Path, PathBuf};
248 use std::time::Instant;
249
250 use flate2::read::DeflateDecoder;
251
252 use rustc_data_structures::owning_ref::OwningRef;
253
254 pub struct CrateMismatch {
255     path: PathBuf,
256     got: String,
257 }
258
259 pub struct Context<'a> {
260     pub sess: &'a Session,
261     pub span: Span,
262     pub ident: Symbol,
263     pub crate_name: Symbol,
264     pub hash: Option<&'a Svh>,
265     pub extra_filename: Option<&'a str>,
266     // points to either self.sess.target.target or self.sess.host, must match triple
267     pub target: &'a Target,
268     pub triple: &'a TargetTriple,
269     pub filesearch: FileSearch<'a>,
270     pub root: &'a Option<CratePaths>,
271     pub rejected_via_hash: Vec<CrateMismatch>,
272     pub rejected_via_triple: Vec<CrateMismatch>,
273     pub rejected_via_kind: Vec<CrateMismatch>,
274     pub rejected_via_version: Vec<CrateMismatch>,
275     pub rejected_via_filename: Vec<CrateMismatch>,
276     pub should_match_name: bool,
277     pub is_proc_macro: Option<bool>,
278     pub metadata_loader: &'a dyn MetadataLoader,
279 }
280
281 pub struct CratePaths {
282     pub ident: String,
283     pub dylib: Option<PathBuf>,
284     pub rlib: Option<PathBuf>,
285     pub rmeta: Option<PathBuf>,
286 }
287
288 #[derive(Copy, Clone, PartialEq)]
289 enum CrateFlavor {
290     Rlib,
291     Rmeta,
292     Dylib,
293 }
294
295 impl fmt::Display for CrateFlavor {
296     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
297         f.write_str(match *self {
298             CrateFlavor::Rlib => "rlib",
299             CrateFlavor::Rmeta => "rmeta",
300             CrateFlavor::Dylib => "dylib",
301         })
302     }
303 }
304
305 impl CratePaths {
306     fn paths(&self) -> Vec<PathBuf> {
307         self.dylib.iter().chain(self.rlib.iter()).chain(self.rmeta.iter()).cloned().collect()
308     }
309 }
310
311 impl<'a> Context<'a> {
312     pub fn maybe_load_library_crate(&mut self) -> Option<Library> {
313         let mut seen_paths = FxHashSet::default();
314         match self.extra_filename {
315             Some(s) => self.find_library_crate(s, &mut seen_paths)
316                 .or_else(|| self.find_library_crate("", &mut seen_paths)),
317             None => self.find_library_crate("", &mut seen_paths)
318         }
319     }
320
321     pub fn report_errs(&mut self) -> ! {
322         let add = match self.root {
323             &None => String::new(),
324             &Some(ref r) => format!(" which `{}` depends on", r.ident),
325         };
326         let mut msg = "the following crate versions were found:".to_string();
327         let mut err = if !self.rejected_via_hash.is_empty() {
328             let mut err = struct_span_err!(self.sess,
329                                            self.span,
330                                            E0460,
331                                            "found possibly newer version of crate `{}`{}",
332                                            self.ident,
333                                            add);
334             err.note("perhaps that crate needs to be recompiled?");
335             let mismatches = self.rejected_via_hash.iter();
336             for &CrateMismatch { ref path, .. } in mismatches {
337                 msg.push_str(&format!("\ncrate `{}`: {}", self.ident, path.display()));
338             }
339             match self.root {
340                 &None => {}
341                 &Some(ref r) => {
342                     for path in r.paths().iter() {
343                         msg.push_str(&format!("\ncrate `{}`: {}", r.ident, path.display()));
344                     }
345                 }
346             }
347             err.note(&msg);
348             err
349         } else if !self.rejected_via_triple.is_empty() {
350             let mut err = struct_span_err!(self.sess,
351                                            self.span,
352                                            E0461,
353                                            "couldn't find crate `{}` \
354                                             with expected target triple {}{}",
355                                            self.ident,
356                                            self.triple,
357                                            add);
358             let mismatches = self.rejected_via_triple.iter();
359             for &CrateMismatch { ref path, ref got } in mismatches {
360                 msg.push_str(&format!("\ncrate `{}`, target triple {}: {}",
361                                       self.ident,
362                                       got,
363                                       path.display()));
364             }
365             err.note(&msg);
366             err
367         } else if !self.rejected_via_kind.is_empty() {
368             let mut err = struct_span_err!(self.sess,
369                                            self.span,
370                                            E0462,
371                                            "found staticlib `{}` instead of rlib or dylib{}",
372                                            self.ident,
373                                            add);
374             err.help("please recompile that crate using --crate-type lib");
375             let mismatches = self.rejected_via_kind.iter();
376             for &CrateMismatch { ref path, .. } in mismatches {
377                 msg.push_str(&format!("\ncrate `{}`: {}", self.ident, path.display()));
378             }
379             err.note(&msg);
380             err
381         } else if !self.rejected_via_version.is_empty() {
382             let mut err = struct_span_err!(self.sess,
383                                            self.span,
384                                            E0514,
385                                            "found crate `{}` compiled by an incompatible version \
386                                             of rustc{}",
387                                            self.ident,
388                                            add);
389             err.help(&format!("please recompile that crate using this compiler ({})",
390                               rustc_version()));
391             let mismatches = self.rejected_via_version.iter();
392             for &CrateMismatch { ref path, ref got } in mismatches {
393                 msg.push_str(&format!("\ncrate `{}` compiled by {}: {}",
394                                       self.ident,
395                                       got,
396                                       path.display()));
397             }
398             err.note(&msg);
399             err
400         } else {
401             let mut err = struct_span_err!(self.sess,
402                                            self.span,
403                                            E0463,
404                                            "can't find crate for `{}`{}",
405                                            self.ident,
406                                            add);
407
408             if (self.ident == "std" || self.ident == "core")
409                 && self.triple != &TargetTriple::from_triple(config::host_triple()) {
410                 err.note(&format!("the `{}` target may not be installed", self.triple));
411             }
412             err.span_label(self.span, "can't find crate");
413             err
414         };
415
416         if !self.rejected_via_filename.is_empty() {
417             let dylibname = self.dylibname();
418             let mismatches = self.rejected_via_filename.iter();
419             for &CrateMismatch { ref path, .. } in mismatches {
420                 err.note(&format!("extern location for {} is of an unknown type: {}",
421                                   self.crate_name,
422                                   path.display()))
423                    .help(&format!("file name should be lib*.rlib or {}*.{}",
424                                   dylibname.0,
425                                   dylibname.1));
426             }
427         }
428
429         err.emit();
430         self.sess.abort_if_errors();
431         unreachable!();
432     }
433
434     fn find_library_crate(&mut self,
435                           extra_prefix: &str,
436                           seen_paths: &mut FxHashSet<PathBuf>)
437                           -> Option<Library> {
438         // If an SVH is specified, then this is a transitive dependency that
439         // must be loaded via -L plus some filtering.
440         if self.hash.is_none() {
441             self.should_match_name = false;
442             if let Some(s) = self.sess.opts.externs.get(&self.crate_name.as_str()) {
443                 // Only use `--extern crate_name=path` here, not `--extern crate_name`.
444                 if s.iter().any(|l| l.is_some()) {
445                     return self.find_commandline_library(
446                         s.iter().filter_map(|l| l.as_ref()),
447                     );
448                 }
449             }
450             self.should_match_name = true;
451         }
452
453         let dypair = self.dylibname();
454         let staticpair = self.staticlibname();
455
456         // want: crate_name.dir_part() + prefix + crate_name.file_part + "-"
457         let dylib_prefix = format!("{}{}{}", dypair.0, self.crate_name, extra_prefix);
458         let rlib_prefix = format!("lib{}{}", self.crate_name, extra_prefix);
459         let staticlib_prefix = format!("{}{}{}", staticpair.0, self.crate_name, extra_prefix);
460
461         let mut candidates: FxHashMap<
462             _,
463             (FxHashMap<_, _>, FxHashMap<_, _>, FxHashMap<_, _>),
464         > = Default::default();
465         let mut staticlibs = vec![];
466
467         // First, find all possible candidate rlibs and dylibs purely based on
468         // the name of the files themselves. We're trying to match against an
469         // exact crate name and a possibly an exact hash.
470         //
471         // During this step, we can filter all found libraries based on the
472         // name and id found in the crate id (we ignore the path portion for
473         // filename matching), as well as the exact hash (if specified). If we
474         // end up having many candidates, we must look at the metadata to
475         // perform exact matches against hashes/crate ids. Note that opening up
476         // the metadata is where we do an exact match against the full contents
477         // of the crate id (path/name/id).
478         //
479         // The goal of this step is to look at as little metadata as possible.
480         self.filesearch.search(|path, kind| {
481             let file = match path.file_name().and_then(|s| s.to_str()) {
482                 None => return FileDoesntMatch,
483                 Some(file) => file,
484             };
485             let (hash, found_kind) =
486                 if file.starts_with(&rlib_prefix) && file.ends_with(".rlib") {
487                     (&file[(rlib_prefix.len())..(file.len() - ".rlib".len())], CrateFlavor::Rlib)
488                 } else if file.starts_with(&rlib_prefix) && file.ends_with(".rmeta") {
489                     (&file[(rlib_prefix.len())..(file.len() - ".rmeta".len())], CrateFlavor::Rmeta)
490                 } else if file.starts_with(&dylib_prefix) &&
491                                              file.ends_with(&dypair.1) {
492                     (&file[(dylib_prefix.len())..(file.len() - dypair.1.len())], CrateFlavor::Dylib)
493                 } else {
494                     if file.starts_with(&staticlib_prefix) && file.ends_with(&staticpair.1) {
495                         staticlibs.push(CrateMismatch {
496                             path: path.to_path_buf(),
497                             got: "static".to_string(),
498                         });
499                     }
500                     return FileDoesntMatch;
501                 };
502
503             info!("lib candidate: {}", path.display());
504
505             let hash_str = hash.to_string();
506             let slot = candidates.entry(hash_str).or_default();
507             let (ref mut rlibs, ref mut rmetas, ref mut dylibs) = *slot;
508             fs::canonicalize(path)
509                 .map(|p| {
510                     if seen_paths.contains(&p) {
511                         return FileDoesntMatch
512                     };
513                     seen_paths.insert(p.clone());
514                     match found_kind {
515                         CrateFlavor::Rlib => { rlibs.insert(p, kind); }
516                         CrateFlavor::Rmeta => { rmetas.insert(p, kind); }
517                         CrateFlavor::Dylib => { dylibs.insert(p, kind); }
518                     }
519                     FileMatches
520                 })
521                 .unwrap_or(FileDoesntMatch)
522         });
523         self.rejected_via_kind.extend(staticlibs);
524
525         // We have now collected all known libraries into a set of candidates
526         // keyed of the filename hash listed. For each filename, we also have a
527         // list of rlibs/dylibs that apply. Here, we map each of these lists
528         // (per hash), to a Library candidate for returning.
529         //
530         // A Library candidate is created if the metadata for the set of
531         // libraries corresponds to the crate id and hash criteria that this
532         // search is being performed for.
533         let mut libraries = FxHashMap::default();
534         for (_hash, (rlibs, rmetas, dylibs)) in candidates {
535             let mut slot = None;
536             let rlib = self.extract_one(rlibs, CrateFlavor::Rlib, &mut slot);
537             let rmeta = self.extract_one(rmetas, CrateFlavor::Rmeta, &mut slot);
538             let dylib = self.extract_one(dylibs, CrateFlavor::Dylib, &mut slot);
539             if let Some((h, m)) = slot {
540                 libraries.insert(h,
541                                  Library {
542                                      dylib,
543                                      rlib,
544                                      rmeta,
545                                      metadata: m,
546                                  });
547             }
548         }
549
550         // Having now translated all relevant found hashes into libraries, see
551         // what we've got and figure out if we found multiple candidates for
552         // libraries or not.
553         match libraries.len() {
554             0 => None,
555             1 => Some(libraries.into_iter().next().unwrap().1),
556             _ => {
557                 let mut err = struct_span_err!(self.sess,
558                                                self.span,
559                                                E0464,
560                                                "multiple matching crates for `{}`",
561                                                self.crate_name);
562                 let candidates = libraries.iter().filter_map(|(_, lib)| {
563                     let crate_name = &lib.metadata.get_root().name.as_str();
564                     match &(&lib.dylib, &lib.rlib) {
565                         &(&Some((ref pd, _)), &Some((ref pr, _))) => {
566                             Some(format!("\ncrate `{}`: {}\n{:>padding$}",
567                                          crate_name,
568                                          pd.display(),
569                                          pr.display(),
570                                          padding=8 + crate_name.len()))
571                         }
572                         &(&Some((ref p, _)), &None) | &(&None, &Some((ref p, _))) => {
573                             Some(format!("\ncrate `{}`: {}", crate_name, p.display()))
574                         }
575                         &(&None, &None) => None,
576                     }
577                 }).collect::<String>();
578                 err.note(&format!("candidates:{}", candidates));
579                 err.emit();
580                 None
581             }
582         }
583     }
584
585     // Attempts to extract *one* library from the set `m`. If the set has no
586     // elements, `None` is returned. If the set has more than one element, then
587     // the errors and notes are emitted about the set of libraries.
588     //
589     // With only one library in the set, this function will extract it, and then
590     // read the metadata from it if `*slot` is `None`. If the metadata couldn't
591     // be read, it is assumed that the file isn't a valid rust library (no
592     // errors are emitted).
593     fn extract_one(&mut self,
594                    m: FxHashMap<PathBuf, PathKind>,
595                    flavor: CrateFlavor,
596                    slot: &mut Option<(Svh, MetadataBlob)>)
597                    -> Option<(PathBuf, PathKind)> {
598         let mut ret: Option<(PathBuf, PathKind)> = None;
599         let mut error = 0;
600
601         if slot.is_some() {
602             // FIXME(#10786): for an optimization, we only read one of the
603             //                libraries' metadata sections. In theory we should
604             //                read both, but reading dylib metadata is quite
605             //                slow.
606             if m.is_empty() {
607                 return None;
608             } else if m.len() == 1 {
609                 return Some(m.into_iter().next().unwrap());
610             }
611         }
612
613         let mut err: Option<DiagnosticBuilder> = None;
614         for (lib, kind) in m {
615             info!("{} reading metadata from: {}", flavor, lib.display());
616             let (hash, metadata) =
617                 match get_metadata_section(self.target, flavor, &lib, self.metadata_loader) {
618                     Ok(blob) => {
619                         if let Some(h) = self.crate_matches(&blob, &lib) {
620                             (h, blob)
621                         } else {
622                             info!("metadata mismatch");
623                             continue;
624                         }
625                     }
626                     Err(err) => {
627                         warn!("no metadata found: {}", err);
628                         continue;
629                     }
630                 };
631             // If we see multiple hashes, emit an error about duplicate candidates.
632             if slot.as_ref().map_or(false, |s| s.0 != hash) {
633                 let mut e = struct_span_err!(self.sess,
634                                              self.span,
635                                              E0465,
636                                              "multiple {} candidates for `{}` found",
637                                              flavor,
638                                              self.crate_name);
639                 e.span_note(self.span,
640                             &format!(r"candidate #1: {}",
641                                      ret.as_ref()
642                                          .unwrap()
643                                          .0
644                                          .display()));
645                 if let Some(ref mut e) = err {
646                     e.emit();
647                 }
648                 err = Some(e);
649                 error = 1;
650                 *slot = None;
651             }
652             if error > 0 {
653                 error += 1;
654                 err.as_mut().unwrap().span_note(self.span,
655                                                 &format!(r"candidate #{}: {}",
656                                                          error,
657                                                          lib.display()));
658                 continue;
659             }
660
661             // Ok so at this point we've determined that `(lib, kind)` above is
662             // a candidate crate to load, and that `slot` is either none (this
663             // is the first crate of its kind) or if some the previous path has
664             // the exact same hash (e.g. it's the exact same crate).
665             //
666             // In principle these two candidate crates are exactly the same so
667             // we can choose either of them to link. As a stupidly gross hack,
668             // however, we favor crate in the sysroot.
669             //
670             // You can find more info in rust-lang/rust#39518 and various linked
671             // issues, but the general gist is that during testing libstd the
672             // compilers has two candidates to choose from: one in the sysroot
673             // and one in the deps folder. These two crates are the exact same
674             // crate but if the compiler chooses the one in the deps folder
675             // it'll cause spurious errors on Windows.
676             //
677             // As a result, we favor the sysroot crate here. Note that the
678             // candidates are all canonicalized, so we canonicalize the sysroot
679             // as well.
680             if let Some((ref prev, _)) = ret {
681                 let sysroot = self.sess.sysroot();
682                 let sysroot = sysroot.canonicalize()
683                                      .unwrap_or_else(|_| sysroot.to_path_buf());
684                 if prev.starts_with(&sysroot) {
685                     continue
686                 }
687             }
688             *slot = Some((hash, metadata));
689             ret = Some((lib, kind));
690         }
691
692         if error > 0 {
693             err.unwrap().emit();
694             None
695         } else {
696             ret
697         }
698     }
699
700     fn crate_matches(&mut self, metadata: &MetadataBlob, libpath: &Path) -> Option<Svh> {
701         let rustc_version = rustc_version();
702         let found_version = metadata.get_rustc_version();
703         if found_version != rustc_version {
704             info!("Rejecting via version: expected {} got {}",
705                   rustc_version,
706                   found_version);
707             self.rejected_via_version.push(CrateMismatch {
708                 path: libpath.to_path_buf(),
709                 got: found_version,
710             });
711             return None;
712         }
713
714         let root = metadata.get_root();
715         if let Some(is_proc_macro) = self.is_proc_macro {
716             if root.macro_derive_registrar.is_some() != is_proc_macro {
717                 return None;
718             }
719         }
720
721         if self.should_match_name {
722             if self.crate_name != root.name {
723                 info!("Rejecting via crate name");
724                 return None;
725             }
726         }
727
728         if &root.triple != self.triple {
729             info!("Rejecting via crate triple: expected {} got {}",
730                   self.triple,
731                   root.triple);
732             self.rejected_via_triple.push(CrateMismatch {
733                 path: libpath.to_path_buf(),
734                 got: root.triple.to_string(),
735             });
736             return None;
737         }
738
739         if let Some(myhash) = self.hash {
740             if *myhash != root.hash {
741                 info!("Rejecting via hash: expected {} got {}", *myhash, root.hash);
742                 self.rejected_via_hash.push(CrateMismatch {
743                     path: libpath.to_path_buf(),
744                     got: myhash.to_string(),
745                 });
746                 return None;
747             }
748         }
749
750         Some(root.hash)
751     }
752
753
754     // Returns the corresponding (prefix, suffix) that files need to have for
755     // dynamic libraries
756     fn dylibname(&self) -> (String, String) {
757         let t = &self.target;
758         (t.options.dll_prefix.clone(), t.options.dll_suffix.clone())
759     }
760
761     // Returns the corresponding (prefix, suffix) that files need to have for
762     // static libraries
763     fn staticlibname(&self) -> (String, String) {
764         let t = &self.target;
765         (t.options.staticlib_prefix.clone(), t.options.staticlib_suffix.clone())
766     }
767
768     fn find_commandline_library<'b, LOCS>(&mut self, locs: LOCS) -> Option<Library>
769         where LOCS: Iterator<Item = &'b String>
770     {
771         // First, filter out all libraries that look suspicious. We only accept
772         // files which actually exist that have the correct naming scheme for
773         // rlibs/dylibs.
774         let sess = self.sess;
775         let dylibname = self.dylibname();
776         let mut rlibs = FxHashMap::default();
777         let mut rmetas = FxHashMap::default();
778         let mut dylibs = FxHashMap::default();
779         {
780             let locs = locs.map(|l| PathBuf::from(l)).filter(|loc| {
781                 if !loc.exists() {
782                     sess.err(&format!("extern location for {} does not exist: {}",
783                                       self.crate_name,
784                                       loc.display()));
785                     return false;
786                 }
787                 let file = match loc.file_name().and_then(|s| s.to_str()) {
788                     Some(file) => file,
789                     None => {
790                         sess.err(&format!("extern location for {} is not a file: {}",
791                                           self.crate_name,
792                                           loc.display()));
793                         return false;
794                     }
795                 };
796                 if file.starts_with("lib") &&
797                    (file.ends_with(".rlib") || file.ends_with(".rmeta")) {
798                     return true;
799                 } else {
800                     let (ref prefix, ref suffix) = dylibname;
801                     if file.starts_with(&prefix[..]) && file.ends_with(&suffix[..]) {
802                         return true;
803                     }
804                 }
805
806                 self.rejected_via_filename.push(CrateMismatch {
807                     path: loc.clone(),
808                     got: String::new(),
809                 });
810
811                 false
812             });
813
814             // Now that we have an iterator of good candidates, make sure
815             // there's at most one rlib and at most one dylib.
816             for loc in locs {
817                 if loc.file_name().unwrap().to_str().unwrap().ends_with(".rlib") {
818                     rlibs.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
819                 } else if loc.file_name().unwrap().to_str().unwrap().ends_with(".rmeta") {
820                     rmetas.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
821                 } else {
822                     dylibs.insert(fs::canonicalize(&loc).unwrap(), PathKind::ExternFlag);
823                 }
824             }
825         };
826
827         // Extract the rlib/dylib pair.
828         let mut slot = None;
829         let rlib = self.extract_one(rlibs, CrateFlavor::Rlib, &mut slot);
830         let rmeta = self.extract_one(rmetas, CrateFlavor::Rmeta, &mut slot);
831         let dylib = self.extract_one(dylibs, CrateFlavor::Dylib, &mut slot);
832
833         if rlib.is_none() && rmeta.is_none() && dylib.is_none() {
834             return None;
835         }
836         slot.map(|(_, metadata)|
837             Library {
838                 dylib,
839                 rlib,
840                 rmeta,
841                 metadata,
842             }
843         )
844     }
845 }
846
847 // Just a small wrapper to time how long reading metadata takes.
848 fn get_metadata_section(target: &Target,
849                         flavor: CrateFlavor,
850                         filename: &Path,
851                         loader: &dyn MetadataLoader)
852                         -> Result<MetadataBlob, String> {
853     let start = Instant::now();
854     let ret = get_metadata_section_imp(target, flavor, filename, loader);
855     info!("reading {:?} => {:?}",
856           filename.file_name().unwrap(),
857           start.elapsed());
858     return ret;
859 }
860
861 /// A trivial wrapper for `Mmap` that implements `StableDeref`.
862 struct StableDerefMmap(memmap::Mmap);
863
864 impl Deref for StableDerefMmap {
865     type Target = [u8];
866
867     fn deref(&self) -> &[u8] {
868         self.0.deref()
869     }
870 }
871
872 unsafe impl stable_deref_trait::StableDeref for StableDerefMmap {}
873
874 fn get_metadata_section_imp(target: &Target,
875                             flavor: CrateFlavor,
876                             filename: &Path,
877                             loader: &dyn MetadataLoader)
878                             -> Result<MetadataBlob, String> {
879     if !filename.exists() {
880         return Err(format!("no such file: '{}'", filename.display()));
881     }
882     let raw_bytes: MetadataRef = match flavor {
883         CrateFlavor::Rlib => loader.get_rlib_metadata(target, filename)?,
884         CrateFlavor::Dylib => {
885             let buf = loader.get_dylib_metadata(target, filename)?;
886             // The header is uncompressed
887             let header_len = METADATA_HEADER.len();
888             debug!("checking {} bytes of metadata-version stamp", header_len);
889             let header = &buf[..cmp::min(header_len, buf.len())];
890             if header != METADATA_HEADER {
891                 return Err(format!("incompatible metadata version found: '{}'",
892                                    filename.display()));
893             }
894
895             // Header is okay -> inflate the actual metadata
896             let compressed_bytes = &buf[header_len..];
897             debug!("inflating {} bytes of compressed metadata", compressed_bytes.len());
898             let mut inflated = Vec::new();
899             match DeflateDecoder::new(compressed_bytes).read_to_end(&mut inflated) {
900                 Ok(_) => {
901                     let buf = unsafe { OwningRef::new_assert_stable_address(inflated) };
902                     rustc_erase_owner!(buf.map_owner_box())
903                 }
904                 Err(_) => {
905                     return Err(format!("failed to decompress metadata: {}", filename.display()));
906                 }
907             }
908         }
909         CrateFlavor::Rmeta => {
910             // mmap the file, because only a small fraction of it is read.
911             let file = std::fs::File::open(filename).map_err(|_|
912                 format!("failed to open rmeta metadata: '{}'", filename.display()))?;
913             let mmap = unsafe { memmap::Mmap::map(&file) };
914             let mmap = mmap.map_err(|_|
915                 format!("failed to mmap rmeta metadata: '{}'", filename.display()))?;
916
917             rustc_erase_owner!(OwningRef::new(StableDerefMmap(mmap)).map_owner_box())
918         }
919     };
920     let blob = MetadataBlob(raw_bytes);
921     if blob.is_compatible() {
922         Ok(blob)
923     } else {
924         Err(format!("incompatible metadata version found: '{}'", filename.display()))
925     }
926 }
927
928 // A diagnostic function for dumping crate metadata to an output stream
929 pub fn list_file_metadata(target: &Target,
930                           path: &Path,
931                           loader: &dyn MetadataLoader,
932                           out: &mut dyn io::Write)
933                           -> io::Result<()> {
934     let filename = path.file_name().unwrap().to_str().unwrap();
935     let flavor = if filename.ends_with(".rlib") {
936         CrateFlavor::Rlib
937     } else if filename.ends_with(".rmeta") {
938         CrateFlavor::Rmeta
939     } else {
940         CrateFlavor::Dylib
941     };
942     match get_metadata_section(target, flavor, path, loader) {
943         Ok(metadata) => metadata.list_crate_metadata(out),
944         Err(msg) => write!(out, "{}\n", msg),
945     }
946 }