|
|
9bac43 |
From 9fb29da8bb32eeead15ac4038cb9cbfca11066f5 Mon Sep 17 00:00:00 2001
|
|
|
9bac43 |
From: "Daniel P. Berrange" <berrange@redhat.com>
|
|
|
9bac43 |
Date: Wed, 20 Dec 2017 17:56:51 +0100
|
|
|
9bac43 |
Subject: [PATCH 11/42] io: Reply to ping frames
|
|
|
9bac43 |
|
|
|
9bac43 |
RH-Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
9bac43 |
Message-id: <20171220175702.29663-10-berrange@redhat.com>
|
|
|
9bac43 |
Patchwork-id: 78462
|
|
|
9bac43 |
O-Subject: [RHV-7.5 qemu-kvm-rhev PATCH v2 09/20] io: Reply to ping frames
|
|
|
9bac43 |
Bugzilla: 1518649
|
|
|
9bac43 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
From: Brandon Carpenter <brandon.carpenter@cypherpath.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
Add an immediate ping reply (pong) to the outgoing stream when a ping
|
|
|
9bac43 |
is received. Unsolicited pongs are ignored.
|
|
|
9bac43 |
|
|
|
9bac43 |
Signed-off-by: Brandon Carpenter <brandon.carpenter@cypherpath.com>
|
|
|
9bac43 |
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
|
|
|
9bac43 |
(cherry picked from commit 268a53f50de795481dd73ffd0e0c1339ad3dc44b)
|
|
|
9bac43 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
9bac43 |
---
|
|
|
9bac43 |
include/io/channel-websock.h | 1 +
|
|
|
9bac43 |
io/channel-websock.c | 66 +++++++++++++++++++++++++++++---------------
|
|
|
9bac43 |
2 files changed, 45 insertions(+), 22 deletions(-)
|
|
|
9bac43 |
|
|
|
9bac43 |
diff --git a/include/io/channel-websock.h b/include/io/channel-websock.h
|
|
|
9bac43 |
index 7c89655..ff32d86 100644
|
|
|
9bac43 |
--- a/include/io/channel-websock.h
|
|
|
9bac43 |
+++ b/include/io/channel-websock.h
|
|
|
9bac43 |
@@ -60,6 +60,7 @@ struct QIOChannelWebsock {
|
|
|
9bac43 |
Buffer encoutput;
|
|
|
9bac43 |
Buffer rawinput;
|
|
|
9bac43 |
Buffer rawoutput;
|
|
|
9bac43 |
+ Buffer ping_reply;
|
|
|
9bac43 |
size_t payload_remain;
|
|
|
9bac43 |
QIOChannelWebsockMask mask;
|
|
|
9bac43 |
guint io_tag;
|
|
|
9bac43 |
diff --git a/io/channel-websock.c b/io/channel-websock.c
|
|
|
9bac43 |
index bfe4008..b6fc0c9 100644
|
|
|
9bac43 |
--- a/io/channel-websock.c
|
|
|
9bac43 |
+++ b/io/channel-websock.c
|
|
|
9bac43 |
@@ -573,7 +573,8 @@ static gboolean qio_channel_websock_handshake_io(QIOChannel *ioc,
|
|
|
9bac43 |
}
|
|
|
9bac43 |
|
|
|
9bac43 |
|
|
|
9bac43 |
-static void qio_channel_websock_encode(QIOChannelWebsock *ioc)
|
|
|
9bac43 |
+static void qio_channel_websock_encode_buffer(Buffer *output,
|
|
|
9bac43 |
+ uint8_t opcode, Buffer *buffer)
|
|
|
9bac43 |
{
|
|
|
9bac43 |
size_t header_size;
|
|
|
9bac43 |
union {
|
|
|
9bac43 |
@@ -581,33 +582,37 @@ static void qio_channel_websock_encode(QIOChannelWebsock *ioc)
|
|
|
9bac43 |
QIOChannelWebsockHeader ws;
|
|
|
9bac43 |
} header;
|
|
|
9bac43 |
|
|
|
9bac43 |
- if (!ioc->rawoutput.offset) {
|
|
|
9bac43 |
- return;
|
|
|
9bac43 |
- }
|
|
|
9bac43 |
-
|
|
|
9bac43 |
header.ws.b0 = QIO_CHANNEL_WEBSOCK_HEADER_FIELD_FIN |
|
|
|
9bac43 |
- (QIO_CHANNEL_WEBSOCK_OPCODE_BINARY_FRAME &
|
|
|
9bac43 |
- QIO_CHANNEL_WEBSOCK_HEADER_FIELD_OPCODE);
|
|
|
9bac43 |
- if (ioc->rawoutput.offset <
|
|
|
9bac43 |
- QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_THRESHOLD_7_BIT) {
|
|
|
9bac43 |
- header.ws.b1 = (uint8_t)ioc->rawoutput.offset;
|
|
|
9bac43 |
+ (opcode & QIO_CHANNEL_WEBSOCK_HEADER_FIELD_OPCODE);
|
|
|
9bac43 |
+ if (buffer->offset < QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_THRESHOLD_7_BIT) {
|
|
|
9bac43 |
+ header.ws.b1 = (uint8_t)buffer->offset;
|
|
|
9bac43 |
header_size = QIO_CHANNEL_WEBSOCK_HEADER_LEN_7_BIT;
|
|
|
9bac43 |
- } else if (ioc->rawoutput.offset <
|
|
|
9bac43 |
+ } else if (buffer->offset <
|
|
|
9bac43 |
QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_THRESHOLD_16_BIT) {
|
|
|
9bac43 |
header.ws.b1 = QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_MAGIC_16_BIT;
|
|
|
9bac43 |
- header.ws.u.s16.l16 = cpu_to_be16((uint16_t)ioc->rawoutput.offset);
|
|
|
9bac43 |
+ header.ws.u.s16.l16 = cpu_to_be16((uint16_t)buffer->offset);
|
|
|
9bac43 |
header_size = QIO_CHANNEL_WEBSOCK_HEADER_LEN_16_BIT;
|
|
|
9bac43 |
} else {
|
|
|
9bac43 |
header.ws.b1 = QIO_CHANNEL_WEBSOCK_PAYLOAD_LEN_MAGIC_64_BIT;
|
|
|
9bac43 |
- header.ws.u.s64.l64 = cpu_to_be64(ioc->rawoutput.offset);
|
|
|
9bac43 |
+ header.ws.u.s64.l64 = cpu_to_be64(buffer->offset);
|
|
|
9bac43 |
header_size = QIO_CHANNEL_WEBSOCK_HEADER_LEN_64_BIT;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
header_size -= QIO_CHANNEL_WEBSOCK_HEADER_LEN_MASK;
|
|
|
9bac43 |
|
|
|
9bac43 |
- buffer_reserve(&ioc->encoutput, header_size + ioc->rawoutput.offset);
|
|
|
9bac43 |
- buffer_append(&ioc->encoutput, header.buf, header_size);
|
|
|
9bac43 |
- buffer_append(&ioc->encoutput, ioc->rawoutput.buffer,
|
|
|
9bac43 |
- ioc->rawoutput.offset);
|
|
|
9bac43 |
+ buffer_reserve(output, header_size + buffer->offset);
|
|
|
9bac43 |
+ buffer_append(output, header.buf, header_size);
|
|
|
9bac43 |
+ buffer_append(output, buffer->buffer, buffer->offset);
|
|
|
9bac43 |
+}
|
|
|
9bac43 |
+
|
|
|
9bac43 |
+
|
|
|
9bac43 |
+static void qio_channel_websock_encode(QIOChannelWebsock *ioc)
|
|
|
9bac43 |
+{
|
|
|
9bac43 |
+ if (!ioc->rawoutput.offset) {
|
|
|
9bac43 |
+ return;
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
+ qio_channel_websock_encode_buffer(
|
|
|
9bac43 |
+ &ioc->encoutput, QIO_CHANNEL_WEBSOCK_OPCODE_BINARY_FRAME,
|
|
|
9bac43 |
+ &ioc->rawoutput);
|
|
|
9bac43 |
buffer_reset(&ioc->rawoutput);
|
|
|
9bac43 |
}
|
|
|
9bac43 |
|
|
|
9bac43 |
@@ -652,7 +657,7 @@ static int qio_channel_websock_decode_header(QIOChannelWebsock *ioc,
|
|
|
9bac43 |
/* Websocket frame sanity check:
|
|
|
9bac43 |
* * Fragmentation is only supported for binary frames.
|
|
|
9bac43 |
* * All frames sent by a client MUST be masked.
|
|
|
9bac43 |
- * * Only binary encoding is supported.
|
|
|
9bac43 |
+ * * Only binary and ping/pong encoding is supported.
|
|
|
9bac43 |
*/
|
|
|
9bac43 |
if (!fin) {
|
|
|
9bac43 |
if (opcode != QIO_CHANNEL_WEBSOCK_OPCODE_BINARY_FRAME) {
|
|
|
9bac43 |
@@ -713,6 +718,11 @@ static int qio_channel_websock_decode_payload(QIOChannelWebsock *ioc,
|
|
|
9bac43 |
* for purpose of unmasking, except at end of payload
|
|
|
9bac43 |
*/
|
|
|
9bac43 |
if (ioc->encinput.offset < ioc->payload_remain) {
|
|
|
9bac43 |
+ /* Wait for the entire payload before processing control frames
|
|
|
9bac43 |
+ * because the payload will most likely be echoed back. */
|
|
|
9bac43 |
+ if (ioc->opcode & QIO_CHANNEL_WEBSOCK_CONTROL_OPCODE_MASK) {
|
|
|
9bac43 |
+ return QIO_CHANNEL_ERR_BLOCK;
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
payload_len = ioc->encinput.offset - (ioc->encinput.offset % 4);
|
|
|
9bac43 |
} else {
|
|
|
9bac43 |
payload_len = ioc->payload_remain;
|
|
|
9bac43 |
@@ -735,13 +745,18 @@ static int qio_channel_websock_decode_payload(QIOChannelWebsock *ioc,
|
|
|
9bac43 |
}
|
|
|
9bac43 |
}
|
|
|
9bac43 |
|
|
|
9bac43 |
- /* Drop the payload of ping/pong packets */
|
|
|
9bac43 |
if (ioc->opcode == QIO_CHANNEL_WEBSOCK_OPCODE_BINARY_FRAME) {
|
|
|
9bac43 |
if (payload_len) {
|
|
|
9bac43 |
+ /* binary frames are passed on */
|
|
|
9bac43 |
buffer_reserve(&ioc->rawinput, payload_len);
|
|
|
9bac43 |
buffer_append(&ioc->rawinput, ioc->encinput.buffer, payload_len);
|
|
|
9bac43 |
}
|
|
|
9bac43 |
- }
|
|
|
9bac43 |
+ } else if (ioc->opcode == QIO_CHANNEL_WEBSOCK_OPCODE_PING) {
|
|
|
9bac43 |
+ /* ping frames produce an immediate reply */
|
|
|
9bac43 |
+ buffer_reset(&ioc->ping_reply);
|
|
|
9bac43 |
+ qio_channel_websock_encode_buffer(
|
|
|
9bac43 |
+ &ioc->ping_reply, QIO_CHANNEL_WEBSOCK_OPCODE_PONG, &ioc->encinput);
|
|
|
9bac43 |
+ } /* pong frames are ignored */
|
|
|
9bac43 |
|
|
|
9bac43 |
if (payload_len) {
|
|
|
9bac43 |
buffer_advance(&ioc->encinput, payload_len);
|
|
|
9bac43 |
@@ -799,6 +814,7 @@ static void qio_channel_websock_finalize(Object *obj)
|
|
|
9bac43 |
buffer_free(&ioc->encoutput);
|
|
|
9bac43 |
buffer_free(&ioc->rawinput);
|
|
|
9bac43 |
buffer_free(&ioc->rawoutput);
|
|
|
9bac43 |
+ buffer_free(&ioc->ping_reply);
|
|
|
9bac43 |
object_unref(OBJECT(ioc->master));
|
|
|
9bac43 |
if (ioc->io_tag) {
|
|
|
9bac43 |
g_source_remove(ioc->io_tag);
|
|
|
9bac43 |
@@ -855,7 +871,13 @@ static ssize_t qio_channel_websock_write_wire(QIOChannelWebsock *ioc,
|
|
|
9bac43 |
{
|
|
|
9bac43 |
ssize_t ret;
|
|
|
9bac43 |
ssize_t done = 0;
|
|
|
9bac43 |
- qio_channel_websock_encode(ioc);
|
|
|
9bac43 |
+
|
|
|
9bac43 |
+ /* ping replies take priority over binary data */
|
|
|
9bac43 |
+ if (!ioc->ping_reply.offset) {
|
|
|
9bac43 |
+ qio_channel_websock_encode(ioc);
|
|
|
9bac43 |
+ } else if (!ioc->encoutput.offset) {
|
|
|
9bac43 |
+ buffer_move_empty(&ioc->encoutput, &ioc->ping_reply);
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
|
|
|
9bac43 |
while (ioc->encoutput.offset > 0) {
|
|
|
9bac43 |
ret = qio_channel_write(ioc->master,
|
|
|
9bac43 |
@@ -930,7 +952,7 @@ static void qio_channel_websock_set_watch(QIOChannelWebsock *ioc)
|
|
|
9bac43 |
return;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
|
|
|
9bac43 |
- if (ioc->encoutput.offset) {
|
|
|
9bac43 |
+ if (ioc->encoutput.offset || ioc->ping_reply.offset) {
|
|
|
9bac43 |
cond |= G_IO_OUT;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
if (ioc->encinput.offset < QIO_CHANNEL_WEBSOCK_MAX_BUFFER &&
|
|
|
9bac43 |
--
|
|
|
9bac43 |
1.8.3.1
|
|
|
9bac43 |
|