We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
000
crun and krun have different exit status when the command is a file with permission mode 000 or a directory
Error: crun: open executable: Operation not permitted: OCI permission denied
Error: OCI runtime error: runc: runc create failed: unable to start container process: error during container init: exec: "/etc": is a directory
Couldn't execute '/etc' inside the vm: Permission denied
$ sudo bash -c 'podman run --runtime=crun -t docker.io/library/fedora:41 /etc ; echo $?' Error: crun: open executable: Operation not permitted: OCI permission denied 126 $ sudo bash -c 'podman run --runtime=runc -t docker.io/library/fedora:41 /etc ; echo $?' Error: OCI runtime error: runc: runc create failed: unable to start container process: error during container init: exec: "/etc": is a directory 126 $ sudo bash -c 'podman run --runtime=krun -t docker.io/library/fedora:41 /etc ; echo $?' Couldn't execute '/etc' inside the vm: Permission denied 0 $
Error: crun: open executable: Permission denied: OCI permission denied
Error: runc: runc create failed: unable to start container process: error during container init: exec: "/usr/bin/restricted-file": permission denied: OCI permission denied
Couldn't execute '/usr/bin/restricted-file' inside the vm: Permission denied
$ sudo bash -c 'podman run --runtime=crun -t localhost/test /usr/bin/restricted-file ; echo $?' Error: crun: open executable: Permission denied: OCI permission denied 126 $ sudo bash -c 'podman run --runtime=runc -t localhost/test /usr/bin/restricted-file ; echo $?' Error: runc: runc create failed: unable to start container process: error during container init: exec: "/usr/bin/restricted-file": permission denied: OCI permission denied 126 $ sudo bash -c 'podman run --runtime=krun -t localhost/test /usr/bin/restricted-file ; echo $?' Couldn't execute '/usr/bin/restricted-file' inside the vm: Permission denied 0 $
This Containerfile was used to build the container image localhost/test
FROM docker.io/library/fedora RUN cp /usr/bin/echo /usr/bin/restricted-file RUN chmod 000 /usr/bin/restricted-file
About the system:
$ cat /etc/os-release | grep ^VERSION= VERSION="41 (Forty One)" $ rpm -qa | grep -E 'krun|crun|runc' libkrunfw-4.7.1-1.fc41.x86_64 libkrun-1.10.1-2.fc41.x86_64 crun-1.20-2.fc41.x86_64 crun-krun-1.20-2.fc41.x86_64 runc-1.2.5-1.fc41.x86_64 libkrun-devel-1.10.1-2.fc41.x86_64 libkrunfw-sev-4.7.1-1.fc41.x86_64 libkrun-sev-1.10.1-2.fc41.x86_64 libkrun-sev-devel-1.10.1-2.fc41.x86_64 libkrunfw-sev-devel-4.7.1-1.fc41.x86_64 libkrunfw-devel-4.7.1-1.fc41.x86_64 $
Side note: This issue has similarities with the issue
The text was updated successfully, but these errors were encountered:
@slp PTAL
Sorry, something went wrong.
No branches or pull requests
crun and krun have different exit status when the command is a file with permission mode
000
or a directoryExample 1: command is a directory
Error: crun: open executable: Operation not permitted: OCI permission denied
Error: OCI runtime error: runc: runc create failed: unable to start container process: error during container init: exec: "/etc": is a directory
Couldn't execute '/etc' inside the vm: Permission denied
Example 2: command is a file with permission mode
000
Error: crun: open executable: Permission denied: OCI permission denied
Error: runc: runc create failed: unable to start container process: error during container init: exec: "/usr/bin/restricted-file": permission denied: OCI permission denied
Couldn't execute '/usr/bin/restricted-file' inside the vm: Permission denied
This Containerfile was used to build the container image localhost/test
About the system:
Side note: This issue has similarities with the issue
The text was updated successfully, but these errors were encountered: