From: Christian Brauner <brauner@kernel.org>
To: "Lai, Yi" <yi1.lai@linux.intel.com>
Cc: Josef Bacik <josef@toxicpanda.com>,
Jeff Layton <jlayton@kernel.org>,
"Paul E. McKenney" <paulmck@kernel.org>,
Peter Ziljstra <peterz@infradead.org>,
linux-fsdevel@vger.kernel.org, yi1.lai@intel.com
Subject: Re: [PATCH v3 03/10] fs: lockless mntns rbtree lookup
Date: Thu, 19 Dec 2024 14:45:59 +0100 [thread overview]
Message-ID: <20241219-kasten-sonst-b3d92ae618fe@brauner> (raw)
In-Reply-To: <Z2PlT5rcRTIhCpft@ly-workstation>
On Thu, Dec 19, 2024 at 05:20:15PM +0800, Lai, Yi wrote:
> On Fri, Dec 13, 2024 at 12:03:42AM +0100, Christian Brauner wrote:
> > Currently we use a read-write lock but for the simple search case we can
> > make this lockless. Creating a new mount namespace is a rather rare
> > event compared with querying mounts in a foreign mount namespace. Once
> > this is picked up by e.g., systemd to list mounts in another mount in
> > it's isolated services or in containers this will be used a lot so this
> > seems worthwhile doing.
> >
> > Signed-off-by: Christian Brauner <brauner@kernel.org>
> > ---
> > fs/mount.h | 5 ++-
> > fs/namespace.c | 119 +++++++++++++++++++++++++++++++++++----------------------
> > 2 files changed, 77 insertions(+), 47 deletions(-)
> >
> > diff --git a/fs/mount.h b/fs/mount.h
> > index 185fc56afc13338f8185fe818051444d540cbd5b..36ead0e45e8aa7614c00001102563a711d9dae6e 100644
> > --- a/fs/mount.h
> > +++ b/fs/mount.h
> > @@ -12,7 +12,10 @@ struct mnt_namespace {
> > struct user_namespace *user_ns;
> > struct ucounts *ucounts;
> > u64 seq; /* Sequence number to prevent loops */
> > - wait_queue_head_t poll;
> > + union {
> > + wait_queue_head_t poll;
> > + struct rcu_head mnt_ns_rcu;
> > + };
> > u64 event;
> > unsigned int nr_mounts; /* # of mounts in the namespace */
> > unsigned int pending_mounts;
> > diff --git a/fs/namespace.c b/fs/namespace.c
> > index 10fa18dd66018fadfdc9d18c59a851eed7bd55ad..52adee787eb1b6ee8831705b2b121854c3370fb3 100644
> > --- a/fs/namespace.c
> > +++ b/fs/namespace.c
> > @@ -79,6 +79,8 @@ static DECLARE_RWSEM(namespace_sem);
> > static HLIST_HEAD(unmounted); /* protected by namespace_sem */
> > static LIST_HEAD(ex_mountpoints); /* protected by namespace_sem */
> > static DEFINE_RWLOCK(mnt_ns_tree_lock);
> > +static seqcount_rwlock_t mnt_ns_tree_seqcount = SEQCNT_RWLOCK_ZERO(mnt_ns_tree_seqcount, &mnt_ns_tree_lock);
> > +
> > static struct rb_root mnt_ns_tree = RB_ROOT; /* protected by mnt_ns_tree_lock */
> >
> > struct mount_kattr {
> > @@ -105,17 +107,6 @@ EXPORT_SYMBOL_GPL(fs_kobj);
> > */
> > __cacheline_aligned_in_smp DEFINE_SEQLOCK(mount_lock);
> >
> > -static int mnt_ns_cmp(u64 seq, const struct mnt_namespace *ns)
> > -{
> > - u64 seq_b = ns->seq;
> > -
> > - if (seq < seq_b)
> > - return -1;
> > - if (seq > seq_b)
> > - return 1;
> > - return 0;
> > -}
> > -
> > static inline struct mnt_namespace *node_to_mnt_ns(const struct rb_node *node)
> > {
> > if (!node)
> > @@ -123,19 +114,41 @@ static inline struct mnt_namespace *node_to_mnt_ns(const struct rb_node *node)
> > return rb_entry(node, struct mnt_namespace, mnt_ns_tree_node);
> > }
> >
> > -static bool mnt_ns_less(struct rb_node *a, const struct rb_node *b)
> > +static int mnt_ns_cmp(struct rb_node *a, const struct rb_node *b)
> > {
> > struct mnt_namespace *ns_a = node_to_mnt_ns(a);
> > struct mnt_namespace *ns_b = node_to_mnt_ns(b);
> > u64 seq_a = ns_a->seq;
> > + u64 seq_b = ns_b->seq;
> > +
> > + if (seq_a < seq_b)
> > + return -1;
> > + if (seq_a > seq_b)
> > + return 1;
> > + return 0;
> > +}
> >
> > - return mnt_ns_cmp(seq_a, ns_b) < 0;
> > +static inline void mnt_ns_tree_write_lock(void)
> > +{
> > + write_lock(&mnt_ns_tree_lock);
> > + write_seqcount_begin(&mnt_ns_tree_seqcount);
> > +}
> > +
> > +static inline void mnt_ns_tree_write_unlock(void)
> > +{
> > + write_seqcount_end(&mnt_ns_tree_seqcount);
> > + write_unlock(&mnt_ns_tree_lock);
> > }
> >
> > static void mnt_ns_tree_add(struct mnt_namespace *ns)
> > {
> > - guard(write_lock)(&mnt_ns_tree_lock);
> > - rb_add(&ns->mnt_ns_tree_node, &mnt_ns_tree, mnt_ns_less);
> > + struct rb_node *node;
> > +
> > + mnt_ns_tree_write_lock();
> > + node = rb_find_add_rcu(&ns->mnt_ns_tree_node, &mnt_ns_tree, mnt_ns_cmp);
> > + mnt_ns_tree_write_unlock();
> > +
> > + WARN_ON_ONCE(node);
> > }
> >
> > static void mnt_ns_release(struct mnt_namespace *ns)
> > @@ -150,41 +163,36 @@ static void mnt_ns_release(struct mnt_namespace *ns)
> > }
> > DEFINE_FREE(mnt_ns_release, struct mnt_namespace *, if (_T) mnt_ns_release(_T))
> >
> > +static void mnt_ns_release_rcu(struct rcu_head *rcu)
> > +{
> > + struct mnt_namespace *mnt_ns;
> > +
> > + mnt_ns = container_of(rcu, struct mnt_namespace, mnt_ns_rcu);
> > + mnt_ns_release(mnt_ns);
> > +}
> > +
> > static void mnt_ns_tree_remove(struct mnt_namespace *ns)
> > {
> > /* remove from global mount namespace list */
> > if (!is_anon_ns(ns)) {
> > - guard(write_lock)(&mnt_ns_tree_lock);
> > + mnt_ns_tree_write_lock();
> > rb_erase(&ns->mnt_ns_tree_node, &mnt_ns_tree);
> > + mnt_ns_tree_write_unlock();
> > }
> >
> > - mnt_ns_release(ns);
> > + call_rcu(&ns->mnt_ns_rcu, mnt_ns_release_rcu);
> > }
> >
> > -/*
> > - * Returns the mount namespace which either has the specified id, or has the
> > - * next smallest id afer the specified one.
> > - */
> > -static struct mnt_namespace *mnt_ns_find_id_at(u64 mnt_ns_id)
> > +static int mnt_ns_find(const void *key, const struct rb_node *node)
> > {
> > - struct rb_node *node = mnt_ns_tree.rb_node;
> > - struct mnt_namespace *ret = NULL;
> > -
> > - lockdep_assert_held(&mnt_ns_tree_lock);
> > -
> > - while (node) {
> > - struct mnt_namespace *n = node_to_mnt_ns(node);
> > + const u64 mnt_ns_id = *(u64 *)key;
> > + const struct mnt_namespace *ns = node_to_mnt_ns(node);
> >
> > - if (mnt_ns_id <= n->seq) {
> > - ret = node_to_mnt_ns(node);
> > - if (mnt_ns_id == n->seq)
> > - break;
> > - node = node->rb_left;
> > - } else {
> > - node = node->rb_right;
> > - }
> > - }
> > - return ret;
> > + if (mnt_ns_id < ns->seq)
> > + return -1;
> > + if (mnt_ns_id > ns->seq)
> > + return 1;
> > + return 0;
> > }
> >
> > /*
> > @@ -194,18 +202,37 @@ static struct mnt_namespace *mnt_ns_find_id_at(u64 mnt_ns_id)
> > * namespace the @namespace_sem must first be acquired. If the namespace has
> > * already shut down before acquiring @namespace_sem, {list,stat}mount() will
> > * see that the mount rbtree of the namespace is empty.
> > + *
> > + * Note the lookup is lockless protected by a sequence counter. We only
> > + * need to guard against false negatives as false positives aren't
> > + * possible. So if we didn't find a mount namespace and the sequence
> > + * counter has changed we need to retry. If the sequence counter is
> > + * still the same we know the search actually failed.
> > */
> > static struct mnt_namespace *lookup_mnt_ns(u64 mnt_ns_id)
> > {
> > - struct mnt_namespace *ns;
> > + struct mnt_namespace *ns;
> > + struct rb_node *node;
> > + unsigned int seq;
> > +
> > + guard(rcu)();
> > + do {
> > + seq = read_seqcount_begin(&mnt_ns_tree_seqcount);
> > + node = rb_find_rcu(&mnt_ns_id, &mnt_ns_tree, mnt_ns_find);
> > + if (node)
> > + break;
> > + } while (read_seqcount_retry(&mnt_ns_tree_seqcount, seq));
> >
> > - guard(read_lock)(&mnt_ns_tree_lock);
> > - ns = mnt_ns_find_id_at(mnt_ns_id);
> > - if (!ns || ns->seq != mnt_ns_id)
> > - return NULL;
> > + if (!node)
> > + return NULL;
> >
> > - refcount_inc(&ns->passive);
> > - return ns;
> > + /*
> > + * The last reference count is put with RCU delay so we can
> > + * unconditonally acquire a reference here.
> > + */
> > + ns = node_to_mnt_ns(node);
> > + refcount_inc(&ns->passive);
> > + return ns;
> > }
> >
> > static inline void lock_mount_hash(void)
> >
> > --
> > 2.45.2
> >
>
> Hi Christian Brauner ,
>
> Greetings!
>
> I used Syzkaller and found that there is WARNING in mnt_ns_release in linux v6.13-rc3.
Right, the lockdep assertion is wrong and needs to be dropped.
next prev parent reply other threads:[~2024-12-19 13:46 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 23:03 [PATCH v3 00/10] fs: lockless mntns lookup Christian Brauner
2024-12-12 23:03 ` [PATCH v3 01/10] mount: remove inlude/nospec.h include Christian Brauner
2024-12-12 23:03 ` [PATCH v3 02/10] fs: add mount namespace to rbtree late Christian Brauner
2024-12-12 23:03 ` [PATCH v3 03/10] fs: lockless mntns rbtree lookup Christian Brauner
2024-12-13 8:50 ` Peter Zijlstra
2024-12-13 14:11 ` Jeff Layton
2024-12-13 18:44 ` Christian Brauner
2024-12-13 19:02 ` Jeff Layton
2024-12-19 9:20 ` Lai, Yi
2024-12-19 13:45 ` Christian Brauner [this message]
2024-12-12 23:03 ` [PATCH v3 04/10] rculist: add list_bidir_{del,prev}_rcu() Christian Brauner
2024-12-13 0:42 ` Paul E. McKenney
2024-12-13 13:49 ` Christian Brauner
2024-12-12 23:03 ` [PATCH v3 05/10] fs: lockless mntns lookup for nsfs Christian Brauner
2024-12-12 23:03 ` [PATCH v3 06/10] fs: simplify rwlock to spinlock Christian Brauner
2024-12-12 23:03 ` [PATCH v3 07/10] seltests: move nsfs into filesystems subfolder Christian Brauner
2024-12-12 23:03 ` [PATCH v3 08/10] selftests: add tests for mntns iteration Christian Brauner
2024-12-12 23:03 ` [PATCH v3 09/10] selftests: remove unneeded include Christian Brauner
2024-12-12 23:03 ` [PATCH v3 10/10] samples: add test-list-all-mounts Christian Brauner
2024-12-13 19:03 ` [PATCH v3 00/10] fs: lockless mntns lookup Jeff Layton
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=20241219-kasten-sonst-b3d92ae618fe@brauner \
--to=brauner@kernel.org \
--cc=jlayton@kernel.org \
--cc=josef@toxicpanda.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=paulmck@kernel.org \
--cc=peterz@infradead.org \
--cc=yi1.lai@intel.com \
--cc=yi1.lai@linux.intel.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: 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