]> Git Repo - linux.git/commit
netfs: Fix AIO error handling when doing write-through
authorDavid Howells <[email protected]>
Tue, 21 May 2024 13:36:27 +0000 (14:36 +0100)
committerChristian Brauner <[email protected]>
Fri, 24 May 2024 11:34:06 +0000 (13:34 +0200)
commit2c6b531020f0590db3b6b4950a41c692e9aa4f4a
tree818ba301a6e5605d512bce6d80a6cc061dea9294
parent9b038d004ce95551cb35381c49fe896c5bc11ffe
netfs: Fix AIO error handling when doing write-through

If an error occurs whilst we're doing an AIO write in write-through mode,
we may end up calling ->ki_complete() *and* returning an error from
->write_iter().  This can result in either a UAF (the ->ki_complete() func
pointer may get overwritten, for example) or a refcount underflow in
io_submit() as ->ki_complete is called twice.

Fix this by making netfs_end_writethrough() - and thus
netfs_perform_write() - unconditionally return -EIOCBQUEUED if we're doing
an AIO write and wait for completion if we're not.

Fixes: 288ace2f57c9 ("netfs: New writeback implementation")
Signed-off-by: David Howells <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
cc: Jeff Layton <[email protected]>
cc: Enzo Matsumiya <[email protected]>
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
Signed-off-by: Christian Brauner <[email protected]>
fs/netfs/write_issue.c
This page took 0.053253 seconds and 4 git commands to generate.