summaryrefslogtreecommitdiffstats
path: root/debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-26 17:41:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-26 17:41:48 +0000
commit44ad8616fc71dc577a8a09be7cd05a034606feeb (patch)
tree2b6e157c29d7eae810d06ee00dd3169de654ef39 /debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch
parentReleasing progress-linux version 2.40-6~progress7.99u1. (diff)
downloadutil-linux-44ad8616fc71dc577a8a09be7cd05a034606feeb.tar.xz
util-linux-44ad8616fc71dc577a8a09be7cd05a034606feeb.zip
Merging debian version 2.40-7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch')
-rw-r--r--debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch b/debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch
new file mode 100644
index 0000000..a305ec8
--- /dev/null
+++ b/debian/patches/upstream/libmount-Fix-access-check-for-utab-in-context.patch
@@ -0,0 +1,39 @@
+From: Karel Zak <kzak@redhat.com>
+Date: Mon, 22 Apr 2024 13:09:04 +0200
+Subject: libmount: Fix access check for utab in context
+
+The function mnt_has_regular_utab() properly detects that the utab is
+not writable, but this is ignored by the high-level context API. As a
+result, the library later attempts to update the file and ends up with
+a warning in mount(8):
+
+ $ mkdir sys
+ $ unshare --map-root-user --mount
+ $ mount --rbind /sys sys
+ $ umount --lazy sys; echo $?
+ umount: /home/user/sys: filesystem was unmounted, but failed to update userspace mount table.
+ 16
+
+In this case, the utab should be ignored.
+
+Fixes: https://github.com/util-linux/util-linux/issues/2981
+Signed-off-by: Karel Zak <kzak@redhat.com>
+(cherry picked from commit 97f7bfc0fdf74b6a6e220ba9d2f620386e660b29)
+---
+ libmount/src/context.c | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/libmount/src/context.c b/libmount/src/context.c
+index 952287a..5206c1d 100644
+--- a/libmount/src/context.c
++++ b/libmount/src/context.c
+@@ -367,8 +367,7 @@ const char *mnt_context_get_writable_tabpath(struct libmnt_context *cxt)
+ {
+ assert(cxt);
+
+- context_init_paths(cxt, 1);
+- return cxt->utab_path;
++ return mnt_context_utab_writable(cxt) ? cxt->utab_path : NULL;
+ }
+
+