-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This is a follow-up on #3063 that adds a test with multiple crates to make sure this scenario is correctly handled and that Kani reports the bug. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
- Loading branch information
1 parent
fb6300d
commit 6dfe0a0
Showing
6 changed files
with
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright Kani Contributors | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
[workspace] | ||
members = ["crate-with-bug", "crate-with-harness"] | ||
resolver = "2" |
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 @@ | ||
# Copyright Kani Contributors | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
[package] | ||
name = "crate-with-bug" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
12 changes: 12 additions & 0 deletions
12
tests/cargo-kani/storage-markers/crate-with-bug/src/lib.rs
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,12 @@ | ||
// Copyright Kani Contributors | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
// This function contains a use-after-free bug. | ||
|
||
pub fn fn_with_bug() -> i32 { | ||
let raw_ptr = { | ||
let var = 10; | ||
&var as *const i32 | ||
}; | ||
unsafe { *raw_ptr } | ||
} |
9 changes: 9 additions & 0 deletions
9
tests/cargo-kani/storage-markers/crate-with-harness/Cargo.toml
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,9 @@ | ||
# Copyright Kani Contributors | ||
# SPDX-License-Identifier: Apache-2.0 OR MIT | ||
[package] | ||
name = "crate-with-harness" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crate-with-bug = { path = "../crate-with-bug" } |
3 changes: 3 additions & 0 deletions
3
tests/cargo-kani/storage-markers/crate-with-harness/call_fn_with_bug.expected
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,3 @@ | ||
Status: FAILURE\ | ||
Description: "dereference failure: dead object"\ | ||
in function crate_with_bug::fn_with_bug |
11 changes: 11 additions & 0 deletions
11
tests/cargo-kani/storage-markers/crate-with-harness/src/lib.rs
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,11 @@ | ||
// Copyright Kani Contributors | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
// This test checks that Kani captures the case of a use-after-free issue as | ||
// described in https://github.com/model-checking/kani/issues/3061 even across | ||
// crates. The test calls a function from another crate that has the bug. | ||
|
||
#[kani::proof] | ||
pub fn call_fn_with_bug() { | ||
let _x = crate_with_bug::fn_with_bug(); | ||
} |