ui: reject extended clipboard message if not activated
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 15 Jan 2024 09:51:19 +0000 (09:51 +0000)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Fri, 16 Feb 2024 13:27:22 +0000 (17:27 +0400)
The extended clipboard message protocol requires that the client
activate the extension by requesting a psuedo encoding. If this
is not done, then any extended clipboard messages from the client
should be considered invalid and the client dropped.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20240115095119.654271-1-berrange@redhat.com>

ui/vnc.c

index 3db87fd89ca4535d5a5ba067dbfba611c9a32931..af20d245341fb5219b678b52107e8f609239ae18 100644 (file)
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -2445,6 +2445,11 @@ static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len)
         }
 
         if (read_s32(data, 4) < 0) {
+            if (!vnc_has_feature(vs, VNC_FEATURE_CLIPBOARD_EXT)) {
+                error_report("vnc: extended clipboard message while disabled");
+                vnc_client_error(vs);
+                break;
+            }
             if (dlen < 4) {
                 error_report("vnc: malformed payload (header less than 4 bytes)"
                              " in extended clipboard pseudo-encoding.");