提交 ced55f38 编写于 作者: J Jan Kara 提交者: Ben Myers

xfs: 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.

CC: xfs@oss.sgi.com
CC: Ben Myers <bpm@sgi.com>
CC: stable@vger.kernel.org
Signed-off-by: NJan Kara <jack@suse.cz>
Reviewed-by: NBen Myers <bpm@sgi.com>
Signed-off-by: NBen Myers <bpm@sgi.com>
上级 3b19034d
...@@ -86,11 +86,11 @@ xfs_destroy_ioend( ...@@ -86,11 +86,11 @@ xfs_destroy_ioend(
} }
if (ioend->io_iocb) { if (ioend->io_iocb) {
inode_dio_done(ioend->io_inode);
if (ioend->io_isasync) { if (ioend->io_isasync) {
aio_complete(ioend->io_iocb, ioend->io_error ? aio_complete(ioend->io_iocb, ioend->io_error ?
ioend->io_error : ioend->io_result, 0); ioend->io_error : ioend->io_result, 0);
} }
inode_dio_done(ioend->io_inode);
} }
mempool_free(ioend, xfs_ioend_pool); mempool_free(ioend, xfs_ioend_pool);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册