Skip to content
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

RUSTSEC-2021-0119: Out-of-bounds write in nix::unistd::getgrouplist #597

Closed
github-actions bot opened this issue Oct 11, 2021 · 4 comments · Fixed by #1064
Closed

RUSTSEC-2021-0119: Out-of-bounds write in nix::unistd::getgrouplist #597

github-actions bot opened this issue Oct 11, 2021 · 4 comments · Fixed by #1064
Assignees
Labels
upstream For issues that depend on an upstream fix/change.
Projects

Comments

@github-actions
Copy link
Contributor

Out-of-bounds write in nix::unistd::getgrouplist

Details
Package nix
Version 0.19.1
URL nix-rust/nix#1541
Date 2021-09-27
Patched versions ^0.20.2,^0.21.2,^0.22.2,>=0.23.0
Unaffected versions <0.16.0

On certain platforms, if a user has more than 16 groups, the
nix::unistd::getgrouplist function will call the libc getgrouplist
function with a length parameter greater than the size of the buffer it
provides, resulting in an out-of-bounds write and memory corruption.

The libc getgrouplist function takes an in/out parameter ngroups
specifying the size of the group buffer. When the buffer is too small to
hold all of the reqested user's group memberships, some libc
implementations, including glibc and Solaris libc, will modify ngroups
to indicate the actual number of groups for the user, in addition to
returning an error. The version of nix::unistd::getgrouplist in nix
0.16.0 and up will resize the buffer to twice its size, but will not
read or modify the ngroups variable. Thus, if the user has more than
twice as many groups as the initial buffer size of 8, the next call to
getgrouplist will then write past the end of the buffer.

The issue would require editing /etc/groups to exploit, which is usually
only editable by the root user.

See advisory page for additional details.

@ClementTsang ClementTsang added the upstream For issues that depend on an upstream fix/change. label Oct 11, 2021
@ClementTsang
Copy link
Owner

ClementTsang commented Oct 11, 2021

Seems like both heim and battery are on 0.19, which is both in the affected range and not patched. See:

Would prefer to not have to patch them manually in Cargo.toml, so I'll wait a bit and see if they get fixed upstream.

@ClementTsang ClementTsang added this to Blocked in Next Oct 11, 2021
@ClementTsang ClementTsang self-assigned this Oct 11, 2021
@ClementTsang
Copy link
Owner

FWIW this is likely not something that affects bottom, though it would be nice to fix. If it takes too long I'll just close this.

@ClementTsang
Copy link
Owner

First half addressed by #724, which moves to a more maintained fork of the battery crate.

The second half is likely either going to be addressed by looking for another fork, or the more likely case, just stripping out heim entirely.

@ClementTsang
Copy link
Owner

Resolved as heim, the dependency pulling in the problematic version, is removed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
upstream For issues that depend on an upstream fix/change.
Projects
No open projects
Next
  
Blocked
Status: Blocked
1 participant