LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Ian Kent <raven@themaw.net> To: Al Viro <viro@ZenIV.linux.org.uk> Cc: Colin Walters <walters@redhat.com>, Ondrej Holy <oholy@redhat.com>, autofs mailing list <autofs@vger.kernel.org>, Kernel Mailing List <linux-kernel@vger.kernel.org>, David Howells <dhowells@redhat.com>, linux-fsdevel <linux-fsdevel@vger.kernel.org> Subject: [PATCH 3/3] autofs - fix AT_NO_AUTOMOUNT not being honored Date: Wed, 10 May 2017 12:18:48 +0800 [thread overview] Message-ID: <149438992850.26550.14370272866390445786.stgit@pluto.themaw.net> (raw) In-Reply-To: <149438991819.26550.11290804420751932707.stgit@pluto.themaw.net> The fstatat(2) and statx() calls can pass the flag AT_NO_AUTOMOUNT which is meant to clear the LOOKUP_AUTOMOUNT flag and prevent triggering of an automount by the call. But this flag is unconditionally cleared for all stat family system calls except statx(). stat family system calls have always triggered mount requests for the negative dentry case in follow_automount() which is intended but prevents the fstatat(2) and statx() AT_NO_AUTOMOUNT case from being handled. In order to handle the AT_NO_AUTOMOUNT for both system calls the negative dentry case in follow_automount() needs to be changed to return ENOENT when the LOOKUP_AUTOMOUNT flag is clear (and the other required flags are clear). AFAICT this change doesn't have any noticable side effects and may, in some use cases (although I didn't see it in testing) prevent unnecessary callbacks to the automount daemon. It's also possible that a stat family call has been made with a path that is in the process of being mounted by some other process. But stat family calls should return the automount state of the path as it is "now" so it shouldn't wait for mount completion. This is the same semantic as the positive dentry case already handled. Signed-off-by: Ian Kent <raven@themaw.net> Cc: David Howells <dhowells@redhat.com> Cc: Colin Walters <walters@redhat.com> Cc: Ondrej Holy <oholy@redhat.com> Cc: stable@vger.kernel.org --- fs/namei.c | 15 ++++++++++++--- include/linux/fs.h | 3 +-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/fs/namei.c b/fs/namei.c index 7286f87..cd74838 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1129,9 +1129,18 @@ static int follow_automount(struct path *path, struct nameidata *nd, * of the daemon to instantiate them before they can be used. */ if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY | - LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) && - path->dentry->d_inode) - return -EISDIR; + LOOKUP_OPEN | LOOKUP_CREATE | + LOOKUP_AUTOMOUNT))) { + /* Positive dentry that isn't meant to trigger an + * automount, EISDIR will allow it to be used, + * otherwise there's no mount here "now" so return + * ENOENT. + */ + if (path->dentry->d_inode) + return -EISDIR; + else + return -ENOENT; + } if (path->dentry->d_sb->s_user_ns != &init_user_ns) return -EACCES; diff --git a/include/linux/fs.h b/include/linux/fs.h index 26488b4..be09684 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2935,8 +2935,7 @@ static inline int vfs_lstat(const char __user *name, struct kstat *stat) static inline int vfs_fstatat(int dfd, const char __user *filename, struct kstat *stat, int flags) { - return vfs_statx(dfd, filename, flags | AT_NO_AUTOMOUNT, - stat, STATX_BASIC_STATS); + return vfs_statx(dfd, filename, flags, stat, STATX_BASIC_STATS); } static inline int vfs_fstat(int fd, struct kstat *stat) {
next prev parent reply other threads:[~2017-05-10 4:18 UTC|newest] Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top 2017-05-10 4:18 [PATCH 1/3] autofs - make disc device user accessible Ian Kent 2017-05-10 4:18 ` [PATCH 2/3] autofs - make dev ioctl version and ismountpoint " Ian Kent 2017-05-10 4:18 ` Ian Kent [this message] 2017-05-12 12:49 ` [PATCH 3/3] autofs - fix AT_NO_AUTOMOUNT not being honored Colin Walters 2017-11-21 1:53 ` NeilBrown 2017-11-22 4:28 ` Ian Kent 2017-11-23 0:36 ` Ian Kent 2017-11-23 2:21 ` NeilBrown 2017-11-23 2:46 ` Ian Kent 2017-11-23 3:04 ` Ian Kent 2017-11-23 4:49 ` NeilBrown 2017-11-23 6:34 ` Ian Kent 2017-11-27 16:01 ` Mike Marion 2017-11-27 23:43 ` Ian Kent 2017-11-28 0:29 ` Mike Marion 2017-11-29 1:17 ` NeilBrown 2017-11-29 2:13 ` Mike Marion 2017-11-29 2:28 ` Ian Kent 2017-11-29 2:48 ` NeilBrown 2017-11-29 3:14 ` Ian Kent 2017-11-29 2:56 ` Ian Kent 2017-11-29 3:45 ` NeilBrown 2017-11-29 6:00 ` Ian Kent 2017-11-29 7:39 ` NeilBrown 2017-11-30 0:00 ` Ian Kent 2017-11-29 16:51 ` Mike Marion 2017-11-23 0:47 ` NeilBrown 2017-11-23 1:43 ` Ian Kent 2017-11-23 2:26 ` Ian Kent 2017-11-23 3:04 ` NeilBrown 2017-11-23 3:41 ` Ian Kent
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=149438992850.26550.14370272866390445786.stgit@pluto.themaw.net \ --to=raven@themaw.net \ --cc=autofs@vger.kernel.org \ --cc=dhowells@redhat.com \ --cc=linux-fsdevel@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=oholy@redhat.com \ --cc=viro@ZenIV.linux.org.uk \ --cc=walters@redhat.com \ /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: linkBe 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; as well as URLs for NNTP newsgroup(s).