public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jens Axboe <axboe@suse.de>
To: Thomas Petazzoni <thomas.petazzoni@enix.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Use of spinlock after free with CFQ scheduler
Date: Wed, 14 Jun 2006 07:19:17 +0200	[thread overview]
Message-ID: <20060614051917.GF4420@suse.de> (raw)
In-Reply-To: <20060613173733.618192bf@thomas.toulouse>

On Tue, Jun 13 2006, Thomas Petazzoni wrote:
> Hi,
> 
> While developing a block device driver, we stumbled upon the kernel
> panic reported at
> http://www.ussg.iu.edu/hypermail/linux/kernel/0512.3/0297.html.
> According to the mail and your answer, it seems that the CFQ scheduler
> uses the queue lock after blk_cleanup_queue(). At this time, the
> spinlock might have been freed. I can confirm that the bug doesn't
> appear with other I/O schedulers.
> 
> However, the proposed fix for "ub" looks quite strange to me. It uses
> a static array of spinlocks, so that they remain in memory after
> blk_cleanup_queue(). However, "ub" can be compiled as a module, so I
> don't see what prevent the use of the queue spinlocks by the CFQ
> scheduler once the module has been unloaded. I do not understand how the
> provided patch correctly fixes the bug.

You must not be able to remove the module, while CFQ still has
references to the locks around. The problem observed initially with ub
is that it doesn't honor queue reference counting - it embeds a queue
lock inside some structure, that it will free eg on device removal. The
lock associated with the queue obviously needs to follow the same life
cycle as the queue.

> The bug was reported on a pre-2.6.15 kernel, but we're still seeing
> this bug with a 2.6.16 FedoraCore-hacked kernel.
> 
> To me, the bug seems to be in the CFQ scheduler itself, isn't it ?
> Maybe we should use the internal queue lock (by passing NULL as the
> lock parameter to the blk_init_queue() call), and then modify the CFQ
> scheduler so that it correctly increments/decrements the queue->refcnt ?

Where do you see a bug in the CFQ inc/dec of the queue reference count?

You can give 2.6.17-rcX (X == latest) a spin and see if that changes
anything for you.

-- 
Jens Axboe


      reply	other threads:[~2006-06-14  5:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-13 15:37 Use of spinlock after free with CFQ scheduler Thomas Petazzoni
2006-06-14  5:19 ` Jens Axboe [this message]

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=20060614051917.GF4420@suse.de \
    --to=axboe@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=thomas.petazzoni@enix.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