* [PATCH v2] splice: emit a single fsnotify access event per NFSD READ
@ 2026-09-01 13:53 Chuck Lever
2026-09-01 14:27 ` Jan Kara
2026-09-02 5:31 ` Christoph Hellwig
0 siblings, 2 replies; 3+ messages in thread
From: Chuck Lever @ 2026-09-01 13:53 UTC (permalink / raw)
To: Al Viro, Christian Brauner, Jan Kara
Cc: linux-fsdevel, linux-nfs, Ameer Hamza, Amir Goldstein
nfsd_finish_read() calls fsnotify_access() on both NFSD read paths,
because splice_direct_to_actor() does not emit the event itself. The
iterator path reaches nfsd_finish_read() from vfs_iocb_iter_read(),
which has already emitted one. A READ served without splice therefore
emits two access events.
NFSD does not use splice for the GSS integrity and privacy services, so
a READ on a sec=krb5i or sec=krb5p mount takes the iterator. An inotify
watch on that file sees the READ twice.
Reported-by: Ameer Hamza <ameer.hamza@truenas.com>
Closes: https://lore.kernel.org/linux-nfs/20260818225715.572140-1-ameer.hamza@truenas.com/
Suggested-by: Amir Goldstein <amir73il@gmail.com>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Link: https://lore.kernel.org/linux-nfs/CAOQ4uxgUOqFv6pVmdT_+4DjA0KQoQDCzN2Xz=xm1FyumewHZXg@mail.gmail.com/
Signed-off-by: Chuck Lever <cel@kernel.org>
---
Changes in v2:
- Rename the new helper to vfs_splice_to_actor()
- Take pos, count, and actor data, not a splice_desc
- Link to v1: https://lore.kernel.org/r/20260824161021.245575-1-cel@kernel.org
---
fs/nfsd/vfs.c | 13 ++--------
fs/splice.c | 58 +++++++++++++++++++++++++++++++-----------
include/linux/splice.h | 4 +--
3 files changed, 47 insertions(+), 28 deletions(-)
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index f9131827d391..4789f2ec2078 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -1046,7 +1046,6 @@ static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
nfsd_stats_io_read_add(nn, fhp->fh_export, host_err);
*eof = nfsd_eof_on_read(file, offset, host_err, *count);
*count = host_err;
- fsnotify_access(file);
trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
return 0;
} else {
@@ -1071,19 +1070,11 @@ __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
struct file *file, loff_t offset, unsigned long *count,
u32 *eof)
{
- struct splice_desc sd = {
- .len = 0,
- .total_len = *count,
- .pos = offset,
- .u.data = rqstp,
- };
ssize_t host_err;
trace_nfsd_read_splice(rqstp, fhp, offset, *count);
- host_err = rw_verify_area(READ, file, &offset, *count);
- if (!host_err)
- host_err = splice_direct_to_actor(file, &sd,
- nfsd_direct_splice_actor);
+ host_err = vfs_splice_to_actor(file, offset, *count,
+ nfsd_direct_splice_actor, rqstp);
return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
}
diff --git a/fs/splice.c b/fs/splice.c
index 9d8f63e2fd1a..96cff31d97e1 100644
--- a/fs/splice.c
+++ b/fs/splice.c
@@ -1009,21 +1009,14 @@ ssize_t vfs_splice_read(struct file *in, loff_t *ppos,
}
EXPORT_SYMBOL_GPL(vfs_splice_read);
-/**
- * splice_direct_to_actor - splices data directly between two non-pipes
- * @in: file to splice from
- * @sd: actor information on where to splice to
- * @actor: handles the data splicing
- *
- * Description:
- * This is a special case helper to splice directly between two
- * points, without requiring an explicit pipe. Internally an allocated
- * pipe is cached in the process, and reused during the lifetime of
- * that process.
- *
+/*
+ * This is a special case helper to splice directly between two
+ * points, without requiring an explicit pipe. Internally an allocated
+ * pipe is cached in the process, and reused during the lifetime of
+ * that process.
*/
-ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
- splice_direct_actor *actor)
+static ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
+ splice_direct_actor *actor)
{
struct pipe_inode_info *pipe;
ssize_t ret, bytes;
@@ -1147,7 +1140,42 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
goto done;
}
-EXPORT_SYMBOL(splice_direct_to_actor);
+
+/**
+ * vfs_splice_to_actor - call an actor on data read from a file
+ * @in: file to read from
+ * @pos: file offset
+ * @count: maximum number of bytes to read
+ * @actor: callback to process a pipe's worth of data
+ * @private: private data passed to @actor
+ *
+ * Read up to @count worth of data from @in at @pos, and call @actor
+ * when the hidden pipe used to buffer the data is full. Ensures the
+ * read is allowed using rw_verify_area() and emits fsnotify access
+ * events. @in must be seekable (FMODE_LSEEK).
+ *
+ * Return: The number of bytes spliced, or a negative errno.
+ */
+ssize_t vfs_splice_to_actor(struct file *in, loff_t pos, size_t count,
+ splice_direct_actor *actor, void *private)
+{
+ struct splice_desc sd = {
+ .total_len = count,
+ .pos = pos,
+ .u.data = private,
+ };
+ ssize_t ret;
+
+ ret = rw_verify_area(READ, in, &sd.pos, sd.total_len);
+ if (ret < 0)
+ return ret;
+
+ ret = splice_direct_to_actor(in, &sd, actor);
+ if (ret >= 0)
+ fsnotify_access(in);
+ return ret;
+}
+EXPORT_SYMBOL(vfs_splice_to_actor);
static int direct_splice_actor(struct pipe_inode_info *pipe,
struct splice_desc *sd)
diff --git a/include/linux/splice.h b/include/linux/splice.h
index 9dec4861d09f..0e6c955dc6ff 100644
--- a/include/linux/splice.h
+++ b/include/linux/splice.h
@@ -79,8 +79,8 @@ ssize_t add_to_pipe(struct pipe_inode_info *pipe, struct pipe_buffer *buf);
ssize_t vfs_splice_read(struct file *in, loff_t *ppos,
struct pipe_inode_info *pipe, size_t len,
unsigned int flags);
-ssize_t splice_direct_to_actor(struct file *file, struct splice_desc *sd,
- splice_direct_actor *actor);
+ssize_t vfs_splice_to_actor(struct file *file, loff_t pos, size_t count,
+ splice_direct_actor *actor, void *private);
ssize_t do_splice(struct file *in, loff_t *off_in, struct file *out,
loff_t *off_out, size_t len, unsigned int flags);
ssize_t do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] splice: emit a single fsnotify access event per NFSD READ
2026-09-01 13:53 [PATCH v2] splice: emit a single fsnotify access event per NFSD READ Chuck Lever
@ 2026-09-01 14:27 ` Jan Kara
2026-09-02 5:31 ` Christoph Hellwig
1 sibling, 0 replies; 3+ messages in thread
From: Jan Kara @ 2026-09-01 14:27 UTC (permalink / raw)
To: Chuck Lever
Cc: Al Viro, Christian Brauner, Jan Kara, linux-fsdevel, linux-nfs,
Ameer Hamza, Amir Goldstein
On Tue 01-09-26 09:53:29, Chuck Lever wrote:
> nfsd_finish_read() calls fsnotify_access() on both NFSD read paths,
> because splice_direct_to_actor() does not emit the event itself. The
> iterator path reaches nfsd_finish_read() from vfs_iocb_iter_read(),
> which has already emitted one. A READ served without splice therefore
> emits two access events.
>
> NFSD does not use splice for the GSS integrity and privacy services, so
> a READ on a sec=krb5i or sec=krb5p mount takes the iterator. An inotify
> watch on that file sees the READ twice.
>
> Reported-by: Ameer Hamza <ameer.hamza@truenas.com>
> Closes: https://lore.kernel.org/linux-nfs/20260818225715.572140-1-ameer.hamza@truenas.com/
> Suggested-by: Amir Goldstein <amir73il@gmail.com>
> Reviewed-by: Amir Goldstein <amir73il@gmail.com>
> Link: https://lore.kernel.org/linux-nfs/CAOQ4uxgUOqFv6pVmdT_+4DjA0KQoQDCzN2Xz=xm1FyumewHZXg@mail.gmail.com/
> Signed-off-by: Chuck Lever <cel@kernel.org>
Looks good. Feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> Changes in v2:
> - Rename the new helper to vfs_splice_to_actor()
> - Take pos, count, and actor data, not a splice_desc
> - Link to v1: https://lore.kernel.org/r/20260824161021.245575-1-cel@kernel.org
> ---
> fs/nfsd/vfs.c | 13 ++--------
> fs/splice.c | 58 +++++++++++++++++++++++++++++++-----------
> include/linux/splice.h | 4 +--
> 3 files changed, 47 insertions(+), 28 deletions(-)
>
> diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> index f9131827d391..4789f2ec2078 100644
> --- a/fs/nfsd/vfs.c
> +++ b/fs/nfsd/vfs.c
> @@ -1046,7 +1046,6 @@ static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
> nfsd_stats_io_read_add(nn, fhp->fh_export, host_err);
> *eof = nfsd_eof_on_read(file, offset, host_err, *count);
> *count = host_err;
> - fsnotify_access(file);
> trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
> return 0;
> } else {
> @@ -1071,19 +1070,11 @@ __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
> struct file *file, loff_t offset, unsigned long *count,
> u32 *eof)
> {
> - struct splice_desc sd = {
> - .len = 0,
> - .total_len = *count,
> - .pos = offset,
> - .u.data = rqstp,
> - };
> ssize_t host_err;
>
> trace_nfsd_read_splice(rqstp, fhp, offset, *count);
> - host_err = rw_verify_area(READ, file, &offset, *count);
> - if (!host_err)
> - host_err = splice_direct_to_actor(file, &sd,
> - nfsd_direct_splice_actor);
> + host_err = vfs_splice_to_actor(file, offset, *count,
> + nfsd_direct_splice_actor, rqstp);
> return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
> }
>
> diff --git a/fs/splice.c b/fs/splice.c
> index 9d8f63e2fd1a..96cff31d97e1 100644
> --- a/fs/splice.c
> +++ b/fs/splice.c
> @@ -1009,21 +1009,14 @@ ssize_t vfs_splice_read(struct file *in, loff_t *ppos,
> }
> EXPORT_SYMBOL_GPL(vfs_splice_read);
>
> -/**
> - * splice_direct_to_actor - splices data directly between two non-pipes
> - * @in: file to splice from
> - * @sd: actor information on where to splice to
> - * @actor: handles the data splicing
> - *
> - * Description:
> - * This is a special case helper to splice directly between two
> - * points, without requiring an explicit pipe. Internally an allocated
> - * pipe is cached in the process, and reused during the lifetime of
> - * that process.
> - *
> +/*
> + * This is a special case helper to splice directly between two
> + * points, without requiring an explicit pipe. Internally an allocated
> + * pipe is cached in the process, and reused during the lifetime of
> + * that process.
> */
> -ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
> - splice_direct_actor *actor)
> +static ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
> + splice_direct_actor *actor)
> {
> struct pipe_inode_info *pipe;
> ssize_t ret, bytes;
> @@ -1147,7 +1140,42 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
>
> goto done;
> }
> -EXPORT_SYMBOL(splice_direct_to_actor);
> +
> +/**
> + * vfs_splice_to_actor - call an actor on data read from a file
> + * @in: file to read from
> + * @pos: file offset
> + * @count: maximum number of bytes to read
> + * @actor: callback to process a pipe's worth of data
> + * @private: private data passed to @actor
> + *
> + * Read up to @count worth of data from @in at @pos, and call @actor
> + * when the hidden pipe used to buffer the data is full. Ensures the
> + * read is allowed using rw_verify_area() and emits fsnotify access
> + * events. @in must be seekable (FMODE_LSEEK).
> + *
> + * Return: The number of bytes spliced, or a negative errno.
> + */
> +ssize_t vfs_splice_to_actor(struct file *in, loff_t pos, size_t count,
> + splice_direct_actor *actor, void *private)
> +{
> + struct splice_desc sd = {
> + .total_len = count,
> + .pos = pos,
> + .u.data = private,
> + };
> + ssize_t ret;
> +
> + ret = rw_verify_area(READ, in, &sd.pos, sd.total_len);
> + if (ret < 0)
> + return ret;
> +
> + ret = splice_direct_to_actor(in, &sd, actor);
> + if (ret >= 0)
> + fsnotify_access(in);
> + return ret;
> +}
> +EXPORT_SYMBOL(vfs_splice_to_actor);
>
> static int direct_splice_actor(struct pipe_inode_info *pipe,
> struct splice_desc *sd)
> diff --git a/include/linux/splice.h b/include/linux/splice.h
> index 9dec4861d09f..0e6c955dc6ff 100644
> --- a/include/linux/splice.h
> +++ b/include/linux/splice.h
> @@ -79,8 +79,8 @@ ssize_t add_to_pipe(struct pipe_inode_info *pipe, struct pipe_buffer *buf);
> ssize_t vfs_splice_read(struct file *in, loff_t *ppos,
> struct pipe_inode_info *pipe, size_t len,
> unsigned int flags);
> -ssize_t splice_direct_to_actor(struct file *file, struct splice_desc *sd,
> - splice_direct_actor *actor);
> +ssize_t vfs_splice_to_actor(struct file *file, loff_t pos, size_t count,
> + splice_direct_actor *actor, void *private);
> ssize_t do_splice(struct file *in, loff_t *off_in, struct file *out,
> loff_t *off_out, size_t len, unsigned int flags);
> ssize_t do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
> --
> 2.55.0
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] splice: emit a single fsnotify access event per NFSD READ
2026-09-01 13:53 [PATCH v2] splice: emit a single fsnotify access event per NFSD READ Chuck Lever
2026-09-01 14:27 ` Jan Kara
@ 2026-09-02 5:31 ` Christoph Hellwig
1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2026-09-02 5:31 UTC (permalink / raw)
To: Chuck Lever
Cc: Al Viro, Christian Brauner, Jan Kara, linux-fsdevel, linux-nfs,
Ameer Hamza, Amir Goldstein
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-02 5:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 13:53 [PATCH v2] splice: emit a single fsnotify access event per NFSD READ Chuck Lever
2026-09-01 14:27 ` Jan Kara
2026-09-02 5:31 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox