-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding bootrom support #126
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#pragma once | ||
|
||
#include <stdint.h> | ||
#include <stdbool.h> | ||
|
||
void bootrom_init(const char *bootrom_path); | ||
uint64_t bootrom_load(void); | ||
bool bootrom_contains_gpa(uint64_t gpa); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
/*- | ||
* Copyright (c) 2015 Neel Natu <[email protected]> | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
* SUCH DAMAGE. | ||
*/ | ||
|
||
#include <sys/param.h> | ||
|
||
#include <sys/types.h> | ||
#include <sys/mman.h> | ||
#include <sys/stat.h> | ||
|
||
#include <xhyve/vmm/vmm.h> | ||
#include <xhyve/vmm/vmm_mem.h> | ||
#include <xhyve/vmm/vmm_api.h> | ||
#include <xhyve/firmware/bootrom.h> | ||
|
||
#include <errno.h> | ||
#include <fcntl.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <inttypes.h> | ||
#include <stdbool.h> | ||
|
||
#define MAX_BOOTROM_SIZE (16 * 1024 * 1024) /* 16 MB */ | ||
|
||
static const char *romfile; | ||
static uint64_t bootrom_gpa = (1ULL << 32); | ||
|
||
void | ||
bootrom_init(const char *romfile_path) | ||
{ | ||
romfile = romfile_path; | ||
} | ||
|
||
uint64_t bootrom_load(void) | ||
{ | ||
|
||
struct stat sbuf; | ||
uint64_t gpa; | ||
ssize_t rlen; | ||
char *ptr; | ||
int fd, i, rv; | ||
|
||
rv = -1; | ||
fd = open(romfile, O_RDONLY); | ||
if (fd < 0) { | ||
fprintf(stderr, "Error opening bootrom \"%s\": %s\n", | ||
romfile, strerror(errno)); | ||
goto done; | ||
} | ||
|
||
if (fstat(fd, &sbuf) < 0) { | ||
fprintf(stderr, "Could not fstat bootrom file \"%s\": %s\n", | ||
romfile, strerror(errno)); | ||
goto done; | ||
} | ||
|
||
/* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NIT: I'd put this comment up by the definition of MAX_BOOTROM_SIZE |
||
* Limit bootrom size to 16MB so it doesn't encroach into reserved | ||
* MMIO space (e.g. APIC, HPET, MSI). | ||
*/ | ||
if (sbuf.st_size > MAX_BOOTROM_SIZE || sbuf.st_size < XHYVE_PAGE_SIZE) { | ||
fprintf(stderr, "Invalid bootrom size %zd\n", sbuf.st_size); | ||
goto done; | ||
} | ||
|
||
if (sbuf.st_size & XHYVE_PAGE_MASK) { | ||
fprintf(stderr, "Bootrom size %zd is not a multiple of the " | ||
"page size\n", sbuf.st_size); | ||
goto done; | ||
} | ||
|
||
gpa = bootrom_gpa -= (size_t)sbuf.st_size; | ||
|
||
/* XXX Mapping cold be R/O to guest */ | ||
ptr = vmm_mem_alloc(gpa, (size_t)sbuf.st_size); | ||
if (!ptr) { | ||
fprintf(stderr, | ||
"Failed to allocate %zd bytes of memory for bootrom\n", | ||
sbuf.st_size); | ||
rv = -1; | ||
goto done; | ||
} | ||
|
||
/* Read 'romfile' into the guest address space */ | ||
for (i = 0; i < sbuf.st_size / XHYVE_PAGE_SIZE; i++) { | ||
rlen = read(fd, ptr + i * XHYVE_PAGE_SIZE, XHYVE_PAGE_SIZE); | ||
if (rlen != XHYVE_PAGE_SIZE) { | ||
fprintf(stderr, "Incomplete read of page %d of bootrom " | ||
"file %s: %ld bytes\n", i, romfile, rlen); | ||
goto done; | ||
} | ||
} | ||
|
||
rv = 0; | ||
done: | ||
if (fd >= 0) | ||
close(fd); | ||
if (rv) | ||
exit(-1); | ||
return 0xfff0; | ||
} | ||
|
||
bool | ||
bootrom_contains_gpa(uint64_t gpa) | ||
{ | ||
return (gpa >= bootrom_gpa && gpa < (1ULL << 32)); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ | |
#include <xhyve/virtio.h> | ||
#include <xhyve/block_if.h> | ||
|
||
#define VTBLK_RINGSZ 64 | ||
#define VTBLK_RINGSZ 128 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be broken out into a separate commit with additional justification. |
||
|
||
#define VTBLK_S_OK 0 | ||
#define VTBLK_S_IOERR 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
#include <xhyve/vmm/intel/vmx_msr.h> | ||
#include <xhyve/vmm/x86.h> | ||
#include <xhyve/vmm/intel/vmx_controls.h> | ||
#include <xhyve/firmware/bootrom.h> | ||
|
||
#define PROCBASED_CTLS_WINDOW_SETTING \ | ||
(PROCBASED_INT_WINDOW_EXITING | \ | ||
|
@@ -2041,6 +2042,7 @@ vmx_exit_process(struct vmx *vmx, int vcpu, struct vm_exit *vmexit) | |
*/ | ||
gpa = vmcs_gpa(vcpu); | ||
if (vm_mem_allocated(vmx->vm, gpa) || | ||
bootrom_contains_gpa(gpa) || | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I cannot articulate why, exactly, but I'm concerned with this particular change. It feels like a layering violation. |
||
apic_access_fault(vmx, vcpu, gpa)) { | ||
vmexit->exitcode = VM_EXITCODE_PAGING; | ||
vmexit->inst_length = 0; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the indentation here.