aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inotify_user.c
diff options
context:
space:
mode:
authorYan Zheng <yanzheng@21cn.com>2008-02-06 04:36:09 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-06 13:41:00 -0500
commit1c17d18e3775485bf1e0ce79575eb637a94494a2 (patch)
tree3a5d8e5d2731e7dda7ce0c43b0c00270bd01c8c4 /fs/inotify_user.c
parent19c561a60ffe52df88dd63de0bff480ca094efe4 (diff)
A potential bug in inotify_user.c
Following comment is at fs/inotify_user.c:287 /* coalescing: drop this event if it is a dupe of the previous */ I think the previous event in the comment should be the last event in the link list. But inotify_dev_get_event return the first event in the list. In addition, it doesn't check whether the list is empty Signed-off-by: Yan Zheng<yanzheng@21cn.com> Acked-by: Robert Love <rlove@rlove.org> Cc: John McCutchan <ttb@tentacle.dhs.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/inotify_user.c')
-rw-r--r--fs/inotify_user.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/fs/inotify_user.c b/fs/inotify_user.c
index 5e009331c01f..c509a817068f 100644
--- a/fs/inotify_user.c
+++ b/fs/inotify_user.c
@@ -248,6 +248,19 @@ inotify_dev_get_event(struct inotify_device *dev)
248} 248}
249 249
250/* 250/*
251 * inotify_dev_get_last_event - return the last event in the given dev's queue
252 *
253 * Caller must hold dev->ev_mutex.
254 */
255static inline struct inotify_kernel_event *
256inotify_dev_get_last_event(struct inotify_device *dev)
257{
258 if (list_empty(&dev->events))
259 return NULL;
260 return list_entry(dev->events.prev, struct inotify_kernel_event, list);
261}
262
263/*
251 * inotify_dev_queue_event - event handler registered with core inotify, adds 264 * inotify_dev_queue_event - event handler registered with core inotify, adds
252 * a new event to the given device 265 * a new event to the given device
253 * 266 *
@@ -273,7 +286,7 @@ static void inotify_dev_queue_event(struct inotify_watch *w, u32 wd, u32 mask,
273 put_inotify_watch(w); /* final put */ 286 put_inotify_watch(w); /* final put */
274 287
275 /* coalescing: drop this event if it is a dupe of the previous */ 288 /* coalescing: drop this event if it is a dupe of the previous */
276 last = inotify_dev_get_event(dev); 289 last = inotify_dev_get_last_event(dev);
277 if (last && last->event.mask == mask && last->event.wd == wd && 290 if (last && last->event.mask == mask && last->event.wd == wd &&
278 last->event.cookie == cookie) { 291 last->event.cookie == cookie) {
279 const char *lastname = last->name; 292 const char *lastname = last->name;