From: Ingo Molnar <mingo@elte.hu>
To: Vegard Nossum <vegard.nossum@gmail.com>, stable@kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
Nick Piggin <npiggin@suse.de>,
Pekka Enberg <penberg@cs.helsinki.fi>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm: fix lazy vmap purging (use-after-free error)
Date: Fri, 20 Feb 2009 14:50:00 +0100 [thread overview]
Message-ID: <20090220135000.GA9616@elte.hu> (raw)
In-Reply-To: <20090220134121.GA19575@damson.getinternet.no>
* Vegard Nossum <vegard.nossum@gmail.com> wrote:
> >From f90fae887ed82bc9369e9f95960e175fef3e5d97 Mon Sep 17 00:00:00 2001
> From: Vegard Nossum <vegard.nossum@gmail.com>
> Date: Fri, 20 Feb 2009 14:35:09 +0100
> Subject: [PATCH] mm: fix lazy vmap purging (use-after-free error)
>
> I just got this new warning from kmemcheck:
>
> WARNING: kmemcheck: Caught 32-bit read from freed memory (c7806a60)
> a06a80c7ecde70c1a04080c700000000a06709c1000000000000000000000000
> f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f
> ^
>
> Pid: 0, comm: swapper Not tainted (2.6.29-rc4 #230)
> EIP: 0060:[<c1096df7>] EFLAGS: 00000286 CPU: 0
> EIP is at __purge_vmap_area_lazy+0x117/0x140
> EAX: 00070f43 EBX: c7806a40 ECX: c1677080 EDX: 00027b66
> ESI: 00002001 EDI: c170df0c EBP: c170df00 ESP: c178830c
> DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
> CR0: 80050033 CR2: c7806b14 CR3: 01775000 CR4: 00000690
> DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> DR6: 00004000 DR7: 00000000
> [<c1096f3e>] free_unmap_vmap_area_noflush+0x6e/0x70
> [<c1096f6a>] remove_vm_area+0x2a/0x70
> [<c1097025>] __vunmap+0x45/0xe0
> [<c10970de>] vunmap+0x1e/0x30
> [<c1008ba5>] text_poke+0x95/0x150
> [<c1008ca9>] alternatives_smp_unlock+0x49/0x60
> [<c171ef47>] alternative_instructions+0x11b/0x124
> [<c171f991>] check_bugs+0xbd/0xdc
> [<c17148c5>] start_kernel+0x2ed/0x360
> [<c171409e>] __init_begin+0x9e/0xa9
> [<ffffffff>] 0xffffffff
>
> It happened here:
>
> $ addr2line -e vmlinux -i c1096df7
> mm/vmalloc.c:540
>
> Code:
>
> list_for_each_entry(va, &valist, purge_list)
> __free_vmap_area(va);
>
> It's this instruction:
>
> mov 0x20(%ebx),%edx
>
> Which corresponds to a dereference of va->purge_list.next:
>
> (gdb) p ((struct vmap_area *) 0)->purge_list.next
> Cannot access memory at address 0x20
>
> It seems that we should use "safe" list traversal here, as the element
> is freed inside the loop. Please verify that this is the right fix.
>
> Cc: Nick Piggin <npiggin@suse.de>
> Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
> ---
> mm/vmalloc.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/mm/vmalloc.c b/mm/vmalloc.c
> index 75f49d3..cda20b2 100644
> --- a/mm/vmalloc.c
> +++ b/mm/vmalloc.c
> @@ -498,6 +498,7 @@ static void __purge_vmap_area_lazy(unsigned long *start, unsigned long *end,
> static DEFINE_SPINLOCK(purge_lock);
> LIST_HEAD(valist);
> struct vmap_area *va;
> + struct vmap_area *n_va;
> int nr = 0;
>
> /*
> @@ -537,7 +538,7 @@ static void __purge_vmap_area_lazy(unsigned long *start, unsigned long *end,
>
> if (nr) {
> spin_lock(&vmap_area_lock);
> - list_for_each_entry(va, &valist, purge_list)
> + list_for_each_entry_safe(va, n_va, &valist, purge_list)
> __free_vmap_area(va);
> spin_unlock(&vmap_area_lock);
ah, indeed:
list_del_rcu(&va->list);
i suspect it could be hit big time in a workload that opens more
than 512 files, as expand_files() uses a vmalloc()+vfree() pair
in that case.
Nice catch! .29 must-have. The bug was introduced in
v2.6.27-5616-gdb64fe0:
db64fe0: mm: rewrite vmap layer
So 2.6.28 is affected too.
Acked-by: Ingo Molnar <mingo@elte.hu>
Ingo
next prev parent reply other threads:[~2009-02-20 13:50 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-20 13:41 Vegard Nossum
2009-02-20 13:50 ` Ingo Molnar [this message]
2009-02-20 13:58 ` Pekka Enberg
2009-02-20 14:01 ` Ingo Molnar
2009-02-20 14:18 ` Pekka Enberg
2009-02-20 15:41 ` Paul E. McKenney
2009-02-20 14:51 ` Vegard Nossum
2009-02-20 15:46 ` Paul E. McKenney
2009-02-20 16:04 ` Ingo Molnar
2009-02-20 16:44 ` Paul E. McKenney
2009-02-20 17:14 ` Ingo Molnar
2009-02-20 17:25 ` Paul E. McKenney
2009-02-20 23:51 ` Vegard Nossum
2009-02-21 1:40 ` Paul E. McKenney
2009-02-21 9:30 ` Vegard Nossum
2009-02-21 17:47 ` Paul E. McKenney
2009-02-21 18:08 ` Vegard Nossum
2009-02-21 18:33 ` Paul E. McKenney
2009-02-21 18:37 ` Vegard Nossum
2009-02-22 3:00 ` Paul E. McKenney
2009-02-23 5:17 ` Paul E. McKenney
2009-02-23 8:24 ` Vegard Nossum
2009-02-23 15:39 ` Paul E. McKenney
2009-02-23 9:07 ` Ingo Molnar
2009-02-23 9:17 ` Andrew Morton
2009-02-23 9:27 ` Ingo Molnar
2009-02-23 15:56 ` Paul E. McKenney
2009-02-23 13:29 ` Nick Piggin
2009-02-23 16:17 ` Paul E. McKenney
2009-02-23 17:20 ` Ingo Molnar
2009-02-23 19:10 ` Andrew Morton
2009-02-23 19:30 ` Paul E. McKenney
2009-02-23 19:59 ` Andrew Morton
2009-02-23 20:12 ` Paul E. McKenney
2009-02-23 20:30 ` Andrew Morton
2009-02-23 19:33 ` Ingo Molnar
2009-02-23 20:04 ` Andrew Morton
2009-02-23 20:09 ` Ingo Molnar
2009-02-23 20:44 ` Paul E. McKenney
2009-02-23 20:43 ` Paul E. McKenney
2009-02-24 3:23 ` Nick Piggin
2009-02-24 3:37 ` Paul E. McKenney
2009-02-21 19:21 ` Vegard Nossum
2009-02-20 16:01 ` Ingo Molnar
2009-02-20 16:49 ` Paul E. McKenney
2009-02-20 15:56 ` Paul E. McKenney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090220135000.GA9616@elte.hu \
--to=mingo@elte.hu \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=npiggin@suse.de \
--cc=penberg@cs.helsinki.fi \
--cc=stable@kernel.org \
--cc=vegard.nossum@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome