]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
aio: hold an extra file reference over AIO read/write operations
authorChristoph Hellwig <hch@lst.de>
Sun, 30 Oct 2016 16:42:01 +0000 (11:42 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 30 Oct 2016 17:09:42 +0000 (13:09 -0400)
Otherwise we might dereference an already freed file and/or inode
when aio_complete is called before we return from the read_iter or
write_iter method.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/aio.c

index 1157e13a36d681ecba8e926bb9e91943cfeb6723..0aa71d338c04dc258162e892c785c49f48d4a76c 100644 (file)
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1460,6 +1460,7 @@ rw_common:
                        return ret;
                }
 
+               get_file(file);
                if (rw == WRITE)
                        file_start_write(file);
 
@@ -1467,6 +1468,7 @@ rw_common:
 
                if (rw == WRITE)
                        file_end_write(file);
+               fput(file);
                kfree(iovec);
                break;