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 snprintf(uport
, sizeof(uport
), "%d", inet_getport(e
) - port_offset
);
203 qemu_opt_set(opts
, "host", uaddr
);
204 qemu_opt_set(opts
, "port", uport
);
205 qemu_opt_set(opts
, "ipv6", (e
->ai_family
== PF_INET6
) ? "on" : "off");
206 qemu_opt_set(opts
, "ipv4", (e
->ai_family
!= PF_INET6
) ? "on" : "off");
212 #define QEMU_SOCKET_RC_INPROGRESS(rc) \
213 ((rc) == -EINPROGRESS || (rc) == -EWOULDBLOCK || (rc) == -WSAEALREADY)
215 #define QEMU_SOCKET_RC_INPROGRESS(rc) \
216 ((rc) == -EINPROGRESS)
219 /* Struct to store connect state for non blocking connect */
220 typedef struct ConnectState
{
222 struct addrinfo
*addr_list
;
223 struct addrinfo
*current_addr
;
224 NonBlockingConnectHandler
*callback
;
228 static int inet_connect_addr(struct addrinfo
*addr
, bool *in_progress
,
229 ConnectState
*connect_state
, Error
**errp
);
231 static void wait_for_connect(void *opaque
)
233 ConnectState
*s
= opaque
;
235 socklen_t valsize
= sizeof(val
);
239 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
242 rc
= qemu_getsockopt(s
->fd
, SOL_SOCKET
, SO_ERROR
, &val
, &valsize
);
243 } while (rc
== -1 && socket_error() == EINTR
);
245 /* update rc to contain error */
253 error_setg_errno(&err
, errno
, "Error connecting to socket");
258 /* try to connect to the next address on the list */
259 if (s
->current_addr
) {
260 while (s
->current_addr
->ai_next
!= NULL
&& s
->fd
< 0) {
261 s
->current_addr
= s
->current_addr
->ai_next
;
262 s
->fd
= inet_connect_addr(s
->current_addr
, &in_progress
, s
, NULL
);
266 error_setg_errno(&err
, errno
, "Unable to start socket connect");
268 /* connect in progress */
274 freeaddrinfo(s
->addr_list
);
278 s
->callback(s
->fd
, err
, s
->opaque
);
285 static int inet_connect_addr(struct addrinfo
*addr
, bool *in_progress
,
286 ConnectState
*connect_state
, Error
**errp
)
290 *in_progress
= false;
292 sock
= qemu_socket(addr
->ai_family
, addr
->ai_socktype
, addr
->ai_protocol
);
294 error_setg_errno(errp
, errno
, "Failed to create socket");
297 socket_set_fast_reuse(sock
);
298 if (connect_state
!= NULL
) {
299 qemu_set_nonblock(sock
);
301 /* connect to peer */
304 if (connect(sock
, addr
->ai_addr
, addr
->ai_addrlen
) < 0) {
305 rc
= -socket_error();
307 } while (rc
== -EINTR
);
309 if (connect_state
!= NULL
&& QEMU_SOCKET_RC_INPROGRESS(rc
)) {
310 connect_state
->fd
= sock
;
311 qemu_set_fd_handler2(sock
, NULL
, NULL
, wait_for_connect
,
315 error_setg_errno(errp
, errno
, "Failed to connect socket");
322 static struct addrinfo
*inet_parse_connect_opts(QemuOpts
*opts
, Error
**errp
)
324 struct addrinfo ai
, *res
;
329 memset(&ai
, 0, sizeof(ai
));
331 ai
.ai_flags
= AI_CANONNAME
| AI_ADDRCONFIG
;
332 ai
.ai_family
= PF_UNSPEC
;
333 ai
.ai_socktype
= SOCK_STREAM
;
335 addr
= qemu_opt_get(opts
, "host");
336 port
= qemu_opt_get(opts
, "port");
337 if (addr
== NULL
|| port
== NULL
) {
338 error_setg(errp
, "host and/or port not specified");
342 if (qemu_opt_get_bool(opts
, "ipv4", 0)) {
343 ai
.ai_family
= PF_INET
;
345 if (qemu_opt_get_bool(opts
, "ipv6", 0)) {
346 ai
.ai_family
= PF_INET6
;
350 rc
= getaddrinfo(addr
, port
, &ai
, &res
);
352 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
360 * Create a socket and connect it to an address.
362 * @opts: QEMU options, recognized parameters strings "host" and "port",
363 * bools "ipv4" and "ipv6".
364 * @errp: set on error
365 * @callback: callback function for non-blocking connect
366 * @opaque: opaque for callback function
368 * Returns: -1 on error, file descriptor on success.
370 * If @callback is non-null, the connect is non-blocking. If this
371 * function succeeds, callback will be called when the connection
372 * completes, with the file descriptor on success, or -1 on error.
374 int inet_connect_opts(QemuOpts
*opts
, Error
**errp
,
375 NonBlockingConnectHandler
*callback
, void *opaque
)
377 Error
*local_err
= NULL
;
378 struct addrinfo
*res
, *e
;
381 ConnectState
*connect_state
= NULL
;
383 res
= inet_parse_connect_opts(opts
, errp
);
388 if (callback
!= NULL
) {
389 connect_state
= g_malloc0(sizeof(*connect_state
));
390 connect_state
->addr_list
= res
;
391 connect_state
->callback
= callback
;
392 connect_state
->opaque
= opaque
;
395 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
396 error_free(local_err
);
398 if (connect_state
!= NULL
) {
399 connect_state
->current_addr
= e
;
401 sock
= inet_connect_addr(e
, &in_progress
, connect_state
, &local_err
);
408 error_propagate(errp
, local_err
);
409 } else if (in_progress
) {
410 /* wait_for_connect() will do the rest */
414 callback(sock
, NULL
, opaque
);
417 g_free(connect_state
);
422 int inet_dgram_opts(QemuOpts
*opts
, Error
**errp
)
424 struct addrinfo ai
, *peer
= NULL
, *local
= NULL
;
429 /* lookup peer addr */
430 memset(&ai
,0, sizeof(ai
));
431 ai
.ai_flags
= AI_CANONNAME
| AI_ADDRCONFIG
;
432 ai
.ai_family
= PF_UNSPEC
;
433 ai
.ai_socktype
= SOCK_DGRAM
;
435 addr
= qemu_opt_get(opts
, "host");
436 port
= qemu_opt_get(opts
, "port");
437 if (addr
== NULL
|| strlen(addr
) == 0) {
440 if (port
== NULL
|| strlen(port
) == 0) {
441 error_setg(errp
, "remote port not specified");
445 if (qemu_opt_get_bool(opts
, "ipv4", 0))
446 ai
.ai_family
= PF_INET
;
447 if (qemu_opt_get_bool(opts
, "ipv6", 0))
448 ai
.ai_family
= PF_INET6
;
450 if (0 != (rc
= getaddrinfo(addr
, port
, &ai
, &peer
))) {
451 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
456 /* lookup local addr */
457 memset(&ai
,0, sizeof(ai
));
458 ai
.ai_flags
= AI_PASSIVE
;
459 ai
.ai_family
= peer
->ai_family
;
460 ai
.ai_socktype
= SOCK_DGRAM
;
462 addr
= qemu_opt_get(opts
, "localaddr");
463 port
= qemu_opt_get(opts
, "localport");
464 if (addr
== NULL
|| strlen(addr
) == 0) {
467 if (!port
|| strlen(port
) == 0)
470 if (0 != (rc
= getaddrinfo(addr
, port
, &ai
, &local
))) {
471 error_setg(errp
, "address resolution failed for %s:%s: %s", addr
, port
,
477 sock
= qemu_socket(peer
->ai_family
, peer
->ai_socktype
, peer
->ai_protocol
);
479 error_setg_errno(errp
, errno
, "Failed to create socket");
482 socket_set_fast_reuse(sock
);
485 if (bind(sock
, local
->ai_addr
, local
->ai_addrlen
) < 0) {
486 error_setg_errno(errp
, errno
, "Failed to bind socket");
490 /* connect to peer */
491 if (connect(sock
,peer
->ai_addr
,peer
->ai_addrlen
) < 0) {
492 error_setg_errno(errp
, errno
, "Failed to connect socket");
510 /* compatibility wrapper */
511 InetSocketAddress
*inet_parse(const char *str
, Error
**errp
)
513 InetSocketAddress
*addr
;
514 const char *optstr
, *h
;
520 addr
= g_new0(InetSocketAddress
, 1);
526 if (1 != sscanf(str
, ":%32[^,]%n", port
, &pos
)) {
527 error_setg(errp
, "error parsing port in address '%s'", str
);
530 } else if (str
[0] == '[') {
532 if (2 != sscanf(str
, "[%64[^]]]:%32[^,]%n", host
, port
, &pos
)) {
533 error_setg(errp
, "error parsing IPv6 address '%s'", str
);
536 addr
->ipv6
= addr
->has_ipv6
= true;
538 /* hostname or IPv4 addr */
539 if (2 != sscanf(str
, "%64[^:]:%32[^,]%n", host
, port
, &pos
)) {
540 error_setg(errp
, "error parsing address '%s'", str
);
543 if (host
[strspn(host
, "0123456789.")] == '\0') {
544 addr
->ipv4
= addr
->has_ipv4
= true;
548 addr
->host
= g_strdup(host
);
549 addr
->port
= g_strdup(port
);
553 h
= strstr(optstr
, ",to=");
556 if (sscanf(h
, "%d%n", &to
, &pos
) != 1 ||
557 (h
[pos
] != '\0' && h
[pos
] != ',')) {
558 error_setg(errp
, "error parsing to= argument");
564 if (strstr(optstr
, ",ipv4")) {
565 addr
->ipv4
= addr
->has_ipv4
= true;
567 if (strstr(optstr
, ",ipv6")) {
568 addr
->ipv6
= addr
->has_ipv6
= true;
573 qapi_free_InetSocketAddress(addr
);
577 static void inet_addr_to_opts(QemuOpts
*opts
, const InetSocketAddress
*addr
)
579 bool ipv4
= addr
->ipv4
|| !addr
->has_ipv4
;
580 bool ipv6
= addr
->ipv6
|| !addr
->has_ipv6
;
582 if (!ipv4
|| !ipv6
) {
583 qemu_opt_set_bool(opts
, "ipv4", ipv4
);
584 qemu_opt_set_bool(opts
, "ipv6", ipv6
);
588 snprintf(to
, sizeof(to
), "%d", addr
->to
);
589 qemu_opt_set(opts
, "to", to
);
591 qemu_opt_set(opts
, "host", addr
->host
);
592 qemu_opt_set(opts
, "port", addr
->port
);
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 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 char *tmpdir
= getenv("TMPDIR");
707 snprintf(un
.sun_path
, sizeof(un
.sun_path
), "%s/qemu-socket-XXXXXX",
708 tmpdir
? tmpdir
: "/tmp");
710 * This dummy fd usage silences the mktemp() unsecure warning.
711 * Using mkstemp() doesn't make things more secure here
712 * though. bind() complains about existing files, so we have
713 * to unlink first and thus re-open the race window. The
714 * worst case possible is bind() failing, i.e. a DoS attack.
716 fd
= mkstemp(un
.sun_path
); close(fd
);
717 qemu_opt_set(opts
, "path", un
.sun_path
);
721 if (bind(sock
, (struct sockaddr
*) &un
, sizeof(un
)) < 0) {
722 error_setg_errno(errp
, errno
, "Failed to bind socket");
725 if (listen(sock
, 1) < 0) {
726 error_setg_errno(errp
, errno
, "Failed to listen on socket");
737 int unix_connect_opts(QemuOpts
*opts
, Error
**errp
,
738 NonBlockingConnectHandler
*callback
, void *opaque
)
740 struct sockaddr_un un
;
741 const char *path
= qemu_opt_get(opts
, "path");
742 ConnectState
*connect_state
= NULL
;
746 error_setg(errp
, "unix connect: no path specified");
750 sock
= qemu_socket(PF_UNIX
, SOCK_STREAM
, 0);
752 error_setg_errno(errp
, errno
, "Failed to create socket");
755 if (callback
!= NULL
) {
756 connect_state
= g_malloc0(sizeof(*connect_state
));
757 connect_state
->callback
= callback
;
758 connect_state
->opaque
= opaque
;
759 qemu_set_nonblock(sock
);
762 memset(&un
, 0, sizeof(un
));
763 un
.sun_family
= AF_UNIX
;
764 snprintf(un
.sun_path
, sizeof(un
.sun_path
), "%s", path
);
766 /* connect to peer */
769 if (connect(sock
, (struct sockaddr
*) &un
, sizeof(un
)) < 0) {
770 rc
= -socket_error();
772 } while (rc
== -EINTR
);
774 if (connect_state
!= NULL
&& QEMU_SOCKET_RC_INPROGRESS(rc
)) {
775 connect_state
->fd
= sock
;
776 qemu_set_fd_handler2(sock
, NULL
, NULL
, wait_for_connect
,
779 } else if (rc
>= 0) {
780 /* non blocking socket immediate success, call callback */
781 if (callback
!= NULL
) {
782 callback(sock
, NULL
, opaque
);
787 error_setg_errno(errp
, -rc
, "Failed to connect socket");
792 g_free(connect_state
);
798 int unix_listen_opts(QemuOpts
*opts
, Error
**errp
)
800 error_setg(errp
, "unix sockets are not available on windows");
805 int unix_connect_opts(QemuOpts
*opts
, Error
**errp
,
806 NonBlockingConnectHandler
*callback
, void *opaque
)
808 error_setg(errp
, "unix sockets are not available on windows");
814 /* compatibility wrapper */
815 int unix_listen(const char *str
, char *ostr
, int olen
, Error
**errp
)
821 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
823 optstr
= strchr(str
, ',');
827 path
= g_malloc(len
+1);
828 snprintf(path
, len
+1, "%.*s", len
, str
);
829 qemu_opt_set(opts
, "path", path
);
833 qemu_opt_set(opts
, "path", str
);
836 sock
= unix_listen_opts(opts
, errp
);
838 if (sock
!= -1 && ostr
)
839 snprintf(ostr
, olen
, "%s%s", qemu_opt_get(opts
, "path"), optstr
? optstr
: "");
844 int unix_connect(const char *path
, Error
**errp
)
849 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
850 qemu_opt_set(opts
, "path", path
);
851 sock
= unix_connect_opts(opts
, errp
, NULL
, NULL
);
857 int unix_nonblocking_connect(const char *path
,
858 NonBlockingConnectHandler
*callback
,
859 void *opaque
, Error
**errp
)
864 g_assert(callback
!= NULL
);
866 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
867 qemu_opt_set(opts
, "path", path
);
868 sock
= unix_connect_opts(opts
, errp
, callback
, opaque
);
873 SocketAddress
*socket_parse(const char *str
, Error
**errp
)
877 addr
= g_new0(SocketAddress
, 1);
878 if (strstart(str
, "unix:", NULL
)) {
879 if (str
[5] == '\0') {
880 error_setg(errp
, "invalid Unix socket address");
883 addr
->kind
= SOCKET_ADDRESS_KIND_UNIX
;
884 addr
->q_unix
= g_new(UnixSocketAddress
, 1);
885 addr
->q_unix
->path
= g_strdup(str
+ 5);
887 } else if (strstart(str
, "fd:", NULL
)) {
888 if (str
[3] == '\0') {
889 error_setg(errp
, "invalid file descriptor address");
892 addr
->kind
= SOCKET_ADDRESS_KIND_FD
;
893 addr
->fd
= g_new(String
, 1);
894 addr
->fd
->str
= g_strdup(str
+ 3);
897 addr
->kind
= SOCKET_ADDRESS_KIND_INET
;
898 addr
->inet
= inet_parse(str
, errp
);
899 if (addr
->inet
== NULL
) {
906 qapi_free_SocketAddress(addr
);
910 int socket_connect(SocketAddress
*addr
, Error
**errp
,
911 NonBlockingConnectHandler
*callback
, void *opaque
)
916 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
917 switch (addr
->kind
) {
918 case SOCKET_ADDRESS_KIND_INET
:
919 inet_addr_to_opts(opts
, addr
->inet
);
920 fd
= inet_connect_opts(opts
, errp
, callback
, opaque
);
923 case SOCKET_ADDRESS_KIND_UNIX
:
924 qemu_opt_set(opts
, "path", addr
->q_unix
->path
);
925 fd
= unix_connect_opts(opts
, errp
, callback
, opaque
);
928 case SOCKET_ADDRESS_KIND_FD
:
929 fd
= monitor_get_fd(cur_mon
, addr
->fd
->str
, errp
);
930 if (fd
>= 0 && callback
) {
931 qemu_set_nonblock(fd
);
932 callback(fd
, NULL
, opaque
);
943 int socket_listen(SocketAddress
*addr
, Error
**errp
)
948 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
949 switch (addr
->kind
) {
950 case SOCKET_ADDRESS_KIND_INET
:
951 inet_addr_to_opts(opts
, addr
->inet
);
952 fd
= inet_listen_opts(opts
, 0, errp
);
955 case SOCKET_ADDRESS_KIND_UNIX
:
956 qemu_opt_set(opts
, "path", addr
->q_unix
->path
);
957 fd
= unix_listen_opts(opts
, errp
);
960 case SOCKET_ADDRESS_KIND_FD
:
961 fd
= monitor_get_fd(cur_mon
, addr
->fd
->str
, errp
);
971 int socket_dgram(SocketAddress
*remote
, SocketAddress
*local
, Error
**errp
)
976 opts
= qemu_opts_create(&socket_optslist
, NULL
, 0, &error_abort
);
977 switch (remote
->kind
) {
978 case SOCKET_ADDRESS_KIND_INET
:
979 inet_addr_to_opts(opts
, remote
->inet
);
981 qemu_opt_set(opts
, "localaddr", local
->inet
->host
);
982 qemu_opt_set(opts
, "localport", local
->inet
->port
);
984 fd
= inet_dgram_opts(opts
, errp
);
988 error_setg(errp
, "socket type unsupported for datagram");