-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
New images 2025-04-01 #25738
base: main
Are you sure you want to change the base?
New images 2025-04-01 #25738
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Luap99 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
podman tests are failing on debian, something seems to run dnsmasq on 0.0.0.0:53 which of course conflicts with out dns handling, I need to resping new images with dnsmasq running. |
From containers/automation_images#404 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
To make the podman binary smaller link against the system sqlite lib. However only do so when the lib is installed like done with many other build tags. If the lib is not found it defaults to static linking like we did before. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Test is consistently failing and I can reproduce on rawhide with the 6.15 kernel (6.15.0-0.rc0.20250327git1a9239bb4253.5.fc43.x86_64). @giuseppe Does that ring a bell for you? It is only failing as rootless, as root the command works fine. |
this looks like something changed in the kernel. I wonder if it is caused by:
I'll ping David about it |
I am currently trying to build/bisect the kernel I can let you know if I find something. So far it seems to be caused by other weird mode of 123, using a sane mode of 600 seems to work fine but my understanding is we should have CAP_DAC_OVERRIDE in the userns here so the mode likely should not matter at all. And because the same works as real root I assume it is related to the user namespac'ed cap. |
I am 99% sure that the issue is that the cc0876f817d6d1636795e97c20c3b2b1e177718c commit causes the specified IDs to be mapped in the user namespace |
this patch fixes the problem for me: diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c
index 42e4d6eeb29f..9c20d78e41f6 100644
--- a/fs/devpts/inode.c
+++ b/fs/devpts/inode.c
@@ -89,12 +89,12 @@ enum {
};
static const struct fs_parameter_spec devpts_param_specs[] = {
- fsparam_u32 ("gid", Opt_gid),
+ fsparam_gid ("gid", Opt_gid),
fsparam_s32 ("max", Opt_max),
fsparam_u32oct ("mode", Opt_mode),
fsparam_flag ("newinstance", Opt_newinstance),
fsparam_u32oct ("ptmxmode", Opt_ptmxmode),
- fsparam_u32 ("uid", Opt_uid),
+ fsparam_uid ("uid", Opt_uid),
{}
}; |
Does this PR introduce a user-facing change?