Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752556AbZIQKyC (ORCPT ); Thu, 17 Sep 2009 06:54:02 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751353AbZIQKyB (ORCPT ); Thu, 17 Sep 2009 06:54:01 -0400 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:60735 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751757AbZIQKyA (ORCPT ); Thu, 17 Sep 2009 06:54:00 -0400 Message-ID: In-Reply-To: <20090917094203.GA13885@localhost> References: <20090914032901.GA16189@localhost> <20090915165852.032d164f.kamezawa.hiroyu@jp.fujitsu.com> <20090916142956.9998ba71.kamezawa.hiroyu@jp.fujitsu.com> <20090917145319.97f67737.kamezawa.hiroyu@jp.fujitsu.com> <20090917150726.9acb0f40.kamezawa.hiroyu@jp.fujitsu.com> <20090917062124.GA6964@localhost> <20090917155100.3cc2dfb6.kamezawa.hiroyu@jp.fujitsu.com> <20090917071428.GA9232@localhost> <20090917162324.d60a7950.kamezawa.hiroyu@jp.fujitsu.com> <20090917094203.GA13885@localhost> Date: Thu, 17 Sep 2009 19:54:00 +0900 (JST) Subject: Re: [RFC][PATCH][bugfix] more checks for negative f_pos handling v4 From: "KAMEZAWA Hiroyuki" To: "Wu Fengguang" Cc: "KAMEZAWA Hiroyuki" , "viro@zeniv.linux.org.uk" , "Andrew Morton" , "linux-kernel@vger.kernel.org" , "hugh.dickins@tiscali.co.uk" , "oleg@redhat.com" , "xiyou.wangcong@gmail.com" User-Agent: SquirrelMail/1.4.16 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-2022-jp Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3091 Lines: 96 Wu Fengguang wrote: > On Thu, Sep 17, 2009 at 03:23:24PM +0800, KAMEZAWA Hiroyuki wrote: >> On Thu, 17 Sep 2009 15:14:28 +0800 >> Wu Fengguang wrote: >> >> > On Thu, Sep 17, 2009 at 02:51:00PM +0800, KAMEZAWA Hiroyuki wrote: >> > > From: KAMEZAWA Hiroyuki >> > > >> > > Now, rw_verify_area() checsk f_pos is negative or not. And if >> > > negative, returns -EINVAL. >> > > >> > > But, some special files as /dev/(k)mem and /proc//mem etc.. >> > > has negative offsets. And we can't do any access via read/write >> > > to the file(device). >> > > >> > > This patch introduce a flag S_VERYBIG and allow negative file >> > > offsets for big files. (usual files don't allow it.) >> > > >> > > Changelog: v3->v4 >> > > - make changes in mem.c aligned. >> > > - change __negative_fpos_check() to return int. >> > > - fixed bug in "pos" check. >> > > - added comments. >> > > >> > > Changelog: v2->v3 >> > > - fixed bug in rw_verify_area (it cannot be compiled) >> > > >> > > Signed-off-by: KAMEZAWA Hiroyuki >> > > --- >> > > drivers/char/mem.c | 23 +++++++++++++---------- >> > > fs/proc/base.c | 2 ++ >> > > fs/read_write.c | 22 ++++++++++++++++++++-- >> > > include/linux/fs.h | 2 ++ >> > > 4 files changed, 37 insertions(+), 12 deletions(-) >> > > >> > > Index: mmotm-2.6.31-Sep14/fs/read_write.c >> > > =================================================================== >> > > --- mmotm-2.6.31-Sep14.orig/fs/read_write.c >> > > +++ mmotm-2.6.31-Sep14/fs/read_write.c >> > > @@ -205,6 +205,21 @@ bad: >> > > } >> > > #endif >> > > >> > > +static int >> > > +__negative_fpos_check(struct inode *inode, loff_t pos, size_t >> count) >> > > +{ >> > > + /* >> > > + * pos or pos+count is negative here, check overflow. >> > > + * too big "count" will be caught in rw_verify_area(). >> > > + */ >> > > + if ((pos < 0) && (pos + count < pos)) >> > > + return -EOVERFLOW; >> > >> > This returns -EOVERFLOW when pos=-10 and count=1. What's the >> intention? >> Hmm ? >> >> pos+count=-9 > -10 ? it's ok. no -EOVERFLOW >> >> pos=-10, count=11, >> pos+count=1 > -10, then overflow. > > Hmm, it seems less confusing to do > > static int __negative_fpos_check(struct inode *inode, > unsigned long pos, > unsigned long count) > { > if (pos + count < pos) > return -EOVERFLOW; > ... > } > have to avoid pos == LONGLONGMAX case. Thanks, -Kame > Thanks, > Fengguang > > -- > 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/ > -- 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/