]> git.lizzy.rs Git - rust.git/blob - src/tools/tidy/src/deps.rs
Rollup merge of #84616 - GuillaumeGomez:fix-empty-dom-toggle, r=jsha
[rust.git] / src / tools / tidy / src / deps.rs
1 //! Checks the licenses of third-party dependencies.
2
3 use cargo_metadata::{Metadata, Package, PackageId, Resolve};
4 use std::collections::{BTreeSet, HashSet};
5 use std::path::Path;
6
7 /// These are licenses that are allowed for all crates, including the runtime,
8 /// rustc, tools, etc.
9 const LICENSES: &[&str] = &[
10     "MIT/Apache-2.0",
11     "MIT / Apache-2.0",
12     "Apache-2.0/MIT",
13     "Apache-2.0 / MIT",
14     "MIT OR Apache-2.0",
15     "Apache-2.0 OR MIT",
16     "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", // wasi license
17     "MIT",
18     "Unlicense/MIT",
19     "Unlicense OR MIT",
20     "0BSD OR MIT OR Apache-2.0", // adler license
21     "Zlib OR Apache-2.0 OR MIT", // tinyvec
22 ];
23
24 /// These are exceptions to Rust's permissive licensing policy, and
25 /// should be considered bugs. Exceptions are only allowed in Rust
26 /// tooling. It is _crucial_ that no exception crates be dependencies
27 /// of the Rust runtime (std/test).
28 const EXCEPTIONS: &[(&str, &str)] = &[
29     ("mdbook", "MPL-2.0"),                                  // mdbook
30     ("openssl", "Apache-2.0"),                              // cargo, mdbook
31     ("fuchsia-zircon-sys", "BSD-3-Clause"),                 // rustdoc, rustc, cargo
32     ("fuchsia-zircon", "BSD-3-Clause"), // rustdoc, rustc, cargo (jobserver & tempdir)
33     ("colored", "MPL-2.0"),             // rustfmt
34     ("ordslice", "Apache-2.0"),         // rls
35     ("ryu", "Apache-2.0 OR BSL-1.0"),   // rls/cargo/... (because of serde)
36     ("bytesize", "Apache-2.0"),         // cargo
37     ("im-rc", "MPL-2.0+"),              // cargo
38     ("sized-chunks", "MPL-2.0+"),       // cargo via im-rc
39     ("bitmaps", "MPL-2.0+"),            // cargo via im-rc
40     ("crossbeam-queue", "MIT/Apache-2.0 AND BSD-2-Clause"), // rls via rayon
41     ("instant", "BSD-3-Clause"),        // rustc_driver/tracing-subscriber/parking_lot
42     ("snap", "BSD-3-Clause"),           // rustc
43     // FIXME: this dependency violates the documentation comment above:
44     ("fortanix-sgx-abi", "MPL-2.0"), // libstd but only for `sgx` target
45 ];
46
47 /// These are the root crates that are part of the runtime. The licenses for
48 /// these and all their dependencies *must not* be in the exception list.
49 const RUNTIME_CRATES: &[&str] = &["std", "core", "alloc", "test", "panic_abort", "panic_unwind"];
50
51 /// Crates whose dependencies must be explicitly permitted.
52 const RESTRICTED_DEPENDENCY_CRATES: &[&str] = &["rustc_middle", "rustc_codegen_llvm"];
53
54 /// Crates rustc is allowed to depend on. Avoid adding to the list if possible.
55 ///
56 /// This list is here to provide a speed-bump to adding a new dependency to
57 /// rustc. Please check with the compiler team before adding an entry.
58 const PERMITTED_DEPENDENCIES: &[&str] = &[
59     "addr2line",
60     "adler",
61     "aho-corasick",
62     "annotate-snippets",
63     "ansi_term",
64     "arrayvec",
65     "atty",
66     "autocfg",
67     "bitflags",
68     "block-buffer",
69     "block-padding",
70     "byteorder",
71     "byte-tools",
72     "cc",
73     "cfg-if",
74     "chalk-derive",
75     "chalk-ir",
76     "cmake",
77     "compiler_builtins",
78     "cpuid-bool",
79     "crc32fast",
80     "crossbeam-deque",
81     "crossbeam-epoch",
82     "crossbeam-queue",
83     "crossbeam-utils",
84     "cstr",
85     "datafrog",
86     "difference",
87     "digest",
88     "dlmalloc",
89     "either",
90     "ena",
91     "env_logger",
92     "expect-test",
93     "fake-simd",
94     "filetime",
95     "flate2",
96     "fortanix-sgx-abi",
97     "fuchsia-zircon",
98     "fuchsia-zircon-sys",
99     "generic-array",
100     "getopts",
101     "getrandom",
102     "gimli",
103     "gsgdt",
104     "hashbrown",
105     "hermit-abi",
106     "humantime",
107     "indexmap",
108     "instant",
109     "itertools",
110     "jobserver",
111     "kernel32-sys",
112     "lazy_static",
113     "libc",
114     "libz-sys",
115     "lock_api",
116     "log",
117     "maybe-uninit",
118     "md-5",
119     "measureme",
120     "memchr",
121     "memmap",
122     "memmap2",
123     "memoffset",
124     "miniz_oxide",
125     "num_cpus",
126     "object",
127     "once_cell",
128     "opaque-debug",
129     "parking_lot",
130     "parking_lot_core",
131     "pathdiff",
132     "perf-event-open-sys",
133     "pin-project-lite",
134     "pkg-config",
135     "polonius-engine",
136     "ppv-lite86",
137     "proc-macro2",
138     "psm",
139     "punycode",
140     "quick-error",
141     "quote",
142     "rand",
143     "rand_chacha",
144     "rand_core",
145     "rand_hc",
146     "rand_pcg",
147     "rand_xorshift",
148     "redox_syscall",
149     "regex",
150     "regex-syntax",
151     "remove_dir_all",
152     "rustc-demangle",
153     "rustc-hash",
154     "rustc-rayon",
155     "rustc-rayon-core",
156     "rustc_version",
157     "scoped-tls",
158     "scopeguard",
159     "semver",
160     "semver-parser",
161     "serde",
162     "serde_derive",
163     "sha-1",
164     "sha2",
165     "smallvec",
166     "snap",
167     "stable_deref_trait",
168     "stacker",
169     "syn",
170     "synstructure",
171     "tempfile",
172     "termcolor",
173     "termize",
174     "thread_local",
175     "tracing",
176     "tracing-attributes",
177     "tracing-core",
178     "typenum",
179     "unicode-normalization",
180     "unicode-script",
181     "unicode-security",
182     "unicode-width",
183     "unicode-xid",
184     "vcpkg",
185     "version_check",
186     "wasi",
187     "winapi",
188     "winapi-build",
189     "winapi-i686-pc-windows-gnu",
190     "winapi-util",
191     "winapi-x86_64-pc-windows-gnu",
192 ];
193
194 /// Dependency checks.
195 ///
196 /// `root` is path to the directory with the root `Cargo.toml` (for the workspace). `cargo` is path
197 /// to the cargo executable.
198 pub fn check(root: &Path, cargo: &Path, bad: &mut bool) {
199     let mut cmd = cargo_metadata::MetadataCommand::new();
200     cmd.cargo_path(cargo)
201         .manifest_path(root.join("Cargo.toml"))
202         .features(cargo_metadata::CargoOpt::AllFeatures);
203     let metadata = t!(cmd.exec());
204     check_exceptions(&metadata, bad);
205     check_dependencies(&metadata, bad);
206     check_crate_duplicate(&metadata, bad);
207 }
208
209 /// Check that all licenses are in the valid list in `LICENSES`.
210 ///
211 /// Packages listed in `EXCEPTIONS` are allowed for tools.
212 fn check_exceptions(metadata: &Metadata, bad: &mut bool) {
213     // Validate the EXCEPTIONS list hasn't changed.
214     for (name, license) in EXCEPTIONS {
215         // Check that the package actually exists.
216         if !metadata.packages.iter().any(|p| p.name == *name) {
217             tidy_error!(
218                 bad,
219                 "could not find exception package `{}`\n\
220                 Remove from EXCEPTIONS list if it is no longer used.",
221                 name
222             );
223         }
224         // Check that the license hasn't changed.
225         for pkg in metadata.packages.iter().filter(|p| p.name == *name) {
226             if pkg.name == "fuchsia-cprng" {
227                 // This package doesn't declare a license expression. Manual
228                 // inspection of the license file is necessary, which appears
229                 // to be BSD-3-Clause.
230                 assert!(pkg.license.is_none());
231                 continue;
232             }
233             match &pkg.license {
234                 None => {
235                     tidy_error!(
236                         bad,
237                         "dependency exception `{}` does not declare a license expression",
238                         pkg.id
239                     );
240                 }
241                 Some(pkg_license) => {
242                     if pkg_license.as_str() != *license {
243                         if *name == "crossbeam-queue"
244                             && *license == "MIT/Apache-2.0 AND BSD-2-Clause"
245                         {
246                             // We have two versions of crossbeam-queue and both
247                             // are fine.
248                             continue;
249                         }
250
251                         println!("dependency exception `{}` license has changed", name);
252                         println!("    previously `{}` now `{}`", license, pkg_license);
253                         println!("    update EXCEPTIONS for the new license");
254                         *bad = true;
255                     }
256                 }
257             }
258         }
259     }
260
261     let exception_names: Vec<_> = EXCEPTIONS.iter().map(|(name, _license)| *name).collect();
262     let runtime_ids = compute_runtime_crates(metadata);
263
264     // Check if any package does not have a valid license.
265     for pkg in &metadata.packages {
266         if pkg.source.is_none() {
267             // No need to check local packages.
268             continue;
269         }
270         if !runtime_ids.contains(&pkg.id) && exception_names.contains(&pkg.name.as_str()) {
271             continue;
272         }
273         let license = match &pkg.license {
274             Some(license) => license,
275             None => {
276                 tidy_error!(bad, "dependency `{}` does not define a license expression", pkg.id);
277                 continue;
278             }
279         };
280         if !LICENSES.contains(&license.as_str()) {
281             if pkg.name == "fortanix-sgx-abi" {
282                 // This is a specific exception because SGX is considered
283                 // "third party". See
284                 // https://github.com/rust-lang/rust/issues/62620 for more. In
285                 // general, these should never be added.
286                 continue;
287             }
288             tidy_error!(bad, "invalid license `{}` in `{}`", license, pkg.id);
289         }
290     }
291 }
292
293 /// Checks the dependency of `RESTRICTED_DEPENDENCY_CRATES` at the given path. Changes `bad` to
294 /// `true` if a check failed.
295 ///
296 /// Specifically, this checks that the dependencies are on the `PERMITTED_DEPENDENCIES`.
297 fn check_dependencies(metadata: &Metadata, bad: &mut bool) {
298     // Check that the PERMITTED_DEPENDENCIES does not have unused entries.
299     for name in PERMITTED_DEPENDENCIES {
300         if !metadata.packages.iter().any(|p| p.name == *name) {
301             tidy_error!(
302                 bad,
303                 "could not find allowed package `{}`\n\
304                 Remove from PERMITTED_DEPENDENCIES list if it is no longer used.",
305                 name
306             );
307         }
308     }
309     // Get the list in a convenient form.
310     let permitted_dependencies: HashSet<_> = PERMITTED_DEPENDENCIES.iter().cloned().collect();
311
312     // Check dependencies.
313     let mut visited = BTreeSet::new();
314     let mut unapproved = BTreeSet::new();
315     for &krate in RESTRICTED_DEPENDENCY_CRATES.iter() {
316         let pkg = pkg_from_name(metadata, krate);
317         let mut bad =
318             check_crate_dependencies(&permitted_dependencies, metadata, &mut visited, pkg);
319         unapproved.append(&mut bad);
320     }
321
322     if !unapproved.is_empty() {
323         tidy_error!(bad, "Dependencies not explicitly permitted:");
324         for dep in unapproved {
325             println!("* {}", dep);
326         }
327     }
328 }
329
330 /// Checks the dependencies of the given crate from the given cargo metadata to see if they are on
331 /// the list of permitted dependencies. Returns a list of disallowed dependencies.
332 fn check_crate_dependencies<'a>(
333     permitted_dependencies: &'a HashSet<&'static str>,
334     metadata: &'a Metadata,
335     visited: &mut BTreeSet<&'a PackageId>,
336     krate: &'a Package,
337 ) -> BTreeSet<&'a PackageId> {
338     // This will contain bad deps.
339     let mut unapproved = BTreeSet::new();
340
341     // Check if we have already visited this crate.
342     if visited.contains(&krate.id) {
343         return unapproved;
344     }
345
346     visited.insert(&krate.id);
347
348     // If this path is in-tree, we don't require it to be explicitly permitted.
349     if krate.source.is_some() {
350         // If this dependency is not on `PERMITTED_DEPENDENCIES`, add to bad set.
351         if !permitted_dependencies.contains(krate.name.as_str()) {
352             unapproved.insert(&krate.id);
353         }
354     }
355
356     // Do a DFS in the crate graph.
357     let to_check = deps_of(metadata, &krate.id);
358
359     for dep in to_check {
360         let mut bad = check_crate_dependencies(permitted_dependencies, metadata, visited, dep);
361         unapproved.append(&mut bad);
362     }
363
364     unapproved
365 }
366
367 /// Prevents multiple versions of some expensive crates.
368 fn check_crate_duplicate(metadata: &Metadata, bad: &mut bool) {
369     const FORBIDDEN_TO_HAVE_DUPLICATES: &[&str] = &[
370         // These two crates take quite a long time to build, so don't allow two versions of them
371         // to accidentally sneak into our dependency graph, in order to ensure we keep our CI times
372         // under control.
373         "cargo",
374         "rustc-ap-rustc_ast",
375     ];
376
377     for &name in FORBIDDEN_TO_HAVE_DUPLICATES {
378         let matches: Vec<_> = metadata.packages.iter().filter(|pkg| pkg.name == name).collect();
379         match matches.len() {
380             0 => {
381                 tidy_error!(
382                     bad,
383                     "crate `{}` is missing, update `check_crate_duplicate` \
384                     if it is no longer used",
385                     name
386                 );
387             }
388             1 => {}
389             _ => {
390                 tidy_error!(
391                     bad,
392                     "crate `{}` is duplicated in `Cargo.lock`, \
393                     it is too expensive to build multiple times, \
394                     so make sure only one version appears across all dependencies",
395                     name
396                 );
397                 for pkg in matches {
398                     println!("  * {}", pkg.id);
399                 }
400             }
401         }
402     }
403 }
404
405 /// Returns a list of dependencies for the given package.
406 fn deps_of<'a>(metadata: &'a Metadata, pkg_id: &'a PackageId) -> Vec<&'a Package> {
407     let resolve = metadata.resolve.as_ref().unwrap();
408     let node = resolve
409         .nodes
410         .iter()
411         .find(|n| &n.id == pkg_id)
412         .unwrap_or_else(|| panic!("could not find `{}` in resolve", pkg_id));
413     node.deps
414         .iter()
415         .map(|dep| {
416             metadata.packages.iter().find(|pkg| pkg.id == dep.pkg).unwrap_or_else(|| {
417                 panic!("could not find dep `{}` for pkg `{}` in resolve", dep.pkg, pkg_id)
418             })
419         })
420         .collect()
421 }
422
423 /// Finds a package with the given name.
424 fn pkg_from_name<'a>(metadata: &'a Metadata, name: &'static str) -> &'a Package {
425     let mut i = metadata.packages.iter().filter(|p| p.name == name);
426     let result =
427         i.next().unwrap_or_else(|| panic!("could not find package `{}` in package list", name));
428     assert!(i.next().is_none(), "more than one package found for `{}`", name);
429     result
430 }
431
432 /// Finds all the packages that are in the rust runtime.
433 fn compute_runtime_crates<'a>(metadata: &'a Metadata) -> HashSet<&'a PackageId> {
434     let resolve = metadata.resolve.as_ref().unwrap();
435     let mut result = HashSet::new();
436     for name in RUNTIME_CRATES {
437         let id = &pkg_from_name(metadata, name).id;
438         normal_deps_of_r(resolve, id, &mut result);
439     }
440     result
441 }
442
443 /// Recursively find all normal dependencies.
444 fn normal_deps_of_r<'a>(
445     resolve: &'a Resolve,
446     pkg_id: &'a PackageId,
447     result: &mut HashSet<&'a PackageId>,
448 ) {
449     if !result.insert(pkg_id) {
450         return;
451     }
452     let node = resolve
453         .nodes
454         .iter()
455         .find(|n| &n.id == pkg_id)
456         .unwrap_or_else(|| panic!("could not find `{}` in resolve", pkg_id));
457     // Don't care about dev-dependencies.
458     // Build dependencies *shouldn't* matter unless they do some kind of
459     // codegen. For now we'll assume they don't.
460     let deps = node.deps.iter().filter(|node_dep| {
461         node_dep
462             .dep_kinds
463             .iter()
464             .any(|kind_info| kind_info.kind == cargo_metadata::DependencyKind::Normal)
465     });
466     for dep in deps {
467         normal_deps_of_r(resolve, &dep.pkg, result);
468     }
469 }