Skip to content
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

Incorrect permission set for /workspace #1301

Open
xfu83 opened this issue Aug 15, 2023 · 6 comments
Open

Incorrect permission set for /workspace #1301

xfu83 opened this issue Aug 15, 2023 · 6 comments

Comments

@xfu83
Copy link

xfu83 commented Aug 15, 2023

tldr; /workspace should be read-only, but somehow it's writeable in some cases.

We've been using kpack on our internal platform to build images for our clients. Recently we found that users were able to write to the /workspace which caused some unexpected issues. We believe that it's caused by a regression bug from kpack.

We will be working on identifying the issue and post a minimal reproducible example in the coming weeks.

@chenbh
Copy link
Contributor

chenbh commented Aug 16, 2023

afaik I think /workspace (at least in the build container) has always been writable. I would imagine this would otherwise break languages that like to compile in place (like java and its .class).

As a comparison, I just tried this out using pack and the implementation there allowed /workspace to be writable. I was able to create a buildpack that arbitrary modified the source code as part of its build step.

@samj1912
Copy link
Contributor

samj1912 commented Aug 29, 2023

@chenbh I believe the issue is about the output images rather than the build process. The workspace is currently world writable which breaks workspace immutability during runtime when built layers are put atop the run image. Ideally it should only be writable by the build user.

kpack used to produce images that were not world writable but this changed recently.

There is also a buildpacks rfc to support this behavior as not being able to do this leads to security issues.

Details are at https://github.com/buildpacks/rfcs/blob/main/text/0085-run-uid.md

@samj1912
Copy link
Contributor

Related buildpacks/community#229

@gcemaj
Copy link

gcemaj commented May 6, 2024

Hello, wondering if there are any updates on this? Seems that it was decided that these permissions would be determined by each platform (buildpacks/lifecycle#1350). And seems that pack made the decision to make this directory writable, was this something also decided for kpack? Could this be configurable instead? Maybe a applicationLayerIsWritable option of sorts?

@samj1912
Copy link
Contributor

Related #1016

@samj1912
Copy link
Contributor

samj1912 commented Jul 17, 2024

We were able to patch this internally using a pod mutator that runs at the beginning of the build and chmods and chowns the volume correctly. It would be great to see this being fixed in kpack or alternatively lifecycle.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants