|
|
@@ -0,0 +1,37 @@
|
|
|
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
+From: Christian Brauner <[email protected]>
|
|
|
+Date: Wed, 6 May 2020 10:55:28 +0200
|
|
|
+Subject: [PATCH] UBUNTU: SAUCE: overlayfs: fix shitfs special-casing
|
|
|
+
|
|
|
+BugLink: https://bugs.launchpad.net/bugs/1876645
|
|
|
+
|
|
|
+When I picked up Andrei's patch I ported it wrong. We need to initialize
|
|
|
+realpath before dereferencing it obviously.
|
|
|
+
|
|
|
+Cc: Stefan Bader <[email protected]>
|
|
|
+Cc: Seth Forshee <[email protected]>
|
|
|
+Cc: Kamal Mostafa <[email protected]>
|
|
|
+Cc: Kleber Sacilotto de Souza <[email protected]>
|
|
|
+Cc: Andrei Vagin <[email protected]>
|
|
|
+Fixes: 4e1f6efeedae ("UBUNTU: SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay")
|
|
|
+Link: https://bugs.launchpad.net/bugs/1857257
|
|
|
+Signed-off-by: Christian Brauner <[email protected]>
|
|
|
+Acked-by: Stefan Bader <[email protected]>
|
|
|
+Acked-by: Kleber Souza <[email protected]>
|
|
|
+Signed-off-by: Khalid Elmously <[email protected]>
|
|
|
+---
|
|
|
+ fs/overlayfs/file.c | 1 +
|
|
|
+ 1 file changed, 1 insertion(+)
|
|
|
+
|
|
|
+diff --git a/fs/overlayfs/file.c b/fs/overlayfs/file.c
|
|
|
+index a2faa086ee4b..a406736588d4 100644
|
|
|
+--- a/fs/overlayfs/file.c
|
|
|
++++ b/fs/overlayfs/file.c
|
|
|
+@@ -32,6 +32,7 @@ static struct file *ovl_open_realfile(const struct file *file,
|
|
|
+ int flags = file->f_flags | O_NOATIME | FMODE_NONOTIFY;
|
|
|
+
|
|
|
+ old_cred = ovl_override_creds(inode->i_sb);
|
|
|
++ ovl_path_real(file->f_path.dentry, &realpath);
|
|
|
+ if (realpath.dentry->d_sb->s_magic == SHIFTFS_MAGIC)
|
|
|
+ realfile = open_with_fake_path(&realpath, flags, realinode,
|
|
|
+ current_cred());
|