From: NeilBrown <neilb@ownmail.net>
To: "Jori Koolstra" <jkoolstra@xs4all.nl>
Cc: "Jeff Layton" <jlayton@kernel.org>,
"Christian Brauner" <brauner@kernel.org>,
"Al Viro" <viro@zeniv.linux.org.uk>,
"Aleksa Sarai" <aleksa@amutable.com>,
"Amir Goldstein" <amir73il@gmail.com>, "Jan Kara" <jack@suse.cz>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
"Jori Koolstra" <jkoolstra@xs4all.nl>
Subject: Re: [PATCH v3 10/14] vfs: move O_IS_MKDIR check from lookup_open() into individual filesystems
Date: Mon, 06 Jul 2026 15:50:12 +1000 [thread overview]
Message-ID: <178331701271.27465.14344875571165397012@noble.neil.brown.name> (raw)
In-Reply-To: <20260704164149.3480051-11-jkoolstra@xs4all.nl>
On Sun, 05 Jul 2026, Jori Koolstra wrote:
> Individual filesystems that implement ->atomic_open() need to get the
> chance to implement O_CREAT|O_DIRECTORY or not, rather than decide
> this at the VFS level in lookup_open().
>
> Signed-off-by: Jori Koolstra <jkoolstra@xs4all.nl>
This look straight forward.
Reviewed-by: NeilBrown <neil@brown.name>
Thanks,
NeilBrown
> ---
> fs/9p/vfs_inode.c | 3 +++
> fs/9p/vfs_inode_dotl.c | 3 +++
> fs/ceph/file.c | 3 +++
> fs/fuse/dir.c | 3 +++
> fs/gfs2/inode.c | 3 +++
> fs/namei.c | 3 ---
> fs/nfs/dir.c | 6 ++++++
> fs/smb/client/dir.c | 3 +++
> fs/vboxsf/dir.c | 3 +++
> 9 files changed, 27 insertions(+), 3 deletions(-)
>
> diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
> index 5783d0336f96..bb555e5ba261 100644
> --- a/fs/9p/vfs_inode.c
> +++ b/fs/9p/vfs_inode.c
> @@ -777,6 +777,9 @@ v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
> struct inode *inode;
> int p9_omode;
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (d_in_lookup(dentry)) {
> struct dentry *res = v9fs_vfs_lookup(dir, dentry, 0);
> if (res || d_really_is_positive(dentry))
> diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
> index f7396d20cb6c..ff3facb420c2 100644
> --- a/fs/9p/vfs_inode_dotl.c
> +++ b/fs/9p/vfs_inode_dotl.c
> @@ -239,6 +239,9 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
> struct v9fs_session_info *v9ses;
> struct posix_acl *pacl = NULL, *dacl = NULL;
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (d_in_lookup(dentry)) {
> struct dentry *res = v9fs_vfs_lookup(dir, dentry, 0);
> if (res || d_really_is_positive(dentry))
> diff --git a/fs/ceph/file.c b/fs/ceph/file.c
> index 71161f2b2151..e79abdbd9f61 100644
> --- a/fs/ceph/file.c
> +++ b/fs/ceph/file.c
> @@ -811,6 +811,9 @@ int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
> dir, ceph_vinop(dir), dentry, dentry,
> d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (dentry->d_name.len > NAME_MAX)
> return -ENAMETOOLONG;
>
> diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
> index 0e2a1039fa43..e01869565d5e 100644
> --- a/fs/fuse/dir.c
> +++ b/fs/fuse/dir.c
> @@ -935,6 +935,9 @@ static int fuse_atomic_open(struct inode *dir, struct dentry *entry,
> struct mnt_idmap *idmap = file_mnt_idmap(file);
> struct fuse_conn *fc = get_fuse_conn(dir);
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (fuse_is_bad(dir))
> return -EIO;
>
> diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
> index 8a77794bbd4a..9859ae0341a9 100644
> --- a/fs/gfs2/inode.c
> +++ b/fs/gfs2/inode.c
> @@ -1387,6 +1387,9 @@ static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
> {
> bool excl = !!(flags & O_EXCL);
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (d_in_lookup(dentry)) {
> struct dentry *d = __gfs2_lookup(dir, dentry, file);
> if (file->f_mode & FMODE_OPENED) {
> diff --git a/fs/namei.c b/fs/namei.c
> index 5113ac986f50..76916caa264d 100644
> --- a/fs/namei.c
> +++ b/fs/namei.c
> @@ -4497,9 +4497,6 @@ static struct dentry *lookup_open(struct nameidata *nd, struct file *file,
> if (unlikely(IS_DEADDIR(dir_inode)))
> return ERR_PTR(-ENOENT);
>
> - if (O_IS_MKDIR(open_flag) && dir_inode->i_op->atomic_open)
> - open_flag &= ~O_CREAT;
> -
> file->f_mode &= ~FMODE_CREATED;
> dentry = d_lookup(dir, &nd->last);
> for (;;) {
> diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c
> index c7b723c18620..c815d9aa9b69 100644
> --- a/fs/nfs/dir.c
> +++ b/fs/nfs/dir.c
> @@ -2121,6 +2121,9 @@ int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
> dfprintk(VFS, "NFS: atomic_open(%s/%llu), %pd\n",
> dir->i_sb->s_id, dir->i_ino, dentry);
>
> + if (O_IS_MKDIR(open_flags))
> + open_flags &= ~O_CREAT;
> +
> err = nfs_check_flags(open_flags);
> if (err)
> return err;
> @@ -2313,6 +2316,9 @@ int nfs_atomic_open_v23(struct inode *dir, struct dentry *dentry,
> */
> int error = 0;
>
> + if (O_IS_MKDIR(open_flags))
> + open_flags &= ~O_CREAT;
> +
> if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
> return -ENAMETOOLONG;
>
> diff --git a/fs/smb/client/dir.c b/fs/smb/client/dir.c
> index 88a4a1787ff0..75bf86cc0612 100644
> --- a/fs/smb/client/dir.c
> +++ b/fs/smb/client/dir.c
> @@ -538,6 +538,9 @@ int cifs_atomic_open(struct inode *dir, struct dentry *direntry,
> if (unlikely(cifs_forced_shutdown(cifs_sb)))
> return smb_EIO(smb_eio_trace_forced_shutdown);
>
> + if (O_IS_MKDIR(oflags))
> + oflags &= ~O_CREAT;
> +
> /*
> * Posix open is only called (at lookup time) for file create now. For
> * opens (rather than creates), because we do not know if it is a file
> diff --git a/fs/vboxsf/dir.c b/fs/vboxsf/dir.c
> index c5bd3271aa96..77ae2f696fd4 100644
> --- a/fs/vboxsf/dir.c
> +++ b/fs/vboxsf/dir.c
> @@ -318,6 +318,9 @@ static int vboxsf_dir_atomic_open(struct inode *parent, struct dentry *dentry,
> u64 handle;
> int err;
>
> + if (O_IS_MKDIR(flags))
> + flags &= ~O_CREAT;
> +
> if (d_in_lookup(dentry)) {
> struct dentry *res = vboxsf_dir_lookup(parent, dentry, 0);
> if (res || d_really_is_positive(dentry))
> --
> 2.55.0
>
>
next prev parent reply other threads:[~2026-07-06 5:50 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-04 16:41 [PATCH v3 00/14] vfs: add O_CREAT|O_DIRECTORY to open*(2) Jori Koolstra
2026-07-04 16:41 ` [PATCH v3 01/14] fs/namei.c: use trailing_slashes() Jori Koolstra
2026-07-06 3:56 ` NeilBrown
2026-07-06 7:29 ` David Laight
2026-07-06 20:55 ` Jori Koolstra
2026-07-07 7:42 ` David Laight
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 02/14] vfs: move create error && negative dentry case in lookup_open() up Jori Koolstra
2026-07-04 16:41 ` [PATCH v3 03/14] vfs: prepare vfs_creat|mkdir_no_perm for reuse in lookup_open() Jori Koolstra
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 04/14] vfs: call audit_inode_child() in lookup_open() on failure too Jori Koolstra
2026-07-06 5:33 ` NeilBrown
2026-07-06 21:20 ` Jori Koolstra
2026-07-06 23:02 ` NeilBrown
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 05/14] fs/namei.c: update docstring of atomic_open() Jori Koolstra
2026-07-06 5:36 ` NeilBrown
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 06/14] vfs: lookup_open(): move setting FMODE_CREATED down Jori Koolstra
2026-07-04 16:41 ` [PATCH v3 07/14] vfs: move ->create check in lookup_open() to before try_break_deleg() Jori Koolstra
2026-07-06 5:37 ` NeilBrown
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 08/14] vfs: lookup_open(): use vfs_create_no_perm() Jori Koolstra
2026-07-06 5:38 ` NeilBrown
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 09/14] vfs: add O_CREAT|O_DIRECTORY to open*(2) Jori Koolstra
2026-07-06 5:46 ` NeilBrown
2026-07-07 8:35 ` Pedro Falcato
2026-07-07 10:04 ` Christian Brauner
2026-07-07 13:04 ` Pedro Falcato
2026-07-07 13:30 ` Christian Brauner
2026-07-13 9:54 ` Christoph Hellwig
2026-07-13 21:35 ` NeilBrown
2026-07-14 5:10 ` Christoph Hellwig
2026-07-14 10:50 ` Jori Koolstra
2026-07-14 10:46 ` Jori Koolstra
2026-07-07 10:06 ` Jori Koolstra
2026-07-07 13:55 ` Pedro Falcato
2026-07-07 14:18 ` Jori Koolstra
2026-07-08 15:39 ` Pedro Falcato
2026-07-09 6:24 ` Christoph Hellwig
2026-07-09 10:51 ` Jori Koolstra
2026-07-09 14:21 ` Christian Brauner
2026-07-09 14:34 ` Jori Koolstra
2026-07-13 9:50 ` Christoph Hellwig
2026-07-07 10:51 ` Christian Brauner
2026-07-10 18:55 ` Jori Koolstra
2026-07-12 12:39 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 10/14] vfs: move O_IS_MKDIR check from lookup_open() into individual filesystems Jori Koolstra
2026-07-06 5:50 ` NeilBrown [this message]
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 11/14] vfs: refuse O_CREAT for directories through a dangling symlink Jori Koolstra
2026-07-06 5:51 ` NeilBrown
2026-07-04 16:41 ` [PATCH v3 12/14] vfs: short-circuit MAY_WRITE access for O_DIRECTORY opens Jori Koolstra
2026-07-06 5:51 ` NeilBrown
2026-07-04 16:41 ` [PATCH v3 13/14] selftest: fix headers in fclog.c Jori Koolstra
2026-07-06 5:57 ` NeilBrown
2026-07-06 21:07 ` Jori Koolstra
2026-07-07 10:51 ` Christian Brauner
2026-07-04 16:41 ` [PATCH v3 14/14] selftest: add tests for open*(O_CREAT|O_DIRECTORY) Jori Koolstra
2026-07-07 10:51 ` Christian Brauner
2026-07-07 10:51 ` [PATCH v3 00/14] vfs: add O_CREAT|O_DIRECTORY to open*(2) Christian Brauner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178331701271.27465.14344875571165397012@noble.neil.brown.name \
--to=neilb@ownmail.net \
--cc=aleksa@amutable.com \
--cc=amir73il@gmail.com \
--cc=brauner@kernel.org \
--cc=jack@suse.cz \
--cc=jkoolstra@xs4all.nl \
--cc=jlayton@kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=neil@brown.name \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox