[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241205120332.1578562-1-mjguzik@gmail.com>
Date: Thu, 5 Dec 2024 13:03:32 +0100
From: Mateusz Guzik <mjguzik@...il.com>
To: paulmck@...nel.org
Cc: brauner@...nel.org,
viro@...iv.linux.org.uk,
jack@...e.cz,
linux-fsdevel@...r.kernel.org,
torvalds@...ux-foundation.org,
edumazet@...gle.com,
linux-kernel@...r.kernel.org,
Mateusz Guzik <mjguzik@...il.com>
Subject: [RFC PATCH] fs: elide the smp_rmb fence in fd_install()
See the added commentary for reasoning.
->resize_in_progress handling is moved inside of expand_fdtable() for
clarity.
Whacks an actual fence on arm64.
Signed-off-by: Mateusz Guzik <mjguzik@...il.com>
---
To my reading of commentary above synchronize_rcu() this works fine(tm)
and there is even other code relying on the same idea (percpu rwsems
(see percpu_down_read for example), maybe there is more).
However, given that barriers like to be tricky and I know about squat of
RCU internals, I refer to Paul here.
Paul, does this work? If not, any trivial tweaks to make it so?
I mean smp_rmb looks dodgeable, at worst I made a mistake somewhere and
the specific patch does not work.
fs/file.c | 50 +++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 39 insertions(+), 11 deletions(-)
diff --git a/fs/file.c b/fs/file.c
index 019fb9acf91b..d065a24980da 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -233,28 +233,54 @@ static int expand_fdtable(struct files_struct *files, unsigned int nr)
__acquires(files->file_lock)
{
struct fdtable *new_fdt, *cur_fdt;
+ int err = 0;
+ BUG_ON(files->resize_in_progress);
+ files->resize_in_progress = true;
spin_unlock(&files->file_lock);
new_fdt = alloc_fdtable(nr + 1);
- /* make sure all fd_install() have seen resize_in_progress
- * or have finished their rcu_read_lock_sched() section.
+ /*
+ * Synchronize against the lockless fd_install().
+ *
+ * All work in that routine is enclosed with RCU sched section.
+ *
+ * We published ->resize_in_progress = true with the unlock above,
+ * which makes new arrivals bail to locked operation.
+ *
+ * Now we only need to wait for CPUs which did not observe the flag to
+ * leave and make sure their store to the fd table got published.
+ *
+ * We do it with synchronize_rcu(), which both waits for all sections to
+ * finish (taking care of the first part) and guarantees all CPUs issued a
+ * full fence (taking care of the second part).
+ *
+ * Note we know there is nobody to wait for if we are dealing with a
+ * single-threaded process.
*/
if (atomic_read(&files->count) > 1)
synchronize_rcu();
spin_lock(&files->file_lock);
- if (IS_ERR(new_fdt))
- return PTR_ERR(new_fdt);
+ if (IS_ERR(new_fdt)) {
+ err = PTR_ERR(new_fdt);
+ goto out;
+ }
cur_fdt = files_fdtable(files);
BUG_ON(nr < cur_fdt->max_fds);
copy_fdtable(new_fdt, cur_fdt);
rcu_assign_pointer(files->fdt, new_fdt);
if (cur_fdt != &files->fdtab)
call_rcu(&cur_fdt->rcu, free_fdtable_rcu);
- /* coupled with smp_rmb() in fd_install() */
+
+ /*
+ * Publish everything before we unset ->resize_in_progress, see above
+ * for an explanation.
+ */
smp_wmb();
- return 0;
+out:
+ files->resize_in_progress = false;
+ return err;
}
/*
@@ -290,9 +316,7 @@ static int expand_files(struct files_struct *files, unsigned int nr)
return -EMFILE;
/* All good, so we try */
- files->resize_in_progress = true;
error = expand_fdtable(files, nr);
- files->resize_in_progress = false;
wake_up_all(&files->resize_wait);
return error;
@@ -629,13 +653,18 @@ EXPORT_SYMBOL(put_unused_fd);
void fd_install(unsigned int fd, struct file *file)
{
- struct files_struct *files = current->files;
+ struct files_struct *files;
struct fdtable *fdt;
if (WARN_ON_ONCE(unlikely(file->f_mode & FMODE_BACKING)))
return;
+ /*
+ * Synchronized with expand_fdtable(), see that routine for an
+ * explanation.
+ */
rcu_read_lock_sched();
+ files = READ_ONCE(current->files);
if (unlikely(files->resize_in_progress)) {
rcu_read_unlock_sched();
@@ -646,8 +675,7 @@ void fd_install(unsigned int fd, struct file *file)
spin_unlock(&files->file_lock);
return;
}
- /* coupled with smp_wmb() in expand_fdtable() */
- smp_rmb();
+
fdt = rcu_dereference_sched(files->fdt);
BUG_ON(fdt->fd[fd] != NULL);
rcu_assign_pointer(fdt->fd[fd], file);
--
2.43.0
Powered by blists - more mailing lists