Skip to content

Commit 5f2798e

Browse files
authored
Add a challenge for linked_list (#30)
> Please add a description of your PR. > If this is a solution to an open challenge, please explain your solution. > > Don't forget to check our book to ensure your solution satisfy the overall > requirements as well as the challenge success criteria. > By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 5a7327e commit 5f2798e

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

doc/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
- [Core Transmutation](./challenges/0001-core-transmutation.md)
1717
- [Memory safety of core intrinsics](./challenges/0002-intrinsics-memory.md)
1818
- [Pointer Arithmetic](./challenges/0003-pointer-arithmentic.md)
19+
- [Inductive data type](./challenges/0005-linked-list.md)
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Challenge 5: Verify functions iterating over inductive data type: `linked_list`
2+
3+
- **Status:** Open
4+
- **Tracking Issue:** [Link to issue](https://github.com/model-checking/verify-rust-std/issues/29)
5+
- **Start date:** *24/07/01*
6+
- **End date:** *24/12/10*
7+
8+
-------------------
9+
10+
11+
## Goal
12+
13+
Verify the memory safety of [`alloc::collections::linked_list` functions](https://github.com/rust-lang/rust/blob/c290e9de32e8ba6a673ef125fde40eadd395d170/library/alloc/src/collections/linked_list.rs) that iterate the its internal inductive-defined data type.
14+
15+
### Details
16+
17+
The internal representations of `linked_list` are bi-direction linked list nodes. To unboundedly prove the memory safety of functions that iterating over such inductive-defined data type, we need to illustrate the memory safety for linked lists of arbitrary shape. On the other hand, if we can only prove the memory safety for certain shapes of linked lists, how should we specify the precondition---the assumptions on the shape of the inductive-defined data type---of such functions.
18+
19+
20+
### Success Criteria
21+
22+
The memory safety of the following public functions that iterating over the internal inductive data type must be verified:
23+
24+
| Function | Location |
25+
|---------|---------|
26+
|clearn | alloc::collections::linked_list |
27+
|contains| alloc::collections::linked_list |
28+
|split_off| alloc::collections::linked_list |
29+
|remove| alloc::collections::linked_list |
30+
|retain| alloc::collections::linked_list |
31+
|retain_mut| alloc::collections::linked_list |
32+
|extract_if| alloc::collections::linked_list |
33+
34+
35+
The verification must be unbounded---it must hold for linked lists of arbitrary shape.
36+
37+
It is OK to assume that the generic type `T` of the proofs is primitive types, e.g., `i32`, `u32`, `bool`, etc.
38+
39+
### List of UBs
40+
41+
All proofs must automatically ensure the absence of the following undefined behaviors [ref](https://github.com/rust-lang/reference/blob/142b2ed77d33f37a9973772bd95e6144ed9dce43/src/behavior-considered-undefined.md):
42+
43+
* Accessing (loading from or storing to) a place that is dangling or based on a misaligned pointer.
44+
* Reading from uninitialized memory except for padding or unions.
45+
* Mutating immutable bytes.
46+
* Producing an invalid value
47+
48+
49+
Note: All solutions to verification challenges need to satisfy the criteria established in the [challenge book](../general-rules.md)
50+
in addition to the ones listed above.

0 commit comments

Comments
 (0)