diff options
author | Wei Yang <richard.weiyang@gmail.com> | 2016-08-19 21:40:13 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-09-08 03:11:14 -0400 |
commit | 3ec979658e5cc0fab86a42af79a650299e4d7135 (patch) | |
tree | c9b6aeb372af13d5b1d7467ff2d692f7fe26fc26 /arch/x86 | |
parent | d71f058617564750261b673ea9b3352382b9cde4 (diff) |
x86/e820: Fix very large 'size' handling boundary condition
The (start, size) tuple represents a range [start, start + size - 1],
which means "start" and "start + size - 1" should be compared to see
whether the range overflows.
For example, a range with (start, size):
(0xffffffff fffffff0, 0x00000000 00000010)
represents
[0xffffffff fffffff0, 0xffffffff ffffffff]
... would be judged overflow in the original code, while actually it is not.
This patch fixes this and makes sure it still works when size is zero.
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: yinghai@kernel.org
Link: http://lkml.kernel.org/r/1471657213-31817-1-git-send-email-richard.weiyang@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/e820.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index 621b501f8935..871f1863457d 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c | |||
@@ -388,11 +388,11 @@ static int __init __append_e820_map(struct e820entry *biosmap, int nr_map) | |||
388 | while (nr_map) { | 388 | while (nr_map) { |
389 | u64 start = biosmap->addr; | 389 | u64 start = biosmap->addr; |
390 | u64 size = biosmap->size; | 390 | u64 size = biosmap->size; |
391 | u64 end = start + size; | 391 | u64 end = start + size - 1; |
392 | u32 type = biosmap->type; | 392 | u32 type = biosmap->type; |
393 | 393 | ||
394 | /* Overflow in 64 bits? Ignore the memory map. */ | 394 | /* Overflow in 64 bits? Ignore the memory map. */ |
395 | if (start > end) | 395 | if (start > end && likely(size)) |
396 | return -1; | 396 | return -1; |
397 | 397 | ||
398 | e820_add_region(start, size, type); | 398 | e820_add_region(start, size, type); |