libutil: Make RestoreSink use *at system calls on UNIX#14597
Merged
libutil: Make RestoreSink use *at system calls on UNIX#14597
Conversation
…UL bytes better Same utility as in lix's change I3caf476e59dcb7899ac5a3d83dfa3fb7ceaaabf0. Co-authored-by: eldritch horrors <pennae@lix.systems>
9a56b89 to
cb69b13
Compare
edef1c
approved these changes
Nov 20, 2025
Member
edef1c
left a comment
There was a problem hiding this comment.
As stated in Nix team meeting, definite improvement, and seems good to merge.
Longer-term, I'd like us to get rid of the open()s and have the caller pass in the parent dir fd, and preferably only do single-component O_NOFOLLOW openats, since O_NOFOLLOW only applies to the final component.
Ericson2314
approved these changes
Nov 20, 2025
xokdvium
commented
Nov 20, 2025
This is necessary to ban symlink following. It can be considered a defense in depth against issues similar to CVE-2024-45593. By slightly changing the API in a follow-up commit we will be able to mitigate the symlink following issue for good.
Now the intermediate symlink following issue should be completely plugged.
cb69b13 to
40b2515
Compare
Contributor
Author
|
Just noticed that I've missed some CLOEXEC. Added them, though I doubt it would matter in practice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
This is necessary to ban symlink following. It can be considered
a defense in depth against issues similar to CVE-2024-45593.
Context
Add 👍 to pull requests you find important.
The Nix maintainer team uses a GitHub project board to schedule and track reviews.