]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/misc.rs
Merge pull request #995 from oli-obk/oh_the_horror
[rust.git] / clippy_lints / src / misc.rs
1 use reexport::*;
2 use rustc::hir::*;
3 use rustc::hir::intravisit::FnKind;
4 use rustc::lint::*;
5 use rustc::middle::const_val::ConstVal;
6 use rustc::ty;
7 use rustc_const_eval::EvalHint::ExprTypeChecked;
8 use rustc_const_eval::eval_const_expr_partial;
9 use rustc_const_math::ConstFloat;
10 use syntax::codemap::{Span, Spanned, ExpnFormat};
11 use syntax::ptr::P;
12 use utils::{
13     get_item_name, get_parent_expr, implements_trait, in_macro, is_integer_literal, match_path,
14     snippet, span_lint, span_lint_and_then, walk_ptrs_ty
15 };
16
17 /// **What it does:** This lint checks for function arguments and let bindings denoted as `ref`.
18 ///
19 /// **Why is this bad?** The `ref` declaration makes the function take an owned value, but turns the argument into a reference (which means that the value is destroyed when exiting the function). This adds not much value: either take a reference type, or take an owned value and create references in the body.
20 ///
21 /// For let bindings, `let x = &foo;` is preferred over `let ref x = foo`. The type of `x` is more obvious with the former.
22 ///
23 /// **Known problems:** If the argument is dereferenced within the function, removing the `ref` will lead to errors. This can be fixed by removing the dereferences, e.g. changing `*x` to `x` within the function.
24 ///
25 /// **Example:** `fn foo(ref x: u8) -> bool { .. }`
26 declare_lint! {
27     pub TOPLEVEL_REF_ARG, Warn,
28     "An entire binding was declared as `ref`, in a function argument (`fn foo(ref x: Bar)`), \
29      or a `let` statement (`let ref x = foo()`). In such cases, it is preferred to take \
30      references with `&`."
31 }
32
33 #[allow(missing_copy_implementations)]
34 pub struct TopLevelRefPass;
35
36 impl LintPass for TopLevelRefPass {
37     fn get_lints(&self) -> LintArray {
38         lint_array!(TOPLEVEL_REF_ARG)
39     }
40 }
41
42 impl LateLintPass for TopLevelRefPass {
43     fn check_fn(&mut self, cx: &LateContext, k: FnKind, decl: &FnDecl, _: &Block, _: Span, _: NodeId) {
44         if let FnKind::Closure(_) = k {
45             // Does not apply to closures
46             return;
47         }
48         for ref arg in &decl.inputs {
49             if let PatKind::Binding(BindByRef(_), _, _) = arg.pat.node {
50                 span_lint(cx,
51                           TOPLEVEL_REF_ARG,
52                           arg.pat.span,
53                           "`ref` directly on a function argument is ignored. Consider using a reference type instead.");
54             }
55         }
56     }
57     fn check_stmt(&mut self, cx: &LateContext, s: &Stmt) {
58         if_let_chain! {[
59             let StmtDecl(ref d, _) = s.node,
60             let DeclLocal(ref l) = d.node,
61             let PatKind::Binding(BindByRef(_), i, None) = l.pat.node,
62             let Some(ref init) = l.init
63         ], {
64             let tyopt = if let Some(ref ty) = l.ty {
65                 format!(": {}", snippet(cx, ty.span, "_"))
66             } else {
67                 "".to_owned()
68             };
69             span_lint_and_then(cx,
70                 TOPLEVEL_REF_ARG,
71                 l.pat.span,
72                 "`ref` on an entire `let` pattern is discouraged, take a reference with & instead",
73                 |db| {
74                     db.span_suggestion(s.span,
75                                        "try",
76                                        format!("let {}{} = &{};",
77                                                snippet(cx, i.span, "_"),
78                                                tyopt,
79                                                snippet(cx, init.span, "_")));
80                 }
81             );
82         }}
83     }
84 }
85
86 /// **What it does:** This lint checks for comparisons to NAN.
87 ///
88 /// **Why is this bad?** NAN does not compare meaningfully to anything – not even itself – so those comparisons are simply wrong.
89 ///
90 /// **Known problems:** None
91 ///
92 /// **Example:** `x == NAN`
93 declare_lint!(pub CMP_NAN, Deny,
94               "comparisons to NAN (which will always return false, which is probably not intended)");
95
96 #[derive(Copy,Clone)]
97 pub struct CmpNan;
98
99 impl LintPass for CmpNan {
100     fn get_lints(&self) -> LintArray {
101         lint_array!(CMP_NAN)
102     }
103 }
104
105 impl LateLintPass for CmpNan {
106     fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
107         if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
108             if cmp.node.is_comparison() {
109                 if let ExprPath(_, ref path) = left.node {
110                     check_nan(cx, path, expr.span);
111                 }
112                 if let ExprPath(_, ref path) = right.node {
113                     check_nan(cx, path, expr.span);
114                 }
115             }
116         }
117     }
118 }
119
120 fn check_nan(cx: &LateContext, path: &Path, span: Span) {
121     path.segments.last().map(|seg| {
122         if seg.name.as_str() == "NAN" {
123             span_lint(cx,
124                       CMP_NAN,
125                       span,
126                       "doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead");
127         }
128     });
129 }
130
131 /// **What it does:** This lint checks for (in-)equality comparisons on floating-point values (apart from zero), except in functions called `*eq*` (which probably implement equality for a type involving floats).
132 ///
133 /// **Why is this bad?** Floating point calculations are usually imprecise, so asking if two values are *exactly* equal is asking for trouble. For a good guide on what to do, see [the floating point guide](http://www.floating-point-gui.de/errors/comparison).
134 ///
135 /// **Known problems:** None
136 ///
137 /// **Example:** `y == 1.23f64`
138 declare_lint!(pub FLOAT_CMP, Warn,
139               "using `==` or `!=` on float values (as floating-point operations \
140                usually involve rounding errors, it is always better to check for approximate \
141                equality within small bounds)");
142
143 #[derive(Copy,Clone)]
144 pub struct FloatCmp;
145
146 impl LintPass for FloatCmp {
147     fn get_lints(&self) -> LintArray {
148         lint_array!(FLOAT_CMP)
149     }
150 }
151
152 impl LateLintPass for FloatCmp {
153     fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
154         if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
155             let op = cmp.node;
156             if (op == BiEq || op == BiNe) && (is_float(cx, left) || is_float(cx, right)) {
157                 if is_allowed(cx, left) || is_allowed(cx, right) {
158                     return;
159                 }
160                 if let Some(name) = get_item_name(cx, expr) {
161                     let name = name.as_str();
162                     if name == "eq" || name == "ne" || name == "is_nan" || name.starts_with("eq_") ||
163                        name.ends_with("_eq") {
164                         return;
165                     }
166                 }
167                 span_lint(cx,
168                           FLOAT_CMP,
169                           expr.span,
170                           &format!("{}-comparison of f32 or f64 detected. Consider changing this to `({} - {}).abs() < \
171                                     epsilon` for some suitable value of epsilon. \
172                                     std::f32::EPSILON and std::f64::EPSILON are available.",
173                                    op.as_str(),
174                                    snippet(cx, left.span, ".."),
175                                    snippet(cx, right.span, "..")));
176             }
177         }
178     }
179 }
180
181 fn is_allowed(cx: &LateContext, expr: &Expr) -> bool {
182     let res = eval_const_expr_partial(cx.tcx, expr, ExprTypeChecked, None);
183     if let Ok(ConstVal::Float(val)) = res {
184         use std::cmp::Ordering;
185
186         let zero = ConstFloat::FInfer {
187             f32: 0.0,
188             f64: 0.0,
189         };
190
191         let infinity = ConstFloat::FInfer {
192             f32: ::std::f32::INFINITY,
193             f64: ::std::f64::INFINITY,
194         };
195
196         let neg_infinity = ConstFloat::FInfer {
197             f32: ::std::f32::NEG_INFINITY,
198             f64: ::std::f64::NEG_INFINITY,
199         };
200
201         val.try_cmp(zero) == Ok(Ordering::Equal)
202             || val.try_cmp(infinity) == Ok(Ordering::Equal)
203             || val.try_cmp(neg_infinity) == Ok(Ordering::Equal)
204     } else {
205         false
206     }
207 }
208
209 fn is_float(cx: &LateContext, expr: &Expr) -> bool {
210     matches!(walk_ptrs_ty(cx.tcx.expr_ty(expr)).sty, ty::TyFloat(_))
211 }
212
213 /// **What it does:** This lint checks for conversions to owned values just for the sake of a comparison.
214 ///
215 /// **Why is this bad?** The comparison can operate on a reference, so creating an owned value effectively throws it away directly afterwards, which is needlessly consuming code and heap space.
216 ///
217 /// **Known problems:** None
218 ///
219 /// **Example:** `x.to_owned() == y`
220 declare_lint!(pub CMP_OWNED, Warn,
221               "creating owned instances for comparing with others, e.g. `x == \"foo\".to_string()`");
222
223 #[derive(Copy,Clone)]
224 pub struct CmpOwned;
225
226 impl LintPass for CmpOwned {
227     fn get_lints(&self) -> LintArray {
228         lint_array!(CMP_OWNED)
229     }
230 }
231
232 impl LateLintPass for CmpOwned {
233     fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
234         if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
235             if cmp.node.is_comparison() {
236                 check_to_owned(cx, left, right, true, cmp.span);
237                 check_to_owned(cx, right, left, false, cmp.span)
238             }
239         }
240     }
241 }
242
243 fn check_to_owned(cx: &LateContext, expr: &Expr, other: &Expr, left: bool, op: Span) {
244     let (arg_ty, snip) = match expr.node {
245         ExprMethodCall(Spanned { node: ref name, .. }, _, ref args) if args.len() == 1 => {
246             if name.as_str() == "to_string" || name.as_str() == "to_owned" && is_str_arg(cx, args) {
247                 (cx.tcx.expr_ty(&args[0]), snippet(cx, args[0].span, ".."))
248             } else {
249                 return;
250             }
251         }
252         ExprCall(ref path, ref v) if v.len() == 1 => {
253             if let ExprPath(None, ref path) = path.node {
254                 if match_path(path, &["String", "from_str"]) || match_path(path, &["String", "from"]) {
255                     (cx.tcx.expr_ty(&v[0]), snippet(cx, v[0].span, ".."))
256                 } else {
257                     return;
258                 }
259             } else {
260                 return;
261             }
262         }
263         _ => return,
264     };
265
266     let other_ty = cx.tcx.expr_ty(other);
267     let partial_eq_trait_id = match cx.tcx.lang_items.eq_trait() {
268         Some(id) => id,
269         None => return,
270     };
271
272     if !implements_trait(cx, arg_ty, partial_eq_trait_id, vec![other_ty]) {
273         return;
274     }
275
276     if left {
277         span_lint(cx,
278                   CMP_OWNED,
279                   expr.span,
280                   &format!("this creates an owned instance just for comparison. Consider using `{} {} {}` to \
281                             compare without allocation",
282                            snip,
283                            snippet(cx, op, "=="),
284                            snippet(cx, other.span, "..")));
285     } else {
286         span_lint(cx,
287                   CMP_OWNED,
288                   expr.span,
289                   &format!("this creates an owned instance just for comparison. Consider using `{} {} {}` to \
290                             compare without allocation",
291                            snippet(cx, other.span, ".."),
292                            snippet(cx, op, "=="),
293                            snip));
294     }
295
296 }
297
298 fn is_str_arg(cx: &LateContext, args: &[P<Expr>]) -> bool {
299     args.len() == 1 &&
300         matches!(walk_ptrs_ty(cx.tcx.expr_ty(&args[0])).sty, ty::TyStr)
301 }
302
303 /// **What it does:** This lint checks for getting the remainder of a division by one.
304 ///
305 /// **Why is this bad?** The result can only ever be zero. No one will write such code deliberately, unless trying to win an Underhanded Rust Contest. Even for that contest, it's probably a bad idea. Use something more underhanded.
306 ///
307 /// **Known problems:** None
308 ///
309 /// **Example:** `x % 1`
310 declare_lint!(pub MODULO_ONE, Warn, "taking a number modulo 1, which always returns 0");
311
312 #[derive(Copy,Clone)]
313 pub struct ModuloOne;
314
315 impl LintPass for ModuloOne {
316     fn get_lints(&self) -> LintArray {
317         lint_array!(MODULO_ONE)
318     }
319 }
320
321 impl LateLintPass for ModuloOne {
322     fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
323         if let ExprBinary(ref cmp, _, ref right) = expr.node {
324             if let Spanned { node: BinOp_::BiRem, .. } = *cmp {
325                 if is_integer_literal(right, 1) {
326                     span_lint(cx, MODULO_ONE, expr.span, "any number modulo 1 will be 0");
327                 }
328             }
329         }
330     }
331 }
332
333 /// **What it does:** This lint checks for patterns in the form `name @ _`.
334 ///
335 /// **Why is this bad?** It's almost always more readable to just use direct bindings.
336 ///
337 /// **Known problems:** None
338 ///
339 /// **Example**:
340 /// ```
341 /// match v {
342 ///     Some(x) => (),
343 ///     y @ _   => (), // easier written as `y`,
344 /// }
345 /// ```
346 declare_lint!(pub REDUNDANT_PATTERN, Warn, "using `name @ _` in a pattern");
347
348 #[derive(Copy,Clone)]
349 pub struct PatternPass;
350
351 impl LintPass for PatternPass {
352     fn get_lints(&self) -> LintArray {
353         lint_array!(REDUNDANT_PATTERN)
354     }
355 }
356
357 impl LateLintPass for PatternPass {
358     fn check_pat(&mut self, cx: &LateContext, pat: &Pat) {
359         if let PatKind::Binding(_, ref ident, Some(ref right)) = pat.node {
360             if right.node == PatKind::Wild {
361                 span_lint(cx,
362                           REDUNDANT_PATTERN,
363                           pat.span,
364                           &format!("the `{} @ _` pattern can be written as just `{}`",
365                                    ident.node,
366                                    ident.node));
367             }
368         }
369     }
370 }
371
372
373 /// **What it does:** This lint checks for the use of bindings with a single leading underscore
374 ///
375 /// **Why is this bad?** A single leading underscore is usually used to indicate that a binding
376 /// will not be used. Using such a binding breaks this expectation.
377 ///
378 /// **Known problems:** The lint does not work properly with desugaring and macro, it has been
379 /// allowed in the mean time.
380 ///
381 /// **Example**:
382 /// ```
383 /// let _x = 0;
384 /// let y = _x + 1; // Here we are using `_x`, even though it has a leading underscore.
385 ///                 // We should rename `_x` to `x`
386 /// ```
387 declare_lint!(pub USED_UNDERSCORE_BINDING, Allow,
388               "using a binding which is prefixed with an underscore");
389
390 #[derive(Copy, Clone)]
391 pub struct UsedUnderscoreBinding;
392
393 impl LintPass for UsedUnderscoreBinding {
394     fn get_lints(&self) -> LintArray {
395         lint_array!(USED_UNDERSCORE_BINDING)
396     }
397 }
398
399 impl LateLintPass for UsedUnderscoreBinding {
400     #[cfg_attr(rustfmt, rustfmt_skip)]
401     fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
402         if in_attributes_expansion(cx, expr) {
403             // Don't lint things expanded by #[derive(...)], etc
404             return;
405         }
406         let binding = match expr.node {
407             ExprPath(_, ref path) => {
408                 let binding = path.segments
409                                 .last()
410                                 .expect("path should always have at least one segment")
411                                 .name
412                                 .as_str();
413                 if binding.starts_with('_') &&
414                    !binding.starts_with("__") &&
415                    binding != "_result" && // FIXME: #944
416                    is_used(cx, expr) &&
417                    // don't lint if the declaration is in a macro
418                    non_macro_local(cx, &cx.tcx.expect_def(expr.id)) {
419                     Some(binding)
420                 } else {
421                     None
422                 }
423             }
424             ExprField(_, spanned) => {
425                 let name = spanned.node.as_str();
426                 if name.starts_with('_') && !name.starts_with("__") {
427                     Some(name)
428                 } else {
429                     None
430                 }
431             }
432             _ => None,
433         };
434         if let Some(binding) = binding {
435             span_lint(cx,
436                       USED_UNDERSCORE_BINDING,
437                       expr.span,
438                       &format!("used binding `{}` which is prefixed with an underscore. A leading \
439                                 underscore signals that a binding will not be used.", binding));
440         }
441     }
442 }
443
444 /// Heuristic to see if an expression is used. Should be compatible with `unused_variables`'s idea
445 /// of what it means for an expression to be "used".
446 fn is_used(cx: &LateContext, expr: &Expr) -> bool {
447     if let Some(ref parent) = get_parent_expr(cx, expr) {
448         match parent.node {
449             ExprAssign(_, ref rhs) |
450             ExprAssignOp(_, _, ref rhs) => **rhs == *expr,
451             _ => is_used(cx, parent),
452         }
453     } else {
454         true
455     }
456 }
457
458 /// Test whether an expression is in a macro expansion (e.g. something generated by
459 /// `#[derive(...)`] or the like).
460 fn in_attributes_expansion(cx: &LateContext, expr: &Expr) -> bool {
461     cx.sess().codemap().with_expn_info(expr.span.expn_id, |info_opt| {
462         info_opt.map_or(false, |info| {
463             matches!(info.callee.format, ExpnFormat::MacroAttribute(_))
464         })
465     })
466 }
467
468 /// Test whether `def` is a variable defined outside a macro.
469 fn non_macro_local(cx: &LateContext, def: &def::Def) -> bool {
470     match *def {
471         def::Def::Local(_, id) | def::Def::Upvar(_, id, _, _) => {
472             if let Some(span) = cx.tcx.map.opt_span(id) {
473                 !in_macro(cx, span)
474             } else {
475                 true
476             }
477         }
478         _ => false,
479     }
480 }