NFSD: Update READDIR3args decoders to use struct xdr_stream
authorChuck Lever <chuck.lever@oracle.com>
Mon, 19 Oct 2020 17:23:52 +0000 (13:23 -0400)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 25 Jan 2021 14:36:24 +0000 (09:36 -0500)
As an additional clean up, neither nfsd3_proc_readdir() nor
nfsd3_proc_readdirplus() make use of the dircount argument, so
remove it from struct nfsd3_readdirargs.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfs3xdr.c
fs/nfsd/xdr3.h

index 8394aeb..eb55be1 100644 (file)
@@ -559,33 +559,43 @@ nfs3svc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p)
 int
 nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p)
 {
+       struct xdr_stream *xdr = &rqstp->rq_arg_stream;
        struct nfsd3_readdirargs *args = rqstp->rq_argp;
 
-       p = decode_fh(p, &args->fh);
-       if (!p)
+       if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
+               return 0;
+       if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
+               return 0;
+       args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
+       if (!args->verf)
+               return 0;
+       if (xdr_stream_decode_u32(xdr, &args->count) < 0)
                return 0;
-       p = xdr_decode_hyper(p, &args->cookie);
-       args->verf   = p; p += 2;
-       args->dircount = ~0;
-       args->count  = ntohl(*p++);
 
-       return xdr_argsize_check(rqstp, p);
+       return 1;
 }
 
 int
 nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, __be32 *p)
 {
+       struct xdr_stream *xdr = &rqstp->rq_arg_stream;
        struct nfsd3_readdirargs *args = rqstp->rq_argp;
+       u32 dircount;
 
-       p = decode_fh(p, &args->fh);
-       if (!p)
+       if (!svcxdr_decode_nfs_fh3(xdr, &args->fh))
+               return 0;
+       if (xdr_stream_decode_u64(xdr, &args->cookie) < 0)
+               return 0;
+       args->verf = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
+       if (!args->verf)
+               return 0;
+       /* dircount is ignored */
+       if (xdr_stream_decode_u32(xdr, &dircount) < 0)
+               return 0;
+       if (xdr_stream_decode_u32(xdr, &args->count) < 0)
                return 0;
-       p = xdr_decode_hyper(p, &args->cookie);
-       args->verf     = p; p += 2;
-       args->dircount = ntohl(*p++);
-       args->count    = ntohl(*p++);
 
-       return xdr_argsize_check(rqstp, p);
+       return 1;
 }
 
 int
index 789a364..64af5b0 100644 (file)
@@ -90,7 +90,6 @@ struct nfsd3_symlinkargs {
 struct nfsd3_readdirargs {
        struct svc_fh           fh;
        __u64                   cookie;
-       __u32                   dircount;
        __u32                   count;
        __be32 *                verf;
 };