Commit 8dcd038a authored by Roel Kluin's avatar Roel Kluin Committed by Benjamin Herrenschmidt
Browse files

powerpc/fsl-booke: read buffer overflow



cam[tlbcam_index] is checked before tlbcam_index < ARRAY_SIZE(cam)

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent b6c316a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ unsigned long __init mmu_mapin_ram(void)
	unsigned long virt = PAGE_OFFSET;
	phys_addr_t phys = memstart_addr;

	while (cam[tlbcam_index] && tlbcam_index < ARRAY_SIZE(cam)) {
	while (tlbcam_index < ARRAY_SIZE(cam) && cam[tlbcam_index]) {
		settlbcam(tlbcam_index, virt, phys, cam[tlbcam_index], PAGE_KERNEL_X, 0);
		virt += cam[tlbcam_index];
		phys += cam[tlbcam_index];