Re: [RFC PATCH] fs: elide the smp_rmb fence in fd_install()

From: Christian Brauner
Date: Thu Dec 05 2024 - 09:58:28 EST


On Thu, Dec 05, 2024 at 01:03:32PM +0100, Mateusz Guzik wrote:
> 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@xxxxxxxxx>
> ---
>
> 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);

I think this BUG_ON() here is a bit unnecessary.

> + files->resize_in_progress = true;

Minor: Why move that into expand_fdtable()? Having
files->resize_in_progress in here doesn't add much more clarity than
just having it set around expand_fdtable() in the caller.

Leaving it there also makes the patch smaller and clearer to follow as
you neither need the additional err nor the goto.

> 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
>