[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1398290151-6502-1-git-send-email-xypron.glpk@gmx.de>
Date: Wed, 23 Apr 2014 23:55:51 +0200
From: Heinrich Schuchardt <xypron.glpk@....de>
To: Eric Paris <eparis@...hat.com>
Cc: linux-kernel@...r.kernel.org, Jan Kara <jack@...e.cz>,
Michael Kerrisk <mtk.manpages@...il.com>,
Heinrich Schuchardt <xypron.glpk@....de>
Subject: [PATCH 1/1] fanotify: for FAN_MARK_FLUSH check flags
If fanotify_mark is called with illegal value of arguments flags and marks
it usually returns EINVAL.
When fanotify_mark is called with FAN_MARK_FLUSH the argument flags is not
checked for irrelevant flags like FAN_MARK_IGNORED_MASK.
The patch removes this inconsistency.
If an irrelevant flag is set error EINVAL is returned.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@....de>
---
fs/notify/fanotify/fanotify_user.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c
index 287a22c..8bba549 100644
--- a/fs/notify/fanotify/fanotify_user.c
+++ b/fs/notify/fanotify/fanotify_user.c
@@ -819,7 +819,10 @@ SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
case FAN_MARK_REMOVE:
if (!mask)
return -EINVAL;
+ break;
case FAN_MARK_FLUSH:
+ if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH))
+ return -EINVAL;
break;
default:
return -EINVAL;
--
1.9.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists