diff options
author | Christian König <christian.koenig@amd.com> | 2019-04-02 03:26:52 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-04-11 11:01:23 -0400 |
commit | a66477b0efe511d98dde3e4aaeb189790e6f0a39 (patch) | |
tree | 3e11a009d8febc57fa91ed03745d1daf92c3680f /drivers/gpu/drm/ttm/ttm_page_alloc.c | |
parent | d47703d43ecaa9189d70fb5d151a6883cc44afd3 (diff) |
drm/ttm: fix out-of-bounds read in ttm_put_pages() v2
When ttm_put_pages() tries to figure out whether it's dealing with
transparent hugepages, it just reads past the bounds of the pages array
without a check.
v2: simplify the test if enough pages are left in the array (Christian).
Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Fixes: 5c42c64f7d54 ("drm/ttm: fix the fix for huge compound pages")
Cc: stable@vger.kernel.org
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_page_alloc.c')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_page_alloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c index f841accc2c00..f77c81db161b 100644 --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c | |||
@@ -730,7 +730,8 @@ static void ttm_put_pages(struct page **pages, unsigned npages, int flags, | |||
730 | } | 730 | } |
731 | 731 | ||
732 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE | 732 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
733 | if (!(flags & TTM_PAGE_FLAG_DMA32)) { | 733 | if (!(flags & TTM_PAGE_FLAG_DMA32) && |
734 | (npages - i) >= HPAGE_PMD_NR) { | ||
734 | for (j = 0; j < HPAGE_PMD_NR; ++j) | 735 | for (j = 0; j < HPAGE_PMD_NR; ++j) |
735 | if (p++ != pages[i + j]) | 736 | if (p++ != pages[i + j]) |
736 | break; | 737 | break; |
@@ -759,7 +760,7 @@ static void ttm_put_pages(struct page **pages, unsigned npages, int flags, | |||
759 | unsigned max_size, n2free; | 760 | unsigned max_size, n2free; |
760 | 761 | ||
761 | spin_lock_irqsave(&huge->lock, irq_flags); | 762 | spin_lock_irqsave(&huge->lock, irq_flags); |
762 | while (i < npages) { | 763 | while ((npages - i) >= HPAGE_PMD_NR) { |
763 | struct page *p = pages[i]; | 764 | struct page *p = pages[i]; |
764 | unsigned j; | 765 | unsigned j; |
765 | 766 | ||