* [PATCH] race condition between __purge_vmap_area_lazy() and free_unmap_vmap_area_noflush()
@ 2010-04-08 6:36 Zhao, Leifu
2010-04-08 6:49 ` Minchan Kim
0 siblings, 1 reply; 2+ messages in thread
From: Zhao, Leifu @ 2010-04-08 6:36 UTC (permalink / raw)
To: linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org,
torvalds@linux-foundation.org
Hi all,
I found a bug in 2.6.28 kernel and got the fix for it, see below bug description, log information and the patch. As I know this bug still exists in at least 2.6.32 kernel. I am new in the kernel development process, can someone tell me what should proceed next?
Bug description:
There is race condition between function __purge_vmap_area_lazy() and free_unmap_vmap_area_noflush() in vmalloc.c of kernel. In function free_unmap_vmap_area_noflush(), if va->flags is updated and then is preempted to run __purge_vmap_area_lazy() before updating vmap_lazy_nr, then vmap_lazy_nr used in function __purge_vmap_area_lazy() has incorrect value, therefore cause the crash(due to run BUG_ON function). So the updating va->flags and vmap_lazy_nr must execute atomicly, the solution is to use spinlock to protect updating va->flags and vmap_lazy_nr.
Captured log information:
kernel BUG at mm/vmalloc.c:507!
invalid opcode: 0000 [#1] PREEMPT
last sysfs file: /sys/class/sound/controlC0/dev
Modules linked in: avcap_nxp(P) avcap_synthetic(P) avcap_core(P) pvrsrvkm
alsa_shim(P) snd_usb_audio ]
Pid: 1022, comm: Audio_Timing Tainted: P (2.6.28 #1)
EIP: 0060:[<c01537d5>] EFLAGS: 00010297 CPU: 0
EIP is at __purge_vmap_area_lazy+0x1b1/0x1b5
EAX: c4e1e000 EBX: c04e0cec ECX: c4e1fc9c EDX: c04e0d04
ESI: 000001e2 EDI: c4e1fcc4 EBP: c4e1fcc0 ESP: c4e1fc98
Patch:
--- linux-2.6.28/mm/vmalloc.c.orig 2010-04-10 14:16:47.000000000 +0800
+++ linux-2.6.28/mm/vmalloc.c 2010-04-10 14:19:03.000000000 +0800
@@ -467,6 +467,7 @@ static unsigned long lazy_max_pages(void
static atomic_t vmap_lazy_nr = ATOMIC_INIT(0);
+static DEFINE_SPINLOCK(purge_lock);
/*
* Purges all lazily-freed vmap areas.
*
@@ -480,7 +481,6 @@ static atomic_t vmap_lazy_nr = ATOMIC_IN
static void __purge_vmap_area_lazy(unsigned long *start, unsigned long *end,
int sync, int force_flush)
{
- static DEFINE_SPINLOCK(purge_lock);
LIST_HEAD(valist);
struct vmap_area *va;
int nr = 0;
@@ -556,8 +556,10 @@ static void purge_vmap_area_lazy(void)
*/
static void free_unmap_vmap_area_noflush(struct vmap_area *va)
{
+ spin_lock(&purge_lock);
va->flags |= VM_LAZY_FREE;
atomic_add((va->va_end - va->va_start) >> PAGE_SHIFT, &vmap_lazy_nr);
+ spin_unlock(&purge_lock);
if (unlikely(atomic_read(&vmap_lazy_nr) > lazy_max_pages()))
try_purge_vmap_area_lazy();
}
Signed-off-by: Leifu Zhao <Leifu.zhao@intel.com>
Best regards,
Leifu Zhao
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] race condition between __purge_vmap_area_lazy() and free_unmap_vmap_area_noflush()
2010-04-08 6:36 [PATCH] race condition between __purge_vmap_area_lazy() and free_unmap_vmap_area_noflush() Zhao, Leifu
@ 2010-04-08 6:49 ` Minchan Kim
0 siblings, 0 replies; 2+ messages in thread
From: Minchan Kim @ 2010-04-08 6:49 UTC (permalink / raw)
To: Zhao, Leifu
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
akpm@linux-foundation.org, torvalds@linux-foundation.org
On Thu, Apr 8, 2010 at 3:36 PM, Zhao, Leifu <leifu.zhao@intel.com> wrote:
> Hi all,
>
> I found a bug in 2.6.28 kernel and got the fix for it, see below bug description, log information and the patch. As I know this bug still exists in at least 2.6.32 kernel. I am new in the kernel development process, can someone tell me what should proceed next?
>
Good catch!.
But it was already fixed.
https://patchwork.kernel.org/patch/89783/
Thanks.
--
Kind regards,
Minchan Kim
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-04-08 6:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-08 6:36 [PATCH] race condition between __purge_vmap_area_lazy() and free_unmap_vmap_area_noflush() Zhao, Leifu
2010-04-08 6:49 ` Minchan Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).