]> www.infradead.org Git - users/jedix/linux-maple.git/commit
mm: prevent page_frag_alloc() from corrupting the memory
authorMaurizio Lombardi <mlombard@redhat.com>
Fri, 15 Jul 2022 12:50:13 +0000 (14:50 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 17 Aug 2022 20:58:27 +0000 (13:58 -0700)
commitd3f0358fec01a37652438b335049151e160836e8
tree5c91f358f640aa8fe233497e77c50b19b674a5ae
parent72d445c34104871a29462e9ce7de113e6bb77770
mm: prevent page_frag_alloc() from corrupting the memory

A number of drivers call page_frag_alloc() with a fragment's size >
PAGE_SIZE.

In low memory conditions, __page_frag_cache_refill() may fail the order
3 cache allocation and fall back to order 0; In this case, the cache
will be smaller than the fragment, causing memory corruptions.

Prevent this from happening by checking if the newly allocated cache is
large enough for the fragment; if not, the allocation will fail and
page_frag_alloc() will return NULL.

Link: https://lkml.kernel.org/r/20220715125013.247085-1-mlombard@redhat.com
Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
Reviewed-by: Alexander Duyck <alexanderduyck@fb.com>
Cc: Chen Lin <chen45464546@163.com>
Cc: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/page_alloc.c