]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_privacy/src/lib.rs
fix up subst_identity vs skip_binder; add some FIXMEs as identified in review
[rust.git] / compiler / rustc_privacy / src / lib.rs
1 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
2 #![feature(associated_type_defaults)]
3 #![feature(rustc_private)]
4 #![feature(try_blocks)]
5 #![feature(let_chains)]
6 #![recursion_limit = "256"]
7 #![deny(rustc::untranslatable_diagnostic)]
8 #![deny(rustc::diagnostic_outside_of_impl)]
9
10 #[macro_use]
11 extern crate tracing;
12
13 mod errors;
14
15 use rustc_ast::MacroDef;
16 use rustc_attr as attr;
17 use rustc_data_structures::fx::FxHashSet;
18 use rustc_data_structures::intern::Interned;
19 use rustc_hir as hir;
20 use rustc_hir::def::{DefKind, Res};
21 use rustc_hir::def_id::{DefId, LocalDefId, LocalDefIdSet, CRATE_DEF_ID};
22 use rustc_hir::intravisit::{self, Visitor};
23 use rustc_hir::{AssocItemKind, HirIdSet, ItemId, Node, PatKind};
24 use rustc_middle::bug;
25 use rustc_middle::hir::nested_filter;
26 use rustc_middle::middle::privacy::{EffectiveVisibilities, Level};
27 use rustc_middle::span_bug;
28 use rustc_middle::ty::query::Providers;
29 use rustc_middle::ty::subst::InternalSubsts;
30 use rustc_middle::ty::{self, Const, DefIdTree, GenericParamDefKind};
31 use rustc_middle::ty::{TraitRef, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitor};
32 use rustc_session::lint;
33 use rustc_span::hygiene::Transparency;
34 use rustc_span::symbol::{kw, sym, Ident};
35 use rustc_span::Span;
36
37 use std::marker::PhantomData;
38 use std::ops::ControlFlow;
39 use std::{cmp, fmt, mem};
40
41 use errors::{
42     FieldIsPrivate, FieldIsPrivateLabel, FromPrivateDependencyInPublicInterface, InPublicInterface,
43     InPublicInterfaceTraits, ItemIsPrivate, PrivateInPublicLint, ReportEffectiveVisibility,
44     UnnamedItemIsPrivate,
45 };
46
47 ////////////////////////////////////////////////////////////////////////////////
48 /// Generic infrastructure used to implement specific visitors below.
49 ////////////////////////////////////////////////////////////////////////////////
50
51 /// Implemented to visit all `DefId`s in a type.
52 /// Visiting `DefId`s is useful because visibilities and reachabilities are attached to them.
53 /// The idea is to visit "all components of a type", as documented in
54 /// <https://github.com/rust-lang/rfcs/blob/master/text/2145-type-privacy.md#how-to-determine-visibility-of-a-type>.
55 /// The default type visitor (`TypeVisitor`) does most of the job, but it has some shortcomings.
56 /// First, it doesn't have overridable `fn visit_trait_ref`, so we have to catch trait `DefId`s
57 /// manually. Second, it doesn't visit some type components like signatures of fn types, or traits
58 /// in `impl Trait`, see individual comments in `DefIdVisitorSkeleton::visit_ty`.
59 trait DefIdVisitor<'tcx> {
60     type BreakTy = ();
61
62     fn tcx(&self) -> TyCtxt<'tcx>;
63     fn shallow(&self) -> bool {
64         false
65     }
66     fn skip_assoc_tys(&self) -> bool {
67         false
68     }
69     fn visit_def_id(
70         &mut self,
71         def_id: DefId,
72         kind: &str,
73         descr: &dyn fmt::Display,
74     ) -> ControlFlow<Self::BreakTy>;
75
76     /// Not overridden, but used to actually visit types and traits.
77     fn skeleton(&mut self) -> DefIdVisitorSkeleton<'_, 'tcx, Self> {
78         DefIdVisitorSkeleton {
79             def_id_visitor: self,
80             visited_opaque_tys: Default::default(),
81             dummy: Default::default(),
82         }
83     }
84     fn visit(&mut self, ty_fragment: impl TypeVisitable<'tcx>) -> ControlFlow<Self::BreakTy> {
85         ty_fragment.visit_with(&mut self.skeleton())
86     }
87     fn visit_trait(&mut self, trait_ref: TraitRef<'tcx>) -> ControlFlow<Self::BreakTy> {
88         self.skeleton().visit_trait(trait_ref)
89     }
90     fn visit_projection_ty(&mut self, projection: ty::AliasTy<'tcx>) -> ControlFlow<Self::BreakTy> {
91         self.skeleton().visit_projection_ty(projection)
92     }
93     fn visit_predicates(
94         &mut self,
95         predicates: ty::GenericPredicates<'tcx>,
96     ) -> ControlFlow<Self::BreakTy> {
97         self.skeleton().visit_predicates(predicates)
98     }
99 }
100
101 struct DefIdVisitorSkeleton<'v, 'tcx, V: ?Sized> {
102     def_id_visitor: &'v mut V,
103     visited_opaque_tys: FxHashSet<DefId>,
104     dummy: PhantomData<TyCtxt<'tcx>>,
105 }
106
107 impl<'tcx, V> DefIdVisitorSkeleton<'_, 'tcx, V>
108 where
109     V: DefIdVisitor<'tcx> + ?Sized,
110 {
111     fn visit_trait(&mut self, trait_ref: TraitRef<'tcx>) -> ControlFlow<V::BreakTy> {
112         let TraitRef { def_id, substs, .. } = trait_ref;
113         self.def_id_visitor.visit_def_id(def_id, "trait", &trait_ref.print_only_trait_path())?;
114         if self.def_id_visitor.shallow() {
115             ControlFlow::Continue(())
116         } else {
117             substs.visit_with(self)
118         }
119     }
120
121     fn visit_projection_ty(&mut self, projection: ty::AliasTy<'tcx>) -> ControlFlow<V::BreakTy> {
122         let tcx = self.def_id_visitor.tcx();
123         let (trait_ref, assoc_substs) =
124             if tcx.def_kind(projection.def_id) != DefKind::ImplTraitPlaceholder {
125                 projection.trait_ref_and_own_substs(tcx)
126             } else {
127                 // HACK(RPITIT): Remove this when RPITITs are lowered to regular assoc tys
128                 let def_id = tcx.impl_trait_in_trait_parent(projection.def_id);
129                 let trait_generics = tcx.generics_of(def_id);
130                 (
131                     tcx.mk_trait_ref(def_id, projection.substs.truncate_to(tcx, trait_generics)),
132                     &projection.substs[trait_generics.count()..],
133                 )
134             };
135         self.visit_trait(trait_ref)?;
136         if self.def_id_visitor.shallow() {
137             ControlFlow::Continue(())
138         } else {
139             assoc_substs.iter().try_for_each(|subst| subst.visit_with(self))
140         }
141     }
142
143     fn visit_predicate(&mut self, predicate: ty::Predicate<'tcx>) -> ControlFlow<V::BreakTy> {
144         match predicate.kind().skip_binder() {
145             ty::PredicateKind::Clause(ty::Clause::Trait(ty::TraitPredicate {
146                 trait_ref,
147                 constness: _,
148                 polarity: _,
149             })) => self.visit_trait(trait_ref),
150             ty::PredicateKind::Clause(ty::Clause::Projection(ty::ProjectionPredicate {
151                 projection_ty,
152                 term,
153             })) => {
154                 term.visit_with(self)?;
155                 self.visit_projection_ty(projection_ty)
156             }
157             ty::PredicateKind::Clause(ty::Clause::TypeOutlives(ty::OutlivesPredicate(
158                 ty,
159                 _region,
160             ))) => ty.visit_with(self),
161             ty::PredicateKind::Clause(ty::Clause::RegionOutlives(..)) => ControlFlow::Continue(()),
162             ty::PredicateKind::ConstEvaluatable(ct) => ct.visit_with(self),
163             ty::PredicateKind::WellFormed(arg) => arg.visit_with(self),
164             _ => bug!("unexpected predicate: {:?}", predicate),
165         }
166     }
167
168     fn visit_predicates(
169         &mut self,
170         predicates: ty::GenericPredicates<'tcx>,
171     ) -> ControlFlow<V::BreakTy> {
172         let ty::GenericPredicates { parent: _, predicates } = predicates;
173         predicates.iter().try_for_each(|&(predicate, _span)| self.visit_predicate(predicate))
174     }
175 }
176
177 impl<'tcx, V> TypeVisitor<'tcx> for DefIdVisitorSkeleton<'_, 'tcx, V>
178 where
179     V: DefIdVisitor<'tcx> + ?Sized,
180 {
181     type BreakTy = V::BreakTy;
182
183     fn visit_ty(&mut self, ty: Ty<'tcx>) -> ControlFlow<V::BreakTy> {
184         let tcx = self.def_id_visitor.tcx();
185         // InternalSubsts are not visited here because they are visited below
186         // in `super_visit_with`.
187         match *ty.kind() {
188             ty::Adt(ty::AdtDef(Interned(&ty::AdtDefData { did: def_id, .. }, _)), ..)
189             | ty::Foreign(def_id)
190             | ty::FnDef(def_id, ..)
191             | ty::Closure(def_id, ..)
192             | ty::Generator(def_id, ..) => {
193                 self.def_id_visitor.visit_def_id(def_id, "type", &ty)?;
194                 if self.def_id_visitor.shallow() {
195                     return ControlFlow::Continue(());
196                 }
197                 // Default type visitor doesn't visit signatures of fn types.
198                 // Something like `fn() -> Priv {my_func}` is considered a private type even if
199                 // `my_func` is public, so we need to visit signatures.
200                 if let ty::FnDef(..) = ty.kind() {
201                     // FIXME: this should probably use `substs` from `FnDef`
202                     tcx.fn_sig(def_id).subst_identity().visit_with(self)?;
203                 }
204                 // Inherent static methods don't have self type in substs.
205                 // Something like `fn() {my_method}` type of the method
206                 // `impl Pub<Priv> { pub fn my_method() {} }` is considered a private type,
207                 // so we need to visit the self type additionally.
208                 if let Some(assoc_item) = tcx.opt_associated_item(def_id) {
209                     if let Some(impl_def_id) = assoc_item.impl_container(tcx) {
210                         tcx.type_of(impl_def_id).visit_with(self)?;
211                     }
212                 }
213             }
214             ty::Alias(ty::Projection, proj) => {
215                 if self.def_id_visitor.skip_assoc_tys() {
216                     // Visitors searching for minimal visibility/reachability want to
217                     // conservatively approximate associated types like `<Type as Trait>::Alias`
218                     // as visible/reachable even if both `Type` and `Trait` are private.
219                     // Ideally, associated types should be substituted in the same way as
220                     // free type aliases, but this isn't done yet.
221                     return ControlFlow::Continue(());
222                 }
223                 // This will also visit substs if necessary, so we don't need to recurse.
224                 return self.visit_projection_ty(proj);
225             }
226             ty::Dynamic(predicates, ..) => {
227                 // All traits in the list are considered the "primary" part of the type
228                 // and are visited by shallow visitors.
229                 for predicate in predicates {
230                     let trait_ref = match predicate.skip_binder() {
231                         ty::ExistentialPredicate::Trait(trait_ref) => trait_ref,
232                         ty::ExistentialPredicate::Projection(proj) => proj.trait_ref(tcx),
233                         ty::ExistentialPredicate::AutoTrait(def_id) => {
234                             ty::ExistentialTraitRef { def_id, substs: InternalSubsts::empty() }
235                         }
236                     };
237                     let ty::ExistentialTraitRef { def_id, substs: _ } = trait_ref;
238                     self.def_id_visitor.visit_def_id(def_id, "trait", &trait_ref)?;
239                 }
240             }
241             ty::Alias(ty::Opaque, ty::AliasTy { def_id, .. }) => {
242                 // Skip repeated `Opaque`s to avoid infinite recursion.
243                 if self.visited_opaque_tys.insert(def_id) {
244                     // The intent is to treat `impl Trait1 + Trait2` identically to
245                     // `dyn Trait1 + Trait2`. Therefore we ignore def-id of the opaque type itself
246                     // (it either has no visibility, or its visibility is insignificant, like
247                     // visibilities of type aliases) and recurse into bounds instead to go
248                     // through the trait list (default type visitor doesn't visit those traits).
249                     // All traits in the list are considered the "primary" part of the type
250                     // and are visited by shallow visitors.
251                     self.visit_predicates(ty::GenericPredicates {
252                         parent: None,
253                         predicates: tcx.explicit_item_bounds(def_id),
254                     })?;
255                 }
256             }
257             // These types don't have their own def-ids (but may have subcomponents
258             // with def-ids that should be visited recursively).
259             ty::Bool
260             | ty::Char
261             | ty::Int(..)
262             | ty::Uint(..)
263             | ty::Float(..)
264             | ty::Str
265             | ty::Never
266             | ty::Array(..)
267             | ty::Slice(..)
268             | ty::Tuple(..)
269             | ty::RawPtr(..)
270             | ty::Ref(..)
271             | ty::FnPtr(..)
272             | ty::Param(..)
273             | ty::Error(_)
274             | ty::GeneratorWitness(..) => {}
275             ty::Bound(..) | ty::Placeholder(..) | ty::Infer(..) => {
276                 bug!("unexpected type: {:?}", ty)
277             }
278         }
279
280         if self.def_id_visitor.shallow() {
281             ControlFlow::Continue(())
282         } else {
283             ty.super_visit_with(self)
284         }
285     }
286
287     fn visit_const(&mut self, c: Const<'tcx>) -> ControlFlow<Self::BreakTy> {
288         let tcx = self.def_id_visitor.tcx();
289         tcx.expand_abstract_consts(c).super_visit_with(self)
290     }
291 }
292
293 fn min(vis1: ty::Visibility, vis2: ty::Visibility, tcx: TyCtxt<'_>) -> ty::Visibility {
294     if vis1.is_at_least(vis2, tcx) { vis2 } else { vis1 }
295 }
296
297 ////////////////////////////////////////////////////////////////////////////////
298 /// Visitor used to determine impl visibility and reachability.
299 ////////////////////////////////////////////////////////////////////////////////
300
301 struct FindMin<'a, 'tcx, VL: VisibilityLike> {
302     tcx: TyCtxt<'tcx>,
303     effective_visibilities: &'a EffectiveVisibilities,
304     min: VL,
305 }
306
307 impl<'a, 'tcx, VL: VisibilityLike> DefIdVisitor<'tcx> for FindMin<'a, 'tcx, VL> {
308     fn tcx(&self) -> TyCtxt<'tcx> {
309         self.tcx
310     }
311     fn shallow(&self) -> bool {
312         VL::SHALLOW
313     }
314     fn skip_assoc_tys(&self) -> bool {
315         true
316     }
317     fn visit_def_id(
318         &mut self,
319         def_id: DefId,
320         _kind: &str,
321         _descr: &dyn fmt::Display,
322     ) -> ControlFlow<Self::BreakTy> {
323         if let Some(def_id) = def_id.as_local() {
324             self.min = VL::new_min(self, def_id);
325         }
326         ControlFlow::Continue(())
327     }
328 }
329
330 trait VisibilityLike: Sized {
331     const MAX: Self;
332     const SHALLOW: bool = false;
333     fn new_min(find: &FindMin<'_, '_, Self>, def_id: LocalDefId) -> Self;
334
335     // Returns an over-approximation (`skip_assoc_tys` = true) of visibility due to
336     // associated types for which we can't determine visibility precisely.
337     fn of_impl(
338         def_id: LocalDefId,
339         tcx: TyCtxt<'_>,
340         effective_visibilities: &EffectiveVisibilities,
341     ) -> Self {
342         let mut find = FindMin { tcx, effective_visibilities, min: Self::MAX };
343         find.visit(tcx.type_of(def_id));
344         if let Some(trait_ref) = tcx.impl_trait_ref(def_id) {
345             find.visit_trait(trait_ref.subst_identity());
346         }
347         find.min
348     }
349 }
350 impl VisibilityLike for ty::Visibility {
351     const MAX: Self = ty::Visibility::Public;
352     fn new_min(find: &FindMin<'_, '_, Self>, def_id: LocalDefId) -> Self {
353         min(find.tcx.local_visibility(def_id), find.min, find.tcx)
354     }
355 }
356 impl VisibilityLike for Option<Level> {
357     const MAX: Self = Some(Level::Direct);
358     // Type inference is very smart sometimes.
359     // It can make an impl reachable even some components of its type or trait are unreachable.
360     // E.g. methods of `impl ReachableTrait<UnreachableTy> for ReachableTy<UnreachableTy> { ... }`
361     // can be usable from other crates (#57264). So we skip substs when calculating reachability
362     // and consider an impl reachable if its "shallow" type and trait are reachable.
363     //
364     // The assumption we make here is that type-inference won't let you use an impl without knowing
365     // both "shallow" version of its self type and "shallow" version of its trait if it exists
366     // (which require reaching the `DefId`s in them).
367     const SHALLOW: bool = true;
368     fn new_min(find: &FindMin<'_, '_, Self>, def_id: LocalDefId) -> Self {
369         cmp::min(find.effective_visibilities.public_at_level(def_id), find.min)
370     }
371 }
372
373 ////////////////////////////////////////////////////////////////////////////////
374 /// The embargo visitor, used to determine the exports of the AST.
375 ////////////////////////////////////////////////////////////////////////////////
376
377 struct EmbargoVisitor<'tcx> {
378     tcx: TyCtxt<'tcx>,
379
380     /// Effective visibilities for reachable nodes.
381     effective_visibilities: EffectiveVisibilities,
382     /// A set of pairs corresponding to modules, where the first module is
383     /// reachable via a macro that's defined in the second module. This cannot
384     /// be represented as reachable because it can't handle the following case:
385     ///
386     /// pub mod n {                         // Should be `Public`
387     ///     pub(crate) mod p {              // Should *not* be accessible
388     ///         pub fn f() -> i32 { 12 }    // Must be `Reachable`
389     ///     }
390     /// }
391     /// pub macro m() {
392     ///     n::p::f()
393     /// }
394     macro_reachable: FxHashSet<(LocalDefId, LocalDefId)>,
395     /// Previous visibility level; `None` means unreachable.
396     prev_level: Option<Level>,
397     /// Has something changed in the level map?
398     changed: bool,
399 }
400
401 struct ReachEverythingInTheInterfaceVisitor<'a, 'tcx> {
402     level: Option<Level>,
403     item_def_id: LocalDefId,
404     ev: &'a mut EmbargoVisitor<'tcx>,
405 }
406
407 impl<'tcx> EmbargoVisitor<'tcx> {
408     fn get(&self, def_id: LocalDefId) -> Option<Level> {
409         self.effective_visibilities.public_at_level(def_id)
410     }
411
412     /// Updates node level and returns the updated level.
413     fn update(&mut self, def_id: LocalDefId, level: Option<Level>) -> Option<Level> {
414         let old_level = self.get(def_id);
415         // Visibility levels can only grow.
416         if level > old_level {
417             self.effective_visibilities.set_public_at_level(
418                 def_id,
419                 || ty::Visibility::Restricted(self.tcx.parent_module_from_def_id(def_id)),
420                 level.unwrap(),
421             );
422             self.changed = true;
423             level
424         } else {
425             old_level
426         }
427     }
428
429     fn reach(
430         &mut self,
431         def_id: LocalDefId,
432         level: Option<Level>,
433     ) -> ReachEverythingInTheInterfaceVisitor<'_, 'tcx> {
434         ReachEverythingInTheInterfaceVisitor {
435             level: cmp::min(level, Some(Level::Reachable)),
436             item_def_id: def_id,
437             ev: self,
438         }
439     }
440
441     // We have to make sure that the items that macros might reference
442     // are reachable, since they might be exported transitively.
443     fn update_reachability_from_macro(&mut self, local_def_id: LocalDefId, md: &MacroDef) {
444         // Non-opaque macros cannot make other items more accessible than they already are.
445
446         let hir_id = self.tcx.hir().local_def_id_to_hir_id(local_def_id);
447         let attrs = self.tcx.hir().attrs(hir_id);
448         if attr::find_transparency(attrs, md.macro_rules).0 != Transparency::Opaque {
449             return;
450         }
451
452         let macro_module_def_id = self.tcx.local_parent(local_def_id);
453         if self.tcx.opt_def_kind(macro_module_def_id) != Some(DefKind::Mod) {
454             // The macro's parent doesn't correspond to a `mod`, return early (#63164, #65252).
455             return;
456         }
457
458         if self.get(local_def_id).is_none() {
459             return;
460         }
461
462         // Since we are starting from an externally visible module,
463         // all the parents in the loop below are also guaranteed to be modules.
464         let mut module_def_id = macro_module_def_id;
465         loop {
466             let changed_reachability =
467                 self.update_macro_reachable(module_def_id, macro_module_def_id);
468             if changed_reachability || module_def_id == CRATE_DEF_ID {
469                 break;
470             }
471             module_def_id = self.tcx.local_parent(module_def_id);
472         }
473     }
474
475     /// Updates the item as being reachable through a macro defined in the given
476     /// module. Returns `true` if the level has changed.
477     fn update_macro_reachable(
478         &mut self,
479         module_def_id: LocalDefId,
480         defining_mod: LocalDefId,
481     ) -> bool {
482         if self.macro_reachable.insert((module_def_id, defining_mod)) {
483             self.update_macro_reachable_mod(module_def_id, defining_mod);
484             true
485         } else {
486             false
487         }
488     }
489
490     fn update_macro_reachable_mod(&mut self, module_def_id: LocalDefId, defining_mod: LocalDefId) {
491         let module = self.tcx.hir().get_module(module_def_id).0;
492         for item_id in module.item_ids {
493             let def_kind = self.tcx.def_kind(item_id.owner_id);
494             let vis = self.tcx.local_visibility(item_id.owner_id.def_id);
495             self.update_macro_reachable_def(item_id.owner_id.def_id, def_kind, vis, defining_mod);
496         }
497         if let Some(exports) = self.tcx.module_reexports(module_def_id) {
498             for export in exports {
499                 if export.vis.is_accessible_from(defining_mod, self.tcx) {
500                     if let Res::Def(def_kind, def_id) = export.res {
501                         if let Some(def_id) = def_id.as_local() {
502                             let vis = self.tcx.local_visibility(def_id);
503                             self.update_macro_reachable_def(def_id, def_kind, vis, defining_mod);
504                         }
505                     }
506                 }
507             }
508         }
509     }
510
511     fn update_macro_reachable_def(
512         &mut self,
513         def_id: LocalDefId,
514         def_kind: DefKind,
515         vis: ty::Visibility,
516         module: LocalDefId,
517     ) {
518         let level = Some(Level::Reachable);
519         if vis.is_public() {
520             self.update(def_id, level);
521         }
522         match def_kind {
523             // No type privacy, so can be directly marked as reachable.
524             DefKind::Const | DefKind::Static(_) | DefKind::TraitAlias | DefKind::TyAlias => {
525                 if vis.is_accessible_from(module, self.tcx) {
526                     self.update(def_id, level);
527                 }
528             }
529
530             // Hygiene isn't really implemented for `macro_rules!` macros at the
531             // moment. Accordingly, marking them as reachable is unwise. `macro` macros
532             // have normal hygiene, so we can treat them like other items without type
533             // privacy and mark them reachable.
534             DefKind::Macro(_) => {
535                 let item = self.tcx.hir().expect_item(def_id);
536                 if let hir::ItemKind::Macro(MacroDef { macro_rules: false, .. }, _) = item.kind {
537                     if vis.is_accessible_from(module, self.tcx) {
538                         self.update(def_id, level);
539                     }
540                 }
541             }
542
543             // We can't use a module name as the final segment of a path, except
544             // in use statements. Since re-export checking doesn't consider
545             // hygiene these don't need to be marked reachable. The contents of
546             // the module, however may be reachable.
547             DefKind::Mod => {
548                 if vis.is_accessible_from(module, self.tcx) {
549                     self.update_macro_reachable(def_id, module);
550                 }
551             }
552
553             DefKind::Struct | DefKind::Union => {
554                 // While structs and unions have type privacy, their fields do not.
555                 if vis.is_public() {
556                     let item = self.tcx.hir().expect_item(def_id);
557                     if let hir::ItemKind::Struct(ref struct_def, _)
558                     | hir::ItemKind::Union(ref struct_def, _) = item.kind
559                     {
560                         for field in struct_def.fields() {
561                             let field_vis = self.tcx.local_visibility(field.def_id);
562                             if field_vis.is_accessible_from(module, self.tcx) {
563                                 self.reach(field.def_id, level).ty();
564                             }
565                         }
566                     } else {
567                         bug!("item {:?} with DefKind {:?}", item, def_kind);
568                     }
569                 }
570             }
571
572             // These have type privacy, so are not reachable unless they're
573             // public, or are not namespaced at all.
574             DefKind::AssocConst
575             | DefKind::AssocTy
576             | DefKind::ConstParam
577             | DefKind::Ctor(_, _)
578             | DefKind::Enum
579             | DefKind::ForeignTy
580             | DefKind::Fn
581             | DefKind::OpaqueTy
582             | DefKind::ImplTraitPlaceholder
583             | DefKind::AssocFn
584             | DefKind::Trait
585             | DefKind::TyParam
586             | DefKind::Variant
587             | DefKind::LifetimeParam
588             | DefKind::ExternCrate
589             | DefKind::Use
590             | DefKind::ForeignMod
591             | DefKind::AnonConst
592             | DefKind::InlineConst
593             | DefKind::Field
594             | DefKind::GlobalAsm
595             | DefKind::Impl
596             | DefKind::Closure
597             | DefKind::Generator => (),
598         }
599     }
600 }
601
602 impl<'tcx> Visitor<'tcx> for EmbargoVisitor<'tcx> {
603     type NestedFilter = nested_filter::All;
604
605     /// We want to visit items in the context of their containing
606     /// module and so forth, so supply a crate for doing a deep walk.
607     fn nested_visit_map(&mut self) -> Self::Map {
608         self.tcx.hir()
609     }
610
611     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
612         let item_level = match item.kind {
613             hir::ItemKind::Impl { .. } => {
614                 let impl_level = Option::<Level>::of_impl(
615                     item.owner_id.def_id,
616                     self.tcx,
617                     &self.effective_visibilities,
618                 );
619                 self.update(item.owner_id.def_id, impl_level)
620             }
621             _ => self.get(item.owner_id.def_id),
622         };
623
624         // Update levels of nested things.
625         match item.kind {
626             hir::ItemKind::Enum(ref def, _) => {
627                 for variant in def.variants {
628                     let variant_level = self.update(variant.def_id, item_level);
629                     if let Some(ctor_def_id) = variant.data.ctor_def_id() {
630                         self.update(ctor_def_id, item_level);
631                     }
632                     for field in variant.data.fields() {
633                         self.update(field.def_id, variant_level);
634                     }
635                 }
636             }
637             hir::ItemKind::Impl(ref impl_) => {
638                 for impl_item_ref in impl_.items {
639                     if impl_.of_trait.is_some()
640                         || self.tcx.visibility(impl_item_ref.id.owner_id).is_public()
641                     {
642                         self.update(impl_item_ref.id.owner_id.def_id, item_level);
643                     }
644                 }
645             }
646             hir::ItemKind::Trait(.., trait_item_refs) => {
647                 for trait_item_ref in trait_item_refs {
648                     self.update(trait_item_ref.id.owner_id.def_id, item_level);
649                 }
650             }
651             hir::ItemKind::Struct(ref def, _) | hir::ItemKind::Union(ref def, _) => {
652                 if let Some(ctor_def_id) = def.ctor_def_id() {
653                     self.update(ctor_def_id, item_level);
654                 }
655                 for field in def.fields() {
656                     let vis = self.tcx.visibility(field.def_id);
657                     if vis.is_public() {
658                         self.update(field.def_id, item_level);
659                     }
660                 }
661             }
662             hir::ItemKind::Macro(ref macro_def, _) => {
663                 self.update_reachability_from_macro(item.owner_id.def_id, macro_def);
664             }
665             hir::ItemKind::ForeignMod { items, .. } => {
666                 for foreign_item in items {
667                     if self.tcx.visibility(foreign_item.id.owner_id).is_public() {
668                         self.update(foreign_item.id.owner_id.def_id, item_level);
669                     }
670                 }
671             }
672
673             hir::ItemKind::OpaqueTy(..)
674             | hir::ItemKind::Use(..)
675             | hir::ItemKind::Static(..)
676             | hir::ItemKind::Const(..)
677             | hir::ItemKind::GlobalAsm(..)
678             | hir::ItemKind::TyAlias(..)
679             | hir::ItemKind::Mod(..)
680             | hir::ItemKind::TraitAlias(..)
681             | hir::ItemKind::Fn(..)
682             | hir::ItemKind::ExternCrate(..) => {}
683         }
684
685         // Mark all items in interfaces of reachable items as reachable.
686         match item.kind {
687             // The interface is empty.
688             hir::ItemKind::Macro(..) | hir::ItemKind::ExternCrate(..) => {}
689             // All nested items are checked by `visit_item`.
690             hir::ItemKind::Mod(..) => {}
691             // Handled in `rustc_resolve`.
692             hir::ItemKind::Use(..) => {}
693             // The interface is empty.
694             hir::ItemKind::GlobalAsm(..) => {}
695             hir::ItemKind::OpaqueTy(ref opaque) => {
696                 // HACK(jynelson): trying to infer the type of `impl trait` breaks `async-std` (and `pub async fn` in general)
697                 // Since rustdoc never needs to do codegen and doesn't care about link-time reachability,
698                 // mark this as unreachable.
699                 // See https://github.com/rust-lang/rust/issues/75100
700                 if !opaque.in_trait && !self.tcx.sess.opts.actually_rustdoc {
701                     // FIXME: This is some serious pessimization intended to workaround deficiencies
702                     // in the reachability pass (`middle/reachable.rs`). Types are marked as link-time
703                     // reachable if they are returned via `impl Trait`, even from private functions.
704                     let exist_level = cmp::max(item_level, Some(Level::ReachableThroughImplTrait));
705                     self.reach(item.owner_id.def_id, exist_level).generics().predicates().ty();
706                 }
707             }
708             // Visit everything.
709             hir::ItemKind::Const(..)
710             | hir::ItemKind::Static(..)
711             | hir::ItemKind::Fn(..)
712             | hir::ItemKind::TyAlias(..) => {
713                 if item_level.is_some() {
714                     self.reach(item.owner_id.def_id, item_level).generics().predicates().ty();
715                 }
716             }
717             hir::ItemKind::Trait(.., trait_item_refs) => {
718                 if item_level.is_some() {
719                     self.reach(item.owner_id.def_id, item_level).generics().predicates();
720
721                     for trait_item_ref in trait_item_refs {
722                         let tcx = self.tcx;
723                         let mut reach = self.reach(trait_item_ref.id.owner_id.def_id, item_level);
724                         reach.generics().predicates();
725
726                         if trait_item_ref.kind == AssocItemKind::Type
727                             && !tcx.impl_defaultness(trait_item_ref.id.owner_id).has_value()
728                         {
729                             // No type to visit.
730                         } else {
731                             reach.ty();
732                         }
733                     }
734                 }
735             }
736             hir::ItemKind::TraitAlias(..) => {
737                 if item_level.is_some() {
738                     self.reach(item.owner_id.def_id, item_level).generics().predicates();
739                 }
740             }
741             // Visit everything except for private impl items.
742             hir::ItemKind::Impl(ref impl_) => {
743                 if item_level.is_some() {
744                     self.reach(item.owner_id.def_id, item_level)
745                         .generics()
746                         .predicates()
747                         .ty()
748                         .trait_ref();
749
750                     for impl_item_ref in impl_.items {
751                         let impl_item_level = self.get(impl_item_ref.id.owner_id.def_id);
752                         if impl_item_level.is_some() {
753                             self.reach(impl_item_ref.id.owner_id.def_id, impl_item_level)
754                                 .generics()
755                                 .predicates()
756                                 .ty();
757                         }
758                     }
759                 }
760             }
761
762             // Visit everything, but enum variants have their own levels.
763             hir::ItemKind::Enum(ref def, _) => {
764                 if item_level.is_some() {
765                     self.reach(item.owner_id.def_id, item_level).generics().predicates();
766                 }
767                 for variant in def.variants {
768                     let variant_level = self.get(variant.def_id);
769                     if variant_level.is_some() {
770                         for field in variant.data.fields() {
771                             self.reach(field.def_id, variant_level).ty();
772                         }
773                         // Corner case: if the variant is reachable, but its
774                         // enum is not, make the enum reachable as well.
775                         self.reach(item.owner_id.def_id, variant_level).ty();
776                     }
777                     if let Some(ctor_def_id) = variant.data.ctor_def_id() {
778                         let ctor_level = self.get(ctor_def_id);
779                         if ctor_level.is_some() {
780                             self.reach(item.owner_id.def_id, ctor_level).ty();
781                         }
782                     }
783                 }
784             }
785             // Visit everything, but foreign items have their own levels.
786             hir::ItemKind::ForeignMod { items, .. } => {
787                 for foreign_item in items {
788                     let foreign_item_level = self.get(foreign_item.id.owner_id.def_id);
789                     if foreign_item_level.is_some() {
790                         self.reach(foreign_item.id.owner_id.def_id, foreign_item_level)
791                             .generics()
792                             .predicates()
793                             .ty();
794                     }
795                 }
796             }
797             // Visit everything except for private fields.
798             hir::ItemKind::Struct(ref struct_def, _) | hir::ItemKind::Union(ref struct_def, _) => {
799                 if item_level.is_some() {
800                     self.reach(item.owner_id.def_id, item_level).generics().predicates();
801                     for field in struct_def.fields() {
802                         let field_level = self.get(field.def_id);
803                         if field_level.is_some() {
804                             self.reach(field.def_id, field_level).ty();
805                         }
806                     }
807                 }
808                 if let Some(ctor_def_id) = struct_def.ctor_def_id() {
809                     let ctor_level = self.get(ctor_def_id);
810                     if ctor_level.is_some() {
811                         self.reach(item.owner_id.def_id, ctor_level).ty();
812                     }
813                 }
814             }
815         }
816
817         let orig_level = mem::replace(&mut self.prev_level, item_level);
818         intravisit::walk_item(self, item);
819         self.prev_level = orig_level;
820     }
821
822     fn visit_block(&mut self, b: &'tcx hir::Block<'tcx>) {
823         // Blocks can have public items, for example impls, but they always
824         // start as completely private regardless of publicity of a function,
825         // constant, type, field, etc., in which this block resides.
826         let orig_level = mem::replace(&mut self.prev_level, None);
827         intravisit::walk_block(self, b);
828         self.prev_level = orig_level;
829     }
830 }
831
832 impl ReachEverythingInTheInterfaceVisitor<'_, '_> {
833     fn generics(&mut self) -> &mut Self {
834         for param in &self.ev.tcx.generics_of(self.item_def_id).params {
835             match param.kind {
836                 GenericParamDefKind::Lifetime => {}
837                 GenericParamDefKind::Type { has_default, .. } => {
838                     if has_default {
839                         self.visit(self.ev.tcx.type_of(param.def_id));
840                     }
841                 }
842                 GenericParamDefKind::Const { has_default } => {
843                     self.visit(self.ev.tcx.type_of(param.def_id));
844                     if has_default {
845                         self.visit(self.ev.tcx.const_param_default(param.def_id).subst_identity());
846                     }
847                 }
848             }
849         }
850         self
851     }
852
853     fn predicates(&mut self) -> &mut Self {
854         self.visit_predicates(self.ev.tcx.predicates_of(self.item_def_id));
855         self
856     }
857
858     fn ty(&mut self) -> &mut Self {
859         self.visit(self.ev.tcx.type_of(self.item_def_id));
860         self
861     }
862
863     fn trait_ref(&mut self) -> &mut Self {
864         if let Some(trait_ref) = self.ev.tcx.impl_trait_ref(self.item_def_id) {
865             self.visit_trait(trait_ref.subst_identity());
866         }
867         self
868     }
869 }
870
871 impl<'tcx> DefIdVisitor<'tcx> for ReachEverythingInTheInterfaceVisitor<'_, 'tcx> {
872     fn tcx(&self) -> TyCtxt<'tcx> {
873         self.ev.tcx
874     }
875     fn visit_def_id(
876         &mut self,
877         def_id: DefId,
878         _kind: &str,
879         _descr: &dyn fmt::Display,
880     ) -> ControlFlow<Self::BreakTy> {
881         if let Some(def_id) = def_id.as_local() {
882             if let (ty::Visibility::Public, _) | (_, Some(Level::ReachableThroughImplTrait)) =
883                 (self.tcx().visibility(def_id.to_def_id()), self.level)
884             {
885                 self.ev.update(def_id, self.level);
886             }
887         }
888         ControlFlow::Continue(())
889     }
890 }
891
892 ////////////////////////////////////////////////////////////////////////////////
893 /// Visitor, used for EffectiveVisibilities table checking
894 ////////////////////////////////////////////////////////////////////////////////
895 pub struct TestReachabilityVisitor<'tcx, 'a> {
896     tcx: TyCtxt<'tcx>,
897     effective_visibilities: &'a EffectiveVisibilities,
898 }
899
900 impl<'tcx, 'a> TestReachabilityVisitor<'tcx, 'a> {
901     fn effective_visibility_diagnostic(&mut self, def_id: LocalDefId) {
902         if self.tcx.has_attr(def_id.to_def_id(), sym::rustc_effective_visibility) {
903             let mut error_msg = String::new();
904             let span = self.tcx.def_span(def_id.to_def_id());
905             if let Some(effective_vis) = self.effective_visibilities.effective_vis(def_id) {
906                 for level in Level::all_levels() {
907                     let vis_str = match effective_vis.at_level(level) {
908                         ty::Visibility::Restricted(restricted_id) => {
909                             if restricted_id.is_top_level_module() {
910                                 "pub(crate)".to_string()
911                             } else if *restricted_id == self.tcx.parent_module_from_def_id(def_id) {
912                                 "pub(self)".to_string()
913                             } else {
914                                 format!("pub({})", self.tcx.item_name(restricted_id.to_def_id()))
915                             }
916                         }
917                         ty::Visibility::Public => "pub".to_string(),
918                     };
919                     if level != Level::Direct {
920                         error_msg.push_str(", ");
921                     }
922                     error_msg.push_str(&format!("{level:?}: {vis_str}"));
923                 }
924             } else {
925                 error_msg.push_str("not in the table");
926             }
927             self.tcx.sess.emit_err(ReportEffectiveVisibility { span, descr: error_msg });
928         }
929     }
930 }
931
932 impl<'tcx, 'a> Visitor<'tcx> for TestReachabilityVisitor<'tcx, 'a> {
933     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
934         self.effective_visibility_diagnostic(item.owner_id.def_id);
935
936         match item.kind {
937             hir::ItemKind::Enum(ref def, _) => {
938                 for variant in def.variants.iter() {
939                     self.effective_visibility_diagnostic(variant.def_id);
940                     if let Some(ctor_def_id) = variant.data.ctor_def_id() {
941                         self.effective_visibility_diagnostic(ctor_def_id);
942                     }
943                     for field in variant.data.fields() {
944                         self.effective_visibility_diagnostic(field.def_id);
945                     }
946                 }
947             }
948             hir::ItemKind::Struct(ref def, _) | hir::ItemKind::Union(ref def, _) => {
949                 if let Some(ctor_def_id) = def.ctor_def_id() {
950                     self.effective_visibility_diagnostic(ctor_def_id);
951                 }
952                 for field in def.fields() {
953                     self.effective_visibility_diagnostic(field.def_id);
954                 }
955             }
956             _ => {}
957         }
958     }
959
960     fn visit_trait_item(&mut self, item: &'tcx hir::TraitItem<'tcx>) {
961         self.effective_visibility_diagnostic(item.owner_id.def_id);
962     }
963     fn visit_impl_item(&mut self, item: &'tcx hir::ImplItem<'tcx>) {
964         self.effective_visibility_diagnostic(item.owner_id.def_id);
965     }
966     fn visit_foreign_item(&mut self, item: &'tcx hir::ForeignItem<'tcx>) {
967         self.effective_visibility_diagnostic(item.owner_id.def_id);
968     }
969 }
970
971 //////////////////////////////////////////////////////////////////////////////////////
972 /// Name privacy visitor, checks privacy and reports violations.
973 /// Most of name privacy checks are performed during the main resolution phase,
974 /// or later in type checking when field accesses and associated items are resolved.
975 /// This pass performs remaining checks for fields in struct expressions and patterns.
976 //////////////////////////////////////////////////////////////////////////////////////
977
978 struct NamePrivacyVisitor<'tcx> {
979     tcx: TyCtxt<'tcx>,
980     maybe_typeck_results: Option<&'tcx ty::TypeckResults<'tcx>>,
981     current_item: LocalDefId,
982 }
983
984 impl<'tcx> NamePrivacyVisitor<'tcx> {
985     /// Gets the type-checking results for the current body.
986     /// As this will ICE if called outside bodies, only call when working with
987     /// `Expr` or `Pat` nodes (they are guaranteed to be found only in bodies).
988     #[track_caller]
989     fn typeck_results(&self) -> &'tcx ty::TypeckResults<'tcx> {
990         self.maybe_typeck_results
991             .expect("`NamePrivacyVisitor::typeck_results` called outside of body")
992     }
993
994     // Checks that a field in a struct constructor (expression or pattern) is accessible.
995     fn check_field(
996         &mut self,
997         use_ctxt: Span,        // syntax context of the field name at the use site
998         span: Span,            // span of the field pattern, e.g., `x: 0`
999         def: ty::AdtDef<'tcx>, // definition of the struct or enum
1000         field: &'tcx ty::FieldDef,
1001         in_update_syntax: bool,
1002     ) {
1003         if def.is_enum() {
1004             return;
1005         }
1006
1007         // definition of the field
1008         let ident = Ident::new(kw::Empty, use_ctxt);
1009         let hir_id = self.tcx.hir().local_def_id_to_hir_id(self.current_item);
1010         let def_id = self.tcx.adjust_ident_and_get_scope(ident, def.did(), hir_id).1;
1011         if !field.vis.is_accessible_from(def_id, self.tcx) {
1012             self.tcx.sess.emit_err(FieldIsPrivate {
1013                 span,
1014                 field_name: field.name,
1015                 variant_descr: def.variant_descr(),
1016                 def_path_str: self.tcx.def_path_str(def.did()),
1017                 label: if in_update_syntax {
1018                     FieldIsPrivateLabel::IsUpdateSyntax { span, field_name: field.name }
1019                 } else {
1020                     FieldIsPrivateLabel::Other { span }
1021                 },
1022             });
1023         }
1024     }
1025 }
1026
1027 impl<'tcx> Visitor<'tcx> for NamePrivacyVisitor<'tcx> {
1028     type NestedFilter = nested_filter::All;
1029
1030     /// We want to visit items in the context of their containing
1031     /// module and so forth, so supply a crate for doing a deep walk.
1032     fn nested_visit_map(&mut self) -> Self::Map {
1033         self.tcx.hir()
1034     }
1035
1036     fn visit_mod(&mut self, _m: &'tcx hir::Mod<'tcx>, _s: Span, _n: hir::HirId) {
1037         // Don't visit nested modules, since we run a separate visitor walk
1038         // for each module in `effective_visibilities`
1039     }
1040
1041     fn visit_nested_body(&mut self, body: hir::BodyId) {
1042         let old_maybe_typeck_results =
1043             self.maybe_typeck_results.replace(self.tcx.typeck_body(body));
1044         let body = self.tcx.hir().body(body);
1045         self.visit_body(body);
1046         self.maybe_typeck_results = old_maybe_typeck_results;
1047     }
1048
1049     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
1050         let orig_current_item = mem::replace(&mut self.current_item, item.owner_id.def_id);
1051         intravisit::walk_item(self, item);
1052         self.current_item = orig_current_item;
1053     }
1054
1055     fn visit_expr(&mut self, expr: &'tcx hir::Expr<'tcx>) {
1056         if let hir::ExprKind::Struct(qpath, fields, ref base) = expr.kind {
1057             let res = self.typeck_results().qpath_res(qpath, expr.hir_id);
1058             let adt = self.typeck_results().expr_ty(expr).ty_adt_def().unwrap();
1059             let variant = adt.variant_of_res(res);
1060             if let Some(base) = *base {
1061                 // If the expression uses FRU we need to make sure all the unmentioned fields
1062                 // are checked for privacy (RFC 736). Rather than computing the set of
1063                 // unmentioned fields, just check them all.
1064                 for (vf_index, variant_field) in variant.fields.iter().enumerate() {
1065                     let field = fields
1066                         .iter()
1067                         .find(|f| self.typeck_results().field_index(f.hir_id) == vf_index);
1068                     let (use_ctxt, span) = match field {
1069                         Some(field) => (field.ident.span, field.span),
1070                         None => (base.span, base.span),
1071                     };
1072                     self.check_field(use_ctxt, span, adt, variant_field, true);
1073                 }
1074             } else {
1075                 for field in fields {
1076                     let use_ctxt = field.ident.span;
1077                     let index = self.typeck_results().field_index(field.hir_id);
1078                     self.check_field(use_ctxt, field.span, adt, &variant.fields[index], false);
1079                 }
1080             }
1081         }
1082
1083         intravisit::walk_expr(self, expr);
1084     }
1085
1086     fn visit_pat(&mut self, pat: &'tcx hir::Pat<'tcx>) {
1087         if let PatKind::Struct(ref qpath, fields, _) = pat.kind {
1088             let res = self.typeck_results().qpath_res(qpath, pat.hir_id);
1089             let adt = self.typeck_results().pat_ty(pat).ty_adt_def().unwrap();
1090             let variant = adt.variant_of_res(res);
1091             for field in fields {
1092                 let use_ctxt = field.ident.span;
1093                 let index = self.typeck_results().field_index(field.hir_id);
1094                 self.check_field(use_ctxt, field.span, adt, &variant.fields[index], false);
1095             }
1096         }
1097
1098         intravisit::walk_pat(self, pat);
1099     }
1100 }
1101
1102 ////////////////////////////////////////////////////////////////////////////////////////////
1103 /// Type privacy visitor, checks types for privacy and reports violations.
1104 /// Both explicitly written types and inferred types of expressions and patterns are checked.
1105 /// Checks are performed on "semantic" types regardless of names and their hygiene.
1106 ////////////////////////////////////////////////////////////////////////////////////////////
1107
1108 struct TypePrivacyVisitor<'tcx> {
1109     tcx: TyCtxt<'tcx>,
1110     maybe_typeck_results: Option<&'tcx ty::TypeckResults<'tcx>>,
1111     current_item: LocalDefId,
1112     span: Span,
1113 }
1114
1115 impl<'tcx> TypePrivacyVisitor<'tcx> {
1116     /// Gets the type-checking results for the current body.
1117     /// As this will ICE if called outside bodies, only call when working with
1118     /// `Expr` or `Pat` nodes (they are guaranteed to be found only in bodies).
1119     #[track_caller]
1120     fn typeck_results(&self) -> &'tcx ty::TypeckResults<'tcx> {
1121         self.maybe_typeck_results
1122             .expect("`TypePrivacyVisitor::typeck_results` called outside of body")
1123     }
1124
1125     fn item_is_accessible(&self, did: DefId) -> bool {
1126         self.tcx.visibility(did).is_accessible_from(self.current_item, self.tcx)
1127     }
1128
1129     // Take node-id of an expression or pattern and check its type for privacy.
1130     fn check_expr_pat_type(&mut self, id: hir::HirId, span: Span) -> bool {
1131         self.span = span;
1132         let typeck_results = self.typeck_results();
1133         let result: ControlFlow<()> = try {
1134             self.visit(typeck_results.node_type(id))?;
1135             self.visit(typeck_results.node_substs(id))?;
1136             if let Some(adjustments) = typeck_results.adjustments().get(id) {
1137                 adjustments.iter().try_for_each(|adjustment| self.visit(adjustment.target))?;
1138             }
1139         };
1140         result.is_break()
1141     }
1142
1143     fn check_def_id(&mut self, def_id: DefId, kind: &str, descr: &dyn fmt::Display) -> bool {
1144         let is_error = !self.item_is_accessible(def_id);
1145         if is_error {
1146             self.tcx.sess.emit_err(ItemIsPrivate { span: self.span, kind, descr: descr.into() });
1147         }
1148         is_error
1149     }
1150 }
1151
1152 impl<'tcx> Visitor<'tcx> for TypePrivacyVisitor<'tcx> {
1153     type NestedFilter = nested_filter::All;
1154
1155     /// We want to visit items in the context of their containing
1156     /// module and so forth, so supply a crate for doing a deep walk.
1157     fn nested_visit_map(&mut self) -> Self::Map {
1158         self.tcx.hir()
1159     }
1160
1161     fn visit_mod(&mut self, _m: &'tcx hir::Mod<'tcx>, _s: Span, _n: hir::HirId) {
1162         // Don't visit nested modules, since we run a separate visitor walk
1163         // for each module in `effective_visibilities`
1164     }
1165
1166     fn visit_nested_body(&mut self, body: hir::BodyId) {
1167         let old_maybe_typeck_results =
1168             self.maybe_typeck_results.replace(self.tcx.typeck_body(body));
1169         let body = self.tcx.hir().body(body);
1170         self.visit_body(body);
1171         self.maybe_typeck_results = old_maybe_typeck_results;
1172     }
1173
1174     fn visit_generic_arg(&mut self, generic_arg: &'tcx hir::GenericArg<'tcx>) {
1175         match generic_arg {
1176             hir::GenericArg::Type(t) => self.visit_ty(t),
1177             hir::GenericArg::Infer(inf) => self.visit_infer(inf),
1178             hir::GenericArg::Lifetime(_) | hir::GenericArg::Const(_) => {}
1179         }
1180     }
1181
1182     fn visit_ty(&mut self, hir_ty: &'tcx hir::Ty<'tcx>) {
1183         self.span = hir_ty.span;
1184         if let Some(typeck_results) = self.maybe_typeck_results {
1185             // Types in bodies.
1186             if self.visit(typeck_results.node_type(hir_ty.hir_id)).is_break() {
1187                 return;
1188             }
1189         } else {
1190             // Types in signatures.
1191             // FIXME: This is very ineffective. Ideally each HIR type should be converted
1192             // into a semantic type only once and the result should be cached somehow.
1193             if self.visit(rustc_hir_analysis::hir_ty_to_ty(self.tcx, hir_ty)).is_break() {
1194                 return;
1195             }
1196         }
1197
1198         intravisit::walk_ty(self, hir_ty);
1199     }
1200
1201     fn visit_infer(&mut self, inf: &'tcx hir::InferArg) {
1202         self.span = inf.span;
1203         if let Some(typeck_results) = self.maybe_typeck_results {
1204             if let Some(ty) = typeck_results.node_type_opt(inf.hir_id) {
1205                 if self.visit(ty).is_break() {
1206                     return;
1207                 }
1208             } else {
1209                 // We don't do anything for const infers here.
1210             }
1211         } else {
1212             bug!("visit_infer without typeck_results");
1213         }
1214         intravisit::walk_inf(self, inf);
1215     }
1216
1217     fn visit_trait_ref(&mut self, trait_ref: &'tcx hir::TraitRef<'tcx>) {
1218         self.span = trait_ref.path.span;
1219         if self.maybe_typeck_results.is_none() {
1220             // Avoid calling `hir_trait_to_predicates` in bodies, it will ICE.
1221             // The traits' privacy in bodies is already checked as a part of trait object types.
1222             let bounds = rustc_hir_analysis::hir_trait_to_predicates(
1223                 self.tcx,
1224                 trait_ref,
1225                 // NOTE: This isn't really right, but the actual type doesn't matter here. It's
1226                 // just required by `ty::TraitRef`.
1227                 self.tcx.types.never,
1228             );
1229
1230             for (pred, _) in bounds.predicates() {
1231                 match pred.kind().skip_binder() {
1232                     ty::PredicateKind::Clause(ty::Clause::Trait(trait_predicate)) => {
1233                         if self.visit_trait(trait_predicate.trait_ref).is_break() {
1234                             return;
1235                         }
1236                     }
1237                     ty::PredicateKind::Clause(ty::Clause::Projection(proj_predicate)) => {
1238                         let term = self.visit(proj_predicate.term);
1239                         if term.is_break()
1240                             || self.visit_projection_ty(proj_predicate.projection_ty).is_break()
1241                         {
1242                             return;
1243                         }
1244                     }
1245                     _ => {}
1246                 }
1247             }
1248         }
1249
1250         intravisit::walk_trait_ref(self, trait_ref);
1251     }
1252
1253     // Check types of expressions
1254     fn visit_expr(&mut self, expr: &'tcx hir::Expr<'tcx>) {
1255         if self.check_expr_pat_type(expr.hir_id, expr.span) {
1256             // Do not check nested expressions if the error already happened.
1257             return;
1258         }
1259         match expr.kind {
1260             hir::ExprKind::Assign(_, rhs, _) | hir::ExprKind::Match(rhs, ..) => {
1261                 // Do not report duplicate errors for `x = y` and `match x { ... }`.
1262                 if self.check_expr_pat_type(rhs.hir_id, rhs.span) {
1263                     return;
1264                 }
1265             }
1266             hir::ExprKind::MethodCall(segment, ..) => {
1267                 // Method calls have to be checked specially.
1268                 self.span = segment.ident.span;
1269                 if let Some(def_id) = self.typeck_results().type_dependent_def_id(expr.hir_id) {
1270                     if self.visit(self.tcx.type_of(def_id)).is_break() {
1271                         return;
1272                     }
1273                 } else {
1274                     self.tcx
1275                         .sess
1276                         .delay_span_bug(expr.span, "no type-dependent def for method call");
1277                 }
1278             }
1279             _ => {}
1280         }
1281
1282         intravisit::walk_expr(self, expr);
1283     }
1284
1285     // Prohibit access to associated items with insufficient nominal visibility.
1286     //
1287     // Additionally, until better reachability analysis for macros 2.0 is available,
1288     // we prohibit access to private statics from other crates, this allows to give
1289     // more code internal visibility at link time. (Access to private functions
1290     // is already prohibited by type privacy for function types.)
1291     fn visit_qpath(&mut self, qpath: &'tcx hir::QPath<'tcx>, id: hir::HirId, span: Span) {
1292         let def = match qpath {
1293             hir::QPath::Resolved(_, path) => match path.res {
1294                 Res::Def(kind, def_id) => Some((kind, def_id)),
1295                 _ => None,
1296             },
1297             hir::QPath::TypeRelative(..) | hir::QPath::LangItem(..) => self
1298                 .maybe_typeck_results
1299                 .and_then(|typeck_results| typeck_results.type_dependent_def(id)),
1300         };
1301         let def = def.filter(|(kind, _)| {
1302             matches!(
1303                 kind,
1304                 DefKind::AssocFn | DefKind::AssocConst | DefKind::AssocTy | DefKind::Static(_)
1305             )
1306         });
1307         if let Some((kind, def_id)) = def {
1308             let is_local_static =
1309                 if let DefKind::Static(_) = kind { def_id.is_local() } else { false };
1310             if !self.item_is_accessible(def_id) && !is_local_static {
1311                 let name = match *qpath {
1312                     hir::QPath::LangItem(it, ..) => {
1313                         self.tcx.lang_items().get(it).map(|did| self.tcx.def_path_str(did))
1314                     }
1315                     hir::QPath::Resolved(_, path) => Some(self.tcx.def_path_str(path.res.def_id())),
1316                     hir::QPath::TypeRelative(_, segment) => Some(segment.ident.to_string()),
1317                 };
1318                 let kind = kind.descr(def_id);
1319                 let sess = self.tcx.sess;
1320                 let _ = match name {
1321                     Some(name) => {
1322                         sess.emit_err(ItemIsPrivate { span, kind, descr: (&name).into() })
1323                     }
1324                     None => sess.emit_err(UnnamedItemIsPrivate { span, kind }),
1325                 };
1326                 return;
1327             }
1328         }
1329
1330         intravisit::walk_qpath(self, qpath, id);
1331     }
1332
1333     // Check types of patterns.
1334     fn visit_pat(&mut self, pattern: &'tcx hir::Pat<'tcx>) {
1335         if self.check_expr_pat_type(pattern.hir_id, pattern.span) {
1336             // Do not check nested patterns if the error already happened.
1337             return;
1338         }
1339
1340         intravisit::walk_pat(self, pattern);
1341     }
1342
1343     fn visit_local(&mut self, local: &'tcx hir::Local<'tcx>) {
1344         if let Some(init) = local.init {
1345             if self.check_expr_pat_type(init.hir_id, init.span) {
1346                 // Do not report duplicate errors for `let x = y`.
1347                 return;
1348             }
1349         }
1350
1351         intravisit::walk_local(self, local);
1352     }
1353
1354     // Check types in item interfaces.
1355     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
1356         let orig_current_item = mem::replace(&mut self.current_item, item.owner_id.def_id);
1357         let old_maybe_typeck_results = self.maybe_typeck_results.take();
1358         intravisit::walk_item(self, item);
1359         self.maybe_typeck_results = old_maybe_typeck_results;
1360         self.current_item = orig_current_item;
1361     }
1362 }
1363
1364 impl<'tcx> DefIdVisitor<'tcx> for TypePrivacyVisitor<'tcx> {
1365     fn tcx(&self) -> TyCtxt<'tcx> {
1366         self.tcx
1367     }
1368     fn visit_def_id(
1369         &mut self,
1370         def_id: DefId,
1371         kind: &str,
1372         descr: &dyn fmt::Display,
1373     ) -> ControlFlow<Self::BreakTy> {
1374         if self.check_def_id(def_id, kind, descr) {
1375             ControlFlow::Break(())
1376         } else {
1377             ControlFlow::Continue(())
1378         }
1379     }
1380 }
1381
1382 ///////////////////////////////////////////////////////////////////////////////
1383 /// Obsolete visitors for checking for private items in public interfaces.
1384 /// These visitors are supposed to be kept in frozen state and produce an
1385 /// "old error node set". For backward compatibility the new visitor reports
1386 /// warnings instead of hard errors when the erroneous node is not in this old set.
1387 ///////////////////////////////////////////////////////////////////////////////
1388
1389 struct ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
1390     tcx: TyCtxt<'tcx>,
1391     effective_visibilities: &'a EffectiveVisibilities,
1392     in_variant: bool,
1393     // Set of errors produced by this obsolete visitor.
1394     old_error_set: HirIdSet,
1395 }
1396
1397 struct ObsoleteCheckTypeForPrivatenessVisitor<'a, 'b, 'tcx> {
1398     inner: &'a ObsoleteVisiblePrivateTypesVisitor<'b, 'tcx>,
1399     /// Whether the type refers to private types.
1400     contains_private: bool,
1401     /// Whether we've recurred at all (i.e., if we're pointing at the
1402     /// first type on which `visit_ty` was called).
1403     at_outer_type: bool,
1404     /// Whether that first type is a public path.
1405     outer_type_is_public_path: bool,
1406 }
1407
1408 impl<'a, 'tcx> ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
1409     fn path_is_private_type(&self, path: &hir::Path<'_>) -> bool {
1410         let did = match path.res {
1411             Res::PrimTy(..) | Res::SelfTyParam { .. } | Res::SelfTyAlias { .. } | Res::Err => {
1412                 return false;
1413             }
1414             res => res.def_id(),
1415         };
1416
1417         // A path can only be private if:
1418         // it's in this crate...
1419         if let Some(did) = did.as_local() {
1420             // .. and it corresponds to a private type in the AST (this returns
1421             // `None` for type parameters).
1422             match self.tcx.hir().find(self.tcx.hir().local_def_id_to_hir_id(did)) {
1423                 Some(Node::Item(_)) => !self.tcx.visibility(did).is_public(),
1424                 Some(_) | None => false,
1425             }
1426         } else {
1427             false
1428         }
1429     }
1430
1431     fn trait_is_public(&self, trait_id: LocalDefId) -> bool {
1432         // FIXME: this would preferably be using `exported_items`, but all
1433         // traits are exported currently (see `EmbargoVisitor.exported_trait`).
1434         self.effective_visibilities.is_directly_public(trait_id)
1435     }
1436
1437     fn check_generic_bound(&mut self, bound: &hir::GenericBound<'_>) {
1438         if let hir::GenericBound::Trait(ref trait_ref, _) = *bound {
1439             if self.path_is_private_type(trait_ref.trait_ref.path) {
1440                 self.old_error_set.insert(trait_ref.trait_ref.hir_ref_id);
1441             }
1442         }
1443     }
1444
1445     fn item_is_public(&self, def_id: LocalDefId) -> bool {
1446         self.effective_visibilities.is_reachable(def_id) || self.tcx.visibility(def_id).is_public()
1447     }
1448 }
1449
1450 impl<'a, 'b, 'tcx, 'v> Visitor<'v> for ObsoleteCheckTypeForPrivatenessVisitor<'a, 'b, 'tcx> {
1451     fn visit_generic_arg(&mut self, generic_arg: &'v hir::GenericArg<'v>) {
1452         match generic_arg {
1453             hir::GenericArg::Type(t) => self.visit_ty(t),
1454             hir::GenericArg::Infer(inf) => self.visit_ty(&inf.to_ty()),
1455             hir::GenericArg::Lifetime(_) | hir::GenericArg::Const(_) => {}
1456         }
1457     }
1458
1459     fn visit_ty(&mut self, ty: &hir::Ty<'_>) {
1460         if let hir::TyKind::Path(hir::QPath::Resolved(_, path)) = ty.kind {
1461             if self.inner.path_is_private_type(path) {
1462                 self.contains_private = true;
1463                 // Found what we're looking for, so let's stop working.
1464                 return;
1465             }
1466         }
1467         if let hir::TyKind::Path(_) = ty.kind {
1468             if self.at_outer_type {
1469                 self.outer_type_is_public_path = true;
1470             }
1471         }
1472         self.at_outer_type = false;
1473         intravisit::walk_ty(self, ty)
1474     }
1475
1476     // Don't want to recurse into `[, .. expr]`.
1477     fn visit_expr(&mut self, _: &hir::Expr<'_>) {}
1478 }
1479
1480 impl<'a, 'tcx> Visitor<'tcx> for ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
1481     type NestedFilter = nested_filter::All;
1482
1483     /// We want to visit items in the context of their containing
1484     /// module and so forth, so supply a crate for doing a deep walk.
1485     fn nested_visit_map(&mut self) -> Self::Map {
1486         self.tcx.hir()
1487     }
1488
1489     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
1490         match item.kind {
1491             // Contents of a private mod can be re-exported, so we need
1492             // to check internals.
1493             hir::ItemKind::Mod(_) => {}
1494
1495             // An `extern {}` doesn't introduce a new privacy
1496             // namespace (the contents have their own privacies).
1497             hir::ItemKind::ForeignMod { .. } => {}
1498
1499             hir::ItemKind::Trait(.., bounds, _) => {
1500                 if !self.trait_is_public(item.owner_id.def_id) {
1501                     return;
1502                 }
1503
1504                 for bound in bounds.iter() {
1505                     self.check_generic_bound(bound)
1506                 }
1507             }
1508
1509             // Impls need some special handling to try to offer useful
1510             // error messages without (too many) false positives
1511             // (i.e., we could just return here to not check them at
1512             // all, or some worse estimation of whether an impl is
1513             // publicly visible).
1514             hir::ItemKind::Impl(ref impl_) => {
1515                 // `impl [... for] Private` is never visible.
1516                 let self_contains_private;
1517                 // `impl [... for] Public<...>`, but not `impl [... for]
1518                 // Vec<Public>` or `(Public,)`, etc.
1519                 let self_is_public_path;
1520
1521                 // Check the properties of the `Self` type:
1522                 {
1523                     let mut visitor = ObsoleteCheckTypeForPrivatenessVisitor {
1524                         inner: self,
1525                         contains_private: false,
1526                         at_outer_type: true,
1527                         outer_type_is_public_path: false,
1528                     };
1529                     visitor.visit_ty(impl_.self_ty);
1530                     self_contains_private = visitor.contains_private;
1531                     self_is_public_path = visitor.outer_type_is_public_path;
1532                 }
1533
1534                 // Miscellaneous info about the impl:
1535
1536                 // `true` iff this is `impl Private for ...`.
1537                 let not_private_trait = impl_.of_trait.as_ref().map_or(
1538                     true, // no trait counts as public trait
1539                     |tr| {
1540                         if let Some(def_id) = tr.path.res.def_id().as_local() {
1541                             self.trait_is_public(def_id)
1542                         } else {
1543                             true // external traits must be public
1544                         }
1545                     },
1546                 );
1547
1548                 // `true` iff this is a trait impl or at least one method is public.
1549                 //
1550                 // `impl Public { $( fn ...() {} )* }` is not visible.
1551                 //
1552                 // This is required over just using the methods' privacy
1553                 // directly because we might have `impl<T: Foo<Private>> ...`,
1554                 // and we shouldn't warn about the generics if all the methods
1555                 // are private (because `T` won't be visible externally).
1556                 let trait_or_some_public_method = impl_.of_trait.is_some()
1557                     || impl_.items.iter().any(|impl_item_ref| {
1558                         let impl_item = self.tcx.hir().impl_item(impl_item_ref.id);
1559                         match impl_item.kind {
1560                             hir::ImplItemKind::Const(..) | hir::ImplItemKind::Fn(..) => self
1561                                 .effective_visibilities
1562                                 .is_reachable(impl_item_ref.id.owner_id.def_id),
1563                             hir::ImplItemKind::Type(_) => false,
1564                         }
1565                     });
1566
1567                 if !self_contains_private && not_private_trait && trait_or_some_public_method {
1568                     intravisit::walk_generics(self, &impl_.generics);
1569
1570                     match impl_.of_trait {
1571                         None => {
1572                             for impl_item_ref in impl_.items {
1573                                 // This is where we choose whether to walk down
1574                                 // further into the impl to check its items. We
1575                                 // should only walk into public items so that we
1576                                 // don't erroneously report errors for private
1577                                 // types in private items.
1578                                 let impl_item = self.tcx.hir().impl_item(impl_item_ref.id);
1579                                 match impl_item.kind {
1580                                     hir::ImplItemKind::Const(..) | hir::ImplItemKind::Fn(..)
1581                                         if self.item_is_public(impl_item.owner_id.def_id) =>
1582                                     {
1583                                         intravisit::walk_impl_item(self, impl_item)
1584                                     }
1585                                     hir::ImplItemKind::Type(..) => {
1586                                         intravisit::walk_impl_item(self, impl_item)
1587                                     }
1588                                     _ => {}
1589                                 }
1590                             }
1591                         }
1592                         Some(ref tr) => {
1593                             // Any private types in a trait impl fall into three
1594                             // categories.
1595                             // 1. mentioned in the trait definition
1596                             // 2. mentioned in the type params/generics
1597                             // 3. mentioned in the associated types of the impl
1598                             //
1599                             // Those in 1. can only occur if the trait is in
1600                             // this crate and will have been warned about on the
1601                             // trait definition (there's no need to warn twice
1602                             // so we don't check the methods).
1603                             //
1604                             // Those in 2. are warned via walk_generics and this
1605                             // call here.
1606                             intravisit::walk_path(self, tr.path);
1607
1608                             // Those in 3. are warned with this call.
1609                             for impl_item_ref in impl_.items {
1610                                 let impl_item = self.tcx.hir().impl_item(impl_item_ref.id);
1611                                 if let hir::ImplItemKind::Type(ty) = impl_item.kind {
1612                                     self.visit_ty(ty);
1613                                 }
1614                             }
1615                         }
1616                     }
1617                 } else if impl_.of_trait.is_none() && self_is_public_path {
1618                     // `impl Public<Private> { ... }`. Any public static
1619                     // methods will be visible as `Public::foo`.
1620                     let mut found_pub_static = false;
1621                     for impl_item_ref in impl_.items {
1622                         if self
1623                             .effective_visibilities
1624                             .is_reachable(impl_item_ref.id.owner_id.def_id)
1625                             || self.tcx.visibility(impl_item_ref.id.owner_id).is_public()
1626                         {
1627                             let impl_item = self.tcx.hir().impl_item(impl_item_ref.id);
1628                             match impl_item_ref.kind {
1629                                 AssocItemKind::Const => {
1630                                     found_pub_static = true;
1631                                     intravisit::walk_impl_item(self, impl_item);
1632                                 }
1633                                 AssocItemKind::Fn { has_self: false } => {
1634                                     found_pub_static = true;
1635                                     intravisit::walk_impl_item(self, impl_item);
1636                                 }
1637                                 _ => {}
1638                             }
1639                         }
1640                     }
1641                     if found_pub_static {
1642                         intravisit::walk_generics(self, &impl_.generics)
1643                     }
1644                 }
1645                 return;
1646             }
1647
1648             // `type ... = ...;` can contain private types, because
1649             // we're introducing a new name.
1650             hir::ItemKind::TyAlias(..) => return,
1651
1652             // Not at all public, so we don't care.
1653             _ if !self.item_is_public(item.owner_id.def_id) => {
1654                 return;
1655             }
1656
1657             _ => {}
1658         }
1659
1660         // We've carefully constructed it so that if we're here, then
1661         // any `visit_ty`'s will be called on things that are in
1662         // public signatures, i.e., things that we're interested in for
1663         // this visitor.
1664         intravisit::walk_item(self, item);
1665     }
1666
1667     fn visit_generics(&mut self, generics: &'tcx hir::Generics<'tcx>) {
1668         for predicate in generics.predicates {
1669             match predicate {
1670                 hir::WherePredicate::BoundPredicate(bound_pred) => {
1671                     for bound in bound_pred.bounds.iter() {
1672                         self.check_generic_bound(bound)
1673                     }
1674                 }
1675                 hir::WherePredicate::RegionPredicate(_) => {}
1676                 hir::WherePredicate::EqPredicate(eq_pred) => {
1677                     self.visit_ty(eq_pred.rhs_ty);
1678                 }
1679             }
1680         }
1681     }
1682
1683     fn visit_foreign_item(&mut self, item: &'tcx hir::ForeignItem<'tcx>) {
1684         if self.effective_visibilities.is_reachable(item.owner_id.def_id) {
1685             intravisit::walk_foreign_item(self, item)
1686         }
1687     }
1688
1689     fn visit_ty(&mut self, t: &'tcx hir::Ty<'tcx>) {
1690         if let hir::TyKind::Path(hir::QPath::Resolved(_, path)) = t.kind {
1691             if self.path_is_private_type(path) {
1692                 self.old_error_set.insert(t.hir_id);
1693             }
1694         }
1695         intravisit::walk_ty(self, t)
1696     }
1697
1698     fn visit_variant(&mut self, v: &'tcx hir::Variant<'tcx>) {
1699         if self.effective_visibilities.is_reachable(v.def_id) {
1700             self.in_variant = true;
1701             intravisit::walk_variant(self, v);
1702             self.in_variant = false;
1703         }
1704     }
1705
1706     fn visit_field_def(&mut self, s: &'tcx hir::FieldDef<'tcx>) {
1707         let vis = self.tcx.visibility(s.def_id);
1708         if vis.is_public() || self.in_variant {
1709             intravisit::walk_field_def(self, s);
1710         }
1711     }
1712
1713     // We don't need to introspect into these at all: an
1714     // expression/block context can't possibly contain exported things.
1715     // (Making them no-ops stops us from traversing the whole AST without
1716     // having to be super careful about our `walk_...` calls above.)
1717     fn visit_block(&mut self, _: &'tcx hir::Block<'tcx>) {}
1718     fn visit_expr(&mut self, _: &'tcx hir::Expr<'tcx>) {}
1719 }
1720
1721 ///////////////////////////////////////////////////////////////////////////////
1722 /// SearchInterfaceForPrivateItemsVisitor traverses an item's interface and
1723 /// finds any private components in it.
1724 /// PrivateItemsInPublicInterfacesVisitor ensures there are no private types
1725 /// and traits in public interfaces.
1726 ///////////////////////////////////////////////////////////////////////////////
1727
1728 struct SearchInterfaceForPrivateItemsVisitor<'tcx> {
1729     tcx: TyCtxt<'tcx>,
1730     item_def_id: LocalDefId,
1731     /// The visitor checks that each component type is at least this visible.
1732     required_visibility: ty::Visibility,
1733     has_old_errors: bool,
1734     in_assoc_ty: bool,
1735 }
1736
1737 impl SearchInterfaceForPrivateItemsVisitor<'_> {
1738     fn generics(&mut self) -> &mut Self {
1739         for param in &self.tcx.generics_of(self.item_def_id).params {
1740             match param.kind {
1741                 GenericParamDefKind::Lifetime => {}
1742                 GenericParamDefKind::Type { has_default, .. } => {
1743                     if has_default {
1744                         self.visit(self.tcx.type_of(param.def_id));
1745                     }
1746                 }
1747                 // FIXME(generic_const_exprs): May want to look inside const here
1748                 GenericParamDefKind::Const { .. } => {
1749                     self.visit(self.tcx.type_of(param.def_id));
1750                 }
1751             }
1752         }
1753         self
1754     }
1755
1756     fn predicates(&mut self) -> &mut Self {
1757         // N.B., we use `explicit_predicates_of` and not `predicates_of`
1758         // because we don't want to report privacy errors due to where
1759         // clauses that the compiler inferred. We only want to
1760         // consider the ones that the user wrote. This is important
1761         // for the inferred outlives rules; see
1762         // `tests/ui/rfc-2093-infer-outlives/privacy.rs`.
1763         self.visit_predicates(self.tcx.explicit_predicates_of(self.item_def_id));
1764         self
1765     }
1766
1767     fn bounds(&mut self) -> &mut Self {
1768         self.visit_predicates(ty::GenericPredicates {
1769             parent: None,
1770             predicates: self.tcx.explicit_item_bounds(self.item_def_id),
1771         });
1772         self
1773     }
1774
1775     fn ty(&mut self) -> &mut Self {
1776         self.visit(self.tcx.type_of(self.item_def_id));
1777         self
1778     }
1779
1780     fn check_def_id(&mut self, def_id: DefId, kind: &str, descr: &dyn fmt::Display) -> bool {
1781         if self.leaks_private_dep(def_id) {
1782             self.tcx.emit_spanned_lint(
1783                 lint::builtin::EXPORTED_PRIVATE_DEPENDENCIES,
1784                 self.tcx.hir().local_def_id_to_hir_id(self.item_def_id),
1785                 self.tcx.def_span(self.item_def_id.to_def_id()),
1786                 FromPrivateDependencyInPublicInterface {
1787                     kind,
1788                     descr: descr.into(),
1789                     krate: self.tcx.crate_name(def_id.krate),
1790                 },
1791             );
1792         }
1793
1794         let Some(local_def_id) = def_id.as_local() else {
1795             return false;
1796         };
1797
1798         let vis = self.tcx.local_visibility(local_def_id);
1799         if !vis.is_at_least(self.required_visibility, self.tcx) {
1800             let hir_id = self.tcx.hir().local_def_id_to_hir_id(local_def_id);
1801             let vis_descr = match vis {
1802                 ty::Visibility::Public => "public",
1803                 ty::Visibility::Restricted(vis_def_id) => {
1804                     if vis_def_id == self.tcx.parent_module(hir_id) {
1805                         "private"
1806                     } else if vis_def_id.is_top_level_module() {
1807                         "crate-private"
1808                     } else {
1809                         "restricted"
1810                     }
1811                 }
1812             };
1813             let span = self.tcx.def_span(self.item_def_id.to_def_id());
1814             if self.has_old_errors
1815                 || self.in_assoc_ty
1816                 || self.tcx.resolutions(()).has_pub_restricted
1817             {
1818                 let vis_span = self.tcx.def_span(def_id);
1819                 if kind == "trait" {
1820                     self.tcx.sess.emit_err(InPublicInterfaceTraits {
1821                         span,
1822                         vis_descr,
1823                         kind,
1824                         descr: descr.into(),
1825                         vis_span,
1826                     });
1827                 } else {
1828                     self.tcx.sess.emit_err(InPublicInterface {
1829                         span,
1830                         vis_descr,
1831                         kind,
1832                         descr: descr.into(),
1833                         vis_span,
1834                     });
1835                 }
1836             } else {
1837                 self.tcx.emit_spanned_lint(
1838                     lint::builtin::PRIVATE_IN_PUBLIC,
1839                     hir_id,
1840                     span,
1841                     PrivateInPublicLint { vis_descr, kind, descr: descr.into() },
1842                 );
1843             }
1844         }
1845
1846         false
1847     }
1848
1849     /// An item is 'leaked' from a private dependency if all
1850     /// of the following are true:
1851     /// 1. It's contained within a public type
1852     /// 2. It comes from a private crate
1853     fn leaks_private_dep(&self, item_id: DefId) -> bool {
1854         let ret = self.required_visibility.is_public() && self.tcx.is_private_dep(item_id.krate);
1855
1856         debug!("leaks_private_dep(item_id={:?})={}", item_id, ret);
1857         ret
1858     }
1859 }
1860
1861 impl<'tcx> DefIdVisitor<'tcx> for SearchInterfaceForPrivateItemsVisitor<'tcx> {
1862     fn tcx(&self) -> TyCtxt<'tcx> {
1863         self.tcx
1864     }
1865     fn visit_def_id(
1866         &mut self,
1867         def_id: DefId,
1868         kind: &str,
1869         descr: &dyn fmt::Display,
1870     ) -> ControlFlow<Self::BreakTy> {
1871         if self.check_def_id(def_id, kind, descr) {
1872             ControlFlow::Break(())
1873         } else {
1874             ControlFlow::Continue(())
1875         }
1876     }
1877 }
1878
1879 struct PrivateItemsInPublicInterfacesChecker<'tcx> {
1880     tcx: TyCtxt<'tcx>,
1881     old_error_set_ancestry: LocalDefIdSet,
1882 }
1883
1884 impl<'tcx> PrivateItemsInPublicInterfacesChecker<'tcx> {
1885     fn check(
1886         &self,
1887         def_id: LocalDefId,
1888         required_visibility: ty::Visibility,
1889     ) -> SearchInterfaceForPrivateItemsVisitor<'tcx> {
1890         SearchInterfaceForPrivateItemsVisitor {
1891             tcx: self.tcx,
1892             item_def_id: def_id,
1893             required_visibility,
1894             has_old_errors: self.old_error_set_ancestry.contains(&def_id),
1895             in_assoc_ty: false,
1896         }
1897     }
1898
1899     fn check_assoc_item(
1900         &self,
1901         def_id: LocalDefId,
1902         assoc_item_kind: AssocItemKind,
1903         vis: ty::Visibility,
1904     ) {
1905         let mut check = self.check(def_id, vis);
1906
1907         let (check_ty, is_assoc_ty) = match assoc_item_kind {
1908             AssocItemKind::Const | AssocItemKind::Fn { .. } => (true, false),
1909             AssocItemKind::Type => (self.tcx.impl_defaultness(def_id).has_value(), true),
1910         };
1911         check.in_assoc_ty = is_assoc_ty;
1912         check.generics().predicates();
1913         if check_ty {
1914             check.ty();
1915         }
1916     }
1917
1918     pub fn check_item(&mut self, id: ItemId) {
1919         let tcx = self.tcx;
1920         let def_id = id.owner_id.def_id;
1921         let item_visibility = tcx.local_visibility(def_id);
1922         let def_kind = tcx.def_kind(def_id);
1923
1924         match def_kind {
1925             DefKind::Const | DefKind::Static(_) | DefKind::Fn | DefKind::TyAlias => {
1926                 self.check(def_id, item_visibility).generics().predicates().ty();
1927             }
1928             DefKind::OpaqueTy => {
1929                 // `ty()` for opaque types is the underlying type,
1930                 // it's not a part of interface, so we skip it.
1931                 self.check(def_id, item_visibility).generics().bounds();
1932             }
1933             DefKind::Trait => {
1934                 let item = tcx.hir().item(id);
1935                 if let hir::ItemKind::Trait(.., trait_item_refs) = item.kind {
1936                     self.check(item.owner_id.def_id, item_visibility).generics().predicates();
1937
1938                     for trait_item_ref in trait_item_refs {
1939                         self.check_assoc_item(
1940                             trait_item_ref.id.owner_id.def_id,
1941                             trait_item_ref.kind,
1942                             item_visibility,
1943                         );
1944
1945                         if let AssocItemKind::Type = trait_item_ref.kind {
1946                             self.check(trait_item_ref.id.owner_id.def_id, item_visibility).bounds();
1947                         }
1948                     }
1949                 }
1950             }
1951             DefKind::TraitAlias => {
1952                 self.check(def_id, item_visibility).generics().predicates();
1953             }
1954             DefKind::Enum => {
1955                 let item = tcx.hir().item(id);
1956                 if let hir::ItemKind::Enum(ref def, _) = item.kind {
1957                     self.check(item.owner_id.def_id, item_visibility).generics().predicates();
1958
1959                     for variant in def.variants {
1960                         for field in variant.data.fields() {
1961                             self.check(field.def_id, item_visibility).ty();
1962                         }
1963                     }
1964                 }
1965             }
1966             // Subitems of foreign modules have their own publicity.
1967             DefKind::ForeignMod => {
1968                 let item = tcx.hir().item(id);
1969                 if let hir::ItemKind::ForeignMod { items, .. } = item.kind {
1970                     for foreign_item in items {
1971                         let vis = tcx.local_visibility(foreign_item.id.owner_id.def_id);
1972                         self.check(foreign_item.id.owner_id.def_id, vis)
1973                             .generics()
1974                             .predicates()
1975                             .ty();
1976                     }
1977                 }
1978             }
1979             // Subitems of structs and unions have their own publicity.
1980             DefKind::Struct | DefKind::Union => {
1981                 let item = tcx.hir().item(id);
1982                 if let hir::ItemKind::Struct(ref struct_def, _)
1983                 | hir::ItemKind::Union(ref struct_def, _) = item.kind
1984                 {
1985                     self.check(item.owner_id.def_id, item_visibility).generics().predicates();
1986
1987                     for field in struct_def.fields() {
1988                         let field_visibility = tcx.local_visibility(field.def_id);
1989                         self.check(field.def_id, min(item_visibility, field_visibility, tcx)).ty();
1990                     }
1991                 }
1992             }
1993             // An inherent impl is public when its type is public
1994             // Subitems of inherent impls have their own publicity.
1995             // A trait impl is public when both its type and its trait are public
1996             // Subitems of trait impls have inherited publicity.
1997             DefKind::Impl => {
1998                 let item = tcx.hir().item(id);
1999                 if let hir::ItemKind::Impl(ref impl_) = item.kind {
2000                     let impl_vis =
2001                         ty::Visibility::of_impl(item.owner_id.def_id, tcx, &Default::default());
2002                     // check that private components do not appear in the generics or predicates of inherent impls
2003                     // this check is intentionally NOT performed for impls of traits, per #90586
2004                     if impl_.of_trait.is_none() {
2005                         self.check(item.owner_id.def_id, impl_vis).generics().predicates();
2006                     }
2007                     for impl_item_ref in impl_.items {
2008                         let impl_item_vis = if impl_.of_trait.is_none() {
2009                             min(
2010                                 tcx.local_visibility(impl_item_ref.id.owner_id.def_id),
2011                                 impl_vis,
2012                                 tcx,
2013                             )
2014                         } else {
2015                             impl_vis
2016                         };
2017                         self.check_assoc_item(
2018                             impl_item_ref.id.owner_id.def_id,
2019                             impl_item_ref.kind,
2020                             impl_item_vis,
2021                         );
2022                     }
2023                 }
2024             }
2025             _ => {}
2026         }
2027     }
2028 }
2029
2030 pub fn provide(providers: &mut Providers) {
2031     *providers = Providers {
2032         visibility,
2033         effective_visibilities,
2034         check_private_in_public,
2035         check_mod_privacy,
2036         ..*providers
2037     };
2038 }
2039
2040 fn visibility(tcx: TyCtxt<'_>, def_id: DefId) -> ty::Visibility<DefId> {
2041     local_visibility(tcx, def_id.expect_local()).to_def_id()
2042 }
2043
2044 fn local_visibility(tcx: TyCtxt<'_>, def_id: LocalDefId) -> ty::Visibility {
2045     match tcx.resolutions(()).visibilities.get(&def_id) {
2046         Some(vis) => *vis,
2047         None => {
2048             let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
2049             match tcx.hir().get(hir_id) {
2050                 // Unique types created for closures participate in type privacy checking.
2051                 // They have visibilities inherited from the module they are defined in.
2052                 Node::Expr(hir::Expr { kind: hir::ExprKind::Closure{..}, .. })
2053                 // - AST lowering creates dummy `use` items which don't
2054                 //   get their entries in the resolver's visibility table.
2055                 // - AST lowering also creates opaque type items with inherited visibilities.
2056                 //   Visibility on them should have no effect, but to avoid the visibility
2057                 //   query failing on some items, we provide it for opaque types as well.
2058                 | Node::Item(hir::Item {
2059                     kind: hir::ItemKind::Use(_, hir::UseKind::ListStem)
2060                         | hir::ItemKind::OpaqueTy(..),
2061                     ..
2062                 }) => ty::Visibility::Restricted(tcx.parent_module(hir_id)),
2063                 // Visibilities of trait impl items are inherited from their traits
2064                 // and are not filled in resolve.
2065                 Node::ImplItem(impl_item) => {
2066                     match tcx.hir().get_by_def_id(tcx.hir().get_parent_item(hir_id).def_id) {
2067                         Node::Item(hir::Item {
2068                             kind: hir::ItemKind::Impl(hir::Impl { of_trait: Some(tr), .. }),
2069                             ..
2070                         }) => tr.path.res.opt_def_id().map_or_else(
2071                             || {
2072                                 tcx.sess.delay_span_bug(tr.path.span, "trait without a def-id");
2073                                 ty::Visibility::Public
2074                             },
2075                             |def_id| tcx.visibility(def_id).expect_local(),
2076                         ),
2077                         _ => span_bug!(impl_item.span, "the parent is not a trait impl"),
2078                     }
2079                 }
2080                 _ => span_bug!(
2081                     tcx.def_span(def_id),
2082                     "visibility table unexpectedly missing a def-id: {:?}",
2083                     def_id,
2084                 ),
2085             }
2086         }
2087     }
2088 }
2089
2090 fn check_mod_privacy(tcx: TyCtxt<'_>, module_def_id: LocalDefId) {
2091     // Check privacy of names not checked in previous compilation stages.
2092     let mut visitor =
2093         NamePrivacyVisitor { tcx, maybe_typeck_results: None, current_item: module_def_id };
2094     let (module, span, hir_id) = tcx.hir().get_module(module_def_id);
2095
2096     intravisit::walk_mod(&mut visitor, module, hir_id);
2097
2098     // Check privacy of explicitly written types and traits as well as
2099     // inferred types of expressions and patterns.
2100     let mut visitor =
2101         TypePrivacyVisitor { tcx, maybe_typeck_results: None, current_item: module_def_id, span };
2102     intravisit::walk_mod(&mut visitor, module, hir_id);
2103 }
2104
2105 fn effective_visibilities(tcx: TyCtxt<'_>, (): ()) -> &EffectiveVisibilities {
2106     // Build up a set of all exported items in the AST. This is a set of all
2107     // items which are reachable from external crates based on visibility.
2108     let mut visitor = EmbargoVisitor {
2109         tcx,
2110         effective_visibilities: tcx.resolutions(()).effective_visibilities.clone(),
2111         macro_reachable: Default::default(),
2112         prev_level: Some(Level::Direct),
2113         changed: false,
2114     };
2115
2116     visitor.effective_visibilities.check_invariants(tcx, true);
2117     loop {
2118         tcx.hir().walk_toplevel_module(&mut visitor);
2119         if visitor.changed {
2120             visitor.changed = false;
2121         } else {
2122             break;
2123         }
2124     }
2125     visitor.effective_visibilities.check_invariants(tcx, false);
2126
2127     let mut check_visitor =
2128         TestReachabilityVisitor { tcx, effective_visibilities: &visitor.effective_visibilities };
2129     tcx.hir().visit_all_item_likes_in_crate(&mut check_visitor);
2130
2131     tcx.arena.alloc(visitor.effective_visibilities)
2132 }
2133
2134 fn check_private_in_public(tcx: TyCtxt<'_>, (): ()) {
2135     let effective_visibilities = tcx.effective_visibilities(());
2136
2137     let mut visitor = ObsoleteVisiblePrivateTypesVisitor {
2138         tcx,
2139         effective_visibilities,
2140         in_variant: false,
2141         old_error_set: Default::default(),
2142     };
2143     tcx.hir().walk_toplevel_module(&mut visitor);
2144
2145     let mut old_error_set_ancestry = HirIdSet::default();
2146     for mut id in visitor.old_error_set.iter().copied() {
2147         loop {
2148             if !old_error_set_ancestry.insert(id) {
2149                 break;
2150             }
2151             let parent = tcx.hir().parent_id(id);
2152             if parent == id {
2153                 break;
2154             }
2155             id = parent;
2156         }
2157     }
2158
2159     // Check for private types and traits in public interfaces.
2160     let mut checker = PrivateItemsInPublicInterfacesChecker {
2161         tcx,
2162         // Only definition IDs are ever searched in `old_error_set_ancestry`,
2163         // so we can filter away all non-definition IDs at this point.
2164         old_error_set_ancestry: old_error_set_ancestry
2165             .into_iter()
2166             .filter_map(|hir_id| tcx.hir().opt_local_def_id(hir_id))
2167             .collect(),
2168     };
2169
2170     for id in tcx.hir().items() {
2171         checker.check_item(id);
2172     }
2173 }