mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Stefan Richter <stefanr@s5r6.in-berlin.de>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>,
	Manfred Spraul <manfred@colorfullife.com>,
	krh@redhat.com, dcm@acm.org, Nadia.Derbey@bull.net,
	linux1394-devel@lists.sourceforge.net,
	linux-kernel@vger.kernel.org, paulmck@us.ibm.com,
	stable@kernel.org
Subject: Re: [PATCH] lib/idr.c: Zero memory properly in idr_remove_all
Date: Wed, 14 Jan 2009 09:59:07 +0100	[thread overview]
Message-ID: <496DA95B.6070401@s5r6.in-berlin.de> (raw)
In-Reply-To: <20090114001745.9575ab02.akpm@linux-foundation.org>

Andrew Morton wrote:
> This problem was introduced by
> 
> commit cf481c20c476ad2c0febdace9ce23f5a4db19582
...
> which was first released in 2.6.27.
> 
> There are no known codesites which trigger this bug in 2.6.27 or 2.6.28. 
> The post-2.6.28 firewire changes are the only known triggerer.

(They became post-2.6.29 changes since I missed my chance by two days or
so.)

> There might of course be not-yet-discovered triggerers in 2.6.27 and
> 2.6.28, and there might be out-of-tree triggerers which are added to those
> kernel versions.  I'll let the -stable guys decide whether they want to
> backport this fix.

I vote for the cf481c20c breakage be fixed in 2.6.27.y and 2.6.28.y.
Either by your patch or by something equivalent.

*Every* call to idr_remove_all() will add unclean idr_layers to the
pool.  There may be more actual occurrences of this than what was found
so far because
  - the results may be kernel panics without traces, or with traces that
    don't point to an idr problem so clearly,
  - one or another kernel debugging build option prevents this bug from
    happening.  A kernel developer who does most of his tests with debug
    options enabled won't notice.

...
> diff -puN lib/idr.c~lib-idrc-use-kmem_cache_zalloc-for-the-idr_layer-cache lib/idr.c
> --- a/lib/idr.c~lib-idrc-use-kmem_cache_zalloc-for-the-idr_layer-cache
> +++ a/lib/idr.c
> @@ -121,7 +121,7 @@ int idr_pre_get(struct idr *idp, gfp_t g
>  {
>  	while (idp->id_free_cnt < IDR_FREE_MAX) {
>  		struct idr_layer *new;
> -		new = kmem_cache_alloc(idr_layer_cache, gfp_mask);
> +		new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
>  		if (new == NULL)
>  			return (0);
>  		move_to_free_list(idp, new);
...

I wonder if it would be more robust --- or even necessary --- to instead
add proper initialization code to get_from_free_list().

As far as David and I tested the new idr using code in firewire, we
called idr_remove_all() *and* idr_destroy() before any subsequent
idr_get_new().  But in practice, idr_get_new() may of course also happen
between idr_remove_all() and idr_destroy().

And then this fix won't be sufficient, would it?
-- 
Stefan Richter
-=====-==--= ---= -===-
http://arcgraph.de/sr/

  reply	other threads:[~2009-01-14  9:00 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-10  7:04 David Moore
2009-01-10  9:03 ` Stefan Richter
2009-01-10  9:15   ` Andrew Morton
2009-01-10 10:05     ` Stefan Richter
2009-01-12 15:20       ` Kristian Høgsberg
2009-01-12 19:53         ` Manfred Spraul
2009-01-12 20:38           ` Kristian Høgsberg
2009-01-12 20:50             ` Manfred Spraul
2009-01-13 22:48               ` Andrew Morton
2009-01-14  2:51                 ` David Moore
2009-01-14  7:19                 ` Pekka Enberg
2009-01-14  8:17                   ` Andrew Morton
2009-01-14  8:59                     ` Stefan Richter [this message]
2009-01-14  9:22                       ` Andrew Morton
2009-01-14  9:48                         ` Stefan Richter
2009-01-14  9:52                           ` Stefan Richter
2009-01-14  9:02                     ` Pekka Enberg
2009-01-14 14:23                 ` Kristian Høgsberg
2009-01-14 16:21                   ` Stefan Richter
2009-01-14 16:33                     ` Kristian Høgsberg
2009-01-14 18:05                       ` Stefan Richter

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=496DA95B.6070401@s5r6.in-berlin.de \
    --to=stefanr@s5r6.in-berlin.de \
    --cc=Nadia.Derbey@bull.net \
    --cc=akpm@linux-foundation.org \
    --cc=dcm@acm.org \
    --cc=krh@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux1394-devel@lists.sourceforge.net \
    --cc=manfred@colorfullife.com \
    --cc=paulmck@us.ibm.com \
    --cc=penberg@cs.helsinki.fi \
    --cc=stable@kernel.org \
    /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