1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
|
/* spice-server spicevmc passthrough channel code
Copyright (C) 2011 Red Hat, Inc.
Red Hat Authors:
Hans de Goede <hdegoede@redhat.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <cassert>
#include <cstring>
#ifdef USE_LZ4
#include <lz4.h>
#endif
#include <common/generated_server_marshallers.h>
#include "char-device.h"
#include "red-channel.h"
#include "red-channel-client.h"
#include "reds.h"
#include "migration-protocol.h"
/* 64K should be enough for all but the largest writes + 32 bytes hdr */
#define BUF_SIZE (64 * 1024 + 32)
#define COMPRESS_THRESHOLD 1000
// limit of the queued data, at this limit we stop reading from device to
// avoid DoS
#define QUEUED_DATA_LIMIT (1024*1024)
enum {
RED_PIPE_ITEM_TYPE_SPICEVMC_DATA = RED_PIPE_ITEM_TYPE_CHANNEL_BASE,
RED_PIPE_ITEM_TYPE_SPICEVMC_MIGRATE_DATA,
RED_PIPE_ITEM_TYPE_PORT_INIT,
RED_PIPE_ITEM_TYPE_PORT_EVENT,
};
struct RedVmcChannel;
class VmcChannelClient;
struct RedVmcPipeItem: public RedPipeItemNum<RED_PIPE_ITEM_TYPE_SPICEVMC_DATA> {
SpiceDataCompressionType type;
uint32_t uncompressed_data_size = 0;
/* writes which don't fit this will get split, this is not a problem */
uint8_t buf[BUF_SIZE];
uint32_t buf_used = 0;
};
struct RedCharDeviceSpiceVmc: public RedCharDevice
{
RedCharDeviceSpiceVmc(SpiceCharDeviceInstance *sin, RedsState *reds, RedVmcChannel *channel);
~RedCharDeviceSpiceVmc() override;
RedPipeItemPtr read_one_msg_from_device() override;
void remove_client(RedCharDeviceClientOpaque *opaque) override;
void on_free_self_token() override;
void port_event(uint8_t event) override;
red::shared_ptr<RedVmcChannel> channel;
};
static void spicevmc_red_channel_queue_data(RedVmcChannel *channel, red::shared_ptr<RedVmcPipeItem>&& item);
struct RedVmcChannel: public RedChannel
{
RedVmcChannel(RedsState *reds, uint32_t type, uint32_t id);
~RedVmcChannel() override;
void on_connect(RedClient *client, RedStream *stream, int migration,
RedChannelCapabilities *caps) override;
VmcChannelClient *rcc;
RedCharDevice *chardev; /* weak */
SpiceCharDeviceInstance *chardev_sin;
red::shared_ptr<RedVmcPipeItem> pipe_item;
RedCharDeviceWriteBuffer *recv_from_client_buf;
uint8_t port_opened;
uint32_t queued_data;
RedStatCounter in_data;
RedStatCounter in_compressed;
RedStatCounter in_decompressed;
RedStatCounter out_data;
RedStatCounter out_compressed;
RedStatCounter out_uncompressed;
};
class VmcChannelClient final: public RedChannelClient
{
using RedChannelClient::RedChannelClient;
public:
RedVmcChannel* get_channel()
{
return static_cast<RedVmcChannel*>(RedChannelClient::get_channel());
}
protected:
uint8_t *alloc_recv_buf(uint16_t type, uint32_t size) override;
void release_recv_buf(uint16_t type, uint32_t size, uint8_t *msg) override;
void on_disconnect() override;
bool handle_message(uint16_t type, uint32_t size, void *msg) override;
void send_item(RedPipeItem *item) override;
bool handle_migrate_data(uint32_t size, void *message) override;
void handle_migrate_flush_mark() override;
};
static VmcChannelClient *
vmc_channel_client_create(RedChannel *channel, RedClient *client,
RedStream *stream,
RedChannelCapabilities *caps);
RedVmcChannel::RedVmcChannel(RedsState *reds, uint32_t type, uint32_t id):
RedChannel(reds, type, id, RedChannel::MigrateAll)
{
init_stat_node(nullptr, "spicevmc");
const RedStatNode *stat = get_stat_node();
stat_init_counter(&in_data, reds, stat, "in_data", TRUE);
stat_init_counter(&in_compressed, reds, stat, "in_compressed", TRUE);
stat_init_counter(&in_decompressed, reds, stat, "in_decompressed", TRUE);
stat_init_counter(&out_data, reds, stat, "out_data", TRUE);
stat_init_counter(&out_compressed, reds, stat, "out_compressed", TRUE);
stat_init_counter(&out_uncompressed, reds, stat, "out_uncompressed", TRUE);
#ifdef USE_LZ4
set_cap(SPICE_SPICEVMC_CAP_DATA_COMPRESS_LZ4);
#endif
reds_register_channel(reds, this);
}
RedVmcChannel::~RedVmcChannel()
{
RedCharDevice::write_buffer_release(chardev, &recv_from_client_buf);
}
static red::shared_ptr<RedVmcChannel> red_vmc_channel_new(RedsState *reds, uint8_t channel_type)
{
switch (channel_type) {
case SPICE_CHANNEL_USBREDIR:
case SPICE_CHANNEL_WEBDAV:
case SPICE_CHANNEL_PORT:
break;
default:
g_error("Unsupported channel_type for red_vmc_channel_new(): %u", channel_type);
return red::shared_ptr<RedVmcChannel>();
}
int id = reds_get_free_channel_id(reds, channel_type);
if (id < 0) {
g_warning("Free ID not found creating new VMC channel");
return red::shared_ptr<RedVmcChannel>();
}
return red::make_shared<RedVmcChannel>(reds, channel_type, id);
}
struct RedPortInitPipeItem: public RedPipeItemNum<RED_PIPE_ITEM_TYPE_PORT_INIT> {
RedPortInitPipeItem(const char *name, uint8_t opened);
red::glib_unique_ptr<char> name;
uint8_t opened;
};
struct RedPortEventPipeItem: public RedPipeItemNum<RED_PIPE_ITEM_TYPE_PORT_EVENT> {
uint8_t event;
};
/* msg_item -- the current pipe item with the uncompressed data
* This function returns:
* - false upon failure.
* - true if compression succeeded
*/
static bool
try_compress_lz4(RedVmcChannel *channel, red::shared_ptr<RedVmcPipeItem>& msg_item)
{
#ifdef USE_LZ4
int compressed_data_count;
auto n = msg_item->buf_used;
if (red_stream_get_family(channel->rcc->get_stream()) == AF_UNIX) {
/* AF_LOCAL - data will not be compressed */
return false;
}
if (n <= COMPRESS_THRESHOLD) {
/* n <= threshold - data will not be compressed */
return false;
}
if (!channel->rcc->test_remote_cap(SPICE_SPICEVMC_CAP_DATA_COMPRESS_LZ4)) {
/* Client doesn't have compression cap - data will not be compressed */
return false;
}
auto msg_item_compressed = red::make_shared<RedVmcPipeItem>();
compressed_data_count =
LZ4_compress_default(reinterpret_cast<char *>(&msg_item->buf),
reinterpret_cast<char *>(&msg_item_compressed->buf), n, BUF_SIZE);
if (compressed_data_count > 0 && compressed_data_count < n) {
stat_inc_counter(channel->out_uncompressed, n);
stat_inc_counter(channel->out_compressed, compressed_data_count);
msg_item_compressed->type = SPICE_DATA_COMPRESSION_TYPE_LZ4;
msg_item_compressed->uncompressed_data_size = n;
msg_item_compressed->buf_used = compressed_data_count;
msg_item = std::move(msg_item_compressed);
return true;
}
/* LZ4 compression failed or did non compress, fallback a non-compressed data is to be sent */
#endif
return false;
}
RedPipeItemPtr
RedCharDeviceSpiceVmc::read_one_msg_from_device()
{
red::shared_ptr<RedVmcPipeItem> msg_item;
int n;
if (!channel->rcc || channel->queued_data >= QUEUED_DATA_LIMIT) {
return RedPipeItemPtr();
}
if (!channel->pipe_item) {
msg_item = red::make_shared<RedVmcPipeItem>();
msg_item->type = SPICE_DATA_COMPRESSION_TYPE_NONE;
} else {
spice_assert(channel->pipe_item->buf_used == 0);
msg_item = std::move(channel->pipe_item);
}
n = read(msg_item->buf, sizeof(msg_item->buf));
if (n > 0) {
spice_debug("read from dev %d", n);
msg_item->uncompressed_data_size = n;
msg_item->buf_used = n;
if (!try_compress_lz4(channel.get(), msg_item)) {
stat_inc_counter(channel->out_data, n);
}
spicevmc_red_channel_queue_data(channel.get(), std::move(msg_item));
return RedPipeItemPtr();
}
channel->pipe_item = std::move(msg_item);
return RedPipeItemPtr();
}
RedPortInitPipeItem::RedPortInitPipeItem(const char *init_name, uint8_t init_opened):
name(g_strdup(init_name)),
opened(init_opened)
{
}
static void spicevmc_port_send_init(VmcChannelClient *rcc)
{
RedVmcChannel *channel = rcc->get_channel();
SpiceCharDeviceInstance *sin = channel->chardev_sin;
auto item = red::make_shared<RedPortInitPipeItem>(sin->portname, channel->port_opened);
rcc->pipe_add_push(item);
}
static void spicevmc_port_send_event(RedChannelClient *rcc, uint8_t event)
{
auto item = red::make_shared<RedPortEventPipeItem>();
item->event = event;
rcc->pipe_add_push(item);
}
void RedCharDeviceSpiceVmc::remove_client(RedCharDeviceClientOpaque *opaque)
{
auto client = reinterpret_cast<RedClient *>(opaque);
spice_assert(channel->rcc &&
channel->rcc->get_client() == client);
channel->rcc->shutdown();
}
void VmcChannelClient::on_disconnect()
{
RedVmcChannel *channel;
SpiceCharDeviceInterface *sif;
RedClient *client = get_client();
channel = get_channel();
/* partial message which wasn't pushed to device */
RedCharDevice::write_buffer_release(channel->chardev,
&channel->recv_from_client_buf);
if (channel->chardev) {
auto opaque_client = reinterpret_cast<RedCharDeviceClientOpaque *>(client);
if (channel->chardev->client_exists(opaque_client)) {
channel->chardev->client_remove(opaque_client);
} else {
red_channel_warning(channel,
"client %p have already been removed from char dev %p",
client, channel->chardev);
}
}
channel->rcc = nullptr;
sif = spice_char_device_get_interface(channel->chardev_sin);
if (sif->state) {
sif->state(channel->chardev_sin, 0);
}
}
void VmcChannelClient::handle_migrate_flush_mark()
{
pipe_add_type(RED_PIPE_ITEM_TYPE_SPICEVMC_MIGRATE_DATA);
}
bool VmcChannelClient::handle_migrate_data(uint32_t size, void *message)
{
SpiceMigrateDataHeader *header;
SpiceMigrateDataSpiceVmc *mig_data;
RedVmcChannel *channel;
channel = get_channel();
header = static_cast<SpiceMigrateDataHeader *>(message);
mig_data = reinterpret_cast<SpiceMigrateDataSpiceVmc *>(header + 1);
spice_assert(size >= sizeof(SpiceMigrateDataHeader) + sizeof(SpiceMigrateDataSpiceVmc));
if (!migration_protocol_validate_header(header,
SPICE_MIGRATE_DATA_SPICEVMC_MAGIC,
SPICE_MIGRATE_DATA_SPICEVMC_VERSION)) {
spice_error("bad header");
return FALSE;
}
return channel->chardev->restore(&mig_data->base);
}
static bool handle_compressed_msg(RedVmcChannel *channel, RedChannelClient *rcc,
SpiceMsgCompressedData *compressed_data_msg)
{
/* NOTE: *decompressed is free by the char-device */
int decompressed_size;
RedCharDeviceWriteBuffer *write_buf;
write_buf = channel->chardev->write_buffer_get_server(compressed_data_msg->uncompressed_size,
false);
if (!write_buf) {
return FALSE;
}
switch (compressed_data_msg->type) {
#ifdef USE_LZ4
case SPICE_DATA_COMPRESSION_TYPE_LZ4: {
uint8_t *decompressed = write_buf->buf;
decompressed_size = LZ4_decompress_safe(
reinterpret_cast<char *>(compressed_data_msg->compressed_data),
reinterpret_cast<char *>(decompressed), compressed_data_msg->compressed_size,
compressed_data_msg->uncompressed_size);
stat_inc_counter(channel->in_compressed, compressed_data_msg->compressed_size);
stat_inc_counter(channel->in_decompressed, decompressed_size);
break;
}
#endif
default:
spice_warning("Invalid Compression Type");
RedCharDevice::write_buffer_release(channel->chardev, &write_buf);
return FALSE;
}
if (decompressed_size != compressed_data_msg->uncompressed_size) {
spice_warning("Decompression Error");
RedCharDevice::write_buffer_release(channel->chardev, &write_buf);
return FALSE;
}
write_buf->buf_used = decompressed_size;
channel->chardev->write_buffer_add(write_buf);
return TRUE;
}
bool VmcChannelClient::handle_message(uint16_t type, uint32_t size, void *msg)
{
/* NOTE: *msg free by g_free() (when cb to VmcChannelClient::release_recv_buf
* with the compressed msg type) */
RedVmcChannel *channel;
SpiceCharDeviceInterface *sif;
channel = get_channel();
sif = spice_char_device_get_interface(channel->chardev_sin);
switch (type) {
case SPICE_MSGC_SPICEVMC_DATA:
spice_assert(channel->recv_from_client_buf->buf == msg);
stat_inc_counter(channel->in_data, size);
channel->recv_from_client_buf->buf_used = size;
channel->chardev->write_buffer_add(channel->recv_from_client_buf);
channel->recv_from_client_buf = nullptr;
break;
case SPICE_MSGC_SPICEVMC_COMPRESSED_DATA:
return handle_compressed_msg(channel, this, static_cast<SpiceMsgCompressedData *>(msg));
break;
case SPICE_MSGC_PORT_EVENT:
if (size != sizeof(uint8_t)) {
spice_warning("bad port event message size");
return FALSE;
}
if (sif->base.minor_version >= 2 && sif->event != nullptr)
sif->event(channel->chardev_sin, *static_cast<uint8_t *>(msg));
break;
default:
return RedChannelClient::handle_message(type, size, msg);
}
return TRUE;
}
/* if device manage to send some data attempt to unblock the channel */
void RedCharDeviceSpiceVmc::on_free_self_token()
{
channel->rcc->unblock_read();
}
uint8_t *VmcChannelClient::alloc_recv_buf(uint16_t type, uint32_t size)
{
switch (type) {
case SPICE_MSGC_SPICEVMC_DATA: {
RedVmcChannel *channel = get_channel();
assert(!channel->recv_from_client_buf);
channel->recv_from_client_buf = channel->chardev->write_buffer_get_server(size,
true);
if (!channel->recv_from_client_buf) {
block_read();
return nullptr;
}
return channel->recv_from_client_buf->buf;
}
default:
return static_cast<uint8_t *>(g_malloc(size));
}
}
void VmcChannelClient::release_recv_buf(uint16_t type, uint32_t size, uint8_t *msg)
{
switch (type) {
case SPICE_MSGC_SPICEVMC_DATA: {
RedVmcChannel *channel = get_channel();
/* buffer wasn't pushed to device */
RedCharDevice::write_buffer_release(channel->chardev,
&channel->recv_from_client_buf);
break;
}
default:
g_free(msg);
}
}
static void
spicevmc_red_channel_queue_data(RedVmcChannel *channel, red::shared_ptr<RedVmcPipeItem>&& item)
{
channel->queued_data += item->buf_used;
channel->rcc->pipe_add_push(item);
}
static void spicevmc_red_channel_send_data(VmcChannelClient *rcc,
SpiceMarshaller *m,
RedPipeItem *item)
{
auto i = static_cast<RedVmcPipeItem*>(item);
RedVmcChannel *channel = rcc->get_channel();
/* for compatibility send using not compressed data message */
if (i->type == SPICE_DATA_COMPRESSION_TYPE_NONE) {
rcc->init_send_data(SPICE_MSG_SPICEVMC_DATA);
} else {
/* send as compressed */
rcc->init_send_data(SPICE_MSG_SPICEVMC_COMPRESSED_DATA);
SpiceMsgCompressedData compressed_msg = {
.type = i->type,
.uncompressed_size = i->uncompressed_data_size
};
spice_marshall_SpiceMsgCompressedData(m, &compressed_msg);
}
item->add_to_marshaller(m, i->buf, i->buf_used);
// account for sent data and wake up device if was blocked
uint32_t old_queued_data = channel->queued_data;
channel->queued_data -= i->buf_used;
if (channel->chardev &&
old_queued_data >= QUEUED_DATA_LIMIT && channel->queued_data < QUEUED_DATA_LIMIT) {
channel->chardev->wakeup();
}
}
static void spicevmc_red_channel_send_migrate_data(VmcChannelClient *rcc,
SpiceMarshaller *m,
RedPipeItem *item)
{
RedVmcChannel *channel;
channel = rcc->get_channel();
rcc->init_send_data(SPICE_MSG_MIGRATE_DATA);
spice_marshaller_add_uint32(m, SPICE_MIGRATE_DATA_SPICEVMC_MAGIC);
spice_marshaller_add_uint32(m, SPICE_MIGRATE_DATA_SPICEVMC_VERSION);
channel->chardev->migrate_data_marshall(m);
}
static void spicevmc_red_channel_send_port_init(RedChannelClient *rcc,
SpiceMarshaller *m,
RedPipeItem *item)
{
auto i = static_cast<RedPortInitPipeItem*>(item);
SpiceMsgPortInit init;
rcc->init_send_data(SPICE_MSG_PORT_INIT);
init.name = reinterpret_cast<uint8_t *>(i->name.get());
init.name_size = strlen(i->name.get()) + 1;
init.opened = i->opened;
spice_marshall_msg_port_init(m, &init);
}
static void spicevmc_red_channel_send_port_event(RedChannelClient *rcc,
SpiceMarshaller *m,
RedPipeItem *item)
{
auto i = static_cast<RedPortEventPipeItem*>(item);
SpiceMsgPortEvent event;
rcc->init_send_data(SPICE_MSG_PORT_EVENT);
event.event = i->event;
spice_marshall_msg_port_event(m, &event);
}
void VmcChannelClient::send_item(RedPipeItem *item)
{
SpiceMarshaller *m = get_marshaller();
switch (item->type) {
case RED_PIPE_ITEM_TYPE_SPICEVMC_DATA:
spicevmc_red_channel_send_data(this, m, item);
break;
case RED_PIPE_ITEM_TYPE_SPICEVMC_MIGRATE_DATA:
spicevmc_red_channel_send_migrate_data(this, m, item);
break;
case RED_PIPE_ITEM_TYPE_PORT_INIT:
spicevmc_red_channel_send_port_init(this, m, item);
break;
case RED_PIPE_ITEM_TYPE_PORT_EVENT:
spicevmc_red_channel_send_port_event(this, m, item);
break;
default:
spice_error("bad pipe item %d", item->type);
return;
}
begin_send_message();
}
void RedVmcChannel::on_connect(RedClient *client, RedStream *stream, int migration,
RedChannelCapabilities *caps)
{
RedVmcChannel *vmc_channel;
SpiceCharDeviceInstance *sin;
SpiceCharDeviceInterface *sif;
vmc_channel = this;
sin = vmc_channel->chardev_sin;
if (rcc) {
red_channel_warning(this,
"channel client (%p) already connected, refusing second connection",
rcc);
// TODO: notify client in advance about the in use channel using
// SPICE_MSG_MAIN_CHANNEL_IN_USE (for example)
red_stream_free(stream);
return;
}
rcc = vmc_channel_client_create(this, client, stream, caps);
if (!rcc) {
return;
}
vmc_channel->queued_data = 0;
rcc->ack_zero_messages_window();
if (strcmp(sin->subtype, "port") == 0) {
spicevmc_port_send_init(rcc);
}
if (!vmc_channel->chardev->client_add(reinterpret_cast<RedCharDeviceClientOpaque *>(client),
FALSE, 0, ~0, ~0, rcc->is_waiting_for_migrate_data())) {
spice_warning("failed to add client to spicevmc");
rcc->disconnect();
return;
}
sif = spice_char_device_get_interface(sin);
if (sif->state) {
sif->state(sin, 1);
}
}
red::shared_ptr<RedCharDevice>
spicevmc_device_connect(RedsState *reds, SpiceCharDeviceInstance *sin, uint8_t channel_type)
{
auto channel(red_vmc_channel_new(reds, channel_type));
if (!channel) {
return red::shared_ptr<RedCharDevice>();
}
/* char device takes ownership of channel */
auto dev = red::make_shared<RedCharDeviceSpiceVmc>(sin, reds, channel.get());
channel->chardev_sin = sin;
return dev;
}
void RedCharDeviceSpiceVmc::port_event(uint8_t event)
{
if (event == SPICE_PORT_EVENT_OPENED) {
channel->port_opened = TRUE;
} else if (event == SPICE_PORT_EVENT_CLOSED) {
channel->port_opened = FALSE;
}
if (channel->rcc == nullptr) {
return;
}
spicevmc_port_send_event(channel->rcc, event);
}
RedCharDeviceSpiceVmc::RedCharDeviceSpiceVmc(SpiceCharDeviceInstance *sin, RedsState *reds,
RedVmcChannel *init_channel):
RedCharDevice(reds, sin, 0, 128),
channel(init_channel)
{
if (channel) {
channel->chardev = this;
}
}
RedCharDeviceSpiceVmc::~RedCharDeviceSpiceVmc()
{
if (channel) {
// prevent possible recursive calls
channel->chardev = nullptr;
// close all current connections and drop the reference
channel->destroy();
}
}
static VmcChannelClient *
vmc_channel_client_create(RedChannel *channel, RedClient *client,
RedStream *stream,
RedChannelCapabilities *caps)
{
auto rcc = red::make_shared<VmcChannelClient>(channel, client, stream, caps);
if (!rcc->init()) {
return nullptr;
}
return rcc.get();
}
|