ovl: fix file reference leak when submitting aio
authorAmir Goldstein <amir73il@gmail.com>
Mon, 2 Oct 2023 10:04:45 +0000 (13:04 +0300)
committerAmir Goldstein <amir73il@gmail.com>
Mon, 2 Oct 2023 10:08:31 +0000 (13:08 +0300)
commit8542f1712074f070ae90b64e6082d10d8e912e32
treebafda0c9feb370e7f114a6652549a4e33e29f985
parent8a749fd1a8720d4619c91c8b6e7528c0a355c0aa
ovl: fix file reference leak when submitting aio

Commit 724768a39374 ("ovl: fix incorrect fdput() on aio completion")
took a refcount on real file before submitting aio, but forgot to
avoid clearing FDPUT_FPUT from real.flags stack variable.
This can result in a file reference leak.

Fixes: 724768a39374 ("ovl: fix incorrect fdput() on aio completion")
Reported-by: Gil Lev <contact@levgil.com>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
fs/overlayfs/file.c