Alexey Makhalov 07e5b79e22 relocator: Fix grub_relocator_alloc_chunk_align() top memory allocation
Current implementation of grub_relocator_alloc_chunk_align()
does not allow allocation of the top byte.

Assuming input args are:
  max_addr = 0xfffff000;
  size = 0x1000;

And this is valid. But following overflow protection will
unnecessarily move max_addr one byte down (to 0xffffefff):
  if (max_addr > ~size)
    max_addr = ~size;

~size + 1 will fix the situation. In addition, check size
for non zero to do not zero max_addr.

Signed-off-by: Alexey Makhalov <amakhalov@vmware.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
2020-07-29 16:55:48 +02:00
..
2011-05-13 16:36:05 +02:00
2017-05-08 20:53:28 +02:00
2019-02-25 14:02:05 +01:00
2010-08-30 00:54:15 +02:00
2020-02-11 21:30:30 +01:00
2019-02-25 11:28:44 +01:00
2016-10-27 16:22:06 +02:00
2020-07-29 16:55:47 +02:00
2011-07-05 20:24:20 +02:00
2019-03-25 15:14:52 +01:00
2012-02-26 18:09:07 +01:00
2018-06-23 21:40:55 +02:00
2013-12-18 05:28:05 +01:00
2016-02-12 12:39:38 +01:00
2019-02-25 14:02:05 +01:00