* [PATCH] mount: rebuild error handling in do_new_mount
@ 2022-12-04 15:00 Chuang Wang
2022-12-10 23:39 ` Al Viro
0 siblings, 1 reply; 2+ messages in thread
From: Chuang Wang @ 2022-12-04 15:00 UTC (permalink / raw)
Cc: Chuang Wang, Alexander Viro, linux-fsdevel, linux-kernel
When a function execution error is detected in do_new_mount, it should
return immediately. Using this can make the code easier to understand.
Signed-off-by: Chuang Wang <nashuiliang@gmail.com>
---
fs/namespace.c | 53 ++++++++++++++++++++++++++++++++------------------
1 file changed, 34 insertions(+), 19 deletions(-)
diff --git a/fs/namespace.c b/fs/namespace.c
index ab467ee58341..a544e814b326 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -3116,36 +3116,51 @@ static int do_new_mount(struct path *path, const char *fstype, int sb_flags,
if (!type)
return -ENODEV;
+ fc = fs_context_for_mount(type, sb_flags);
+ put_filesystem(type);
+ if (IS_ERR(fc))
+ return PTR_ERR(fc);
+
+ /* subtype */
if (type->fs_flags & FS_HAS_SUBTYPE) {
subtype = strchr(fstype, '.');
if (subtype) {
subtype++;
if (!*subtype) {
- put_filesystem(type);
- return -EINVAL;
+ err = -EINVAL;
+ goto err_fc;
}
+
+ err = vfs_parse_fs_string(fc, "subtype",
+ subtype, strlen(subtype));
+ if (err)
+ goto err_fc;
}
}
- fc = fs_context_for_mount(type, sb_flags);
- put_filesystem(type);
- if (IS_ERR(fc))
- return PTR_ERR(fc);
-
- if (subtype)
- err = vfs_parse_fs_string(fc, "subtype",
- subtype, strlen(subtype));
- if (!err && name)
+ /* source */
+ if (name) {
err = vfs_parse_fs_string(fc, "source", name, strlen(name));
- if (!err)
- err = parse_monolithic_mount_data(fc, data);
- if (!err && !mount_capable(fc))
- err = -EPERM;
- if (!err)
- err = vfs_get_tree(fc);
- if (!err)
- err = do_new_mount_fc(fc, path, mnt_flags);
+ if (err)
+ goto err_fc;
+ }
+
+ /* monolithic data */
+ err = parse_monolithic_mount_data(fc, data);
+ if (err)
+ goto err_fc;
+
+ err = -EPERM;
+ if (!mount_capable(fc))
+ goto err_fc;
+
+ err = vfs_get_tree(fc);
+ if (err)
+ goto err_fc;
+
+ err = do_new_mount_fc(fc, path, mnt_flags);
+err_fc:
put_fs_context(fc);
return err;
}
--
2.37.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mount: rebuild error handling in do_new_mount
2022-12-04 15:00 [PATCH] mount: rebuild error handling in do_new_mount Chuang Wang
@ 2022-12-10 23:39 ` Al Viro
0 siblings, 0 replies; 2+ messages in thread
From: Al Viro @ 2022-12-10 23:39 UTC (permalink / raw)
To: Chuang Wang; +Cc: linux-fsdevel, linux-kernel
On Sun, Dec 04, 2022 at 11:00:05PM +0800, Chuang Wang wrote:
> When a function execution error is detected in do_new_mount, it should
> return immediately. Using this can make the code easier to understand.
Your piles of goto make it harder to follow and reason about.
NAKed-by: Al Viro <viro@zeniv.linux.org.uk>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-10 23:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-04 15:00 [PATCH] mount: rebuild error handling in do_new_mount Chuang Wang
2022-12-10 23:39 ` Al Viro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).