-
-
Notifications
You must be signed in to change notification settings - Fork 24
1599: recreate fifos and skip other special files during COPY #948
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mzihlmann
wants to merge
5
commits into
main
Choose a base branch
from
mz2594-copy-special-files
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
076563c
1599: recreate fifos and skip other special files during COPY
mzihlmann 7af6c8c
1599: keep fifo copies out of /kaniko and off ignored paths
mzihlmann f23220a
Implement fs.ReadLinkFS so fs.Lstat stops dereferencing links
mzihlmann fe24196
Say why the filesystems implement Stat, Lstat and ReadLink
mzihlmann e699635
Assert the copy helpers never refuse a file inside CopyDir
mzihlmann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # 1599: COPY of a fifo hangs forever on v1.28.1. Source files are copied by | ||
| # opening and reading them, and open(2) on a fifo blocks until a writer shows | ||
| # up, so the build never terminates and never times out. Covers the fifo inside | ||
| # a copied directory, named directly as the source, and with --chown/--chmod. | ||
| ARG IMAGE_REPO | ||
| FROM ${IMAGE_REPO}busybox AS builder | ||
| RUN mkdir /work \ | ||
| && echo "content" > /work/regular.txt \ | ||
| && mkfifo -m 640 /work/pipe | ||
|
|
||
| FROM ${IMAGE_REPO}busybox | ||
| # fifo inside a copied directory | ||
| COPY --from=builder /work/ /work/ | ||
| RUN test -p /work/pipe | ||
| RUN test "$(stat -c %a /work/pipe)" = "640" | ||
| RUN grep -q 'content' /work/regular.txt | ||
| # fifo named directly as the copy source | ||
| COPY --from=builder /work/pipe /direct/pipe | ||
| RUN test -p /direct/pipe | ||
| # --chown and --chmod must apply to a fifo like any other file | ||
| COPY --chown=1000:1000 --chmod=600 --from=builder /work/pipe /owned/pipe | ||
| RUN test -p /owned/pipe | ||
| RUN test "$(stat -c %u:%g /owned/pipe)" = "1000:1000" | ||
| RUN test "$(stat -c %a /owned/pipe)" = "600" |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # 1599: a fifo COPY must respect the kaniko directory guard like any other COPY. | ||
| # CreateFifo removes the destination before calling mkfifo, and the fifo branch | ||
| # skipped the check that refuses copies into /kaniko. A fifo copied over | ||
| # /kaniko/tini replaces the init every RUN execs through, so the build dies on | ||
| # the next RUN instead of skipping the copy with a warning. | ||
| # Breaks on the fifo COPY path added in PR #948. | ||
| ARG IMAGE_REPO | ||
| FROM ${IMAGE_REPO}busybox AS builder | ||
| RUN mkfifo /pipe | ||
|
|
||
| FROM ${IMAGE_REPO}busybox | ||
| COPY --from=builder /pipe /kaniko/tini | ||
| RUN echo alive |
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.