From: Greg Kroah-Hartman Date: Fri, 9 Oct 2020 07:38:29 +0000 (+0200) Subject: 4.19-stable patches X-Git-Tag: v4.4.239~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e8ef212434db838bf1199da03d7243c91584d9de;p=thirdparty%2Fkernel%2Fstable-queue.git 4.19-stable patches added patches: drm-nouveau-mem-guard-against-null-pointer-access-in-mem_del.patch net-wireless-nl80211-fix-out-of-bounds-access-in-nl80211_del_key.patch usermodehelper-reset-umask-to-default-before-executing-user-process.patch --- diff --git a/queue-4.19/drm-nouveau-mem-guard-against-null-pointer-access-in-mem_del.patch b/queue-4.19/drm-nouveau-mem-guard-against-null-pointer-access-in-mem_del.patch new file mode 100644 index 00000000000..58422cfb64e --- /dev/null +++ b/queue-4.19/drm-nouveau-mem-guard-against-null-pointer-access-in-mem_del.patch @@ -0,0 +1,34 @@ +From d10285a25e29f13353bbf7760be8980048c1ef2f Mon Sep 17 00:00:00 2001 +From: Karol Herbst +Date: Wed, 7 Oct 2020 00:05:28 +0200 +Subject: drm/nouveau/mem: guard against NULL pointer access in mem_del + +From: Karol Herbst + +commit d10285a25e29f13353bbf7760be8980048c1ef2f upstream. + +other drivers seems to do something similar + +Signed-off-by: Karol Herbst +Cc: dri-devel +Cc: Dave Airlie +Cc: stable@vger.kernel.org +Signed-off-by: Dave Airlie +Link: https://patchwork.freedesktop.org/patch/msgid/20201006220528.13925-2-kherbst@redhat.com +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/gpu/drm/nouveau/nouveau_mem.c | 2 ++ + 1 file changed, 2 insertions(+) + +--- a/drivers/gpu/drm/nouveau/nouveau_mem.c ++++ b/drivers/gpu/drm/nouveau/nouveau_mem.c +@@ -176,6 +176,8 @@ void + nouveau_mem_del(struct ttm_mem_reg *reg) + { + struct nouveau_mem *mem = nouveau_mem(reg); ++ if (!mem) ++ return; + nouveau_mem_fini(mem); + kfree(reg->mm_node); + reg->mm_node = NULL; diff --git a/queue-4.19/net-wireless-nl80211-fix-out-of-bounds-access-in-nl80211_del_key.patch b/queue-4.19/net-wireless-nl80211-fix-out-of-bounds-access-in-nl80211_del_key.patch new file mode 100644 index 00000000000..4b7863cf39e --- /dev/null +++ b/queue-4.19/net-wireless-nl80211-fix-out-of-bounds-access-in-nl80211_del_key.patch @@ -0,0 +1,42 @@ +From 3dc289f8f139997f4e9d3cfccf8738f20d23e47b Mon Sep 17 00:00:00 2001 +From: Anant Thazhemadam +Date: Wed, 7 Oct 2020 09:24:01 +0530 +Subject: net: wireless: nl80211: fix out-of-bounds access in nl80211_del_key() + +From: Anant Thazhemadam + +commit 3dc289f8f139997f4e9d3cfccf8738f20d23e47b upstream. + +In nl80211_parse_key(), key.idx is first initialized as -1. +If this value of key.idx remains unmodified and gets returned, and +nl80211_key_allowed() also returns 0, then rdev_del_key() gets called +with key.idx = -1. +This causes an out-of-bounds array access. + +Handle this issue by checking if the value of key.idx after +nl80211_parse_key() is called and return -EINVAL if key.idx < 0. + +Cc: stable@vger.kernel.org +Reported-by: syzbot+b1bb342d1d097516cbda@syzkaller.appspotmail.com +Tested-by: syzbot+b1bb342d1d097516cbda@syzkaller.appspotmail.com +Signed-off-by: Anant Thazhemadam +Link: https://lore.kernel.org/r/20201007035401.9522-1-anant.thazhemadam@gmail.com +Signed-off-by: Johannes Berg +Signed-off-by: Greg Kroah-Hartman + +--- + net/wireless/nl80211.c | 3 +++ + 1 file changed, 3 insertions(+) + +--- a/net/wireless/nl80211.c ++++ b/net/wireless/nl80211.c +@@ -3621,6 +3621,9 @@ static int nl80211_del_key(struct sk_buf + if (err) + return err; + ++ if (key.idx < 0) ++ return -EINVAL; ++ + if (info->attrs[NL80211_ATTR_MAC]) + mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); + diff --git a/queue-4.19/series b/queue-4.19/series index 98cdea3c901..0d4da66e9c4 100644 --- a/queue-4.19/series +++ b/queue-4.19/series @@ -2,3 +2,6 @@ fbdev-newport_con-move-font_extra_words-macros-into-linux-font.h.patch fonts-support-font_extra_words-macros-for-built-in-fonts.patch fbcon-fix-global-out-of-bounds-read-in-fbcon_get_font.patch revert-ravb-fixed-to-be-able-to-unload-modules.patch +net-wireless-nl80211-fix-out-of-bounds-access-in-nl80211_del_key.patch +drm-nouveau-mem-guard-against-null-pointer-access-in-mem_del.patch +usermodehelper-reset-umask-to-default-before-executing-user-process.patch diff --git a/queue-4.19/usermodehelper-reset-umask-to-default-before-executing-user-process.patch b/queue-4.19/usermodehelper-reset-umask-to-default-before-executing-user-process.patch new file mode 100644 index 00000000000..7e4a25cc848 --- /dev/null +++ b/queue-4.19/usermodehelper-reset-umask-to-default-before-executing-user-process.patch @@ -0,0 +1,64 @@ +From 4013c1496c49615d90d36b9d513eee8e369778e9 Mon Sep 17 00:00:00 2001 +From: Linus Torvalds +Date: Mon, 5 Oct 2020 10:56:22 -0700 +Subject: usermodehelper: reset umask to default before executing user process + +From: Linus Torvalds + +commit 4013c1496c49615d90d36b9d513eee8e369778e9 upstream. + +Kernel threads intentionally do CLONE_FS in order to follow any changes +that 'init' does to set up the root directory (or cwd). + +It is admittedly a bit odd, but it avoids the situation where 'init' +does some extensive setup to initialize the system environment, and then +we execute a usermode helper program, and it uses the original FS setup +from boot time that may be very limited and incomplete. + +[ Both Al Viro and Eric Biederman point out that 'pivot_root()' will + follow the root regardless, since it fixes up other users of root (see + chroot_fs_refs() for details), but overmounting root and doing a + chroot() would not. ] + +However, Vegard Nossum noticed that the CLONE_FS not only means that we +follow the root and current working directories, it also means we share +umask with whatever init changed it to. That wasn't intentional. + +Just reset umask to the original default (0022) before actually starting +the usermode helper program. + +Reported-by: Vegard Nossum +Cc: Al Viro +Acked-by: Eric W. Biederman +Signed-off-by: Linus Torvalds +Signed-off-by: Greg Kroah-Hartman + +--- + kernel/umh.c | 9 +++++++++ + 1 file changed, 9 insertions(+) + +--- a/kernel/umh.c ++++ b/kernel/umh.c +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -73,6 +74,14 @@ static int call_usermodehelper_exec_asyn + spin_unlock_irq(¤t->sighand->siglock); + + /* ++ * Initial kernel threads share ther FS with init, in order to ++ * get the init root directory. But we've now created a new ++ * thread that is going to execve a user process and has its own ++ * 'struct fs_struct'. Reset umask to the default. ++ */ ++ current->fs->umask = 0022; ++ ++ /* + * Our parent (unbound workqueue) runs with elevated scheduling + * priority. Avoid propagating that into the userspace child. + */