]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
NFSD: Replace READ* macros in nfsd4_decode_verify()
authorChuck Lever <chuck.lever@oracle.com>
Tue, 3 Nov 2020 19:40:32 +0000 (14:40 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 21 Jun 2024 12:52:40 +0000 (14:52 +0200)
[ Upstream commit 67cd453eeda86be90f83a0f4798f33832cf2d98c ]

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/nfsd/nfs4xdr.c

index 057cc1579f9b868d5f521bb82a66136ffbb6f693..231a2628e3e6f9e55a2c283cd4369eba9ad43926 100644 (file)
@@ -1370,20 +1370,27 @@ nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_s
 static __be32
 nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
 {
-       DECODE_HEAD;
+       __be32 *p, status;
 
-       if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
-               goto out;
+       status = nfsd4_decode_bitmap4(argp, verify->ve_bmval,
+                                     ARRAY_SIZE(verify->ve_bmval));
+       if (status)
+               return status;
 
        /* For convenience's sake, we compare raw xdr'd attributes in
         * nfsd4_proc_verify */
 
-       READ_BUF(4);
-       verify->ve_attrlen = be32_to_cpup(p++);
-       READ_BUF(verify->ve_attrlen);
-       SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
+       if (xdr_stream_decode_u32(argp->xdr, &verify->ve_attrlen) < 0)
+               return nfserr_bad_xdr;
+       p = xdr_inline_decode(argp->xdr, verify->ve_attrlen);
+       if (!p)
+               return nfserr_bad_xdr;
+       verify->ve_attrval = svcxdr_tmpalloc(argp, verify->ve_attrlen);
+       if (!verify->ve_attrval)
+               return nfserr_jukebox;
+       memcpy(verify->ve_attrval, p, verify->ve_attrlen);
 
-       DECODE_TAIL;
+       return nfs_ok;
 }
 
 static __be32