aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2024-01-08 17:49:40 +0000
committerKyle Evans <kevans@FreeBSD.org>2024-01-08 17:49:40 +0000
commita4a838a31ac24e19c8ee68d45cf5234615d0b958 (patch)
tree20f2d3c2ca0412dd32b9587b13333aa62bec85da
parentba719a0fec8f831aef4b23de0ff36fd47bb26651 (diff)
downloadsrc-a4a838a31ac24e19c8ee68d45cf5234615d0b958.tar.gz
src-a4a838a31ac24e19c8ee68d45cf5234615d0b958.zip
bhyveload: make error printing consistent
Previously we used a mix of perror(3) + exit(3) and err(3); standardize on the latter instead. This does remove one free() in an error path, because we're decidedly leaking a lot more than just the loader name there (loader handle, vcpu, vmctx...) anyways. Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D43331
-rw-r--r--usr.sbin/bhyveload/bhyveload.c49
1 files changed, 16 insertions, 33 deletions
diff --git a/usr.sbin/bhyveload/bhyveload.c b/usr.sbin/bhyveload/bhyveload.c
index 4f16f58bfc9f..4d89393424f4 100644
--- a/usr.sbin/bhyveload/bhyveload.c
+++ b/usr.sbin/bhyveload/bhyveload.c
@@ -861,18 +861,14 @@ main(int argc, char** argv)
need_reinit = 0;
error = vm_create(vmname);
if (error) {
- if (errno != EEXIST) {
- perror("vm_create");
- exit(1);
- }
+ if (errno != EEXIST)
+ err(1, "vm_create");
need_reinit = 1;
}
ctx = vm_open(vmname);
- if (ctx == NULL) {
- perror("vm_open");
- exit(1);
- }
+ if (ctx == NULL)
+ err(1, "vm_open");
/*
* If we weren't given an explicit loader to use, we need to support the
@@ -882,10 +878,8 @@ main(int argc, char** argv)
cap_rights_t rights;
bootfd = open("/boot", O_DIRECTORY | O_PATH);
- if (bootfd == -1) {
- perror("open");
- exit(1);
- }
+ if (bootfd == -1)
+ err(1, "open");
/*
* bootfd will be used to do a lookup of our loader and do an
@@ -893,19 +887,15 @@ main(int argc, char** argv)
* to the more usual lookup rights.
*/
if (caph_rights_limit(bootfd, cap_rights_init(&rights,
- CAP_FSTATAT, CAP_LOOKUP, CAP_MMAP_RX, CAP_READ)) < 0) {
- perror("caph_rights_limit");
- exit(1);
- }
+ CAP_FSTATAT, CAP_LOOKUP, CAP_MMAP_RX, CAP_READ)) < 0)
+ err(1, "caph_rights_limit");
}
vcpu = vm_vcpu_open(ctx, BSP);
caph_cache_catpages();
- if (caph_enter() < 0) {
- perror("caph_enter");
- exit(1);
- }
+ if (caph_enter() < 0)
+ err(1, "caph_enter");
/*
* setjmp in the case the guest wants to swap out interpreter,
@@ -921,26 +911,19 @@ main(int argc, char** argv)
if (need_reinit) {
error = vm_reinit(ctx);
- if (error) {
- perror("vm_reinit");
- exit(1);
- }
+ if (error)
+ err(1, "vm_reinit");
}
vm_set_memflags(ctx, memflags);
error = vm_setup_memory(ctx, mem_size, VM_MMAP_ALL);
- if (error) {
- perror("vm_setup_memory");
- exit(1);
- }
+ if (error)
+ err(1, "vm_setup_memory");
loader_open(bootfd);
func = dlsym(loader_hdl, "loader_main");
- if (!func) {
- printf("%s\n", dlerror());
- free(loader);
- return (1);
- }
+ if (!func)
+ errx(1, "dlsym: %s", dlerror());
tcgetattr(consout_fd, &term);
oldterm = term;