2 * inet and unix socket functions for qemu
4 * (c) 2008 Gerd Hoffmann <kraxel@redhat.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * Contributions after 2012-01-13 are licensed under the terms of the
16 * GNU GPL, version 2 or (at your option) any later version.
25 #include "monitor/monitor.h"
26 #include "qemu/sockets.h"
27 #include "qemu/main-loop.h"
30 # define AI_ADDRCONFIG 0
33 /* used temporarily until all users are converted to QemuOpts */
34 QemuOptsList socket_optslist
= {
36 .head
= QTAILQ_HEAD_INITIALIZER(socket_optslist
.head
),
40 .type
= QEMU_OPT_STRING
,
43 .type
= QEMU_OPT_STRING
,
46 .type
= QEMU_OPT_STRING
,
49 .type
= QEMU_OPT_NUMBER
,
52 .type
= QEMU_OPT_BOOL
,
55 .type
= QEMU_OPT_BOOL
,
61 static int inet_getport(struct addrinfo
*e
)
63 struct sockaddr_in
*i4
;
64 struct sockaddr_in6
*i6
;
66 switch (e
->ai_family
) {
68 i6
= (void*)e
->ai_addr
;
69 return ntohs(i6
->sin6_port
);
71 i4
= (void*)e
->ai_addr
;
72 return ntohs(i4
->sin_port
);
78 static void inet_setport(struct addrinfo
*e
, int port
)
80 struct sockaddr_in
*i4
;
81 struct sockaddr_in6
*i6
;
83 switch (e
->ai_family
) {
85 i6
= (void*)e
->ai_addr
;
86 i6
->sin6_port
= htons(port
);
89 i4
= (void*)e
->ai_addr
;
90 i4
->sin_port
= htons(port
);
95 NetworkAddressFamily
inet_netfamily(int family
)
98 case PF_INET6
: return NETWORK_ADDRESS_FAMILY_IPV6
;
99 case PF_INET
: return NETWORK_ADDRESS_FAMILY_IPV4
;
100 case PF_UNIX
: return NETWORK_ADDRESS_FAMILY_UNIX
;
102 return NETWORK_ADDRESS_FAMILY_UNKNOWN
;
105 int inet_listen_opts(QemuOpts
*opts
, int port_offset
, Error
**errp
)
107 struct addrinfo ai
,*res
,*e
;
110 char uaddr
[INET6_ADDRSTRLEN
+1];
112 int slisten
, rc
, to
, port_min
, port_max
, p
;
114 memset(&ai
,0, sizeof(ai
));
115 ai
.ai_flags
= AI_PASSIVE
| AI_ADDRCONFIG
;
116 ai
.ai_family
= PF_UNSPEC
;
117 ai
.ai_socktype
= SOCK_STREAM
;
119 if ((qemu_opt_get(opts
, "host") == NULL
) ||
120 (qemu_opt_get(opts
, "port") == NULL
)) {
121 error_setg(errp
, "host and/or port not specified");
124 pstrcpy(port
, sizeof(port
), qemu_opt_get(opts
, "port"));
125 addr
= qemu_opt_get(opts
, "host");
127 to
= qemu_opt_get_number(opts
, "to", 0);
128 if (qemu_opt_get_bool(opts
, "ipv4", 0))
129 ai
.ai_family
= PF_INET
;
130 if (qemu_opt_get_bool(opts
, "ipv6", 0))
131 ai
.ai_family
= PF_INET6
;
135 unsigned long long baseport
;
136 if (parse_uint_full(port
, &baseport
, 10) < 0) {
137 error_setg(errp
, "can't convert to a number: %s", port
);
140 if (baseport
> 65535 ||
141 baseport
+ port_offset
> 65535) {
142 error_setg(errp
, "port %s out of range", port
);
145 snprintf(port
, sizeof(port
), "%d", (int)baseport
+ port_offset
);
147 rc
= getaddrinfo(strlen(addr
) ? addr
: NULL
, port
, &ai
, &res
);
149 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
154 /* create socket + bind */
155 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
156 getnameinfo((struct sockaddr
*)e
->ai_addr
,e
->ai_addrlen
,
157 uaddr
,INET6_ADDRSTRLEN
,uport
,32,
158 NI_NUMERICHOST
| NI_NUMERICSERV
);
159 slisten
= qemu_socket(e
->ai_family
, e
->ai_socktype
, e
->ai_protocol
);
162 error_setg_errno(errp
, errno
, "Failed to create socket");
167 socket_set_fast_reuse(slisten
);
169 if (e
->ai_family
== PF_INET6
) {
170 /* listen on both ipv4 and ipv6 */
172 qemu_setsockopt(slisten
, IPPROTO_IPV6
, IPV6_V6ONLY
, &off
,
177 port_min
= inet_getport(e
);
178 port_max
= to
? to
+ port_offset
: port_min
;
179 for (p
= port_min
; p
<= port_max
; p
++) {
181 if (bind(slisten
, e
->ai_addr
, e
->ai_addrlen
) == 0) {
186 error_setg_errno(errp
, errno
, "Failed to bind socket");
190 closesocket(slisten
);
196 if (listen(slisten
,1) != 0) {
197 error_setg_errno(errp
, errno
, "Failed to listen on socket");
198 closesocket(slisten
);
202 qemu_opt_set(opts
, "host", uaddr
, &error_abort
);
203 qemu_opt_set_number(opts
, "port", inet_getport(e
) - port_offset
,
205 qemu_opt_set_bool(opts
, "ipv6", e
->ai_family
== PF_INET6
,
207 qemu_opt_set_bool(opts
, "ipv4", e
->ai_family
!= PF_INET6
,
214 #define QEMU_SOCKET_RC_INPROGRESS(rc) \
215 ((rc) == -EINPROGRESS || (rc) == -EWOULDBLOCK || (rc) == -WSAEALREADY)
217 #define QEMU_SOCKET_RC_INPROGRESS(rc) \
218 ((rc) == -EINPROGRESS)
221 /* Struct to store connect state for non blocking connect */
222 typedef struct ConnectState
{
224 struct addrinfo
*addr_list
;
225 struct addrinfo
*current_addr
;
226 NonBlockingConnectHandler
*callback
;
230 static int inet_connect_addr(struct addrinfo
*addr
, bool *in_progress
,
231 ConnectState
*connect_state
, Error
**errp
);
233 static void wait_for_connect(void *opaque
)
235 ConnectState
*s
= opaque
;
237 socklen_t valsize
= sizeof(val
);
241 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
244 rc
= qemu_getsockopt(s
->fd
, SOL_SOCKET
, SO_ERROR
, &val
, &valsize
);
245 } while (rc
== -1 && socket_error() == EINTR
);
247 /* update rc to contain error */
255 error_setg_errno(&err
, errno
, "Error connecting to socket");
260 /* try to connect to the next address on the list */
261 if (s
->current_addr
) {
262 while (s
->current_addr
->ai_next
!= NULL
&& s
->fd
< 0) {
263 s
->current_addr
= s
->current_addr
->ai_next
;
264 s
->fd
= inet_connect_addr(s
->current_addr
, &in_progress
, s
, NULL
);
268 error_setg_errno(&err
, errno
, "Unable to start socket connect");
270 /* connect in progress */
276 freeaddrinfo(s
->addr_list
);
280 s
->callback(s
->fd
, err
, s
->opaque
);
287 static int inet_connect_addr(struct addrinfo
*addr
, bool *in_progress
,
288 ConnectState
*connect_state
, Error
**errp
)
292 *in_progress
= false;
294 sock
= qemu_socket(addr
->ai_family
, addr
->ai_socktype
, addr
->ai_protocol
);
296 error_setg_errno(errp
, errno
, "Failed to create socket");
299 socket_set_fast_reuse(sock
);
300 if (connect_state
!= NULL
) {
301 qemu_set_nonblock(sock
);
303 /* connect to peer */
306 if (connect(sock
, addr
->ai_addr
, addr
->ai_addrlen
) < 0) {
307 rc
= -socket_error();
309 } while (rc
== -EINTR
);
311 if (connect_state
!= NULL
&& QEMU_SOCKET_RC_INPROGRESS(rc
)) {
312 connect_state
->fd
= sock
;
313 qemu_set_fd_handler2(sock
, NULL
, NULL
, wait_for_connect
,
317 error_setg_errno(errp
, errno
, "Failed to connect socket");
324 static struct addrinfo
*inet_parse_connect_opts(QemuOpts
*opts
, Error
**errp
)
326 struct addrinfo ai
, *res
;
331 memset(&ai
, 0, sizeof(ai
));
333 ai
.ai_flags
= AI_CANONNAME
| AI_ADDRCONFIG
;
334 ai
.ai_family
= PF_UNSPEC
;
335 ai
.ai_socktype
= SOCK_STREAM
;
337 addr
= qemu_opt_get(opts
, "host");
338 port
= qemu_opt_get(opts
, "port");
339 if (addr
== NULL
|| port
== NULL
) {
340 error_setg(errp
, "host and/or port not specified");
344 if (qemu_opt_get_bool(opts
, "ipv4", 0)) {
345 ai
.ai_family
= PF_INET
;
347 if (qemu_opt_get_bool(opts
, "ipv6", 0)) {
348 ai
.ai_family
= PF_INET6
;
352 rc
= getaddrinfo(addr
, port
, &ai
, &res
);
354 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
362 * Create a socket and connect it to an address.
364 * @opts: QEMU options, recognized parameters strings "host" and "port",
365 * bools "ipv4" and "ipv6".
366 * @errp: set on error
367 * @callback: callback function for non-blocking connect
368 * @opaque: opaque for callback function
370 * Returns: -1 on error, file descriptor on success.
372 * If @callback is non-null, the connect is non-blocking. If this
373 * function succeeds, callback will be called when the connection
374 * completes, with the file descriptor on success, or -1 on error.
376 int inet_connect_opts(QemuOpts
*opts
, Error
**errp
,
377 NonBlockingConnectHandler
*callback
, void *opaque
)
379 Error
*local_err
= NULL
;
380 struct addrinfo
*res
, *e
;
383 ConnectState
*connect_state
= NULL
;
385 res
= inet_parse_connect_opts(opts
, errp
);
390 if (callback
!= NULL
) {
391 connect_state
= g_malloc0(sizeof(*connect_state
));
392 connect_state
->addr_list
= res
;
393 connect_state
->callback
= callback
;
394 connect_state
->opaque
= opaque
;
397 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
398 error_free(local_err
);
400 if (connect_state
!= NULL
) {
401 connect_state
->current_addr
= e
;
403 sock
= inet_connect_addr(e
, &in_progress
, connect_state
, &local_err
);
410 error_propagate(errp
, local_err
);
411 } else if (in_progress
) {
412 /* wait_for_connect() will do the rest */
416 callback(sock
, NULL
, opaque
);
419 g_free(connect_state
);
424 int inet_dgram_opts(QemuOpts
*opts
, Error
**errp
)
426 struct addrinfo ai
, *peer
= NULL
, *local
= NULL
;
431 /* lookup peer addr */
432 memset(&ai
,0, sizeof(ai
));
433 ai
.ai_flags
= AI_CANONNAME
| AI_ADDRCONFIG
;
434 ai
.ai_family
= PF_UNSPEC
;
435 ai
.ai_socktype
= SOCK_DGRAM
;
437 addr
= qemu_opt_get(opts
, "host");
438 port
= qemu_opt_get(opts
, "port");
439 if (addr
== NULL
|| strlen(addr
) == 0) {
442 if (port
== NULL
|| strlen(port
) == 0) {
443 error_setg(errp
, "remote port not specified");
447 if (qemu_opt_get_bool(opts
, "ipv4", 0))
448 ai
.ai_family
= PF_INET
;
449 if (qemu_opt_get_bool(opts
, "ipv6", 0))
450 ai
.ai_family
= PF_INET6
;
452 if (0 != (rc
= getaddrinfo(addr
, port
, &ai
, &peer
))) {
453 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
458 /* lookup local addr */
459 memset(&ai
,0, sizeof(ai
));
460 ai
.ai_flags
= AI_PASSIVE
;
461 ai
.ai_family
= peer
->ai_family
;
462 ai
.ai_socktype
= SOCK_DGRAM
;
464 addr
= qemu_opt_get(opts
, "localaddr");
465 port
= qemu_opt_get(opts
, "localport");
466 if (addr
== NULL
|| strlen(addr
) == 0) {
469 if (!port
|| strlen(port
) == 0)
472 if (0 != (rc
= getaddrinfo(addr
, port
, &ai
, &local
))) {
473 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
479 sock
= qemu_socket(peer
->ai_family
, peer
->ai_socktype
, peer
->ai_protocol
);
481 error_setg_errno(errp
, errno
, "Failed to create socket");
484 socket_set_fast_reuse(sock
);
487 if (bind(sock
, local
->ai_addr
, local
->ai_addrlen
) < 0) {
488 error_setg_errno(errp
, errno
, "Failed to bind socket");
492 /* connect to peer */
493 if (connect(sock
,peer
->ai_addr
,peer
->ai_addrlen
) < 0) {
494 error_setg_errno(errp
, errno
, "Failed to connect socket");
512 /* compatibility wrapper */
513 InetSocketAddress
*inet_parse(const char *str
, Error
**errp
)
515 InetSocketAddress
*addr
;
516 const char *optstr
, *h
;
522 addr
= g_new0(InetSocketAddress
, 1);
528 if (1 != sscanf(str
, ":%32[^,]%n", port
, &pos
)) {
529 error_setg(errp
, "error parsing port in address '%s'", str
);
532 } else if (str
[0] == '[') {
534 if (2 != sscanf(str
, "[%64[^]]]:%32[^,]%n", host
, port
, &pos
)) {
535 error_setg(errp
, "error parsing IPv6 address '%s'", str
);
538 addr
->ipv6
= addr
->has_ipv6
= true;
540 /* hostname or IPv4 addr */
541 if (2 != sscanf(str
, "%64[^:]:%32[^,]%n", host
, port
, &pos
)) {
542 error_setg(errp
, "error parsing address '%s'", str
);
545 if (host
[strspn(host
, "0123456789.")] == '\0') {
546 addr
->ipv4
= addr
->has_ipv4
= true;
550 addr
->host
= g_strdup(host
);
551 addr
->port
= g_strdup(port
);
555 h
= strstr(optstr
, ",to=");
558 if (sscanf(h
, "%d%n", &to
, &pos
) != 1 ||
559 (h
[pos
] != '\0' && h
[pos
] != ',')) {
560 error_setg(errp
, "error parsing to= argument");
566 if (strstr(optstr
, ",ipv4")) {
567 addr
->ipv4
= addr
->has_ipv4
= true;
569 if (strstr(optstr
, ",ipv6")) {
570 addr
->ipv6
= addr
->has_ipv6
= true;
575 qapi_free_InetSocketAddress(addr
);
579 static void inet_addr_to_opts(QemuOpts
*opts
, const InetSocketAddress
*addr
)
581 bool ipv4
= addr
->ipv4
|| !addr
->has_ipv4
;
582 bool ipv6
= addr
->ipv6
|| !addr
->has_ipv6
;
584 if (!ipv4
|| !ipv6
) {
585 qemu_opt_set_bool(opts
, "ipv4", ipv4
, &error_abort
);
586 qemu_opt_set_bool(opts
, "ipv6", ipv6
, &error_abort
);
589 qemu_opt_set_number(opts
, "to", addr
->to
, &error_abort
);
591 qemu_opt_set(opts
, "host", addr
->host
, &error_abort
);
592 qemu_opt_set(opts
, "port", addr
->port
, &error_abort
);
595 int inet_listen(const char *str
, char *ostr
, int olen
,
596 int socktype
, int port_offset
, Error
**errp
)
601 InetSocketAddress
*addr
;
603 addr
= inet_parse(str
, errp
);
605 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
606 inet_addr_to_opts(opts
, addr
);
607 qapi_free_InetSocketAddress(addr
);
608 sock
= inet_listen_opts(opts
, port_offset
, errp
);
609 if (sock
!= -1 && ostr
) {
610 optstr
= strchr(str
, ',');
611 if (qemu_opt_get_bool(opts
, "ipv6", 0)) {
612 snprintf(ostr
, olen
, "[%s]:%s%s",
613 qemu_opt_get(opts
, "host"),
614 qemu_opt_get(opts
, "port"),
615 optstr
? optstr
: "");
617 snprintf(ostr
, olen
, "%s:%s%s",
618 qemu_opt_get(opts
, "host"),
619 qemu_opt_get(opts
, "port"),
620 optstr
? optstr
: "");
629 * Create a blocking socket and connect it to an address.
631 * @str: address string
632 * @errp: set in case of an error
634 * Returns -1 in case of error, file descriptor on success
636 int inet_connect(const char *str
, Error
**errp
)
640 InetSocketAddress
*addr
;
642 addr
= inet_parse(str
, errp
);
644 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
645 inet_addr_to_opts(opts
, addr
);
646 qapi_free_InetSocketAddress(addr
);
647 sock
= inet_connect_opts(opts
, errp
, NULL
, NULL
);
654 * Create a non-blocking socket and connect it to an address.
655 * Calls the callback function with fd in case of success or -1 in case of
658 * @str: address string
659 * @callback: callback function that is called when connect completes,
661 * @opaque: opaque for callback function
662 * @errp: set in case of an error
664 * Returns: -1 on immediate error, file descriptor on success.
666 int inet_nonblocking_connect(const char *str
,
667 NonBlockingConnectHandler
*callback
,
668 void *opaque
, Error
**errp
)
672 InetSocketAddress
*addr
;
674 g_assert(callback
!= NULL
);
676 addr
= inet_parse(str
, errp
);
678 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
679 inet_addr_to_opts(opts
, addr
);
680 qapi_free_InetSocketAddress(addr
);
681 sock
= inet_connect_opts(opts
, errp
, callback
, opaque
);
689 int unix_listen_opts(QemuOpts
*opts
, Error
**errp
)
691 struct sockaddr_un un
;
692 const char *path
= qemu_opt_get(opts
, "path");
695 sock
= qemu_socket(PF_UNIX
, SOCK_STREAM
, 0);
697 error_setg_errno(errp
, errno
, "Failed to create Unix socket");
701 memset(&un
, 0, sizeof(un
));
702 un
.sun_family
= AF_UNIX
;
703 if (path
&& strlen(path
)) {
704 snprintf(un
.sun_path
, sizeof(un
.sun_path
), "%s", path
);
706 const char *tmpdir
= getenv("TMPDIR");
707 tmpdir
= tmpdir
? tmpdir
: "/tmp";
708 if (snprintf(un
.sun_path
, sizeof(un
.sun_path
), "%s/qemu-socket-XXXXXX",
709 tmpdir
) >= sizeof(un
.sun_path
)) {
710 error_setg_errno(errp
, errno
,
711 "TMPDIR environment variable (%s) too large", tmpdir
);
716 * This dummy fd usage silences the mktemp() unsecure warning.
717 * Using mkstemp() doesn't make things more secure here
718 * though. bind() complains about existing files, so we have
719 * to unlink first and thus re-open the race window. The
720 * worst case possible is bind() failing, i.e. a DoS attack.
722 fd
= mkstemp(un
.sun_path
);
724 error_setg_errno(errp
, errno
,
725 "Failed to make a temporary socket name in %s", tmpdir
);
729 qemu_opt_set(opts
, "path", un
.sun_path
, &error_abort
);
733 if (bind(sock
, (struct sockaddr
*) &un
, sizeof(un
)) < 0) {
734 error_setg_errno(errp
, errno
, "Failed to bind socket to %s", un
.sun_path
);
737 if (listen(sock
, 1) < 0) {
738 error_setg_errno(errp
, errno
, "Failed to listen on socket");
749 int unix_connect_opts(QemuOpts
*opts
, Error
**errp
,
750 NonBlockingConnectHandler
*callback
, void *opaque
)
752 struct sockaddr_un un
;
753 const char *path
= qemu_opt_get(opts
, "path");
754 ConnectState
*connect_state
= NULL
;
758 error_setg(errp
, "unix connect: no path specified");
762 sock
= qemu_socket(PF_UNIX
, SOCK_STREAM
, 0);
764 error_setg_errno(errp
, errno
, "Failed to create socket");
767 if (callback
!= NULL
) {
768 connect_state
= g_malloc0(sizeof(*connect_state
));
769 connect_state
->callback
= callback
;
770 connect_state
->opaque
= opaque
;
771 qemu_set_nonblock(sock
);
774 memset(&un
, 0, sizeof(un
));
775 un
.sun_family
= AF_UNIX
;
776 snprintf(un
.sun_path
, sizeof(un
.sun_path
), "%s", path
);
778 /* connect to peer */
781 if (connect(sock
, (struct sockaddr
*) &un
, sizeof(un
)) < 0) {
782 rc
= -socket_error();
784 } while (rc
== -EINTR
);
786 if (connect_state
!= NULL
&& QEMU_SOCKET_RC_INPROGRESS(rc
)) {
787 connect_state
->fd
= sock
;
788 qemu_set_fd_handler2(sock
, NULL
, NULL
, wait_for_connect
,
791 } else if (rc
>= 0) {
792 /* non blocking socket immediate success, call callback */
793 if (callback
!= NULL
) {
794 callback(sock
, NULL
, opaque
);
799 error_setg_errno(errp
, -rc
, "Failed to connect socket");
804 g_free(connect_state
);
810 int unix_listen_opts(QemuOpts
*opts
, Error
**errp
)
812 error_setg(errp
, "unix sockets are not available on windows");
817 int unix_connect_opts(QemuOpts
*opts
, Error
**errp
,
818 NonBlockingConnectHandler
*callback
, void *opaque
)
820 error_setg(errp
, "unix sockets are not available on windows");
826 /* compatibility wrapper */
827 int unix_listen(const char *str
, char *ostr
, int olen
, Error
**errp
)
833 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
835 optstr
= strchr(str
, ',');
839 path
= g_malloc(len
+1);
840 snprintf(path
, len
+1, "%.*s", len
, str
);
841 qemu_opt_set(opts
, "path", path
, &error_abort
);
845 qemu_opt_set(opts
, "path", str
, &error_abort
);
848 sock
= unix_listen_opts(opts
, errp
);
850 if (sock
!= -1 && ostr
)
851 snprintf(ostr
, olen
, "%s%s", qemu_opt_get(opts
, "path"), optstr
? optstr
: "");
856 int unix_connect(const char *path
, Error
**errp
)
861 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
862 qemu_opt_set(opts
, "path", path
, &error_abort
);
863 sock
= unix_connect_opts(opts
, errp
, NULL
, NULL
);
869 int unix_nonblocking_connect(const char *path
,
870 NonBlockingConnectHandler
*callback
,
871 void *opaque
, Error
**errp
)
876 g_assert(callback
!= NULL
);
878 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
879 qemu_opt_set(opts
, "path", path
, &error_abort
);
880 sock
= unix_connect_opts(opts
, errp
, callback
, opaque
);
885 SocketAddress
*socket_parse(const char *str
, Error
**errp
)
889 addr
= g_new0(SocketAddress
, 1);
890 if (strstart(str
, "unix:", NULL
)) {
891 if (str
[5] == '\0') {
892 error_setg(errp
, "invalid Unix socket address");
895 addr
->kind
= SOCKET_ADDRESS_KIND_UNIX
;
896 addr
->q_unix
= g_new(UnixSocketAddress
, 1);
897 addr
->q_unix
->path
= g_strdup(str
+ 5);
899 } else if (strstart(str
, "fd:", NULL
)) {
900 if (str
[3] == '\0') {
901 error_setg(errp
, "invalid file descriptor address");
904 addr
->kind
= SOCKET_ADDRESS_KIND_FD
;
905 addr
->fd
= g_new(String
, 1);
906 addr
->fd
->str
= g_strdup(str
+ 3);
909 addr
->kind
= SOCKET_ADDRESS_KIND_INET
;
910 addr
->inet
= inet_parse(str
, errp
);
911 if (addr
->inet
== NULL
) {
918 qapi_free_SocketAddress(addr
);
922 int socket_connect(SocketAddress
*addr
, Error
**errp
,
923 NonBlockingConnectHandler
*callback
, void *opaque
)
928 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
929 switch (addr
->kind
) {
930 case SOCKET_ADDRESS_KIND_INET
:
931 inet_addr_to_opts(opts
, addr
->inet
);
932 fd
= inet_connect_opts(opts
, errp
, callback
, opaque
);
935 case SOCKET_ADDRESS_KIND_UNIX
:
936 qemu_opt_set(opts
, "path", addr
->q_unix
->path
, &error_abort
);
937 fd
= unix_connect_opts(opts
, errp
, callback
, opaque
);
940 case SOCKET_ADDRESS_KIND_FD
:
941 fd
= monitor_get_fd(cur_mon
, addr
->fd
->str
, errp
);
942 if (fd
>= 0 && callback
) {
943 qemu_set_nonblock(fd
);
944 callback(fd
, NULL
, opaque
);
955 int socket_listen(SocketAddress
*addr
, Error
**errp
)
960 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
961 switch (addr
->kind
) {
962 case SOCKET_ADDRESS_KIND_INET
:
963 inet_addr_to_opts(opts
, addr
->inet
);
964 fd
= inet_listen_opts(opts
, 0, errp
);
967 case SOCKET_ADDRESS_KIND_UNIX
:
968 qemu_opt_set(opts
, "path", addr
->q_unix
->path
, &error_abort
);
969 fd
= unix_listen_opts(opts
, errp
);
972 case SOCKET_ADDRESS_KIND_FD
:
973 fd
= monitor_get_fd(cur_mon
, addr
->fd
->str
, errp
);
983 int socket_dgram(SocketAddress
*remote
, SocketAddress
*local
, Error
**errp
)
988 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
989 switch (remote
->kind
) {
990 case SOCKET_ADDRESS_KIND_INET
:
991 inet_addr_to_opts(opts
, remote
->inet
);
993 qemu_opt_set(opts
, "localaddr", local
->inet
->host
, &error_abort
);
994 qemu_opt_set(opts
, "localport", local
->inet
->port
, &error_abort
);
996 fd
= inet_dgram_opts(opts
, errp
);
1000 error_setg(errp
, "socket type unsupported for datagram");
1003 qemu_opts_del(opts
);