aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/firmware/google
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2017-05-23 16:48:17 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-05-25 15:35:19 +0200
commit40fbb23881291bb57e4e25e859de8e2287426dac (patch)
treea12c143da9c024b73d03908671ac4e2dfdfa364d /drivers/firmware/google
parentMerge 4.12-rc2 into char-misc-next (diff)
downloadwireguard-linux-40fbb23881291bb57e4e25e859de8e2287426dac.tar.xz
wireguard-linux-40fbb23881291bb57e4e25e859de8e2287426dac.zip
firmware: google: memconsole: Prevent overrun attack on coreboot console
The recent coreboot memory console update (firmware: google: memconsole: Adapt to new coreboot ring buffer format) introduced a small security issue in the driver: The new driver implementation parses the memory console structure again on every access. This is intentional so that additional lines added concurrently by runtime firmware can be read out. However, if an attacker can write to the structure, they could increase the size value to a point where the driver would read potentially sensitive memory areas from outside the original console buffer during the next access. This can be done through /dev/mem, since the console buffer usually resides in firmware-reserved memory that is not covered by STRICT_DEVMEM. This patch resolves that problem by reading the buffer's size value only once during boot (where we can still trust the structure). Other parts of the structure can still be modified at runtime, but the driver's bounds checks make sure that it will never read outside the buffer. Fixes: a5061d028 ("firmware: google: memconsole: Adapt to new coreboot ring buffer format") Signed-off-by: Julius Werner <jwerner@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firmware/google')
-rw-r--r--drivers/firmware/google/memconsole-coreboot.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/firmware/google/memconsole-coreboot.c b/drivers/firmware/google/memconsole-coreboot.c
index 7d39f4ef5d9e..52738887735c 100644
--- a/drivers/firmware/google/memconsole-coreboot.c
+++ b/drivers/firmware/google/memconsole-coreboot.c
@@ -26,7 +26,7 @@
/* CBMEM firmware console log descriptor. */
struct cbmem_cons {
- u32 size;
+ u32 size_dont_access_after_boot;
u32 cursor;
u8 body[0];
} __packed;
@@ -35,6 +35,7 @@ struct cbmem_cons {
#define OVERFLOW (1 << 31)
static struct cbmem_cons __iomem *cbmem_console;
+static u32 cbmem_console_size;
/*
* The cbmem_console structure is read again on every access because it may
@@ -47,7 +48,7 @@ static ssize_t memconsole_coreboot_read(char *buf, loff_t pos, size_t count)
{
u32 cursor = cbmem_console->cursor & CURSOR_MASK;
u32 flags = cbmem_console->cursor & ~CURSOR_MASK;
- u32 size = cbmem_console->size;
+ u32 size = cbmem_console_size;
struct seg { /* describes ring buffer segments in logical order */
u32 phys; /* physical offset from start of mem buffer */
u32 len; /* length of segment */
@@ -81,8 +82,10 @@ static int memconsole_coreboot_init(phys_addr_t physaddr)
if (!tmp_cbmc)
return -ENOMEM;
+ /* Read size only once to prevent overrun attack through /dev/mem. */
+ cbmem_console_size = tmp_cbmc->size_dont_access_after_boot;
cbmem_console = memremap(physaddr,
- tmp_cbmc->size + sizeof(*cbmem_console),
+ cbmem_console_size + sizeof(*cbmem_console),
MEMREMAP_WB);
memunmap(tmp_cbmc);