summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-intel/CVE-2018-14609.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-intel/CVE-2018-14609.patch')
-rw-r--r--recipes-kernel/linux/linux-intel/CVE-2018-14609.patch71
1 files changed, 71 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-intel/CVE-2018-14609.patch b/recipes-kernel/linux/linux-intel/CVE-2018-14609.patch
new file mode 100644
index 0000000..96d8a4e
--- /dev/null
+++ b/recipes-kernel/linux/linux-intel/CVE-2018-14609.patch
@@ -0,0 +1,71 @@
1From 0cdbc3faf960de16ebe8a427feb3b0544ad983cc Mon Sep 17 00:00:00 2001
2From: Qu Wenruo <wqu@suse.com>
3Date: Tue, 3 Jul 2018 17:10:07 +0800
4Subject: [PATCH] btrfs: relocation: Only remove reloc rb_trees if reloc
5 control has been initialized
6
7[ Upstream commit 389305b2aa68723c754f88d9dbd268a400e10664 ]
8
9Invalid reloc tree can cause kernel NULL pointer dereference when btrfs
10does some cleanup of the reloc roots.
11
12It turns out that fs_info::reloc_ctl can be NULL in
13btrfs_recover_relocation() as we allocate relocation control after all
14reloc roots have been verified.
15So when we hit: note, we haven't called set_reloc_control() thus
16fs_info::reloc_ctl is still NULL.
17
18CVE: CVE-2018-14609
19Upstream-Status: Backport
20
21Link: https://bugzilla.kernel.org/show_bug.cgi?id=199833
22Reported-by: Xu Wen <wen.xu@gatech.edu>
23Signed-off-by: Qu Wenruo <wqu@suse.com>
24Tested-by: Gu Jinxiang <gujx@cn.fujitsu.com>
25Reviewed-by: David Sterba <dsterba@suse.com>
26Signed-off-by: David Sterba <dsterba@suse.com>
27Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
28Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
29Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
30---
31 fs/btrfs/relocation.c | 23 ++++++++++++-----------
32 1 file changed, 12 insertions(+), 11 deletions(-)
33
34diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
35index 9841fae..b80b03e 100644
36--- a/fs/btrfs/relocation.c
37+++ b/fs/btrfs/relocation.c
38@@ -1334,18 +1334,19 @@ static void __del_reloc_root(struct btrfs_root *root)
39 struct mapping_node *node = NULL;
40 struct reloc_control *rc = fs_info->reloc_ctl;
41
42- spin_lock(&rc->reloc_root_tree.lock);
43- rb_node = tree_search(&rc->reloc_root_tree.rb_root,
44- root->node->start);
45- if (rb_node) {
46- node = rb_entry(rb_node, struct mapping_node, rb_node);
47- rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
48+ if (rc) {
49+ spin_lock(&rc->reloc_root_tree.lock);
50+ rb_node = tree_search(&rc->reloc_root_tree.rb_root,
51+ root->node->start);
52+ if (rb_node) {
53+ node = rb_entry(rb_node, struct mapping_node, rb_node);
54+ rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
55+ }
56+ spin_unlock(&rc->reloc_root_tree.lock);
57+ if (!node)
58+ return;
59+ BUG_ON((struct btrfs_root *)node->data != root);
60 }
61- spin_unlock(&rc->reloc_root_tree.lock);
62-
63- if (!node)
64- return;
65- BUG_ON((struct btrfs_root *)node->data != root);
66
67 spin_lock(&fs_info->trans_lock);
68 list_del_init(&root->root_list);
69--
701.9.1
71