projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c20396
)
autofs: fix missing fput for FSCONFIG_SET_FD
author
Aleksa Sarai
<cyphar@cyphar.com>
Wed, 31 Jul 2024 13:10:27 +0000
(23:10 +1000)
committer
Christian Brauner
<brauner@kernel.org>
Mon, 19 Aug 2024 11:45:03 +0000
(13:45 +0200)
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:
e6ec453bd0f0
("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>
fs/autofs/inode.c
patch
|
blob
|
history
diff --git
a/fs/autofs/inode.c
b/fs/autofs/inode.c
index
cf792d4
..
64faa6c
100644
(file)
--- a/
fs/autofs/inode.c
+++ b/
fs/autofs/inode.c
@@
-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;
}