chardev: use remoteAddr if the chardev is client
authorHaoqian He <haoqian.he@smartx.com>
Tue, 25 Feb 2025 10:45:26 +0000 (18:45 +0800)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Wed, 5 Mar 2025 05:38:09 +0000 (09:38 +0400)
If the chardev is client, the socket file path in localAddr may be NULL.
This is because the socket path comes from getsockname(), according
to man page, getsockname() returns the current address bound by the
socket sockfd. If the chardev is client, it's socket is unbound sockfd.

Therefore, when computing the client chardev socket file path, using
remoteAddr is more appropriate.

Signed-off-by: Haoqian He <haoqian.he@smartx.com>
Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-ID: <20250225104526.2924175-1-haoqian.he@smartx.com>

chardev/char-socket.c

index 91496ceda90ce8a089c961f2aadcd71a5a0d8a23..2f842f9f88b915fc5c36d54a65d8ab31d4a2f1a6 100644 (file)
@@ -571,9 +571,13 @@ static char *qemu_chr_compute_filename(SocketChardev *s)
 
     switch (ss->ss_family) {
     case AF_UNIX:
-        return g_strdup_printf("unix:%s%s",
-                               ((struct sockaddr_un *)(ss))->sun_path,
-                               s->is_listen ? ",server=on" : "");
+        if (s->is_listen) {
+            return g_strdup_printf("unix:%s,server=on",
+                                   ((struct sockaddr_un *)(ss))->sun_path);
+        } else {
+            return g_strdup_printf("unix:%s",
+                                   ((struct sockaddr_un *)(ps))->sun_path);
+        }
     case AF_INET6:
         left  = "[";
         right = "]";