From: J. Bruce Fields Date: Tue, 26 Mar 2013 18:11:13 +0000 (-0400) Subject: nfsd4: reject "negative" acl lengths X-Git-Tag: upstream/snapshot3+hdmi~5104^2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=64a817cfbded8674f345d1117b117f942a351a69;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git nfsd4: reject "negative" acl lengths Since we only enforce an upper bound, not a lower bound, a "negative" length can get through here. The symptom seen was a warning when we attempt to a kmalloc with an excessive size. Reported-by: Toralf Förster Cc: stable@kernel.org Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 0116886..a272007 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -264,7 +264,7 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, iattr->ia_valid |= ATTR_SIZE; } if (bmval[0] & FATTR4_WORD0_ACL) { - int nace; + u32 nace; struct nfs4_ace *ace; READ_BUF(4); len += 4;