From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail137.messagelabs.com (mail137.messagelabs.com [216.82.249.19]) by kanga.kvack.org (Postfix) with SMTP id C77B36B00D4 for ; Wed, 3 Jun 2009 11:40:06 -0400 (EDT) From: "Eric W. Biederman" Date: Mon, 1 Jun 2009 14:50:37 -0700 Message-Id: <1243893048-17031-12-git-send-email-ebiederm@xmission.com> In-Reply-To: References: Subject: [PATCH 12/23] vfs: Teach fcntl to use file_hotplug_lock Sender: owner-linux-mm@kvack.org To: Al Viro Cc: linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-mm@kvack.org, linux-fsdevel@vger.kernel.org, Hugh Dickins , Tejun Heo , Alexey Dobriyan , Linus Torvalds , Alan Cox , Greg Kroah-Hartman , Nick Piggin , Andrew Morton , Christoph Hellwig , "Eric W. Biederman" , "Eric W. Biederman" List-ID: From: Eric W. Biederman Signed-off-by: Eric W. Biederman --- fs/fcntl.c | 28 +++++++++++++++++++--------- 1 files changed, 19 insertions(+), 9 deletions(-) diff --git a/fs/fcntl.c b/fs/fcntl.c index cc8e4de..05d8961 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -344,14 +344,19 @@ SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) if (!filp) goto out; + err = -EIO; + if (!file_hotplug_read_trylock(filp)) + goto out_fput; + err = security_file_fcntl(filp, cmd, arg); - if (err) { - fput(filp); - return err; - } + if (err) + goto out_unlock; err = do_fcntl(fd, cmd, arg, filp); +out_unlock: + file_hotplug_read_unlock(filp); +out_fput: fput(filp); out: return err; @@ -369,13 +374,15 @@ SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, if (!filp) goto out; + err = -EIO; + if (!file_hotplug_read_trylock(filp)) + goto out_fput; + err = security_file_fcntl(filp, cmd, arg); - if (err) { - fput(filp); - return err; - } + if (err) + goto out_unlock; + err = -EBADF; - switch (cmd) { case F_GETLK64: err = fcntl_getlk64(filp, (struct flock64 __user *) arg); @@ -389,6 +396,9 @@ SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, err = do_fcntl(fd, cmd, arg, filp); break; } +out_unlock: + file_hotplug_read_unlock(filp); +out_fput: fput(filp); out: return err; -- 1.6.3.1.54.g99dd.dirty -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org