From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Jeons Subject: Re: FIX [1/2] slub: Do not dereference NULL pointer in node_match Date: Wed, 23 Jan 2013 18:53:44 -0600 Message-ID: <1358988824.3351.5.camel@kernel> References: <20130123214514.370647954@linux.com> <0000013c695fbd30-9023bc55-f780-4d44-965f-ab4507e483d5-000000@email.amazonses.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Pekka Enberg , Steven Rostedt , Thomas Gleixner , RT , Clark Williams , John Kacur , "Luis Claudio R. Goncalves" , Joonsoo Kim , Glauber Costa , linux-mm@kvack.org, David Rientjes , elezegarcia@gmail.com To: Christoph Lameter Return-path: Received: from mail-pa0-f42.google.com ([209.85.220.42]:33304 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752735Ab3AXAxv (ORCPT ); Wed, 23 Jan 2013 19:53:51 -0500 Received: by mail-pa0-f42.google.com with SMTP id rl6so5159999pac.29 for ; Wed, 23 Jan 2013 16:53:51 -0800 (PST) In-Reply-To: <0000013c695fbd30-9023bc55-f780-4d44-965f-ab4507e483d5-000000@email.amazonses.com> Sender: linux-rt-users-owner@vger.kernel.org List-ID: On Wed, 2013-01-23 at 21:45 +0000, Christoph Lameter wrote: > The variables accessed in slab_alloc are volatile and therefore > the page pointer passed to node_match can be NULL. The processing > of data in slab_alloc is tentative until either the cmpxhchg > succeeds or the __slab_alloc slowpath is invoked. Both are > able to perform the same allocation from the freelist. > > Check for the NULL pointer in node_match. > > A false positive will lead to a retry of the loop in __slab_alloc. Hi Christoph, Since page_to_nid(NULL) will trigger bug, then how can run into __slab_alloc? > > Signed-off-by: Christoph Lameter > > Index: linux/mm/slub.c > =================================================================== > --- linux.orig/mm/slub.c 2013-01-18 08:47:29.198954250 -0600 > +++ linux/mm/slub.c 2013-01-18 08:47:40.579126371 -0600 > @@ -2041,7 +2041,7 @@ static void flush_all(struct kmem_cache > static inline int node_match(struct page *page, int node) > { > #ifdef CONFIG_NUMA > - if (node != NUMA_NO_NODE && page_to_nid(page) != node) > + if (!page || (node != NUMA_NO_NODE && page_to_nid(page) != node)) > return 0; > #endif > return 1; > > -- > 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: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx119.postini.com [74.125.245.119]) by kanga.kvack.org (Postfix) with SMTP id 04F736B0002 for ; Wed, 23 Jan 2013 19:53:51 -0500 (EST) Received: by mail-pb0-f48.google.com with SMTP id wy12so3680615pbc.21 for ; Wed, 23 Jan 2013 16:53:51 -0800 (PST) Message-ID: <1358988824.3351.5.camel@kernel> Subject: Re: FIX [1/2] slub: Do not dereference NULL pointer in node_match From: Simon Jeons Date: Wed, 23 Jan 2013 18:53:44 -0600 In-Reply-To: <0000013c695fbd30-9023bc55-f780-4d44-965f-ab4507e483d5-000000@email.amazonses.com> References: <20130123214514.370647954@linux.com> <0000013c695fbd30-9023bc55-f780-4d44-965f-ab4507e483d5-000000@email.amazonses.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Christoph Lameter Cc: Pekka Enberg , Steven Rostedt , Thomas Gleixner , RT , Clark Williams , John Kacur , "Luis Claudio R. Goncalves" , Joonsoo Kim , Glauber Costa , linux-mm@kvack.org, David Rientjes , elezegarcia@gmail.com On Wed, 2013-01-23 at 21:45 +0000, Christoph Lameter wrote: > The variables accessed in slab_alloc are volatile and therefore > the page pointer passed to node_match can be NULL. The processing > of data in slab_alloc is tentative until either the cmpxhchg > succeeds or the __slab_alloc slowpath is invoked. Both are > able to perform the same allocation from the freelist. > > Check for the NULL pointer in node_match. > > A false positive will lead to a retry of the loop in __slab_alloc. Hi Christoph, Since page_to_nid(NULL) will trigger bug, then how can run into __slab_alloc? > > Signed-off-by: Christoph Lameter > > Index: linux/mm/slub.c > =================================================================== > --- linux.orig/mm/slub.c 2013-01-18 08:47:29.198954250 -0600 > +++ linux/mm/slub.c 2013-01-18 08:47:40.579126371 -0600 > @@ -2041,7 +2041,7 @@ static void flush_all(struct kmem_cache > static inline int node_match(struct page *page, int node) > { > #ifdef CONFIG_NUMA > - if (node != NUMA_NO_NODE && page_to_nid(page) != node) > + if (!page || (node != NUMA_NO_NODE && page_to_nid(page) != node)) > return 0; > #endif > return 1; > > -- > 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: email@kvack.org -- 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: email@kvack.org