dm: support OVMF split images

In addition to a single OVMF image (OVMF.fd), split images
(OVMF_CODE.fd, OVMF_VARS.fd) can be used to facilitate VM management.

From the OVMF Whitepaper:

  The variable store and the firmware executable are also available in
  the build output as separate files entitled: "OVMF_VARS.fd" and
  "OVMF_CODE.fd". This enables central management and updates of the
  firmware executable, while each virtual machine can retain its own
  variable store.

An example to launch acrn-dm with the split images:

  --ovmf code=/usr/share/acrn/bios/OVMF_CODE.fd, \
  vars=/usr/share/acrn/bios/OVMF_VARS.fd

v1 -> v2:
- use memory-mapped file I/O for writeback
- use fcntl to lock OVMF image files

Tracked-On: #5487
Signed-off-by: Peter Fang <peter.fang@intel.com>
Acked-by: Wang, Yu1 <yu1.wang@intel.com>
This commit is contained in:
Peter Fang 2020-10-28 00:07:32 -07:00 committed by wenlingz
parent 0b29690229
commit b8a0730132
5 changed files with 219 additions and 77 deletions

View File

@ -81,6 +81,8 @@ char *vmname;
char *guest_uuid_str; char *guest_uuid_str;
char *vsbl_file_name; char *vsbl_file_name;
char *ovmf_file_name; char *ovmf_file_name;
char *ovmf_code_file_name;
char *ovmf_vars_file_name;
char *kernel_file_name; char *kernel_file_name;
char *elf_file_name; char *elf_file_name;
uint8_t trusty_enabled; uint8_t trusty_enabled;
@ -230,10 +232,7 @@ virtio_uses_msix(void)
size_t size_t
high_bios_size(void) high_bios_size(void)
{ {
size_t size = 0; size_t size = ovmf_image_size();
if (ovmf_file_name)
size = ovmf_image_size();
return roundup2(size, 2 * MB); return roundup2(size, 2 * MB);
} }

View File

@ -260,7 +260,7 @@ acrn_sw_load(struct vmctx *ctx)
{ {
if (vsbl_file_name) if (vsbl_file_name)
return acrn_sw_load_vsbl(ctx); return acrn_sw_load_vsbl(ctx);
else if (ovmf_file_name) else if ((ovmf_file_name != NULL) ^ (ovmf_code_file_name && ovmf_vars_file_name))
return acrn_sw_load_ovmf(ctx); return acrn_sw_load_ovmf(ctx);
else if (kernel_file_name) else if (kernel_file_name)
return acrn_sw_load_bzimage(ctx); return acrn_sw_load_bzimage(ctx);

View File

@ -28,6 +28,10 @@
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include "dm.h" #include "dm.h"
#include "vmmapi.h" #include "vmmapi.h"
@ -55,95 +59,212 @@
/* ovmf real entry is reset vector, which is (OVMF_TOP - 16) */ /* ovmf real entry is reset vector, which is (OVMF_TOP - 16) */
#define OVMF_TOP(ctx) (4*GB) #define OVMF_TOP(ctx) (4*GB)
/* ovmf NV storage begins at offset 0 */
#define OVMF_NVSTORAGE_OFFSET (OVMF_TOP(ctx) - ovmf_size)
/* ovmf image size limit */ /* ovmf image size limit */
#define OVMF_SZ_LIMIT (2*MB) #define OVMF_SZ_LIMIT (2*MB)
/* ovmf split images size limit */
#define OVMF_VARS_SZ_LIMIT (128*KB)
#define OVMF_CODE_SZ_LIMIT (OVMF_SZ_LIMIT - OVMF_VARS_SZ_LIMIT)
/* ovmf NV storage begins at offset 0 */
#define OVMF_NVSTORAGE_OFFSET (OVMF_TOP(ctx) - ovmf_image_size())
/* ovmf NV storage size */ /* ovmf NV storage size */
#define OVMF_NVSTORAGE_SZ (128*KB) #define OVMF_NVSTORAGE_SZ (ovmf_file_name ? OVMF_VARS_SZ_LIMIT : ovmf_vars_size)
/* located in the ROM area */ /* located in the ROM area */
#define OVMF_E820_BASE 0x000EF000UL #define OVMF_E820_BASE 0x000EF000UL
static char ovmf_path[STR_LEN]; static char ovmf_path[STR_LEN];
static char ovmf_code_path[STR_LEN];
static char ovmf_vars_path[STR_LEN];
static size_t ovmf_size; static size_t ovmf_size;
bool writeback_nv_storage; static size_t ovmf_code_size;
static size_t ovmf_vars_size;
static char *mmap_vars;
static bool writeback_nv_storage;
extern int init_cmos_vrpmb(struct vmctx *ctx); extern int init_cmos_vrpmb(struct vmctx *ctx);
size_t size_t
ovmf_image_size(void) ovmf_image_size(void)
{ {
return ovmf_size; size_t size = 0;
if (ovmf_file_name)
size = ovmf_size;
else if (ovmf_code_file_name && ovmf_vars_file_name)
size = ovmf_code_size + ovmf_vars_size;
return size;
} }
int int
acrn_parse_ovmf(char *arg) acrn_parse_ovmf(char *arg)
{ {
int error = -1; int error = -1;
char *str, *cp, *token = NULL; char *str, *cp, *token;
size_t len = strnlen(arg, STR_LEN);
str = strdup(arg); if (strnlen(arg, STR_LEN) < STR_LEN) {
if (len < STR_LEN) { str = cp = strdup(arg);
cp = str;
token = strsep(&cp, ","); while ((token = strsep(&cp, ",")) != NULL) {
while (token != NULL) { if (!strcmp(token, "w")) {
if (strcmp(token, "w") == 0) {
writeback_nv_storage = true; writeback_nv_storage = true;
} else if (!strncmp(token, "code=", sizeof("code=") - 1)) {
token += sizeof("code=") - 1;
strncpy(ovmf_code_path, token, sizeof(ovmf_code_path));
if (check_image(ovmf_code_path, OVMF_CODE_SZ_LIMIT,
&ovmf_code_size) != 0)
break;
ovmf_code_file_name = ovmf_code_path;
pr_notice("SW_LOAD: get ovmf code path %s, size 0x%lx\n",
ovmf_code_path, ovmf_code_size);
} else if (!strncmp(token, "vars=", sizeof("vars=") - 1)) {
token += sizeof("vars=") - 1;
strncpy(ovmf_vars_path, token, sizeof(ovmf_vars_path));
if (check_image(ovmf_vars_path, OVMF_VARS_SZ_LIMIT,
&ovmf_vars_size) != 0)
break;
ovmf_vars_file_name = ovmf_vars_path;
pr_notice("SW_LOAD: get ovmf vars path %s, size 0x%lx\n",
ovmf_vars_path, ovmf_vars_size);
} else { } else {
len = strnlen(token, STR_LEN); strncpy(ovmf_path, token, sizeof(ovmf_path));
strncpy(ovmf_path, token, len + 1);
if (check_image(ovmf_path, OVMF_SZ_LIMIT, &ovmf_size) != 0) if (check_image(ovmf_path, OVMF_SZ_LIMIT, &ovmf_size) != 0)
break; break;
ovmf_file_name = ovmf_path; ovmf_file_name = ovmf_path;
pr_notice("SW_LOAD: get ovmf path %s, size 0x%lx\n", pr_notice("SW_LOAD: get ovmf path %s, size 0x%lx\n",
ovmf_path, ovmf_size); ovmf_path, ovmf_size);
error = 0;
} }
token = strsep(&cp, ",");
} }
free(str);
} }
free(str);
if ((ovmf_file_name != NULL) ^ (ovmf_code_file_name && ovmf_vars_file_name))
error = 0;
return error; return error;
} }
static int static int
acrn_prepare_ovmf(struct vmctx *ctx) acrn_prepare_ovmf(struct vmctx *ctx)
{ {
int i, flags, fd;
char *path, *addr;
size_t size, size_limit, cur_size, read;
struct flock fl;
FILE *fp; FILE *fp;
size_t read;
fp = fopen(ovmf_path, "r"); if (ovmf_file_name) {
if (fp == NULL) { path = ovmf_file_name;
pr_err("SW_LOAD ERR: could not open ovmf file: %s\n", size = ovmf_size;
ovmf_path); size_limit = OVMF_SZ_LIMIT;
return -1; } else {
path = ovmf_vars_file_name;
size = ovmf_vars_size;
size_limit = OVMF_VARS_SZ_LIMIT;
} }
fseek(fp, 0, SEEK_END); flags = writeback_nv_storage ? O_RDWR : O_RDONLY;
addr = ctx->baseaddr + OVMF_TOP(ctx) - ovmf_image_size();
if (ftell(fp) != ovmf_size) { for (i = 0; i < 2; i++) {
pr_err("SW_LOAD ERR: ovmf file changed\n"); fd = open(path, flags);
if (fd == -1) {
pr_err("SW_LOAD ERR: could not open ovmf file: %s (%s)\n",
path, strerror(errno));
return -1;
}
/* acquire read lock over the entire file */
memset(&fl, 0, sizeof(fl));
fl.l_type = F_RDLCK;
fl.l_whence = SEEK_SET;
fl.l_start = 0;
fl.l_len = 0;
if (fcntl(fd, F_SETLK, &fl)) {
pr_err("SW_LOAD ERR: could not fcntl(F_RDLCK) "
"ovmf file: %s (%s)\n",
path, strerror(errno));
close(fd);
return -1;
}
if (check_image(path, size_limit, &cur_size) != 0) {
close(fd);
return -1;
}
if (cur_size != size) {
pr_err("SW_LOAD ERR: ovmf file %s changed\n", path);
close(fd);
return -1;
}
if (flags == O_RDWR) {
/* upgrade to write lock */
memset(&fl, 0, sizeof(fl));
fl.l_type = F_WRLCK;
fl.l_whence = SEEK_SET;
fl.l_start = 0;
fl.l_len = OVMF_NVSTORAGE_SZ;
if (fcntl(fd, F_SETLK, &fl)) {
pr_err("SW_LOAD ERR: could not fcntl(F_WRLCK) "
"ovmf file: %s (%s)\n",
path, strerror(errno));
close(fd);
return -1;
}
mmap_vars = mmap(NULL, OVMF_NVSTORAGE_SZ, PROT_WRITE,
MAP_SHARED, fd, 0);
if (mmap_vars == MAP_FAILED) {
pr_err("SW_LOAD ERR: could not mmap "
"ovmf file: %s (%s)\n",
path, strerror(errno));
close(fd);
return -1;
}
}
fp = fdopen(fd, "r");
if (fp == NULL) {
pr_err("SW_LOAD ERR: could not fdopen "
"ovmf file: %s (%s)\n",
path, strerror(errno));
close(fd);
return -1;
}
fseek(fp, 0, SEEK_SET);
read = fread(addr, sizeof(char), size, fp);
fclose(fp); fclose(fp);
return -1;
if (read < size) {
pr_err("SW_LOAD ERR: could not read whole partition blob %s\n",
path);
return -1;
}
pr_info("SW_LOAD: partition blob %s size 0x%lx copied to addr %p\n",
path, size, addr);
if (!ovmf_file_name) {
addr += size;
path = ovmf_code_file_name;
size = ovmf_code_size;
size_limit = OVMF_CODE_SZ_LIMIT;
flags = O_RDONLY;
} else
break;
} }
fseek(fp, 0, SEEK_SET);
read = fread(ctx->baseaddr + OVMF_TOP(ctx) - ovmf_size,
sizeof(char), ovmf_size, fp);
if (read < ovmf_size) {
pr_err("SW_LOAD ERR: could not read whole partition blob\n");
fclose(fp);
return -1;
}
fclose(fp);
pr_info("SW_LOAD: partition blob %s size %lu copy to guest 0x%lx\n",
ovmf_path, ovmf_size, OVMF_TOP(ctx) - ovmf_size);
return 0; return 0;
} }
@ -192,7 +313,8 @@ acrn_sw_load_ovmf(struct vmctx *ctx)
return 0; return 0;
} }
/* The NV data section is the first 128KB in the OVMF image. At runtime, /*
* The NV data section is the first 128KB in the OVMF image. At runtime,
* it's copied into guest memory and behave as RAM to OVMF. It can be * it's copied into guest memory and behave as RAM to OVMF. It can be
* accessed and updated by OVMF. To preserve NV section (referred to * accessed and updated by OVMF. To preserve NV section (referred to
* as Non-Volatile Data Store section in the OVMF spec), we're flushing * as Non-Volatile Data Store section in the OVMF spec), we're flushing
@ -202,41 +324,61 @@ acrn_sw_load_ovmf(struct vmctx *ctx)
int int
acrn_writeback_ovmf_nvstorage(struct vmctx *ctx) acrn_writeback_ovmf_nvstorage(struct vmctx *ctx)
{ {
FILE *fp; int i, fd, ret = 0;
size_t write; char *path;
struct flock fl;
if (!writeback_nv_storage) if (!writeback_nv_storage)
return 0; return 0;
fp = fopen(ovmf_path, "r+"); memcpy(mmap_vars, ctx->baseaddr + OVMF_NVSTORAGE_OFFSET,
if (fp == NULL) { OVMF_NVSTORAGE_SZ);
pr_err("OVMF_WRITEBACK ERR: could not open ovmf file: %s\n",
ovmf_path); if (munmap(mmap_vars, OVMF_NVSTORAGE_SZ)) {
return -1; pr_err("SW_LOAD ERR: could not munmap (%s)\n",
strerror(errno));
ret = -1;
} }
fseek(fp, 0, SEEK_END); mmap_vars = NULL;
if (ftell(fp) != ovmf_size) { path = ovmf_file_name ? ovmf_file_name : ovmf_vars_file_name;
pr_err("SW_LOAD ERR: ovmf file changed\n"); pr_info("OVMF_WRITEBACK: OVMF has been written back "
fclose(fp); "to partition blob %s size 0x%lx @ gpa %p\n",
return -1; path, OVMF_NVSTORAGE_SZ, (void *)OVMF_NVSTORAGE_OFFSET);
for (i = 0; i < 2; i++) {
fd = open(path, O_RDONLY);
if (fd == -1) {
pr_err("SW_LOAD ERR: could not open ovmf file: %s (%s)\n",
path, strerror(errno));
ret = -1;
goto next;
}
/* unlock the entire file */
memset(&fl, 0, sizeof(fl));
fl.l_type = F_UNLCK;
fl.l_whence = SEEK_SET;
fl.l_start = 0;
fl.l_len = 0;
if (fcntl(fd, F_SETLK, &fl)) {
pr_err("SW_LOAD ERR: could not fcntl(F_UNLCK) "
"ovmf file: %s (%s)\n",
path, strerror(errno));
ret = -1;
}
close(fd);
next:
if (!ovmf_file_name)
path = ovmf_code_file_name;
else
break;
} }
fseek(fp, 0, SEEK_SET); return ret;
write = fwrite(ctx->baseaddr + OVMF_NVSTORAGE_OFFSET,
sizeof(char), OVMF_NVSTORAGE_SZ, fp);
if (write < OVMF_NVSTORAGE_SZ) {
pr_err("OVMF_WRITEBACK ERR: could not write back OVMF\n");
fclose(fp);
return -1;
}
fclose(fp);
pr_info("OVMF_WRITEBACK: OVMF has been written back \
to partition blob %s size %lu from guest 0x%lx\n",
ovmf_path, OVMF_NVSTORAGE_SZ, OVMF_NVSTORAGE_OFFSET);
return 0;
} }

View File

@ -41,6 +41,8 @@ extern char *guest_uuid_str;
extern uint8_t trusty_enabled; extern uint8_t trusty_enabled;
extern char *vsbl_file_name; extern char *vsbl_file_name;
extern char *ovmf_file_name; extern char *ovmf_file_name;
extern char *ovmf_code_file_name;
extern char *ovmf_vars_file_name;
extern char *kernel_file_name; extern char *kernel_file_name;
extern char *elf_file_name; extern char *elf_file_name;
extern char *vmname; extern char *vmname;

View File

@ -55,7 +55,6 @@ struct e820_entry {
extern const struct e820_entry e820_default_entries[NUM_E820_ENTRIES]; extern const struct e820_entry e820_default_entries[NUM_E820_ENTRIES];
extern int with_bootargs; extern int with_bootargs;
extern bool writeback_nv_storage;
size_t ovmf_image_size(void); size_t ovmf_image_size(void);