Previous patch causes a bug in Qemu if the patch 46764fe09ca2e0f15c0981a672c166ed8cf57e72 ("virtio-serial: fix segfault on disconnect") is not included in that version of Qemu (patch present in version 2.10.0). This crash happens when device is closed during a write operation. For SPICE character device, spice_server_char_device_wakeup is called to write data which handles both read and write pending operations. As we want to close the device but we can't do it inside the handler without causing a crash, this commit schedules a timer that will close the guest device outside this callback. The proper solution would be to patch Qemu but making sure of this is not so easy, hence this workaround in spice-server. Code is marked with some comments to remember to remove this hack in a safe future. Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx> --- server/stream-device.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/server/stream-device.c b/server/stream-device.c index 59ead59d..bbd8b941 100644 --- a/server/stream-device.c +++ b/server/stream-device.c @@ -57,6 +57,7 @@ struct StreamDevice { bool flow_stopped; StreamChannel *stream_channel; CursorChannel *cursor_channel; + SpiceTimer *close_timer; }; struct StreamDeviceClass { @@ -68,6 +69,8 @@ static StreamDevice *stream_device_new(SpiceCharDeviceInstance *sin, RedsState * G_DEFINE_TYPE(StreamDevice, stream_device, RED_TYPE_CHAR_DEVICE) +static void char_device_set_state(RedCharDevice *char_dev, int state); + typedef bool StreamMsgHandler(StreamDevice *dev, SpiceCharDeviceInstance *sin) SPICE_GNUC_WARN_UNUSED_RESULT; @@ -77,6 +80,16 @@ static StreamMsgHandler handle_msg_format, handle_msg_data, handle_msg_cursor_se static bool handle_msg_invalid(StreamDevice *dev, SpiceCharDeviceInstance *sin, const char *error_msg) SPICE_GNUC_WARN_UNUSED_RESULT; +static void +close_timer_func(void *opaque) +{ + StreamDevice *dev = opaque; + + if (dev->opened && dev->has_error) { + char_device_set_state(RED_CHAR_DEVICE(dev), 0); + } +} + static bool stream_device_partial_read(StreamDevice *dev, SpiceCharDeviceInstance *sin) { @@ -94,7 +107,17 @@ stream_device_partial_read(StreamDevice *dev, SpiceCharDeviceInstance *sin) while (sif->read(sin, buf, sizeof(buf)) > 0) { continue; } - sif->state(sin, 0); + + // This code is a workaround for a Qemu bug, see patch + // "stream-device: Workaround Qemu bug closing device". + // As calling sif->state here can cause a crash, schedule + // a timer and do the call in it. Remove this code when + // we are sure all Qemu versions have been patched. + RedsState *reds = red_char_device_get_server(RED_CHAR_DEVICE(dev)); + if (!dev->close_timer) { + dev->close_timer = reds_core_timer_add(reds, close_timer_func, dev); + } + reds_core_timer_start(reds, dev->close_timer, 0); return false; } @@ -501,6 +524,9 @@ stream_device_dispose(GObject *object) { StreamDevice *dev = STREAM_DEVICE(object); + RedsState *reds = red_char_device_get_server(RED_CHAR_DEVICE(dev)); + reds_core_timer_remove(reds, dev->close_timer); + if (dev->stream_channel) { // close all current connections and drop the reference red_channel_destroy(RED_CHANNEL(dev->stream_channel)); -- 2.14.3 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel