autofs: fix missing fput for FSCONFIG_SET_FD
BugLink: https://bugs.launchpad.net/bugs/2089340
[ Upstream commit 6a64c5220c5df235448b846aeff3c0660d4cc83e ]
If you pass an fd using FSCONFIG_SET_FD, autofs_parse_fd() "steals" the
param->file and so the fs_context infrastructure will not do fput() for
us.
Fixes: e6ec453bd0 ("autofs: convert autofs to use the new mount api")
Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
Link: https://lore.kernel.org/r/20240731-fsconfig-fsparam_fd-fixes-v2-1-e7c472224417@cyphar.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Portia Stephens <portia.stephens@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
This commit is contained in:
committed by
Mehmet Basaran
parent
fce2b4738e
commit
45b30a2d4b
+1
-2
@@ -172,8 +172,7 @@ static int autofs_parse_fd(struct fs_context *fc, struct autofs_sb_info *sbi,
|
||||
ret = autofs_check_pipe(pipe);
|
||||
if (ret < 0) {
|
||||
errorf(fc, "Invalid/unusable pipe");
|
||||
if (param->type != fs_value_is_file)
|
||||
fput(pipe);
|
||||
fput(pipe);
|
||||
return -EBADF;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user