mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
lmb: handle more than one DRAM BANK
This fixes the automatic lmb initialization and reservation for boards with more than one DRAM bank. This fixes the CVE-2018-18439 and -18440 fixes that only allowed to load files into the firs DRAM bank from fs and via tftp. Found-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> Tested-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e3b4fc9598
commit
9cc2323fee
5 changed files with 41 additions and 13 deletions
|
@ -606,8 +606,7 @@ static int tftp_init_load_addr(void)
|
|||
struct lmb lmb;
|
||||
phys_size_t max_size;
|
||||
|
||||
lmb_init_and_reserve(&lmb, gd->bd->bi_dram[0].start,
|
||||
gd->bd->bi_dram[0].size, (void *)gd->fdt_blob);
|
||||
lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
|
||||
|
||||
max_size = lmb_get_free_size(&lmb, load_addr);
|
||||
if (!max_size)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue