u8
type casting
This crate has no reviews yet. To add a review, set up your cargo-crev
.
Lib.rs has been able to verify that all files in the crate's tarball are in the crate's repository. Please note that this check is still in beta, and absence of this confirmation does not mean that the files don't match.
Crates in the crates.io registry are tarball snapshots uploaded by crates' publishers. The registry is not using crates' git repositories, so there is a possibility that published crates have a misleading repository URL, or contain different code from the code in the repository.
To review the actual code of the crate, it's best to use cargo crev open spl-token-swap
. Alternatively, you can download the tarball of spl-token-swap v3.0.0 or view the source online.
The library provides a safe public API
unpack
to castu8
array to arbitrary types, which can cause to undefined behaviors. The length check of array can only prevent out-of-bound access on the return type. However, it can't prevent misaligned pointer when castingu8
pointer to a type aligned to larger bytes. For example, if we assignu16
toT
, misaligned raw pointer dereference could happen and cause to panic. Even if we pass the type aligned to same byte asu8
(e.g.,bool
), it could construct a illegal type sincebool
can only have 0 or 1 as bit patterns, which is also an undefined behavior. The further exploits of the bug here are still not clear, so we would report this issue as unsound.The details of PoC to reproduce undefined behavior are provided in the issue.