diff options
author | Rebecca Cran <bcran@FreeBSD.org> | 2019-03-02 04:02:11 +0000 |
---|---|---|
committer | Rebecca Cran <bcran@FreeBSD.org> | 2019-03-02 04:02:11 +0000 |
commit | ea7796a9ae6bb4f4fc035007d04b2da60655d86c (patch) | |
tree | 619c9c81fc81bf3aca877f1e756c7b7305889769 /stand/efi/loader/arch/i386 | |
parent | 51244b1e46c89395d35a9e07d0b9671209513e01 (diff) | |
download | src-ea7796a9ae6bb4f4fc035007d04b2da60655d86c.tar.gz src-ea7796a9ae6bb4f4fc035007d04b2da60655d86c.zip |
EFI: don't call printf after ExitBootServices, since it uses Boot Services
ExitBootServices terminates all boot services including console access.
Attempting to call printf afterwards can result in a crash, depending on the
implementation.
Move any printf statements to before we call bi_load, and remove any that
depend on calling bi_load first.
Reviewed by: imp, tsoome
Differential Revision: https://reviews.freebsd.org/D19374
Notes
Notes:
svn path=/head/; revision=344718
Diffstat (limited to 'stand/efi/loader/arch/i386')
-rw-r--r-- | stand/efi/loader/arch/i386/elf32_freebsd.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/stand/efi/loader/arch/i386/elf32_freebsd.c b/stand/efi/loader/arch/i386/elf32_freebsd.c index 83e370e6f165..847d6eead097 100644 --- a/stand/efi/loader/arch/i386/elf32_freebsd.c +++ b/stand/efi/loader/arch/i386/elf32_freebsd.c @@ -75,14 +75,19 @@ elf32_exec(struct preloaded_file *fp) ehdr = (Elf_Ehdr *)&(md->md_data); efi_time_fini(); + + entry = ehdr->e_entry & 0xffffff; + + printf("Start @ 0x%x ...\n", entry); + err = bi_load(fp->f_args, &modulep, &kernend); if (err != 0) { efi_time_init(); return(err); } - entry = ehdr->e_entry & 0xffffff; - printf("Start @ 0x%x ...\n", entry); + /* At this point we've called ExitBootServices, so we can't call + * printf or any other function that uses Boot Services */ dev_cleanup(); __exec((void *)entry, boothowto, bootdev, 0, 0, 0, bootinfop, modulep, kernend); |