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