patches and low-level development discussion
 help / color / mirror / code / Atom feed
From: Alyssa Ross <hi@alyssa.is>
To: devel@spectrum-os.org
Cc: Yureka <yuka@yuka.dev>
Subject: [PATCH 5/8] release/checks/integration: run from tmpdir
Date: Fri, 13 Jun 2025 16:05:05 +0200	[thread overview]
Message-ID: <20250613140508.76998-6-hi@alyssa.is> (raw)
In-Reply-To: <20250613140508.76998-1-hi@alyssa.is>

This simplifies the code by avoiding an allocation and free.

Signed-off-by: Alyssa Ross <hi@alyssa.is>
---
 release/checks/integration/networking.c | 26 ++++++++++++-------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/release/checks/integration/networking.c b/release/checks/integration/networking.c
index efc7b44..1e5983f 100644
--- a/release/checks/integration/networking.c
+++ b/release/checks/integration/networking.c
@@ -184,14 +184,13 @@ struct config {
 	} drives;
 };
 
-static FILE *start_qemu(const char *tmp_dir, struct config c)
+static FILE *start_qemu(struct config c)
 {
 	FILE *console;
 	struct utsname u;
 	int console_listener, console_conn;
 	char *arch, *args[] = {
 		(char *)c.run_qemu,
-		"-serial", nullptr,
 		"-drive", nullptr,
 		"-drive", nullptr,
 		"-drive", nullptr,
@@ -207,6 +206,7 @@ static FILE *start_qemu(const char *tmp_dir, struct config c)
 		"-monitor", "vc",
 		"-vga", "none",
 		"-smbios", "type=11,value=io.systemd.stub.kernel-cmdline-extra=console=ttyS0",
+		"-serial", "unix:console",
 		nullptr,
 	};
 
@@ -217,12 +217,7 @@ static FILE *start_qemu(const char *tmp_dir, struct config c)
 	if (strcmp(arch, "x86_64"))
 		args[sizeof args / sizeof *args - 3] = nullptr;
 
-	if (asprintf(&args[2], "unix:%s/console", tmp_dir) == -1) {
-		perror("asprintf");
-		exit(EXIT_FAILURE);
-	}
-
-	console_listener = setup_unix(args[2] + strlen("unix:"));
+	console_listener = setup_unix("console");
 
 	switch (fork()) {
 	case -1:
@@ -234,9 +229,9 @@ static FILE *start_qemu(const char *tmp_dir, struct config c)
 			exit(EXIT_FAILURE);
 		}
 
-		if (asprintf(&args[4], "file=%s,format=raw,if=pflash,readonly=true", c.drives.efi) == -1 ||
-		    asprintf(&args[6], "file=%s,format=raw,if=virtio,readonly=true", c.drives.img) == -1 ||
-		    asprintf(&args[8], "file=%s,format=raw,if=virtio,readonly=true", c.drives.user_data) == -1) {
+		if (asprintf(&args[2], "file=%s,format=raw,if=pflash,readonly=true", c.drives.efi) == -1 ||
+		    asprintf(&args[4], "file=%s,format=raw,if=virtio,readonly=true", c.drives.img) == -1 ||
+		    asprintf(&args[6], "file=%s,format=raw,if=virtio,readonly=true", c.drives.user_data) == -1) {
 			perror("asprintf");
 			exit(EXIT_FAILURE);
 		}
@@ -246,8 +241,6 @@ static FILE *start_qemu(const char *tmp_dir, struct config c)
 		exit(EXIT_FAILURE);
 	}
 
-	free(args[2]);
-
 	if ((console_conn = accept(console_listener, nullptr, nullptr)) == -1) {
 		perror("accept");
 		exit(EXIT_FAILURE);
@@ -323,9 +316,14 @@ int main(int argc, char *argv[])
 		exit(EXIT_FAILURE);
 	}
 
+	if (chdir(make_tmp_dir()) == -1) {
+		perror("chdir");
+		exit(EXIT_FAILURE);
+	}
+
 	int server = setup_server();
 
-	FILE *console = start_qemu(make_tmp_dir(), c);
+	FILE *console = start_qemu(c);
 
 	if (fputs("set -euxo pipefail\n"
 	          "mkdir /run/mnt\n"
-- 
2.49.0


  parent reply	other threads:[~2025-06-13 14:05 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-13 14:05 [PATCH 0/8] Change serial getty instances dynamically Alyssa Ross
2025-06-13 14:05 ` [PATCH 1/8] host/rootfs: poll active consoles for serial getty Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross
2025-06-13 14:05 ` [PATCH 2/8] release/checks/integration: init from networking Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross
2025-06-13 14:05 ` [PATCH 3/8] release/checks/integration: use default Meson timeout Alyssa Ross
2025-06-13 14:05 ` [PATCH 4/8] release/checks/integration: extract config struct Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross
2025-06-13 14:05 ` Alyssa Ross [this message]
2025-06-13 14:05 ` [PATCH 6/8] release/checks/integration: name QEMU arg pointers Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross
2025-06-13 14:05 ` [PATCH 7/8] release/checks/integration: extract library Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross
2025-06-13 14:05 ` [PATCH 8/8] release/checks/integration: test late serial Alyssa Ross
2025-06-28 19:54   ` Alyssa Ross

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250613140508.76998-6-hi@alyssa.is \
    --to=hi@alyssa.is \
    --cc=devel@spectrum-os.org \
    --cc=yuka@yuka.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).