Reject tar hard link targets that escape the output directory - #5437
Open
shaggyinsomniac wants to merge 1 commit into
Open
Reject tar hard link targets that escape the output directory#5437shaggyinsomniac wants to merge 1 commit into
shaggyinsomniac wants to merge 1 commit into
Conversation
TarArchiveReader.extract validated member names only. A hard link member whose relative linkname contains '..' makes tarfile's os.link() alias an existing file outside the output directory; a later write through the alias overwrites it. The realpath-based check cannot detect this because it does not resolve hard links. Mirror tarfile's link-target resolution and apply the same containment check to it.
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.
Fixes #5436.
What
TarArchiveReader.extractnow resolves a hard link member's target the same waytarfilewill (absolute linknames re-rooted at the output directory, relative ones joined against the member's directory) and applies the existing_is_attempting_path_traversalcontainment check to it.Why
The member-name guard could not catch this class:
os.path.realpathdoes not resolve hard links, so an alias created byos.linkpointing outside the output directory still appears contained. Details and a standalone stdlib PoC in #5436.Testing
pytest src/clusterfuzz/_internal/tests/core/system/archive_test.py— both new tests pass; no other tests changed behavior (one unrelated pre-existing env-sensitive zip-chmod mock test fails identically with and without this change).