netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
@ 2009-07-30 14:10 Julia Lawall
  2009-07-30 14:32 ` Paul Moore
  0 siblings, 1 reply; 7+ messages in thread
From: Julia Lawall @ 2009-07-30 14:10 UTC (permalink / raw)
  To: paul.moore, netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

The test on map4 should be a test on map6.

The semantic match that finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression *x;
identifier f;
constant char *C;
@@

x = \(kmalloc\|kcalloc\|kzalloc\)(...);
... when != x == NULL
    when != x != NULL
    when != (x || ...)
(
kfree(x)
|
f(...,C,...,x,...)
|
*f(...,x,...)
|
*x->f
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>

---
 net/netlabel/netlabel_kapi.c        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
index 3ff6f32..6ce0020 100644
--- a/net/netlabel/netlabel_kapi.c
+++ b/net/netlabel/netlabel_kapi.c
@@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
 			addr6 = addr;
 			mask6 = mask;
 			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
-			if (map4 == NULL)
+			if (!map6)
 				goto cfg_unlbl_map_add_failure;
 			map6->type = NETLBL_NLTYPE_UNLABELED;
 			ipv6_addr_copy(&map6->list.addr, addr6);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:10 [PATCH 4/5] net/netlabel: Add kmalloc NULL tests Julia Lawall
@ 2009-07-30 14:32 ` Paul Moore
  2009-07-30 14:36   ` Julia Lawall
  2009-07-30 14:38   ` Julia Lawall
  0 siblings, 2 replies; 7+ messages in thread
From: Paul Moore @ 2009-07-30 14:32 UTC (permalink / raw)
  To: Julia Lawall; +Cc: netdev, linux-kernel, kernel-janitors

On Thursday 30 July 2009 10:10:54 am Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
>
> The test on map4 should be a test on map6.

...

> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
>  net/netlabel/netlabel_kapi.c        |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
> index 3ff6f32..6ce0020 100644
> --- a/net/netlabel/netlabel_kapi.c
> +++ b/net/netlabel/netlabel_kapi.c
> @@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
>  			addr6 = addr;
>  			mask6 = mask;
>  			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
> -			if (map4 == NULL)
> +			if (!map6)
>  				goto cfg_unlbl_map_add_failure;
>  			map6->type = NETLBL_NLTYPE_UNLABELED;
>  			ipv6_addr_copy(&map6->list.addr, addr6);

Another good find, although I would suggest changing it to the following to 
stay consistent with the rest of the function:

		map6 = kzalloc(...);
		if (map6 == NULL)
			goto ...;

-- 
paul moore
linux @ hp

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:32 ` Paul Moore
@ 2009-07-30 14:36   ` Julia Lawall
  2009-07-30 14:37     ` Paul Moore
  2009-07-30 14:38   ` Julia Lawall
  1 sibling, 1 reply; 7+ messages in thread
From: Julia Lawall @ 2009-07-30 14:36 UTC (permalink / raw)
  To: Paul Moore; +Cc: netdev, linux-kernel, kernel-janitors

On Thu, 30 Jul 2009, Paul Moore wrote:

> On Thursday 30 July 2009 10:10:54 am Julia Lawall wrote:
> > From: Julia Lawall <julia@diku.dk>
> >
> > The test on map4 should be a test on map6.
> 
> ...
> 
> > Signed-off-by: Julia Lawall <julia@diku.dk>
> >
> > ---
> >  net/netlabel/netlabel_kapi.c        |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
> > index 3ff6f32..6ce0020 100644
> > --- a/net/netlabel/netlabel_kapi.c
> > +++ b/net/netlabel/netlabel_kapi.c
> > @@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
> >  			addr6 = addr;
> >  			mask6 = mask;
> >  			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
> > -			if (map4 == NULL)
> > +			if (!map6)
> >  				goto cfg_unlbl_map_add_failure;
> >  			map6->type = NETLBL_NLTYPE_UNLABELED;
> >  			ipv6_addr_copy(&map6->list.addr, addr6);
> 
> Another good find, although I would suggest changing it to the following to 
> stay consistent with the rest of the function:
> 
> 		map6 = kzalloc(...);
> 		if (map6 == NULL)
> 			goto ...;

OK, I hesitated...  I'll send a new patch shortly.

julia

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:36   ` Julia Lawall
@ 2009-07-30 14:37     ` Paul Moore
  0 siblings, 0 replies; 7+ messages in thread
From: Paul Moore @ 2009-07-30 14:37 UTC (permalink / raw)
  To: Julia Lawall; +Cc: netdev, linux-kernel, kernel-janitors

On Thursday 30 July 2009 10:36:47 am Julia Lawall wrote:
> On Thu, 30 Jul 2009, Paul Moore wrote:
> > On Thursday 30 July 2009 10:10:54 am Julia Lawall wrote:
> > > From: Julia Lawall <julia@diku.dk>
> > >
> > > The test on map4 should be a test on map6.
> >
> > ...
> >
> > > Signed-off-by: Julia Lawall <julia@diku.dk>
> > >
> > > ---
> > >  net/netlabel/netlabel_kapi.c        |    2 +-
> > >  1 files changed, 1 insertions(+), 1 deletions(-)
> > >
> > > diff --git a/net/netlabel/netlabel_kapi.c
> > > b/net/netlabel/netlabel_kapi.c index 3ff6f32..6ce0020 100644
> > > --- a/net/netlabel/netlabel_kapi.c
> > > +++ b/net/netlabel/netlabel_kapi.c
> > > @@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
> > >  			addr6 = addr;
> > >  			mask6 = mask;
> > >  			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
> > > -			if (map4 == NULL)
> > > +			if (!map6)
> > >  				goto cfg_unlbl_map_add_failure;
> > >  			map6->type = NETLBL_NLTYPE_UNLABELED;
> > >  			ipv6_addr_copy(&map6->list.addr, addr6);
> >
> > Another good find, although I would suggest changing it to the following
> > to stay consistent with the rest of the function:
> >
> > 		map6 = kzalloc(...);
> > 		if (map6 == NULL)
> > 			goto ...;
>
> OK, I hesitated...  I'll send a new patch shortly.

Great, thank you.

-- 
paul moore
linux @ hp

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:32 ` Paul Moore
  2009-07-30 14:36   ` Julia Lawall
@ 2009-07-30 14:38   ` Julia Lawall
  2009-07-30 14:53     ` Paul Moore
  1 sibling, 1 reply; 7+ messages in thread
From: Julia Lawall @ 2009-07-30 14:38 UTC (permalink / raw)
  To: Paul Moore; +Cc: netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

The test on map4 should be a test on map6.

The semantic match that finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression *x;
identifier f;
constant char *C;
@@

x = \(kmalloc\|kcalloc\|kzalloc\)(...);
... when != x == NULL
    when != x != NULL
    when != (x || ...)
(
kfree(x)
|
f(...,C,...,x,...)
|
*f(...,x,...)
|
*x->f
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>

---
 net/netlabel/netlabel_kapi.c        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
index 3ff6f32..6ce0020 100644
--- a/net/netlabel/netlabel_kapi.c
+++ b/net/netlabel/netlabel_kapi.c
@@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
 			addr6 = addr;
 			mask6 = mask;
 			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
-			if (map4 == NULL)
+			if (map6 == NULL)
 				goto cfg_unlbl_map_add_failure;
 			map6->type = NETLBL_NLTYPE_UNLABELED;
 			ipv6_addr_copy(&map6->list.addr, addr6);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:38   ` Julia Lawall
@ 2009-07-30 14:53     ` Paul Moore
  2009-07-30 17:59       ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Paul Moore @ 2009-07-30 14:53 UTC (permalink / raw)
  To: Julia Lawall; +Cc: netdev, linux-kernel, kernel-janitors

On Thursday 30 July 2009 10:38:19 am Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
>
> The test on map4 should be a test on map6.
>
> The semantic match that finds this problem is as follows:
> (http://www.emn.fr/x-info/coccinelle/)
>
> // <smpl>
> @@
> expression *x;
> identifier f;
> constant char *C;
> @@
>
> x = \(kmalloc\|kcalloc\|kzalloc\)(...);
> ... when != x == NULL
>     when != x != NULL
>     when != (x || ...)
> (
> kfree(x)
>
> f(...,C,...,x,...)
>
> *f(...,x,...)
>
> *x->f
> )
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>

Much better, thank you.

Acked-by: Paul Moore <paul.moore@hp.com>

> ---
>  net/netlabel/netlabel_kapi.c        |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
> index 3ff6f32..6ce0020 100644
> --- a/net/netlabel/netlabel_kapi.c
> +++ b/net/netlabel/netlabel_kapi.c
> @@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain,
>  			addr6 = addr;
>  			mask6 = mask;
>  			map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
> -			if (map4 == NULL)
> +			if (map6 == NULL)
>  				goto cfg_unlbl_map_add_failure;
>  			map6->type = NETLBL_NLTYPE_UNLABELED;
>  			ipv6_addr_copy(&map6->list.addr, addr6);

-- 
paul moore
linux @ hp

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests
  2009-07-30 14:53     ` Paul Moore
@ 2009-07-30 17:59       ` David Miller
  0 siblings, 0 replies; 7+ messages in thread
From: David Miller @ 2009-07-30 17:59 UTC (permalink / raw)
  To: paul.moore; +Cc: julia, netdev, linux-kernel, kernel-janitors

From: Paul Moore <paul.moore@hp.com>
Date: Thu, 30 Jul 2009 10:53:37 -0400

> On Thursday 30 July 2009 10:38:19 am Julia Lawall wrote:
>> From: Julia Lawall <julia@diku.dk>
>>
>> The test on map4 should be a test on map6.
>>
>> The semantic match that finds this problem is as follows:
>> (http://www.emn.fr/x-info/coccinelle/)
 ...
>> Signed-off-by: Julia Lawall <julia@diku.dk>
> 
> Much better, thank you.
> 
> Acked-by: Paul Moore <paul.moore@hp.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-07-30 17:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-30 14:10 [PATCH 4/5] net/netlabel: Add kmalloc NULL tests Julia Lawall
2009-07-30 14:32 ` Paul Moore
2009-07-30 14:36   ` Julia Lawall
2009-07-30 14:37     ` Paul Moore
2009-07-30 14:38   ` Julia Lawall
2009-07-30 14:53     ` Paul Moore
2009-07-30 17:59       ` David Miller

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).