This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
tar/import: Handle hardlinked changes into /sysroot #408
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.
Builds on #406
tar/import: Handle hardlinked changes into /sysroot
Some container build processes run without overlayfs inode indexing
on - in this common scenario, overlayfs is not quite POSIX compliant
because it will break the hardlink instead of modifying all versions.
We need to handle this case of having all names for a hardlinked
file being modified though too. If the serialized tar stream
has the file in
/sysroot
be the canonical version, then becausewe drop out that file here, we'll fail to import.
Fix this by significantly beefing up the tar filtering/reprocessing
logic:
/sysroot
with a nonzero timestamp,cache its data into a lookaside temporary directory
be the canonical version in e.g.
/usr
./sysroot
instead become hardlinksto the new canonical one.
(Arguably perhaps...we should actually not have used hardlinks
in ostree containers at all, but injected this metadata in
some other way. But, the ship has sailed on that)
Closes: #405