mirror of
https://github.com/qemu/qemu.git
synced 2024-11-23 19:03:38 +08:00
chardev: fix mess in OPENED/CLOSED events when muxed
When chardev is multiplexed (mux=on) there are a lot of cases where CHR_EVENT_OPENED/CHR_EVENT_CLOSED events pairing (expected from frontend side) is broken. There are either generation of multiple repeated or extra CHR_EVENT_OPENED events, or CHR_EVENT_CLOSED just isn't generated at all. This is mostly because 'qemu_chr_fe_set_handlers()' function makes its own (and often wrong) implicit decision on updated frontend state and invokes 'fd_event' callback with 'CHR_EVENT_OPENED'. And even worse, it doesn't do symmetric action in opposite direction, as someone may expect (i.e. it doesn't invoke previously set 'fd_event' with 'CHR_EVENT_CLOSED'). Muxed chardev uses trick by calling this function again to replace callback handlers with its own ones, but it doesn't account for such side effect. Fix that using extended version of this function with added argument for disabling side effect and keep original function for compatibility with lots of frontends already using this interface and being "tolerant" to its side effects. One more source of event duplication is just line of code in char-mux.c, which does far more than comment above says (obvious fix). Signed-off-by: Artem Pisarenko <artem.k.pisarenko@gmail.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <7dde6abbd21682857f8294644013173c0b9949b3.1541507990.git.artem.k.pisarenko@gmail.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
0b5e750bea
commit
7a9657ef53
@ -246,14 +246,15 @@ void qemu_chr_fe_deinit(CharBackend *b, bool del)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_chr_fe_set_handlers(CharBackend *b,
|
void qemu_chr_fe_set_handlers_full(CharBackend *b,
|
||||||
IOCanReadHandler *fd_can_read,
|
IOCanReadHandler *fd_can_read,
|
||||||
IOReadHandler *fd_read,
|
IOReadHandler *fd_read,
|
||||||
IOEventHandler *fd_event,
|
IOEventHandler *fd_event,
|
||||||
BackendChangeHandler *be_change,
|
BackendChangeHandler *be_change,
|
||||||
void *opaque,
|
void *opaque,
|
||||||
GMainContext *context,
|
GMainContext *context,
|
||||||
bool set_open)
|
bool set_open,
|
||||||
|
bool sync_state)
|
||||||
{
|
{
|
||||||
Chardev *s;
|
Chardev *s;
|
||||||
int fe_open;
|
int fe_open;
|
||||||
@ -285,7 +286,7 @@ void qemu_chr_fe_set_handlers(CharBackend *b,
|
|||||||
qemu_chr_fe_take_focus(b);
|
qemu_chr_fe_take_focus(b);
|
||||||
/* We're connecting to an already opened device, so let's make sure we
|
/* We're connecting to an already opened device, so let's make sure we
|
||||||
also get the open event */
|
also get the open event */
|
||||||
if (s->be_open) {
|
if (sync_state && s->be_open) {
|
||||||
qemu_chr_be_event(s, CHR_EVENT_OPENED);
|
qemu_chr_be_event(s, CHR_EVENT_OPENED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -295,6 +296,20 @@ void qemu_chr_fe_set_handlers(CharBackend *b,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void qemu_chr_fe_set_handlers(CharBackend *b,
|
||||||
|
IOCanReadHandler *fd_can_read,
|
||||||
|
IOReadHandler *fd_read,
|
||||||
|
IOEventHandler *fd_event,
|
||||||
|
BackendChangeHandler *be_change,
|
||||||
|
void *opaque,
|
||||||
|
GMainContext *context,
|
||||||
|
bool set_open)
|
||||||
|
{
|
||||||
|
qemu_chr_fe_set_handlers_full(b, fd_can_read, fd_read, fd_event, be_change,
|
||||||
|
opaque, context, set_open,
|
||||||
|
true);
|
||||||
|
}
|
||||||
|
|
||||||
void qemu_chr_fe_take_focus(CharBackend *b)
|
void qemu_chr_fe_take_focus(CharBackend *b)
|
||||||
{
|
{
|
||||||
if (!b->chr) {
|
if (!b->chr) {
|
||||||
|
@ -283,13 +283,13 @@ void mux_chr_set_handlers(Chardev *chr, GMainContext *context)
|
|||||||
MuxChardev *d = MUX_CHARDEV(chr);
|
MuxChardev *d = MUX_CHARDEV(chr);
|
||||||
|
|
||||||
/* Fix up the real driver with mux routines */
|
/* Fix up the real driver with mux routines */
|
||||||
qemu_chr_fe_set_handlers(&d->chr,
|
qemu_chr_fe_set_handlers_full(&d->chr,
|
||||||
mux_chr_can_read,
|
mux_chr_can_read,
|
||||||
mux_chr_read,
|
mux_chr_read,
|
||||||
mux_chr_event,
|
mux_chr_event,
|
||||||
NULL,
|
NULL,
|
||||||
chr,
|
chr,
|
||||||
context, true);
|
context, true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void mux_set_focus(Chardev *chr, int focus)
|
void mux_set_focus(Chardev *chr, int focus)
|
||||||
@ -367,7 +367,7 @@ static int open_muxes(Chardev *chr)
|
|||||||
* mark mux as OPENED so any new FEs will immediately receive
|
* mark mux as OPENED so any new FEs will immediately receive
|
||||||
* OPENED event
|
* OPENED event
|
||||||
*/
|
*/
|
||||||
qemu_chr_be_event(chr, CHR_EVENT_OPENED);
|
chr->be_open = 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ bool qemu_chr_fe_backend_connected(CharBackend *be);
|
|||||||
bool qemu_chr_fe_backend_open(CharBackend *be);
|
bool qemu_chr_fe_backend_open(CharBackend *be);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* qemu_chr_fe_set_handlers:
|
* qemu_chr_fe_set_handlers_full:
|
||||||
* @b: a CharBackend
|
* @b: a CharBackend
|
||||||
* @fd_can_read: callback to get the amount of data the frontend may
|
* @fd_can_read: callback to get the amount of data the frontend may
|
||||||
* receive
|
* receive
|
||||||
@ -79,12 +79,28 @@ bool qemu_chr_fe_backend_open(CharBackend *be);
|
|||||||
* @context: a main loop context or NULL for the default
|
* @context: a main loop context or NULL for the default
|
||||||
* @set_open: whether to call qemu_chr_fe_set_open() implicitely when
|
* @set_open: whether to call qemu_chr_fe_set_open() implicitely when
|
||||||
* any of the handler is non-NULL
|
* any of the handler is non-NULL
|
||||||
|
* @sync_state: whether to issue event callback with updated state
|
||||||
*
|
*
|
||||||
* Set the front end char handlers. The front end takes the focus if
|
* Set the front end char handlers. The front end takes the focus if
|
||||||
* any of the handler is non-NULL.
|
* any of the handler is non-NULL.
|
||||||
*
|
*
|
||||||
* Without associated Chardev, nothing is changed.
|
* Without associated Chardev, nothing is changed.
|
||||||
*/
|
*/
|
||||||
|
void qemu_chr_fe_set_handlers_full(CharBackend *b,
|
||||||
|
IOCanReadHandler *fd_can_read,
|
||||||
|
IOReadHandler *fd_read,
|
||||||
|
IOEventHandler *fd_event,
|
||||||
|
BackendChangeHandler *be_change,
|
||||||
|
void *opaque,
|
||||||
|
GMainContext *context,
|
||||||
|
bool set_open,
|
||||||
|
bool sync_state);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* qemu_chr_fe_set_handlers:
|
||||||
|
*
|
||||||
|
* Version of qemu_chr_fe_set_handlers_full() with sync_state = true.
|
||||||
|
*/
|
||||||
void qemu_chr_fe_set_handlers(CharBackend *b,
|
void qemu_chr_fe_set_handlers(CharBackend *b,
|
||||||
IOCanReadHandler *fd_can_read,
|
IOCanReadHandler *fd_can_read,
|
||||||
IOReadHandler *fd_read,
|
IOReadHandler *fd_read,
|
||||||
|
Loading…
Reference in New Issue
Block a user