mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
char: move CharBackend handling in char-fe unit
Move all the frontend struct and methods to a seperate unit. This avoids accidentally mixing backend and frontend calls, and helps with readabilty. Make qemu_chr_replay() a macro shared by both char and char-fe. Export qemu_chr_write(), and use a macro for qemu_chr_write_all() (nb: yes, CharBackend is for char frontend :) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "sysemu/rng.h"
|
#include "sysemu/rng.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "qapi/qmp/qerror.h"
|
#include "qapi/qmp/qerror.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
chardev-obj-y += char.o
|
chardev-obj-y += char.o
|
||||||
chardev-obj-$(CONFIG_WIN32) += char-console.o
|
chardev-obj-$(CONFIG_WIN32) += char-console.o
|
||||||
chardev-obj-$(CONFIG_POSIX) += char-fd.o
|
chardev-obj-$(CONFIG_POSIX) += char-fd.o
|
||||||
|
chardev-obj-y += char-fe.o
|
||||||
chardev-obj-y += char-file.o
|
chardev-obj-y += char-file.o
|
||||||
chardev-obj-y += char-io.o
|
chardev-obj-y += char-io.o
|
||||||
chardev-obj-y += char-mux.o
|
chardev-obj-y += char-mux.o
|
||||||
|
|||||||
@@ -0,0 +1,358 @@
|
|||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
#include "qemu/osdep.h"
|
||||||
|
#include "qemu/error-report.h"
|
||||||
|
#include "qapi/error.h"
|
||||||
|
#include "qapi-visit.h"
|
||||||
|
#include "sysemu/replay.h"
|
||||||
|
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
|
#include "chardev/char-io.h"
|
||||||
|
#include "chardev/char-mux.h"
|
||||||
|
|
||||||
|
int qemu_chr_fe_write(CharBackend *be, const uint8_t *buf, int len)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
|
||||||
|
if (!s) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return qemu_chr_write(s, buf, len, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_write_all(CharBackend *be, const uint8_t *buf, int len)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
|
||||||
|
if (!s) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return qemu_chr_write(s, buf, len, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_read_all(CharBackend *be, uint8_t *buf, int len)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
int offset = 0, counter = 10;
|
||||||
|
int res;
|
||||||
|
|
||||||
|
if (!s || !CHARDEV_GET_CLASS(s)->chr_sync_read) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_PLAY) {
|
||||||
|
return replay_char_read_all_load(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
while (offset < len) {
|
||||||
|
retry:
|
||||||
|
res = CHARDEV_GET_CLASS(s)->chr_sync_read(s, buf + offset,
|
||||||
|
len - offset);
|
||||||
|
if (res == -1 && errno == EAGAIN) {
|
||||||
|
g_usleep(100);
|
||||||
|
goto retry;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res < 0) {
|
||||||
|
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|
||||||
|
replay_char_read_all_save_error(res);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
offset += res;
|
||||||
|
|
||||||
|
if (!counter--) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|
||||||
|
replay_char_read_all_save_buf(buf, offset);
|
||||||
|
}
|
||||||
|
return offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_ioctl(CharBackend *be, int cmd, void *arg)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
int res;
|
||||||
|
|
||||||
|
if (!s || !CHARDEV_GET_CLASS(s)->chr_ioctl || qemu_chr_replay(s)) {
|
||||||
|
res = -ENOTSUP;
|
||||||
|
} else {
|
||||||
|
res = CHARDEV_GET_CLASS(s)->chr_ioctl(s, cmd, arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_get_msgfd(CharBackend *be)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
int fd;
|
||||||
|
int res = (qemu_chr_fe_get_msgfds(be, &fd, 1) == 1) ? fd : -1;
|
||||||
|
if (s && qemu_chr_replay(s)) {
|
||||||
|
error_report("Replay: get msgfd is not supported "
|
||||||
|
"for serial devices yet");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_get_msgfds(CharBackend *be, int *fds, int len)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
|
||||||
|
if (!s) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CHARDEV_GET_CLASS(s)->get_msgfds ?
|
||||||
|
CHARDEV_GET_CLASS(s)->get_msgfds(s, fds, len) : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_set_msgfds(CharBackend *be, int *fds, int num)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
|
||||||
|
if (!s) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CHARDEV_GET_CLASS(s)->set_msgfds ?
|
||||||
|
CHARDEV_GET_CLASS(s)->set_msgfds(s, fds, num) : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_accept_input(CharBackend *be)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
|
||||||
|
if (!s) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CHARDEV_GET_CLASS(s)->chr_accept_input) {
|
||||||
|
CHARDEV_GET_CLASS(s)->chr_accept_input(s);
|
||||||
|
}
|
||||||
|
qemu_notify_event();
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_printf(CharBackend *be, const char *fmt, ...)
|
||||||
|
{
|
||||||
|
char buf[CHR_READ_BUF_LEN];
|
||||||
|
va_list ap;
|
||||||
|
va_start(ap, fmt);
|
||||||
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
||||||
|
/* XXX this blocks entire thread. Rewrite to use
|
||||||
|
* qemu_chr_fe_write and background I/O callbacks */
|
||||||
|
qemu_chr_fe_write_all(be, (uint8_t *)buf, strlen(buf));
|
||||||
|
va_end(ap);
|
||||||
|
}
|
||||||
|
|
||||||
|
Chardev *qemu_chr_fe_get_driver(CharBackend *be)
|
||||||
|
{
|
||||||
|
return be->chr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool qemu_chr_fe_init(CharBackend *b, Chardev *s, Error **errp)
|
||||||
|
{
|
||||||
|
int tag = 0;
|
||||||
|
|
||||||
|
if (CHARDEV_IS_MUX(s)) {
|
||||||
|
MuxChardev *d = MUX_CHARDEV(s);
|
||||||
|
|
||||||
|
if (d->mux_cnt >= MAX_MUX) {
|
||||||
|
goto unavailable;
|
||||||
|
}
|
||||||
|
|
||||||
|
d->backends[d->mux_cnt] = b;
|
||||||
|
tag = d->mux_cnt++;
|
||||||
|
} else if (s->be) {
|
||||||
|
goto unavailable;
|
||||||
|
} else {
|
||||||
|
s->be = b;
|
||||||
|
}
|
||||||
|
|
||||||
|
b->fe_open = false;
|
||||||
|
b->tag = tag;
|
||||||
|
b->chr = s;
|
||||||
|
return true;
|
||||||
|
|
||||||
|
unavailable:
|
||||||
|
error_setg(errp, QERR_DEVICE_IN_USE, s->label);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_deinit(CharBackend *b)
|
||||||
|
{
|
||||||
|
assert(b);
|
||||||
|
|
||||||
|
if (b->chr) {
|
||||||
|
qemu_chr_fe_set_handlers(b, NULL, NULL, NULL, NULL, NULL, true);
|
||||||
|
if (b->chr->be == b) {
|
||||||
|
b->chr->be = NULL;
|
||||||
|
}
|
||||||
|
if (CHARDEV_IS_MUX(b->chr)) {
|
||||||
|
MuxChardev *d = MUX_CHARDEV(b->chr);
|
||||||
|
d->backends[b->tag] = NULL;
|
||||||
|
}
|
||||||
|
b->chr = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_set_handlers(CharBackend *b,
|
||||||
|
IOCanReadHandler *fd_can_read,
|
||||||
|
IOReadHandler *fd_read,
|
||||||
|
IOEventHandler *fd_event,
|
||||||
|
void *opaque,
|
||||||
|
GMainContext *context,
|
||||||
|
bool set_open)
|
||||||
|
{
|
||||||
|
Chardev *s;
|
||||||
|
ChardevClass *cc;
|
||||||
|
int fe_open;
|
||||||
|
|
||||||
|
s = b->chr;
|
||||||
|
if (!s) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
cc = CHARDEV_GET_CLASS(s);
|
||||||
|
if (!opaque && !fd_can_read && !fd_read && !fd_event) {
|
||||||
|
fe_open = 0;
|
||||||
|
remove_fd_in_watch(s);
|
||||||
|
} else {
|
||||||
|
fe_open = 1;
|
||||||
|
}
|
||||||
|
b->chr_can_read = fd_can_read;
|
||||||
|
b->chr_read = fd_read;
|
||||||
|
b->chr_event = fd_event;
|
||||||
|
b->opaque = opaque;
|
||||||
|
if (cc->chr_update_read_handler) {
|
||||||
|
cc->chr_update_read_handler(s, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (set_open) {
|
||||||
|
qemu_chr_fe_set_open(b, fe_open);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fe_open) {
|
||||||
|
qemu_chr_fe_take_focus(b);
|
||||||
|
/* We're connecting to an already opened device, so let's make sure we
|
||||||
|
also get the open event */
|
||||||
|
if (s->be_open) {
|
||||||
|
qemu_chr_be_event(s, CHR_EVENT_OPENED);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CHARDEV_IS_MUX(s)) {
|
||||||
|
mux_chr_set_handlers(s, context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_take_focus(CharBackend *b)
|
||||||
|
{
|
||||||
|
if (!b->chr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CHARDEV_IS_MUX(b->chr)) {
|
||||||
|
mux_set_focus(b->chr, b->tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int qemu_chr_fe_wait_connected(CharBackend *be, Error **errp)
|
||||||
|
{
|
||||||
|
if (!be->chr) {
|
||||||
|
error_setg(errp, "missing associated backend");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return qemu_chr_wait_connected(be->chr, errp);
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_set_echo(CharBackend *be, bool echo)
|
||||||
|
{
|
||||||
|
Chardev *chr = be->chr;
|
||||||
|
|
||||||
|
if (chr && CHARDEV_GET_CLASS(chr)->chr_set_echo) {
|
||||||
|
CHARDEV_GET_CLASS(chr)->chr_set_echo(chr, echo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_set_open(CharBackend *be, int fe_open)
|
||||||
|
{
|
||||||
|
Chardev *chr = be->chr;
|
||||||
|
|
||||||
|
if (!chr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (be->fe_open == fe_open) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
be->fe_open = fe_open;
|
||||||
|
if (CHARDEV_GET_CLASS(chr)->chr_set_fe_open) {
|
||||||
|
CHARDEV_GET_CLASS(chr)->chr_set_fe_open(chr, fe_open);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond,
|
||||||
|
GIOFunc func, void *user_data)
|
||||||
|
{
|
||||||
|
Chardev *s = be->chr;
|
||||||
|
GSource *src;
|
||||||
|
guint tag;
|
||||||
|
|
||||||
|
if (!s || CHARDEV_GET_CLASS(s)->chr_add_watch == NULL) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
src = CHARDEV_GET_CLASS(s)->chr_add_watch(s, cond);
|
||||||
|
if (!src) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
|
||||||
|
tag = g_source_attach(src, NULL);
|
||||||
|
g_source_unref(src);
|
||||||
|
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_disconnect(CharBackend *be)
|
||||||
|
{
|
||||||
|
Chardev *chr = be->chr;
|
||||||
|
|
||||||
|
if (chr && CHARDEV_GET_CLASS(chr)->chr_disconnect) {
|
||||||
|
CHARDEV_GET_CLASS(chr)->chr_disconnect(chr);
|
||||||
|
}
|
||||||
|
}
|
||||||
+1
-342
@@ -22,7 +22,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "qemu-common.h"
|
|
||||||
#include "qemu/cutils.h"
|
#include "qemu/cutils.h"
|
||||||
#include "monitor/monitor.h"
|
#include "monitor/monitor.h"
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
@@ -35,9 +34,6 @@
|
|||||||
#include "qemu/help_option.h"
|
#include "qemu/help_option.h"
|
||||||
|
|
||||||
#include "chardev/char-mux.h"
|
#include "chardev/char-mux.h"
|
||||||
#include "chardev/char-io.h"
|
|
||||||
#include "chardev/char-parallel.h"
|
|
||||||
#include "chardev/char-serial.h"
|
|
||||||
|
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
/* character device */
|
/* character device */
|
||||||
@@ -129,13 +125,7 @@ static int qemu_chr_fe_write_buffer(Chardev *s,
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool qemu_chr_replay(Chardev *chr)
|
int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all)
|
||||||
{
|
|
||||||
return qemu_chr_has_feature(chr, QEMU_CHAR_FEATURE_REPLAY);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qemu_chr_write(Chardev *s, const uint8_t *buf, int len,
|
|
||||||
bool write_all)
|
|
||||||
{
|
{
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
int res;
|
int res;
|
||||||
@@ -159,94 +149,6 @@ static int qemu_chr_write(Chardev *s, const uint8_t *buf, int len,
|
|||||||
return offset;
|
return offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
int qemu_chr_write_all(Chardev *s, const uint8_t *buf, int len)
|
|
||||||
{
|
|
||||||
return qemu_chr_write(s, buf, len, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_write(CharBackend *be, const uint8_t *buf, int len)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
|
|
||||||
if (!s) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return qemu_chr_write(s, buf, len, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_write_all(CharBackend *be, const uint8_t *buf, int len)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
|
|
||||||
if (!s) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return qemu_chr_write(s, buf, len, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_read_all(CharBackend *be, uint8_t *buf, int len)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
int offset = 0, counter = 10;
|
|
||||||
int res;
|
|
||||||
|
|
||||||
if (!s || !CHARDEV_GET_CLASS(s)->chr_sync_read) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_PLAY) {
|
|
||||||
return replay_char_read_all_load(buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
while (offset < len) {
|
|
||||||
retry:
|
|
||||||
res = CHARDEV_GET_CLASS(s)->chr_sync_read(s, buf + offset,
|
|
||||||
len - offset);
|
|
||||||
if (res == -1 && errno == EAGAIN) {
|
|
||||||
g_usleep(100);
|
|
||||||
goto retry;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (res == 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (res < 0) {
|
|
||||||
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|
|
||||||
replay_char_read_all_save_error(res);
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
offset += res;
|
|
||||||
|
|
||||||
if (!counter--) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|
|
||||||
replay_char_read_all_save_buf(buf, offset);
|
|
||||||
}
|
|
||||||
return offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_ioctl(CharBackend *be, int cmd, void *arg)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
int res;
|
|
||||||
|
|
||||||
if (!s || !CHARDEV_GET_CLASS(s)->chr_ioctl || qemu_chr_replay(s)) {
|
|
||||||
res = -ENOTSUP;
|
|
||||||
} else {
|
|
||||||
res = CHARDEV_GET_CLASS(s)->chr_ioctl(s, cmd, arg);
|
|
||||||
}
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_be_can_write(Chardev *s)
|
int qemu_chr_be_can_write(Chardev *s)
|
||||||
{
|
{
|
||||||
CharBackend *be = s->be;
|
CharBackend *be = s->be;
|
||||||
@@ -279,75 +181,12 @@ void qemu_chr_be_write(Chardev *s, uint8_t *buf, int len)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int qemu_chr_fe_get_msgfd(CharBackend *be)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
int fd;
|
|
||||||
int res = (qemu_chr_fe_get_msgfds(be, &fd, 1) == 1) ? fd : -1;
|
|
||||||
if (s && qemu_chr_replay(s)) {
|
|
||||||
error_report("Replay: get msgfd is not supported "
|
|
||||||
"for serial devices yet");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_get_msgfds(CharBackend *be, int *fds, int len)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
|
|
||||||
if (!s) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return CHARDEV_GET_CLASS(s)->get_msgfds ?
|
|
||||||
CHARDEV_GET_CLASS(s)->get_msgfds(s, fds, len) : -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_fe_set_msgfds(CharBackend *be, int *fds, int num)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
|
|
||||||
if (!s) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return CHARDEV_GET_CLASS(s)->set_msgfds ?
|
|
||||||
CHARDEV_GET_CLASS(s)->set_msgfds(s, fds, num) : -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_add_client(Chardev *s, int fd)
|
int qemu_chr_add_client(Chardev *s, int fd)
|
||||||
{
|
{
|
||||||
return CHARDEV_GET_CLASS(s)->chr_add_client ?
|
return CHARDEV_GET_CLASS(s)->chr_add_client ?
|
||||||
CHARDEV_GET_CLASS(s)->chr_add_client(s, fd) : -1;
|
CHARDEV_GET_CLASS(s)->chr_add_client(s, fd) : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_chr_fe_accept_input(CharBackend *be)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
|
|
||||||
if (!s) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (CHARDEV_GET_CLASS(s)->chr_accept_input) {
|
|
||||||
CHARDEV_GET_CLASS(s)->chr_accept_input(s);
|
|
||||||
}
|
|
||||||
qemu_notify_event();
|
|
||||||
}
|
|
||||||
|
|
||||||
void qemu_chr_fe_printf(CharBackend *be, const char *fmt, ...)
|
|
||||||
{
|
|
||||||
char buf[CHR_READ_BUF_LEN];
|
|
||||||
va_list ap;
|
|
||||||
va_start(ap, fmt);
|
|
||||||
vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
||||||
/* XXX this blocks entire thread. Rewrite to use
|
|
||||||
* qemu_chr_fe_write and background I/O callbacks */
|
|
||||||
qemu_chr_fe_write_all(be, (uint8_t *)buf, strlen(buf));
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void qemu_char_open(Chardev *chr, ChardevBackend *backend,
|
static void qemu_char_open(Chardev *chr, ChardevBackend *backend,
|
||||||
bool *be_opened, Error **errp)
|
bool *be_opened, Error **errp)
|
||||||
{
|
{
|
||||||
@@ -459,40 +298,6 @@ static Notifier muxes_realize_notify = {
|
|||||||
.notify = muxes_realize_done,
|
.notify = muxes_realize_done,
|
||||||
};
|
};
|
||||||
|
|
||||||
Chardev *qemu_chr_fe_get_driver(CharBackend *be)
|
|
||||||
{
|
|
||||||
return be->chr;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool qemu_chr_fe_init(CharBackend *b, Chardev *s, Error **errp)
|
|
||||||
{
|
|
||||||
int tag = 0;
|
|
||||||
|
|
||||||
if (CHARDEV_IS_MUX(s)) {
|
|
||||||
MuxChardev *d = MUX_CHARDEV(s);
|
|
||||||
|
|
||||||
if (d->mux_cnt >= MAX_MUX) {
|
|
||||||
goto unavailable;
|
|
||||||
}
|
|
||||||
|
|
||||||
d->backends[d->mux_cnt] = b;
|
|
||||||
tag = d->mux_cnt++;
|
|
||||||
} else if (s->be) {
|
|
||||||
goto unavailable;
|
|
||||||
} else {
|
|
||||||
s->be = b;
|
|
||||||
}
|
|
||||||
|
|
||||||
b->fe_open = false;
|
|
||||||
b->tag = tag;
|
|
||||||
b->chr = s;
|
|
||||||
return true;
|
|
||||||
|
|
||||||
unavailable:
|
|
||||||
error_setg(errp, QERR_DEVICE_IN_USE, s->label);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool qemu_chr_is_busy(Chardev *s)
|
static bool qemu_chr_is_busy(Chardev *s)
|
||||||
{
|
{
|
||||||
if (CHARDEV_IS_MUX(s)) {
|
if (CHARDEV_IS_MUX(s)) {
|
||||||
@@ -503,84 +308,6 @@ static bool qemu_chr_is_busy(Chardev *s)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_chr_fe_deinit(CharBackend *b)
|
|
||||||
{
|
|
||||||
assert(b);
|
|
||||||
|
|
||||||
if (b->chr) {
|
|
||||||
qemu_chr_fe_set_handlers(b, NULL, NULL, NULL, NULL, NULL, true);
|
|
||||||
if (b->chr->be == b) {
|
|
||||||
b->chr->be = NULL;
|
|
||||||
}
|
|
||||||
if (CHARDEV_IS_MUX(b->chr)) {
|
|
||||||
MuxChardev *d = MUX_CHARDEV(b->chr);
|
|
||||||
d->backends[b->tag] = NULL;
|
|
||||||
}
|
|
||||||
b->chr = NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void qemu_chr_fe_set_handlers(CharBackend *b,
|
|
||||||
IOCanReadHandler *fd_can_read,
|
|
||||||
IOReadHandler *fd_read,
|
|
||||||
IOEventHandler *fd_event,
|
|
||||||
void *opaque,
|
|
||||||
GMainContext *context,
|
|
||||||
bool set_open)
|
|
||||||
{
|
|
||||||
Chardev *s;
|
|
||||||
ChardevClass *cc;
|
|
||||||
int fe_open;
|
|
||||||
|
|
||||||
s = b->chr;
|
|
||||||
if (!s) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cc = CHARDEV_GET_CLASS(s);
|
|
||||||
if (!opaque && !fd_can_read && !fd_read && !fd_event) {
|
|
||||||
fe_open = 0;
|
|
||||||
remove_fd_in_watch(s);
|
|
||||||
} else {
|
|
||||||
fe_open = 1;
|
|
||||||
}
|
|
||||||
b->chr_can_read = fd_can_read;
|
|
||||||
b->chr_read = fd_read;
|
|
||||||
b->chr_event = fd_event;
|
|
||||||
b->opaque = opaque;
|
|
||||||
if (cc->chr_update_read_handler) {
|
|
||||||
cc->chr_update_read_handler(s, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (set_open) {
|
|
||||||
qemu_chr_fe_set_open(b, fe_open);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fe_open) {
|
|
||||||
qemu_chr_fe_take_focus(b);
|
|
||||||
/* We're connecting to an already opened device, so let's make sure we
|
|
||||||
also get the open event */
|
|
||||||
if (s->be_open) {
|
|
||||||
qemu_chr_be_event(s, CHR_EVENT_OPENED);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (CHARDEV_IS_MUX(s)) {
|
|
||||||
mux_chr_set_handlers(s, context);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void qemu_chr_fe_take_focus(CharBackend *b)
|
|
||||||
{
|
|
||||||
if (!b->chr) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (CHARDEV_IS_MUX(b->chr)) {
|
|
||||||
mux_set_focus(b->chr, b->tag);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int qemu_chr_wait_connected(Chardev *chr, Error **errp)
|
int qemu_chr_wait_connected(Chardev *chr, Error **errp)
|
||||||
{
|
{
|
||||||
ChardevClass *cc = CHARDEV_GET_CLASS(chr);
|
ChardevClass *cc = CHARDEV_GET_CLASS(chr);
|
||||||
@@ -592,16 +319,6 @@ int qemu_chr_wait_connected(Chardev *chr, Error **errp)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int qemu_chr_fe_wait_connected(CharBackend *be, Error **errp)
|
|
||||||
{
|
|
||||||
if (!be->chr) {
|
|
||||||
error_setg(errp, "missing associated backend");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return qemu_chr_wait_connected(be->chr, errp);
|
|
||||||
}
|
|
||||||
|
|
||||||
QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
|
QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename)
|
||||||
{
|
{
|
||||||
char host[65], port[33], width[8], height[8];
|
char host[65], port[33], width[8], height[8];
|
||||||
@@ -978,64 +695,6 @@ Chardev *qemu_chr_new(const char *label, const char *filename)
|
|||||||
return chr;
|
return chr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_chr_fe_set_echo(CharBackend *be, bool echo)
|
|
||||||
{
|
|
||||||
Chardev *chr = be->chr;
|
|
||||||
|
|
||||||
if (chr && CHARDEV_GET_CLASS(chr)->chr_set_echo) {
|
|
||||||
CHARDEV_GET_CLASS(chr)->chr_set_echo(chr, echo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void qemu_chr_fe_set_open(CharBackend *be, int fe_open)
|
|
||||||
{
|
|
||||||
Chardev *chr = be->chr;
|
|
||||||
|
|
||||||
if (!chr) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (be->fe_open == fe_open) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
be->fe_open = fe_open;
|
|
||||||
if (CHARDEV_GET_CLASS(chr)->chr_set_fe_open) {
|
|
||||||
CHARDEV_GET_CLASS(chr)->chr_set_fe_open(chr, fe_open);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond,
|
|
||||||
GIOFunc func, void *user_data)
|
|
||||||
{
|
|
||||||
Chardev *s = be->chr;
|
|
||||||
GSource *src;
|
|
||||||
guint tag;
|
|
||||||
|
|
||||||
if (!s || CHARDEV_GET_CLASS(s)->chr_add_watch == NULL) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
src = CHARDEV_GET_CLASS(s)->chr_add_watch(s, cond);
|
|
||||||
if (!src) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
g_source_set_callback(src, (GSourceFunc)func, user_data, NULL);
|
|
||||||
tag = g_source_attach(src, NULL);
|
|
||||||
g_source_unref(src);
|
|
||||||
|
|
||||||
return tag;
|
|
||||||
}
|
|
||||||
|
|
||||||
void qemu_chr_fe_disconnect(CharBackend *be)
|
|
||||||
{
|
|
||||||
Chardev *chr = be->chr;
|
|
||||||
|
|
||||||
if (chr && CHARDEV_GET_CLASS(chr)->chr_disconnect) {
|
|
||||||
CHARDEV_GET_CLASS(chr)->chr_disconnect(chr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qmp_query_chardev_foreach(Object *obj, void *data)
|
static int qmp_query_chardev_foreach(Object *obj, void *data)
|
||||||
{
|
{
|
||||||
Chardev *chr = CHARDEV(obj);
|
Chardev *chr = CHARDEV(obj);
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
#else
|
#else
|
||||||
#include "monitor/monitor.h"
|
#include "monitor/monitor.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char.h"
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
#include "exec/gdbstub.h"
|
#include "exec/gdbstub.h"
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+1
-1
@@ -30,7 +30,7 @@
|
|||||||
#include "hw/arm/omap.h"
|
#include "hw/arm/omap.h"
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
#include "qemu/timer.h"
|
#include "qemu/timer.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "hw/block/flash.h"
|
#include "hw/block/flash.h"
|
||||||
#include "hw/arm/soc_dma.h"
|
#include "hw/arm/soc_dma.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@
|
|||||||
#include "hw/char/serial.h"
|
#include "hw/char/serial.h"
|
||||||
#include "hw/i2c/i2c.h"
|
#include "hw/i2c/i2c.h"
|
||||||
#include "hw/ssi/ssi.h"
|
#include "hw/ssi/ssi.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "sysemu/block-backend.h"
|
#include "sysemu/block-backend.h"
|
||||||
#include "sysemu/blockdev.h"
|
#include "sysemu/blockdev.h"
|
||||||
#include "qemu/cutils.h"
|
#include "qemu/cutils.h"
|
||||||
|
|||||||
@@ -34,6 +34,7 @@
|
|||||||
#include "strongarm.h"
|
#include "strongarm.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "hw/arm/arm.h"
|
#include "hw/arm/arm.h"
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
#include "chardev/char-serial.h"
|
#include "chardev/char-serial.h"
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
#include "hw/ssi/ssi.h"
|
#include "hw/ssi/ssi.h"
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
#include "chardev/char-serial.h"
|
#include "chardev/char-serial.h"
|
||||||
#include "qemu/timer.h"
|
#include "qemu/timer.h"
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
|
|||||||
+1
-1
@@ -27,7 +27,7 @@
|
|||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "hw/isa/isa.h"
|
#include "hw/isa/isa.h"
|
||||||
#include "hw/i386/pc.h"
|
#include "hw/i386/pc.h"
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
|
|
||||||
#include "hw/char/digic-uart.h"
|
#include "hw/char/digic-uart.h"
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "hw/char/escc.h"
|
#include "hw/char/escc.h"
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
#include "chardev/char-serial.h"
|
#include "chardev/char-serial.h"
|
||||||
#include "ui/console.h"
|
#include "ui/console.h"
|
||||||
#include "ui/input.h"
|
#include "ui/input.h"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
|
|
||||||
#define D(x)
|
#define D(x)
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
|
#include "chardev/char-fe.h"
|
||||||
#include "chardev/char-serial.h"
|
#include "chardev/char-serial.h"
|
||||||
|
|
||||||
#include "hw/arm/exynos4210.h"
|
#include "hw/arm/exynos4210.h"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
|
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "hw/ipack/ipack.h"
|
#include "hw/ipack/ipack.h"
|
||||||
#include "qemu/bitops.h"
|
#include "qemu/bitops.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
|
|
||||||
/* #define DEBUG_IPOCTAL */
|
/* #define DEBUG_IPOCTAL */
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
|
|
||||||
#include "hw/char/lm32_juart.h"
|
#include "hw/char/lm32_juart.h"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -26,7 +26,7 @@
|
|||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@
|
|||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "hw/m68k/mcf.h"
|
#include "hw/m68k/mcf.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "exec/address-spaces.h"
|
#include "exec/address-spaces.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
#include "hw/sysbus.h"
|
#include "hw/sysbus.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char-fe.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user