]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/creader.rs
54f09a0f3198dd91c58df7b3689f691441812d8e
[rust.git] / src / librustc_metadata / creader.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 //! Validates all used crates and extern libraries and loads their metadata
12
13 use cstore::{self, CStore, CrateSource, MetadataBlob};
14 use locator::{self, CratePaths};
15 use schema::{CrateRoot, Tracked};
16
17 use rustc::dep_graph::{DepNode, GlobalMetaDataKind};
18 use rustc::hir::def_id::{DefId, CrateNum, DefIndex, CRATE_DEF_INDEX};
19 use rustc::hir::svh::Svh;
20 use rustc::middle::cstore::DepKind;
21 use rustc::session::Session;
22 use rustc::session::config::{Sanitizer, self};
23 use rustc_back::PanicStrategy;
24 use rustc::session::search_paths::PathKind;
25 use rustc::middle;
26 use rustc::middle::cstore::{CrateStore, validate_crate_name, ExternCrate};
27 use rustc::util::common::record_time;
28 use rustc::util::nodemap::FxHashSet;
29 use rustc::middle::cstore::NativeLibrary;
30 use rustc::hir::map::Definitions;
31
32 use std::cell::{RefCell, Cell};
33 use std::ops::Deref;
34 use std::path::PathBuf;
35 use std::rc::Rc;
36 use std::{cmp, fs};
37
38 use syntax::ast;
39 use syntax::abi::Abi;
40 use syntax::attr;
41 use syntax::ext::base::SyntaxExtension;
42 use syntax::feature_gate::{self, GateIssue};
43 use syntax::symbol::Symbol;
44 use syntax_pos::{Span, DUMMY_SP};
45 use log;
46
47 pub struct Library {
48     pub dylib: Option<(PathBuf, PathKind)>,
49     pub rlib: Option<(PathBuf, PathKind)>,
50     pub rmeta: Option<(PathBuf, PathKind)>,
51     pub metadata: MetadataBlob,
52 }
53
54 pub struct CrateLoader<'a> {
55     pub sess: &'a Session,
56     cstore: &'a CStore,
57     next_crate_num: CrateNum,
58     local_crate_name: Symbol,
59 }
60
61 fn dump_crates(cstore: &CStore) {
62     info!("resolved crates:");
63     cstore.iter_crate_data(|_, data| {
64         info!("  name: {}", data.name());
65         info!("  cnum: {}", data.cnum);
66         info!("  hash: {}", data.hash());
67         info!("  reqd: {:?}", data.dep_kind.get());
68         let CrateSource { dylib, rlib, rmeta } = data.source.clone();
69         dylib.map(|dl| info!("  dylib: {}", dl.0.display()));
70         rlib.map(|rl|  info!("   rlib: {}", rl.0.display()));
71         rmeta.map(|rl| info!("   rmeta: {}", rl.0.display()));
72     });
73 }
74
75 #[derive(Debug)]
76 struct ExternCrateInfo {
77     ident: Symbol,
78     name: Symbol,
79     id: ast::NodeId,
80     dep_kind: DepKind,
81 }
82
83 fn register_native_lib(sess: &Session,
84                        cstore: &CStore,
85                        span: Option<Span>,
86                        lib: NativeLibrary) {
87     if lib.name.as_str().is_empty() {
88         match span {
89             Some(span) => {
90                 struct_span_err!(sess, span, E0454,
91                                  "#[link(name = \"\")] given with empty name")
92                     .span_label(span, "empty name given")
93                     .emit();
94             }
95             None => {
96                 sess.err("empty library name given via `-l`");
97             }
98         }
99         return
100     }
101     let is_osx = sess.target.target.options.is_like_osx;
102     if lib.kind == cstore::NativeFramework && !is_osx {
103         let msg = "native frameworks are only available on macOS targets";
104         match span {
105             Some(span) => span_err!(sess, span, E0455, "{}", msg),
106             None => sess.err(msg),
107         }
108     }
109     if lib.cfg.is_some() && !sess.features.borrow().link_cfg {
110         feature_gate::emit_feature_err(&sess.parse_sess,
111                                        "link_cfg",
112                                        span.unwrap(),
113                                        GateIssue::Language,
114                                        "is feature gated");
115     }
116     if lib.kind == cstore::NativeStaticNobundle && !sess.features.borrow().static_nobundle {
117         feature_gate::emit_feature_err(&sess.parse_sess,
118                                        "static_nobundle",
119                                        span.unwrap(),
120                                        GateIssue::Language,
121                                        "kind=\"static-nobundle\" is feature gated");
122     }
123     cstore.add_used_library(lib);
124 }
125
126 fn relevant_lib(sess: &Session, lib: &NativeLibrary) -> bool {
127     match lib.cfg {
128         Some(ref cfg) => attr::cfg_matches(cfg, &sess.parse_sess, None),
129         None => true,
130     }
131 }
132
133 // Extra info about a crate loaded for plugins or exported macros.
134 struct ExtensionCrate {
135     metadata: PMDSource,
136     dylib: Option<PathBuf>,
137     target_only: bool,
138 }
139
140 enum PMDSource {
141     Registered(Rc<cstore::CrateMetadata>),
142     Owned(Library),
143 }
144
145 impl Deref for PMDSource {
146     type Target = MetadataBlob;
147
148     fn deref(&self) -> &MetadataBlob {
149         match *self {
150             PMDSource::Registered(ref cmd) => &cmd.blob,
151             PMDSource::Owned(ref lib) => &lib.metadata
152         }
153     }
154 }
155
156 enum LoadResult {
157     Previous(CrateNum),
158     Loaded(Library),
159 }
160
161 impl<'a> CrateLoader<'a> {
162     pub fn new(sess: &'a Session, cstore: &'a CStore, local_crate_name: &str) -> Self {
163         CrateLoader {
164             sess: sess,
165             cstore: cstore,
166             next_crate_num: cstore.next_crate_num(),
167             local_crate_name: Symbol::intern(local_crate_name),
168         }
169     }
170
171     fn extract_crate_info(&self, i: &ast::Item) -> Option<ExternCrateInfo> {
172         match i.node {
173             ast::ItemKind::ExternCrate(ref path_opt) => {
174                 debug!("resolving extern crate stmt. ident: {} path_opt: {:?}",
175                        i.ident, path_opt);
176                 let name = match *path_opt {
177                     Some(name) => {
178                         validate_crate_name(Some(self.sess), &name.as_str(),
179                                             Some(i.span));
180                         name
181                     }
182                     None => i.ident.name,
183                 };
184                 Some(ExternCrateInfo {
185                     ident: i.ident.name,
186                     name: name,
187                     id: i.id,
188                     dep_kind: if attr::contains_name(&i.attrs, "no_link") {
189                         DepKind::UnexportedMacrosOnly
190                     } else {
191                         DepKind::Explicit
192                     },
193                 })
194             }
195             _ => None
196         }
197     }
198
199     fn existing_match(&self, name: Symbol, hash: Option<&Svh>, kind: PathKind)
200                       -> Option<CrateNum> {
201         let mut ret = None;
202         self.cstore.iter_crate_data(|cnum, data| {
203             if data.name != name { return }
204
205             match hash {
206                 Some(hash) if *hash == data.hash() => { ret = Some(cnum); return }
207                 Some(..) => return,
208                 None => {}
209             }
210
211             // When the hash is None we're dealing with a top-level dependency
212             // in which case we may have a specification on the command line for
213             // this library. Even though an upstream library may have loaded
214             // something of the same name, we have to make sure it was loaded
215             // from the exact same location as well.
216             //
217             // We're also sure to compare *paths*, not actual byte slices. The
218             // `source` stores paths which are normalized which may be different
219             // from the strings on the command line.
220             let source = self.cstore.used_crate_source(cnum);
221             if let Some(locs) = self.sess.opts.externs.get(&*name.as_str()) {
222                 let found = locs.iter().any(|l| {
223                     let l = fs::canonicalize(l).ok();
224                     source.dylib.as_ref().map(|p| &p.0) == l.as_ref() ||
225                     source.rlib.as_ref().map(|p| &p.0) == l.as_ref()
226                 });
227                 if found {
228                     ret = Some(cnum);
229                 }
230                 return
231             }
232
233             // Alright, so we've gotten this far which means that `data` has the
234             // right name, we don't have a hash, and we don't have a --extern
235             // pointing for ourselves. We're still not quite yet done because we
236             // have to make sure that this crate was found in the crate lookup
237             // path (this is a top-level dependency) as we don't want to
238             // implicitly load anything inside the dependency lookup path.
239             let prev_kind = source.dylib.as_ref().or(source.rlib.as_ref())
240                                   .or(source.rmeta.as_ref())
241                                   .expect("No sources for crate").1;
242             if ret.is_none() && (prev_kind == kind || prev_kind == PathKind::All) {
243                 ret = Some(cnum);
244             }
245         });
246         return ret;
247     }
248
249     fn verify_no_symbol_conflicts(&self,
250                                   span: Span,
251                                   root: &CrateRoot) {
252         // Check for (potential) conflicts with the local crate
253         if self.local_crate_name == root.name &&
254            self.sess.local_crate_disambiguator() == root.disambiguator {
255             span_fatal!(self.sess, span, E0519,
256                         "the current crate is indistinguishable from one of its \
257                          dependencies: it has the same crate-name `{}` and was \
258                          compiled with the same `-C metadata` arguments. This \
259                          will result in symbol conflicts between the two.",
260                         root.name)
261         }
262
263         // Check for conflicts with any crate loaded so far
264         self.cstore.iter_crate_data(|_, other| {
265             if other.name() == root.name && // same crate-name
266                other.disambiguator() == root.disambiguator &&  // same crate-disambiguator
267                other.hash() != root.hash { // but different SVH
268                 span_fatal!(self.sess, span, E0523,
269                         "found two different crates with name `{}` that are \
270                          not distinguished by differing `-C metadata`. This \
271                          will result in symbol conflicts between the two.",
272                         root.name)
273             }
274         });
275     }
276
277     fn register_crate(&mut self,
278                       root: &Option<CratePaths>,
279                       ident: Symbol,
280                       name: Symbol,
281                       span: Span,
282                       lib: Library,
283                       dep_kind: DepKind)
284                       -> (CrateNum, Rc<cstore::CrateMetadata>) {
285         info!("register crate `extern crate {} as {}`", name, ident);
286         let crate_root = lib.metadata.get_root();
287         self.verify_no_symbol_conflicts(span, &crate_root);
288
289         // Claim this crate number and cache it
290         let cnum = self.next_crate_num;
291         self.next_crate_num = CrateNum::from_u32(cnum.as_u32() + 1);
292
293         // Stash paths for top-most crate locally if necessary.
294         let crate_paths = if root.is_none() {
295             Some(CratePaths {
296                 ident: ident.to_string(),
297                 dylib: lib.dylib.clone().map(|p| p.0),
298                 rlib:  lib.rlib.clone().map(|p| p.0),
299                 rmeta: lib.rmeta.clone().map(|p| p.0),
300             })
301         } else {
302             None
303         };
304         // Maintain a reference to the top most crate.
305         let root = if root.is_some() { root } else { &crate_paths };
306
307         let Library { dylib, rlib, rmeta, metadata } = lib;
308
309         let cnum_map = self.resolve_crate_deps(root, &crate_root, &metadata, cnum, span, dep_kind);
310
311         let def_path_table = record_time(&self.sess.perf_stats.decode_def_path_tables_time, || {
312             crate_root.def_path_table.decode(&metadata)
313         });
314
315         let exported_symbols = crate_root.exported_symbols
316                                          .map(|x| x.decode(&metadata).collect());
317
318         let trait_impls = crate_root
319             .impls
320             .map(|impls| {
321                 impls.decode(&metadata)
322                      .map(|trait_impls| (trait_impls.trait_id, trait_impls.impls))
323                      .collect()
324             });
325
326         let mut cmeta = cstore::CrateMetadata {
327             name: name,
328             extern_crate: Cell::new(None),
329             def_path_table: def_path_table,
330             exported_symbols: exported_symbols,
331             trait_impls: trait_impls,
332             proc_macros: crate_root.macro_derive_registrar.map(|_| {
333                 self.load_derive_macros(&crate_root, dylib.clone().map(|p| p.0), span)
334             }),
335             root: crate_root,
336             blob: metadata,
337             cnum_map: RefCell::new(cnum_map),
338             cnum: cnum,
339             codemap_import_info: RefCell::new(vec![]),
340             attribute_cache: RefCell::new([Vec::new(), Vec::new()]),
341             dep_kind: Cell::new(dep_kind),
342             source: cstore::CrateSource {
343                 dylib: dylib,
344                 rlib: rlib,
345                 rmeta: rmeta,
346             },
347             // Initialize this with an empty set. The field is populated below
348             // after we were able to deserialize its contents.
349             dllimport_foreign_items: Tracked::new(FxHashSet()),
350         };
351
352         let dllimports: Tracked<FxHashSet<_>> = cmeta
353             .root
354             .native_libraries
355             .map(|native_libraries| {
356                 let native_libraries: Vec<_> = native_libraries.decode(&cmeta)
357                                                                .collect();
358                 native_libraries
359                     .iter()
360                     .filter(|lib| relevant_lib(self.sess, lib) &&
361                                   lib.kind == cstore::NativeLibraryKind::NativeUnknown)
362                     .flat_map(|lib| lib.foreign_items.iter())
363                     .map(|id| *id)
364                     .collect()
365             });
366
367         cmeta.dllimport_foreign_items = dllimports;
368
369         let cmeta = Rc::new(cmeta);
370         self.cstore.set_crate_data(cnum, cmeta.clone());
371         (cnum, cmeta)
372     }
373
374     fn resolve_crate(&mut self,
375                      root: &Option<CratePaths>,
376                      ident: Symbol,
377                      name: Symbol,
378                      hash: Option<&Svh>,
379                      span: Span,
380                      path_kind: PathKind,
381                      mut dep_kind: DepKind)
382                      -> (CrateNum, Rc<cstore::CrateMetadata>) {
383         info!("resolving crate `extern crate {} as {}`", name, ident);
384         let result = if let Some(cnum) = self.existing_match(name, hash, path_kind) {
385             LoadResult::Previous(cnum)
386         } else {
387             info!("falling back to a load");
388             let mut locate_ctxt = locator::Context {
389                 sess: self.sess,
390                 span: span,
391                 ident: ident,
392                 crate_name: name,
393                 hash: hash.map(|a| &*a),
394                 filesearch: self.sess.target_filesearch(path_kind),
395                 target: &self.sess.target.target,
396                 triple: &self.sess.opts.target_triple,
397                 root: root,
398                 rejected_via_hash: vec![],
399                 rejected_via_triple: vec![],
400                 rejected_via_kind: vec![],
401                 rejected_via_version: vec![],
402                 rejected_via_filename: vec![],
403                 should_match_name: true,
404                 is_proc_macro: Some(false),
405             };
406
407             self.load(&mut locate_ctxt).or_else(|| {
408                 dep_kind = DepKind::UnexportedMacrosOnly;
409
410                 let mut proc_macro_locator = locator::Context {
411                     target: &self.sess.host,
412                     triple: config::host_triple(),
413                     filesearch: self.sess.host_filesearch(path_kind),
414                     rejected_via_hash: vec![],
415                     rejected_via_triple: vec![],
416                     rejected_via_kind: vec![],
417                     rejected_via_version: vec![],
418                     rejected_via_filename: vec![],
419                     is_proc_macro: Some(true),
420                     ..locate_ctxt
421                 };
422
423                 self.load(&mut proc_macro_locator)
424             }).unwrap_or_else(|| locate_ctxt.report_errs())
425         };
426
427         match result {
428             LoadResult::Previous(cnum) => {
429                 let data = self.cstore.get_crate_data(cnum);
430                 if data.root.macro_derive_registrar.is_some() {
431                     dep_kind = DepKind::UnexportedMacrosOnly;
432                 }
433                 data.dep_kind.set(cmp::max(data.dep_kind.get(), dep_kind));
434                 (cnum, data)
435             }
436             LoadResult::Loaded(library) => {
437                 self.register_crate(root, ident, name, span, library, dep_kind)
438             }
439         }
440     }
441
442     fn load(&mut self, locate_ctxt: &mut locator::Context) -> Option<LoadResult> {
443         let library = match locate_ctxt.maybe_load_library_crate() {
444             Some(lib) => lib,
445             None => return None,
446         };
447
448         // In the case that we're loading a crate, but not matching
449         // against a hash, we could load a crate which has the same hash
450         // as an already loaded crate. If this is the case prevent
451         // duplicates by just using the first crate.
452         //
453         // Note that we only do this for target triple crates, though, as we
454         // don't want to match a host crate against an equivalent target one
455         // already loaded.
456         let root = library.metadata.get_root();
457         if locate_ctxt.triple == self.sess.opts.target_triple {
458             let mut result = LoadResult::Loaded(library);
459             self.cstore.iter_crate_data(|cnum, data| {
460                 if data.name() == root.name && root.hash == data.hash() {
461                     assert!(locate_ctxt.hash.is_none());
462                     info!("load success, going to previous cnum: {}", cnum);
463                     result = LoadResult::Previous(cnum);
464                 }
465             });
466             Some(result)
467         } else {
468             Some(LoadResult::Loaded(library))
469         }
470     }
471
472     fn update_extern_crate(&mut self,
473                            cnum: CrateNum,
474                            mut extern_crate: ExternCrate,
475                            visited: &mut FxHashSet<(CrateNum, bool)>)
476     {
477         if !visited.insert((cnum, extern_crate.direct)) { return }
478
479         let cmeta = self.cstore.get_crate_data(cnum);
480         let old_extern_crate = cmeta.extern_crate.get();
481
482         // Prefer:
483         // - something over nothing (tuple.0);
484         // - direct extern crate to indirect (tuple.1);
485         // - shorter paths to longer (tuple.2).
486         let new_rank = (true, extern_crate.direct, !extern_crate.path_len);
487         let old_rank = match old_extern_crate {
488             None => (false, false, !0),
489             Some(ref c) => (true, c.direct, !c.path_len),
490         };
491
492         if old_rank >= new_rank {
493             return; // no change needed
494         }
495
496         cmeta.extern_crate.set(Some(extern_crate));
497         // Propagate the extern crate info to dependencies.
498         extern_crate.direct = false;
499         for &dep_cnum in cmeta.cnum_map.borrow().iter() {
500             self.update_extern_crate(dep_cnum, extern_crate, visited);
501         }
502     }
503
504     // Go through the crate metadata and load any crates that it references
505     fn resolve_crate_deps(&mut self,
506                           root: &Option<CratePaths>,
507                           crate_root: &CrateRoot,
508                           metadata: &MetadataBlob,
509                           krate: CrateNum,
510                           span: Span,
511                           dep_kind: DepKind)
512                           -> cstore::CrateNumMap {
513         debug!("resolving deps of external crate");
514         if crate_root.macro_derive_registrar.is_some() {
515             return cstore::CrateNumMap::new();
516         }
517
518         let dep_node = DepNode::GlobalMetaData(DefId { krate, index: CRATE_DEF_INDEX },
519                                                GlobalMetaDataKind::CrateDeps);
520
521         // The map from crate numbers in the crate we're resolving to local crate numbers.
522         // We map 0 and all other holes in the map to our parent crate. The "additional"
523         // self-dependencies should be harmless.
524         ::std::iter::once(krate).chain(crate_root.crate_deps
525                                                  .get(&self.sess.dep_graph, dep_node)
526                                                  .decode(metadata)
527                                                  .map(|dep| {
528             debug!("resolving dep crate {} hash: `{}`", dep.name, dep.hash);
529             if dep.kind == DepKind::UnexportedMacrosOnly {
530                 return krate;
531             }
532             let dep_kind = match dep_kind {
533                 DepKind::MacrosOnly => DepKind::MacrosOnly,
534                 _ => dep.kind,
535             };
536             let (local_cnum, ..) = self.resolve_crate(
537                 root, dep.name, dep.name, Some(&dep.hash), span, PathKind::Dependency, dep_kind,
538             );
539             local_cnum
540         })).collect()
541     }
542
543     fn read_extension_crate(&mut self, span: Span, info: &ExternCrateInfo) -> ExtensionCrate {
544         info!("read extension crate {} `extern crate {} as {}` dep_kind={:?}",
545               info.id, info.name, info.ident, info.dep_kind);
546         let target_triple = &self.sess.opts.target_triple[..];
547         let is_cross = target_triple != config::host_triple();
548         let mut target_only = false;
549         let mut locate_ctxt = locator::Context {
550             sess: self.sess,
551             span: span,
552             ident: info.ident,
553             crate_name: info.name,
554             hash: None,
555             filesearch: self.sess.host_filesearch(PathKind::Crate),
556             target: &self.sess.host,
557             triple: config::host_triple(),
558             root: &None,
559             rejected_via_hash: vec![],
560             rejected_via_triple: vec![],
561             rejected_via_kind: vec![],
562             rejected_via_version: vec![],
563             rejected_via_filename: vec![],
564             should_match_name: true,
565             is_proc_macro: None,
566         };
567         let library = self.load(&mut locate_ctxt).or_else(|| {
568             if !is_cross {
569                 return None
570             }
571             // Try loading from target crates. This will abort later if we
572             // try to load a plugin registrar function,
573             target_only = true;
574
575             locate_ctxt.target = &self.sess.target.target;
576             locate_ctxt.triple = target_triple;
577             locate_ctxt.filesearch = self.sess.target_filesearch(PathKind::Crate);
578
579             self.load(&mut locate_ctxt)
580         });
581         let library = match library {
582             Some(l) => l,
583             None => locate_ctxt.report_errs(),
584         };
585
586         let (dylib, metadata) = match library {
587             LoadResult::Previous(cnum) => {
588                 let data = self.cstore.get_crate_data(cnum);
589                 (data.source.dylib.clone(), PMDSource::Registered(data))
590             }
591             LoadResult::Loaded(library) => {
592                 let dylib = library.dylib.clone();
593                 let metadata = PMDSource::Owned(library);
594                 (dylib, metadata)
595             }
596         };
597
598         ExtensionCrate {
599             metadata: metadata,
600             dylib: dylib.map(|p| p.0),
601             target_only: target_only,
602         }
603     }
604
605     /// Load custom derive macros.
606     ///
607     /// Note that this is intentionally similar to how we load plugins today,
608     /// but also intentionally separate. Plugins are likely always going to be
609     /// implemented as dynamic libraries, but we have a possible future where
610     /// custom derive (and other macro-1.1 style features) are implemented via
611     /// executables and custom IPC.
612     fn load_derive_macros(&mut self, root: &CrateRoot, dylib: Option<PathBuf>, span: Span)
613                           -> Vec<(ast::Name, Rc<SyntaxExtension>)> {
614         use std::{env, mem};
615         use proc_macro::TokenStream;
616         use proc_macro::__internal::Registry;
617         use rustc_back::dynamic_lib::DynamicLibrary;
618         use syntax_ext::deriving::custom::ProcMacroDerive;
619         use syntax_ext::proc_macro_impl::{AttrProcMacro, BangProcMacro};
620
621         let path = match dylib {
622             Some(dylib) => dylib,
623             None => span_bug!(span, "proc-macro crate not dylib"),
624         };
625         // Make sure the path contains a / or the linker will search for it.
626         let path = env::current_dir().unwrap().join(path);
627         let lib = match DynamicLibrary::open(Some(&path)) {
628             Ok(lib) => lib,
629             Err(err) => self.sess.span_fatal(span, &err),
630         };
631
632         let sym = self.sess.generate_derive_registrar_symbol(root.disambiguator,
633                                                              root.macro_derive_registrar.unwrap());
634         let registrar = unsafe {
635             let sym = match lib.symbol(&sym) {
636                 Ok(f) => f,
637                 Err(err) => self.sess.span_fatal(span, &err),
638             };
639             mem::transmute::<*mut u8, fn(&mut Registry)>(sym)
640         };
641
642         struct MyRegistrar(Vec<(ast::Name, Rc<SyntaxExtension>)>);
643
644         impl Registry for MyRegistrar {
645             fn register_custom_derive(&mut self,
646                                       trait_name: &str,
647                                       expand: fn(TokenStream) -> TokenStream,
648                                       attributes: &[&'static str]) {
649                 let attrs = attributes.iter().cloned().map(Symbol::intern).collect::<Vec<_>>();
650                 let derive = ProcMacroDerive::new(expand, attrs.clone());
651                 let derive = SyntaxExtension::ProcMacroDerive(Box::new(derive), attrs);
652                 self.0.push((Symbol::intern(trait_name), Rc::new(derive)));
653             }
654
655             fn register_attr_proc_macro(&mut self,
656                                         name: &str,
657                                         expand: fn(TokenStream, TokenStream) -> TokenStream) {
658                 let expand = SyntaxExtension::AttrProcMacro(
659                     Box::new(AttrProcMacro { inner: expand })
660                 );
661                 self.0.push((Symbol::intern(name), Rc::new(expand)));
662             }
663
664             fn register_bang_proc_macro(&mut self,
665                                         name: &str,
666                                         expand: fn(TokenStream) -> TokenStream) {
667                 let expand = SyntaxExtension::ProcMacro(
668                     Box::new(BangProcMacro { inner: expand })
669                 );
670                 self.0.push((Symbol::intern(name), Rc::new(expand)));
671             }
672         }
673
674         let mut my_registrar = MyRegistrar(Vec::new());
675         registrar(&mut my_registrar);
676
677         // Intentionally leak the dynamic library. We can't ever unload it
678         // since the library can make things that will live arbitrarily long.
679         mem::forget(lib);
680         my_registrar.0
681     }
682
683     /// Look for a plugin registrar. Returns library path, crate
684     /// SVH and DefIndex of the registrar function.
685     pub fn find_plugin_registrar(&mut self,
686                                  span: Span,
687                                  name: &str)
688                                  -> Option<(PathBuf, Symbol, DefIndex)> {
689         let ekrate = self.read_extension_crate(span, &ExternCrateInfo {
690              name: Symbol::intern(name),
691              ident: Symbol::intern(name),
692              id: ast::DUMMY_NODE_ID,
693              dep_kind: DepKind::UnexportedMacrosOnly,
694         });
695
696         if ekrate.target_only {
697             // Need to abort before syntax expansion.
698             let message = format!("plugin `{}` is not available for triple `{}` \
699                                    (only found {})",
700                                   name,
701                                   config::host_triple(),
702                                   self.sess.opts.target_triple);
703             span_fatal!(self.sess, span, E0456, "{}", &message);
704         }
705
706         let root = ekrate.metadata.get_root();
707         match (ekrate.dylib.as_ref(), root.plugin_registrar_fn) {
708             (Some(dylib), Some(reg)) => {
709                 Some((dylib.to_path_buf(), root.disambiguator, reg))
710             }
711             (None, Some(_)) => {
712                 span_err!(self.sess, span, E0457,
713                           "plugin `{}` only found in rlib format, but must be available \
714                            in dylib format",
715                           name);
716                 // No need to abort because the loading code will just ignore this
717                 // empty dylib.
718                 None
719             }
720             _ => None,
721         }
722     }
723
724     fn get_foreign_items_of_kind(&self, kind: cstore::NativeLibraryKind) -> Vec<DefIndex> {
725         let mut items = vec![];
726         let libs = self.cstore.get_used_libraries();
727         for lib in libs.borrow().iter() {
728             if relevant_lib(self.sess, lib) && lib.kind == kind {
729                 items.extend(&lib.foreign_items);
730             }
731         }
732         items
733     }
734
735     fn register_statically_included_foreign_items(&mut self) {
736         for id in self.get_foreign_items_of_kind(cstore::NativeStatic) {
737             self.cstore.add_statically_included_foreign_item(id);
738         }
739         for id in self.get_foreign_items_of_kind(cstore::NativeStaticNobundle) {
740             self.cstore.add_statically_included_foreign_item(id);
741         }
742     }
743
744     fn register_dllimport_foreign_items(&mut self) {
745         let mut dllimports = self.cstore.dllimport_foreign_items.borrow_mut();
746         for id in self.get_foreign_items_of_kind(cstore::NativeUnknown) {
747             dllimports.insert(id);
748         }
749     }
750
751     fn inject_panic_runtime(&mut self, krate: &ast::Crate) {
752         // If we're only compiling an rlib, then there's no need to select a
753         // panic runtime, so we just skip this section entirely.
754         let any_non_rlib = self.sess.crate_types.borrow().iter().any(|ct| {
755             *ct != config::CrateTypeRlib
756         });
757         if !any_non_rlib {
758             info!("panic runtime injection skipped, only generating rlib");
759             return
760         }
761
762         // If we need a panic runtime, we try to find an existing one here. At
763         // the same time we perform some general validation of the DAG we've got
764         // going such as ensuring everything has a compatible panic strategy.
765         //
766         // The logic for finding the panic runtime here is pretty much the same
767         // as the allocator case with the only addition that the panic strategy
768         // compilation mode also comes into play.
769         let desired_strategy = self.sess.panic_strategy();
770         let mut runtime_found = false;
771         let mut needs_panic_runtime = attr::contains_name(&krate.attrs,
772                                                           "needs_panic_runtime");
773
774         let dep_graph = &self.sess.dep_graph;
775
776         self.cstore.iter_crate_data(|cnum, data| {
777             needs_panic_runtime = needs_panic_runtime ||
778                                   data.needs_panic_runtime(dep_graph);
779             if data.is_panic_runtime(dep_graph) {
780                 // Inject a dependency from all #![needs_panic_runtime] to this
781                 // #![panic_runtime] crate.
782                 self.inject_dependency_if(cnum, "a panic runtime",
783                                           &|data| data.needs_panic_runtime(dep_graph));
784                 runtime_found = runtime_found || data.dep_kind.get() == DepKind::Explicit;
785             }
786         });
787
788         // If an explicitly linked and matching panic runtime was found, or if
789         // we just don't need one at all, then we're done here and there's
790         // nothing else to do.
791         if !needs_panic_runtime || runtime_found {
792             return
793         }
794
795         // By this point we know that we (a) need a panic runtime and (b) no
796         // panic runtime was explicitly linked. Here we just load an appropriate
797         // default runtime for our panic strategy and then inject the
798         // dependencies.
799         //
800         // We may resolve to an already loaded crate (as the crate may not have
801         // been explicitly linked prior to this) and we may re-inject
802         // dependencies again, but both of those situations are fine.
803         //
804         // Also note that we have yet to perform validation of the crate graph
805         // in terms of everyone has a compatible panic runtime format, that's
806         // performed later as part of the `dependency_format` module.
807         let name = match desired_strategy {
808             PanicStrategy::Unwind => Symbol::intern("panic_unwind"),
809             PanicStrategy::Abort => Symbol::intern("panic_abort"),
810         };
811         info!("panic runtime not found -- loading {}", name);
812
813         let dep_kind = DepKind::Implicit;
814         let (cnum, data) =
815             self.resolve_crate(&None, name, name, None, DUMMY_SP, PathKind::Crate, dep_kind);
816
817         // Sanity check the loaded crate to ensure it is indeed a panic runtime
818         // and the panic strategy is indeed what we thought it was.
819         if !data.is_panic_runtime(dep_graph) {
820             self.sess.err(&format!("the crate `{}` is not a panic runtime",
821                                    name));
822         }
823         if data.panic_strategy(dep_graph) != desired_strategy {
824             self.sess.err(&format!("the crate `{}` does not have the panic \
825                                     strategy `{}`",
826                                    name, desired_strategy.desc()));
827         }
828
829         self.sess.injected_panic_runtime.set(Some(cnum));
830         self.inject_dependency_if(cnum, "a panic runtime",
831                                   &|data| data.needs_panic_runtime(dep_graph));
832     }
833
834     fn inject_sanitizer_runtime(&mut self) {
835         if let Some(ref sanitizer) = self.sess.opts.debugging_opts.sanitizer {
836             // Sanitizers can only be used on some tested platforms with
837             // executables linked to `std`
838             const ASAN_SUPPORTED_TARGETS: &[&str] = &["x86_64-unknown-linux-gnu",
839                                                       "x86_64-apple-darwin"];
840             const TSAN_SUPPORTED_TARGETS: &[&str] = &["x86_64-unknown-linux-gnu",
841                                                       "x86_64-apple-darwin"];
842             const LSAN_SUPPORTED_TARGETS: &[&str] = &["x86_64-unknown-linux-gnu"];
843             const MSAN_SUPPORTED_TARGETS: &[&str] = &["x86_64-unknown-linux-gnu"];
844
845             let supported_targets = match *sanitizer {
846                 Sanitizer::Address => ASAN_SUPPORTED_TARGETS,
847                 Sanitizer::Thread => TSAN_SUPPORTED_TARGETS,
848                 Sanitizer::Leak => LSAN_SUPPORTED_TARGETS,
849                 Sanitizer::Memory => MSAN_SUPPORTED_TARGETS,
850             };
851             if !supported_targets.contains(&&*self.sess.target.target.llvm_target) {
852                 self.sess.err(&format!("{:?}Sanitizer only works with the `{}` target",
853                     sanitizer,
854                     supported_targets.join("` or `")
855                 ));
856                 return
857             }
858
859             if !self.sess.crate_types.borrow().iter().all(|ct| {
860                 match *ct {
861                     // Link the runtime
862                     config::CrateTypeExecutable => true,
863                     // This crate will be compiled with the required
864                     // instrumentation pass
865                     config::CrateTypeRlib => false,
866                     _ => {
867                         self.sess.err(&format!("Only executables and rlibs can be \
868                                                 compiled with `-Z sanitizer`"));
869                         false
870                     }
871                 }
872             }) {
873                 return
874             }
875
876             let mut uses_std = false;
877             self.cstore.iter_crate_data(|_, data| {
878                 if data.name == "std" {
879                     uses_std = true;
880                 }
881             });
882
883             if uses_std {
884                 let name = match *sanitizer {
885                     Sanitizer::Address => "rustc_asan",
886                     Sanitizer::Leak => "rustc_lsan",
887                     Sanitizer::Memory => "rustc_msan",
888                     Sanitizer::Thread => "rustc_tsan",
889                 };
890                 info!("loading sanitizer: {}", name);
891
892                 let symbol = Symbol::intern(name);
893                 let dep_kind = DepKind::Implicit;
894                 let (_, data) =
895                     self.resolve_crate(&None, symbol, symbol, None, DUMMY_SP,
896                                        PathKind::Crate, dep_kind);
897
898                 // Sanity check the loaded crate to ensure it is indeed a sanitizer runtime
899                 if !data.is_sanitizer_runtime(&self.sess.dep_graph) {
900                     self.sess.err(&format!("the crate `{}` is not a sanitizer runtime",
901                                            name));
902                 }
903             }
904         }
905     }
906
907     fn inject_allocator_crate(&mut self) {
908         // Make sure that we actually need an allocator, if none of our
909         // dependencies need one then we definitely don't!
910         //
911         // Also, if one of our dependencies has an explicit allocator, then we
912         // also bail out as we don't need to implicitly inject one.
913         let mut needs_allocator = false;
914         let mut found_required_allocator = false;
915         let dep_graph = &self.sess.dep_graph;
916         self.cstore.iter_crate_data(|cnum, data| {
917             needs_allocator = needs_allocator || data.needs_allocator(dep_graph);
918             if data.is_allocator(dep_graph) {
919                 info!("{} required by rlib and is an allocator", data.name());
920                 self.inject_dependency_if(cnum, "an allocator",
921                                           &|data| data.needs_allocator(dep_graph));
922                 found_required_allocator = found_required_allocator ||
923                     data.dep_kind.get() == DepKind::Explicit;
924             }
925         });
926         if !needs_allocator || found_required_allocator { return }
927
928         // At this point we've determined that we need an allocator and no
929         // previous allocator has been activated. We look through our outputs of
930         // crate types to see what kind of allocator types we may need.
931         //
932         // The main special output type here is that rlibs do **not** need an
933         // allocator linked in (they're just object files), only final products
934         // (exes, dylibs, staticlibs) need allocators.
935         let mut need_lib_alloc = false;
936         let mut need_exe_alloc = false;
937         for ct in self.sess.crate_types.borrow().iter() {
938             match *ct {
939                 config::CrateTypeExecutable => need_exe_alloc = true,
940                 config::CrateTypeDylib |
941                 config::CrateTypeProcMacro |
942                 config::CrateTypeCdylib |
943                 config::CrateTypeStaticlib => need_lib_alloc = true,
944                 config::CrateTypeRlib => {}
945             }
946         }
947         if !need_lib_alloc && !need_exe_alloc { return }
948
949         // The default allocator crate comes from the custom target spec, and we
950         // choose between the standard library allocator or exe allocator. This
951         // distinction exists because the default allocator for binaries (where
952         // the world is Rust) is different than library (where the world is
953         // likely *not* Rust).
954         //
955         // If a library is being produced, but we're also flagged with `-C
956         // prefer-dynamic`, then we interpret this as a *Rust* dynamic library
957         // is being produced so we use the exe allocator instead.
958         //
959         // What this boils down to is:
960         //
961         // * Binaries use jemalloc
962         // * Staticlibs and Rust dylibs use system malloc
963         // * Rust dylibs used as dependencies to rust use jemalloc
964         let name = if need_lib_alloc && !self.sess.opts.cg.prefer_dynamic {
965             Symbol::intern(&self.sess.target.target.options.lib_allocation_crate)
966         } else {
967             Symbol::intern(&self.sess.target.target.options.exe_allocation_crate)
968         };
969         let dep_kind = DepKind::Implicit;
970         let (cnum, data) =
971             self.resolve_crate(&None, name, name, None, DUMMY_SP, PathKind::Crate, dep_kind);
972
973         // Sanity check the crate we loaded to ensure that it is indeed an
974         // allocator.
975         if !data.is_allocator(dep_graph) {
976             self.sess.err(&format!("the allocator crate `{}` is not tagged \
977                                     with #![allocator]", data.name()));
978         }
979
980         self.sess.injected_allocator.set(Some(cnum));
981         self.inject_dependency_if(cnum, "an allocator",
982                                   &|data| data.needs_allocator(dep_graph));
983     }
984
985     fn inject_dependency_if(&self,
986                             krate: CrateNum,
987                             what: &str,
988                             needs_dep: &Fn(&cstore::CrateMetadata) -> bool) {
989         // don't perform this validation if the session has errors, as one of
990         // those errors may indicate a circular dependency which could cause
991         // this to stack overflow.
992         if self.sess.has_errors() {
993             return
994         }
995
996         // Before we inject any dependencies, make sure we don't inject a
997         // circular dependency by validating that this crate doesn't
998         // transitively depend on any crates satisfying `needs_dep`.
999         for dep in self.cstore.crate_dependencies_in_rpo(krate) {
1000             let data = self.cstore.get_crate_data(dep);
1001             if needs_dep(&data) {
1002                 self.sess.err(&format!("the crate `{}` cannot depend \
1003                                         on a crate that needs {}, but \
1004                                         it depends on `{}`",
1005                                        self.cstore.get_crate_data(krate).name(),
1006                                        what,
1007                                        data.name()));
1008             }
1009         }
1010
1011         // All crates satisfying `needs_dep` do not explicitly depend on the
1012         // crate provided for this compile, but in order for this compilation to
1013         // be successfully linked we need to inject a dependency (to order the
1014         // crates on the command line correctly).
1015         self.cstore.iter_crate_data(|cnum, data| {
1016             if !needs_dep(data) {
1017                 return
1018             }
1019
1020             info!("injecting a dep from {} to {}", cnum, krate);
1021             data.cnum_map.borrow_mut().push(krate);
1022         });
1023     }
1024 }
1025
1026 impl<'a> CrateLoader<'a> {
1027     pub fn preprocess(&mut self, krate: &ast::Crate) {
1028         for attr in &krate.attrs {
1029             if attr.path == "link_args" {
1030                 if let Some(linkarg) = attr.value_str() {
1031                     self.cstore.add_used_link_args(&linkarg.as_str());
1032                 }
1033             }
1034         }
1035     }
1036
1037     fn process_foreign_mod(&mut self, i: &ast::Item, fm: &ast::ForeignMod,
1038                            definitions: &Definitions) {
1039         if fm.abi == Abi::Rust || fm.abi == Abi::RustIntrinsic || fm.abi == Abi::PlatformIntrinsic {
1040             return;
1041         }
1042
1043         // First, add all of the custom #[link_args] attributes
1044         for m in i.attrs.iter().filter(|a| a.check_name("link_args")) {
1045             if let Some(linkarg) = m.value_str() {
1046                 self.cstore.add_used_link_args(&linkarg.as_str());
1047             }
1048         }
1049
1050         // Next, process all of the #[link(..)]-style arguments
1051         for m in i.attrs.iter().filter(|a| a.check_name("link")) {
1052             let items = match m.meta_item_list() {
1053                 Some(item) => item,
1054                 None => continue,
1055             };
1056             let kind = items.iter().find(|k| {
1057                 k.check_name("kind")
1058             }).and_then(|a| a.value_str()).map(Symbol::as_str);
1059             let kind = match kind.as_ref().map(|s| &s[..]) {
1060                 Some("static") => cstore::NativeStatic,
1061                 Some("static-nobundle") => cstore::NativeStaticNobundle,
1062                 Some("dylib") => cstore::NativeUnknown,
1063                 Some("framework") => cstore::NativeFramework,
1064                 Some(k) => {
1065                     struct_span_err!(self.sess, m.span, E0458,
1066                               "unknown kind: `{}`", k)
1067                         .span_label(m.span, "unknown kind").emit();
1068                     cstore::NativeUnknown
1069                 }
1070                 None => cstore::NativeUnknown
1071             };
1072             let n = items.iter().find(|n| {
1073                 n.check_name("name")
1074             }).and_then(|a| a.value_str());
1075             let n = match n {
1076                 Some(n) => n,
1077                 None => {
1078                     struct_span_err!(self.sess, m.span, E0459,
1079                                      "#[link(...)] specified without `name = \"foo\"`")
1080                         .span_label(m.span, "missing `name` argument").emit();
1081                     Symbol::intern("foo")
1082                 }
1083             };
1084             let cfg = items.iter().find(|k| {
1085                 k.check_name("cfg")
1086             }).and_then(|a| a.meta_item_list());
1087             let cfg = cfg.map(|list| {
1088                 list[0].meta_item().unwrap().clone()
1089             });
1090             let foreign_items = fm.items.iter()
1091                 .map(|it| definitions.opt_def_index(it.id).unwrap())
1092                 .collect();
1093             let lib = NativeLibrary {
1094                 name: n,
1095                 kind: kind,
1096                 cfg: cfg,
1097                 foreign_items: foreign_items,
1098             };
1099             register_native_lib(self.sess, self.cstore, Some(m.span), lib);
1100         }
1101     }
1102 }
1103
1104 impl<'a> middle::cstore::CrateLoader for CrateLoader<'a> {
1105     fn postprocess(&mut self, krate: &ast::Crate) {
1106         // inject the sanitizer runtime before the allocator runtime because all
1107         // sanitizers force the use of the `alloc_system` allocator
1108         self.inject_sanitizer_runtime();
1109         self.inject_allocator_crate();
1110         self.inject_panic_runtime(krate);
1111
1112         if log_enabled!(log::LogLevel::Info) {
1113             dump_crates(&self.cstore);
1114         }
1115
1116         // Process libs passed on the command line
1117         // First, check for errors
1118         let mut renames = FxHashSet();
1119         for &(ref name, ref new_name, _) in &self.sess.opts.libs {
1120             if let &Some(ref new_name) = new_name {
1121                 if new_name.is_empty() {
1122                     self.sess.err(
1123                         &format!("an empty renaming target was specified for library `{}`",name));
1124                 } else if !self.cstore.get_used_libraries().borrow().iter()
1125                                                            .any(|lib| lib.name == name as &str) {
1126                     self.sess.err(&format!("renaming of the library `{}` was specified, \
1127                                             however this crate contains no #[link(...)] \
1128                                             attributes referencing this library.", name));
1129                 } else if renames.contains(name) {
1130                     self.sess.err(&format!("multiple renamings were specified for library `{}` .",
1131                                             name));
1132                 } else {
1133                     renames.insert(name);
1134                 }
1135             }
1136         }
1137         // Update kind and, optionally, the name of all native libaries
1138         // (there may be more than one) with the specified name.
1139         for &(ref name, ref new_name, kind) in &self.sess.opts.libs {
1140             let mut found = false;
1141             for lib in self.cstore.get_used_libraries().borrow_mut().iter_mut() {
1142                 if lib.name == name as &str {
1143                     let mut changed = false;
1144                     if let Some(k) = kind {
1145                         lib.kind = k;
1146                         changed = true;
1147                     }
1148                     if let &Some(ref new_name) = new_name {
1149                         lib.name = Symbol::intern(new_name);
1150                         changed = true;
1151                     }
1152                     if !changed {
1153                         self.sess.warn(&format!("redundant linker flag specified for library `{}`",
1154                                                 name));
1155                     }
1156
1157                     found = true;
1158                 }
1159             }
1160             if !found {
1161                 // Add if not found
1162                 let new_name = new_name.as_ref().map(|s| &**s); // &Option<String> -> Option<&str>
1163                 let lib = NativeLibrary {
1164                     name: Symbol::intern(new_name.unwrap_or(name)),
1165                     kind: if let Some(k) = kind { k } else { cstore::NativeUnknown },
1166                     cfg: None,
1167                     foreign_items: Vec::new(),
1168                 };
1169                 register_native_lib(self.sess, self.cstore, None, lib);
1170             }
1171         }
1172         self.register_statically_included_foreign_items();
1173         self.register_dllimport_foreign_items();
1174     }
1175
1176     fn process_item(&mut self, item: &ast::Item, definitions: &Definitions) {
1177         match item.node {
1178             ast::ItemKind::ForeignMod(ref fm) => {
1179                 self.process_foreign_mod(item, fm, definitions)
1180             },
1181             ast::ItemKind::ExternCrate(_) => {
1182                 let info = self.extract_crate_info(item).unwrap();
1183                 let (cnum, ..) = self.resolve_crate(
1184                     &None, info.ident, info.name, None, item.span, PathKind::Crate, info.dep_kind,
1185                 );
1186
1187                 let def_id = definitions.opt_local_def_id(item.id).unwrap();
1188                 let len = definitions.def_path(def_id.index).data.len();
1189
1190                 let extern_crate =
1191                     ExternCrate { def_id: def_id, span: item.span, direct: true, path_len: len };
1192                 self.update_extern_crate(cnum, extern_crate, &mut FxHashSet());
1193                 self.cstore.add_extern_mod_stmt_cnum(info.id, cnum);
1194             }
1195             _ => {}
1196         }
1197     }
1198 }