You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
From 3c54c67a7fc65dc5b49b2452739c19b94eeb98a9 Mon Sep 17 00:00:00 2001 |
|
From: David Tardon <dtardon@redhat.com> |
|
Date: Tue, 21 Dec 2021 10:46:17 +0100 |
|
Subject: [PATCH] Treat EPERM as "not available" too |
|
|
|
We need to do this because idmapped mounts habe been disabled in RHEL-9 |
|
kernel: https://bugzilla.redhat.com/show_bug.cgi?id=2018141 . |
|
|
|
RHEL-only |
|
|
|
Fixes #55 |
|
|
|
Related: #2017035 |
|
--- |
|
src/nspawn/nspawn.c | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c |
|
index 8f17ab8810..9225c8f162 100644 |
|
--- a/src/nspawn/nspawn.c |
|
+++ b/src/nspawn/nspawn.c |
|
@@ -3780,7 +3780,7 @@ static int outer_child( |
|
arg_uid_shift != 0) { |
|
|
|
r = remount_idmap(directory, arg_uid_shift, arg_uid_range); |
|
- if (r == -EINVAL || ERRNO_IS_NOT_SUPPORTED(r)) { |
|
+ if (IN_SET(r, -EINVAL, -EPERM) || ERRNO_IS_NOT_SUPPORTED(r)) { |
|
/* This might fail because the kernel or file system doesn't support idmapping. We |
|
* can't really distinguish this nicely, nor do we have any guarantees about the |
|
* error codes we see, could be EOPNOTSUPP or EINVAL. */
|
|
|