Commit 0c777e27 authored by J. Bruce Fields's avatar J. Bruce Fields Committed by Sasha Levin

nfsd4: buffer-length check for SUPPATTR_EXCLCREAT

This was an omission from 8c18f205
"nfsd41: SUPPATTR_EXCLCREAT attribute".

Cc: Benny Halevy <bhalevy@primarydata.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>

(cherry picked from commit de3997a7)
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 1bea3723
......@@ -2416,6 +2416,8 @@ nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
WRITE64(stat.ino);
}
if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
if ((buflen -= 16) < 0)
goto out_resource;
WRITE32(3);
WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment