From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
Markus Armbruster <armbru@redhat.com>
Subject: Re: [PATCH v4 6/9] ui/vdagent: add clipboard support
Date: Tue, 27 Apr 2021 13:20:05 +0400 [thread overview]
Message-ID: <CAMxuvawnyJ9xXVLp0HPrv6xYP7kRB3Qr-=qXU7mqDA0yo0yStA@mail.gmail.com> (raw)
In-Reply-To: <20210423083351.2096734-7-kraxel@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 14889 bytes --]
On Fri, Apr 23, 2021 at 12:34 PM Gerd Hoffmann <kraxel@redhat.com> wrote:
> This patch adds support for clipboard messages to the qemu vdagent
> implementation, which allows the guest exchange clipboard data with
> qemu. Clipboard support can be enabled/disabled using the new
> 'clipboard' parameter for the vdagent chardev. Default is off.
>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
>
Beside endianness, lgtm
---
> chardev/char.c | 3 +
> ui/vdagent.c | 292 ++++++++++++++++++++++++++++++++++++++++++++++++
> qapi/char.json | 4 +-
> ui/trace-events | 2 +
> 4 files changed, 300 insertions(+), 1 deletion(-)
>
> diff --git a/chardev/char.c b/chardev/char.c
> index 9714057541fb..39d41d3df7bb 100644
> --- a/chardev/char.c
> +++ b/chardev/char.c
> @@ -935,6 +935,9 @@ QemuOptsList qemu_chardev_opts = {
> },{
> .name = "mouse",
> .type = QEMU_OPT_BOOL,
> + },{
> + .name = "clipboard",
> + .type = QEMU_OPT_BOOL,
> #ifdef CONFIG_LINUX
> },{
> .name = "tight",
> diff --git a/ui/vdagent.c b/ui/vdagent.c
> index e914a33bae20..67044aa5b9f0 100644
> --- a/ui/vdagent.c
> +++ b/ui/vdagent.c
> @@ -3,6 +3,7 @@
> #include "chardev/char.h"
> #include "hw/qdev-core.h"
> #include "qemu/option.h"
> +#include "ui/clipboard.h"
> #include "ui/console.h"
> #include "ui/input.h"
> #include "trace.h"
> @@ -13,12 +14,14 @@
> #include "spice/vd_agent.h"
>
> #define VDAGENT_MOUSE_DEFAULT true
> +#define VDAGENT_CLIPBOARD_DEFAULT false
>
> struct VDAgentChardev {
> Chardev parent;
>
> /* config */
> bool mouse;
> + bool clipboard;
>
> /* guest vdagent */
> uint32_t caps;
> @@ -36,6 +39,11 @@ struct VDAgentChardev {
> uint32_t mouse_btn;
> uint32_t mouse_display;
> QemuInputHandlerState *mouse_hs;
> +
> + /* clipboard */
> + QemuClipboardPeer cbpeer;
> + QemuClipboardInfo *cbinfo[QEMU_CLIPBOARD_SELECTION__COUNT];
> + uint32_t cbpending[QEMU_CLIPBOARD_SELECTION__COUNT];
> };
> typedef struct VDAgentChardev VDAgentChardev;
>
> @@ -91,6 +99,24 @@ static const char *msg_name[] = {
> #endif
> };
>
> +static const char *sel_name[] = {
> + [VD_AGENT_CLIPBOARD_SELECTION_CLIPBOARD] = "clipboard",
> + [VD_AGENT_CLIPBOARD_SELECTION_PRIMARY] = "primary",
> + [VD_AGENT_CLIPBOARD_SELECTION_SECONDARY] = "secondary",
> +};
> +
> +static const char *type_name[] = {
> + [VD_AGENT_CLIPBOARD_NONE] = "none",
> + [VD_AGENT_CLIPBOARD_UTF8_TEXT] = "text",
> + [VD_AGENT_CLIPBOARD_IMAGE_PNG] = "png",
> + [VD_AGENT_CLIPBOARD_IMAGE_BMP] = "bmp",
> + [VD_AGENT_CLIPBOARD_IMAGE_TIFF] = "tiff",
> + [VD_AGENT_CLIPBOARD_IMAGE_JPG] = "jpg",
> +#if 0
> + [VD_AGENT_CLIPBOARD_FILE_LIST] = "files",
> +#endif
> +};
> +
> #define GET_NAME(_m, _v) \
> (((_v) < ARRAY_SIZE(_m) && (_m[_v])) ? (_m[_v]) : "???")
>
> @@ -147,6 +173,10 @@ static void vdagent_send_caps(VDAgentChardev *vd)
> if (vd->mouse) {
> caps->caps[0] |= (1 << VD_AGENT_CAP_MOUSE_STATE);
> }
> + if (vd->clipboard) {
> + caps->caps[0] |= (1 << VD_AGENT_CAP_CLIPBOARD_BY_DEMAND);
> + caps->caps[0] |= (1 << VD_AGENT_CAP_CLIPBOARD_SELECTION);
> + }
>
> vdagent_send_msg(vd, msg);
> }
> @@ -247,6 +277,243 @@ static QemuInputHandler vdagent_mouse_handler = {
> .sync = vdagent_pointer_sync,
> };
>
> +/* ------------------------------------------------------------------ */
> +/* clipboard */
> +
> +static bool have_clipboard(VDAgentChardev *vd)
> +{
> + return vd->clipboard &&
> + (vd->caps & (1 << VD_AGENT_CAP_CLIPBOARD_BY_DEMAND));
> +}
> +
> +static bool have_selection(VDAgentChardev *vd)
> +{
> + return vd->caps & (1 << VD_AGENT_CAP_CLIPBOARD_SELECTION);
> +}
> +
> +static uint32_t type_qemu_to_vdagent(enum QemuClipboardType type)
> +{
> + switch (type) {
> + case QEMU_CLIPBOARD_TYPE_TEXT:
> + return VD_AGENT_CLIPBOARD_UTF8_TEXT;
> + default:
> + return VD_AGENT_CLIPBOARD_NONE;
> + }
> +}
> +
> +static void vdagent_send_clipboard_grab(VDAgentChardev *vd,
> + QemuClipboardInfo *info)
> +{
> + g_autofree VDAgentMessage *msg = g_malloc0(sizeof(VDAgentMessage) +
> + sizeof(uint32_t) *
> (QEMU_CLIPBOARD_TYPE__COUNT + 1));
> + uint8_t *s = msg->data;
> + uint32_t *data = (uint32_t *)msg->data;
> + uint32_t q, type;
> +
> + if (have_selection(vd)) {
> + *s = info->selection;
> + data++;
> + msg->size += sizeof(uint32_t);
> + } else if (info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) {
> + return;
> + }
> +
> + for (q = 0; q < QEMU_CLIPBOARD_TYPE__COUNT; q++) {
> + type = type_qemu_to_vdagent(q);
> + if (type != VD_AGENT_CLIPBOARD_NONE && info->types[q].available) {
> + *data = type;
> + data++;
> + msg->size += sizeof(uint32_t);
> + }
> + }
> +
> + msg->type = VD_AGENT_CLIPBOARD_GRAB;
> + vdagent_send_msg(vd, msg);
> +}
> +
> +static void vdagent_send_clipboard_data(VDAgentChardev *vd,
> + QemuClipboardInfo *info,
> + QemuClipboardType type)
> +{
> + g_autofree VDAgentMessage *msg = g_malloc0(sizeof(VDAgentMessage) +
> + sizeof(uint32_t) * 2 +
> + info->types[type].size);
> +
> + uint8_t *s = msg->data;
> + uint32_t *data = (uint32_t *)msg->data;
> +
> + if (have_selection(vd)) {
> + *s = info->selection;
> + data++;
> + msg->size += sizeof(uint32_t);
> + } else if (info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) {
> + return;
> + }
> +
> + *data = type_qemu_to_vdagent(type);
> + data++;
> + msg->size += sizeof(uint32_t);
> +
> + memcpy(data, info->types[type].data, info->types[type].size);
> + msg->size += info->types[type].size;
> +
> + msg->type = VD_AGENT_CLIPBOARD;
> + vdagent_send_msg(vd, msg);
> +}
> +
> +static void vdagent_clipboard_notify(Notifier *notifier, void *data)
> +{
> + VDAgentChardev *vd = container_of(notifier, VDAgentChardev,
> cbpeer.update);
> + QemuClipboardInfo *info = data;
> + QemuClipboardSelection s = info->selection;
> + QemuClipboardType type;
> + bool self_update = info->owner == &vd->cbpeer;
> +
> + if (info != vd->cbinfo[s]) {
> + qemu_clipboard_info_put(vd->cbinfo[s]);
> + vd->cbinfo[s] = qemu_clipboard_info_get(info);
> + vd->cbpending[s] = 0;
> + if (!self_update) {
> + vdagent_send_clipboard_grab(vd, info);
> + }
> + return;
> + }
> +
> + if (self_update) {
> + return;
> + }
> +
> + for (type = 0; type < QEMU_CLIPBOARD_TYPE__COUNT; type++) {
> + if (vd->cbpending[s] & (1 << type)) {
> + vd->cbpending[s] &= ~(1 << type);
> + vdagent_send_clipboard_data(vd, info, type);
> + }
> + }
> +}
> +
> +static void vdagent_clipboard_request(QemuClipboardInfo *info,
> + QemuClipboardType qtype)
> +{
> + VDAgentChardev *vd = container_of(info->owner, VDAgentChardev,
> cbpeer);
> + g_autofree VDAgentMessage *msg = g_malloc0(sizeof(VDAgentMessage) +
> + sizeof(uint32_t) * 2);
> + uint32_t type = type_qemu_to_vdagent(qtype);
> + uint8_t *s = msg->data;
> + uint32_t *data = (uint32_t *)msg->data;
> +
> + if (type == VD_AGENT_CLIPBOARD_NONE) {
> + return;
> + }
> +
> + if (have_selection(vd)) {
> + *s = info->selection;
> + data++;
> + msg->size += sizeof(uint32_t);
> + }
> +
> + *data = type;
> + msg->size += sizeof(uint32_t);
> +
> + msg->type = VD_AGENT_CLIPBOARD_REQUEST;
> + vdagent_send_msg(vd, msg);
> +}
> +
> +static void vdagent_chr_recv_clipboard(VDAgentChardev *vd, VDAgentMessage
> *msg)
> +{
> + uint8_t s = VD_AGENT_CLIPBOARD_SELECTION_CLIPBOARD;
> + uint32_t size = msg->size;
> + void *data = msg->data;
> + QemuClipboardInfo *info;
> + QemuClipboardType type;
> +
> + if (have_selection(vd)) {
> + if (size < 4) {
> + return;
> + }
> + s = *(uint8_t *)data;
> + if (s >= QEMU_CLIPBOARD_SELECTION__COUNT) {
> + return;
> + }
> + data += 4;
> + size -= 4;
> + }
> +
> + switch (msg->type) {
> + case VD_AGENT_CLIPBOARD_GRAB:
> + trace_vdagent_cb_grab_selection(GET_NAME(sel_name, s));
> + info = qemu_clipboard_info_new(&vd->cbpeer, s);
> + if (size > sizeof(uint32_t) * 10) {
> + /*
> + * spice has 6 types as of 2021. Limiting to 10 entries
> + * so we we have some wiggle room.
> + */
> + return;
> + }
> + while (size >= sizeof(uint32_t)) {
> + trace_vdagent_cb_grab_type(GET_NAME(type_name, *(uint32_t
> *)data));
> + switch (*(uint32_t *)data) {
> + case VD_AGENT_CLIPBOARD_UTF8_TEXT:
> + info->types[QEMU_CLIPBOARD_TYPE_TEXT].available = true;
> + break;
> + default:
> + break;
> + }
> + data += sizeof(uint32_t);
> + size -= sizeof(uint32_t);
> + }
> + qemu_clipboard_update(info);
> + qemu_clipboard_info_put(info);
> + break;
> + case VD_AGENT_CLIPBOARD_REQUEST:
> + if (size < sizeof(uint32_t)) {
> + return;
> + }
> + switch (*(uint32_t *)data) {
> + case VD_AGENT_CLIPBOARD_UTF8_TEXT:
> + type = QEMU_CLIPBOARD_TYPE_TEXT;
> + break;
> + default:
> + return;
> + }
> + if (vd->cbinfo[s] &&
> + vd->cbinfo[s]->types[type].available &&
> + vd->cbinfo[s]->owner != &vd->cbpeer) {
> + if (vd->cbinfo[s]->types[type].data) {
> + vdagent_send_clipboard_data(vd, vd->cbinfo[s], type);
> + } else {
> + vd->cbpending[s] |= (1 << type);
> + qemu_clipboard_request(vd->cbinfo[s], type);
> + }
> + }
> + break;
> + case VD_AGENT_CLIPBOARD: /* data */
> + if (size < sizeof(uint32_t)) {
> + return;
> + }
> + switch (*(uint32_t *)data) {
> + case VD_AGENT_CLIPBOARD_UTF8_TEXT:
> + type = QEMU_CLIPBOARD_TYPE_TEXT;
> + break;
> + default:
> + return;
> + }
> + data += 4;
> + size -= 4;
> + qemu_clipboard_set_data(&vd->cbpeer, vd->cbinfo[s], type,
> + size, data, true);
> + break;
> + case VD_AGENT_CLIPBOARD_RELEASE: /* data */
> + if (vd->cbinfo[s] &&
> + vd->cbinfo[s]->owner == &vd->cbpeer) {
> + /* set empty clipboard info */
> + info = qemu_clipboard_info_new(NULL, s);
> + qemu_clipboard_update(info);
> + qemu_clipboard_info_put(info);
> + }
> + break;
> + }
> +}
> +
> /* ------------------------------------------------------------------ */
> /* chardev backend */
>
> @@ -263,6 +530,11 @@ static void vdagent_chr_open(Chardev *chr,
> vd->mouse = cfg->mouse;
> }
>
> + vd->clipboard = VDAGENT_CLIPBOARD_DEFAULT;
> + if (cfg->has_clipboard) {
> + vd->clipboard = cfg->clipboard;
> + }
> +
> if (vd->mouse) {
> vd->mouse_hs = qemu_input_handler_register(&vd->mouse_dev,
>
> &vdagent_mouse_handler);
> @@ -294,6 +566,12 @@ static void vdagent_chr_recv_caps(VDAgentChardev *vd,
> VDAgentMessage *msg)
> if (have_mouse(vd) && vd->mouse_hs) {
> qemu_input_handler_activate(vd->mouse_hs);
> }
> + if (have_clipboard(vd) && vd->cbpeer.update.notify == NULL) {
> + vd->cbpeer.name = "vdagent";
> + vd->cbpeer.update.notify = vdagent_clipboard_notify;
> + vd->cbpeer.request = vdagent_clipboard_request;
> + qemu_clipboard_peer_register(&vd->cbpeer);
> + }
> }
>
> static void vdagent_chr_recv_msg(VDAgentChardev *vd, VDAgentMessage *msg)
> @@ -304,6 +582,14 @@ static void vdagent_chr_recv_msg(VDAgentChardev *vd,
> VDAgentMessage *msg)
> case VD_AGENT_ANNOUNCE_CAPABILITIES:
> vdagent_chr_recv_caps(vd, msg);
> break;
> + case VD_AGENT_CLIPBOARD:
> + case VD_AGENT_CLIPBOARD_GRAB:
> + case VD_AGENT_CLIPBOARD_REQUEST:
> + case VD_AGENT_CLIPBOARD_RELEASE:
> + if (have_clipboard(vd)) {
> + vdagent_chr_recv_clipboard(vd, msg);
> + }
> + break;
> default:
> break;
> }
> @@ -419,6 +705,10 @@ static void vdagent_chr_set_fe_open(struct Chardev
> *chr, int fe_open)
> if (vd->mouse_hs) {
> qemu_input_handler_deactivate(vd->mouse_hs);
> }
> + if (vd->cbpeer.update.notify) {
> + qemu_clipboard_peer_unregister(&vd->cbpeer);
> + memset(&vd->cbpeer, 0, sizeof(vd->cbpeer));
> + }
> return;
> }
>
> @@ -435,6 +725,8 @@ static void vdagent_chr_parse(QemuOpts *opts,
> ChardevBackend *backend,
> qemu_chr_parse_common(opts, qapi_ChardevVDAgent_base(cfg));
> cfg->has_mouse = true;
> cfg->mouse = qemu_opt_get_bool(opts, "mouse", VDAGENT_MOUSE_DEFAULT);
> + cfg->has_clipboard = true;
> + cfg->clipboard = qemu_opt_get_bool(opts, "clipboard",
> VDAGENT_CLIPBOARD_DEFAULT);
> }
>
> /* ------------------------------------------------------------------ */
> diff --git a/qapi/char.json b/qapi/char.json
> index 880aa8f73333..a89017c41a63 100644
> --- a/qapi/char.json
> +++ b/qapi/char.json
> @@ -396,12 +396,14 @@
> # Configuration info for vdagent.
> #
> # @mouse: enable/disable mouse, default is enabled.
> +# @clipboard: enable/disable clipboard, default is disabled.
> #
> # Since: 6.1
> #
> ##
> { 'struct': 'ChardevVDAgent',
> - 'data': { '*mouse': 'bool' },
> + 'data': { '*mouse': 'bool',
> + '*clipboard': 'bool' },
> 'base': 'ChardevCommon',
> 'if': 'defined(CONFIG_SPICE_PROTOCOL)' }
>
> diff --git a/ui/trace-events b/ui/trace-events
> index c34cffb0452b..c86542e2b69b 100644
> --- a/ui/trace-events
> +++ b/ui/trace-events
> @@ -132,3 +132,5 @@ vdagent_send(const char *name) "msg %s"
> vdagent_recv_chunk(uint32_t size) "size %d"
> vdagent_recv_msg(const char *name, uint32_t size) "msg %s, size %d"
> vdagent_peer_cap(const char *name) "cap %s"
> +vdagent_cb_grab_selection(const char *name) "selection %s"
> +vdagent_cb_grab_type(const char *name) "type %s"
> --
> 2.30.2
>
>
[-- Attachment #2: Type: text/html, Size: 19076 bytes --]
next prev parent reply other threads:[~2021-04-27 9:22 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-23 8:33 [PATCH v4 0/9] ui: add vdagent implementation and clipboard support Gerd Hoffmann
2021-04-23 8:33 ` [PATCH v4 1/9] build: add separate spice-protocol config option Gerd Hoffmann
2021-04-27 8:29 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 2/9] ui: add clipboard infrastructure Gerd Hoffmann
2021-04-27 8:37 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 3/9] ui: add clipboard documentation Gerd Hoffmann
2021-04-27 8:39 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 4/9] ui/vdagent: core infrastructure Gerd Hoffmann
2021-04-23 9:32 ` Markus Armbruster
2021-04-27 8:50 ` Marc-André Lureau
2021-04-27 9:17 ` Marc-André Lureau
2021-04-27 15:04 ` Gerd Hoffmann
2021-04-27 15:42 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 5/9] ui/vdagent: add mouse support Gerd Hoffmann
2021-04-27 8:56 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 6/9] ui/vdagent: add clipboard support Gerd Hoffmann
2021-04-27 9:20 ` Marc-André Lureau [this message]
2021-04-23 8:33 ` [PATCH v4 7/9] ui/vnc: " Gerd Hoffmann
2021-04-27 9:26 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 8/9] ui/gtk: move struct GtkDisplayState to ui/gtk.h Gerd Hoffmann
2021-04-27 9:34 ` Marc-André Lureau
2021-04-23 8:33 ` [PATCH v4 9/9] ui/gtk: add clipboard support Gerd Hoffmann
2021-04-23 8:48 ` [PATCH v4 0/9] ui: add vdagent implementation and " no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAMxuvawnyJ9xXVLp0HPrv6xYP7kRB3Qr-=qXU7mqDA0yo0yStA@mail.gmail.com' \
--to=marcandre.lureau@redhat.com \
--cc=armbru@redhat.com \
--cc=kraxel@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).