diff options
author | Andrey Ryabinin <a.ryabinin@samsung.com> | 2014-06-06 11:09:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 11:53:41 -0400 |
commit | 624483f3ea82598ab0f62f1bdb9177f531ab1892 (patch) | |
tree | db14accead23e539ddbb9ff5eb9994179c69e6b8 /mm/rmap.c | |
parent | 951e273060d15b233a7f7ccaf76ba682b5b05a03 (diff) |
mm: rmap: fix use-after-free in __put_anon_vma
While working address sanitizer for kernel I've discovered
use-after-free bug in __put_anon_vma.
For the last anon_vma, anon_vma->root freed before child anon_vma.
Later in anon_vma_free(anon_vma) we are referencing to already freed
anon_vma->root to check rwsem.
This fixes it by freeing the child anon_vma before freeing
anon_vma->root.
Signed-off-by: Andrey Ryabinin <a.ryabinin@samsung.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: <stable@vger.kernel.org> # v3.0+
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/rmap.c')
-rw-r--r-- | mm/rmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1564,10 +1564,9 @@ void __put_anon_vma(struct anon_vma *anon_vma) | |||
1564 | { | 1564 | { |
1565 | struct anon_vma *root = anon_vma->root; | 1565 | struct anon_vma *root = anon_vma->root; |
1566 | 1566 | ||
1567 | anon_vma_free(anon_vma); | ||
1567 | if (root != anon_vma && atomic_dec_and_test(&root->refcount)) | 1568 | if (root != anon_vma && atomic_dec_and_test(&root->refcount)) |
1568 | anon_vma_free(root); | 1569 | anon_vma_free(root); |
1569 | |||
1570 | anon_vma_free(anon_vma); | ||
1571 | } | 1570 | } |
1572 | 1571 | ||
1573 | static struct anon_vma *rmap_walk_anon_lock(struct page *page, | 1572 | static struct anon_vma *rmap_walk_anon_lock(struct page *page, |