2021-03-15 19:55:45 -05:00
|
|
|
|
use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg};
|
2021-03-14 18:17:44 -05:00
|
|
|
|
use clippy_utils::source::snippet_opt;
|
2018-12-29 09:04:45 -06:00
|
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
|
use rustc_hir::{Expr, ExprKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-02 10:32:55 -06:00
|
|
|
|
use rustc_span::sym;
|
2018-08-29 07:40:00 -05:00
|
|
|
|
use std::fmt;
|
2018-08-27 08:49:54 -05:00
|
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for usage of the `offset` pointer method with a `usize` casted to an
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// `isize`.
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// If we’re always increasing the pointer address, we can avoid the numeric
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// cast by using the `add` method instead.
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// let vec = vec![b'a', b'b', b'c'];
|
|
|
|
|
/// let ptr = vec.as_ptr();
|
|
|
|
|
/// let offset = 1_usize;
|
|
|
|
|
///
|
|
|
|
|
/// unsafe {
|
|
|
|
|
/// ptr.offset(offset as isize);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// Could be written:
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let vec = vec![b'a', b'b', b'c'];
|
|
|
|
|
/// let ptr = vec.as_ptr();
|
|
|
|
|
/// let offset = 1_usize;
|
|
|
|
|
///
|
|
|
|
|
/// unsafe {
|
|
|
|
|
/// ptr.add(offset);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2018-08-27 08:49:54 -05:00
|
|
|
|
pub PTR_OFFSET_WITH_CAST,
|
2018-08-29 07:02:26 -05:00
|
|
|
|
complexity,
|
2018-10-18 16:31:11 -05:00
|
|
|
|
"unneeded pointer offset cast"
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
|
declare_lint_pass!(PtrOffsetWithCast => [PTR_OFFSET_WITH_CAST]);
|
2018-08-27 08:49:54 -05:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for PtrOffsetWithCast {
|
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2018-08-29 07:40:00 -05:00
|
|
|
|
// Check if the expressions is a ptr.offset or ptr.wrapping_offset method call
|
|
|
|
|
let (receiver_expr, arg_expr, method) = match expr_as_ptr_offset_call(cx, expr) {
|
2018-08-27 08:49:54 -05:00
|
|
|
|
Some(call_arg) => call_arg,
|
|
|
|
|
None => return,
|
|
|
|
|
};
|
|
|
|
|
|
2018-08-29 07:40:00 -05:00
|
|
|
|
// Check if the argument to the method call is a cast from usize
|
2018-08-27 08:49:54 -05:00
|
|
|
|
let cast_lhs_expr = match expr_as_cast_from_usize(cx, arg_expr) {
|
|
|
|
|
Some(cast_lhs_expr) => cast_lhs_expr,
|
|
|
|
|
None => return,
|
|
|
|
|
};
|
|
|
|
|
|
2018-08-29 07:40:00 -05:00
|
|
|
|
let msg = format!("use of `{}` with a `usize` casted to an `isize`", method);
|
|
|
|
|
if let Some(sugg) = build_suggestion(cx, method, receiver_expr, cast_lhs_expr) {
|
2020-02-18 07:28:18 -06:00
|
|
|
|
span_lint_and_sugg(
|
2018-11-20 07:06:29 -06:00
|
|
|
|
cx,
|
|
|
|
|
PTR_OFFSET_WITH_CAST,
|
|
|
|
|
expr.span,
|
|
|
|
|
&msg,
|
|
|
|
|
"try",
|
|
|
|
|
sugg,
|
2018-11-27 08:13:57 -06:00
|
|
|
|
Applicability::MachineApplicable,
|
2018-11-20 07:06:29 -06:00
|
|
|
|
);
|
2018-08-29 07:12:22 -05:00
|
|
|
|
} else {
|
2020-02-18 07:28:18 -06:00
|
|
|
|
span_lint(cx, PTR_OFFSET_WITH_CAST, expr.span, &msg);
|
2018-08-29 07:12:22 -05:00
|
|
|
|
}
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the given expression is a cast from a usize, return the lhs of the cast
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn expr_as_cast_from_usize<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
|
2021-04-02 16:35:32 -05:00
|
|
|
|
if let ExprKind::Cast(cast_lhs_expr, _) = expr.kind {
|
|
|
|
|
if is_expr_ty_usize(cx, cast_lhs_expr) {
|
2018-08-27 08:49:54 -05:00
|
|
|
|
return Some(cast_lhs_expr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-29 07:40:00 -05:00
|
|
|
|
// If the given expression is a ptr::offset or ptr::wrapping_offset method call, return the
|
|
|
|
|
// receiver, the arg of the method call, and the method.
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn expr_as_ptr_offset_call<'tcx>(
|
|
|
|
|
cx: &LateContext<'tcx>,
|
2019-12-27 01:12:26 -06:00
|
|
|
|
expr: &'tcx Expr<'_>,
|
|
|
|
|
) -> Option<(&'tcx Expr<'tcx>, &'tcx Expr<'tcx>, Method)> {
|
2021-09-04 11:21:49 -05:00
|
|
|
|
if let ExprKind::MethodCall(path_segment, _, [arg_0, arg_1, ..], _) = &expr.kind {
|
|
|
|
|
if is_expr_ty_raw_ptr(cx, arg_0) {
|
2020-11-02 10:32:55 -06:00
|
|
|
|
if path_segment.ident.name == sym::offset {
|
2021-09-04 11:21:49 -05:00
|
|
|
|
return Some((arg_0, arg_1, Method::Offset));
|
2018-08-29 07:40:00 -05:00
|
|
|
|
}
|
2019-05-17 16:53:54 -05:00
|
|
|
|
if path_segment.ident.name == sym!(wrapping_offset) {
|
2021-09-04 11:21:49 -05:00
|
|
|
|
return Some((arg_0, arg_1, Method::WrappingOffset));
|
2018-08-29 07:40:00 -05:00
|
|
|
|
}
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Is the type of the expression a usize?
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_expr_ty_usize<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
cx.typeck_results().expr_ty(expr) == cx.tcx.types.usize
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Is the type of the expression a raw pointer?
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_expr_ty_raw_ptr<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
cx.typeck_results().expr_ty(expr).is_unsafe_ptr()
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn build_suggestion<'tcx>(
|
|
|
|
|
cx: &LateContext<'tcx>,
|
2018-08-29 07:40:00 -05:00
|
|
|
|
method: Method,
|
2019-12-27 01:12:26 -06:00
|
|
|
|
receiver_expr: &Expr<'_>,
|
|
|
|
|
cast_lhs_expr: &Expr<'_>,
|
2018-08-29 07:12:22 -05:00
|
|
|
|
) -> Option<String> {
|
2020-02-18 07:28:18 -06:00
|
|
|
|
let receiver = snippet_opt(cx, receiver_expr.span)?;
|
|
|
|
|
let cast_lhs = snippet_opt(cx, cast_lhs_expr.span)?;
|
2018-08-29 07:42:43 -05:00
|
|
|
|
Some(format!("{}.{}({})", receiver, method.suggestion(), cast_lhs))
|
2018-08-27 08:49:54 -05:00
|
|
|
|
}
|
2018-08-29 07:40:00 -05:00
|
|
|
|
|
2018-08-29 08:01:05 -05:00
|
|
|
|
#[derive(Copy, Clone)]
|
2018-08-29 07:40:00 -05:00
|
|
|
|
enum Method {
|
|
|
|
|
Offset,
|
|
|
|
|
WrappingOffset,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Method {
|
2019-09-18 01:37:41 -05:00
|
|
|
|
#[must_use]
|
2018-08-29 08:27:32 -05:00
|
|
|
|
fn suggestion(self) -> &'static str {
|
2018-08-29 08:59:38 -05:00
|
|
|
|
match self {
|
2019-07-30 19:25:35 -05:00
|
|
|
|
Self::Offset => "add",
|
|
|
|
|
Self::WrappingOffset => "wrapping_add",
|
2018-08-29 07:40:00 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for Method {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-08-29 08:59:38 -05:00
|
|
|
|
match self {
|
2019-07-30 19:25:35 -05:00
|
|
|
|
Self::Offset => write!(f, "offset"),
|
|
|
|
|
Self::WrappingOffset => write!(f, "wrapping_offset"),
|
2018-08-29 07:40:00 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-29 07:43:40 -05:00
|
|
|
|
}
|