2016-01-29 17:49:58 +00:00
|
|
|
#include "qemu/osdep.h"
|
2012-01-19 06:18:20 +00:00
|
|
|
#include <termios.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 08:01:28 +00:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 17:20:00 +00:00
|
|
|
#include "qemu/sockets.h"
|
2018-05-03 19:50:57 +00:00
|
|
|
#include "channel.h"
|
2012-01-19 06:18:20 +00:00
|
|
|
|
2012-04-30 16:00:54 +00:00
|
|
|
#ifdef CONFIG_SOLARIS
|
|
|
|
#include <stropts.h>
|
|
|
|
#endif
|
|
|
|
|
2012-01-19 06:18:20 +00:00
|
|
|
#define GA_CHANNEL_BAUDRATE_DEFAULT B38400 /* for isa-serial channels */
|
|
|
|
|
|
|
|
struct GAChannel {
|
|
|
|
GIOChannel *listen_channel;
|
|
|
|
GIOChannel *client_channel;
|
|
|
|
GAChannelMethod method;
|
|
|
|
GAChannelCallback event_cb;
|
|
|
|
gpointer user_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int ga_channel_client_add(GAChannel *c, int fd);
|
|
|
|
|
|
|
|
static gboolean ga_channel_listen_accept(GIOChannel *channel,
|
|
|
|
GIOCondition condition, gpointer data)
|
|
|
|
{
|
|
|
|
GAChannel *c = data;
|
|
|
|
int ret, client_fd;
|
|
|
|
bool accepted = false;
|
|
|
|
|
|
|
|
g_assert(channel != NULL);
|
|
|
|
|
2016-10-14 09:00:53 +00:00
|
|
|
client_fd = qemu_accept(g_io_channel_unix_get_fd(channel), NULL, NULL);
|
2012-01-19 06:18:20 +00:00
|
|
|
if (client_fd == -1) {
|
|
|
|
g_warning("error converting fd to gsocket: %s", strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
2014-08-11 09:34:21 +00:00
|
|
|
qemu_set_nonblock(client_fd);
|
2012-01-19 06:18:20 +00:00
|
|
|
ret = ga_channel_client_add(c, client_fd);
|
|
|
|
if (ret) {
|
|
|
|
g_warning("error setting up connection");
|
2013-01-11 10:25:00 +00:00
|
|
|
close(client_fd);
|
2012-01-19 06:18:20 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
accepted = true;
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* only accept 1 connection at a time */
|
|
|
|
return !accepted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start polling for readable events on listen fd, new==true
|
|
|
|
* indicates we should use the existing s->listen_channel
|
|
|
|
*/
|
|
|
|
static void ga_channel_listen_add(GAChannel *c, int listen_fd, bool create)
|
|
|
|
{
|
|
|
|
if (create) {
|
|
|
|
c->listen_channel = g_io_channel_unix_new(listen_fd);
|
|
|
|
}
|
|
|
|
g_io_add_watch(c->listen_channel, G_IO_IN, ga_channel_listen_accept, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ga_channel_listen_close(GAChannel *c)
|
|
|
|
{
|
|
|
|
g_assert(c->listen_channel);
|
|
|
|
g_io_channel_shutdown(c->listen_channel, true, NULL);
|
|
|
|
g_io_channel_unref(c->listen_channel);
|
|
|
|
c->listen_channel = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup state for closed connection/session, start accepting new
|
|
|
|
* connections if we're in listening mode
|
|
|
|
*/
|
|
|
|
static void ga_channel_client_close(GAChannel *c)
|
|
|
|
{
|
|
|
|
g_assert(c->client_channel);
|
|
|
|
g_io_channel_shutdown(c->client_channel, true, NULL);
|
|
|
|
g_io_channel_unref(c->client_channel);
|
|
|
|
c->client_channel = NULL;
|
2016-10-14 09:00:54 +00:00
|
|
|
if (c->listen_channel) {
|
2012-01-19 06:18:20 +00:00
|
|
|
ga_channel_listen_add(c, 0, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean ga_channel_client_event(GIOChannel *channel,
|
|
|
|
GIOCondition condition, gpointer data)
|
|
|
|
{
|
|
|
|
GAChannel *c = data;
|
|
|
|
gboolean client_cont;
|
|
|
|
|
|
|
|
g_assert(c);
|
|
|
|
if (c->event_cb) {
|
|
|
|
client_cont = c->event_cb(condition, c->user_data);
|
|
|
|
if (!client_cont) {
|
|
|
|
ga_channel_client_close(c);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ga_channel_client_add(GAChannel *c, int fd)
|
|
|
|
{
|
|
|
|
GIOChannel *client_channel;
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
g_assert(c && !c->client_channel);
|
|
|
|
client_channel = g_io_channel_unix_new(fd);
|
|
|
|
g_assert(client_channel);
|
|
|
|
g_io_channel_set_encoding(client_channel, NULL, &err);
|
|
|
|
if (err != NULL) {
|
|
|
|
g_warning("error setting channel encoding to binary");
|
|
|
|
g_error_free(err);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
g_io_add_watch(client_channel, G_IO_IN | G_IO_HUP,
|
|
|
|
ga_channel_client_event, c);
|
|
|
|
c->client_channel = client_channel;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-06 15:29:30 +00:00
|
|
|
static gboolean ga_channel_open(GAChannel *c, const gchar *path,
|
|
|
|
GAChannelMethod method, int fd)
|
2012-01-19 06:18:20 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
c->method = method;
|
|
|
|
|
|
|
|
switch (c->method) {
|
|
|
|
case GA_CHANNEL_VIRTIO_SERIAL: {
|
2017-01-06 15:29:30 +00:00
|
|
|
assert(fd < 0);
|
|
|
|
fd = qemu_open(path, O_RDWR | O_NONBLOCK
|
2012-04-30 16:00:54 +00:00
|
|
|
#ifndef CONFIG_SOLARIS
|
|
|
|
| O_ASYNC
|
|
|
|
#endif
|
|
|
|
);
|
2012-01-19 06:18:20 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
g_critical("error opening channel: %s", strerror(errno));
|
2013-01-11 10:25:02 +00:00
|
|
|
return false;
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
2012-04-30 16:00:54 +00:00
|
|
|
#ifdef CONFIG_SOLARIS
|
|
|
|
ret = ioctl(fd, I_SETSIG, S_OUTPUT | S_INPUT | S_HIPRI);
|
|
|
|
if (ret == -1) {
|
|
|
|
g_critical("error setting event mask for channel: %s",
|
|
|
|
strerror(errno));
|
2013-01-11 10:25:02 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
2012-04-30 16:00:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-01-19 06:18:20 +00:00
|
|
|
ret = ga_channel_client_add(c, fd);
|
|
|
|
if (ret) {
|
|
|
|
g_critical("error adding channel to main loop");
|
2013-01-11 10:25:01 +00:00
|
|
|
close(fd);
|
2012-01-19 06:18:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GA_CHANNEL_ISA_SERIAL: {
|
|
|
|
struct termios tio;
|
2017-01-06 15:29:30 +00:00
|
|
|
|
|
|
|
assert(fd < 0);
|
|
|
|
fd = qemu_open(path, O_RDWR | O_NOCTTY | O_NONBLOCK);
|
2012-01-19 06:18:20 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
g_critical("error opening channel: %s", strerror(errno));
|
2013-01-11 10:25:02 +00:00
|
|
|
return false;
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
tcgetattr(fd, &tio);
|
|
|
|
/* set up serial port for non-canonical, dumb byte streaming */
|
|
|
|
tio.c_iflag &= ~(IGNBRK | BRKINT | IGNPAR | PARMRK | INPCK | ISTRIP |
|
|
|
|
INLCR | IGNCR | ICRNL | IXON | IXOFF | IXANY |
|
|
|
|
IMAXBEL);
|
|
|
|
tio.c_oflag = 0;
|
|
|
|
tio.c_lflag = 0;
|
|
|
|
tio.c_cflag |= GA_CHANNEL_BAUDRATE_DEFAULT;
|
|
|
|
/* 1 available byte min or reads will block (we'll set non-blocking
|
|
|
|
* elsewhere, else we have to deal with read()=0 instead)
|
|
|
|
*/
|
|
|
|
tio.c_cc[VMIN] = 1;
|
|
|
|
tio.c_cc[VTIME] = 0;
|
|
|
|
/* flush everything waiting for read/xmit, it's garbage at this point */
|
|
|
|
tcflush(fd, TCIFLUSH);
|
|
|
|
tcsetattr(fd, TCSANOW, &tio);
|
|
|
|
ret = ga_channel_client_add(c, fd);
|
|
|
|
if (ret) {
|
2013-01-11 10:25:02 +00:00
|
|
|
g_critical("error adding channel to main loop");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GA_CHANNEL_UNIX_LISTEN: {
|
2017-01-06 15:29:30 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
Error *local_err = NULL;
|
|
|
|
|
2017-12-12 11:12:19 +00:00
|
|
|
fd = unix_listen(path, &local_err);
|
2017-01-06 15:29:30 +00:00
|
|
|
if (local_err != NULL) {
|
|
|
|
g_critical("%s", error_get_pretty(local_err));
|
|
|
|
error_free(local_err);
|
|
|
|
return false;
|
|
|
|
}
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
ga_channel_listen_add(c, fd, true);
|
|
|
|
break;
|
|
|
|
}
|
2016-10-14 09:00:56 +00:00
|
|
|
case GA_CHANNEL_VSOCK_LISTEN: {
|
2017-01-06 15:29:30 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
Error *local_err = NULL;
|
|
|
|
SocketAddress *addr;
|
|
|
|
char *addr_str;
|
2016-10-14 09:00:56 +00:00
|
|
|
|
2017-01-06 15:29:30 +00:00
|
|
|
addr_str = g_strdup_printf("vsock:%s", path);
|
|
|
|
addr = socket_parse(addr_str, &local_err);
|
|
|
|
g_free(addr_str);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
g_critical("%s", error_get_pretty(local_err));
|
|
|
|
error_free(local_err);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-19 12:48:21 +00:00
|
|
|
fd = socket_listen(addr, 1, &local_err);
|
2017-01-06 15:29:30 +00:00
|
|
|
qapi_free_SocketAddress(addr);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
g_critical("%s", error_get_pretty(local_err));
|
|
|
|
error_free(local_err);
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-14 09:00:56 +00:00
|
|
|
}
|
|
|
|
ga_channel_listen_add(c, fd, true);
|
|
|
|
break;
|
|
|
|
}
|
2012-01-19 06:18:20 +00:00
|
|
|
default:
|
|
|
|
g_critical("error binding/listening to specified socket");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
GIOStatus ga_channel_write_all(GAChannel *c, const gchar *buf, gsize size)
|
|
|
|
{
|
|
|
|
GError *err = NULL;
|
|
|
|
gsize written = 0;
|
|
|
|
GIOStatus status = G_IO_STATUS_NORMAL;
|
|
|
|
|
|
|
|
while (size) {
|
2015-10-13 15:41:22 +00:00
|
|
|
g_debug("sending data, count: %d", (int)size);
|
2012-01-19 06:18:20 +00:00
|
|
|
status = g_io_channel_write_chars(c->client_channel, buf, size,
|
|
|
|
&written, &err);
|
2015-10-13 15:41:22 +00:00
|
|
|
if (status == G_IO_STATUS_NORMAL) {
|
|
|
|
size -= written;
|
|
|
|
buf += written;
|
|
|
|
} else if (status != G_IO_STATUS_AGAIN) {
|
2012-01-19 06:18:20 +00:00
|
|
|
g_warning("error writing to channel: %s", err->message);
|
2015-10-13 15:41:22 +00:00
|
|
|
return status;
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 15:41:22 +00:00
|
|
|
do {
|
2012-01-19 06:18:20 +00:00
|
|
|
status = g_io_channel_flush(c->client_channel, &err);
|
2015-10-13 15:41:22 +00:00
|
|
|
} while (status == G_IO_STATUS_AGAIN);
|
|
|
|
|
|
|
|
if (status != G_IO_STATUS_NORMAL) {
|
|
|
|
g_warning("error flushing channel: %s", err->message);
|
2012-01-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
GIOStatus ga_channel_read(GAChannel *c, gchar *buf, gsize size, gsize *count)
|
|
|
|
{
|
|
|
|
return g_io_channel_read_chars(c->client_channel, buf, size, count, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
GAChannel *ga_channel_new(GAChannelMethod method, const gchar *path,
|
2017-01-06 15:29:30 +00:00
|
|
|
int listen_fd, GAChannelCallback cb, gpointer opaque)
|
2012-01-19 06:18:20 +00:00
|
|
|
{
|
2015-09-14 11:50:44 +00:00
|
|
|
GAChannel *c = g_new0(GAChannel, 1);
|
2012-01-19 06:18:20 +00:00
|
|
|
c->event_cb = cb;
|
|
|
|
c->user_data = opaque;
|
|
|
|
|
2017-01-06 15:29:30 +00:00
|
|
|
if (!ga_channel_open(c, path, method, listen_fd)) {
|
2012-01-19 06:18:20 +00:00
|
|
|
g_critical("error opening channel");
|
|
|
|
ga_channel_free(c);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ga_channel_free(GAChannel *c)
|
|
|
|
{
|
2016-10-14 09:00:54 +00:00
|
|
|
if (c->listen_channel) {
|
2012-01-19 06:18:20 +00:00
|
|
|
ga_channel_listen_close(c);
|
|
|
|
}
|
|
|
|
if (c->client_channel) {
|
|
|
|
ga_channel_client_close(c);
|
|
|
|
}
|
|
|
|
g_free(c);
|
|
|
|
}
|