xfs: Fix possible use-after-free with AIO
authorJan Kara <jack@suse.cz>
Wed, 23 Jan 2013 12:56:18 +0000 (13:56 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 6 Feb 2013 04:33:49 +0000 (04:33 +0000)
commite807626e32eb159914cee54473d17082a1920039
tree4cccf97032bea526b1454dc3bb8d101f88d57b97
parent122927b09930c9272a20fb8cffc5ff7095fcbbb4
xfs: Fix possible use-after-free with AIO

commit 4b05d09c18d9aa62d2e7fb4b057f54e5a38963f5 upstream.

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>
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/xfs/xfs_aops.c