public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute
@ 2025-05-06 15:01 cel
  2025-05-06 15:10 ` Roland Mainz
  2025-05-07  5:32 ` Christoph Hellwig
  0 siblings, 2 replies; 3+ messages in thread
From: cel @ 2025-05-06 15:01 UTC (permalink / raw)
  To: NeilBrown, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey
  Cc: linux-nfs, Chuck Lever, Roland Mainz, Christoph Hellwig

From: Chuck Lever <chuck.lever@oracle.com>

RFC 7862 states that if an NFS server implements a CLONE operation,
it MUST also implement FATTR4_CLONE_BLKSIZE. NFSD implements CLONE,
but does not implement FATTR4_CLONE_BLKSIZE.

Note that in Section 12.2, RFC 7862 claims that
FATTR4_CLONE_BLKSIZE is RECOMMENDED, not REQUIRED. Likely this is
because a minor version is not permitted to add a REQUIRED
attribute. Confusing.

We assume this attribute reports a block size as a count of bytes,
as RFC 7862 does not specify a unit.

Reported-by: Roland Mainz <roland.mainz@nrubsig.org>
Suggested-by: Christoph Hellwig <hch@infradead.org>
X-Cc: stable@vger.kernel.org # v6.7+
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 fs/nfsd/nfs4xdr.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index e67420729ecd..59d186ea11dc 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3391,6 +3391,14 @@ static __be32 nfsd4_encode_fattr4_suppattr_exclcreat(struct xdr_stream *xdr,
 	return nfsd4_encode_bitmap4(xdr, supp[0], supp[1], supp[2]);
 }
 
+static __be32 nfsd4_encode_fattr4_clone_blksize(struct xdr_stream *xdr,
+						const struct nfsd4_fattr_args *args)
+{
+	struct inode *inode = d_inode(args->dentry);
+
+	return nfsd4_encode_uint32_t(xdr, inode->i_sb->s_blocksize);
+}
+
 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
 static __be32 nfsd4_encode_fattr4_sec_label(struct xdr_stream *xdr,
 					    const struct nfsd4_fattr_args *args)
@@ -3545,7 +3553,7 @@ static const nfsd4_enc_attr nfsd4_enc_fattr4_encode_ops[] = {
 	[FATTR4_MODE_SET_MASKED]	= nfsd4_encode_fattr4__noop,
 	[FATTR4_SUPPATTR_EXCLCREAT]	= nfsd4_encode_fattr4_suppattr_exclcreat,
 	[FATTR4_FS_CHARSET_CAP]		= nfsd4_encode_fattr4__noop,
-	[FATTR4_CLONE_BLKSIZE]		= nfsd4_encode_fattr4__noop,
+	[FATTR4_CLONE_BLKSIZE]		= nfsd4_encode_fattr4_clone_blksize,
 	[FATTR4_SPACE_FREED]		= nfsd4_encode_fattr4__noop,
 	[FATTR4_CHANGE_ATTR_TYPE]	= nfsd4_encode_fattr4__noop,
 
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute
  2025-05-06 15:01 [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute cel
@ 2025-05-06 15:10 ` Roland Mainz
  2025-05-07  5:32 ` Christoph Hellwig
  1 sibling, 0 replies; 3+ messages in thread
From: Roland Mainz @ 2025-05-06 15:10 UTC (permalink / raw)
  To: linux-nfs

On Tue, May 6, 2025 at 5:01 PM <cel@kernel.org> wrote:
>
> From: Chuck Lever <chuck.lever@oracle.com>
>
> RFC 7862 states that if an NFS server implements a CLONE operation,
> it MUST also implement FATTR4_CLONE_BLKSIZE. NFSD implements CLONE,
> but does not implement FATTR4_CLONE_BLKSIZE.
>
> Note that in Section 12.2, RFC 7862 claims that
> FATTR4_CLONE_BLKSIZE is RECOMMENDED, not REQUIRED. Likely this is
> because a minor version is not permitted to add a REQUIRED
> attribute. Confusing.
>
> We assume this attribute reports a block size as a count of bytes,
> as RFC 7862 does not specify a unit.
>
> Reported-by: Roland Mainz <roland.mainz@nrubsig.org>
> Suggested-by: Christoph Hellwig <hch@infradead.org>
> X-Cc: stable@vger.kernel.org # v6.7+
> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
> ---
>  fs/nfsd/nfs4xdr.c | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index e67420729ecd..59d186ea11dc 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -3391,6 +3391,14 @@ static __be32 nfsd4_encode_fattr4_suppattr_exclcreat(struct xdr_stream *xdr,
>         return nfsd4_encode_bitmap4(xdr, supp[0], supp[1], supp[2]);
>  }
>
> +static __be32 nfsd4_encode_fattr4_clone_blksize(struct xdr_stream *xdr,
> +                                               const struct nfsd4_fattr_args *args)
> +{
> +       struct inode *inode = d_inode(args->dentry);
> +
> +       return nfsd4_encode_uint32_t(xdr, inode->i_sb->s_blocksize);
> +}
> +
>  #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
>  static __be32 nfsd4_encode_fattr4_sec_label(struct xdr_stream *xdr,
>                                             const struct nfsd4_fattr_args *args)
> @@ -3545,7 +3553,7 @@ static const nfsd4_enc_attr nfsd4_enc_fattr4_encode_ops[] = {
>         [FATTR4_MODE_SET_MASKED]        = nfsd4_encode_fattr4__noop,
>         [FATTR4_SUPPATTR_EXCLCREAT]     = nfsd4_encode_fattr4_suppattr_exclcreat,
>         [FATTR4_FS_CHARSET_CAP]         = nfsd4_encode_fattr4__noop,
> -       [FATTR4_CLONE_BLKSIZE]          = nfsd4_encode_fattr4__noop,
> +       [FATTR4_CLONE_BLKSIZE]          = nfsd4_encode_fattr4_clone_blksize,
>         [FATTR4_SPACE_FREED]            = nfsd4_encode_fattr4__noop,
>         [FATTR4_CHANGE_ATTR_TYPE]       = nfsd4_encode_fattr4__noop,

Looks good to me -  Reviewed-by: Roland Mainz <roland.mainz@nrubsig.org>

----

Bye,
Roland
-- 
  __ .  . __
 (o.\ \/ /.o) roland.mainz@nrubsig.org
  \__\/\/__/  MPEG specialist, C&&JAVA&&Sun&&Unix programmer
  /O /==\ O\  TEL +49 641 3992797
 (;O/ \/ \O;)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute
  2025-05-06 15:01 [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute cel
  2025-05-06 15:10 ` Roland Mainz
@ 2025-05-07  5:32 ` Christoph Hellwig
  1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2025-05-07  5:32 UTC (permalink / raw)
  To: cel
  Cc: NeilBrown, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey,
	linux-nfs, Chuck Lever, Roland Mainz, Christoph Hellwig

On Tue, May 06, 2025 at 11:01:05AM -0400, cel@kernel.org wrote:
> +static __be32 nfsd4_encode_fattr4_clone_blksize(struct xdr_stream *xdr,
> +						const struct nfsd4_fattr_args *args)

Overly long line here.  And easily avoided by using the much more
maintainable two-tab indents for prototype continuations.

> +{
> +	struct inode *inode = d_inode(args->dentry);
> +
> +	return nfsd4_encode_uint32_t(xdr, inode->i_sb->s_blocksize);

That's a bit of an assumption.  The generic clone prep function uses
the block size, but file systems aren't required to actually use
generic_remap_file_range_prep.

Probably still the best we can do, but a comment explaining including
a reference to generic_remap_checks / generic_remap_file_range_prep
would be very useful here.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-05-07  5:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-06 15:01 [PATCH v2] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute cel
2025-05-06 15:10 ` Roland Mainz
2025-05-07  5:32 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox