]> git.baikalelectronics.ru Git - kernel.git/commit
mm: rmap: fix use-after-free in __put_anon_vma
authorAndrey Ryabinin <a.ryabinin@samsung.com>
Fri, 6 Jun 2014 15:09:30 +0000 (19:09 +0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 6 Jun 2014 15:53:41 +0000 (08:53 -0700)
commit07af3c66ab53d53d858ff2a67d15c4925c85cd43
treedb14accead23e539ddbb9ff5eb9994179c69e6b8
parent33e36d6c12d1b56df97e849e97747c28ae192b28
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>
mm/rmap.c