]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_lint/src/builtin.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / compiler / rustc_lint / src / builtin.rs
CommitLineData
c34b1796
AL
1//! Lints in the Rust compiler.
2//!
3//! This contains lints which can feasibly be implemented as their own
ba9703b0
XL
4//! AST visitor. Also see `rustc_session::lint::builtin`, which contains the
5//! definitions of lints that are emitted directly inside the main compiler.
c34b1796
AL
6//!
7//! To add a new lint to rustc, declare it here using `declare_lint!()`.
8//! Then add code to emit the new lint in the appropriate circumstances.
9//! You can do that in an existing `LintPass` if it makes sense, or in a
10//! new `LintPass`, or using `Session::add_lint` elsewhere in the
11//! compiler. Only do the latter if the check can't be written cleanly as a
12//! `LintPass` (also, note that such lints will need to be defined in
ba9703b0 13//! `rustc_session::lint::builtin`, not here).
c34b1796 14//!
9fa01778
XL
15//! If you define a new `EarlyLintPass`, you will also need to add it to the
16//! `add_early_builtin!` or `add_early_builtin_with_new!` invocation in
17//! `lib.rs`. Use the former for unit-like structs and the latter for structs
18//! with a `pub fn new()`.
19//!
20//! If you define a new `LateLintPass`, you will also need to add it to the
21//! `late_lint_methods!` invocation in `lib.rs`.
c34b1796 22
3dfed10e 23use crate::{
1b1a35ee
XL
24 types::{transparent_newtype_field, CItemKind},
25 EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext,
3dfed10e 26};
6a06907d 27use rustc_ast::attr;
74b04a01
XL
28use rustc_ast::tokenstream::{TokenStream, TokenTree};
29use rustc_ast::visit::{FnCtxt, FnKind};
3dfed10e 30use rustc_ast::{self as ast, *};
74b04a01 31use rustc_ast_pretty::pprust::{self, expr_to_string};
f035d41b 32use rustc_data_structures::fx::{FxHashMap, FxHashSet};
3dfed10e 33use rustc_data_structures::stack::ensure_sufficient_stack;
f035d41b 34use rustc_errors::{Applicability, DiagnosticBuilder, DiagnosticStyledString};
3c0e092e 35use rustc_feature::{deprecated_attributes, AttributeGate, BuiltinAttribute, GateIssue, Stability};
dfeec247
XL
36use rustc_hir as hir;
37use rustc_hir::def::{DefKind, Res};
94222f64 38use rustc_hir::def_id::{DefId, LocalDefId, LocalDefIdSet, CRATE_DEF_ID};
f035d41b 39use rustc_hir::{ForeignItemKind, GenericParamKind, PatKind};
6a06907d 40use rustc_hir::{HirId, Node};
1b1a35ee 41use rustc_index::vec::Idx;
ba9703b0 42use rustc_middle::lint::LintDiagnosticBuilder;
c295e0f8 43use rustc_middle::ty::layout::{LayoutError, LayoutOf};
1b1a35ee 44use rustc_middle::ty::print::with_no_trimmed_paths;
3dfed10e 45use rustc_middle::ty::subst::{GenericArgKind, Subst};
5869c6ff 46use rustc_middle::ty::Instance;
c295e0f8 47use rustc_middle::ty::{self, Ty, TyCtxt};
94222f64 48use rustc_session::lint::{BuiltinLintDiagnostics, FutureIncompatibilityReason};
dfeec247
XL
49use rustc_span::edition::Edition;
50use rustc_span::source_map::Spanned;
f9f354fc 51use rustc_span::symbol::{kw, sym, Ident, Symbol};
94222f64 52use rustc_span::{BytePos, InnerSpan, MultiSpan, Span};
c295e0f8 53use rustc_target::abi::VariantIdx;
ba9703b0 54use rustc_trait_selection::traits::misc::can_type_implement_copy;
e9174d1e 55
dfeec247 56use crate::nonstandard_style::{method_context, MethodLateContext};
9fa01778 57
dfeec247 58use std::fmt::Write;
3dfed10e 59use tracing::{debug, trace};
c34b1796 60
ba9703b0 61// hardwired lints from librustc_middle
dfeec247 62pub use rustc_session::lint::builtin::*;
c34b1796 63
b039eaaf 64declare_lint! {
1b1a35ee
XL
65 /// The `while_true` lint detects `while true { }`.
66 ///
67 /// ### Example
68 ///
69 /// ```rust,no_run
70 /// while true {
71 ///
72 /// }
73 /// ```
74 ///
75 /// {{produces}}
76 ///
77 /// ### Explanation
78 ///
79 /// `while true` should be replaced with `loop`. A `loop` expression is
80 /// the preferred way to write an infinite loop because it more directly
81 /// expresses the intent of the loop.
b039eaaf
SL
82 WHILE_TRUE,
83 Warn,
84 "suggest using `loop { }` instead of `while true { }`"
85}
c34b1796 86
532ac7d7 87declare_lint_pass!(WhileTrue => [WHILE_TRUE]);
c34b1796 88
416331ca
XL
89/// Traverse through any amount of parenthesis and return the first non-parens expression.
90fn pierce_parens(mut expr: &ast::Expr) -> &ast::Expr {
e74abb32 91 while let ast::ExprKind::Paren(sub) = &expr.kind {
416331ca
XL
92 expr = sub;
93 }
94 expr
95}
96
97impl EarlyLintPass for WhileTrue {
98 fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
5869c6ff 99 if let ast::ExprKind::While(cond, _, label) = &e.kind {
e74abb32
XL
100 if let ast::ExprKind::Lit(ref lit) = pierce_parens(cond).kind {
101 if let ast::LitKind::Bool(true) = lit.kind {
e1599b0c 102 if !lit.span.from_expansion() {
ea8adc8c 103 let msg = "denote infinite loops with `loop { ... }`";
5869c6ff 104 let condition_span = e.span.with_hi(cond.span.hi());
74b04a01
XL
105 cx.struct_span_lint(WHILE_TRUE, condition_span, |lint| {
106 lint.build(msg)
107 .span_suggestion_short(
108 condition_span,
109 "use `loop`",
5869c6ff
XL
110 format!(
111 "{}loop",
112 label.map_or_else(String::new, |label| format!(
113 "{}: ",
114 label.ident,
115 ))
116 ),
74b04a01
XL
117 Applicability::MachineApplicable,
118 )
119 .emit();
120 })
ea8adc8c 121 }
b039eaaf 122 }
c34b1796
AL
123 }
124 }
125 }
126}
127
128declare_lint! {
1b1a35ee
XL
129 /// The `box_pointers` lints use of the Box type.
130 ///
131 /// ### Example
132 ///
133 /// ```rust,compile_fail
134 /// #![deny(box_pointers)]
135 /// struct Foo {
136 /// x: Box<isize>,
137 /// }
138 /// ```
139 ///
140 /// {{produces}}
141 ///
142 /// ### Explanation
143 ///
144 /// This lint is mostly historical, and not particularly useful. `Box<T>`
145 /// used to be built into the language, and the only way to do heap
146 /// allocation. Today's Rust can call into other allocators, etc.
b039eaaf
SL
147 BOX_POINTERS,
148 Allow,
149 "use of owned (Box type) heap memory"
c34b1796
AL
150}
151
532ac7d7 152declare_lint_pass!(BoxPointers => [BOX_POINTERS]);
b039eaaf
SL
153
154impl BoxPointers {
5099ac24
FG
155 fn check_heap_type(&self, cx: &LateContext<'_>, span: Span, ty: Ty<'_>) {
156 for leaf in ty.walk() {
ba9703b0
XL
157 if let GenericArgKind::Type(leaf_ty) = leaf.unpack() {
158 if leaf_ty.is_box() {
159 cx.struct_span_lint(BOX_POINTERS, span, |lint| {
160 lint.build(&format!("type uses owned (Box type) pointers: {}", ty)).emit()
161 });
162 }
c34b1796
AL
163 }
164 }
165 }
166}
167
f035d41b
XL
168impl<'tcx> LateLintPass<'tcx> for BoxPointers {
169 fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
e74abb32 170 match it.kind {
dfeec247
XL
171 hir::ItemKind::Fn(..)
172 | hir::ItemKind::TyAlias(..)
173 | hir::ItemKind::Enum(..)
174 | hir::ItemKind::Struct(..)
175 | hir::ItemKind::Union(..) => {
6a06907d 176 self.check_heap_type(cx, it.span, cx.tcx.type_of(it.def_id))
c30ab7b3 177 }
dfeec247 178 _ => (),
d9579d0f 179 }
d9579d0f 180
b039eaaf 181 // If it's a struct, we also have to check the fields' types
e74abb32 182 match it.kind {
dfeec247 183 hir::ItemKind::Struct(ref struct_def, _) | hir::ItemKind::Union(ref struct_def, _) => {
b039eaaf 184 for struct_field in struct_def.fields() {
416331ca 185 let def_id = cx.tcx.hir().local_def_id(struct_field.hir_id);
dfeec247 186 self.check_heap_type(cx, struct_field.span, cx.tcx.type_of(def_id));
b039eaaf 187 }
d9579d0f 188 }
c30ab7b3 189 _ => (),
d9579d0f
AL
190 }
191 }
192
f035d41b 193 fn check_expr(&mut self, cx: &LateContext<'_>, e: &hir::Expr<'_>) {
3dfed10e 194 let ty = cx.typeck_results().node_type(e.hir_id);
b039eaaf 195 self.check_heap_type(cx, e.span, ty);
c34b1796
AL
196 }
197}
198
c34b1796 199declare_lint! {
1b1a35ee
XL
200 /// The `non_shorthand_field_patterns` lint detects using `Struct { x: x }`
201 /// instead of `Struct { x }` in a pattern.
202 ///
203 /// ### Example
204 ///
205 /// ```rust
206 /// struct Point {
207 /// x: i32,
208 /// y: i32,
209 /// }
210 ///
211 ///
212 /// fn main() {
213 /// let p = Point {
214 /// x: 5,
215 /// y: 5,
216 /// };
217 ///
218 /// match p {
219 /// Point { x: x, y: y } => (),
220 /// }
221 /// }
222 /// ```
223 ///
224 /// {{produces}}
225 ///
226 /// ### Explanation
227 ///
228 /// The preferred style is to avoid the repetition of specifying both the
229 /// field name and the binding name if both identifiers are the same.
c34b1796
AL
230 NON_SHORTHAND_FIELD_PATTERNS,
231 Warn,
abe05a73 232 "using `Struct { x: x }` instead of `Struct { x }` in a pattern"
c34b1796
AL
233}
234
532ac7d7 235declare_lint_pass!(NonShorthandFieldPatterns => [NON_SHORTHAND_FIELD_PATTERNS]);
c34b1796 236
f035d41b
XL
237impl<'tcx> LateLintPass<'tcx> for NonShorthandFieldPatterns {
238 fn check_pat(&mut self, cx: &LateContext<'_>, pat: &hir::Pat<'_>) {
dfeec247
XL
239 if let PatKind::Struct(ref qpath, field_pats, _) = pat.kind {
240 let variant = cx
3dfed10e 241 .typeck_results()
dfeec247
XL
242 .pat_ty(pat)
243 .ty_adt_def()
244 .expect("struct pattern type is not an ADT")
f035d41b 245 .variant_of_res(cx.qpath_res(qpath, pat.hir_id));
3157f602 246 for fieldpat in field_pats {
e1599b0c 247 if fieldpat.is_shorthand {
3157f602 248 continue;
b039eaaf 249 }
e1599b0c 250 if fieldpat.span.from_expansion() {
83c7162d
XL
251 // Don't lint if this is a macro expansion: macro authors
252 // shouldn't have to worry about this kind of style issue
253 // (Issue #49588)
254 continue;
255 }
dfeec247
XL
256 if let PatKind::Binding(binding_annot, _, ident, None) = fieldpat.pat.kind {
257 if cx.tcx.find_field_index(ident, &variant)
3dfed10e 258 == Some(cx.tcx.field_index(fieldpat.hir_id, cx.typeck_results()))
dfeec247 259 {
74b04a01
XL
260 cx.struct_span_lint(NON_SHORTHAND_FIELD_PATTERNS, fieldpat.span, |lint| {
261 let mut err = lint
262 .build(&format!("the `{}:` in this pattern is redundant", ident));
263 let binding = match binding_annot {
264 hir::BindingAnnotation::Unannotated => None,
265 hir::BindingAnnotation::Mutable => Some("mut"),
266 hir::BindingAnnotation::Ref => Some("ref"),
267 hir::BindingAnnotation::RefMut => Some("ref mut"),
268 };
269 let ident = if let Some(binding) = binding {
270 format!("{} {}", binding, ident)
271 } else {
272 ident.to_string()
273 };
274 err.span_suggestion(
275 fieldpat.span,
276 "use shorthand field pattern",
277 ident,
278 Applicability::MachineApplicable,
279 );
280 err.emit();
281 });
c34b1796
AL
282 }
283 }
284 }
285 }
286 }
287}
288
c34b1796 289declare_lint! {
1b1a35ee
XL
290 /// The `unsafe_code` lint catches usage of `unsafe` code.
291 ///
292 /// ### Example
293 ///
294 /// ```rust,compile_fail
295 /// #![deny(unsafe_code)]
296 /// fn main() {
297 /// unsafe {
298 ///
299 /// }
300 /// }
301 /// ```
302 ///
303 /// {{produces}}
304 ///
305 /// ### Explanation
306 ///
307 /// This lint is intended to restrict the usage of `unsafe`, which can be
308 /// difficult to use correctly.
c34b1796
AL
309 UNSAFE_CODE,
310 Allow,
311 "usage of `unsafe` code"
312}
313
532ac7d7 314declare_lint_pass!(UnsafeCode => [UNSAFE_CODE]);
c34b1796 315
3b2f2976 316impl UnsafeCode {
74b04a01
XL
317 fn report_unsafe(
318 &self,
319 cx: &EarlyContext<'_>,
320 span: Span,
321 decorate: impl for<'a> FnOnce(LintDiagnosticBuilder<'a>),
322 ) {
dc9dc135 323 // This comes from a macro that has `#[allow_internal_unsafe]`.
3b2f2976
XL
324 if span.allows_unsafe() {
325 return;
326 }
327
74b04a01 328 cx.struct_span_lint(UNSAFE_CODE, span, decorate);
3b2f2976 329 }
6a06907d
XL
330
331 fn report_overriden_symbol_name(&self, cx: &EarlyContext<'_>, span: Span, msg: &str) {
332 self.report_unsafe(cx, span, |lint| {
333 lint.build(msg)
334 .note(
335 "the linker's behavior with multiple libraries exporting duplicate symbol \
336 names is undefined and Rust cannot provide guarantees when you manually \
337 override them",
338 )
339 .emit();
340 })
341 }
3b2f2976
XL
342}
343
0731742a 344impl EarlyLintPass for UnsafeCode {
9fa01778 345 fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &ast::Attribute) {
94222f64 346 if attr.has_name(sym::allow_internal_unsafe) {
74b04a01
XL
347 self.report_unsafe(cx, attr.span, |lint| {
348 lint.build(
349 "`allow_internal_unsafe` allows defining \
0731742a 350 macros using unsafe without triggering \
dfeec247 351 the `unsafe_code` lint at their call site",
74b04a01
XL
352 )
353 .emit()
354 });
0731742a
XL
355 }
356 }
357
9fa01778 358 fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
e74abb32 359 if let ast::ExprKind::Block(ref blk, _) = e.kind {
dc9dc135 360 // Don't warn about generated blocks; that'll just pollute the output.
0731742a 361 if blk.rules == ast::BlockCheckMode::Unsafe(ast::UserProvided) {
74b04a01
XL
362 self.report_unsafe(cx, blk.span, |lint| {
363 lint.build("usage of an `unsafe` block").emit()
364 });
c34b1796
AL
365 }
366 }
367 }
368
9fa01778 369 fn check_item(&mut self, cx: &EarlyContext<'_>, it: &ast::Item) {
e74abb32 370 match it.kind {
3c0e092e 371 ast::ItemKind::Trait(box ast::Trait { unsafety: ast::Unsafe::Yes(_), .. }) => self
5869c6ff 372 .report_unsafe(cx, it.span, |lint| {
74b04a01 373 lint.build("declaration of an `unsafe` trait").emit()
5869c6ff 374 }),
c34b1796 375
3c0e092e 376 ast::ItemKind::Impl(box ast::Impl { unsafety: ast::Unsafe::Yes(_), .. }) => self
5869c6ff 377 .report_unsafe(cx, it.span, |lint| {
74b04a01 378 lint.build("implementation of an `unsafe` trait").emit()
5869c6ff 379 }),
c34b1796 380
6a06907d
XL
381 ast::ItemKind::Fn(..) => {
382 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::no_mangle) {
383 self.report_overriden_symbol_name(
384 cx,
385 attr.span,
386 "declaration of a `no_mangle` function",
387 );
388 }
389 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::export_name) {
390 self.report_overriden_symbol_name(
391 cx,
392 attr.span,
393 "declaration of a function with `export_name`",
394 );
395 }
396 }
397
398 ast::ItemKind::Static(..) => {
399 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::no_mangle) {
400 self.report_overriden_symbol_name(
401 cx,
402 attr.span,
403 "declaration of a `no_mangle` static",
404 );
405 }
406 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::export_name) {
407 self.report_overriden_symbol_name(
408 cx,
409 attr.span,
410 "declaration of a static with `export_name`",
411 );
412 }
413 }
414
ba9703b0 415 _ => {}
c34b1796
AL
416 }
417 }
418
94222f64
XL
419 fn check_impl_item(&mut self, cx: &EarlyContext<'_>, it: &ast::AssocItem) {
420 if let ast::AssocItemKind::Fn(..) = it.kind {
421 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::no_mangle) {
422 self.report_overriden_symbol_name(
423 cx,
424 attr.span,
425 "declaration of a `no_mangle` method",
426 );
427 }
428 if let Some(attr) = cx.sess().find_by_name(&it.attrs, sym::export_name) {
429 self.report_overriden_symbol_name(
430 cx,
431 attr.span,
432 "declaration of a method with `export_name`",
433 );
434 }
435 }
436 }
437
74b04a01
XL
438 fn check_fn(&mut self, cx: &EarlyContext<'_>, fk: FnKind<'_>, span: Span, _: ast::NodeId) {
439 if let FnKind::Fn(
440 ctxt,
441 _,
442 ast::FnSig { header: ast::FnHeader { unsafety: ast::Unsafe::Yes(_), .. }, .. },
443 _,
444 body,
445 ) = fk
446 {
447 let msg = match ctxt {
448 FnCtxt::Foreign => return,
449 FnCtxt::Free => "declaration of an `unsafe` function",
450 FnCtxt::Assoc(_) if body.is_none() => "declaration of an `unsafe` method",
451 FnCtxt::Assoc(_) => "implementation of an `unsafe` method",
452 };
453 self.report_unsafe(cx, span, |lint| lint.build(msg).emit());
c34b1796
AL
454 }
455 }
456}
457
c34b1796 458declare_lint! {
1b1a35ee
XL
459 /// The `missing_docs` lint detects missing documentation for public items.
460 ///
461 /// ### Example
462 ///
463 /// ```rust,compile_fail
464 /// #![deny(missing_docs)]
465 /// pub fn foo() {}
466 /// ```
467 ///
468 /// {{produces}}
469 ///
470 /// ### Explanation
471 ///
472 /// This lint is intended to ensure that a library is well-documented.
473 /// Items without documentation can be difficult for users to understand
474 /// how to use properly.
475 ///
476 /// This lint is "allow" by default because it can be noisy, and not all
477 /// projects may want to enforce everything to be documented.
94b46f34 478 pub MISSING_DOCS,
c34b1796 479 Allow,
8faf50e0 480 "detects missing documentation for public members",
e74abb32 481 report_in_external_macro
c34b1796
AL
482}
483
484pub struct MissingDoc {
9fa01778 485 /// Stack of whether `#[doc(hidden)]` is set at each level which has lint attributes.
c34b1796
AL
486 doc_hidden_stack: Vec<bool>,
487
488 /// Private traits or trait items that leaked through. Don't check their methods.
532ac7d7 489 private_traits: FxHashSet<hir::HirId>,
c34b1796
AL
490}
491
532ac7d7
XL
492impl_lint_pass!(MissingDoc => [MISSING_DOCS]);
493
94222f64 494fn has_doc(attr: &ast::Attribute) -> bool {
dfeec247
XL
495 if attr.is_doc_comment() {
496 return true;
497 }
498
94222f64 499 if !attr.has_name(sym::doc) {
0731742a
XL
500 return false;
501 }
502
cdc7bbd5 503 if attr.value_str().is_some() {
0731742a
XL
504 return true;
505 }
506
507 if let Some(list) = attr.meta_item_list() {
508 for meta in list {
17df50a5 509 if meta.has_name(sym::hidden) {
0731742a
XL
510 return true;
511 }
512 }
513 }
514
515 false
516}
517
c34b1796
AL
518impl MissingDoc {
519 pub fn new() -> MissingDoc {
dfeec247 520 MissingDoc { doc_hidden_stack: vec![false], private_traits: FxHashSet::default() }
c34b1796
AL
521 }
522
523 fn doc_hidden(&self) -> bool {
524 *self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
525 }
526
dfeec247
XL
527 fn check_missing_docs_attrs(
528 &self,
f035d41b 529 cx: &LateContext<'_>,
94222f64 530 def_id: LocalDefId,
dfeec247 531 sp: Span,
ba9703b0 532 article: &'static str,
dfeec247
XL
533 desc: &'static str,
534 ) {
c34b1796
AL
535 // If we're building a test harness, then warning about
536 // documentation is probably not really relevant right now.
537 if cx.sess().opts.test {
538 return;
539 }
540
541 // `#[doc(hidden)]` disables missing_docs check.
542 if self.doc_hidden() {
543 return;
544 }
545
546 // Only check publicly-visible items, using the result from the privacy pass.
547 // It's an option so the crate root can also use this function (it doesn't
dc9dc135 548 // have a `NodeId`).
94222f64
XL
549 if def_id != CRATE_DEF_ID {
550 if !cx.access_levels.is_exported(def_id) {
c34b1796
AL
551 return;
552 }
553 }
554
94222f64
XL
555 let attrs = cx.tcx.get_attrs(def_id.to_def_id());
556 let has_doc = attrs.iter().any(has_doc);
c34b1796 557 if !has_doc {
ba9703b0
XL
558 cx.struct_span_lint(
559 MISSING_DOCS,
560 cx.tcx.sess.source_map().guess_head_span(sp),
561 |lint| {
562 lint.build(&format!("missing documentation for {} {}", article, desc)).emit()
563 },
564 );
c34b1796
AL
565 }
566 }
567}
568
f035d41b 569impl<'tcx> LateLintPass<'tcx> for MissingDoc {
94222f64 570 fn enter_lint_attrs(&mut self, _cx: &LateContext<'_>, attrs: &[ast::Attribute]) {
dfeec247
XL
571 let doc_hidden = self.doc_hidden()
572 || attrs.iter().any(|attr| {
94222f64 573 attr.has_name(sym::doc)
dfeec247
XL
574 && match attr.meta_item_list() {
575 None => false,
576 Some(l) => attr::list_contains_name(&l, sym::hidden),
577 }
578 });
c34b1796
AL
579 self.doc_hidden_stack.push(doc_hidden);
580 }
581
f035d41b 582 fn exit_lint_attrs(&mut self, _: &LateContext<'_>, _attrs: &[ast::Attribute]) {
c34b1796
AL
583 self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
584 }
585
c295e0f8
XL
586 fn check_crate(&mut self, cx: &LateContext<'_>) {
587 self.check_missing_docs_attrs(
588 cx,
589 CRATE_DEF_ID,
590 cx.tcx.def_span(CRATE_DEF_ID),
591 "the",
592 "crate",
593 );
c34b1796
AL
594 }
595
f035d41b 596 fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
ba9703b0 597 match it.kind {
dfeec247 598 hir::ItemKind::Trait(.., trait_item_refs) => {
dc9dc135 599 // Issue #11592: traits are always considered exported, even when private.
8faf50e0 600 if let hir::VisibilityKind::Inherited = it.vis.node {
6a06907d 601 self.private_traits.insert(it.hir_id());
32a655c1 602 for trait_item_ref in trait_item_refs {
6a06907d 603 self.private_traits.insert(trait_item_ref.id.hir_id());
c34b1796 604 }
c30ab7b3 605 return;
c34b1796 606 }
c30ab7b3 607 }
5869c6ff 608 hir::ItemKind::Impl(hir::Impl { of_trait: Some(ref trait_ref), items, .. }) => {
dc9dc135 609 // If the trait is private, add the impl items to `private_traits` so they don't get
c34b1796 610 // reported for missing docs.
48663c56 611 let real_trait = trait_ref.path.res.def_id();
a2a8927a 612 let Some(def_id) = real_trait.as_local() else { return };
5099ac24 613 let Some(Node::Item(item)) = cx.tcx.hir().find_by_def_id(def_id) else { return };
a2a8927a
XL
614 if let hir::VisibilityKind::Inherited = item.vis.node {
615 for impl_item_ref in items {
616 self.private_traits.insert(impl_item_ref.id.hir_id());
b039eaaf 617 }
c34b1796 618 }
c30ab7b3
SL
619 return;
620 }
ba9703b0
XL
621
622 hir::ItemKind::TyAlias(..)
623 | hir::ItemKind::Fn(..)
94222f64 624 | hir::ItemKind::Macro(..)
ba9703b0
XL
625 | hir::ItemKind::Mod(..)
626 | hir::ItemKind::Enum(..)
627 | hir::ItemKind::Struct(..)
628 | hir::ItemKind::Union(..)
629 | hir::ItemKind::Const(..)
630 | hir::ItemKind::Static(..) => {}
631
c30ab7b3 632 _ => return,
c34b1796
AL
633 };
634
6a06907d 635 let (article, desc) = cx.tcx.article_and_description(it.def_id.to_def_id());
ba9703b0 636
94222f64 637 self.check_missing_docs_attrs(cx, it.def_id, it.span, article, desc);
c34b1796
AL
638 }
639
f035d41b 640 fn check_trait_item(&mut self, cx: &LateContext<'_>, trait_item: &hir::TraitItem<'_>) {
6a06907d 641 if self.private_traits.contains(&trait_item.hir_id()) {
c30ab7b3
SL
642 return;
643 }
c34b1796 644
6a06907d 645 let (article, desc) = cx.tcx.article_and_description(trait_item.def_id.to_def_id());
c34b1796 646
94222f64 647 self.check_missing_docs_attrs(cx, trait_item.def_id, trait_item.span, article, desc);
c34b1796
AL
648 }
649
f035d41b 650 fn check_impl_item(&mut self, cx: &LateContext<'_>, impl_item: &hir::ImplItem<'_>) {
c34b1796 651 // If the method is an impl for a trait, don't doc.
6a06907d 652 if method_context(cx, impl_item.hir_id()) == MethodLateContext::TraitImpl {
c34b1796
AL
653 return;
654 }
655
3c0e092e
XL
656 // If the method is an impl for an item with docs_hidden, don't doc.
657 if method_context(cx, impl_item.hir_id()) == MethodLateContext::PlainImpl {
5099ac24 658 let parent = cx.tcx.hir().get_parent_item(impl_item.hir_id());
3c0e092e
XL
659 let impl_ty = cx.tcx.type_of(parent);
660 let outerdef = match impl_ty.kind() {
661 ty::Adt(def, _) => Some(def.did),
662 ty::Foreign(def_id) => Some(*def_id),
663 _ => None,
664 };
665 let is_hidden = match outerdef {
666 Some(id) => cx.tcx.is_doc_hidden(id),
667 None => false,
668 };
669 if is_hidden {
670 return;
671 }
672 }
673
6a06907d 674 let (article, desc) = cx.tcx.article_and_description(impl_item.def_id.to_def_id());
94222f64 675 self.check_missing_docs_attrs(cx, impl_item.def_id, impl_item.span, article, desc);
c34b1796
AL
676 }
677
1b1a35ee 678 fn check_foreign_item(&mut self, cx: &LateContext<'_>, foreign_item: &hir::ForeignItem<'_>) {
6a06907d 679 let (article, desc) = cx.tcx.article_and_description(foreign_item.def_id.to_def_id());
94222f64 680 self.check_missing_docs_attrs(cx, foreign_item.def_id, foreign_item.span, article, desc);
1b1a35ee
XL
681 }
682
6a06907d 683 fn check_field_def(&mut self, cx: &LateContext<'_>, sf: &hir::FieldDef<'_>) {
54a0048b 684 if !sf.is_positional() {
94222f64
XL
685 let def_id = cx.tcx.hir().local_def_id(sf.hir_id);
686 self.check_missing_docs_attrs(cx, def_id, sf.span, "a", "struct field")
c34b1796
AL
687 }
688 }
689
f035d41b 690 fn check_variant(&mut self, cx: &LateContext<'_>, v: &hir::Variant<'_>) {
94222f64 691 self.check_missing_docs_attrs(cx, cx.tcx.hir().local_def_id(v.id), v.span, "a", "variant");
c34b1796
AL
692 }
693}
694
695declare_lint! {
1b1a35ee
XL
696 /// The `missing_copy_implementations` lint detects potentially-forgotten
697 /// implementations of [`Copy`].
698 ///
699 /// [`Copy`]: https://doc.rust-lang.org/std/marker/trait.Copy.html
700 ///
701 /// ### Example
702 ///
703 /// ```rust,compile_fail
704 /// #![deny(missing_copy_implementations)]
705 /// pub struct Foo {
706 /// pub field: i32
707 /// }
708 /// # fn main() {}
709 /// ```
710 ///
711 /// {{produces}}
712 ///
713 /// ### Explanation
714 ///
715 /// Historically (before 1.0), types were automatically marked as `Copy`
716 /// if possible. This was changed so that it required an explicit opt-in
717 /// by implementing the `Copy` trait. As part of this change, a lint was
718 /// added to alert if a copyable type was not marked `Copy`.
719 ///
720 /// This lint is "allow" by default because this code isn't bad; it is
721 /// common to write newtypes like this specifically so that a `Copy` type
722 /// is no longer `Copy`. `Copy` types can result in unintended copies of
723 /// large data which can impact performance.
c34b1796
AL
724 pub MISSING_COPY_IMPLEMENTATIONS,
725 Allow,
726 "detects potentially-forgotten implementations of `Copy`"
727}
728
532ac7d7 729declare_lint_pass!(MissingCopyImplementations => [MISSING_COPY_IMPLEMENTATIONS]);
c34b1796 730
f035d41b
XL
731impl<'tcx> LateLintPass<'tcx> for MissingCopyImplementations {
732 fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
94222f64 733 if !cx.access_levels.is_reachable(item.def_id) {
c34b1796
AL
734 return;
735 }
e74abb32 736 let (def, ty) = match item.kind {
8faf50e0 737 hir::ItemKind::Struct(_, ref ast_generics) => {
ff7c6d11 738 if !ast_generics.params.is_empty() {
c34b1796
AL
739 return;
740 }
6a06907d 741 let def = cx.tcx.adt_def(item.def_id);
c30ab7b3 742 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
9e0c209e 743 }
8faf50e0 744 hir::ItemKind::Union(_, ref ast_generics) => {
ff7c6d11 745 if !ast_generics.params.is_empty() {
9e0c209e
SL
746 return;
747 }
6a06907d 748 let def = cx.tcx.adt_def(item.def_id);
c30ab7b3 749 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
c34b1796 750 }
8faf50e0 751 hir::ItemKind::Enum(_, ref ast_generics) => {
ff7c6d11 752 if !ast_generics.params.is_empty() {
c34b1796
AL
753 return;
754 }
6a06907d 755 let def = cx.tcx.adt_def(item.def_id);
c30ab7b3 756 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
c34b1796
AL
757 }
758 _ => return,
759 };
8bb4bdeb 760 if def.has_dtor(cx.tcx) {
c30ab7b3
SL
761 return;
762 }
0531ce1d 763 let param_env = ty::ParamEnv::empty();
f035d41b 764 if ty.is_copy_modulo_regions(cx.tcx.at(item.span), param_env) {
c34b1796
AL
765 return;
766 }
dfeec247 767 if can_type_implement_copy(cx.tcx, param_env, ty).is_ok() {
74b04a01
XL
768 cx.struct_span_lint(MISSING_COPY_IMPLEMENTATIONS, item.span, |lint| {
769 lint.build(
770 "type could implement `Copy`; consider adding `impl \
dfeec247 771 Copy`",
74b04a01
XL
772 )
773 .emit()
774 })
c34b1796
AL
775 }
776 }
777}
778
779declare_lint! {
1b1a35ee
XL
780 /// The `missing_debug_implementations` lint detects missing
781 /// implementations of [`fmt::Debug`].
782 ///
783 /// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html
784 ///
785 /// ### Example
786 ///
787 /// ```rust,compile_fail
788 /// #![deny(missing_debug_implementations)]
789 /// pub struct Foo;
790 /// # fn main() {}
791 /// ```
792 ///
793 /// {{produces}}
794 ///
795 /// ### Explanation
796 ///
797 /// Having a `Debug` implementation on all types can assist with
798 /// debugging, as it provides a convenient way to format and display a
799 /// value. Using the `#[derive(Debug)]` attribute will automatically
800 /// generate a typical implementation, or a custom implementation can be
801 /// added by manually implementing the `Debug` trait.
802 ///
803 /// This lint is "allow" by default because adding `Debug` to all types can
804 /// have a negative impact on compile time and code size. It also requires
805 /// boilerplate to be added to every type, which can be an impediment.
c34b1796
AL
806 MISSING_DEBUG_IMPLEMENTATIONS,
807 Allow,
74b04a01 808 "detects missing implementations of Debug"
c34b1796
AL
809}
810
48663c56 811#[derive(Default)]
c34b1796 812pub struct MissingDebugImplementations {
6a06907d 813 impling_types: Option<LocalDefIdSet>,
c34b1796
AL
814}
815
532ac7d7
XL
816impl_lint_pass!(MissingDebugImplementations => [MISSING_DEBUG_IMPLEMENTATIONS]);
817
f035d41b
XL
818impl<'tcx> LateLintPass<'tcx> for MissingDebugImplementations {
819 fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
94222f64 820 if !cx.access_levels.is_reachable(item.def_id) {
c34b1796
AL
821 return;
822 }
823
e74abb32 824 match item.kind {
dfeec247 825 hir::ItemKind::Struct(..) | hir::ItemKind::Union(..) | hir::ItemKind::Enum(..) => {}
c34b1796
AL
826 _ => return,
827 }
828
a2a8927a
XL
829 let Some(debug) = cx.tcx.get_diagnostic_item(sym::Debug) else {
830 return
c34b1796
AL
831 };
832
833 if self.impling_types.is_none() {
6a06907d 834 let mut impls = LocalDefIdSet::default();
041b39d2 835 cx.tcx.for_each_impl(debug, |d| {
8faf50e0 836 if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
f9f354fc 837 if let Some(def_id) = ty_def.did.as_local() {
6a06907d 838 impls.insert(def_id);
d9579d0f 839 }
c34b1796 840 }
d9579d0f
AL
841 });
842
c34b1796
AL
843 self.impling_types = Some(impls);
844 debug!("{:?}", self.impling_types);
845 }
846
6a06907d 847 if !self.impling_types.as_ref().unwrap().contains(&item.def_id) {
74b04a01
XL
848 cx.struct_span_lint(MISSING_DEBUG_IMPLEMENTATIONS, item.span, |lint| {
849 lint.build(&format!(
850 "type does not implement `{}`; consider adding `#[derive(Debug)]` \
851 or a manual implementation",
852 cx.tcx.def_path_str(debug)
853 ))
854 .emit()
855 });
c34b1796
AL
856 }
857 }
858}
859
7cac9316 860declare_lint! {
1b1a35ee
XL
861 /// The `anonymous_parameters` lint detects anonymous parameters in trait
862 /// definitions.
863 ///
864 /// ### Example
865 ///
866 /// ```rust,edition2015,compile_fail
867 /// #![deny(anonymous_parameters)]
868 /// // edition 2015
869 /// pub trait Foo {
870 /// fn foo(usize);
871 /// }
872 /// fn main() {}
873 /// ```
874 ///
875 /// {{produces}}
876 ///
877 /// ### Explanation
878 ///
879 /// This syntax is mostly a historical accident, and can be worked around
880 /// quite easily by adding an `_` pattern or a descriptive identifier:
881 ///
882 /// ```rust
883 /// trait Foo {
884 /// fn foo(_: usize);
885 /// }
886 /// ```
887 ///
888 /// This syntax is now a hard error in the 2018 edition. In the 2015
cdc7bbd5 889 /// edition, this lint is "warn" by default. This lint
1b1a35ee
XL
890 /// enables the [`cargo fix`] tool with the `--edition` flag to
891 /// automatically transition old code from the 2015 edition to 2018. The
cdc7bbd5 892 /// tool will run this lint and automatically apply the
1b1a35ee
XL
893 /// suggested fix from the compiler (which is to add `_` to each
894 /// parameter). This provides a completely automated way to update old
895 /// code for a new edition. See [issue #41686] for more details.
896 ///
897 /// [issue #41686]: https://github.com/rust-lang/rust/issues/41686
898 /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
7cac9316 899 pub ANONYMOUS_PARAMETERS,
cdc7bbd5 900 Warn,
e74abb32
XL
901 "detects anonymous parameters",
902 @future_incompatible = FutureIncompatibleInfo {
903 reference: "issue #41686 <https://github.com/rust-lang/rust/issues/41686>",
136023e0 904 reason: FutureIncompatibilityReason::EditionError(Edition::Edition2018),
e74abb32 905 };
7cac9316
XL
906}
907
532ac7d7
XL
908declare_lint_pass!(
909 /// Checks for use of anonymous parameters (RFC 1685).
910 AnonymousParameters => [ANONYMOUS_PARAMETERS]
911);
7cac9316
XL
912
913impl EarlyLintPass for AnonymousParameters {
dfeec247 914 fn check_trait_item(&mut self, cx: &EarlyContext<'_>, it: &ast::AssocItem) {
5099ac24 915 if cx.sess().edition() != Edition::Edition2015 {
cdc7bbd5
XL
916 // This is a hard error in future editions; avoid linting and erroring
917 return;
918 }
3c0e092e 919 if let ast::AssocItemKind::Fn(box Fn { ref sig, .. }) = it.kind {
ba9703b0
XL
920 for arg in sig.decl.inputs.iter() {
921 if let ast::PatKind::Ident(_, ident, None) = arg.pat.kind {
5869c6ff 922 if ident.name == kw::Empty {
ba9703b0 923 cx.struct_span_lint(ANONYMOUS_PARAMETERS, arg.pat.span, |lint| {
5099ac24 924 let ty_snip = cx.sess().source_map().span_to_snippet(arg.ty.span);
ba9703b0
XL
925
926 let (ty_snip, appl) = if let Ok(ref snip) = ty_snip {
927 (snip.as_str(), Applicability::MachineApplicable)
928 } else {
929 ("<type>", Applicability::HasPlaceholders)
930 };
94b46f34 931
ba9703b0
XL
932 lint.build(
933 "anonymous parameters are deprecated and will be \
c295e0f8 934 removed in the next edition",
ba9703b0
XL
935 )
936 .span_suggestion(
937 arg.pat.span,
938 "try naming the parameter or explicitly \
74b04a01 939 ignoring it",
ba9703b0
XL
940 format!("_: {}", ty_snip),
941 appl,
942 )
943 .emit();
944 })
7cac9316
XL
945 }
946 }
dfeec247 947 }
7cac9316
XL
948 }
949 }
950}
951
9fa01778 952/// Check for use of attributes which have been deprecated.
c30ab7b3
SL
953#[derive(Clone)]
954pub struct DeprecatedAttr {
955 // This is not free to compute, so we want to keep it around, rather than
956 // compute it for every attribute.
3c0e092e 957 depr_attrs: Vec<&'static BuiltinAttribute>,
c30ab7b3
SL
958}
959
532ac7d7
XL
960impl_lint_pass!(DeprecatedAttr => []);
961
c30ab7b3
SL
962impl DeprecatedAttr {
963 pub fn new() -> DeprecatedAttr {
dfeec247 964 DeprecatedAttr { depr_attrs: deprecated_attributes() }
c30ab7b3
SL
965 }
966}
967
e1599b0c
XL
968fn lint_deprecated_attr(
969 cx: &EarlyContext<'_>,
970 attr: &ast::Attribute,
971 msg: &str,
972 suggestion: Option<&str>,
973) {
74b04a01
XL
974 cx.struct_span_lint(DEPRECATED, attr.span, |lint| {
975 lint.build(msg)
976 .span_suggestion_short(
977 attr.span,
978 suggestion.unwrap_or("remove this attribute"),
979 String::new(),
980 Applicability::MachineApplicable,
981 )
982 .emit();
983 })
e1599b0c
XL
984}
985
c30ab7b3 986impl EarlyLintPass for DeprecatedAttr {
9fa01778 987 fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &ast::Attribute) {
3c0e092e
XL
988 for BuiltinAttribute { name, gate, .. } in &self.depr_attrs {
989 if attr.ident().map(|ident| ident.name) == Some(*name) {
dfeec247
XL
990 if let &AttributeGate::Gated(
991 Stability::Deprecated(link, suggestion),
5869c6ff
XL
992 name,
993 reason,
dfeec247 994 _,
3c0e092e 995 ) = gate
dfeec247
XL
996 {
997 let msg =
998 format!("use of deprecated attribute `{}`: {}. See {}", name, reason, link);
e1599b0c 999 lint_deprecated_attr(cx, attr, &msg, suggestion);
c30ab7b3
SL
1000 }
1001 return;
1002 }
1003 }
94222f64 1004 if attr.has_name(sym::no_start) || attr.has_name(sym::crate_id) {
60c5eb7d 1005 let path_str = pprust::path_to_string(&attr.get_normal_item().path);
e74abb32 1006 let msg = format!("use of deprecated attribute `{}`: no longer used.", path_str);
e1599b0c
XL
1007 lint_deprecated_attr(cx, attr, &msg, None);
1008 }
c30ab7b3
SL
1009 }
1010}
1011
74b04a01 1012fn warn_if_doc(cx: &EarlyContext<'_>, node_span: Span, node_kind: &str, attrs: &[ast::Attribute]) {
136023e0
XL
1013 use rustc_ast::token::CommentKind;
1014
74b04a01 1015 let mut attrs = attrs.iter().peekable();
3b2f2976 1016
74b04a01
XL
1017 // Accumulate a single span for sugared doc comments.
1018 let mut sugared_span: Option<Span> = None;
3b2f2976 1019
74b04a01 1020 while let Some(attr) = attrs.next() {
136023e0
XL
1021 let is_doc_comment = attr.is_doc_comment();
1022 if is_doc_comment {
74b04a01 1023 sugared_span =
29967ef6 1024 Some(sugared_span.map_or(attr.span, |span| span.with_hi(attr.span.hi())));
74b04a01 1025 }
3b2f2976 1026
cdc7bbd5 1027 if attrs.peek().map_or(false, |next_attr| next_attr.is_doc_comment()) {
74b04a01
XL
1028 continue;
1029 }
532ac7d7 1030
1b1a35ee 1031 let span = sugared_span.take().unwrap_or(attr.span);
532ac7d7 1032
94222f64 1033 if is_doc_comment || attr.has_name(sym::doc) {
74b04a01
XL
1034 cx.struct_span_lint(UNUSED_DOC_COMMENTS, span, |lint| {
1035 let mut err = lint.build("unused doc comment");
532ac7d7
XL
1036 err.span_label(
1037 node_span,
dfeec247 1038 format!("rustdoc does not generate documentation for {}", node_kind),
532ac7d7 1039 );
136023e0
XL
1040 match attr.kind {
1041 AttrKind::DocComment(CommentKind::Line, _) | AttrKind::Normal(..) => {
1042 err.help("use `//` for a plain comment");
1043 }
1044 AttrKind::DocComment(CommentKind::Block, _) => {
1045 err.help("use `/* */` for a plain comment");
1046 }
1047 }
532ac7d7 1048 err.emit();
74b04a01 1049 });
3b2f2976
XL
1050 }
1051 }
1052}
1053
1054impl EarlyLintPass for UnusedDocComment {
532ac7d7 1055 fn check_stmt(&mut self, cx: &EarlyContext<'_>, stmt: &ast::Stmt) {
74b04a01
XL
1056 let kind = match stmt.kind {
1057 ast::StmtKind::Local(..) => "statements",
29967ef6
XL
1058 // Disabled pending discussion in #78306
1059 ast::StmtKind::Item(..) => return,
532ac7d7 1060 // expressions will be reported by `check_expr`.
74b04a01
XL
1061 ast::StmtKind::Empty
1062 | ast::StmtKind::Semi(_)
1063 | ast::StmtKind::Expr(_)
ba9703b0 1064 | ast::StmtKind::MacCall(_) => return,
532ac7d7
XL
1065 };
1066
74b04a01 1067 warn_if_doc(cx, stmt.span, kind, stmt.kind.attrs());
3b2f2976
XL
1068 }
1069
9fa01778 1070 fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &ast::Arm) {
e1599b0c 1071 let arm_span = arm.pat.span.with_hi(arm.body.span.hi());
74b04a01 1072 warn_if_doc(cx, arm_span, "match arms", &arm.attrs);
3b2f2976
XL
1073 }
1074
9fa01778 1075 fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
74b04a01 1076 warn_if_doc(cx, expr.span, "expressions", &expr.attrs);
3b2f2976 1077 }
a2a8927a
XL
1078
1079 fn check_generic_param(&mut self, cx: &EarlyContext<'_>, param: &ast::GenericParam) {
1080 warn_if_doc(cx, param.ident.span, "generic parameters", &param.attrs);
1081 }
3b2f2976
XL
1082}
1083
c34b1796 1084declare_lint! {
1b1a35ee
XL
1085 /// The `no_mangle_const_items` lint detects any `const` items with the
1086 /// [`no_mangle` attribute].
1087 ///
1088 /// [`no_mangle` attribute]: https://doc.rust-lang.org/reference/abi.html#the-no_mangle-attribute
1089 ///
1090 /// ### Example
1091 ///
1092 /// ```rust,compile_fail
1093 /// #[no_mangle]
1094 /// const FOO: i32 = 5;
1095 /// ```
1096 ///
1097 /// {{produces}}
1098 ///
1099 /// ### Explanation
1100 ///
1101 /// Constants do not have their symbols exported, and therefore, this
1102 /// probably means you meant to use a [`static`], not a [`const`].
1103 ///
1104 /// [`static`]: https://doc.rust-lang.org/reference/items/static-items.html
1105 /// [`const`]: https://doc.rust-lang.org/reference/items/constant-items.html
c34b1796
AL
1106 NO_MANGLE_CONST_ITEMS,
1107 Deny,
1108 "const items will not have their symbols exported"
1109}
1110
9cc50fc6 1111declare_lint! {
1b1a35ee
XL
1112 /// The `no_mangle_generic_items` lint detects generic items that must be
1113 /// mangled.
1114 ///
1115 /// ### Example
1116 ///
1117 /// ```rust
1118 /// #[no_mangle]
1119 /// fn foo<T>(t: T) {
1120 ///
1121 /// }
1122 /// ```
1123 ///
1124 /// {{produces}}
1125 ///
1126 /// ### Explanation
1127 ///
136023e0 1128 /// A function with generics must have its symbol mangled to accommodate
1b1a35ee
XL
1129 /// the generic parameter. The [`no_mangle` attribute] has no effect in
1130 /// this situation, and should be removed.
1131 ///
1132 /// [`no_mangle` attribute]: https://doc.rust-lang.org/reference/abi.html#the-no_mangle-attribute
9cc50fc6
SL
1133 NO_MANGLE_GENERIC_ITEMS,
1134 Warn,
1135 "generic items must be mangled"
1136}
1137
532ac7d7 1138declare_lint_pass!(InvalidNoMangleItems => [NO_MANGLE_CONST_ITEMS, NO_MANGLE_GENERIC_ITEMS]);
c34b1796 1139
f035d41b
XL
1140impl<'tcx> LateLintPass<'tcx> for InvalidNoMangleItems {
1141 fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
6a06907d 1142 let attrs = cx.tcx.hir().attrs(it.hir_id());
94222f64
XL
1143 let check_no_mangle_on_generic_fn = |no_mangle_attr: &ast::Attribute,
1144 impl_generics: Option<&hir::Generics<'_>>,
1145 generics: &hir::Generics<'_>,
1146 span| {
1147 for param in
1148 generics.params.iter().chain(impl_generics.map(|g| g.params).into_iter().flatten())
1149 {
1150 match param.kind {
1151 GenericParamKind::Lifetime { .. } => {}
1152 GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
1153 cx.struct_span_lint(NO_MANGLE_GENERIC_ITEMS, span, |lint| {
1154 lint.build("functions generic over types or consts must be mangled")
1155 .span_suggestion_short(
1156 no_mangle_attr.span,
1157 "remove this attribute",
1158 String::new(),
1159 // Use of `#[no_mangle]` suggests FFI intent; correct
1160 // fix may be to monomorphize source by hand
1161 Applicability::MaybeIncorrect,
1162 )
1163 .emit();
1164 });
1165 break;
1166 }
1167 }
1168 }
1169 };
e74abb32 1170 match it.kind {
8faf50e0 1171 hir::ItemKind::Fn(.., ref generics, _) => {
6a06907d 1172 if let Some(no_mangle_attr) = cx.sess().find_by_name(attrs, sym::no_mangle) {
94222f64 1173 check_no_mangle_on_generic_fn(no_mangle_attr, None, generics, it.span);
c34b1796 1174 }
c30ab7b3 1175 }
8faf50e0 1176 hir::ItemKind::Const(..) => {
6a06907d 1177 if cx.sess().contains_name(attrs, sym::no_mangle) {
c34b1796
AL
1178 // Const items do not refer to a particular location in memory, and therefore
1179 // don't have anything to attach a symbol to
74b04a01
XL
1180 cx.struct_span_lint(NO_MANGLE_CONST_ITEMS, it.span, |lint| {
1181 let msg = "const items should never be `#[no_mangle]`";
1182 let mut err = lint.build(msg);
1183
1184 // account for "pub const" (#45562)
1185 let start = cx
1186 .tcx
1187 .sess
1188 .source_map()
1189 .span_to_snippet(it.span)
1190 .map(|snippet| snippet.find("const").unwrap_or(0))
1191 .unwrap_or(0) as u32;
1192 // `const` is 5 chars
1193 let const_span = it.span.with_hi(BytePos(it.span.lo().0 + start + 5));
1194 err.span_suggestion(
1195 const_span,
1196 "try a static value",
1197 "pub static".to_owned(),
1198 Applicability::MachineApplicable,
1199 );
1200 err.emit();
1201 });
c34b1796
AL
1202 }
1203 }
94222f64
XL
1204 hir::ItemKind::Impl(hir::Impl { ref generics, items, .. }) => {
1205 for it in items {
1206 if let hir::AssocItemKind::Fn { .. } = it.kind {
1207 if let Some(no_mangle_attr) = cx
1208 .sess()
1209 .find_by_name(cx.tcx.hir().attrs(it.id.hir_id()), sym::no_mangle)
1210 {
1211 check_no_mangle_on_generic_fn(
1212 no_mangle_attr,
1213 Some(generics),
5099ac24 1214 cx.tcx.hir().get_generics(it.id.def_id).unwrap(),
94222f64
XL
1215 it.span,
1216 );
1217 }
1218 }
1219 }
1220 }
c30ab7b3 1221 _ => {}
c34b1796
AL
1222 }
1223 }
1224}
1225
bd371182 1226declare_lint! {
1b1a35ee
XL
1227 /// The `mutable_transmutes` lint catches transmuting from `&T` to `&mut
1228 /// T` because it is [undefined behavior].
1229 ///
1230 /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
1231 ///
1232 /// ### Example
1233 ///
1234 /// ```rust,compile_fail
1235 /// unsafe {
1236 /// let y = std::mem::transmute::<&i32, &mut i32>(&5);
1237 /// }
1238 /// ```
1239 ///
1240 /// {{produces}}
1241 ///
1242 /// ### Explanation
1243 ///
1244 /// Certain assumptions are made about aliasing of data, and this transmute
1245 /// violates those assumptions. Consider using [`UnsafeCell`] instead.
1246 ///
1247 /// [`UnsafeCell`]: https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html
bd371182
AL
1248 MUTABLE_TRANSMUTES,
1249 Deny,
5099ac24 1250 "transmuting &T to &mut T is undefined behavior, even if the reference is unused"
bd371182
AL
1251}
1252
532ac7d7 1253declare_lint_pass!(MutableTransmutes => [MUTABLE_TRANSMUTES]);
bd371182 1254
f035d41b
XL
1255impl<'tcx> LateLintPass<'tcx> for MutableTransmutes {
1256 fn check_expr(&mut self, cx: &LateContext<'_>, expr: &hir::Expr<'_>) {
83c7162d 1257 use rustc_target::spec::abi::Abi::RustIntrinsic;
ba9703b0 1258 if let Some((&ty::Ref(_, _, from_mt), &ty::Ref(_, _, to_mt))) =
1b1a35ee 1259 get_transmute_from_to(cx, expr).map(|(ty1, ty2)| (ty1.kind(), ty2.kind()))
ba9703b0
XL
1260 {
1261 if to_mt == hir::Mutability::Mut && from_mt == hir::Mutability::Not {
5099ac24
FG
1262 let msg = "transmuting &T to &mut T is undefined behavior, \
1263 even if the reference is unused, consider instead using an UnsafeCell";
ba9703b0 1264 cx.struct_span_lint(MUTABLE_TRANSMUTES, expr.span, |lint| lint.build(msg).emit());
bd371182 1265 }
bd371182
AL
1266 }
1267
f035d41b
XL
1268 fn get_transmute_from_to<'tcx>(
1269 cx: &LateContext<'tcx>,
dfeec247
XL
1270 expr: &hir::Expr<'_>,
1271 ) -> Option<(Ty<'tcx>, Ty<'tcx>)> {
e74abb32 1272 let def = if let hir::ExprKind::Path(ref qpath) = expr.kind {
f035d41b 1273 cx.qpath_res(qpath, expr.hir_id)
476ff2be
SL
1274 } else {
1275 return None;
1276 };
48663c56 1277 if let Res::Def(DefKind::Fn, did) = def {
bd371182
AL
1278 if !def_id_is_transmute(cx, did) {
1279 return None;
1280 }
3dfed10e 1281 let sig = cx.typeck_results().node_type(expr.hir_id).fn_sig(cx.tcx);
041b39d2 1282 let from = sig.inputs().skip_binder()[0];
f035d41b 1283 let to = sig.output().skip_binder();
532ac7d7 1284 return Some((from, to));
bd371182
AL
1285 }
1286 None
1287 }
1288
f035d41b 1289 fn def_id_is_transmute(cx: &LateContext<'_>, def_id: DefId) -> bool {
dfeec247
XL
1290 cx.tcx.fn_sig(def_id).abi() == RustIntrinsic
1291 && cx.tcx.item_name(def_id) == sym::transmute
bd371182
AL
1292 }
1293 }
1294}
1295
c34b1796 1296declare_lint! {
1b1a35ee 1297 /// The `unstable_features` is deprecated and should no longer be used.
c34b1796
AL
1298 UNSTABLE_FEATURES,
1299 Allow,
62682a34 1300 "enabling unstable features (deprecated. do not use)"
c34b1796
AL
1301}
1302
532ac7d7
XL
1303declare_lint_pass!(
1304 /// Forbids using the `#[feature(...)]` attribute
1305 UnstableFeatures => [UNSTABLE_FEATURES]
1306);
b039eaaf 1307
f035d41b 1308impl<'tcx> LateLintPass<'tcx> for UnstableFeatures {
3dfed10e 1309 fn check_attribute(&mut self, cx: &LateContext<'_>, attr: &ast::Attribute) {
94222f64 1310 if attr.has_name(sym::feature) {
cc61c64b 1311 if let Some(items) = attr.meta_item_list() {
62682a34 1312 for item in items {
3dfed10e 1313 cx.struct_span_lint(UNSTABLE_FEATURES, item.span(), |lint| {
74b04a01
XL
1314 lint.build("unstable feature").emit()
1315 });
62682a34
SL
1316 }
1317 }
c34b1796
AL
1318 }
1319 }
1320}
bd371182 1321
abe05a73 1322declare_lint! {
1b1a35ee
XL
1323 /// The `unreachable_pub` lint triggers for `pub` items not reachable from
1324 /// the crate root.
1325 ///
1326 /// ### Example
1327 ///
1328 /// ```rust,compile_fail
1329 /// #![deny(unreachable_pub)]
1330 /// mod foo {
1331 /// pub mod bar {
1332 ///
1333 /// }
1334 /// }
1335 /// ```
1336 ///
1337 /// {{produces}}
1338 ///
1339 /// ### Explanation
1340 ///
1341 /// A bare `pub` visibility may be misleading if the item is not actually
1342 /// publicly exported from the crate. The `pub(crate)` visibility is
1343 /// recommended to be used instead, which more clearly expresses the intent
1344 /// that the item is only visible within its own crate.
1345 ///
1346 /// This lint is "allow" by default because it will trigger for a large
1347 /// amount existing Rust code, and has some false-positives. Eventually it
1348 /// is desired for this to become warn-by-default.
0531ce1d 1349 pub UNREACHABLE_PUB,
abe05a73
XL
1350 Allow,
1351 "`pub` items not reachable from crate root"
1352}
1353
532ac7d7
XL
1354declare_lint_pass!(
1355 /// Lint for items marked `pub` that aren't reachable from other crates.
1356 UnreachablePub => [UNREACHABLE_PUB]
1357);
abe05a73
XL
1358
1359impl UnreachablePub {
dfeec247
XL
1360 fn perform_lint(
1361 &self,
f035d41b 1362 cx: &LateContext<'_>,
dfeec247 1363 what: &str,
94222f64 1364 def_id: LocalDefId,
dfeec247
XL
1365 vis: &hir::Visibility<'_>,
1366 span: Span,
1367 exportable: bool,
1368 ) {
8faf50e0
XL
1369 let mut applicability = Applicability::MachineApplicable;
1370 match vis.node {
94222f64 1371 hir::VisibilityKind::Public if !cx.access_levels.is_reachable(def_id) => {
e1599b0c 1372 if span.from_expansion() {
8faf50e0
XL
1373 applicability = Applicability::MaybeIncorrect;
1374 }
ba9703b0 1375 let def_span = cx.tcx.sess.source_map().guess_head_span(span);
74b04a01
XL
1376 cx.struct_span_lint(UNREACHABLE_PUB, def_span, |lint| {
1377 let mut err = lint.build(&format!("unreachable `pub` {}", what));
1378 let replacement = if cx.tcx.features().crate_visibility_modifier {
1379 "crate"
1380 } else {
1381 "pub(crate)"
1382 }
1383 .to_owned();
8faf50e0 1384
74b04a01
XL
1385 err.span_suggestion(
1386 vis.span,
1387 "consider restricting its visibility",
1388 replacement,
1389 applicability,
1390 );
1391 if exportable {
1392 err.help("or consider exporting it for use by other crates");
1393 }
1394 err.emit();
1395 });
dfeec247 1396 }
8faf50e0 1397 _ => {}
abe05a73
XL
1398 }
1399 }
1400}
1401
f035d41b
XL
1402impl<'tcx> LateLintPass<'tcx> for UnreachablePub {
1403 fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
94222f64 1404 self.perform_lint(cx, "item", item.def_id, &item.vis, item.span, true);
abe05a73
XL
1405 }
1406
f035d41b 1407 fn check_foreign_item(&mut self, cx: &LateContext<'_>, foreign_item: &hir::ForeignItem<'tcx>) {
dfeec247
XL
1408 self.perform_lint(
1409 cx,
1410 "item",
94222f64 1411 foreign_item.def_id,
dfeec247
XL
1412 &foreign_item.vis,
1413 foreign_item.span,
1414 true,
1415 );
abe05a73
XL
1416 }
1417
6a06907d 1418 fn check_field_def(&mut self, cx: &LateContext<'_>, field: &hir::FieldDef<'_>) {
94222f64
XL
1419 let def_id = cx.tcx.hir().local_def_id(field.hir_id);
1420 self.perform_lint(cx, "field", def_id, &field.vis, field.span, false);
abe05a73
XL
1421 }
1422
f035d41b 1423 fn check_impl_item(&mut self, cx: &LateContext<'_>, impl_item: &hir::ImplItem<'_>) {
94222f64 1424 self.perform_lint(cx, "item", impl_item.def_id, &impl_item.vis, impl_item.span, false);
abe05a73
XL
1425 }
1426}
0531ce1d 1427
0531ce1d 1428declare_lint! {
1b1a35ee
XL
1429 /// The `type_alias_bounds` lint detects bounds in type aliases.
1430 ///
1431 /// ### Example
1432 ///
1433 /// ```rust
1434 /// type SendVec<T: Send> = Vec<T>;
1435 /// ```
1436 ///
1437 /// {{produces}}
1438 ///
1439 /// ### Explanation
1440 ///
1441 /// The trait bounds in a type alias are currently ignored, and should not
1442 /// be included to avoid confusion. This was previously allowed
1443 /// unintentionally; this may become a hard error in the future.
0531ce1d
XL
1444 TYPE_ALIAS_BOUNDS,
1445 Warn,
1446 "bounds in type aliases are not enforced"
1447}
1448
532ac7d7
XL
1449declare_lint_pass!(
1450 /// Lint for trait and lifetime bounds in type aliases being mostly ignored.
1451 /// They are relevant when using associated types, but otherwise neither checked
1452 /// at definition site nor enforced at use site.
1453 TypeAliasBounds => [TYPE_ALIAS_BOUNDS]
1454);
0531ce1d
XL
1455
1456impl TypeAliasBounds {
dfeec247 1457 fn is_type_variable_assoc(qpath: &hir::QPath<'_>) -> bool {
0531ce1d
XL
1458 match *qpath {
1459 hir::QPath::TypeRelative(ref ty, _) => {
1460 // If this is a type variable, we found a `T::Assoc`.
e74abb32 1461 match ty.kind {
29967ef6
XL
1462 hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => {
1463 matches!(path.res, Res::Def(DefKind::TyParam, _))
1464 }
dfeec247 1465 _ => false,
0531ce1d
XL
1466 }
1467 }
3dfed10e 1468 hir::QPath::Resolved(..) | hir::QPath::LangItem(..) => false,
0531ce1d
XL
1469 }
1470 }
1471
dfeec247 1472 fn suggest_changing_assoc_types(ty: &hir::Ty<'_>, err: &mut DiagnosticBuilder<'_>) {
0531ce1d
XL
1473 // Access to associates types should use `<T as Bound>::Assoc`, which does not need a
1474 // bound. Let's see if this type does that.
1475
1476 // We use a HIR visitor to walk the type.
dfeec247 1477 use rustc_hir::intravisit::{self, Visitor};
dc9dc135 1478 struct WalkAssocTypes<'a, 'db> {
dfeec247 1479 err: &'a mut DiagnosticBuilder<'db>,
0531ce1d
XL
1480 }
1481 impl<'a, 'db, 'v> Visitor<'v> for WalkAssocTypes<'a, 'db> {
dfeec247 1482 fn visit_qpath(&mut self, qpath: &'v hir::QPath<'v>, id: hir::HirId, span: Span) {
0531ce1d 1483 if TypeAliasBounds::is_type_variable_assoc(qpath) {
dfeec247
XL
1484 self.err.span_help(
1485 span,
0531ce1d 1486 "use fully disambiguated paths (i.e., `<T as Trait>::Assoc`) to refer to \
dfeec247
XL
1487 associated types in type aliases",
1488 );
0531ce1d
XL
1489 }
1490 intravisit::walk_qpath(self, qpath, id, span)
1491 }
1492 }
1493
1494 // Let's go for a walk!
1495 let mut visitor = WalkAssocTypes { err };
1496 visitor.visit_ty(ty);
1497 }
1498}
1499
f035d41b
XL
1500impl<'tcx> LateLintPass<'tcx> for TypeAliasBounds {
1501 fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
a2a8927a
XL
1502 let hir::ItemKind::TyAlias(ty, type_alias_generics) = &item.kind else {
1503 return
0531ce1d 1504 };
f035d41b
XL
1505 if let hir::TyKind::OpaqueDef(..) = ty.kind {
1506 // Bounds are respected for `type X = impl Trait`
1507 return;
1508 }
0531ce1d
XL
1509 let mut suggested_changing_assoc_types = false;
1510 // There must not be a where clause
1511 if !type_alias_generics.where_clause.predicates.is_empty() {
74b04a01 1512 cx.lint(
dfeec247 1513 TYPE_ALIAS_BOUNDS,
74b04a01
XL
1514 |lint| {
1515 let mut err = lint.build("where clauses are not enforced in type aliases");
1516 let spans: Vec<_> = type_alias_generics
1517 .where_clause
1518 .predicates
1519 .iter()
1520 .map(|pred| pred.span())
1521 .collect();
1522 err.set_span(spans);
1523 err.span_suggestion(
1524 type_alias_generics.where_clause.span_for_predicates_or_empty_place(),
1525 "the clause will not be checked when the type alias is used, and should be removed",
1526 String::new(),
1527 Applicability::MachineApplicable,
1528 );
1529 if !suggested_changing_assoc_types {
1530 TypeAliasBounds::suggest_changing_assoc_types(ty, &mut err);
1531 suggested_changing_assoc_types = true;
1532 }
1533 err.emit();
1534 },
e74abb32 1535 );
0531ce1d
XL
1536 }
1537 // The parameters must not have bounds
1538 for param in type_alias_generics.params.iter() {
8faf50e0 1539 let spans: Vec<_> = param.bounds.iter().map(|b| b.span()).collect();
dfeec247
XL
1540 let suggestion = spans
1541 .iter()
1542 .map(|sp| {
1543 let start = param.span.between(*sp); // Include the `:` in `T: Bound`.
1544 (start.to(*sp), String::new())
1545 })
1546 .collect();
0531ce1d 1547 if !spans.is_empty() {
74b04a01
XL
1548 cx.struct_span_lint(TYPE_ALIAS_BOUNDS, spans, |lint| {
1549 let mut err =
1550 lint.build("bounds on generic parameters are not enforced in type aliases");
1551 let msg = "the bound will not be checked when the type alias is used, \
1552 and should be removed";
1553 err.multipart_suggestion(&msg, suggestion, Applicability::MachineApplicable);
1554 if !suggested_changing_assoc_types {
1555 TypeAliasBounds::suggest_changing_assoc_types(ty, &mut err);
1556 suggested_changing_assoc_types = true;
1557 }
1558 err.emit();
1559 });
0531ce1d
XL
1560 }
1561 }
1562 }
1563}
1564
532ac7d7
XL
1565declare_lint_pass!(
1566 /// Lint constants that are erroneous.
1567 /// Without this lint, we might not get any diagnostic if the constant is
1568 /// unused within this crate, even though downstream crates can't use it
1569 /// without producing an error.
1570 UnusedBrokenConst => []
1571);
9fa01778 1572
f035d41b
XL
1573impl<'tcx> LateLintPass<'tcx> for UnusedBrokenConst {
1574 fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
e74abb32 1575 match it.kind {
8faf50e0 1576 hir::ItemKind::Const(_, body_id) => {
1b1a35ee
XL
1577 let def_id = cx.tcx.hir().body_owner_def_id(body_id).to_def_id();
1578 // trigger the query once for all constants since that will already report the errors
1579 // FIXME: Use ensure here
1580 let _ = cx.tcx.const_eval_poly(def_id);
dfeec247 1581 }
8faf50e0 1582 hir::ItemKind::Static(_, _, body_id) => {
1b1a35ee
XL
1583 let def_id = cx.tcx.hir().body_owner_def_id(body_id).to_def_id();
1584 // FIXME: Use ensure here
1585 let _ = cx.tcx.eval_static_initializer(def_id);
dfeec247
XL
1586 }
1587 _ => {}
0531ce1d
XL
1588 }
1589 }
1590}
94b46f34 1591
94b46f34 1592declare_lint! {
1b1a35ee
XL
1593 /// The `trivial_bounds` lint detects trait bounds that don't depend on
1594 /// any type parameters.
1595 ///
1596 /// ### Example
1597 ///
1598 /// ```rust
1599 /// #![feature(trivial_bounds)]
1600 /// pub struct A where i32: Copy;
1601 /// ```
1602 ///
1603 /// {{produces}}
1604 ///
1605 /// ### Explanation
1606 ///
1607 /// Usually you would not write a trait bound that you know is always
1608 /// true, or never true. However, when using macros, the macro may not
1609 /// know whether or not the constraint would hold or not at the time when
1610 /// generating the code. Currently, the compiler does not alert you if the
1611 /// constraint is always true, and generates an error if it is never true.
1612 /// The `trivial_bounds` feature changes this to be a warning in both
1613 /// cases, giving macros more freedom and flexibility to generate code,
1614 /// while still providing a signal when writing non-macro code that
1615 /// something is amiss.
1616 ///
1617 /// See [RFC 2056] for more details. This feature is currently only
1618 /// available on the nightly channel, see [tracking issue #48214].
1619 ///
1620 /// [RFC 2056]: https://github.com/rust-lang/rfcs/blob/master/text/2056-allow-trivial-where-clause-constraints.md
1621 /// [tracking issue #48214]: https://github.com/rust-lang/rust/issues/48214
94b46f34
XL
1622 TRIVIAL_BOUNDS,
1623 Warn,
1624 "these bounds don't depend on an type parameters"
1625}
1626
532ac7d7
XL
1627declare_lint_pass!(
1628 /// Lint for trait and lifetime bounds that don't depend on type parameters
1629 /// which either do nothing, or stop the item from being used.
1630 TrivialConstraints => [TRIVIAL_BOUNDS]
1631);
94b46f34 1632
f035d41b
XL
1633impl<'tcx> LateLintPass<'tcx> for TrivialConstraints {
1634 fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'tcx>) {
ba9703b0 1635 use rustc_middle::ty::fold::TypeFoldable;
5869c6ff 1636 use rustc_middle::ty::PredicateKind::*;
94b46f34 1637
94b46f34 1638 if cx.tcx.features().trivial_bounds {
6a06907d 1639 let predicates = cx.tcx.predicates_of(item.def_id);
e74abb32 1640 for &(predicate, span) in predicates.predicates {
5869c6ff 1641 let predicate_kind_name = match predicate.kind().skip_binder() {
c295e0f8 1642 Trait(..) => "trait",
94b46f34 1643 TypeOutlives(..) |
c295e0f8 1644 RegionOutlives(..) => "lifetime",
94b46f34
XL
1645
1646 // Ignore projections, as they can only be global
1647 // if the trait bound is global
1648 Projection(..) |
1649 // Ignore bounds that a user can't type
1650 WellFormed(..) |
1651 ObjectSafe(..) |
1652 ClosureKind(..) |
1653 Subtype(..) |
94222f64 1654 Coerce(..) |
f9f354fc 1655 ConstEvaluatable(..) |
1b1a35ee
XL
1656 ConstEquate(..) |
1657 TypeWellFormedFromEnv(..) => continue,
94b46f34 1658 };
5099ac24 1659 if predicate.is_global() {
74b04a01
XL
1660 cx.struct_span_lint(TRIVIAL_BOUNDS, span, |lint| {
1661 lint.build(&format!(
dfeec247
XL
1662 "{} bound {} does not depend on any type \
1663 or lifetime parameters",
1664 predicate_kind_name, predicate
74b04a01
XL
1665 ))
1666 .emit()
1667 });
94b46f34
XL
1668 }
1669 }
1670 }
1671 }
1672}
1673
532ac7d7
XL
1674declare_lint_pass!(
1675 /// Does nothing as a lint pass, but registers some `Lint`s
1676 /// which are used by other parts of the compiler.
1677 SoftLints => [
1678 WHILE_TRUE,
1679 BOX_POINTERS,
1680 NON_SHORTHAND_FIELD_PATTERNS,
1681 UNSAFE_CODE,
1682 MISSING_DOCS,
1683 MISSING_COPY_IMPLEMENTATIONS,
1684 MISSING_DEBUG_IMPLEMENTATIONS,
1685 ANONYMOUS_PARAMETERS,
1686 UNUSED_DOC_COMMENTS,
532ac7d7
XL
1687 NO_MANGLE_CONST_ITEMS,
1688 NO_MANGLE_GENERIC_ITEMS,
1689 MUTABLE_TRANSMUTES,
1690 UNSTABLE_FEATURES,
532ac7d7
XL
1691 UNREACHABLE_PUB,
1692 TYPE_ALIAS_BOUNDS,
1693 TRIVIAL_BOUNDS
1694 ]
1695);
8faf50e0
XL
1696
1697declare_lint! {
1b1a35ee
XL
1698 /// The `ellipsis_inclusive_range_patterns` lint detects the [`...` range
1699 /// pattern], which is deprecated.
1700 ///
1701 /// [`...` range pattern]: https://doc.rust-lang.org/reference/patterns.html#range-patterns
1702 ///
1703 /// ### Example
1704 ///
c295e0f8 1705 /// ```rust,edition2018
1b1a35ee
XL
1706 /// let x = 123;
1707 /// match x {
1708 /// 0...100 => {}
1709 /// _ => {}
1710 /// }
1711 /// ```
1712 ///
1713 /// {{produces}}
1714 ///
1715 /// ### Explanation
1716 ///
1717 /// The `...` range pattern syntax was changed to `..=` to avoid potential
1718 /// confusion with the [`..` range expression]. Use the new form instead.
1719 ///
1720 /// [`..` range expression]: https://doc.rust-lang.org/reference/expressions/range-expr.html
8faf50e0 1721 pub ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
dc9dc135 1722 Warn,
17df50a5
XL
1723 "`...` range patterns are deprecated",
1724 @future_incompatible = FutureIncompatibleInfo {
94222f64 1725 reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>",
136023e0 1726 reason: FutureIncompatibilityReason::EditionError(Edition::Edition2021),
17df50a5 1727 };
8faf50e0
XL
1728}
1729
48663c56
XL
1730#[derive(Default)]
1731pub struct EllipsisInclusiveRangePatterns {
1732 /// If `Some(_)`, suppress all subsequent pattern
1733 /// warnings for better diagnostics.
1734 node_id: Option<ast::NodeId>,
1735}
1736
1737impl_lint_pass!(EllipsisInclusiveRangePatterns => [ELLIPSIS_INCLUSIVE_RANGE_PATTERNS]);
8faf50e0
XL
1738
1739impl EarlyLintPass for EllipsisInclusiveRangePatterns {
48663c56
XL
1740 fn check_pat(&mut self, cx: &EarlyContext<'_>, pat: &ast::Pat) {
1741 if self.node_id.is_some() {
1742 // Don't recursively warn about patterns inside range endpoints.
dfeec247 1743 return;
48663c56
XL
1744 }
1745
3dfed10e 1746 use self::ast::{PatKind, RangeSyntax::DotDotDot};
13cf67c4
XL
1747
1748 /// If `pat` is a `...` pattern, return the start and end of the range, as well as the span
1749 /// corresponding to the ellipsis.
dfeec247 1750 fn matches_ellipsis_pat(pat: &ast::Pat) -> Option<(Option<&Expr>, &Expr, Span)> {
e74abb32 1751 match &pat.kind {
dfeec247
XL
1752 PatKind::Range(
1753 a,
1754 Some(b),
1755 Spanned { span, node: RangeEnd::Included(DotDotDot) },
1756 ) => Some((a.as_deref(), b, *span)),
13cf67c4
XL
1757 _ => None,
1758 }
1759 }
8faf50e0 1760
e74abb32 1761 let (parenthesise, endpoints) = match &pat.kind {
13cf67c4
XL
1762 PatKind::Ref(subpat, _) => (true, matches_ellipsis_pat(&subpat)),
1763 _ => (false, matches_ellipsis_pat(pat)),
1764 };
1765
1766 if let Some((start, end, join)) = endpoints {
8faf50e0 1767 let msg = "`...` range patterns are deprecated";
13cf67c4
XL
1768 let suggestion = "use `..=` for an inclusive range";
1769 if parenthesise {
48663c56 1770 self.node_id = Some(pat.id);
17df50a5
XL
1771 let end = expr_to_string(&end);
1772 let replace = match start {
1773 Some(start) => format!("&({}..={})", expr_to_string(&start), end),
1774 None => format!("&(..={})", end),
1775 };
1776 if join.edition() >= Edition::Edition2021 {
1777 let mut err =
5099ac24 1778 rustc_errors::struct_span_err!(cx.sess(), pat.span, E0783, "{}", msg,);
17df50a5
XL
1779 err.span_suggestion(
1780 pat.span,
1781 suggestion,
1782 replace,
1783 Applicability::MachineApplicable,
1784 )
1785 .emit();
1786 } else {
1787 cx.struct_span_lint(ELLIPSIS_INCLUSIVE_RANGE_PATTERNS, pat.span, |lint| {
1788 lint.build(msg)
1789 .span_suggestion(
1790 pat.span,
1791 suggestion,
1792 replace,
1793 Applicability::MachineApplicable,
1794 )
1795 .emit();
1796 });
1797 }
13cf67c4 1798 } else {
17df50a5
XL
1799 let replace = "..=".to_owned();
1800 if join.edition() >= Edition::Edition2021 {
1801 let mut err =
5099ac24 1802 rustc_errors::struct_span_err!(cx.sess(), pat.span, E0783, "{}", msg,);
17df50a5
XL
1803 err.span_suggestion_short(
1804 join,
1805 suggestion,
1806 replace,
1807 Applicability::MachineApplicable,
1808 )
1809 .emit();
1810 } else {
1811 cx.struct_span_lint(ELLIPSIS_INCLUSIVE_RANGE_PATTERNS, join, |lint| {
1812 lint.build(msg)
1813 .span_suggestion_short(
1814 join,
1815 suggestion,
1816 replace,
1817 Applicability::MachineApplicable,
1818 )
1819 .emit();
1820 });
1821 }
13cf67c4 1822 };
8faf50e0
XL
1823 }
1824 }
48663c56
XL
1825
1826 fn check_pat_post(&mut self, _cx: &EarlyContext<'_>, pat: &ast::Pat) {
1827 if let Some(node_id) = self.node_id {
1828 if pat.id == node_id {
1829 self.node_id = None
1830 }
1831 }
1832 }
8faf50e0
XL
1833}
1834
1835declare_lint! {
1b1a35ee
XL
1836 /// The `unnameable_test_items` lint detects [`#[test]`][test] functions
1837 /// that are not able to be run by the test harness because they are in a
1838 /// position where they are not nameable.
1839 ///
1840 /// [test]: https://doc.rust-lang.org/reference/attributes/testing.html#the-test-attribute
1841 ///
1842 /// ### Example
1843 ///
1844 /// ```rust,test
1845 /// fn main() {
1846 /// #[test]
1847 /// fn foo() {
1848 /// // This test will not fail because it does not run.
1849 /// assert_eq!(1, 2);
1850 /// }
1851 /// }
1852 /// ```
1853 ///
1854 /// {{produces}}
1855 ///
1856 /// ### Explanation
1857 ///
1858 /// In order for the test harness to run a test, the test function must be
1859 /// located in a position where it can be accessed from the crate root.
1860 /// This generally means it must be defined in a module, and not anywhere
1861 /// else such as inside another function. The compiler previously allowed
1862 /// this without an error, so a lint was added as an alert that a test is
1863 /// not being used. Whether or not this should be allowed has not yet been
1864 /// decided, see [RFC 2471] and [issue #36629].
1865 ///
1866 /// [RFC 2471]: https://github.com/rust-lang/rfcs/pull/2471#issuecomment-397414443
1867 /// [issue #36629]: https://github.com/rust-lang/rust/issues/36629
b7449926 1868 UNNAMEABLE_TEST_ITEMS,
8faf50e0 1869 Warn,
416331ca 1870 "detects an item that cannot be named being marked as `#[test_case]`",
e74abb32 1871 report_in_external_macro
8faf50e0
XL
1872}
1873
b7449926 1874pub struct UnnameableTestItems {
6a06907d 1875 boundary: Option<LocalDefId>, // Id of the item under which things are not nameable
b7449926
XL
1876 items_nameable: bool,
1877}
8faf50e0 1878
532ac7d7
XL
1879impl_lint_pass!(UnnameableTestItems => [UNNAMEABLE_TEST_ITEMS]);
1880
b7449926
XL
1881impl UnnameableTestItems {
1882 pub fn new() -> Self {
ba9703b0 1883 Self { boundary: None, items_nameable: true }
b7449926
XL
1884 }
1885}
1886
f035d41b
XL
1887impl<'tcx> LateLintPass<'tcx> for UnnameableTestItems {
1888 fn check_item(&mut self, cx: &LateContext<'_>, it: &hir::Item<'_>) {
b7449926 1889 if self.items_nameable {
dfeec247
XL
1890 if let hir::ItemKind::Mod(..) = it.kind {
1891 } else {
b7449926 1892 self.items_nameable = false;
6a06907d 1893 self.boundary = Some(it.def_id);
8faf50e0 1894 }
b7449926
XL
1895 return;
1896 }
1897
6a06907d
XL
1898 let attrs = cx.tcx.hir().attrs(it.hir_id());
1899 if let Some(attr) = cx.sess().find_by_name(attrs, sym::rustc_test_marker) {
74b04a01
XL
1900 cx.struct_span_lint(UNNAMEABLE_TEST_ITEMS, attr.span, |lint| {
1901 lint.build("cannot test inner items").emit()
1902 });
b7449926
XL
1903 }
1904 }
1905
f035d41b 1906 fn check_item_post(&mut self, _cx: &LateContext<'_>, it: &hir::Item<'_>) {
6a06907d 1907 if !self.items_nameable && self.boundary == Some(it.def_id) {
b7449926
XL
1908 self.items_nameable = true;
1909 }
8faf50e0
XL
1910 }
1911}
1912
1913declare_lint! {
1b1a35ee
XL
1914 /// The `keyword_idents` lint detects edition keywords being used as an
1915 /// identifier.
1916 ///
1917 /// ### Example
1918 ///
1919 /// ```rust,edition2015,compile_fail
1920 /// #![deny(keyword_idents)]
1921 /// // edition 2015
1922 /// fn dyn() {}
1923 /// ```
1924 ///
1925 /// {{produces}}
1926 ///
1927 /// ### Explanation
1928 ///
1929 /// Rust [editions] allow the language to evolve without breaking
1930 /// backwards compatibility. This lint catches code that uses new keywords
1931 /// that are added to the language that are used as identifiers (such as a
1932 /// variable name, function name, etc.). If you switch the compiler to a
1933 /// new edition without updating the code, then it will fail to compile if
1934 /// you are using a new keyword as an identifier.
1935 ///
1936 /// You can manually change the identifiers to a non-keyword, or use a
1937 /// [raw identifier], for example `r#dyn`, to transition to a new edition.
1938 ///
1939 /// This lint solves the problem automatically. It is "allow" by default
1940 /// because the code is perfectly valid in older editions. The [`cargo
1941 /// fix`] tool with the `--edition` flag will switch this lint to "warn"
1942 /// and automatically apply the suggested fix from the compiler (which is
1943 /// to use a raw identifier). This provides a completely automated way to
1944 /// update old code for a new edition.
1945 ///
1946 /// [editions]: https://doc.rust-lang.org/edition-guide/
1947 /// [raw identifier]: https://doc.rust-lang.org/reference/identifiers.html
1948 /// [`cargo fix`]: https://doc.rust-lang.org/cargo/commands/cargo-fix.html
b7449926 1949 pub KEYWORD_IDENTS,
8faf50e0 1950 Allow,
e74abb32
XL
1951 "detects edition keywords being used as an identifier",
1952 @future_incompatible = FutureIncompatibleInfo {
1953 reference: "issue #49716 <https://github.com/rust-lang/rust/issues/49716>",
136023e0 1954 reason: FutureIncompatibilityReason::EditionError(Edition::Edition2018),
e74abb32 1955 };
8faf50e0
XL
1956}
1957
532ac7d7
XL
1958declare_lint_pass!(
1959 /// Check for uses of edition keywords used as an identifier.
1960 KeywordIdents => [KEYWORD_IDENTS]
1961);
8faf50e0 1962
532ac7d7 1963struct UnderMacro(bool);
8faf50e0 1964
b7449926 1965impl KeywordIdents {
9fa01778 1966 fn check_tokens(&mut self, cx: &EarlyContext<'_>, tokens: TokenStream) {
8faf50e0
XL
1967 for tt in tokens.into_trees() {
1968 match tt {
dc9dc135 1969 // Only report non-raw idents.
dfeec247
XL
1970 TokenTree::Token(token) => {
1971 if let Some((ident, false)) = token.ident() {
1972 self.check_ident_token(cx, UnderMacro(true), ident);
1973 }
8faf50e0 1974 }
dfeec247 1975 TokenTree::Delimited(_, _, tts) => self.check_tokens(cx, tts),
8faf50e0
XL
1976 }
1977 }
1978 }
8faf50e0 1979
dfeec247
XL
1980 fn check_ident_token(
1981 &mut self,
1982 cx: &EarlyContext<'_>,
1983 UnderMacro(under_macro): UnderMacro,
f9f354fc 1984 ident: Ident,
dfeec247 1985 ) {
5099ac24 1986 let next_edition = match cx.sess().edition() {
b7449926 1987 Edition::Edition2015 => {
dc9dc135
XL
1988 match ident.name {
1989 kw::Async | kw::Await | kw::Try => Edition::Edition2018,
532ac7d7
XL
1990
1991 // rust-lang/rust#56327: Conservatively do not
1992 // attempt to report occurrences of `dyn` within
1993 // macro definitions or invocations, because `dyn`
1994 // can legitimately occur as a contextual keyword
1995 // in 2015 code denoting its 2018 meaning, and we
1996 // do not want rustfix to inject bugs into working
1997 // code by rewriting such occurrences.
1998 //
1999 // But if we see `dyn` outside of a macro, we know
2000 // its precise role in the parsed AST and thus are
2001 // assured this is truly an attempt to use it as
2002 // an identifier.
dc9dc135 2003 kw::Dyn if !under_macro => Edition::Edition2018,
532ac7d7 2004
b7449926
XL
2005 _ => return,
2006 }
2007 }
2008
0731742a 2009 // There are no new keywords yet for the 2018 edition and beyond.
48663c56 2010 _ => return,
b7449926
XL
2011 };
2012
dc9dc135 2013 // Don't lint `r#foo`.
5099ac24 2014 if cx.sess().parse_sess.raw_identifier_spans.borrow().contains(&ident.span) {
b7449926 2015 return;
8faf50e0 2016 }
b7449926 2017
74b04a01
XL
2018 cx.struct_span_lint(KEYWORD_IDENTS, ident.span, |lint| {
2019 lint.build(&format!("`{}` is a keyword in the {} edition", ident, next_edition))
2020 .span_suggestion(
2021 ident.span,
2022 "you can use a raw identifier to stay compatible",
2023 format!("r#{}", ident),
2024 Applicability::MachineApplicable,
2025 )
2026 .emit()
2027 });
8faf50e0
XL
2028 }
2029}
0bf4aa26 2030
532ac7d7
XL
2031impl EarlyLintPass for KeywordIdents {
2032 fn check_mac_def(&mut self, cx: &EarlyContext<'_>, mac_def: &ast::MacroDef, _id: ast::NodeId) {
60c5eb7d 2033 self.check_tokens(cx, mac_def.body.inner_tokens());
9fa01778 2034 }
ba9703b0 2035 fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::MacCall) {
60c5eb7d 2036 self.check_tokens(cx, mac.args.inner_tokens());
532ac7d7 2037 }
f9f354fc 2038 fn check_ident(&mut self, cx: &EarlyContext<'_>, ident: Ident) {
532ac7d7 2039 self.check_ident_token(cx, UnderMacro(false), ident);
0bf4aa26
XL
2040 }
2041}
2042
532ac7d7
XL
2043declare_lint_pass!(ExplicitOutlivesRequirements => [EXPLICIT_OUTLIVES_REQUIREMENTS]);
2044
0bf4aa26 2045impl ExplicitOutlivesRequirements {
dc9dc135 2046 fn lifetimes_outliving_lifetime<'tcx>(
e74abb32 2047 inferred_outlives: &'tcx [(ty::Predicate<'tcx>, Span)],
dc9dc135
XL
2048 index: u32,
2049 ) -> Vec<ty::Region<'tcx>> {
dfeec247
XL
2050 inferred_outlives
2051 .iter()
5869c6ff 2052 .filter_map(|(pred, _)| match pred.kind().skip_binder() {
5099ac24 2053 ty::PredicateKind::RegionOutlives(ty::OutlivesPredicate(a, b)) => match *a {
3dfed10e
XL
2054 ty::ReEarlyBound(ebr) if ebr.index == index => Some(b),
2055 _ => None,
2056 },
dfeec247
XL
2057 _ => None,
2058 })
2059 .collect()
dc9dc135 2060 }
0bf4aa26 2061
dc9dc135 2062 fn lifetimes_outliving_type<'tcx>(
e74abb32 2063 inferred_outlives: &'tcx [(ty::Predicate<'tcx>, Span)],
dc9dc135
XL
2064 index: u32,
2065 ) -> Vec<ty::Region<'tcx>> {
dfeec247
XL
2066 inferred_outlives
2067 .iter()
5869c6ff
XL
2068 .filter_map(|(pred, _)| match pred.kind().skip_binder() {
2069 ty::PredicateKind::TypeOutlives(ty::OutlivesPredicate(a, b)) => {
3dfed10e 2070 a.is_param(index).then_some(b)
0bf4aa26 2071 }
dfeec247
XL
2072 _ => None,
2073 })
2074 .collect()
dc9dc135
XL
2075 }
2076
2077 fn collect_outlived_lifetimes<'tcx>(
2078 &self,
dfeec247 2079 param: &'tcx hir::GenericParam<'tcx>,
dc9dc135 2080 tcx: TyCtxt<'tcx>,
e74abb32 2081 inferred_outlives: &'tcx [(ty::Predicate<'tcx>, Span)],
dc9dc135
XL
2082 ty_generics: &'tcx ty::Generics,
2083 ) -> Vec<ty::Region<'tcx>> {
f9f354fc
XL
2084 let index =
2085 ty_generics.param_def_id_to_index[&tcx.hir().local_def_id(param.hir_id).to_def_id()];
dc9dc135
XL
2086
2087 match param.kind {
2088 hir::GenericParamKind::Lifetime { .. } => {
2089 Self::lifetimes_outliving_lifetime(inferred_outlives, index)
2090 }
2091 hir::GenericParamKind::Type { .. } => {
2092 Self::lifetimes_outliving_type(inferred_outlives, index)
0bf4aa26 2093 }
dc9dc135 2094 hir::GenericParamKind::Const { .. } => Vec::new(),
0bf4aa26 2095 }
dc9dc135
XL
2096 }
2097
dc9dc135
XL
2098 fn collect_outlives_bound_spans<'tcx>(
2099 &self,
2100 tcx: TyCtxt<'tcx>,
dfeec247 2101 bounds: &hir::GenericBounds<'_>,
dc9dc135
XL
2102 inferred_outlives: &[ty::Region<'tcx>],
2103 infer_static: bool,
2104 ) -> Vec<(usize, Span)> {
ba9703b0 2105 use rustc_middle::middle::resolve_lifetime::Region;
dc9dc135
XL
2106
2107 bounds
2108 .iter()
2109 .enumerate()
2110 .filter_map(|(i, bound)| {
2111 if let hir::GenericBound::Outlives(lifetime) = bound {
2112 let is_inferred = match tcx.named_region(lifetime.hir_id) {
1b1a35ee 2113 Some(Region::Static) if infer_static => {
5099ac24 2114 inferred_outlives.iter().any(|r| matches!(**r, ty::ReStatic))
1b1a35ee 2115 }
dfeec247 2116 Some(Region::EarlyBound(index, ..)) => inferred_outlives.iter().any(|r| {
5099ac24 2117 if let ty::ReEarlyBound(ebr) = **r { ebr.index == index } else { false }
dfeec247 2118 }),
dc9dc135
XL
2119 _ => false,
2120 };
60c5eb7d 2121 is_inferred.then_some((i, bound.span()))
dc9dc135
XL
2122 } else {
2123 None
2124 }
2125 })
2126 .collect()
0bf4aa26
XL
2127 }
2128
2129 fn consolidate_outlives_bound_spans(
2130 &self,
2131 lo: Span,
dfeec247
XL
2132 bounds: &hir::GenericBounds<'_>,
2133 bound_spans: Vec<(usize, Span)>,
0bf4aa26
XL
2134 ) -> Vec<Span> {
2135 if bounds.is_empty() {
2136 return Vec::new();
2137 }
2138 if bound_spans.len() == bounds.len() {
dfeec247 2139 let (_, last_bound_span) = bound_spans[bound_spans.len() - 1];
0bf4aa26
XL
2140 // If all bounds are inferable, we want to delete the colon, so
2141 // start from just after the parameter (span passed as argument)
2142 vec![lo.to(last_bound_span)]
2143 } else {
2144 let mut merged = Vec::new();
2145 let mut last_merged_i = None;
2146
2147 let mut from_start = true;
2148 for (i, bound_span) in bound_spans {
2149 match last_merged_i {
dc9dc135 2150 // If the first bound is inferable, our span should also eat the leading `+`.
0bf4aa26
XL
2151 None if i == 0 => {
2152 merged.push(bound_span.to(bounds[1].span().shrink_to_lo()));
2153 last_merged_i = Some(0);
dfeec247 2154 }
0bf4aa26 2155 // If consecutive bounds are inferable, merge their spans
dfeec247 2156 Some(h) if i == h + 1 => {
0bf4aa26
XL
2157 if let Some(tail) = merged.last_mut() {
2158 // Also eat the trailing `+` if the first
2159 // more-than-one bound is inferable
2160 let to_span = if from_start && i < bounds.len() {
dfeec247 2161 bounds[i + 1].span().shrink_to_lo()
0bf4aa26
XL
2162 } else {
2163 bound_span
2164 };
2165 *tail = tail.to(to_span);
2166 last_merged_i = Some(i);
2167 } else {
2168 bug!("another bound-span visited earlier");
2169 }
dfeec247 2170 }
0bf4aa26
XL
2171 _ => {
2172 // When we find a non-inferable bound, subsequent inferable bounds
2173 // won't be consecutive from the start (and we'll eat the leading
2174 // `+` rather than the trailing one)
2175 from_start = false;
dfeec247 2176 merged.push(bounds[i - 1].span().shrink_to_hi().to(bound_span));
0bf4aa26
XL
2177 last_merged_i = Some(i);
2178 }
2179 }
2180 }
2181 merged
2182 }
2183 }
2184}
2185
f035d41b
XL
2186impl<'tcx> LateLintPass<'tcx> for ExplicitOutlivesRequirements {
2187 fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
ba9703b0 2188 use rustc_middle::middle::resolve_lifetime::Region;
dc9dc135 2189
0bf4aa26 2190 let infer_static = cx.tcx.features().infer_static_outlives_requirements;
6a06907d 2191 let def_id = item.def_id;
dc9dc135 2192 if let hir::ItemKind::Struct(_, ref hir_generics)
dfeec247
XL
2193 | hir::ItemKind::Enum(_, ref hir_generics)
2194 | hir::ItemKind::Union(_, ref hir_generics) = item.kind
dc9dc135
XL
2195 {
2196 let inferred_outlives = cx.tcx.inferred_outlives_of(def_id);
2197 if inferred_outlives.is_empty() {
2198 return;
2199 }
2200
2201 let ty_generics = cx.tcx.generics_of(def_id);
2202
0bf4aa26
XL
2203 let mut bound_count = 0;
2204 let mut lint_spans = Vec::new();
2205
dfeec247 2206 for param in hir_generics.params {
1b1a35ee
XL
2207 let has_lifetime_bounds = param
2208 .bounds
2209 .iter()
2210 .any(|bound| matches!(bound, hir::GenericBound::Outlives(_)));
dc9dc135
XL
2211 if !has_lifetime_bounds {
2212 continue;
2213 }
2214
dfeec247
XL
2215 let relevant_lifetimes =
2216 self.collect_outlived_lifetimes(param, cx.tcx, inferred_outlives, ty_generics);
dc9dc135
XL
2217 if relevant_lifetimes.is_empty() {
2218 continue;
2219 }
2220
0bf4aa26 2221 let bound_spans = self.collect_outlives_bound_spans(
dfeec247
XL
2222 cx.tcx,
2223 &param.bounds,
2224 &relevant_lifetimes,
2225 infer_static,
0bf4aa26
XL
2226 );
2227 bound_count += bound_spans.len();
dfeec247
XL
2228 lint_spans.extend(self.consolidate_outlives_bound_spans(
2229 param.span.shrink_to_hi(),
2230 &param.bounds,
2231 bound_spans,
2232 ));
0bf4aa26
XL
2233 }
2234
2235 let mut where_lint_spans = Vec::new();
2236 let mut dropped_predicate_count = 0;
dc9dc135
XL
2237 let num_predicates = hir_generics.where_clause.predicates.len();
2238 for (i, where_predicate) in hir_generics.where_clause.predicates.iter().enumerate() {
2239 let (relevant_lifetimes, bounds, span) = match where_predicate {
2240 hir::WherePredicate::RegionPredicate(predicate) => {
dfeec247
XL
2241 if let Some(Region::EarlyBound(index, ..)) =
2242 cx.tcx.named_region(predicate.lifetime.hir_id)
dc9dc135
XL
2243 {
2244 (
2245 Self::lifetimes_outliving_lifetime(inferred_outlives, index),
0bf4aa26 2246 &predicate.bounds,
dc9dc135 2247 predicate.span,
0bf4aa26 2248 )
dc9dc135
XL
2249 } else {
2250 continue;
2251 }
0bf4aa26 2252 }
dc9dc135
XL
2253 hir::WherePredicate::BoundPredicate(predicate) => {
2254 // FIXME we can also infer bounds on associated types,
2255 // and should check for them here.
e74abb32 2256 match predicate.bounded_ty.kind {
dfeec247 2257 hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => {
a2a8927a
XL
2258 let Res::Def(DefKind::TyParam, def_id) = path.res else {
2259 continue
2260 };
2261 let index = ty_generics.param_def_id_to_index[&def_id];
2262 (
2263 Self::lifetimes_outliving_type(inferred_outlives, index),
2264 &predicate.bounds,
2265 predicate.span,
2266 )
dfeec247
XL
2267 }
2268 _ => {
2269 continue;
2270 }
dc9dc135
XL
2271 }
2272 }
2273 _ => continue,
2274 };
2275 if relevant_lifetimes.is_empty() {
2276 continue;
2277 }
2278
2279 let bound_spans = self.collect_outlives_bound_spans(
dfeec247
XL
2280 cx.tcx,
2281 bounds,
2282 &relevant_lifetimes,
2283 infer_static,
dc9dc135
XL
2284 );
2285 bound_count += bound_spans.len();
2286
2287 let drop_predicate = bound_spans.len() == bounds.len();
2288 if drop_predicate {
2289 dropped_predicate_count += 1;
2290 }
2291
2292 // If all the bounds on a predicate were inferable and there are
2293 // further predicates, we want to eat the trailing comma.
2294 if drop_predicate && i + 1 < num_predicates {
2295 let next_predicate_span = hir_generics.where_clause.predicates[i + 1].span();
dfeec247 2296 where_lint_spans.push(span.to(next_predicate_span.shrink_to_lo()));
dc9dc135 2297 } else {
dfeec247
XL
2298 where_lint_spans.extend(self.consolidate_outlives_bound_spans(
2299 span.shrink_to_lo(),
2300 bounds,
2301 bound_spans,
2302 ));
0bf4aa26
XL
2303 }
2304 }
2305
2306 // If all predicates are inferable, drop the entire clause
2307 // (including the `where`)
2308 if num_predicates > 0 && dropped_predicate_count == num_predicates {
dfeec247
XL
2309 let where_span = hir_generics
2310 .where_clause
2311 .span()
dc9dc135
XL
2312 .expect("span of (nonempty) where clause should exist");
2313 // Extend the where clause back to the closing `>` of the
2314 // generics, except for tuple struct, which have the `where`
2315 // after the fields of the struct.
dfeec247
XL
2316 let full_where_span =
2317 if let hir::ItemKind::Struct(hir::VariantData::Tuple(..), _) = item.kind {
2318 where_span
2319 } else {
2320 hir_generics.span.shrink_to_hi().to(where_span)
2321 };
2322 lint_spans.push(full_where_span);
0bf4aa26
XL
2323 } else {
2324 lint_spans.extend(where_lint_spans);
2325 }
2326
2327 if !lint_spans.is_empty() {
74b04a01
XL
2328 cx.struct_span_lint(EXPLICIT_OUTLIVES_REQUIREMENTS, lint_spans.clone(), |lint| {
2329 lint.build("outlives requirements can be inferred")
2330 .multipart_suggestion(
2331 if bound_count == 1 {
2332 "remove this bound"
2333 } else {
2334 "remove these bounds"
2335 },
2336 lint_spans
2337 .into_iter()
2338 .map(|span| (span, "".to_owned()))
2339 .collect::<Vec<_>>(),
2340 Applicability::MachineApplicable,
2341 )
2342 .emit();
2343 });
0bf4aa26 2344 }
0bf4aa26
XL
2345 }
2346 }
0bf4aa26 2347}
416331ca
XL
2348
2349declare_lint! {
1b1a35ee
XL
2350 /// The `incomplete_features` lint detects unstable features enabled with
2351 /// the [`feature` attribute] that may function improperly in some or all
2352 /// cases.
2353 ///
2354 /// [`feature` attribute]: https://doc.rust-lang.org/nightly/unstable-book/
2355 ///
2356 /// ### Example
2357 ///
2358 /// ```rust
94222f64 2359 /// #![feature(generic_const_exprs)]
1b1a35ee
XL
2360 /// ```
2361 ///
2362 /// {{produces}}
2363 ///
2364 /// ### Explanation
2365 ///
2366 /// Although it is encouraged for people to experiment with unstable
2367 /// features, some of them are known to be incomplete or faulty. This lint
2368 /// is a signal that the feature has not yet been finished, and you may
2369 /// experience problems with it.
416331ca
XL
2370 pub INCOMPLETE_FEATURES,
2371 Warn,
2372 "incomplete features that may function improperly in some or all cases"
2373}
2374
2375declare_lint_pass!(
cdc7bbd5 2376 /// Check for used feature gates in `INCOMPLETE_FEATURES` in `rustc_feature/src/active.rs`.
416331ca
XL
2377 IncompleteFeatures => [INCOMPLETE_FEATURES]
2378);
2379
2380impl EarlyLintPass for IncompleteFeatures {
2381 fn check_crate(&mut self, cx: &EarlyContext<'_>, _: &ast::Crate) {
5099ac24 2382 let features = cx.sess().features_untracked();
dfeec247
XL
2383 features
2384 .declared_lang_features
2385 .iter()
2386 .map(|(name, span, _)| (name, span))
416331ca 2387 .chain(features.declared_lib_features.iter().map(|(name, span)| (name, span)))
136023e0 2388 .filter(|(&name, _)| features.incomplete(name))
f9f354fc 2389 .for_each(|(&name, &span)| {
74b04a01 2390 cx.struct_span_lint(INCOMPLETE_FEATURES, span, |lint| {
f9f354fc
XL
2391 let mut builder = lint.build(&format!(
2392 "the feature `{}` is incomplete and may not be safe to use \
2393 and/or cause compiler crashes",
416331ca 2394 name,
f9f354fc
XL
2395 ));
2396 if let Some(n) = rustc_feature::find_feature_issue(name, GateIssue::Language) {
2397 builder.note(&format!(
2398 "see issue #{} <https://github.com/rust-lang/rust/issues/{}> \
2399 for more information",
2400 n, n,
2401 ));
2402 }
29967ef6
XL
2403 if HAS_MIN_FEATURES.contains(&name) {
2404 builder.help(&format!(
2405 "consider using `min_{}` instead, which is more stable and complete",
2406 name,
2407 ));
2408 }
f9f354fc 2409 builder.emit();
74b04a01 2410 })
416331ca
XL
2411 });
2412 }
2413}
2414
5869c6ff 2415const HAS_MIN_FEATURES: &[Symbol] = &[sym::specialization];
29967ef6 2416
416331ca 2417declare_lint! {
1b1a35ee 2418 /// The `invalid_value` lint detects creating a value that is not valid,
17df50a5 2419 /// such as a null reference.
1b1a35ee
XL
2420 ///
2421 /// ### Example
2422 ///
2423 /// ```rust,no_run
2424 /// # #![allow(unused)]
2425 /// unsafe {
2426 /// let x: &'static i32 = std::mem::zeroed();
2427 /// }
2428 /// ```
2429 ///
2430 /// {{produces}}
2431 ///
2432 /// ### Explanation
2433 ///
2434 /// In some situations the compiler can detect that the code is creating
2435 /// an invalid value, which should be avoided.
2436 ///
2437 /// In particular, this lint will check for improper use of
2438 /// [`mem::zeroed`], [`mem::uninitialized`], [`mem::transmute`], and
2439 /// [`MaybeUninit::assume_init`] that can cause [undefined behavior]. The
2440 /// lint should provide extra information to indicate what the problem is
2441 /// and a possible solution.
2442 ///
2443 /// [`mem::zeroed`]: https://doc.rust-lang.org/std/mem/fn.zeroed.html
2444 /// [`mem::uninitialized`]: https://doc.rust-lang.org/std/mem/fn.uninitialized.html
2445 /// [`mem::transmute`]: https://doc.rust-lang.org/std/mem/fn.transmute.html
2446 /// [`MaybeUninit::assume_init`]: https://doc.rust-lang.org/std/mem/union.MaybeUninit.html#method.assume_init
2447 /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
416331ca
XL
2448 pub INVALID_VALUE,
2449 Warn,
17df50a5 2450 "an invalid value is being created (such as a null reference)"
416331ca
XL
2451}
2452
2453declare_lint_pass!(InvalidValue => [INVALID_VALUE]);
2454
f035d41b
XL
2455impl<'tcx> LateLintPass<'tcx> for InvalidValue {
2456 fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
e1599b0c 2457 #[derive(Debug, Copy, Clone, PartialEq)]
dfeec247
XL
2458 enum InitKind {
2459 Zeroed,
2460 Uninit,
fc512014 2461 }
416331ca
XL
2462
2463 /// Information about why a type cannot be initialized this way.
2464 /// Contains an error message and optionally a span to point at.
2465 type InitError = (String, Option<Span>);
2466
e1599b0c 2467 /// Test if this constant is all-0.
dfeec247 2468 fn is_zero(expr: &hir::Expr<'_>) -> bool {
e1599b0c 2469 use hir::ExprKind::*;
3dfed10e 2470 use rustc_ast::LitKind::*;
e74abb32 2471 match &expr.kind {
dfeec247 2472 Lit(lit) => {
e1599b0c
XL
2473 if let Int(i, _) = lit.node {
2474 i == 0
2475 } else {
2476 false
dfeec247
XL
2477 }
2478 }
2479 Tup(tup) => tup.iter().all(is_zero),
2480 _ => false,
e1599b0c
XL
2481 }
2482 }
2483
2484 /// Determine if this expression is a "dangerous initialization".
f035d41b 2485 fn is_dangerous_init(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> Option<InitKind> {
e74abb32 2486 if let hir::ExprKind::Call(ref path_expr, ref args) = expr.kind {
60c5eb7d 2487 // Find calls to `mem::{uninitialized,zeroed}` methods.
e74abb32 2488 if let hir::ExprKind::Path(ref qpath) = path_expr.kind {
f035d41b 2489 let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
c295e0f8
XL
2490 match cx.tcx.get_diagnostic_name(def_id) {
2491 Some(sym::mem_zeroed) => return Some(InitKind::Zeroed),
2492 Some(sym::mem_uninitialized) => return Some(InitKind::Uninit),
2493 Some(sym::transmute) if is_zero(&args[0]) => return Some(InitKind::Zeroed),
2494 _ => {}
e1599b0c 2495 }
60c5eb7d 2496 }
5099ac24 2497 } else if let hir::ExprKind::MethodCall(_, ref args, _) = expr.kind {
60c5eb7d 2498 // Find problematic calls to `MaybeUninit::assume_init`.
3dfed10e 2499 let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id)?;
60c5eb7d
XL
2500 if cx.tcx.is_diagnostic_item(sym::assume_init, def_id) {
2501 // This is a call to *some* method named `assume_init`.
2502 // See if the `self` parameter is one of the dangerous constructors.
2503 if let hir::ExprKind::Call(ref path_expr, _) = args[0].kind {
2504 if let hir::ExprKind::Path(ref qpath) = path_expr.kind {
f035d41b 2505 let def_id = cx.qpath_res(qpath, path_expr.hir_id).opt_def_id()?;
c295e0f8
XL
2506 match cx.tcx.get_diagnostic_name(def_id) {
2507 Some(sym::maybe_uninit_zeroed) => return Some(InitKind::Zeroed),
2508 Some(sym::maybe_uninit_uninit) => return Some(InitKind::Uninit),
2509 _ => {}
60c5eb7d
XL
2510 }
2511 }
2512 }
e1599b0c
XL
2513 }
2514 }
2515
2516 None
2517 }
2518
3dfed10e
XL
2519 /// Test if this enum has several actually "existing" variants.
2520 /// Zero-sized uninhabited variants do not always have a tag assigned and thus do not "exist".
2521 fn is_multi_variant(adt: &ty::AdtDef) -> bool {
2522 // As an approximation, we only count dataless variants. Those are definitely inhabited.
2523 let existing_variants = adt.variants.iter().filter(|v| v.fields.is_empty()).count();
2524 existing_variants > 1
2525 }
2526
416331ca
XL
2527 /// Return `Some` only if we are sure this type does *not*
2528 /// allow zero initialization.
e1599b0c
XL
2529 fn ty_find_init_error<'tcx>(
2530 tcx: TyCtxt<'tcx>,
2531 ty: Ty<'tcx>,
2532 init: InitKind,
2533 ) -> Option<InitError> {
ba9703b0 2534 use rustc_middle::ty::TyKind::*;
1b1a35ee 2535 match ty.kind() {
416331ca 2536 // Primitive types that don't like 0 as a value.
74b04a01
XL
2537 Ref(..) => Some(("references must be non-null".to_string(), None)),
2538 Adt(..) if ty.is_box() => Some(("`Box` must be non-null".to_string(), None)),
2539 FnPtr(..) => Some(("function pointers must be non-null".to_string(), None)),
2540 Never => Some(("the `!` type has no valid value".to_string(), None)),
1b1a35ee 2541 RawPtr(tm) if matches!(tm.ty.kind(), Dynamic(..)) =>
dfeec247
XL
2542 // raw ptr to dyn Trait
2543 {
74b04a01 2544 Some(("the vtable of a wide raw pointer must be non-null".to_string(), None))
dfeec247 2545 }
e1599b0c 2546 // Primitive types with other constraints.
dfeec247 2547 Bool if init == InitKind::Uninit => {
74b04a01 2548 Some(("booleans must be either `true` or `false`".to_string(), None))
dfeec247
XL
2549 }
2550 Char if init == InitKind::Uninit => {
74b04a01 2551 Some(("characters must be a valid Unicode codepoint".to_string(), None))
dfeec247 2552 }
e1599b0c 2553 // Recurse and checks for some compound types.
416331ca 2554 Adt(adt_def, substs) if !adt_def.is_union() => {
3dfed10e 2555 // First check if this ADT has a layout attribute (like `NonNull` and friends).
e1599b0c
XL
2556 use std::ops::Bound;
2557 match tcx.layout_scalar_valid_range(adt_def.did) {
2558 // We exploit here that `layout_scalar_valid_range` will never
2559 // return `Bound::Excluded`. (And we have tests checking that we
2560 // handle the attribute correctly.)
dfeec247
XL
2561 (Bound::Included(lo), _) if lo > 0 => {
2562 return Some((format!("`{}` must be non-null", ty), None));
2563 }
e1599b0c 2564 (Bound::Included(_), _) | (_, Bound::Included(_))
dfeec247
XL
2565 if init == InitKind::Uninit =>
2566 {
e1599b0c 2567 return Some((
dfeec247
XL
2568 format!(
2569 "`{}` must be initialized inside its custom valid range",
2570 ty,
2571 ),
e1599b0c 2572 None,
dfeec247
XL
2573 ));
2574 }
e1599b0c
XL
2575 _ => {}
2576 }
2577 // Now, recurse.
416331ca 2578 match adt_def.variants.len() {
74b04a01 2579 0 => Some(("enums with no variants have no valid value".to_string(), None)),
416331ca
XL
2580 1 => {
2581 // Struct, or enum with exactly one variant.
2582 // Proceed recursively, check all fields.
2583 let variant = &adt_def.variants[VariantIdx::from_u32(0)];
2584 variant.fields.iter().find_map(|field| {
dfeec247
XL
2585 ty_find_init_error(tcx, field.ty(tcx, substs), init).map(
2586 |(mut msg, span)| {
2587 if span.is_none() {
2588 // Point to this field, should be helpful for figuring
2589 // out where the source of the error is.
2590 let span = tcx.def_span(field.did);
2591 write!(
2592 &mut msg,
2593 " (in this {} field)",
2594 adt_def.descr()
2595 )
2596 .unwrap();
2597 (msg, Some(span))
2598 } else {
2599 // Just forward.
2600 (msg, span)
2601 }
2602 },
2603 )
416331ca
XL
2604 })
2605 }
3dfed10e
XL
2606 // Multi-variant enum.
2607 _ => {
2608 if init == InitKind::Uninit && is_multi_variant(adt_def) {
2609 let span = tcx.def_span(adt_def.did);
2610 Some((
2611 "enums have to be initialized to a variant".to_string(),
2612 Some(span),
2613 ))
2614 } else {
2615 // In principle, for zero-initialization we could figure out which variant corresponds
2616 // to tag 0, and check that... but for now we just accept all zero-initializations.
2617 None
2618 }
2619 }
416331ca
XL
2620 }
2621 }
2622 Tuple(..) => {
2623 // Proceed recursively, check all fields.
e1599b0c 2624 ty.tuple_fields().find_map(|field| ty_find_init_error(tcx, field, init))
416331ca 2625 }
416331ca
XL
2626 // Conservative fallback.
2627 _ => None,
2628 }
2629 }
2630
e1599b0c
XL
2631 if let Some(init) = is_dangerous_init(cx, expr) {
2632 // This conjures an instance of a type out of nothing,
2633 // using zeroed or uninitialized memory.
2634 // We are extremely conservative with what we warn about.
3dfed10e 2635 let conjured_ty = cx.typeck_results().expr_ty(expr);
1b1a35ee
XL
2636 if let Some((msg, span)) =
2637 with_no_trimmed_paths(|| ty_find_init_error(cx.tcx, conjured_ty, init))
2638 {
74b04a01
XL
2639 cx.struct_span_lint(INVALID_VALUE, expr.span, |lint| {
2640 let mut err = lint.build(&format!(
e1599b0c
XL
2641 "the type `{}` does not permit {}",
2642 conjured_ty,
2643 match init {
2644 InitKind::Zeroed => "zero-initialization",
2645 InitKind::Uninit => "being left uninitialized",
2646 },
74b04a01
XL
2647 ));
2648 err.span_label(expr.span, "this code causes undefined behavior when executed");
2649 err.span_label(
2650 expr.span,
2651 "help: use `MaybeUninit<T>` instead, \
2652 and only call `assume_init` after initialization is done",
2653 );
2654 if let Some(span) = span {
2655 err.span_note(span, &msg);
2656 } else {
2657 err.note(&msg);
2658 }
2659 err.emit();
2660 });
416331ca
XL
2661 }
2662 }
2663 }
2664}
f035d41b
XL
2665
2666declare_lint! {
1b1a35ee
XL
2667 /// The `clashing_extern_declarations` lint detects when an `extern fn`
2668 /// has been declared with the same name but different types.
2669 ///
2670 /// ### Example
2671 ///
2672 /// ```rust
2673 /// mod m {
2674 /// extern "C" {
2675 /// fn foo();
2676 /// }
2677 /// }
2678 ///
2679 /// extern "C" {
2680 /// fn foo(_: u32);
2681 /// }
2682 /// ```
2683 ///
2684 /// {{produces}}
2685 ///
2686 /// ### Explanation
2687 ///
2688 /// Because two symbols of the same name cannot be resolved to two
2689 /// different functions at link time, and one function cannot possibly
2690 /// have two types, a clashing extern declaration is almost certainly a
2691 /// mistake. Check to make sure that the `extern` definitions are correct
2692 /// and equivalent, and possibly consider unifying them in one location.
2693 ///
2694 /// This lint does not run between crates because a project may have
2695 /// dependencies which both rely on the same extern function, but declare
2696 /// it in a different (but valid) way. For example, they may both declare
2697 /// an opaque type for one or more of the arguments (which would end up
2698 /// distinct types), or use types that are valid conversions in the
2699 /// language the `extern fn` is defined in. In these cases, the compiler
2700 /// can't say that the clashing declaration is incorrect.
f035d41b 2701 pub CLASHING_EXTERN_DECLARATIONS,
3dfed10e 2702 Warn,
f035d41b
XL
2703 "detects when an extern fn has been declared with the same name but different types"
2704}
2705
2706pub struct ClashingExternDeclarations {
5869c6ff
XL
2707 /// Map of function symbol name to the first-seen hir id for that symbol name.. If seen_decls
2708 /// contains an entry for key K, it means a symbol with name K has been seen by this lint and
2709 /// the symbol should be reported as a clashing declaration.
2710 // FIXME: Technically, we could just store a &'tcx str here without issue; however, the
2711 // `impl_lint_pass` macro doesn't currently support lints parametric over a lifetime.
f035d41b
XL
2712 seen_decls: FxHashMap<Symbol, HirId>,
2713}
2714
2715/// Differentiate between whether the name for an extern decl came from the link_name attribute or
2716/// just from declaration itself. This is important because we don't want to report clashes on
2717/// symbol name if they don't actually clash because one or the other links against a symbol with a
2718/// different name.
2719enum SymbolName {
2720 /// The name of the symbol + the span of the annotation which introduced the link name.
2721 Link(Symbol, Span),
2722 /// No link name, so just the name of the symbol.
2723 Normal(Symbol),
2724}
2725
2726impl SymbolName {
2727 fn get_name(&self) -> Symbol {
2728 match self {
2729 SymbolName::Link(s, _) | SymbolName::Normal(s) => *s,
2730 }
2731 }
2732}
2733
2734impl ClashingExternDeclarations {
2735 crate fn new() -> Self {
2736 ClashingExternDeclarations { seen_decls: FxHashMap::default() }
2737 }
2738 /// Insert a new foreign item into the seen set. If a symbol with the same name already exists
2739 /// for the item, return its HirId without updating the set.
2740 fn insert(&mut self, tcx: TyCtxt<'_>, fi: &hir::ForeignItem<'_>) -> Option<HirId> {
6a06907d 2741 let did = fi.def_id.to_def_id();
5869c6ff
XL
2742 let instance = Instance::new(did, ty::List::identity_for_item(tcx, did));
2743 let name = Symbol::intern(tcx.symbol_name(instance).name);
2744 if let Some(&hir_id) = self.seen_decls.get(&name) {
f035d41b
XL
2745 // Avoid updating the map with the new entry when we do find a collision. We want to
2746 // make sure we're always pointing to the first definition as the previous declaration.
2747 // This lets us avoid emitting "knock-on" diagnostics.
5869c6ff 2748 Some(hir_id)
f035d41b 2749 } else {
6a06907d 2750 self.seen_decls.insert(name, fi.hir_id())
f035d41b
XL
2751 }
2752 }
2753
2754 /// Get the name of the symbol that's linked against for a given extern declaration. That is,
2755 /// the name specified in a #[link_name = ...] attribute if one was specified, else, just the
2756 /// symbol's name.
2757 fn name_of_extern_decl(tcx: TyCtxt<'_>, fi: &hir::ForeignItem<'_>) -> SymbolName {
f035d41b 2758 if let Some((overridden_link_name, overridden_link_name_span)) =
6a06907d 2759 tcx.codegen_fn_attrs(fi.def_id).link_name.map(|overridden_link_name| {
f035d41b
XL
2760 // FIXME: Instead of searching through the attributes again to get span
2761 // information, we could have codegen_fn_attrs also give span information back for
2762 // where the attribute was defined. However, until this is found to be a
2763 // bottleneck, this does just fine.
2764 (
2765 overridden_link_name,
6a06907d 2766 tcx.get_attrs(fi.def_id.to_def_id())
f035d41b 2767 .iter()
94222f64 2768 .find(|at| at.has_name(sym::link_name))
f035d41b
XL
2769 .unwrap()
2770 .span,
2771 )
2772 })
2773 {
2774 SymbolName::Link(overridden_link_name, overridden_link_name_span)
2775 } else {
2776 SymbolName::Normal(fi.ident.name)
2777 }
2778 }
2779
2780 /// Checks whether two types are structurally the same enough that the declarations shouldn't
2781 /// clash. We need this so we don't emit a lint when two modules both declare an extern struct,
2782 /// with the same members (as the declarations shouldn't clash).
3dfed10e
XL
2783 fn structurally_same_type<'tcx>(
2784 cx: &LateContext<'tcx>,
2785 a: Ty<'tcx>,
2786 b: Ty<'tcx>,
2787 ckind: CItemKind,
2788 ) -> bool {
2789 fn structurally_same_type_impl<'tcx>(
2790 seen_types: &mut FxHashSet<(Ty<'tcx>, Ty<'tcx>)>,
2791 cx: &LateContext<'tcx>,
2792 a: Ty<'tcx>,
2793 b: Ty<'tcx>,
2794 ckind: CItemKind,
2795 ) -> bool {
2796 debug!("structurally_same_type_impl(cx, a = {:?}, b = {:?})", a, b);
1b1a35ee
XL
2797 let tcx = cx.tcx;
2798
2799 // Given a transparent newtype, reach through and grab the inner
2800 // type unless the newtype makes the type non-null.
2801 let non_transparent_ty = |ty: Ty<'tcx>| -> Ty<'tcx> {
2802 let mut ty = ty;
2803 loop {
2804 if let ty::Adt(def, substs) = *ty.kind() {
2805 let is_transparent = def.subst(tcx, substs).repr.transparent();
2806 let is_non_null = crate::types::nonnull_optimization_guaranteed(tcx, &def);
2807 debug!(
2808 "non_transparent_ty({:?}) -- type is transparent? {}, type is non-null? {}",
2809 ty, is_transparent, is_non_null
2810 );
2811 if is_transparent && !is_non_null {
2812 debug_assert!(def.variants.len() == 1);
2813 let v = &def.variants[VariantIdx::new(0)];
2814 ty = transparent_newtype_field(tcx, v)
2815 .expect(
2816 "single-variant transparent structure with zero-sized field",
2817 )
2818 .ty(tcx, substs);
2819 continue;
2820 }
2821 }
2822 debug!("non_transparent_ty -> {:?}", ty);
2823 return ty;
2824 }
2825 };
2826
2827 let a = non_transparent_ty(a);
2828 let b = non_transparent_ty(b);
2829
3dfed10e
XL
2830 if !seen_types.insert((a, b)) {
2831 // We've encountered a cycle. There's no point going any further -- the types are
2832 // structurally the same.
2833 return true;
2834 }
2835 let tcx = cx.tcx;
5099ac24 2836 if a == b {
3dfed10e
XL
2837 // All nominally-same types are structurally same, too.
2838 true
2839 } else {
2840 // Do a full, depth-first comparison between the two.
2841 use rustc_middle::ty::TyKind::*;
1b1a35ee
XL
2842 let a_kind = a.kind();
2843 let b_kind = b.kind();
2844
2845 let compare_layouts = |a, b| -> Result<bool, LayoutError<'tcx>> {
2846 debug!("compare_layouts({:?}, {:?})", a, b);
2847 let a_layout = &cx.layout_of(a)?.layout.abi;
2848 let b_layout = &cx.layout_of(b)?.layout.abi;
2849 debug!(
2850 "comparing layouts: {:?} == {:?} = {}",
2851 a_layout,
2852 b_layout,
2853 a_layout == b_layout
2854 );
2855 Ok(a_layout == b_layout)
3dfed10e
XL
2856 };
2857
2858 #[allow(rustc::usage_of_ty_tykind)]
2859 let is_primitive_or_pointer = |kind: &ty::TyKind<'_>| {
2860 kind.is_primitive() || matches!(kind, RawPtr(..) | Ref(..))
2861 };
2862
2863 ensure_sufficient_stack(|| {
2864 match (a_kind, b_kind) {
2865 (Adt(a_def, a_substs), Adt(b_def, b_substs)) => {
2866 let a = a.subst(cx.tcx, a_substs);
2867 let b = b.subst(cx.tcx, b_substs);
2868 debug!("Comparing {:?} and {:?}", a, b);
2869
1b1a35ee
XL
2870 // We can immediately rule out these types as structurally same if
2871 // their layouts differ.
2872 match compare_layouts(a, b) {
2873 Ok(false) => return false,
2874 _ => (), // otherwise, continue onto the full, fields comparison
2875 }
2876
3dfed10e
XL
2877 // Grab a flattened representation of all fields.
2878 let a_fields = a_def.variants.iter().flat_map(|v| v.fields.iter());
2879 let b_fields = b_def.variants.iter().flat_map(|v| v.fields.iter());
1b1a35ee
XL
2880
2881 // Perform a structural comparison for each field.
2882 a_fields.eq_by(
3dfed10e
XL
2883 b_fields,
2884 |&ty::FieldDef { did: a_did, .. },
2885 &ty::FieldDef { did: b_did, .. }| {
2886 structurally_same_type_impl(
2887 seen_types,
2888 cx,
2889 tcx.type_of(a_did),
2890 tcx.type_of(b_did),
2891 ckind,
2892 )
2893 },
2894 )
2895 }
2896 (Array(a_ty, a_const), Array(b_ty, b_const)) => {
2897 // For arrays, we also check the constness of the type.
5099ac24
FG
2898 a_const.val() == b_const.val()
2899 && structurally_same_type_impl(seen_types, cx, *a_ty, *b_ty, ckind)
3dfed10e
XL
2900 }
2901 (Slice(a_ty), Slice(b_ty)) => {
5099ac24 2902 structurally_same_type_impl(seen_types, cx, *a_ty, *b_ty, ckind)
3dfed10e
XL
2903 }
2904 (RawPtr(a_tymut), RawPtr(b_tymut)) => {
2905 a_tymut.mutbl == b_tymut.mutbl
2906 && structurally_same_type_impl(
5099ac24 2907 seen_types, cx, a_tymut.ty, b_tymut.ty, ckind,
3dfed10e
XL
2908 )
2909 }
2910 (Ref(_a_region, a_ty, a_mut), Ref(_b_region, b_ty, b_mut)) => {
2911 // For structural sameness, we don't need the region to be same.
2912 a_mut == b_mut
5099ac24 2913 && structurally_same_type_impl(seen_types, cx, *a_ty, *b_ty, ckind)
3dfed10e
XL
2914 }
2915 (FnDef(..), FnDef(..)) => {
2916 let a_poly_sig = a.fn_sig(tcx);
2917 let b_poly_sig = b.fn_sig(tcx);
2918
2919 // As we don't compare regions, skip_binder is fine.
2920 let a_sig = a_poly_sig.skip_binder();
2921 let b_sig = b_poly_sig.skip_binder();
2922
2923 (a_sig.abi, a_sig.unsafety, a_sig.c_variadic)
2924 == (b_sig.abi, b_sig.unsafety, b_sig.c_variadic)
2925 && a_sig.inputs().iter().eq_by(b_sig.inputs().iter(), |a, b| {
5099ac24 2926 structurally_same_type_impl(seen_types, cx, *a, *b, ckind)
3dfed10e
XL
2927 })
2928 && structurally_same_type_impl(
2929 seen_types,
2930 cx,
2931 a_sig.output(),
2932 b_sig.output(),
2933 ckind,
2934 )
2935 }
2936 (Tuple(a_substs), Tuple(b_substs)) => {
2937 a_substs.types().eq_by(b_substs.types(), |a_ty, b_ty| {
2938 structurally_same_type_impl(seen_types, cx, a_ty, b_ty, ckind)
2939 })
2940 }
2941 // For these, it's not quite as easy to define structural-sameness quite so easily.
2942 // For the purposes of this lint, take the conservative approach and mark them as
2943 // not structurally same.
2944 (Dynamic(..), Dynamic(..))
2945 | (Error(..), Error(..))
2946 | (Closure(..), Closure(..))
2947 | (Generator(..), Generator(..))
2948 | (GeneratorWitness(..), GeneratorWitness(..))
2949 | (Projection(..), Projection(..))
2950 | (Opaque(..), Opaque(..)) => false,
2951
2952 // These definitely should have been caught above.
2953 (Bool, Bool) | (Char, Char) | (Never, Never) | (Str, Str) => unreachable!(),
2954
2955 // An Adt and a primitive or pointer type. This can be FFI-safe if non-null
2956 // enum layout optimisation is being applied.
2957 (Adt(..), other_kind) | (other_kind, Adt(..))
2958 if is_primitive_or_pointer(other_kind) =>
2959 {
2960 let (primitive, adt) =
1b1a35ee 2961 if is_primitive_or_pointer(a.kind()) { (a, b) } else { (b, a) };
3dfed10e
XL
2962 if let Some(ty) = crate::types::repr_nullable_ptr(cx, adt, ckind) {
2963 ty == primitive
2964 } else {
1b1a35ee 2965 compare_layouts(a, b).unwrap_or(false)
3dfed10e
XL
2966 }
2967 }
2968 // Otherwise, just compare the layouts. This may fail to lint for some
2969 // incompatible types, but at the very least, will stop reads into
2970 // uninitialised memory.
1b1a35ee 2971 _ => compare_layouts(a, b).unwrap_or(false),
3dfed10e
XL
2972 }
2973 })
f035d41b
XL
2974 }
2975 }
3dfed10e
XL
2976 let mut seen_types = FxHashSet::default();
2977 structurally_same_type_impl(&mut seen_types, cx, a, b, ckind)
f035d41b
XL
2978 }
2979}
2980
2981impl_lint_pass!(ClashingExternDeclarations => [CLASHING_EXTERN_DECLARATIONS]);
2982
2983impl<'tcx> LateLintPass<'tcx> for ClashingExternDeclarations {
2984 fn check_foreign_item(&mut self, cx: &LateContext<'tcx>, this_fi: &hir::ForeignItem<'_>) {
2985 trace!("ClashingExternDeclarations: check_foreign_item: {:?}", this_fi);
2986 if let ForeignItemKind::Fn(..) = this_fi.kind {
29967ef6 2987 let tcx = cx.tcx;
f035d41b
XL
2988 if let Some(existing_hid) = self.insert(tcx, this_fi) {
2989 let existing_decl_ty = tcx.type_of(tcx.hir().local_def_id(existing_hid));
6a06907d 2990 let this_decl_ty = tcx.type_of(this_fi.def_id);
f035d41b
XL
2991 debug!(
2992 "ClashingExternDeclarations: Comparing existing {:?}: {:?} to this {:?}: {:?}",
6a06907d 2993 existing_hid, existing_decl_ty, this_fi.def_id, this_decl_ty
f035d41b
XL
2994 );
2995 // Check that the declarations match.
3dfed10e
XL
2996 if !Self::structurally_same_type(
2997 cx,
2998 existing_decl_ty,
2999 this_decl_ty,
3000 CItemKind::Declaration,
3001 ) {
a2a8927a 3002 let orig_fi = tcx.hir().expect_foreign_item(existing_hid.expect_owner());
f035d41b
XL
3003 let orig = Self::name_of_extern_decl(tcx, orig_fi);
3004
3005 // We want to ensure that we use spans for both decls that include where the
3006 // name was defined, whether that was from the link_name attribute or not.
3007 let get_relevant_span =
3008 |fi: &hir::ForeignItem<'_>| match Self::name_of_extern_decl(tcx, fi) {
3009 SymbolName::Normal(_) => fi.span,
3010 SymbolName::Link(_, annot_span) => fi.span.to(annot_span),
3011 };
3012 // Finally, emit the diagnostic.
3013 tcx.struct_span_lint_hir(
3014 CLASHING_EXTERN_DECLARATIONS,
6a06907d 3015 this_fi.hir_id(),
f035d41b
XL
3016 get_relevant_span(this_fi),
3017 |lint| {
3018 let mut expected_str = DiagnosticStyledString::new();
3019 expected_str.push(existing_decl_ty.fn_sig(tcx).to_string(), false);
3020 let mut found_str = DiagnosticStyledString::new();
3021 found_str.push(this_decl_ty.fn_sig(tcx).to_string(), true);
3022
3023 lint.build(&format!(
3024 "`{}` redeclare{} with a different signature",
3025 this_fi.ident.name,
3026 if orig.get_name() == this_fi.ident.name {
3027 "d".to_string()
3028 } else {
3029 format!("s `{}`", orig.get_name())
3030 }
3031 ))
3032 .span_label(
3033 get_relevant_span(orig_fi),
3034 &format!("`{}` previously declared here", orig.get_name()),
3035 )
3036 .span_label(
3037 get_relevant_span(this_fi),
3038 "this signature doesn't match the previous declaration",
3039 )
3040 .note_expected_found(&"", expected_str, &"", found_str)
3041 .emit()
3042 },
3043 );
3044 }
3045 }
3046 }
3047 }
3048}
cdc7bbd5
XL
3049
3050declare_lint! {
3051 /// The `deref_nullptr` lint detects when an null pointer is dereferenced,
3052 /// which causes [undefined behavior].
3053 ///
3054 /// ### Example
3055 ///
3056 /// ```rust,no_run
3057 /// # #![allow(unused)]
3058 /// use std::ptr;
3059 /// unsafe {
3060 /// let x = &*ptr::null::<i32>();
3061 /// let x = ptr::addr_of!(*ptr::null::<i32>());
3062 /// let x = *(0 as *const i32);
3063 /// }
3064 /// ```
3065 ///
3066 /// {{produces}}
3067 ///
3068 /// ### Explanation
3069 ///
3070 /// Dereferencing a null pointer causes [undefined behavior] even as a place expression,
3071 /// like `&*(0 as *const i32)` or `addr_of!(*(0 as *const i32))`.
3072 ///
3073 /// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
3074 pub DEREF_NULLPTR,
3075 Warn,
3076 "detects when an null pointer is dereferenced"
3077}
3078
3079declare_lint_pass!(DerefNullPtr => [DEREF_NULLPTR]);
3080
3081impl<'tcx> LateLintPass<'tcx> for DerefNullPtr {
3082 fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
3083 /// test if expression is a null ptr
3084 fn is_null_ptr(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
3085 match &expr.kind {
3086 rustc_hir::ExprKind::Cast(ref expr, ref ty) => {
3087 if let rustc_hir::TyKind::Ptr(_) = ty.kind {
3088 return is_zero(expr) || is_null_ptr(cx, expr);
3089 }
3090 }
3091 // check for call to `core::ptr::null` or `core::ptr::null_mut`
3092 rustc_hir::ExprKind::Call(ref path, _) => {
3093 if let rustc_hir::ExprKind::Path(ref qpath) = path.kind {
3094 if let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id() {
c295e0f8
XL
3095 return matches!(
3096 cx.tcx.get_diagnostic_name(def_id),
3097 Some(sym::ptr_null | sym::ptr_null_mut)
3098 );
cdc7bbd5
XL
3099 }
3100 }
3101 }
3102 _ => {}
3103 }
3104 false
3105 }
3106
3107 /// test if expression is the literal `0`
3108 fn is_zero(expr: &hir::Expr<'_>) -> bool {
3109 match &expr.kind {
3110 rustc_hir::ExprKind::Lit(ref lit) => {
3111 if let LitKind::Int(a, _) = lit.node {
3112 return a == 0;
3113 }
3114 }
3115 _ => {}
3116 }
3117 false
3118 }
3119
3c0e092e
XL
3120 if let rustc_hir::ExprKind::Unary(rustc_hir::UnOp::Deref, expr_deref) = expr.kind {
3121 if is_null_ptr(cx, expr_deref) {
3122 cx.struct_span_lint(DEREF_NULLPTR, expr.span, |lint| {
3123 let mut err = lint.build("dereferencing a null pointer");
3124 err.span_label(expr.span, "this code causes undefined behavior when executed");
3125 err.emit();
3126 });
cdc7bbd5
XL
3127 }
3128 }
3129 }
3130}
94222f64
XL
3131
3132declare_lint! {
3133 /// The `named_asm_labels` lint detects the use of named labels in the
3134 /// inline `asm!` macro.
3135 ///
3136 /// ### Example
3137 ///
3138 /// ```rust,compile_fail
a2a8927a
XL
3139 /// use std::arch::asm;
3140 ///
94222f64
XL
3141 /// fn main() {
3142 /// unsafe {
3143 /// asm!("foo: bar");
3144 /// }
3145 /// }
3146 /// ```
3147 ///
3148 /// {{produces}}
3149 ///
3150 /// ### Explanation
3151 ///
3152 /// LLVM is allowed to duplicate inline assembly blocks for any
3153 /// reason, for example when it is in a function that gets inlined. Because
3154 /// of this, GNU assembler [local labels] *must* be used instead of labels
3155 /// with a name. Using named labels might cause assembler or linker errors.
3156 ///
a2a8927a 3157 /// See the explanation in [Rust By Example] for more details.
94222f64
XL
3158 ///
3159 /// [local labels]: https://sourceware.org/binutils/docs/as/Symbol-Names.html#Local-Labels
a2a8927a 3160 /// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels
94222f64
XL
3161 pub NAMED_ASM_LABELS,
3162 Deny,
3163 "named labels in inline assembly",
3164}
3165
3166declare_lint_pass!(NamedAsmLabels => [NAMED_ASM_LABELS]);
3167
3168impl<'tcx> LateLintPass<'tcx> for NamedAsmLabels {
3169 fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx hir::Expr<'tcx>) {
3170 if let hir::Expr {
3171 kind: hir::ExprKind::InlineAsm(hir::InlineAsm { template_strs, .. }),
3172 ..
3173 } = expr
3174 {
3175 for (template_sym, template_snippet, template_span) in template_strs.iter() {
a2a8927a 3176 let template_str = template_sym.as_str();
94222f64
XL
3177 let find_label_span = |needle: &str| -> Option<Span> {
3178 if let Some(template_snippet) = template_snippet {
3179 let snippet = template_snippet.as_str();
3180 if let Some(pos) = snippet.find(needle) {
3181 let end = pos
3c0e092e 3182 + snippet[pos..]
94222f64
XL
3183 .find(|c| c == ':')
3184 .unwrap_or(snippet[pos..].len() - 1);
3185 let inner = InnerSpan::new(pos, end);
3186 return Some(template_span.from_inner(inner));
3187 }
3188 }
3189
3190 None
3191 };
3192
3193 let mut found_labels = Vec::new();
3194
3195 // A semicolon might not actually be specified as a separator for all targets, but it seems like LLVM accepts it always
3196 let statements = template_str.split(|c| matches!(c, '\n' | ';'));
3197 for statement in statements {
3198 // If there's a comment, trim it from the statement
3199 let statement = statement.find("//").map_or(statement, |idx| &statement[..idx]);
3200 let mut start_idx = 0;
3201 for (idx, _) in statement.match_indices(':') {
3202 let possible_label = statement[start_idx..idx].trim();
3203 let mut chars = possible_label.chars();
a2a8927a 3204 let Some(c) = chars.next() else {
94222f64 3205 // Empty string means a leading ':' in this section, which is not a label
a2a8927a
XL
3206 break
3207 };
3208 // A label starts with an alphabetic character or . or _ and continues with alphanumeric characters, _, or $
3209 if (c.is_alphabetic() || matches!(c, '.' | '_'))
3210 && chars.all(|c| c.is_alphanumeric() || matches!(c, '_' | '$'))
3211 {
3212 found_labels.push(possible_label);
3213 } else {
3214 // If we encounter a non-label, there cannot be any further labels, so stop checking
94222f64
XL
3215 break;
3216 }
3217
3218 start_idx = idx + 1;
3219 }
3220 }
3221
3222 debug!("NamedAsmLabels::check_expr(): found_labels: {:#?}", &found_labels);
3223
3224 if found_labels.len() > 0 {
3225 let spans = found_labels
3226 .into_iter()
3227 .filter_map(|label| find_label_span(label))
3228 .collect::<Vec<Span>>();
3229 // If there were labels but we couldn't find a span, combine the warnings and use the template span
3230 let target_spans: MultiSpan =
3231 if spans.len() > 0 { spans.into() } else { (*template_span).into() };
3232
3233 cx.lookup_with_diagnostics(
3234 NAMED_ASM_LABELS,
3235 Some(target_spans),
3236 |diag| {
3237 let mut err =
3238 diag.build("avoid using named labels in inline assembly");
3239 err.emit();
3240 },
3241 BuiltinLintDiagnostics::NamedAsmLabel(
3242 "only local labels of the form `<number>:` should be used in inline asm"
3243 .to_string(),
3244 ),
3245 );
3246 }
3247 }
3248 }
3249 }
3250}