From: Alyssa Ross <hi@alyssa.is>
To: devel@spectrum-os.org
Cc: Demi Marie Obenour <demiobenour@gmail.com>,
Yureka Lilian <yureka@cyberchaos.dev>
Subject: [PATCH] release/checks/integration: handle partial sends
Date: Sat, 29 Nov 2025 17:35:22 +0100 [thread overview]
Message-ID: <20251129163521.717709-2-hi@alyssa.is> (raw)
Sometimes we see a test failure that looks like this:
unexpected connection data: qemu-system-aarch64: terminating on signal 15 from pid 184 ()
I think this is because, now that the nc command in the networking
integration test has a timeout, it's possible for it to time out after
having opened the connection, but before having written all its input
to it. Therefore, ignore connections that send a prefix of the
expected data (including nothing), and just wait for the next
connection rather than failing if that happens.
Closes: https://spectrum-os.org/lists/archives/spectrum-devel/875xbl33vw.fsf@alyssa.is/
Fixes: c61b297 ("release/checks/integration: add nc timeout")
Signed-off-by: Alyssa Ross <hi@alyssa.is>
---
Please test! It's difficult to know if I've solved the problem for
real, since it happens transiently.
release/checks/integration/networking.c | 49 +++++++++++++++----------
1 file changed, 30 insertions(+), 19 deletions(-)
diff --git a/release/checks/integration/networking.c b/release/checks/integration/networking.c
index 97d7895..a445af1 100644
--- a/release/checks/integration/networking.c
+++ b/release/checks/integration/networking.c
@@ -57,32 +57,43 @@ static int setup_server(void)
static void expect_connection(int listener)
{
- int conn_fd;
- FILE *conn;
+ int conn, r;
char msg[7];
size_t len;
- fputs("waiting for server connection\n", stderr);
- if ((conn_fd = accept(listener, nullptr, nullptr)) == -1) {
- perror("accept");
- exit(EXIT_FAILURE);
- }
- fputs("accepted connection!\n", stderr);
- if (!(conn = fdopen(conn_fd, "r"))) {
- perror("fdopen(server connection)");
- exit(EXIT_FAILURE);
- }
+ for (;;) {
+ len = 0;
- len = fread(msg, 1, sizeof msg, conn);
- if (len != 6 || memcmp("hello\n", msg, 6)) {
- if (ferror(conn))
- perror("fread(server connection)");
- else
+ fputs("waiting for server connection\n", stderr);
+ if ((conn = accept(listener, nullptr, nullptr)) == -1) {
+ perror("accept");
+ exit(EXIT_FAILURE);
+ }
+ fputs("accepted connection!\n", stderr);
+
+ for (;;) {
+ r = read(conn, msg + len, sizeof msg - len);
+ if (r == -1) {
+ perror("read");
+ exit(EXIT_FAILURE);
+ }
+ if (r == 0)
+ break;
+ len += r;
+ }
+
+ if (memcmp("hello\n", msg, len) || len > 6) {
fprintf(stderr, "unexpected connection data: %.*s",
(int)len, msg);
- exit(EXIT_FAILURE);
+ exit(EXIT_FAILURE);
+ }
+
+ // If connection was disconnect partway through, try again.
+ if (len < 6)
+ continue;
+
+ return;
}
- fclose(conn);
}
static void drain_connections(int listener)
base-commit: 067c6a5d50971242f9cb8ac0ac76e20d88a9b5c1
--
2.51.0
next reply other threads:[~2025-11-29 16:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-29 16:35 Alyssa Ross [this message]
2025-11-29 17:27 ` [PATCH] release/checks/integration: handle partial sends Yureka
2025-11-29 17:38 ` 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=20251129163521.717709-2-hi@alyssa.is \
--to=hi@alyssa.is \
--cc=demiobenour@gmail.com \
--cc=devel@spectrum-os.org \
--cc=yureka@cyberchaos.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).