]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/trailing_empty_array.rs
Auto merge of #9698 - kraktus:xc_bool, r=xFrednet
[rust.git] / clippy_lints / src / trailing_empty_array.rs
1 use clippy_utils::diagnostics::span_lint_and_help;
2 use clippy_utils::has_repr_attr;
3 use rustc_hir::{Item, ItemKind};
4 use rustc_lint::{LateContext, LateLintPass};
5 use rustc_middle::ty::Const;
6 use rustc_session::{declare_lint_pass, declare_tool_lint};
7
8 declare_clippy_lint! {
9     /// ### What it does
10     /// Displays a warning when a struct with a trailing zero-sized array is declared without a `repr` attribute.
11     ///
12     /// ### Why is this bad?
13     /// Zero-sized arrays aren't very useful in Rust itself, so such a struct is likely being created to pass to C code or in some other situation where control over memory layout matters (for example, in conjunction with manual allocation to make it easy to compute the offset of the array). Either way, `#[repr(C)]` (or another `repr` attribute) is needed.
14     ///
15     /// ### Example
16     /// ```rust
17     /// struct RarelyUseful {
18     ///     some_field: u32,
19     ///     last: [u32; 0],
20     /// }
21     /// ```
22     ///
23     /// Use instead:
24     /// ```rust
25     /// #[repr(C)]
26     /// struct MoreOftenUseful {
27     ///     some_field: usize,
28     ///     last: [u32; 0],
29     /// }
30     /// ```
31     #[clippy::version = "1.58.0"]
32     pub TRAILING_EMPTY_ARRAY,
33     nursery,
34     "struct with a trailing zero-sized array but without `#[repr(C)]` or another `repr` attribute"
35 }
36 declare_lint_pass!(TrailingEmptyArray => [TRAILING_EMPTY_ARRAY]);
37
38 impl<'tcx> LateLintPass<'tcx> for TrailingEmptyArray {
39     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'tcx>) {
40         if is_struct_with_trailing_zero_sized_array(cx, item) && !has_repr_attr(cx, item.hir_id()) {
41             span_lint_and_help(
42                 cx,
43                 TRAILING_EMPTY_ARRAY,
44                 item.span,
45                 "trailing zero-sized array in a struct which is not marked with a `repr` attribute",
46                 None,
47                 &format!(
48                     "consider annotating `{}` with `#[repr(C)]` or another `repr` attribute",
49                     cx.tcx.def_path_str(item.def_id.to_def_id())
50                 ),
51             );
52         }
53     }
54 }
55
56 fn is_struct_with_trailing_zero_sized_array(cx: &LateContext<'_>, item: &Item<'_>) -> bool {
57     if_chain! {
58         // First check if last field is an array
59         if let ItemKind::Struct(data, _) = &item.kind;
60         if let Some(last_field) = data.fields().last();
61         if let rustc_hir::TyKind::Array(_, rustc_hir::ArrayLen::Body(length)) = last_field.ty.kind;
62
63         // Then check if that that array zero-sized
64         let length_ldid = cx.tcx.hir().local_def_id(length.hir_id);
65         let length = Const::from_anon_const(cx.tcx, length_ldid);
66         let length = length.try_eval_usize(cx.tcx, cx.param_env);
67         if let Some(length) = length;
68         then {
69             length == 0
70         } else {
71             false
72         }
73     }
74 }