git: 979c1cdb405d - stable/13 - bhyveload: make error printing consistent

From: Kyle Evans <kevans_at_FreeBSD.org>
Date: Mon, 22 Jan 2024 17:30:07 UTC
The branch stable/13 has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=979c1cdb405d3d219b2b5b7b3d4480fd876e78e2

commit 979c1cdb405d3d219b2b5b7b3d4480fd876e78e2
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2024-01-08 17:49:40 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2024-01-22 17:17:52 +0000

    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
    
    (cherry picked from commit a4a838a31ac24e19c8ee68d45cf5234615d0b958)
---
 usr.sbin/bhyveload/bhyveload.c | 49 ++++++++++++++----------------------------
 1 file changed, 16 insertions(+), 33 deletions(-)

diff --git a/usr.sbin/bhyveload/bhyveload.c b/usr.sbin/bhyveload/bhyveload.c
index f2a91f95ce89..0c37bd6989e4 100644
--- a/usr.sbin/bhyveload/bhyveload.c
+++ b/usr.sbin/bhyveload/bhyveload.c
@@ -858,18 +858,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
@@ -879,10 +875,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
@@ -890,17 +884,13 @@ 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");
 	}
 
 	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,
@@ -916,26 +906,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;