Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759912AbZD1Oq5 (ORCPT ); Tue, 28 Apr 2009 10:46:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756756AbZD1Oqr (ORCPT ); Tue, 28 Apr 2009 10:46:47 -0400 Received: from sh.osrg.net ([192.16.179.4]:60045 "EHLO sh.osrg.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756557AbZD1Oqr (ORCPT ); Tue, 28 Apr 2009 10:46:47 -0400 Date: Tue, 28 Apr 2009 23:44:51 +0900 To: mmx@riz.pl Cc: fujita.tomonori@lab.ntt.co.jp, rientjes@google.com, cl@linux.com, penberg@cs.helsinki.fi, linux-kernel@vger.kernel.org, kernel-testers@vger.kernel.org, rjw@sisk.pl, akpm@linux-foundation.org, jens.axboe@oracle.com Subject: Re: [Bug #13112] Oops in drain_array From: FUJITA Tomonori In-Reply-To: References: <20090428171139N.fujita.tomonori@lab.ntt.co.jp> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20090428234512P.fujita.tomonori@lab.ntt.co.jp> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (sh.osrg.net [192.16.179.4]); Tue, 28 Apr 2009 23:44:53 +0900 (JST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3417 Lines: 99 On Tue, 28 Apr 2009 14:43:37 +0200 (CEST) Bart wrote: > > On Mon, 27 Apr 2009 13:36:46 -0700 (PDT) > > David Rientjes wrote: > > > >> On Mon, 27 Apr 2009, Bart wrote: > >> > >>> After turning the suggested debuging options I've got tons of these when > >>> trying to stress the tape device like before: > >>> > >>> Apr 27 16:57:30 fs kernel: [ 96.446708] slab error in verify_redzone_free(): > >>> cache `size-128': memory outside object was overwritten > >>> Apr 27 16:57:30 fs kernel: [ 96.446713] Pid: 0, comm: swapper Not tainted > >>> 2.6.29.1-64 #2 > >>> Apr 27 16:57:30 fs kernel: [ 96.446715] Call Trace: > >>> Apr 27 16:57:30 fs kernel: [ 96.446717] [] > >>> __slab_error+0x1f/0x25 > >>> Apr 27 16:57:30 fs kernel: [ 96.446728] [] > >>> cache_free_debugcheck+0x108/0x1d6 > >>> Apr 27 16:57:30 fs kernel: [ 96.446731] [] > >>> kfree+0x81/0xc2 > >>> Apr 27 16:57:30 fs kernel: [ 96.446735] [] > >>> bio_free_map_data+0xc/0x1e > >> > >> This appears to be kfree(bmd->iovecs) in bio_free_map_data(). It looks > >> like the memcpy size in bio_set_map_data() overrides the kmalloc size; in > >> other words, for a redzone error, bio->bi_vcnt > nr_pages in > >> bio_copy_user_iov(). > > > > Can you try this? > > > > diff --git a/fs/bio.c b/fs/bio.c > > index 7bbc98f..6a09356 100644 > > --- a/fs/bio.c > > +++ b/fs/bio.c > > @@ -817,6 +817,9 @@ struct bio *bio_copy_user_iov(struct request_queue *q, > > len += iov[i].iov_len; > > } > > > > + if (offset) > > + nr_pages += 1; > > + > > bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask); > > if (!bmd) > > return ERR_PTR(-ENOMEM); > > > > There are no more errors in the dmesg after applying this patch to > 2.6.29.2. > > Without this patch I can reproduce this kind of errors on > 2.6.29.1, 2.6.29.2. > > I've not tested this patch with 2.6.29.1 and 2.6.30rc3-git3. > I will try to reproduce the error on 2.6.30rc3-git3 as soon as I compile > it. Thanks for testing! And very sorry about the bug. I'm sure that you hit the same bug with 2.6.30-rc3-git. Jens, can you please apply this against 2.6.30-rc (and we need this for 2.6.29.x too)? I know that bio_copy_user_iov() is hacky. I'll try to clean up the mapping API later. = From: FUJITA Tomonori Subject: [PATCH] bio: fix memcpy corruption in bio_copy_user_iov() st driver uses blk_rq_map_user() in order to just build a request out of page frames. In this case, map_data->offset is a non zero value and iov[0].iov_base is NULL. We need to increase nr_pages for that. Cc: stable@kernel.org Signed-off-by: FUJITA Tomonori --- fs/bio.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/fs/bio.c b/fs/bio.c index 7bbc98f..9871164 100644 --- a/fs/bio.c +++ b/fs/bio.c @@ -817,6 +817,9 @@ struct bio *bio_copy_user_iov(struct request_queue *q, len += iov[i].iov_len; } + if (offset) + nr_pages++; + bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask); if (!bmd) return ERR_PTR(-ENOMEM); -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/