Re: Kernel crash in icq_free_icq_rcu

From: Vivek Goyal
Date: Tue Jan 17 2012 - 16:01:18 EST


On Tue, Jan 17, 2012 at 03:58:16PM -0500, Vivek Goyal wrote:

[..]

> > >> Can you try this?
> > >
> > > Nope, this does not help either. Can reproduce the issue with below
> > > patch applied.
> > >
> > >>
> > >>
> > >> diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
> > >> index 163263d..ee55019 100644
> > >> --- a/block/cfq-iosched.c
> > >> +++ b/block/cfq-iosched.c
> > >> @@ -3117,18 +3117,17 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
> > >> */
> > >> static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
> > >> {
> > >> - struct cfq_queue *old_cfqq = cfqd->active_queue;
> > >> -
> > >> cfq_log_cfqq(cfqd, cfqq, "preempt");
> > >> - cfq_slice_expired(cfqd, 1);
> > >>
> > >> /*
> > >> * workload type is changed, don't save slice, otherwise preempt
> > >> * doesn't happen
> > >> */
> > >> - if (cfqq_type(old_cfqq) != cfqq_type(cfqq))
> > >> + if (cfqq_type(cfqd->active_queue) != cfqq_type(cfqq))
> > >> cfqq->cfqg->saved_workload_slice = 0;
> > >>
> > >> + cfq_slice_expired(cfqd, 1);
> > >> +
> > >
> > > cfq_slice_expired() will overwrite the value of
> > > cfqq->cfqg->saved_workload_slice. So we need to set it to zero after
> > > cfq_slice_expired.
> >
> > Good point, lets just fix that up afterwards, the use-after-free needs
> > to go asap.
> >
> > > I was thinking of just saving the workload type of cfqq before
> > > cfq_slice_expired() so that we don't access old cfqq after
> > > cfq_slice_expired(). But then I noticed that we don't drop a cfqq
> > > reference in cfq_slice_expired(). So not sure how cfq_slice_expired()
> > > can lead to freeing up of queue. It should happen only when process
> > > has exited and last request on the queue if finished.
> >
> > It does, it drops a ref to the cic which in turn drops the active async
> > and sync queues.
>
> Ok, I see it now. Thanks.
>
> I modified your patch a bit. It does not seem to solve my problem but
> might help with Chris Mason's boot issue.
>
> Chris, can you please give it a try.

Oops, old mail id of chris. Fixing it now.

Thanks
Vivek

>
> Thanks
> Vivek
>
> ---
> block/cfq-iosched.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> Index: linux-2.6/block/cfq-iosched.c
> ===================================================================
> --- linux-2.6.orig/block/cfq-iosched.c 2012-01-18 02:49:33.000000000 -0500
> +++ linux-2.6/block/cfq-iosched.c 2012-01-18 02:50:31.000000000 -0500
> @@ -3117,7 +3117,7 @@ cfq_should_preempt(struct cfq_data *cfqd
> */
> static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
> {
> - struct cfq_queue *old_cfqq = cfqd->active_queue;
> + enum wl_type_t old_cfqq_wl_type = cfqq_type(cfqd->active_queue);
>
> cfq_log_cfqq(cfqd, cfqq, "preempt");
> cfq_slice_expired(cfqd, 1);
> @@ -3126,7 +3126,7 @@ static void cfq_preempt_queue(struct cfq
> * workload type is changed, don't save slice, otherwise preempt
> * doesn't happen
> */
> - if (cfqq_type(old_cfqq) != cfqq_type(cfqq))
> + if (old_cfqq_wl_type != cfqq_type(cfqq))
> cfqq->cfqg->saved_workload_slice = 0;
>
> /*
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/