Fix dnotify/close race
commit3ec4686cd47d4550bf34b8979145cdc1e147e1d9
authorAl Viro <viro@ZenIV.linux.org.uk>
Thu, 1 May 2008 02:52:22 +0000 (1 03:52 +0100)
committerOliver Pinter <oliver.pntr@gmail.com>
Thu, 1 May 2008 16:30:53 +0000 (1 18:30 +0200)
treeb8116bccb7a94bd78681847e59325f14fb36cb8c
parentc0fe8a12cbb80b73857ce89d4e4d0f3b67bbfb54
Fix dnotify/close race

We have a race between fcntl() and close() that can lead to
dnotify_struct inserted into inode's list *after* the last descriptor
had been gone from current->files.

Since that's the only point where dnotify_struct gets evicted, we are
screwed - it will stick around indefinitely.  Even after struct file in
question is gone and freed.  Worse, we can trigger send_sigio() on it at
any later point, which allows to send an arbitrary signal to arbitrary
process if we manage to apply enough memory pressure to get the page
that used to host that struct file and fill it with the right pattern...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/dnotify.c