Re: EFAULT reading /dev/mem... - broken x86info

From: Petr Vandrovec
Date: Mon Nov 10 2003 - 13:07:58 EST


On Mon, Nov 10, 2003 at 06:17:37PM +0100, Manfred Spraul wrote:
> DEBUG_PAGEALLOC unmaps pages on kmem_cache_free and __free_pages(). The
> pages are mapped again during get_free_pages and kmem_cache_alloc.
>
> 0x86000 looks like a normal page - what guarantees that it's not used by
> the kernel?

With DEBUG_PAGEALLOC there is no problem with page if it is USED by the kernel.
Problem is if page is NOT USED - in this case kernel does not have it in its
mapping, and bad thing happen.

x86info (and other simillar tools for dumping different BIOS structures) just
scans physical memory for some well known signatures - hoping that kernel did
not smash these structures.

Up to now it was possible to read whole physical memory from userspace - some
pages by reading /dev/mem, some pages by mmaping /dev/mem. Now it is not possible
anymore - which I think is bad, as /dev/mem has semantic of it. Manual (mem(4))
says that "mem is a character device file that is an image of the main memory
of the computer. It may be used, for example, to examine (and even patch) the
system." I have no idea what POSIX says about /dev/mem being unreadable...

Thanks anyway. As DEBUG_PAGEALLOC did not catch memory corruption I'm seeing,
I'll disable it.
Best regards,
Petr Vandrovec


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/