From: Jan Kara Date: Wed, 20 Feb 2013 02:16:39 +0000 (+1100) Subject: ocfs2: fix possible use-after-free with AIO X-Git-Tag: v3.9-rc1~56^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b171e0c74ca0549d0610990a862dd895870f04a;p=platform%2Fupstream%2Fkernel-adaptation-pc.git ocfs2: fix possible use-after-free with AIO Running AIO is pinning inode in memory using file reference. Once AIO is completed using aio_complete(), file reference is put and inode can be freed from memory. So we have to be sure that calling aio_complete() is the last thing we do with the inode. Signed-off-by: Jan Kara Acked-by: Jeff Moyer Acked-by: Joel Becker Cc: Mark Fasheh Cc: Al Viro Cc: Signed-off-by: Andrew Morton Signed-off-by: Al Viro --- diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index db1ad26..50fe28b 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c @@ -593,9 +593,9 @@ static void ocfs2_dio_end_io(struct kiocb *iocb, level = ocfs2_iocb_rw_locked_level(iocb); ocfs2_rw_unlock(inode, level); + inode_dio_done(inode); if (is_async) aio_complete(iocb, ret, 0); - inode_dio_done(inode); } /*