Skip to content

Commit

Permalink
x86/boot: add start and size fields to struct boot_module
Browse files Browse the repository at this point in the history
Introduce the start and size fields to struct boot_module and assigns
their value during boot_info construction. All uses of module_t to get
the address and size of a module are replaced with start and size.

The EFI entry point is a special case, as the EFI file loading boot
service may load a file beyond the 4G barrier. As a result, to make the
address fit in the 32bit integer used by the MB1 module_t structure, the
frame number is stored in mod_start and size in mod_end. Until the EFI
entry point is enlightened to work with boot_info and boot_module,
multiboot_fill_boot_info will handle the alternate values in mod_start
and mod_end when EFI is detected.

A result of the switch to start/size removes all uses of the mod field
in struct boot_modules, along with the uses of bootstrap_map() and
release_module() functions. With all usage gone, they all are dropped
here.

Signed-off-by: Daniel P. Smith <[email protected]>
Reviewed-by: Jason Andryuk <[email protected]>
Reviewed-by: Andrew Cooper <[email protected]>
  • Loading branch information
dpsmith authored and andyhhp committed Nov 19, 2024
1 parent 6308301 commit cd7cc53
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 67 deletions.
8 changes: 4 additions & 4 deletions xen/arch/x86/cpu/microcode/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,8 +688,8 @@ static int __init cf_check microcode_init_cache(void)
/* early_microcode_load() didn't leave us any work to do. */
return 0;

size = bi->mods[early_mod_idx].mod->mod_end;
data = __mfn_to_virt(bi->mods[early_mod_idx].mod->mod_start);
size = bi->mods[early_mod_idx].size;
data = __va(bi->mods[early_mod_idx].start);

/*
* If opt_scan is set, we're looking for a CPIO archive rather than a raw
Expand Down Expand Up @@ -765,7 +765,7 @@ static int __init early_microcode_load(struct boot_info *bi)
bm->type != BOOTMOD_RAMDISK )
continue;

size = bm->mod->mod_end;
size = bm->size;
data = bootstrap_map_bm(bm);
if ( !data )
{
Expand Down Expand Up @@ -819,7 +819,7 @@ static int __init early_microcode_load(struct boot_info *bi)
}
bi->mods[idx].type = BOOTMOD_MICROCODE;

size = bi->mods[idx].mod->mod_end;
size = bi->mods[idx].size;
data = bootstrap_map_bm(&bi->mods[idx]);
if ( !data )
{
Expand Down
6 changes: 3 additions & 3 deletions xen/arch/x86/hvm/dom0_build.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,8 +649,8 @@ static int __init pvh_load_kernel(
{
void *image_base = bootstrap_map_bm(image);
void *image_start = image_base + image->headroom;
unsigned long image_len = image->mod->mod_end;
unsigned long initrd_len = initrd ? initrd->mod->mod_end : 0;
unsigned long image_len = image->size;
unsigned long initrd_len = initrd ? initrd->size : 0;
const char *cmdline = image->cmdline_pa ? __va(image->cmdline_pa) : NULL;
struct elf_binary elf;
struct elf_dom_parms parms;
Expand Down Expand Up @@ -726,7 +726,7 @@ static int __init pvh_load_kernel(

if ( initrd != NULL )
{
rc = hvm_copy_to_guest_phys(last_addr, mfn_to_virt(initrd->mod->mod_start),
rc = hvm_copy_to_guest_phys(last_addr, __va(initrd->start),
initrd_len, v);
if ( rc )
{
Expand Down
6 changes: 3 additions & 3 deletions xen/arch/x86/include/asm/bootinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ enum bootmod_type {
};

struct boot_module {
/* Transitionary only */
module_t *mod;

enum bootmod_type type;

/*
Expand Down Expand Up @@ -62,6 +59,9 @@ struct boot_module {
unsigned long headroom;

paddr_t cmdline_pa;

paddr_t start;
size_t size;
};

/*
Expand Down
1 change: 0 additions & 1 deletion xen/arch/x86/include/asm/setup.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ void free_boot_modules(void);

struct boot_module;
void *bootstrap_map_bm(const struct boot_module *bm);
void *bootstrap_map(const module_t *mod);
void bootstrap_unmap(void);

void release_boot_module(struct boot_module *bm);
Expand Down
15 changes: 7 additions & 8 deletions xen/arch/x86/pv/dom0_build.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,14 +422,14 @@ static int __init dom0_construct(struct boot_info *bi, struct domain *d)

image = &bi->mods[i];
image_base = bootstrap_map_bm(image);
image_len = image->mod->mod_end;
image_len = image->size;
image_start = image_base + image->headroom;

i = first_boot_module_index(bi, BOOTMOD_RAMDISK);
if ( i < bi->nr_modules )
{
initrd = &bi->mods[i];
initrd_len = initrd->mod->mod_end;
initrd_len = initrd->size;
}

d->max_pages = ~0U;
Expand Down Expand Up @@ -631,7 +631,7 @@ static int __init dom0_construct(struct boot_info *bi, struct domain *d)
initrd_pfn = vinitrd_start ?
(vinitrd_start - v_start) >> PAGE_SHIFT :
domain_tot_pages(d);
initrd_mfn = initrd->mod->mod_start;
initrd_mfn = paddr_to_pfn(initrd->start);
mfn = initrd_mfn;
count = PFN_UP(initrd_len);
if ( d->arch.physaddr_bitsize &&
Expand All @@ -647,16 +647,15 @@ static int __init dom0_construct(struct boot_info *bi, struct domain *d)
free_domheap_pages(page, order);
page += 1UL << order;
}
memcpy(page_to_virt(page), mfn_to_virt(initrd->mod->mod_start),
initrd_len);
memcpy(page_to_virt(page), __va(initrd->start), initrd_len);
/*
* The initrd was copied but the initrd variable is reused in the
* calculations below. As to not leak the memory used for the
* module free at this time.
*/
release_boot_module(initrd);
initrd_mfn = mfn_x(page_to_mfn(page));
initrd->mod->mod_start = initrd_mfn;
initrd->start = pfn_to_paddr(initrd_mfn);
}
else
{
Expand All @@ -683,7 +682,7 @@ static int __init dom0_construct(struct boot_info *bi, struct domain *d)
nr_pages - domain_tot_pages(d));
if ( initrd )
{
mpt_alloc = pfn_to_paddr(initrd->mod->mod_start);
mpt_alloc = initrd->start;
printk("\n Init. ramdisk: %"PRIpaddr"->%"PRIpaddr,
mpt_alloc, mpt_alloc + initrd_len);
}
Expand Down Expand Up @@ -911,7 +910,7 @@ static int __init dom0_construct(struct boot_info *bi, struct domain *d)
if ( pfn >= initrd_pfn )
{
if ( pfn < initrd_pfn + PFN_UP(initrd_len) )
mfn = initrd->mod->mod_start + (pfn - initrd_pfn);
mfn = paddr_to_pfn(initrd->start) + (pfn - initrd_pfn);
else
mfn -= PFN_UP(initrd_len);
}
Expand Down
89 changes: 42 additions & 47 deletions xen/arch/x86/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,13 +314,29 @@ static struct boot_info *__init multiboot_fill_boot_info(
*/
for ( i = 0; i < MAX_NR_BOOTMODS && i < bi->nr_modules; i++ )
{
bi->mods[i].mod = &mods[i];

bi->mods[i].cmdline_pa = mods[i].string;

if ( efi_enabled(EFI_LOADER) )
{
/*
* The EFI loader gives us modules which are in frame/size. Switch
* to address/size.
*/
bi->mods[i].start = pfn_to_paddr(mods[i].mod_start);
bi->mods[i].size = mods[i].mod_end;
}
else
{
/*
* PVH and BIOS loaders give us modules which are start/end.
* Switch to address/size.
*/
bi->mods[i].start = mods[i].mod_start;
bi->mods[i].size = mods[i].mod_end - mods[i].mod_start;
}
}

/* Variable 'i' should be one entry past the last module. */
bi->mods[i].mod = &mods[bi->nr_modules];
bi->mods[i].type = BOOTMOD_XEN;

return bi;
Expand All @@ -336,8 +352,8 @@ unsigned long __init initial_images_nrpages(nodeid_t node)

for ( nr = i = 0; i < bi->nr_modules; ++i )
{
unsigned long start = bi->mods[i].mod->mod_start;
unsigned long end = start + PFN_UP(bi->mods[i].mod->mod_end);
unsigned long start = paddr_to_pfn(bi->mods[i].start);
unsigned long end = start + PFN_UP(bi->mods[i].size);

if ( end > node_start && node_end > start )
nr += min(node_end, end) - max(node_start, start);
Expand All @@ -348,12 +364,9 @@ unsigned long __init initial_images_nrpages(nodeid_t node)

void __init release_boot_module(struct boot_module *bm)
{
uint64_t start = pfn_to_paddr(bm->mod->mod_start);
uint64_t size = bm->mod->mod_end;

ASSERT(!bm->released);

init_domheap_pages(start, start + PAGE_ALIGN(size));
init_domheap_pages(bm->start, bm->start + PAGE_ALIGN(bm->size));

bm->released = true;
}
Expand Down Expand Up @@ -487,15 +500,9 @@ static void *__init bootstrap_map_addr(paddr_t start, paddr_t end)
return ret;
}

void *__init bootstrap_map(const module_t *mod)
{
return bootstrap_map_addr(pfn_to_paddr(mod->mod_start),
pfn_to_paddr(mod->mod_start) + mod->mod_end);
}

void *__init bootstrap_map_bm(const struct boot_module *bm)
{
return bootstrap_map(bm->mod);
return bootstrap_map_addr(bm->start, bm->start + bm->size);
}

void __init bootstrap_unmap(void)
Expand Down Expand Up @@ -673,8 +680,8 @@ static uint64_t __init consider_modules(

for ( i = 0; i < nr_mods ; ++i )
{
uint64_t start = pfn_to_paddr(mods[i].mod->mod_start);
uint64_t end = start + PAGE_ALIGN(mods[i].mod->mod_end);
uint64_t start = mods[i].start;
uint64_t end = start + PAGE_ALIGN(mods[i].size);

if ( i == this_mod )
continue;
Expand Down Expand Up @@ -1405,13 +1412,9 @@ void asmlinkage __init noreturn __start_xen(void)
set_kexec_crash_area_size((u64)nr_pages << PAGE_SHIFT);
kexec_reserve_area();

for ( i = 0; !efi_enabled(EFI_LOADER) && i < bi->nr_modules; i++ )
{
if ( bi->mods[i].mod->mod_start & (PAGE_SIZE - 1) )
for ( i = 0; i < bi->nr_modules; i++ )
if ( bi->mods[i].start & (PAGE_SIZE - 1) )
panic("Bootloader didn't honor module alignment request\n");
bi->mods[i].mod->mod_end -= bi->mods[i].mod->mod_start;
bi->mods[i].mod->mod_start >>= PAGE_SHIFT;
}

/*
* TODO: load ucode earlier once multiboot modules become accessible
Expand All @@ -1430,13 +1433,12 @@ void asmlinkage __init noreturn __start_xen(void)
* respective reserve_e820_ram() invocation below. No need to
* query efi_boot_mem_unused() here, though.
*/
xen->mod->mod_start = virt_to_mfn(_stext);
xen->mod->mod_end = __2M_rwdata_end - _stext;
xen->start = virt_to_maddr(_stext);
xen->size = __2M_rwdata_end - _stext;
}

bi->mods[0].headroom =
bzimage_headroom(bootstrap_map_bm(&bi->mods[0]),
bi->mods[0].mod->mod_end);
bzimage_headroom(bootstrap_map_bm(&bi->mods[0]), bi->mods[0].size);
bootstrap_unmap();

#ifndef highmem_start
Expand Down Expand Up @@ -1517,7 +1519,7 @@ void asmlinkage __init noreturn __start_xen(void)
for ( j = bi->nr_modules - 1; j >= 0; j-- )
{
struct boot_module *bm = &bi->mods[j];
unsigned long size = PAGE_ALIGN(bm->headroom + bm->mod->mod_end);
unsigned long size = PAGE_ALIGN(bm->headroom + bm->size);

if ( bm->relocated )
continue;
Expand All @@ -1529,14 +1531,11 @@ void asmlinkage __init noreturn __start_xen(void)
if ( highmem_start && end > highmem_start )
continue;

if ( s < end &&
(bm->headroom ||
((end - size) >> PAGE_SHIFT) > bm->mod->mod_start) )
if ( s < end && (bm->headroom || (end - size) > bm->start) )
{
move_memory(end - size + bm->headroom,
pfn_to_paddr(bm->mod->mod_start), bm->mod->mod_end);
bm->mod->mod_start = (end - size) >> PAGE_SHIFT;
bm->mod->mod_end += bm->headroom;
move_memory(end - size + bm->headroom, bm->start, bm->size);
bm->start = (end - size);
bm->size += bm->headroom;
bm->relocated = true;
}
}
Expand Down Expand Up @@ -1567,10 +1566,9 @@ void asmlinkage __init noreturn __start_xen(void)
panic("Not enough memory to relocate the dom0 kernel image\n");
for ( i = 0; i < bi->nr_modules; ++i )
{
const struct boot_module *bm = &bi->mods[i];
uint64_t s = pfn_to_paddr(bm->mod->mod_start);
uint64_t s = bi->mods[i].start, l = bi->mods[i].size;

reserve_e820_ram(&boot_e820, s, s + PAGE_ALIGN(bm->mod->mod_end));
reserve_e820_ram(&boot_e820, s, s + PAGE_ALIGN(l));
}

if ( !xen_phys_start )
Expand Down Expand Up @@ -1648,8 +1646,7 @@ void asmlinkage __init noreturn __start_xen(void)
map_e = boot_e820.map[j].addr + boot_e820.map[j].size;
for ( j = 0; j < bi->nr_modules; ++j )
{
uint64_t end = pfn_to_paddr(bi->mods[j].mod->mod_start) +
bi->mods[j].mod->mod_end;
uint64_t end = bi->mods[j].start + bi->mods[j].size;

if ( map_e < end )
map_e = end;
Expand Down Expand Up @@ -1723,13 +1720,11 @@ void asmlinkage __init noreturn __start_xen(void)

for ( i = 0; i < bi->nr_modules; ++i )
{
const struct boot_module *bm = &bi->mods[i];
unsigned long s = bi->mods[i].start, l = bi->mods[i].size;

set_pdx_range(bm->mod->mod_start,
bm->mod->mod_start + PFN_UP(bm->mod->mod_end));
map_pages_to_xen((unsigned long)mfn_to_virt(bm->mod->mod_start),
_mfn(bm->mod->mod_start),
PFN_UP(bm->mod->mod_end), PAGE_HYPERVISOR);
set_pdx_range(paddr_to_pfn(s), paddr_to_pfn(s + l) + 1);
map_pages_to_xen((unsigned long)maddr_to_virt(s), maddr_to_mfn(s),
PFN_UP(l), PAGE_HYPERVISOR);
}

#ifdef CONFIG_KEXEC
Expand Down
2 changes: 1 addition & 1 deletion xen/xsm/xsm_policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int __init xsm_multiboot_policy_init(
struct boot_module *bm = &bi->mods[i];

_policy_start = bootstrap_map_bm(bm);
_policy_len = bm->mod->mod_end;
_policy_len = bm->size;

if ( (xsm_magic_t)(*_policy_start) == XSM_MAGIC )
{
Expand Down

0 comments on commit cd7cc53

Please sign in to comment.