forked from rust-lang/rust-clippy
-
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#4697 - Licenser:no-exit, r=flip1995
restriction lint for `std::process::exit` Addition to rust-lang#4655 - adds the lint checking for `std::process::exit` changelog: add restriction lint for `std::process::exit`
- Loading branch information
Showing
11 changed files
with
118 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
use crate::utils::{is_entrypoint_fn, match_def_path, paths, qpath_res, span_lint}; | ||
use if_chain::if_chain; | ||
use rustc::hir::{Expr, ExprKind, Item, ItemKind, Node}; | ||
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; | ||
use rustc::{declare_lint_pass, declare_tool_lint}; | ||
|
||
declare_clippy_lint! { | ||
/// **What it does:** `exit()` terminates the program and doesn't provide a | ||
/// stack trace. | ||
/// | ||
/// **Why is this bad?** Ideally a program is terminated by finishing | ||
/// the main function. | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// ```ignore | ||
/// std::process::exit(0) | ||
/// ``` | ||
pub EXIT, | ||
restriction, | ||
"`std::process::exit` is called, terminating the program" | ||
} | ||
|
||
declare_lint_pass!(Exit => [EXIT]); | ||
|
||
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Exit { | ||
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) { | ||
if_chain! { | ||
if let ExprKind::Call(ref path_expr, ref _args) = e.kind; | ||
if let ExprKind::Path(ref path) = path_expr.kind; | ||
if let Some(def_id) = qpath_res(cx, path, path_expr.hir_id).opt_def_id(); | ||
if match_def_path(cx, def_id, &paths::EXIT); | ||
then { | ||
let mut parent = cx.tcx.hir().get_parent_item(e.hir_id); | ||
if let Some(Node::Item(Item{ident, kind: ItemKind::Fn(..), ..})) = cx.tcx.hir().find(parent) { | ||
// If the next item up is a function we check if it is an entry point | ||
// and only then emit a linter warning | ||
let def_id = cx.tcx.hir().local_def_id(parent); | ||
if !is_entrypoint_fn(cx, def_id) { | ||
span_lint(cx, EXIT, e.span, "usage of `process::exit`"); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,15 @@ | ||
#[warn(clippy::exit)] | ||
|
||
fn not_main() { | ||
if true { | ||
std::process::exit(4); | ||
} | ||
} | ||
|
||
fn main() { | ||
if true { | ||
std::process::exit(2); | ||
}; | ||
not_main(); | ||
std::process::exit(1); | ||
} |
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 @@ | ||
error: usage of `process::exit` | ||
--> $DIR/exit1.rs:5:9 | ||
| | ||
LL | std::process::exit(4); | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::exit` implied by `-D warnings` | ||
|
||
error: aborting due to previous error | ||
|
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,13 @@ | ||
#[warn(clippy::exit)] | ||
|
||
fn also_not_main() { | ||
std::process::exit(3); | ||
} | ||
|
||
fn main() { | ||
if true { | ||
std::process::exit(2); | ||
}; | ||
also_not_main(); | ||
std::process::exit(1); | ||
} |
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 @@ | ||
error: usage of `process::exit` | ||
--> $DIR/exit2.rs:4:5 | ||
| | ||
LL | std::process::exit(3); | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::exit` implied by `-D warnings` | ||
|
||
error: aborting due to previous error | ||
|
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,8 @@ | ||
#[warn(clippy::exit)] | ||
|
||
fn main() { | ||
if true { | ||
std::process::exit(2); | ||
}; | ||
std::process::exit(1); | ||
} |