“54ba1239e7e54ec4ec0b6c0f1c9415e1e9d89574”上不存在“include/uapi/git@gitcode.net:openeuler/kernel.git”
提交 a23dd544 编写于 作者: C Chuck Lever

SUNRPC: Fix READ_PLUS crasher

Looks like there are still cases when "space_left - frag1bytes" can
legitimately exceed PAGE_SIZE. Ensure that xdr->end always remains
within the current encode buffer.
Reported-by: NBruce Fields <bfields@fieldses.org>
Reported-by: NZorro Lang <zlang@redhat.com>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=216151
Fixes: 6c254bf3 ("SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer()")
Signed-off-by: NChuck Lever <chuck.lever@oracle.com>
上级 8a9ffb8c
...@@ -984,7 +984,7 @@ static noinline __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr, ...@@ -984,7 +984,7 @@ static noinline __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr,
p = page_address(*xdr->page_ptr); p = page_address(*xdr->page_ptr);
xdr->p = p + frag2bytes; xdr->p = p + frag2bytes;
space_left = xdr->buf->buflen - xdr->buf->len; space_left = xdr->buf->buflen - xdr->buf->len;
if (space_left - nbytes >= PAGE_SIZE) if (space_left - frag1bytes >= PAGE_SIZE)
xdr->end = p + PAGE_SIZE; xdr->end = p + PAGE_SIZE;
else else
xdr->end = p + space_left - frag1bytes; xdr->end = p + space_left - frag1bytes;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册