Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 643558 - sys-apps/coreutils: Race condition vulnerability in chown and chgrp
Summary: sys-apps/coreutils: Race condition vulnerability in chown and chgrp
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Security
Classification: Unclassified
Component: Vulnerabilities (show other bugs)
Hardware: All Linux
: Normal major (vote)
Assignee: Gentoo Security
URL:
Whiteboard: A2 [noglsa]
Keywords:
Depends on:
Blocks:
 
Reported: 2018-01-05 15:06 UTC by GLSAMaker/CVETool Bot
Modified: 2022-01-19 20:10 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description GLSAMaker/CVETool Bot gentoo-dev 2018-01-05 15:06:09 UTC
CVE-2017-18018 (http://nvd.nist.gov/nvd.cfm?cvename=CVE-2017-18018):
  In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not
  prevent replacement of a plain file with a symlink during use of the POSIX
  "-R -L" options, which allows local users to modify the ownership of
  arbitrary files by leveraging a race condition.


@Maintainers please call for stabilization when ready. 

Thank you
Comment 1 Michael Orlitzky gentoo-dev 2018-01-05 22:03:45 UTC
The sentiment from upstream is that this probably can't be fixed, and I sort of agree. So far the only idea that I've had would be to collect and sort all of the paths to be chown'd by *realpath*, and then to process them in depth-first order. Basically, undoing the problem created by the symlink in the PoC (that the traversal becomes not depth-first).

However, there are problems with that approach:

  1. For the lawyers, POSIX says that the operation should be performed
     recursively. Collecting the paths in one big data structure and
     then processing them linearly in a loop is not recursive.

  2. How big do we make the aforementioned data structure? A priori, we
     don't know how deep the directory trees are.

  3. There's a large performance penalty to creating that data structure,
     calling realpath on everything, and then sorting the result.

  4. You have to rewrite all of the chown/chgrp code for this, and probably
     undo ten years worth of bug fixes in the process.

I've posted a documentation patch that basically says "don't do that," but beyond that, am hitting the limits of my imagination.
Comment 2 Oleh 2018-10-05 17:21:08 UTC
just in case coreutils-8.30 has the documentation fixes regarding this CVE.
Already in portage tree
Comment 3 Michael Orlitzky gentoo-dev 2018-10-05 21:44:18 UTC
We can probably just close this. There's no obvious way to fix the race condition and the upstream fix is just to document that it exists.
Comment 4 John Helmert III archtester Gentoo Infrastructure gentoo-dev Security 2022-01-19 20:10:35 UTC
(In reply to Michael Orlitzky from comment #3)
> We can probably just close this. There's no obvious way to fix the race
> condition and the upstream fix is just to document that it exists.

Works for me. A documentation warning does not warrant a GLSA imho, closing.