forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#10317 - m-ou-se:suspicious-command-arg-space,…
… r=Manishearth Add `suspicious_command_arg_space` lint Fixes rust-lang#10316 --- changelog: New lint: [`suspicious_command_arg_space`] [rust-lang#10317](rust-lang/rust-clippy#10317) <!-- changelog_checked -->
- Loading branch information
Showing
7 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
use clippy_utils::diagnostics::span_lint_and_then; | ||
use clippy_utils::paths; | ||
use clippy_utils::ty::match_type; | ||
use rustc_ast as ast; | ||
use rustc_errors::{Applicability, Diagnostic}; | ||
use rustc_hir as hir; | ||
use rustc_lint::LateContext; | ||
use rustc_span::Span; | ||
|
||
use super::SUSPICIOUS_COMMAND_ARG_SPACE; | ||
|
||
pub(super) fn check<'tcx>(cx: &LateContext<'tcx>, recv: &'tcx hir::Expr<'_>, arg: &'tcx hir::Expr<'_>, span: Span) { | ||
let ty = cx.typeck_results().expr_ty(recv).peel_refs(); | ||
|
||
if match_type(cx, ty, &paths::STD_PROCESS_COMMAND) | ||
&& let hir::ExprKind::Lit(lit) = &arg.kind | ||
&& let ast::LitKind::Str(s, _) = &lit.node | ||
&& let Some((arg1, arg2)) = s.as_str().split_once(' ') | ||
&& arg1.starts_with('-') | ||
&& arg1.chars().all(|c| c.is_ascii_alphanumeric() || c == '_' || c == '-') | ||
{ | ||
span_lint_and_then( | ||
cx, | ||
SUSPICIOUS_COMMAND_ARG_SPACE, | ||
arg.span, | ||
"single argument that looks like it should be multiple arguments", | ||
|diag: &mut Diagnostic| { | ||
diag.multipart_suggestion_verbose( | ||
"consider splitting the argument", | ||
vec![ | ||
(span, "args".to_string()), | ||
(arg.span, format!("[{arg1:?}, {arg2:?}]")), | ||
], | ||
Applicability::MaybeIncorrect, | ||
); | ||
} | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
fn main() { | ||
// Things it should warn about: | ||
std::process::Command::new("echo").arg("-n hello").spawn().unwrap(); | ||
std::process::Command::new("cat").arg("--number file").spawn().unwrap(); | ||
|
||
// Things it should not warn about: | ||
std::process::Command::new("echo").arg("hello world").spawn().unwrap(); | ||
std::process::Command::new("a").arg("--fmt=%a %b %c").spawn().unwrap(); | ||
std::process::Command::new("b").arg("-ldflags=-s -w").spawn().unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
error: single argument that looks like it should be multiple arguments | ||
--> $DIR/suspicious_command_arg_space.rs:3:44 | ||
| | ||
LL | std::process::Command::new("echo").arg("-n hello").spawn().unwrap(); | ||
| ^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::suspicious-command-arg-space` implied by `-D warnings` | ||
help: consider splitting the argument | ||
| | ||
LL | std::process::Command::new("echo").args(["-n", "hello"]).spawn().unwrap(); | ||
| ~~~~ ~~~~~~~~~~~~~~~ | ||
|
||
error: single argument that looks like it should be multiple arguments | ||
--> $DIR/suspicious_command_arg_space.rs:4:43 | ||
| | ||
LL | std::process::Command::new("cat").arg("--number file").spawn().unwrap(); | ||
| ^^^^^^^^^^^^^^^ | ||
| | ||
help: consider splitting the argument | ||
| | ||
LL | std::process::Command::new("cat").args(["--number", "file"]).spawn().unwrap(); | ||
| ~~~~ ~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error: aborting due to 2 previous errors | ||
|