2008-11-13 19:19:54 +03:00
|
|
|
/*
|
|
|
|
* inet and unix socket functions for qemu
|
|
|
|
*
|
|
|
|
* (c) 2008 Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; under version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2012-07-09 13:08:39 +04:00
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2008-11-13 19:19:54 +03:00
|
|
|
*/
|
2016-01-29 20:49:55 +03:00
|
|
|
#include "qemu/osdep.h"
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "monitor/monitor.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/sockets.h"
|
|
|
|
#include "qemu/main-loop.h"
|
2015-08-14 20:18:41 +03:00
|
|
|
#include "qapi/qmp-input-visitor.h"
|
|
|
|
#include "qapi/qmp-output-visitor.h"
|
|
|
|
#include "qapi-visit.h"
|
2016-03-20 20:16:19 +03:00
|
|
|
#include "qemu/cutils.h"
|
2008-11-11 23:46:40 +03:00
|
|
|
|
|
|
|
#ifndef AI_ADDRCONFIG
|
|
|
|
# define AI_ADDRCONFIG 0
|
|
|
|
#endif
|
2016-04-04 19:22:00 +03:00
|
|
|
|
2015-05-21 15:33:29 +03:00
|
|
|
#ifndef AI_V4MAPPED
|
|
|
|
# define AI_V4MAPPED 0
|
|
|
|
#endif
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2009-09-10 12:58:37 +04:00
|
|
|
|
2008-11-11 23:46:40 +03:00
|
|
|
static int inet_getport(struct addrinfo *e)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *i4;
|
|
|
|
struct sockaddr_in6 *i6;
|
|
|
|
|
|
|
|
switch (e->ai_family) {
|
|
|
|
case PF_INET6:
|
|
|
|
i6 = (void*)e->ai_addr;
|
|
|
|
return ntohs(i6->sin6_port);
|
|
|
|
case PF_INET:
|
|
|
|
i4 = (void*)e->ai_addr;
|
|
|
|
return ntohs(i4->sin_port);
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void inet_setport(struct addrinfo *e, int port)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *i4;
|
|
|
|
struct sockaddr_in6 *i6;
|
|
|
|
|
|
|
|
switch (e->ai_family) {
|
|
|
|
case PF_INET6:
|
|
|
|
i6 = (void*)e->ai_addr;
|
|
|
|
i6->sin6_port = htons(port);
|
|
|
|
break;
|
|
|
|
case PF_INET:
|
|
|
|
i4 = (void*)e->ai_addr;
|
|
|
|
i4->sin_port = htons(port);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-18 10:43:30 +04:00
|
|
|
NetworkAddressFamily inet_netfamily(int family)
|
|
|
|
{
|
|
|
|
switch (family) {
|
|
|
|
case PF_INET6: return NETWORK_ADDRESS_FAMILY_IPV6;
|
|
|
|
case PF_INET: return NETWORK_ADDRESS_FAMILY_IPV4;
|
|
|
|
case PF_UNIX: return NETWORK_ADDRESS_FAMILY_UNIX;
|
|
|
|
}
|
|
|
|
return NETWORK_ADDRESS_FAMILY_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
/*
|
|
|
|
* Matrix we're trying to apply
|
|
|
|
*
|
|
|
|
* ipv4 ipv6 family
|
|
|
|
* - - PF_UNSPEC
|
|
|
|
* - f PF_INET
|
|
|
|
* - t PF_INET6
|
|
|
|
* f - PF_INET6
|
|
|
|
* f f <error>
|
|
|
|
* f t PF_INET6
|
|
|
|
* t - PF_INET
|
|
|
|
* t f PF_INET
|
|
|
|
* t t PF_INET6
|
|
|
|
*
|
2016-03-14 12:58:29 +03:00
|
|
|
* NB, this matrix is only about getting the necessary results
|
2016-01-11 16:17:02 +03:00
|
|
|
* from getaddrinfo(). Some of the cases require further work
|
|
|
|
* after reading results from getaddrinfo in order to fully
|
|
|
|
* apply the logic the end user wants. eg with the last case
|
|
|
|
* ipv4=t + ipv6=t + PF_INET6, getaddrinfo alone can only
|
|
|
|
* guarantee the ipv6=t part of the request - we need more
|
|
|
|
* checks to provide ipv4=t part of the guarantee. This is
|
|
|
|
* outside scope of this method and not currently handled by
|
|
|
|
* callers at all.
|
|
|
|
*/
|
|
|
|
static int inet_ai_family_from_address(InetSocketAddress *addr,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
if (addr->has_ipv6 && addr->has_ipv4 &&
|
|
|
|
!addr->ipv6 && !addr->ipv4) {
|
|
|
|
error_setg(errp, "Cannot disable IPv4 and IPv6 at same time");
|
|
|
|
return PF_UNSPEC;
|
|
|
|
}
|
|
|
|
if ((addr->has_ipv6 && addr->ipv6) || (addr->has_ipv4 && !addr->ipv4)) {
|
|
|
|
return PF_INET6;
|
|
|
|
}
|
|
|
|
if ((addr->has_ipv4 && addr->ipv4) || (addr->has_ipv6 && !addr->ipv6)) {
|
|
|
|
return PF_INET;
|
|
|
|
}
|
|
|
|
return PF_UNSPEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int inet_listen_saddr(InetSocketAddress *saddr,
|
|
|
|
int port_offset,
|
|
|
|
bool update_addr,
|
|
|
|
Error **errp)
|
2008-11-11 23:46:40 +03:00
|
|
|
{
|
|
|
|
struct addrinfo ai,*res,*e;
|
|
|
|
char port[33];
|
|
|
|
char uaddr[INET6_ADDRSTRLEN+1];
|
|
|
|
char uport[33];
|
2016-01-11 16:17:02 +03:00
|
|
|
int slisten, rc, port_min, port_max, p;
|
|
|
|
Error *err = NULL;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
|
|
|
memset(&ai,0, sizeof(ai));
|
2015-05-21 15:33:29 +03:00
|
|
|
ai.ai_flags = AI_PASSIVE;
|
2016-01-11 16:17:02 +03:00
|
|
|
ai.ai_family = inet_ai_family_from_address(saddr, &err);
|
2009-09-10 12:58:41 +04:00
|
|
|
ai.ai_socktype = SOCK_STREAM;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (saddr->host == NULL) {
|
2015-09-01 16:46:50 +03:00
|
|
|
error_setg(errp, "host not specified");
|
2009-09-10 12:58:41 +04:00
|
|
|
return -1;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
2016-01-11 16:17:02 +03:00
|
|
|
if (saddr->port != NULL) {
|
|
|
|
pstrcpy(port, sizeof(port), saddr->port);
|
2015-09-01 16:46:50 +03:00
|
|
|
} else {
|
|
|
|
port[0] = '\0';
|
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
|
|
|
|
/* lookup */
|
2013-12-11 15:58:41 +04:00
|
|
|
if (port_offset) {
|
|
|
|
unsigned long long baseport;
|
2015-09-01 16:46:50 +03:00
|
|
|
if (strlen(port) == 0) {
|
|
|
|
error_setg(errp, "port not specified");
|
|
|
|
return -1;
|
|
|
|
}
|
2013-12-11 15:58:41 +04:00
|
|
|
if (parse_uint_full(port, &baseport, 10) < 0) {
|
|
|
|
error_setg(errp, "can't convert to a number: %s", port);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (baseport > 65535 ||
|
|
|
|
baseport + port_offset > 65535) {
|
|
|
|
error_setg(errp, "port %s out of range", port);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
snprintf(port, sizeof(port), "%d", (int)baseport + port_offset);
|
|
|
|
}
|
2016-01-11 16:17:02 +03:00
|
|
|
rc = getaddrinfo(strlen(saddr->host) ? saddr->host : NULL,
|
2015-09-01 16:46:50 +03:00
|
|
|
strlen(port) ? port : NULL, &ai, &res);
|
2008-11-11 23:46:40 +03:00
|
|
|
if (rc != 0) {
|
2016-01-11 16:17:02 +03:00
|
|
|
error_setg(errp, "address resolution failed for %s:%s: %s",
|
|
|
|
saddr->host, port, gai_strerror(rc));
|
2008-11-11 23:46:40 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create socket + bind */
|
|
|
|
for (e = res; e != NULL; e = e->ai_next) {
|
2009-05-06 13:57:03 +04:00
|
|
|
getnameinfo((struct sockaddr*)e->ai_addr,e->ai_addrlen,
|
|
|
|
uaddr,INET6_ADDRSTRLEN,uport,32,
|
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV);
|
2009-12-02 14:24:42 +03:00
|
|
|
slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol);
|
2009-05-06 13:57:03 +04:00
|
|
|
if (slisten < 0) {
|
2012-05-10 20:28:26 +04:00
|
|
|
if (!e->ai_next) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to create socket");
|
2012-05-10 20:28:26 +04:00
|
|
|
}
|
2009-05-06 13:57:03 +04:00
|
|
|
continue;
|
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2013-10-02 14:23:16 +04:00
|
|
|
socket_set_fast_reuse(slisten);
|
2008-11-11 23:46:40 +03:00
|
|
|
#ifdef IPV6_V6ONLY
|
|
|
|
if (e->ai_family == PF_INET6) {
|
|
|
|
/* listen on both ipv4 and ipv6 */
|
2014-06-07 20:48:03 +04:00
|
|
|
const int off = 0;
|
2013-03-08 22:58:32 +04:00
|
|
|
qemu_setsockopt(slisten, IPPROTO_IPV6, IPV6_V6ONLY, &off,
|
|
|
|
sizeof(off));
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-07 18:09:15 +04:00
|
|
|
port_min = inet_getport(e);
|
2016-01-11 16:17:02 +03:00
|
|
|
port_max = saddr->has_to ? saddr->to + port_offset : port_min;
|
2012-02-07 18:09:15 +04:00
|
|
|
for (p = port_min; p <= port_max; p++) {
|
|
|
|
inet_setport(e, p);
|
2008-11-11 23:46:40 +03:00
|
|
|
if (bind(slisten, e->ai_addr, e->ai_addrlen) == 0) {
|
|
|
|
goto listen;
|
|
|
|
}
|
2012-02-07 18:09:15 +04:00
|
|
|
if (p == port_max) {
|
2012-05-10 20:28:26 +04:00
|
|
|
if (!e->ai_next) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to bind socket");
|
2012-05-10 20:28:26 +04:00
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closesocket(slisten);
|
|
|
|
}
|
|
|
|
freeaddrinfo(res);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
listen:
|
|
|
|
if (listen(slisten,1) != 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to listen on socket");
|
2008-11-11 23:46:40 +03:00
|
|
|
closesocket(slisten);
|
2009-05-06 13:57:03 +04:00
|
|
|
freeaddrinfo(res);
|
2008-11-11 23:46:40 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2016-01-11 16:17:02 +03:00
|
|
|
if (update_addr) {
|
|
|
|
g_free(saddr->host);
|
|
|
|
saddr->host = g_strdup(uaddr);
|
|
|
|
g_free(saddr->port);
|
|
|
|
saddr->port = g_strdup_printf("%d",
|
|
|
|
inet_getport(e) - port_offset);
|
|
|
|
saddr->has_ipv6 = saddr->ipv6 = e->ai_family == PF_INET6;
|
|
|
|
saddr->has_ipv4 = saddr->ipv4 = e->ai_family != PF_INET6;
|
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
freeaddrinfo(res);
|
|
|
|
return slisten;
|
|
|
|
}
|
|
|
|
|
2012-09-24 15:11:07 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define QEMU_SOCKET_RC_INPROGRESS(rc) \
|
|
|
|
((rc) == -EINPROGRESS || (rc) == -EWOULDBLOCK || (rc) == -WSAEALREADY)
|
|
|
|
#else
|
|
|
|
#define QEMU_SOCKET_RC_INPROGRESS(rc) \
|
|
|
|
((rc) == -EINPROGRESS)
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 15:11:09 +04:00
|
|
|
/* Struct to store connect state for non blocking connect */
|
|
|
|
typedef struct ConnectState {
|
|
|
|
int fd;
|
|
|
|
struct addrinfo *addr_list;
|
|
|
|
struct addrinfo *current_addr;
|
|
|
|
NonBlockingConnectHandler *callback;
|
|
|
|
void *opaque;
|
|
|
|
} ConnectState;
|
|
|
|
|
|
|
|
static int inet_connect_addr(struct addrinfo *addr, bool *in_progress,
|
2012-10-02 11:19:01 +04:00
|
|
|
ConnectState *connect_state, Error **errp);
|
2012-09-24 15:11:09 +04:00
|
|
|
|
|
|
|
static void wait_for_connect(void *opaque)
|
2008-11-11 23:46:40 +03:00
|
|
|
{
|
2012-09-24 15:11:09 +04:00
|
|
|
ConnectState *s = opaque;
|
|
|
|
int val = 0, rc = 0;
|
|
|
|
socklen_t valsize = sizeof(val);
|
|
|
|
bool in_progress;
|
2014-10-08 16:11:56 +04:00
|
|
|
Error *err = NULL;
|
2012-09-24 15:11:09 +04:00
|
|
|
|
Change qemu_set_fd_handler2(..., NULL, ...) to qemu_set_fd_handler
Done with following Coccinelle semantic patch, plus manual cosmetic changes in
net/*.c.
@@
expression E1, E2, E3, E4;
@@
- qemu_set_fd_handler2(E1, NULL, E2, E3, E4);
+ qemu_set_fd_handler(E1, E2, E3, E4);
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1433400324-7358-8-git-send-email-famz@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2015-06-04 09:45:18 +03:00
|
|
|
qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
|
2012-09-24 15:11:09 +04:00
|
|
|
|
|
|
|
do {
|
2013-03-08 22:58:32 +04:00
|
|
|
rc = qemu_getsockopt(s->fd, SOL_SOCKET, SO_ERROR, &val, &valsize);
|
2016-03-07 23:36:03 +03:00
|
|
|
} while (rc == -1 && errno == EINTR);
|
2012-09-24 15:11:09 +04:00
|
|
|
|
|
|
|
/* update rc to contain error */
|
|
|
|
if (!rc && val) {
|
|
|
|
rc = -1;
|
2014-10-08 16:11:56 +04:00
|
|
|
errno = val;
|
2012-09-24 15:11:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* connect error */
|
|
|
|
if (rc < 0) {
|
2014-10-08 16:11:56 +04:00
|
|
|
error_setg_errno(&err, errno, "Error connecting to socket");
|
2012-09-24 15:11:09 +04:00
|
|
|
closesocket(s->fd);
|
|
|
|
s->fd = rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try to connect to the next address on the list */
|
2012-10-03 15:37:46 +04:00
|
|
|
if (s->current_addr) {
|
|
|
|
while (s->current_addr->ai_next != NULL && s->fd < 0) {
|
|
|
|
s->current_addr = s->current_addr->ai_next;
|
2012-10-02 11:19:01 +04:00
|
|
|
s->fd = inet_connect_addr(s->current_addr, &in_progress, s, NULL);
|
2014-10-08 16:11:56 +04:00
|
|
|
if (s->fd < 0) {
|
|
|
|
error_free(err);
|
|
|
|
err = NULL;
|
|
|
|
error_setg_errno(&err, errno, "Unable to start socket connect");
|
|
|
|
}
|
2012-10-03 15:37:46 +04:00
|
|
|
/* connect in progress */
|
|
|
|
if (in_progress) {
|
2014-10-08 16:11:56 +04:00
|
|
|
goto out;
|
2012-10-03 15:37:46 +04:00
|
|
|
}
|
2012-09-24 15:11:09 +04:00
|
|
|
}
|
2012-10-03 15:37:46 +04:00
|
|
|
|
|
|
|
freeaddrinfo(s->addr_list);
|
2012-09-24 15:11:09 +04:00
|
|
|
}
|
2012-09-24 15:11:07 +04:00
|
|
|
|
2012-09-24 15:11:09 +04:00
|
|
|
if (s->callback) {
|
2014-10-08 16:11:56 +04:00
|
|
|
s->callback(s->fd, err, s->opaque);
|
2012-09-24 15:11:07 +04:00
|
|
|
}
|
2012-09-24 15:11:09 +04:00
|
|
|
g_free(s);
|
2014-10-08 16:11:56 +04:00
|
|
|
out:
|
|
|
|
error_free(err);
|
2012-09-24 15:11:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int inet_connect_addr(struct addrinfo *addr, bool *in_progress,
|
2012-10-02 11:19:01 +04:00
|
|
|
ConnectState *connect_state, Error **errp)
|
2012-09-24 15:11:09 +04:00
|
|
|
{
|
|
|
|
int sock, rc;
|
|
|
|
|
|
|
|
*in_progress = false;
|
2012-09-24 15:11:07 +04:00
|
|
|
|
|
|
|
sock = qemu_socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol);
|
|
|
|
if (sock < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to create socket");
|
2012-09-24 15:11:07 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2013-10-02 14:23:16 +04:00
|
|
|
socket_set_fast_reuse(sock);
|
2012-09-24 15:11:09 +04:00
|
|
|
if (connect_state != NULL) {
|
2013-03-27 13:10:43 +04:00
|
|
|
qemu_set_nonblock(sock);
|
2012-09-24 15:11:07 +04:00
|
|
|
}
|
|
|
|
/* connect to peer */
|
|
|
|
do {
|
|
|
|
rc = 0;
|
|
|
|
if (connect(sock, addr->ai_addr, addr->ai_addrlen) < 0) {
|
2016-03-07 23:36:03 +03:00
|
|
|
rc = -errno;
|
2012-09-24 15:11:07 +04:00
|
|
|
}
|
|
|
|
} while (rc == -EINTR);
|
|
|
|
|
2012-09-24 15:11:09 +04:00
|
|
|
if (connect_state != NULL && QEMU_SOCKET_RC_INPROGRESS(rc)) {
|
|
|
|
connect_state->fd = sock;
|
Change qemu_set_fd_handler2(..., NULL, ...) to qemu_set_fd_handler
Done with following Coccinelle semantic patch, plus manual cosmetic changes in
net/*.c.
@@
expression E1, E2, E3, E4;
@@
- qemu_set_fd_handler2(E1, NULL, E2, E3, E4);
+ qemu_set_fd_handler(E1, E2, E3, E4);
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1433400324-7358-8-git-send-email-famz@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2015-06-04 09:45:18 +03:00
|
|
|
qemu_set_fd_handler(sock, NULL, wait_for_connect, connect_state);
|
2012-09-24 15:11:09 +04:00
|
|
|
*in_progress = true;
|
2012-09-24 15:11:07 +04:00
|
|
|
} else if (rc < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to connect socket");
|
2012-09-24 15:11:07 +04:00
|
|
|
closesocket(sock);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
static struct addrinfo *inet_parse_connect_saddr(InetSocketAddress *saddr,
|
|
|
|
Error **errp)
|
2012-09-24 15:11:07 +04:00
|
|
|
{
|
|
|
|
struct addrinfo ai, *res;
|
|
|
|
int rc;
|
2016-01-11 16:17:03 +03:00
|
|
|
Error *err = NULL;
|
2016-04-04 19:22:00 +03:00
|
|
|
static int useV4Mapped = 1;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2012-09-24 15:11:07 +04:00
|
|
|
memset(&ai, 0, sizeof(ai));
|
2012-09-24 15:11:09 +04:00
|
|
|
|
2016-04-04 19:22:00 +03:00
|
|
|
ai.ai_flags = AI_CANONNAME | AI_ADDRCONFIG;
|
|
|
|
if (atomic_read(&useV4Mapped)) {
|
|
|
|
ai.ai_flags |= AI_V4MAPPED;
|
|
|
|
}
|
2016-01-11 16:17:03 +03:00
|
|
|
ai.ai_family = inet_ai_family_from_address(saddr, &err);
|
2009-09-10 12:58:40 +04:00
|
|
|
ai.ai_socktype = SOCK_STREAM;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
2012-09-24 15:11:07 +04:00
|
|
|
return NULL;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
if (saddr->host == NULL || saddr->port == NULL) {
|
|
|
|
error_setg(errp, "host and/or port not specified");
|
|
|
|
return NULL;
|
2012-09-24 15:11:07 +04:00
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
|
|
|
|
/* lookup */
|
2016-01-11 16:17:03 +03:00
|
|
|
rc = getaddrinfo(saddr->host, saddr->port, &ai, &res);
|
2016-04-04 19:22:00 +03:00
|
|
|
|
|
|
|
/* At least FreeBSD and OS-X 10.6 declare AI_V4MAPPED but
|
|
|
|
* then don't implement it in their getaddrinfo(). Detect
|
|
|
|
* this and retry without the flag since that's preferrable
|
|
|
|
* to a fatal error
|
|
|
|
*/
|
|
|
|
if (rc == EAI_BADFLAGS &&
|
|
|
|
(ai.ai_flags & AI_V4MAPPED)) {
|
|
|
|
atomic_set(&useV4Mapped, 0);
|
|
|
|
ai.ai_flags &= ~AI_V4MAPPED;
|
|
|
|
rc = getaddrinfo(saddr->host, saddr->port, &ai, &res);
|
|
|
|
}
|
2012-09-24 15:11:07 +04:00
|
|
|
if (rc != 0) {
|
2016-01-11 16:17:03 +03:00
|
|
|
error_setg(errp, "address resolution failed for %s:%s: %s",
|
|
|
|
saddr->host, saddr->port, gai_strerror(rc));
|
2012-09-24 15:11:07 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2012-09-24 15:11:08 +04:00
|
|
|
/**
|
|
|
|
* Create a socket and connect it to an address.
|
|
|
|
*
|
2016-01-11 16:17:03 +03:00
|
|
|
* @saddr: Inet socket address specification
|
2012-09-24 15:11:08 +04:00
|
|
|
* @errp: set on error
|
2012-09-24 15:11:09 +04:00
|
|
|
* @callback: callback function for non-blocking connect
|
|
|
|
* @opaque: opaque for callback function
|
2012-09-24 15:11:08 +04:00
|
|
|
*
|
|
|
|
* Returns: -1 on error, file descriptor on success.
|
2012-09-24 15:11:09 +04:00
|
|
|
*
|
|
|
|
* If @callback is non-null, the connect is non-blocking. If this
|
|
|
|
* function succeeds, callback will be called when the connection
|
|
|
|
* completes, with the file descriptor on success, or -1 on error.
|
2012-09-24 15:11:08 +04:00
|
|
|
*/
|
2016-01-11 16:17:03 +03:00
|
|
|
static int inet_connect_saddr(InetSocketAddress *saddr, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque)
|
2012-09-24 15:11:07 +04:00
|
|
|
{
|
2014-05-19 20:57:37 +04:00
|
|
|
Error *local_err = NULL;
|
2012-09-24 15:11:07 +04:00
|
|
|
struct addrinfo *res, *e;
|
|
|
|
int sock = -1;
|
2012-09-24 15:11:09 +04:00
|
|
|
bool in_progress;
|
|
|
|
ConnectState *connect_state = NULL;
|
2012-09-24 15:11:07 +04:00
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
res = inet_parse_connect_saddr(saddr, errp);
|
2012-09-24 15:11:07 +04:00
|
|
|
if (!res) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-09-24 15:11:09 +04:00
|
|
|
if (callback != NULL) {
|
|
|
|
connect_state = g_malloc0(sizeof(*connect_state));
|
|
|
|
connect_state->addr_list = res;
|
|
|
|
connect_state->callback = callback;
|
|
|
|
connect_state->opaque = opaque;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (e = res; e != NULL; e = e->ai_next) {
|
2014-05-19 20:57:37 +04:00
|
|
|
error_free(local_err);
|
|
|
|
local_err = NULL;
|
2012-09-24 15:11:09 +04:00
|
|
|
if (connect_state != NULL) {
|
|
|
|
connect_state->current_addr = e;
|
|
|
|
}
|
2014-05-19 20:57:37 +04:00
|
|
|
sock = inet_connect_addr(e, &in_progress, connect_state, &local_err);
|
|
|
|
if (sock >= 0) {
|
2012-09-24 15:11:07 +04:00
|
|
|
break;
|
2012-05-10 20:28:16 +04:00
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
2014-05-19 20:57:37 +04:00
|
|
|
|
|
|
|
if (sock < 0) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
} else if (in_progress) {
|
|
|
|
/* wait_for_connect() will do the rest */
|
|
|
|
return sock;
|
|
|
|
} else {
|
|
|
|
if (callback) {
|
2014-10-08 16:11:56 +04:00
|
|
|
callback(sock, NULL, opaque);
|
2014-05-19 20:57:37 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-24 15:11:09 +04:00
|
|
|
g_free(connect_state);
|
2008-11-11 23:46:40 +03:00
|
|
|
freeaddrinfo(res);
|
2012-09-24 15:11:07 +04:00
|
|
|
return sock;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:04 +03:00
|
|
|
static int inet_dgram_saddr(InetSocketAddress *sraddr,
|
|
|
|
InetSocketAddress *sladdr,
|
|
|
|
Error **errp)
|
2009-09-10 12:58:51 +04:00
|
|
|
{
|
|
|
|
struct addrinfo ai, *peer = NULL, *local = NULL;
|
|
|
|
const char *addr;
|
|
|
|
const char *port;
|
|
|
|
int sock = -1, rc;
|
2016-01-11 16:17:04 +03:00
|
|
|
Error *err = NULL;
|
2009-09-10 12:58:51 +04:00
|
|
|
|
|
|
|
/* lookup peer addr */
|
|
|
|
memset(&ai,0, sizeof(ai));
|
2015-05-21 15:33:29 +03:00
|
|
|
ai.ai_flags = AI_CANONNAME | AI_V4MAPPED | AI_ADDRCONFIG;
|
2016-01-11 16:17:04 +03:00
|
|
|
ai.ai_family = inet_ai_family_from_address(sraddr, &err);
|
2009-09-10 12:58:51 +04:00
|
|
|
ai.ai_socktype = SOCK_DGRAM;
|
|
|
|
|
2016-01-11 16:17:04 +03:00
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
2016-01-22 14:28:33 +03:00
|
|
|
goto err;
|
2016-01-11 16:17:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
addr = sraddr->host;
|
|
|
|
port = sraddr->port;
|
2009-09-10 12:58:51 +04:00
|
|
|
if (addr == NULL || strlen(addr) == 0) {
|
|
|
|
addr = "localhost";
|
|
|
|
}
|
|
|
|
if (port == NULL || strlen(port) == 0) {
|
2012-10-02 11:25:14 +04:00
|
|
|
error_setg(errp, "remote port not specified");
|
2016-01-22 14:28:33 +03:00
|
|
|
goto err;
|
2009-09-10 12:58:51 +04:00
|
|
|
}
|
|
|
|
|
2016-07-28 13:50:04 +03:00
|
|
|
if ((rc = getaddrinfo(addr, port, &ai, &peer)) != 0) {
|
2012-10-02 11:25:14 +04:00
|
|
|
error_setg(errp, "address resolution failed for %s:%s: %s", addr, port,
|
|
|
|
gai_strerror(rc));
|
2016-07-28 11:54:33 +03:00
|
|
|
goto err;
|
2009-09-10 12:58:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* lookup local addr */
|
|
|
|
memset(&ai,0, sizeof(ai));
|
|
|
|
ai.ai_flags = AI_PASSIVE;
|
|
|
|
ai.ai_family = peer->ai_family;
|
|
|
|
ai.ai_socktype = SOCK_DGRAM;
|
|
|
|
|
2016-01-11 16:17:04 +03:00
|
|
|
if (sladdr) {
|
|
|
|
addr = sladdr->host;
|
|
|
|
port = sladdr->port;
|
|
|
|
if (addr == NULL || strlen(addr) == 0) {
|
|
|
|
addr = NULL;
|
|
|
|
}
|
|
|
|
if (!port || strlen(port) == 0) {
|
|
|
|
port = "0";
|
|
|
|
}
|
|
|
|
} else {
|
2009-09-10 12:58:51 +04:00
|
|
|
addr = NULL;
|
|
|
|
port = "0";
|
2016-01-11 16:17:04 +03:00
|
|
|
}
|
2009-09-10 12:58:51 +04:00
|
|
|
|
2016-07-28 13:50:04 +03:00
|
|
|
if ((rc = getaddrinfo(addr, port, &ai, &local)) != 0) {
|
2012-10-02 11:25:14 +04:00
|
|
|
error_setg(errp, "address resolution failed for %s:%s: %s", addr, port,
|
|
|
|
gai_strerror(rc));
|
2012-09-01 11:40:26 +04:00
|
|
|
goto err;
|
2009-09-10 12:58:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create socket */
|
2009-12-02 14:24:42 +03:00
|
|
|
sock = qemu_socket(peer->ai_family, peer->ai_socktype, peer->ai_protocol);
|
2009-09-10 12:58:51 +04:00
|
|
|
if (sock < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to create socket");
|
2009-09-10 12:58:51 +04:00
|
|
|
goto err;
|
|
|
|
}
|
2013-10-02 14:23:16 +04:00
|
|
|
socket_set_fast_reuse(sock);
|
2009-09-10 12:58:51 +04:00
|
|
|
|
|
|
|
/* bind socket */
|
|
|
|
if (bind(sock, local->ai_addr, local->ai_addrlen) < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to bind socket");
|
2009-09-10 12:58:51 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connect to peer */
|
|
|
|
if (connect(sock,peer->ai_addr,peer->ai_addrlen) < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to connect socket");
|
2009-09-10 12:58:51 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeaddrinfo(local);
|
|
|
|
freeaddrinfo(peer);
|
|
|
|
return sock;
|
|
|
|
|
|
|
|
err:
|
2016-07-28 11:54:33 +03:00
|
|
|
if (sock != -1) {
|
2009-09-10 12:58:51 +04:00
|
|
|
closesocket(sock);
|
2016-07-28 11:54:33 +03:00
|
|
|
}
|
|
|
|
if (local) {
|
2009-09-10 12:58:51 +04:00
|
|
|
freeaddrinfo(local);
|
2016-07-28 11:54:33 +03:00
|
|
|
}
|
|
|
|
if (peer) {
|
2009-09-10 12:58:51 +04:00
|
|
|
freeaddrinfo(peer);
|
2016-07-28 11:54:33 +03:00
|
|
|
}
|
|
|
|
|
2009-09-10 12:58:51 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-09-10 12:58:40 +04:00
|
|
|
/* compatibility wrapper */
|
2013-03-15 14:55:29 +04:00
|
|
|
InetSocketAddress *inet_parse(const char *str, Error **errp)
|
2009-09-10 12:58:40 +04:00
|
|
|
{
|
2012-09-19 15:51:46 +04:00
|
|
|
InetSocketAddress *addr;
|
2009-09-10 12:58:40 +04:00
|
|
|
const char *optstr, *h;
|
2015-01-30 22:37:55 +03:00
|
|
|
char host[65];
|
2009-09-10 12:58:40 +04:00
|
|
|
char port[33];
|
2012-09-19 15:51:46 +04:00
|
|
|
int to;
|
2009-09-10 12:58:40 +04:00
|
|
|
int pos;
|
|
|
|
|
2012-09-19 15:51:46 +04:00
|
|
|
addr = g_new0(InetSocketAddress, 1);
|
|
|
|
|
2009-09-10 12:58:40 +04:00
|
|
|
/* parse address */
|
|
|
|
if (str[0] == ':') {
|
|
|
|
/* no host given */
|
2012-09-19 15:51:46 +04:00
|
|
|
host[0] = '\0';
|
2016-07-28 13:50:04 +03:00
|
|
|
if (sscanf(str, ":%32[^,]%n", port, &pos) != 1) {
|
2012-09-19 15:22:21 +04:00
|
|
|
error_setg(errp, "error parsing port in address '%s'", str);
|
2012-09-19 15:51:46 +04:00
|
|
|
goto fail;
|
2009-09-10 12:58:40 +04:00
|
|
|
}
|
|
|
|
} else if (str[0] == '[') {
|
|
|
|
/* IPv6 addr */
|
2016-07-28 13:50:04 +03:00
|
|
|
if (sscanf(str, "[%64[^]]]:%32[^,]%n", host, port, &pos) != 2) {
|
2012-09-19 15:22:21 +04:00
|
|
|
error_setg(errp, "error parsing IPv6 address '%s'", str);
|
2012-09-19 15:51:46 +04:00
|
|
|
goto fail;
|
2009-09-10 12:58:40 +04:00
|
|
|
}
|
2012-09-19 15:51:46 +04:00
|
|
|
addr->ipv6 = addr->has_ipv6 = true;
|
2009-09-10 12:58:40 +04:00
|
|
|
} else {
|
2013-06-03 19:54:55 +04:00
|
|
|
/* hostname or IPv4 addr */
|
2016-07-28 13:50:04 +03:00
|
|
|
if (sscanf(str, "%64[^:]:%32[^,]%n", host, port, &pos) != 2) {
|
2012-09-19 15:22:21 +04:00
|
|
|
error_setg(errp, "error parsing address '%s'", str);
|
2012-09-19 15:51:46 +04:00
|
|
|
goto fail;
|
2009-09-10 12:58:40 +04:00
|
|
|
}
|
2013-06-03 19:54:55 +04:00
|
|
|
if (host[strspn(host, "0123456789.")] == '\0') {
|
|
|
|
addr->ipv4 = addr->has_ipv4 = true;
|
|
|
|
}
|
2009-09-10 12:58:40 +04:00
|
|
|
}
|
2012-09-19 15:51:46 +04:00
|
|
|
|
|
|
|
addr->host = g_strdup(host);
|
|
|
|
addr->port = g_strdup(port);
|
2009-09-10 12:58:40 +04:00
|
|
|
|
|
|
|
/* parse options */
|
|
|
|
optstr = str + pos;
|
|
|
|
h = strstr(optstr, ",to=");
|
2012-09-19 15:51:46 +04:00
|
|
|
if (h) {
|
2012-11-16 08:08:14 +04:00
|
|
|
h += 4;
|
|
|
|
if (sscanf(h, "%d%n", &to, &pos) != 1 ||
|
|
|
|
(h[pos] != '\0' && h[pos] != ',')) {
|
2012-09-19 15:51:46 +04:00
|
|
|
error_setg(errp, "error parsing to= argument");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
addr->has_to = true;
|
|
|
|
addr->to = to;
|
|
|
|
}
|
|
|
|
if (strstr(optstr, ",ipv4")) {
|
|
|
|
addr->ipv4 = addr->has_ipv4 = true;
|
|
|
|
}
|
|
|
|
if (strstr(optstr, ",ipv6")) {
|
|
|
|
addr->ipv6 = addr->has_ipv6 = true;
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
qapi_free_InetSocketAddress(addr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-10 12:58:41 +04:00
|
|
|
|
2012-09-24 15:11:08 +04:00
|
|
|
/**
|
|
|
|
* Create a blocking socket and connect it to an address.
|
|
|
|
*
|
|
|
|
* @str: address string
|
|
|
|
* @errp: set in case of an error
|
|
|
|
*
|
|
|
|
* Returns -1 in case of error, file descriptor on success
|
|
|
|
**/
|
|
|
|
int inet_connect(const char *str, Error **errp)
|
2009-09-10 12:58:40 +04:00
|
|
|
{
|
|
|
|
int sock = -1;
|
2012-09-19 15:51:46 +04:00
|
|
|
InetSocketAddress *addr;
|
2009-09-10 12:58:40 +04:00
|
|
|
|
2012-09-19 15:51:46 +04:00
|
|
|
addr = inet_parse(str, errp);
|
|
|
|
if (addr != NULL) {
|
2016-01-11 16:17:03 +03:00
|
|
|
sock = inet_connect_saddr(addr, errp, NULL, NULL);
|
2012-09-19 15:51:46 +04:00
|
|
|
qapi_free_InetSocketAddress(addr);
|
2012-09-24 15:11:08 +04:00
|
|
|
}
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2008-11-11 23:46:40 +03:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
static int unix_listen_saddr(UnixSocketAddress *saddr,
|
|
|
|
bool update_addr,
|
|
|
|
Error **errp)
|
2008-11-11 23:46:40 +03:00
|
|
|
{
|
|
|
|
struct sockaddr_un un;
|
2009-09-10 12:58:38 +04:00
|
|
|
int sock, fd;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2009-12-02 14:24:42 +03:00
|
|
|
sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0);
|
2008-11-11 23:46:40 +03:00
|
|
|
if (sock < 0) {
|
2015-01-26 14:12:24 +03:00
|
|
|
error_setg_errno(errp, errno, "Failed to create Unix socket");
|
2009-05-06 13:57:03 +04:00
|
|
|
return -1;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
memset(&un, 0, sizeof(un));
|
|
|
|
un.sun_family = AF_UNIX;
|
2016-01-11 16:17:02 +03:00
|
|
|
if (saddr->path && strlen(saddr->path)) {
|
|
|
|
snprintf(un.sun_path, sizeof(un.sun_path), "%s", saddr->path);
|
2008-11-11 23:46:40 +03:00
|
|
|
} else {
|
2015-01-26 14:12:24 +03:00
|
|
|
const char *tmpdir = getenv("TMPDIR");
|
|
|
|
tmpdir = tmpdir ? tmpdir : "/tmp";
|
|
|
|
if (snprintf(un.sun_path, sizeof(un.sun_path), "%s/qemu-socket-XXXXXX",
|
|
|
|
tmpdir) >= sizeof(un.sun_path)) {
|
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"TMPDIR environment variable (%s) too large", tmpdir);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2008-11-11 23:46:40 +03:00
|
|
|
/*
|
|
|
|
* This dummy fd usage silences the mktemp() unsecure warning.
|
|
|
|
* Using mkstemp() doesn't make things more secure here
|
|
|
|
* though. bind() complains about existing files, so we have
|
|
|
|
* to unlink first and thus re-open the race window. The
|
|
|
|
* worst case possible is bind() failing, i.e. a DoS attack.
|
|
|
|
*/
|
2015-01-26 14:12:24 +03:00
|
|
|
fd = mkstemp(un.sun_path);
|
|
|
|
if (fd < 0) {
|
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"Failed to make a temporary socket name in %s", tmpdir);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
close(fd);
|
2016-01-11 16:17:02 +03:00
|
|
|
if (update_addr) {
|
|
|
|
g_free(saddr->path);
|
|
|
|
saddr->path = g_strdup(un.sun_path);
|
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
2015-11-04 16:48:47 +03:00
|
|
|
if (unlink(un.sun_path) < 0 && errno != ENOENT) {
|
2015-05-05 18:07:19 +03:00
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"Failed to unlink socket %s", un.sun_path);
|
|
|
|
goto err;
|
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
if (bind(sock, (struct sockaddr*) &un, sizeof(un)) < 0) {
|
2015-01-26 14:12:24 +03:00
|
|
|
error_setg_errno(errp, errno, "Failed to bind socket to %s", un.sun_path);
|
2008-11-11 23:46:40 +03:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (listen(sock, 1) < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to listen on socket");
|
2008-11-11 23:46:40 +03:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sock;
|
|
|
|
|
|
|
|
err:
|
|
|
|
closesocket(sock);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
static int unix_connect_saddr(UnixSocketAddress *saddr, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque)
|
2008-11-11 23:46:40 +03:00
|
|
|
{
|
|
|
|
struct sockaddr_un un;
|
2012-10-03 15:37:46 +04:00
|
|
|
ConnectState *connect_state = NULL;
|
|
|
|
int sock, rc;
|
2008-11-11 23:46:40 +03:00
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
if (saddr->path == NULL) {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-09 00:22:16 +04:00
|
|
|
error_setg(errp, "unix connect: no path specified");
|
2009-09-10 12:58:37 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-12-02 14:24:42 +03:00
|
|
|
sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0);
|
2008-11-11 23:46:40 +03:00
|
|
|
if (sock < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, errno, "Failed to create socket");
|
2009-05-06 13:57:03 +04:00
|
|
|
return -1;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
2012-10-03 15:37:46 +04:00
|
|
|
if (callback != NULL) {
|
|
|
|
connect_state = g_malloc0(sizeof(*connect_state));
|
|
|
|
connect_state->callback = callback;
|
|
|
|
connect_state->opaque = opaque;
|
2013-03-27 13:10:43 +04:00
|
|
|
qemu_set_nonblock(sock);
|
2012-10-03 15:37:46 +04:00
|
|
|
}
|
2008-11-11 23:46:40 +03:00
|
|
|
|
|
|
|
memset(&un, 0, sizeof(un));
|
|
|
|
un.sun_family = AF_UNIX;
|
2016-01-11 16:17:03 +03:00
|
|
|
snprintf(un.sun_path, sizeof(un.sun_path), "%s", saddr->path);
|
2012-10-03 15:37:46 +04:00
|
|
|
|
|
|
|
/* connect to peer */
|
|
|
|
do {
|
|
|
|
rc = 0;
|
|
|
|
if (connect(sock, (struct sockaddr *) &un, sizeof(un)) < 0) {
|
2016-03-07 23:36:03 +03:00
|
|
|
rc = -errno;
|
2012-10-03 15:37:46 +04:00
|
|
|
}
|
|
|
|
} while (rc == -EINTR);
|
|
|
|
|
|
|
|
if (connect_state != NULL && QEMU_SOCKET_RC_INPROGRESS(rc)) {
|
|
|
|
connect_state->fd = sock;
|
Change qemu_set_fd_handler2(..., NULL, ...) to qemu_set_fd_handler
Done with following Coccinelle semantic patch, plus manual cosmetic changes in
net/*.c.
@@
expression E1, E2, E3, E4;
@@
- qemu_set_fd_handler2(E1, NULL, E2, E3, E4);
+ qemu_set_fd_handler(E1, E2, E3, E4);
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1433400324-7358-8-git-send-email-famz@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2015-06-04 09:45:18 +03:00
|
|
|
qemu_set_fd_handler(sock, NULL, wait_for_connect, connect_state);
|
2012-10-03 15:37:46 +04:00
|
|
|
return sock;
|
|
|
|
} else if (rc >= 0) {
|
|
|
|
/* non blocking socket immediate success, call callback */
|
|
|
|
if (callback != NULL) {
|
2014-10-08 16:11:56 +04:00
|
|
|
callback(sock, NULL, opaque);
|
2012-10-03 15:37:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc < 0) {
|
2014-09-25 10:49:31 +04:00
|
|
|
error_setg_errno(errp, -rc, "Failed to connect socket");
|
2011-11-11 13:40:07 +04:00
|
|
|
close(sock);
|
2012-10-03 15:37:46 +04:00
|
|
|
sock = -1;
|
2008-11-11 23:46:40 +03:00
|
|
|
}
|
|
|
|
|
2012-10-03 15:37:46 +04:00
|
|
|
g_free(connect_state);
|
2008-11-11 23:46:40 +03:00
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2012-10-18 10:44:00 +04:00
|
|
|
#else
|
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
static int unix_listen_saddr(UnixSocketAddress *saddr,
|
|
|
|
bool update_addr,
|
|
|
|
Error **errp)
|
2012-10-18 10:44:00 +04:00
|
|
|
{
|
2012-09-19 15:54:39 +04:00
|
|
|
error_setg(errp, "unix sockets are not available on windows");
|
2012-10-18 10:44:00 +04:00
|
|
|
errno = ENOTSUP;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
static int unix_connect_saddr(UnixSocketAddress *saddr, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque)
|
2012-10-18 10:44:00 +04:00
|
|
|
{
|
2012-09-19 15:54:39 +04:00
|
|
|
error_setg(errp, "unix sockets are not available on windows");
|
2012-10-18 10:44:00 +04:00
|
|
|
errno = ENOTSUP;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-10 12:58:37 +04:00
|
|
|
/* compatibility wrapper */
|
2012-10-02 11:35:32 +04:00
|
|
|
int unix_listen(const char *str, char *ostr, int olen, Error **errp)
|
2009-09-10 12:58:38 +04:00
|
|
|
{
|
|
|
|
char *path, *optstr;
|
|
|
|
int sock, len;
|
2016-01-11 16:17:02 +03:00
|
|
|
UnixSocketAddress *saddr;
|
2009-09-10 12:58:38 +04:00
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
saddr = g_new0(UnixSocketAddress, 1);
|
2009-09-10 12:58:38 +04:00
|
|
|
|
|
|
|
optstr = strchr(str, ',');
|
|
|
|
if (optstr) {
|
|
|
|
len = optstr - str;
|
|
|
|
if (len) {
|
2011-08-21 07:09:37 +04:00
|
|
|
path = g_malloc(len+1);
|
2009-09-10 12:58:38 +04:00
|
|
|
snprintf(path, len+1, "%.*s", len, str);
|
2016-01-11 16:17:02 +03:00
|
|
|
saddr->path = path;
|
2009-09-10 12:58:38 +04:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-11 16:17:02 +03:00
|
|
|
saddr->path = g_strdup(str);
|
2009-09-10 12:58:38 +04:00
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
sock = unix_listen_saddr(saddr, true, errp);
|
2009-09-10 12:58:38 +04:00
|
|
|
|
2016-07-28 11:54:33 +03:00
|
|
|
if (sock != -1 && ostr) {
|
2016-01-11 16:17:02 +03:00
|
|
|
snprintf(ostr, olen, "%s%s", saddr->path, optstr ? optstr : "");
|
2016-07-28 11:54:33 +03:00
|
|
|
}
|
|
|
|
|
2016-01-11 16:17:02 +03:00
|
|
|
qapi_free_UnixSocketAddress(saddr);
|
2009-09-10 12:58:38 +04:00
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2012-10-02 11:35:32 +04:00
|
|
|
int unix_connect(const char *path, Error **errp)
|
2009-09-10 12:58:37 +04:00
|
|
|
{
|
2016-01-11 16:17:03 +03:00
|
|
|
UnixSocketAddress *saddr;
|
2009-09-10 12:58:37 +04:00
|
|
|
int sock;
|
|
|
|
|
2016-01-11 16:17:03 +03:00
|
|
|
saddr = g_new0(UnixSocketAddress, 1);
|
|
|
|
saddr->path = g_strdup(path);
|
|
|
|
sock = unix_connect_saddr(saddr, errp, NULL, NULL);
|
|
|
|
qapi_free_UnixSocketAddress(saddr);
|
2012-10-03 15:37:46 +04:00
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-23 23:31:53 +04:00
|
|
|
SocketAddress *socket_parse(const char *str, Error **errp)
|
|
|
|
{
|
2013-06-24 10:39:44 +04:00
|
|
|
SocketAddress *addr;
|
2012-10-23 23:31:53 +04:00
|
|
|
|
2013-06-24 10:39:44 +04:00
|
|
|
addr = g_new0(SocketAddress, 1);
|
2012-10-23 23:31:53 +04:00
|
|
|
if (strstart(str, "unix:", NULL)) {
|
|
|
|
if (str[5] == '\0') {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-09 00:22:16 +04:00
|
|
|
error_setg(errp, "invalid Unix socket address");
|
2012-10-23 23:31:53 +04:00
|
|
|
goto fail;
|
|
|
|
} else {
|
2015-10-27 01:34:55 +03:00
|
|
|
addr->type = SOCKET_ADDRESS_KIND_UNIX;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
addr->u.q_unix.data = g_new(UnixSocketAddress, 1);
|
|
|
|
addr->u.q_unix.data->path = g_strdup(str + 5);
|
2012-10-23 23:31:53 +04:00
|
|
|
}
|
|
|
|
} else if (strstart(str, "fd:", NULL)) {
|
|
|
|
if (str[3] == '\0') {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-09 00:22:16 +04:00
|
|
|
error_setg(errp, "invalid file descriptor address");
|
2012-10-23 23:31:53 +04:00
|
|
|
goto fail;
|
|
|
|
} else {
|
2015-10-27 01:34:55 +03:00
|
|
|
addr->type = SOCKET_ADDRESS_KIND_FD;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
addr->u.fd.data = g_new(String, 1);
|
|
|
|
addr->u.fd.data->str = g_strdup(str + 3);
|
2012-10-23 23:31:53 +04:00
|
|
|
}
|
|
|
|
} else {
|
2015-10-27 01:34:55 +03:00
|
|
|
addr->type = SOCKET_ADDRESS_KIND_INET;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
addr->u.inet.data = inet_parse(str, errp);
|
|
|
|
if (addr->u.inet.data == NULL) {
|
2012-10-23 23:31:53 +04:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
qapi_free_SocketAddress(addr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int socket_connect(SocketAddress *addr, Error **errp,
|
|
|
|
NonBlockingConnectHandler *callback, void *opaque)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2015-10-27 01:34:55 +03:00
|
|
|
switch (addr->type) {
|
2012-10-23 23:31:53 +04:00
|
|
|
case SOCKET_ADDRESS_KIND_INET:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = inet_connect_saddr(addr->u.inet.data, errp, callback, opaque);
|
2012-10-23 23:31:53 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_UNIX:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = unix_connect_saddr(addr->u.q_unix.data, errp, callback, opaque);
|
2012-10-23 23:31:53 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_FD:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = monitor_get_fd(cur_mon, addr->u.fd.data->str, errp);
|
2013-06-24 10:39:46 +04:00
|
|
|
if (fd >= 0 && callback) {
|
2013-03-27 13:10:45 +04:00
|
|
|
qemu_set_nonblock(fd);
|
2014-10-08 16:11:56 +04:00
|
|
|
callback(fd, NULL, opaque);
|
2012-10-23 23:31:53 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int socket_listen(SocketAddress *addr, Error **errp)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2015-10-27 01:34:55 +03:00
|
|
|
switch (addr->type) {
|
2012-10-23 23:31:53 +04:00
|
|
|
case SOCKET_ADDRESS_KIND_INET:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = inet_listen_saddr(addr->u.inet.data, 0, false, errp);
|
2012-10-23 23:31:53 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_UNIX:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = unix_listen_saddr(addr->u.q_unix.data, false, errp);
|
2012-10-23 23:31:53 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_FD:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = monitor_get_fd(cur_mon, addr->u.fd.data->str, errp);
|
2012-10-23 23:31:53 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2016-06-16 22:28:52 +03:00
|
|
|
void socket_listen_cleanup(int fd, Error **errp)
|
|
|
|
{
|
|
|
|
SocketAddress *addr;
|
|
|
|
|
|
|
|
addr = socket_local_address(fd, errp);
|
|
|
|
|
|
|
|
if (addr->type == SOCKET_ADDRESS_KIND_UNIX
|
|
|
|
&& addr->u.q_unix.data->path) {
|
|
|
|
if (unlink(addr->u.q_unix.data->path) < 0 && errno != ENOENT) {
|
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"Failed to unlink socket %s",
|
|
|
|
addr->u.q_unix.data->path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:42:46 +03:00
|
|
|
qapi_free_SocketAddress(addr);
|
2016-06-16 22:28:52 +03:00
|
|
|
}
|
|
|
|
|
2013-02-27 17:10:47 +04:00
|
|
|
int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2015-10-27 01:34:55 +03:00
|
|
|
switch (remote->type) {
|
2013-02-27 17:10:47 +04:00
|
|
|
case SOCKET_ADDRESS_KIND_INET:
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
fd = inet_dgram_saddr(remote->u.inet.data,
|
|
|
|
local ? local->u.inet.data : NULL, errp);
|
2013-02-27 17:10:47 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error_setg(errp, "socket type unsupported for datagram");
|
2013-06-24 10:39:56 +04:00
|
|
|
fd = -1;
|
2013-02-27 17:10:47 +04:00
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
2015-05-01 19:36:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
static SocketAddress *
|
|
|
|
socket_sockaddr_to_address_inet(struct sockaddr_storage *sa,
|
|
|
|
socklen_t salen,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
char serv[NI_MAXSERV];
|
|
|
|
SocketAddress *addr;
|
2016-03-03 19:16:48 +03:00
|
|
|
InetSocketAddress *inet;
|
2015-05-01 19:36:20 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = getnameinfo((struct sockaddr *)sa, salen,
|
|
|
|
host, sizeof(host),
|
|
|
|
serv, sizeof(serv),
|
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV);
|
|
|
|
if (ret != 0) {
|
|
|
|
error_setg(errp, "Cannot format numeric socket address: %s",
|
|
|
|
gai_strerror(ret));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = g_new0(SocketAddress, 1);
|
2015-10-27 01:34:55 +03:00
|
|
|
addr->type = SOCKET_ADDRESS_KIND_INET;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
inet = addr->u.inet.data = g_new0(InetSocketAddress, 1);
|
2016-03-03 19:16:48 +03:00
|
|
|
inet->host = g_strdup(host);
|
|
|
|
inet->port = g_strdup(serv);
|
2015-05-01 19:36:20 +03:00
|
|
|
if (sa->ss_family == AF_INET) {
|
2016-03-03 19:16:48 +03:00
|
|
|
inet->has_ipv4 = inet->ipv4 = true;
|
2015-05-01 19:36:20 +03:00
|
|
|
} else {
|
2016-03-03 19:16:48 +03:00
|
|
|
inet->has_ipv6 = inet->ipv6 = true;
|
2015-05-01 19:36:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
static SocketAddress *
|
|
|
|
socket_sockaddr_to_address_unix(struct sockaddr_storage *sa,
|
|
|
|
socklen_t salen,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
SocketAddress *addr;
|
|
|
|
struct sockaddr_un *su = (struct sockaddr_un *)sa;
|
|
|
|
|
|
|
|
addr = g_new0(SocketAddress, 1);
|
2015-10-27 01:34:55 +03:00
|
|
|
addr->type = SOCKET_ADDRESS_KIND_UNIX;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
addr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
|
2015-05-01 19:36:20 +03:00
|
|
|
if (su->sun_path[0]) {
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-18 01:48:37 +03:00
|
|
|
addr->u.q_unix.data->path = g_strndup(su->sun_path,
|
|
|
|
sizeof(su->sun_path));
|
2015-05-01 19:36:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
2015-02-27 19:19:33 +03:00
|
|
|
SocketAddress *
|
2015-05-01 19:36:20 +03:00
|
|
|
socket_sockaddr_to_address(struct sockaddr_storage *sa,
|
|
|
|
socklen_t salen,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
switch (sa->ss_family) {
|
|
|
|
case AF_INET:
|
|
|
|
case AF_INET6:
|
|
|
|
return socket_sockaddr_to_address_inet(sa, salen, errp);
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
case AF_UNIX:
|
|
|
|
return socket_sockaddr_to_address_unix(sa, salen, errp);
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
|
|
|
default:
|
|
|
|
error_setg(errp, "socket family %d unsupported",
|
|
|
|
sa->ss_family);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SocketAddress *socket_local_address(int fd, Error **errp)
|
|
|
|
{
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
socklen_t sslen = sizeof(ss);
|
|
|
|
|
|
|
|
if (getsockname(fd, (struct sockaddr *)&ss, &sslen) < 0) {
|
2016-03-07 23:36:03 +03:00
|
|
|
error_setg_errno(errp, errno, "%s",
|
2015-05-01 19:36:20 +03:00
|
|
|
"Unable to query local socket address");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return socket_sockaddr_to_address(&ss, sslen, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SocketAddress *socket_remote_address(int fd, Error **errp)
|
|
|
|
{
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
socklen_t sslen = sizeof(ss);
|
|
|
|
|
|
|
|
if (getpeername(fd, (struct sockaddr *)&ss, &sslen) < 0) {
|
2016-03-07 23:36:03 +03:00
|
|
|
error_setg_errno(errp, errno, "%s",
|
2015-05-01 19:36:20 +03:00
|
|
|
"Unable to query remote socket address");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return socket_sockaddr_to_address(&ss, sslen, errp);
|
|
|
|
}
|
2015-08-14 20:18:41 +03:00
|
|
|
|
2016-06-18 10:54:02 +03:00
|
|
|
char *socket_address_to_string(struct SocketAddress *addr, Error **errp)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
InetSocketAddress *inet;
|
|
|
|
char host_port[INET6_ADDRSTRLEN + 5 + 4];
|
|
|
|
|
|
|
|
switch (addr->type) {
|
|
|
|
case SOCKET_ADDRESS_KIND_INET:
|
|
|
|
inet = addr->u.inet.data;
|
|
|
|
if (strchr(inet->host, ':') == NULL) {
|
|
|
|
snprintf(host_port, sizeof(host_port), "%s:%s", inet->host,
|
|
|
|
inet->port);
|
|
|
|
buf = g_strdup(host_port);
|
|
|
|
} else {
|
|
|
|
snprintf(host_port, sizeof(host_port), "[%s]:%s", inet->host,
|
|
|
|
inet->port);
|
|
|
|
buf = g_strdup(host_port);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_UNIX:
|
|
|
|
buf = g_strdup(addr->u.q_unix.data->path);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SOCKET_ADDRESS_KIND_FD:
|
|
|
|
buf = g_strdup(addr->u.fd.data->str);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error_setg(errp, "socket family %d unsupported",
|
|
|
|
addr->type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|