-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustix "memory explosion" vulnerability #3338
Comments
rustix 0.38.34 is semver compatible with 0.38.19. If you create a new project with sqlx it will use 0.38.34 instead .19 automatically picked by cargo. If you have an older project just run cargo update and it will fix it. |
rustix in sqlx is at 0.37.xx so it will not update. SQLX is using sqlx-core v0.7.4, which is using async-io v1.13, instead of the latest v2.3.3 which contains the latest rustix. Because of it's dependency on the older async-io, it contains this vulnerability, and currently my project has the latest rustix in it, alongside the old 0.37.xx because the sqlx dependencies explicitly call out the older version. |
The problem is IMO, this is on the rustix authors to backport the fix. |
That's valid. I'll close the issue. I've opened up this issue with |
@brandonmarzolf |
Summary
tl;dr:
rustix
memory vulnerability affectsrustix
version < 0.38.19, please update to latestrustix
version to resolve this vulnerability. What follows is directly from GitHub's DependabotWhen using rustix::fs::Dir using the linux_raw backend, it's possible for the iterator to "get stuck" when an IO error is encountered. Combined with a memory over-allocation issue in rustix::fs::Dir::read_more, this can cause quick and unbounded memory explosion (gigabytes in a few seconds if used on a hot path) and eventually lead to an OOM crash of the application.
Details
Discovery
The symptoms were initially discovered in imsnif/bandwhich#284. That post has lots of details of our investigation. See imsnif/bandwhich#284 (comment) and the Discord thread for details.
Diagnosis
This issue is caused by the combination of two independent bugs:
Since
::next calls Dir::read, which in turn calls Dir::read_more, this means an IO error encountered during reading a directory can lead to rapid and unbounded growth of memory use.PoC
fn main() -> Result<(), Box> {
// create a directory, get a FD to it, then unlink the directory but keep the FD
std::fs::create_dir("tmp_dir")?;
let dir_fd = rustix::fs::openat(
rustix::fs::CWD,
rustix::cstr!("tmp_dir"),
rustix::fs::OFlags::RDONLY | rustix::fs::OFlags::CLOEXEC,
rustix::fs::Mode::empty(),
)?;
std::fs::remove_dir("tmp_dir")?;
}
Impact
If a program tries to access a directory with its file descriptor after the file has been unlinked (or any other action that leaves the Dir iterator in the stuck state), and the implementation does not break after seeing an error, it can cause a memory explosion.
As an example, Linux's various virtual file systems (e.g. /proc, /sys) can contain directories that spontaneously pop in and out of existence. Attempting to iterate over them using rustix::fs::Dir directly or indirectly (e.g. with the procfs crate) can trigger this fault condition if the implementation decides to continue on errors.
An attacker knowledgeable about the implementation details of a vulnerable target can therefore try to trigger this fault condition via any one or a combination of several available APIs. If successful, the application host will quickly run out of memory, after which the application will likely be terminated by an OOM killer, leading to denial of service.
Info
The text was updated successfully, but these errors were encountered: