2023-11-29 10:39:24 -05:00
|
|
|
---
|
|
|
|
minutes: 5
|
|
|
|
---
|
|
|
|
|
2022-12-21 16:36:30 +01:00
|
|
|
# Unsafe Rust
|
|
|
|
|
|
|
|
The Rust language has two parts:
|
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
- **Safe Rust:** memory safe, no undefined behavior possible.
|
|
|
|
- **Unsafe Rust:** can trigger undefined behavior if preconditions are violated.
|
2022-12-21 16:36:30 +01:00
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
We saw mostly safe Rust in this course, but it's important to know what Unsafe
|
|
|
|
Rust is.
|
2022-12-21 16:36:30 +01:00
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
Unsafe code is usually small and isolated, and its correctness should be
|
|
|
|
carefully documented. It is usually wrapped in a safe abstraction layer.
|
2023-01-30 13:12:51 +00:00
|
|
|
|
2022-12-21 16:36:30 +01:00
|
|
|
Unsafe Rust gives you access to five new capabilities:
|
|
|
|
|
2023-12-31 00:15:07 +01:00
|
|
|
- Dereference raw pointers.
|
|
|
|
- Access or modify mutable static variables.
|
|
|
|
- Access `union` fields.
|
|
|
|
- Call `unsafe` functions, including `extern` functions.
|
|
|
|
- Implement `unsafe` traits.
|
2022-12-21 16:36:30 +01:00
|
|
|
|
2023-01-30 13:12:51 +00:00
|
|
|
We will briefly cover unsafe capabilities next. For full details, please see
|
2023-01-02 10:30:40 +01:00
|
|
|
[Chapter 19.1 in the Rust Book](https://doc.rust-lang.org/book/ch19-01-unsafe-rust.html)
|
|
|
|
and the [Rustonomicon](https://doc.rust-lang.org/nomicon/).
|
2023-01-30 13:12:51 +00:00
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
|
|
Unsafe Rust does not mean the code is incorrect. It means that developers have
|
2023-11-29 10:39:24 -05:00
|
|
|
turned off some compiler safety features and have to write correct code by
|
2023-01-30 13:12:51 +00:00
|
|
|
themselves. It means the compiler no longer enforces Rust's memory-safety rules.
|
|
|
|
|
|
|
|
</details>
|