mtdchar: fix offset overflow detection
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 8 Sep 2012 19:57:30 +0000 (12:57 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 28 Sep 2012 19:13:46 +0000 (12:13 -0700)
commit9c603e53d380459fb62fec7cd085acb0b74ac18f
treea092b5830822a24dbebba50baa299f70bdf33c28
parent6672d90fe779dc0dfffe027c3ede12609df091c2
mtdchar: fix offset overflow detection

Sasha Levin has been running trinity in a KVM tools guest, and was able
to trigger the BUG_ON() at arch/x86/mm/pat.c:279 (verifying the range of
the memory type).  The call trace showed that it was mtdchar_mmap() that
created an invalid remap_pfn_range().

The problem is that mtdchar_mmap() does various really odd and subtle
things with the vma page offset etc, and uses the wrong types (and the
wrong overflow) detection for it.

For example, the page offset may well be 32-bit on a 32-bit
architecture, but after shifting it up by PAGE_SHIFT, we need to use a
potentially 64-bit resource_size_t to correctly hold the full value.

Also, we need to check that the vma length plus offset doesn't overflow
before we check that it is smaller than the length of the mtdmap region.

This fixes things up and tries to make the code a bit easier to read.

Reported-and-tested-by: Sasha Levin <levinsasha928@gmail.com>
Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>
Acked-by: Artem Bityutskiy <dedekind1@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-mtd@lists.infradead.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/mtd/mtdchar.c