bottom icon indicating copy to clipboard operation
bottom copied to clipboard

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

Open github-actions[bot] opened this issue 4 years ago • 3 comments

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

Details
Package nix
Version 0.19.1
URL https://github.com/nix-rust/nix/issues/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.

github-actions[bot] avatar Oct 11 '21 00:10 github-actions[bot]

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

  • https://github.com/svartalf/rust-battery/issues/91
  • https://github.com/heim-rs/heim/issues/351

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 avatar Oct 11 '21 01:10 ClementTsang

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 avatar Oct 18 '21 01:10 ClementTsang

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 avatar May 06 '22 21:05 ClementTsang

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

ClementTsang avatar Apr 10 '23 10:04 ClementTsang