summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/microcode
diff options
context:
space:
mode:
authorMaciej S. Szmigiero <mail@maciej.szmigiero.name>2018-09-13 12:01:52 +0200
committerBorislav Petkov <bp@suse.de>2018-11-19 10:55:12 +0100
commit413c89154c6759cbd5e17febd04c187470613173 (patch)
tree8b15a4dddb1fad3daf22f9324b74cb0dccbeeb57 /arch/x86/kernel/cpu/microcode
parent39cd7c17f9bc3fe3737dacd4225eeabe56df197c (diff)
downloadlinux-0-day-413c89154c6759cbd5e17febd04c187470613173.tar.gz
linux-0-day-413c89154c6759cbd5e17febd04c187470613173.tar.xz
x86/microcode/AMD: Check the equivalence table size when scanning it
Currently, the code scanning the CPU equivalence table read from a microcode container file assumes that it actually contains a terminating zero entry. Check also the size of this table to make sure that no reads past its end happen, in case there's no terminating zero entry at the end of the table. [ bp: Adjust to new changes. ] Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name> Signed-off-by: Borislav Petkov <bp@suse.de> Cc: x86@kernel.org Link: https://lkml.kernel.org/r/20181107170218.7596-16-bp@alien8.de
Diffstat (limited to 'arch/x86/kernel/cpu/microcode')
-rw-r--r--arch/x86/kernel/cpu/microcode/amd.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
index 6048d9dd1a15f..81df4b9eadb74 100644
--- a/arch/x86/kernel/cpu/microcode/amd.c
+++ b/arch/x86/kernel/cpu/microcode/amd.c
@@ -39,6 +39,7 @@
#include <asm/msr.h>
static struct equiv_cpu_table {
+ unsigned int num_entries;
struct equiv_cpu_entry *entry;
} equiv_table;
@@ -67,13 +68,19 @@ ucode_path[] __maybe_unused = "kernel/x86/microcode/AuthenticAMD.bin";
static u16 find_equiv_id(struct equiv_cpu_table *et, u32 sig)
{
- struct equiv_cpu_entry *entry = et->entry;
+ unsigned int i;
- for (; entry && entry->installed_cpu; entry++) {
- if (sig == entry->installed_cpu)
- return entry->equiv_cpu;
- }
+ if (!et || !et->num_entries)
+ return 0;
+
+ for (i = 0; i < et->num_entries; i++) {
+ struct equiv_cpu_entry *e = &et->entry[i];
+ if (sig == e->installed_cpu)
+ return e->equiv_cpu;
+
+ e++;
+ }
return 0;
}
@@ -302,6 +309,7 @@ static size_t parse_container(u8 *ucode, size_t size, struct cont_desc *desc)
buf = ucode;
table.entry = (struct equiv_cpu_entry *)(buf + CONTAINER_HDR_SZ);
+ table.num_entries = hdr[2] / sizeof(struct equiv_cpu_entry);
/*
* Find the equivalence ID of our CPU in this table. Even if this table
@@ -728,6 +736,7 @@ static size_t install_equiv_cpu_table(const u8 *buf, size_t buf_size)
}
memcpy(equiv_table.entry, buf + CONTAINER_HDR_SZ, equiv_tbl_len);
+ equiv_table.num_entries = equiv_tbl_len / sizeof(struct equiv_cpu_entry);
/* add header length */
return equiv_tbl_len + CONTAINER_HDR_SZ;
@@ -736,7 +745,7 @@ static size_t install_equiv_cpu_table(const u8 *buf, size_t buf_size)
static void free_equiv_cpu_table(void)
{
vfree(equiv_table.entry);
- equiv_table.entry = NULL;
+ memset(&equiv_table, 0, sizeof(equiv_table));
}
static void cleanup(void)