Skip to content

Commit 2827099

Browse files
committed
nfsd: fix heap overflow in NFSv4.0 LOCK replay cache
jira VULN-180163 cve CVE-2026-31402 commit-author Jeff Layton <jlayton@kernel.org> commit 5133b61 upstream-diff Used linux-5.10.y backport f9fcb4441f6c02bb20c2eb340101e27dfe23607c for the clean cherry-pick. The modified function `nfsd4_encode_operation()' is identical in both versions The NFSv4.0 replay cache uses a fixed 112-byte inline buffer (rp_ibuf[NFSD4_REPLAY_ISIZE]) to store encoded operation responses. This size was calculated based on OPEN responses and does not account for LOCK denied responses, which include the conflicting lock owner as a variable-length field up to 1024 bytes (NFS4_OPAQUE_LIMIT). When a LOCK operation is denied due to a conflict with an existing lock that has a large owner, nfsd4_encode_operation() copies the full encoded response into the undersized replay buffer via read_bytes_from_xdr_buf() with no bounds check. This results in a slab-out-of-bounds write of up to 944 bytes past the end of the buffer, corrupting adjacent heap memory. This can be triggered remotely by an unauthenticated attacker with two cooperating NFSv4.0 clients: one sets a lock with a large owner string, then the other requests a conflicting lock to provoke the denial. We could fix this by increasing NFSD4_REPLAY_ISIZE to allow for a full opaque, but that would increase the size of every stateowner, when most lockowners are not that large. Instead, fix this by checking the encoded response length against NFSD4_REPLAY_ISIZE before copying into the replay buffer. If the response is too large, set rp_buflen to 0 to skip caching the replay payload. The status is still cached, and the client already received the correct response on the original request. Fixes: 1da177e ("Linux-2.6.12-rc2") Cc: stable@kernel.org Reported-by: Nicholas Carlini <npc@anthropic.com> Tested-by: Nicholas Carlini <npc@anthropic.com> Signed-off-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com> (cherry picked from commit f9fcb4441f6c02bb20c2eb340101e27dfe23607c) Signed-off-by: Marcin Wcisło <marcin.wcislo@conclusive.pl>
1 parent a849dea commit 2827099

2 files changed

Lines changed: 19 additions & 7 deletions

File tree

fs/nfsd/nfs4xdr.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5362,9 +5362,14 @@ nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
53625362
int len = xdr->buf->len - post_err_offset;
53635363

53645364
so->so_replay.rp_status = op->status;
5365-
so->so_replay.rp_buflen = len;
5366-
read_bytes_from_xdr_buf(xdr->buf, post_err_offset,
5365+
if (len <= NFSD4_REPLAY_ISIZE) {
5366+
so->so_replay.rp_buflen = len;
5367+
read_bytes_from_xdr_buf(xdr->buf,
5368+
post_err_offset,
53675369
so->so_replay.rp_buf, len);
5370+
} else {
5371+
so->so_replay.rp_buflen = 0;
5372+
}
53685373
}
53695374
status:
53705375
*p = op->status;

fs/nfsd/state.h

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,18 @@ struct nfs4_client_reclaim {
399399
struct xdr_netobj cr_princhash;
400400
};
401401

402-
/* A reasonable value for REPLAY_ISIZE was estimated as follows:
403-
* The OPEN response, typically the largest, requires
404-
* 4(status) + 8(stateid) + 20(changeinfo) + 4(rflags) + 8(verifier) +
405-
* 4(deleg. type) + 8(deleg. stateid) + 4(deleg. recall flag) +
406-
* 20(deleg. space limit) + ~32(deleg. ace) = 112 bytes
402+
/*
403+
* REPLAY_ISIZE is sized for an OPEN response with delegation:
404+
* 4(status) + 8(stateid) + 20(changeinfo) + 4(rflags) +
405+
* 8(verifier) + 4(deleg. type) + 8(deleg. stateid) +
406+
* 4(deleg. recall flag) + 20(deleg. space limit) +
407+
* ~32(deleg. ace) = 112 bytes
408+
*
409+
* Some responses can exceed this. A LOCK denial includes the conflicting
410+
* lock owner, which can be up to 1024 bytes (NFS4_OPAQUE_LIMIT). Responses
411+
* larger than REPLAY_ISIZE are not cached in rp_ibuf; only rp_status is
412+
* saved. Enlarging this constant increases the size of every
413+
* nfs4_stateowner.
407414
*/
408415

409416
#define NFSD4_REPLAY_ISIZE 112

0 commit comments

Comments
 (0)