mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-13 20:59:37 +02:00
SUNRPC: Fix loop termination condition in gss_free_in_token_pages()
commit4a77c3dead
upstream. The in_token->pages[] array is not NULL terminated. This results in the following KASAN splat: KASAN: maybe wild-memory-access in range [0x04a2013400000008-0x04a201340000000f] Fixes:bafa6b4d95
("SUNRPC: Fix gss_free_in_token_pages()") Reviewed-by: Benjamin Coddington <bcodding@redhat.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c775ffab3e
commit
af628d43a8
|
@ -1079,7 +1079,7 @@ static int gss_read_proxy_verf(struct svc_rqst *rqstp,
|
|||
goto out_denied_free;
|
||||
|
||||
pages = DIV_ROUND_UP(inlen, PAGE_SIZE);
|
||||
in_token->pages = kcalloc(pages, sizeof(struct page *), GFP_KERNEL);
|
||||
in_token->pages = kcalloc(pages + 1, sizeof(struct page *), GFP_KERNEL);
|
||||
if (!in_token->pages)
|
||||
goto out_denied_free;
|
||||
in_token->page_base = 0;
|
||||
|
|
Loading…
Reference in New Issue
Block a user