[patch 1/6][RFC] Keep FIBMAP from looking at negative block nrs

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <linux-fsdevel@...>
Cc: <linux-kernel@...>, Mike Waychison <mikew@...>
Date: Friday, October 26, 2007 - 7:37 pm

Return an error if the user requests a negative logical block in a file.

Signed-off-by: Mike Waychison <mikew@google.com>
 fs/ioctl.c |    2 ++
 1 file changed, 2 insertions(+)

Index: linux-2.6.23/fs/ioctl.c
===================================================================
--- linux-2.6.23.orig/fs/ioctl.c	2007-10-26 15:25:48.000000000 -0700
+++ linux-2.6.23/fs/ioctl.c	2007-10-26 16:16:29.000000000 -0700
@@ -60,6 +60,8 @@ static int file_ioctl(struct file *filp,
 				return -EPERM;
 			if ((error = get_user(block, p)) != 0)
 				return error;
+			if (block < 0)
+				return -EINVAL;
 
 			lock_kernel();
 			res = mapping->a_ops->bmap(mapping, block);

--
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[patch 1/6][RFC] Keep FIBMAP from looking at negative block ..., Mike Waychison, (Fri Oct 26, 7:37 pm)