2016-12-12 16:48:09 +01:00
|
|
|
/*
|
|
|
|
* QEMU System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2018-02-01 12:18:46 +01:00
|
|
|
|
2016-12-12 16:48:09 +01:00
|
|
|
#include "qemu/osdep.h"
|
2017-01-26 14:19:46 +01:00
|
|
|
#include "chardev/char.h"
|
2016-12-12 16:48:09 +01:00
|
|
|
#include "io/channel-socket.h"
|
|
|
|
#include "qapi/error.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2018-02-01 12:18:46 +01:00
|
|
|
#include "qemu/option.h"
|
2016-12-12 16:48:09 +01:00
|
|
|
|
2017-01-26 14:19:46 +01:00
|
|
|
#include "chardev/char-io.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2016-12-12 16:48:09 +01:00
|
|
|
|
|
|
|
/***********************************************************/
|
|
|
|
/* UDP Net console */
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct UdpChardev {
|
2016-12-12 16:48:09 +01:00
|
|
|
Chardev parent;
|
|
|
|
QIOChannel *ioc;
|
|
|
|
uint8_t buf[CHR_READ_BUF_LEN];
|
|
|
|
int bufcnt;
|
|
|
|
int bufptr;
|
|
|
|
int max_size;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct UdpChardev UdpChardev;
|
2016-12-12 16:48:09 +01:00
|
|
|
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(UdpChardev, UDP_CHARDEV,
|
|
|
|
TYPE_CHARDEV_UDP)
|
2016-12-12 16:48:09 +01:00
|
|
|
|
|
|
|
/* Called with chr_write_lock held. */
|
|
|
|
static int udp_chr_write(Chardev *chr, const uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
UdpChardev *s = UDP_CHARDEV(chr);
|
|
|
|
|
|
|
|
return qio_channel_write(
|
|
|
|
s->ioc, (const char *)buf, len, NULL);
|
|
|
|
}
|
|
|
|
|
2016-12-23 14:55:54 +01:00
|
|
|
static void udp_chr_flush_buffer(UdpChardev *s)
|
|
|
|
{
|
|
|
|
Chardev *chr = CHARDEV(s);
|
|
|
|
|
|
|
|
while (s->max_size > 0 && s->bufptr < s->bufcnt) {
|
|
|
|
int n = MIN(s->max_size, s->bufcnt - s->bufptr);
|
|
|
|
qemu_chr_be_write(chr, &s->buf[s->bufptr], n);
|
|
|
|
s->bufptr += n;
|
|
|
|
s->max_size = qemu_chr_be_can_write(chr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-12 16:48:09 +01:00
|
|
|
static int udp_chr_read_poll(void *opaque)
|
|
|
|
{
|
|
|
|
Chardev *chr = CHARDEV(opaque);
|
|
|
|
UdpChardev *s = UDP_CHARDEV(opaque);
|
|
|
|
|
|
|
|
s->max_size = qemu_chr_be_can_write(chr);
|
|
|
|
|
|
|
|
/* If there were any stray characters in the queue process them
|
|
|
|
* first
|
|
|
|
*/
|
2016-12-23 14:55:54 +01:00
|
|
|
udp_chr_flush_buffer(s);
|
|
|
|
|
2016-12-12 16:48:09 +01:00
|
|
|
return s->max_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean udp_chr_read(QIOChannel *chan, GIOCondition cond, void *opaque)
|
|
|
|
{
|
|
|
|
Chardev *chr = CHARDEV(opaque);
|
|
|
|
UdpChardev *s = UDP_CHARDEV(opaque);
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
if (s->max_size == 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
ret = qio_channel_read(
|
|
|
|
s->ioc, (char *)s->buf, sizeof(s->buf), NULL);
|
|
|
|
if (ret <= 0) {
|
2017-04-19 03:15:32 +02:00
|
|
|
remove_fd_in_watch(chr);
|
2016-12-12 16:48:09 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
s->bufcnt = ret;
|
|
|
|
s->bufptr = 0;
|
2016-12-23 14:55:54 +01:00
|
|
|
udp_chr_flush_buffer(s);
|
2016-12-12 16:48:09 +01:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-09-21 08:35:54 +02:00
|
|
|
static void udp_chr_update_read_handler(Chardev *chr)
|
2016-12-12 16:48:09 +01:00
|
|
|
{
|
|
|
|
UdpChardev *s = UDP_CHARDEV(chr);
|
|
|
|
|
2017-04-19 03:15:32 +02:00
|
|
|
remove_fd_in_watch(chr);
|
2016-12-12 16:48:09 +01:00
|
|
|
if (s->ioc) {
|
2017-04-19 03:15:32 +02:00
|
|
|
chr->gsource = io_add_watch_poll(chr, s->ioc,
|
2016-12-12 16:48:09 +01:00
|
|
|
udp_chr_read_poll,
|
|
|
|
udp_chr_read, chr,
|
2017-09-21 08:35:53 +02:00
|
|
|
chr->gcontext);
|
2016-12-12 16:48:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void char_udp_finalize(Object *obj)
|
|
|
|
{
|
|
|
|
Chardev *chr = CHARDEV(obj);
|
|
|
|
UdpChardev *s = UDP_CHARDEV(obj);
|
|
|
|
|
2017-04-19 03:15:32 +02:00
|
|
|
remove_fd_in_watch(chr);
|
2016-12-12 16:48:09 +01:00
|
|
|
if (s->ioc) {
|
|
|
|
object_unref(OBJECT(s->ioc));
|
|
|
|
}
|
|
|
|
qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qemu_chr_parse_udp(QemuOpts *opts, ChardevBackend *backend,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
const char *host = qemu_opt_get(opts, "host");
|
|
|
|
const char *port = qemu_opt_get(opts, "port");
|
|
|
|
const char *localaddr = qemu_opt_get(opts, "localaddr");
|
|
|
|
const char *localport = qemu_opt_get(opts, "localport");
|
|
|
|
bool has_local = false;
|
2017-04-26 09:36:39 +02:00
|
|
|
SocketAddressLegacy *addr;
|
2016-12-12 16:48:09 +01:00
|
|
|
ChardevUdp *udp;
|
|
|
|
|
|
|
|
backend->type = CHARDEV_BACKEND_KIND_UDP;
|
|
|
|
if (host == NULL || strlen(host) == 0) {
|
|
|
|
host = "localhost";
|
|
|
|
}
|
|
|
|
if (port == NULL || strlen(port) == 0) {
|
|
|
|
error_setg(errp, "chardev: udp: remote port not specified");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (localport == NULL || strlen(localport) == 0) {
|
|
|
|
localport = "0";
|
|
|
|
} else {
|
|
|
|
has_local = true;
|
|
|
|
}
|
|
|
|
if (localaddr == NULL || strlen(localaddr) == 0) {
|
|
|
|
localaddr = "";
|
|
|
|
} else {
|
|
|
|
has_local = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
udp = backend->u.udp.data = g_new0(ChardevUdp, 1);
|
|
|
|
qemu_chr_parse_common(opts, qapi_ChardevUdp_base(udp));
|
|
|
|
|
2017-04-26 09:36:39 +02:00
|
|
|
addr = g_new0(SocketAddressLegacy, 1);
|
|
|
|
addr->type = SOCKET_ADDRESS_LEGACY_KIND_INET;
|
2016-12-12 16:48:09 +01:00
|
|
|
addr->u.inet.data = g_new(InetSocketAddress, 1);
|
|
|
|
*addr->u.inet.data = (InetSocketAddress) {
|
|
|
|
.host = g_strdup(host),
|
|
|
|
.port = g_strdup(port),
|
|
|
|
.has_ipv4 = qemu_opt_get(opts, "ipv4"),
|
|
|
|
.ipv4 = qemu_opt_get_bool(opts, "ipv4", 0),
|
|
|
|
.has_ipv6 = qemu_opt_get(opts, "ipv6"),
|
|
|
|
.ipv6 = qemu_opt_get_bool(opts, "ipv6", 0),
|
|
|
|
};
|
|
|
|
udp->remote = addr;
|
|
|
|
|
|
|
|
if (has_local) {
|
|
|
|
udp->has_local = true;
|
2017-04-26 09:36:39 +02:00
|
|
|
addr = g_new0(SocketAddressLegacy, 1);
|
|
|
|
addr->type = SOCKET_ADDRESS_LEGACY_KIND_INET;
|
2016-12-12 16:48:09 +01:00
|
|
|
addr->u.inet.data = g_new(InetSocketAddress, 1);
|
|
|
|
*addr->u.inet.data = (InetSocketAddress) {
|
|
|
|
.host = g_strdup(localaddr),
|
|
|
|
.port = g_strdup(localport),
|
|
|
|
};
|
|
|
|
udp->local = addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qmp_chardev_open_udp(Chardev *chr,
|
|
|
|
ChardevBackend *backend,
|
|
|
|
bool *be_opened,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
ChardevUdp *udp = backend->u.udp.data;
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *local_addr = socket_address_flatten(udp->local);
|
|
|
|
SocketAddress *remote_addr = socket_address_flatten(udp->remote);
|
2016-12-12 16:48:09 +01:00
|
|
|
QIOChannelSocket *sioc = qio_channel_socket_new();
|
|
|
|
char *name;
|
|
|
|
UdpChardev *s = UDP_CHARDEV(chr);
|
2017-04-26 09:36:41 +02:00
|
|
|
int ret;
|
2016-12-12 16:48:09 +01:00
|
|
|
|
2017-04-26 09:36:41 +02:00
|
|
|
ret = qio_channel_socket_dgram_sync(sioc, local_addr, remote_addr, errp);
|
|
|
|
qapi_free_SocketAddress(local_addr);
|
|
|
|
qapi_free_SocketAddress(remote_addr);
|
|
|
|
if (ret < 0) {
|
2016-12-12 16:48:09 +01:00
|
|
|
object_unref(OBJECT(sioc));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = g_strdup_printf("chardev-udp-%s", chr->label);
|
|
|
|
qio_channel_set_name(QIO_CHANNEL(sioc), name);
|
|
|
|
g_free(name);
|
|
|
|
|
|
|
|
s->ioc = QIO_CHANNEL(sioc);
|
|
|
|
/* be isn't opened until we get a connection */
|
|
|
|
*be_opened = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void char_udp_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
ChardevClass *cc = CHARDEV_CLASS(oc);
|
|
|
|
|
|
|
|
cc->parse = qemu_chr_parse_udp;
|
|
|
|
cc->open = qmp_chardev_open_udp;
|
|
|
|
cc->chr_write = udp_chr_write;
|
|
|
|
cc->chr_update_read_handler = udp_chr_update_read_handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo char_udp_type_info = {
|
|
|
|
.name = TYPE_CHARDEV_UDP,
|
|
|
|
.parent = TYPE_CHARDEV,
|
|
|
|
.instance_size = sizeof(UdpChardev),
|
|
|
|
.instance_finalize = char_udp_finalize,
|
|
|
|
.class_init = char_udp_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&char_udp_type_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types);
|