mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
Convert the RedChannelClient heirarchy into GObjects. Since the existing constructors could fail and return NULL, I inherited the base channel client from GInitable, which introduces a dependency on gio. When using private structs with GObject, there's a maximum size of (I think) 64k, which was exceeded by some of the private structs. To avoid this limitation I changed some members to dynamically allocated.
601 lines
21 KiB
C
601 lines
21 KiB
C
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
/*
|
|
Copyright (C) 2010-2016 Red Hat, Inc.
|
|
|
|
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/>.
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <arpa/inet.h>
|
|
#ifdef USE_SMARTCARD_012
|
|
#include <vscard_common.h>
|
|
#else
|
|
#ifdef USE_SMARTCARD
|
|
#include <libcacard.h>
|
|
#endif
|
|
#endif
|
|
|
|
#include "reds.h"
|
|
#include "char-device.h"
|
|
#include "smartcard.h"
|
|
#include "smartcard-channel-client.h"
|
|
#include "migration-protocol.h"
|
|
|
|
/*
|
|
* TODO: the code doesn't really support multiple readers.
|
|
* For example: smartcard_char_device_add_to_readers calls smartcard_init,
|
|
* which can be called only once.
|
|
* We should allow different readers, at least one reader per client.
|
|
* In addition the implementation should be changed: instead of one channel for
|
|
* all readers, we need to have different channles for different readers,
|
|
* similarly to spicevmc.
|
|
*
|
|
*/
|
|
#define SMARTCARD_MAX_READERS 10
|
|
|
|
// Maximal length of APDU
|
|
#define APDUBufSize 270
|
|
|
|
G_DEFINE_TYPE(RedCharDeviceSmartcard, red_char_device_smartcard, RED_TYPE_CHAR_DEVICE)
|
|
|
|
#define RED_CHAR_DEVICE_SMARTCARD_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), RED_TYPE_CHAR_DEVICE_SMARTCARD, RedCharDeviceSmartcardPrivate))
|
|
|
|
struct RedCharDeviceSmartcardPrivate {
|
|
uint32_t reader_id;
|
|
/* read_from_device buffer */
|
|
uint8_t *buf;
|
|
uint32_t buf_size;
|
|
uint8_t *buf_pos;
|
|
uint32_t buf_used;
|
|
|
|
SmartCardChannelClient *scc; // client providing the remote card
|
|
int reader_added; // has reader_add been sent to the device
|
|
};
|
|
|
|
typedef struct RedMsgItem {
|
|
RedPipeItem base;
|
|
|
|
VSCMsgHeader* vheader;
|
|
} RedMsgItem;
|
|
|
|
static RedMsgItem *smartcard_get_vsc_msg_item(RedChannelClient *rcc, VSCMsgHeader *vheader);
|
|
static void smartcard_channel_client_pipe_add_push(RedChannelClient *rcc, RedPipeItem *item);
|
|
|
|
typedef struct SmartCardChannel {
|
|
RedChannel base;
|
|
} SmartCardChannel;
|
|
|
|
static struct Readers {
|
|
uint32_t num;
|
|
SpiceCharDeviceInstance* sin[SMARTCARD_MAX_READERS];
|
|
} g_smartcard_readers = {0, {NULL}};
|
|
|
|
static int smartcard_char_device_add_to_readers(RedsState *reds, SpiceCharDeviceInstance *sin);
|
|
|
|
static RedMsgItem *smartcard_char_device_on_message_from_device(
|
|
RedCharDeviceSmartcard *dev, VSCMsgHeader *header);
|
|
static RedCharDeviceSmartcard *smartcard_device_new(RedsState *reds, SpiceCharDeviceInstance *sin);
|
|
static void smartcard_init(RedsState *reds);
|
|
|
|
static void smartcard_read_buf_prepare(RedCharDeviceSmartcard *dev, VSCMsgHeader *vheader)
|
|
{
|
|
uint32_t msg_len;
|
|
|
|
msg_len = ntohl(vheader->length);
|
|
if (msg_len > dev->priv->buf_size) {
|
|
dev->priv->buf_size = MAX(dev->priv->buf_size * 2, msg_len + sizeof(VSCMsgHeader));
|
|
dev->priv->buf = spice_realloc(dev->priv->buf, dev->priv->buf_size);
|
|
}
|
|
}
|
|
|
|
static RedPipeItem *smartcard_read_msg_from_device(SpiceCharDeviceInstance *sin,
|
|
void *opaque)
|
|
{
|
|
RedCharDeviceSmartcard *dev = opaque;
|
|
SpiceCharDeviceInterface *sif = spice_char_device_get_interface(sin);
|
|
VSCMsgHeader *vheader = (VSCMsgHeader*)dev->priv->buf;
|
|
int n;
|
|
int remaining;
|
|
int actual_length;
|
|
|
|
while ((n = sif->read(sin, dev->priv->buf_pos, dev->priv->buf_size - dev->priv->buf_used)) > 0) {
|
|
RedMsgItem *msg_to_client;
|
|
|
|
dev->priv->buf_pos += n;
|
|
dev->priv->buf_used += n;
|
|
if (dev->priv->buf_used < sizeof(VSCMsgHeader)) {
|
|
continue;
|
|
}
|
|
smartcard_read_buf_prepare(dev, vheader);
|
|
actual_length = ntohl(vheader->length);
|
|
if (dev->priv->buf_used - sizeof(VSCMsgHeader) < actual_length) {
|
|
continue;
|
|
}
|
|
msg_to_client = smartcard_char_device_on_message_from_device(dev, vheader);
|
|
remaining = dev->priv->buf_used - sizeof(VSCMsgHeader) - actual_length;
|
|
if (remaining > 0) {
|
|
memcpy(dev->priv->buf, dev->priv->buf_pos, remaining);
|
|
}
|
|
dev->priv->buf_pos = dev->priv->buf;
|
|
dev->priv->buf_used = remaining;
|
|
if (msg_to_client) {
|
|
return &msg_to_client->base;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static void smartcard_send_msg_to_client(RedPipeItem *msg,
|
|
RedClient *client,
|
|
void *opaque)
|
|
{
|
|
RedCharDeviceSmartcard *dev = opaque;
|
|
RedChannelClient *rcc = RED_CHANNEL_CLIENT(dev->priv->scc);
|
|
|
|
spice_assert(dev->priv->scc &&
|
|
red_channel_client_get_client(rcc) == client);
|
|
red_pipe_item_ref(msg);
|
|
smartcard_channel_client_pipe_add_push(rcc, msg);
|
|
}
|
|
|
|
static void smartcard_send_tokens_to_client(RedClient *client, uint32_t tokens, void *opaque)
|
|
{
|
|
spice_error("not implemented");
|
|
}
|
|
|
|
static void smartcard_remove_client(RedClient *client, void *opaque)
|
|
{
|
|
RedCharDeviceSmartcard *dev = opaque;
|
|
RedChannelClient *rcc = RED_CHANNEL_CLIENT(dev->priv->scc);
|
|
|
|
spice_printerr("smartcard dev %p, client %p", dev, client);
|
|
spice_assert(dev->priv->scc &&
|
|
red_channel_client_get_client(rcc) == client);
|
|
red_channel_client_shutdown(rcc);
|
|
}
|
|
|
|
RedMsgItem *smartcard_char_device_on_message_from_device(RedCharDeviceSmartcard *dev,
|
|
VSCMsgHeader *vheader)
|
|
{
|
|
VSCMsgHeader *sent_header;
|
|
|
|
vheader->type = ntohl(vheader->type);
|
|
vheader->length = ntohl(vheader->length);
|
|
vheader->reader_id = ntohl(vheader->reader_id);
|
|
|
|
switch (vheader->type) {
|
|
case VSC_Init:
|
|
return NULL;
|
|
default:
|
|
break;
|
|
}
|
|
/* We pass any VSC_Error right now - might need to ignore some? */
|
|
if (dev->priv->reader_id == VSCARD_UNDEFINED_READER_ID && vheader->type != VSC_Init) {
|
|
spice_printerr("error: reader_id not assigned for message of type %d", vheader->type);
|
|
}
|
|
if (dev->priv->scc) {
|
|
sent_header = spice_memdup(vheader, sizeof(*vheader) + vheader->length);
|
|
/* We patch the reader_id, since the device only knows about itself, and
|
|
* we know about the sum of readers. */
|
|
sent_header->reader_id = dev->priv->reader_id;
|
|
return smartcard_get_vsc_msg_item(RED_CHANNEL_CLIENT(dev->priv->scc),
|
|
sent_header);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static int smartcard_char_device_add_to_readers(RedsState *reds, SpiceCharDeviceInstance *char_device)
|
|
{
|
|
RedCharDeviceSmartcard *dev = red_char_device_opaque_get(char_device->st);
|
|
|
|
if (g_smartcard_readers.num >= SMARTCARD_MAX_READERS) {
|
|
return -1;
|
|
}
|
|
dev->priv->reader_id = g_smartcard_readers.num;
|
|
g_smartcard_readers.sin[g_smartcard_readers.num++] = char_device;
|
|
smartcard_init(reds);
|
|
return 0;
|
|
}
|
|
|
|
SpiceCharDeviceInstance *smartcard_readers_get(uint32_t reader_id)
|
|
{
|
|
spice_assert(reader_id < g_smartcard_readers.num);
|
|
return g_smartcard_readers.sin[reader_id];
|
|
}
|
|
|
|
/* TODO: fix implementation for multiple readers. Each reader should have a separated
|
|
* channel */
|
|
SpiceCharDeviceInstance *smartcard_readers_get_unattached(void)
|
|
{
|
|
int i;
|
|
RedCharDeviceSmartcard* dev;
|
|
|
|
for (i = 0; i < g_smartcard_readers.num; ++i) {
|
|
dev = red_char_device_opaque_get(g_smartcard_readers.sin[i]->st);
|
|
if (!dev->priv->scc) {
|
|
return g_smartcard_readers.sin[i];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static RedCharDeviceSmartcard *smartcard_device_new(RedsState *reds, SpiceCharDeviceInstance *sin)
|
|
{
|
|
RedCharDevice *char_dev;
|
|
|
|
char_dev = g_object_new(RED_TYPE_CHAR_DEVICE_SMARTCARD,
|
|
"sin", sin,
|
|
"spice-server", reds,
|
|
"client-tokens-interval", 0ULL,
|
|
"self-tokens", ~0ULL,
|
|
NULL);
|
|
|
|
g_object_set(char_dev, "opaque", char_dev, NULL);
|
|
|
|
return RED_CHAR_DEVICE_SMARTCARD(char_dev);
|
|
}
|
|
|
|
void smartcard_device_disconnect(SpiceCharDeviceInstance *char_device)
|
|
{
|
|
g_return_if_fail(RED_IS_CHAR_DEVICE_SMARTCARD(char_device->st));
|
|
|
|
g_object_unref(char_device->st);
|
|
}
|
|
|
|
RedCharDevice *smartcard_device_connect(RedsState *reds, SpiceCharDeviceInstance *char_device)
|
|
{
|
|
RedCharDeviceSmartcard *dev;
|
|
|
|
dev = smartcard_device_new(reds, char_device);
|
|
if (smartcard_char_device_add_to_readers(reds, char_device) == -1) {
|
|
g_object_unref(dev);
|
|
return NULL;
|
|
}
|
|
return RED_CHAR_DEVICE(dev);
|
|
}
|
|
|
|
void smartcard_char_device_notify_reader_add(RedCharDeviceSmartcard *dev)
|
|
{
|
|
RedCharDeviceWriteBuffer *write_buf;
|
|
VSCMsgHeader *vheader;
|
|
|
|
write_buf = red_char_device_write_buffer_get(RED_CHAR_DEVICE(dev), NULL, sizeof(*vheader));
|
|
if (!write_buf) {
|
|
spice_error("failed to allocate write buffer");
|
|
return;
|
|
}
|
|
dev->priv->reader_added = TRUE;
|
|
vheader = (VSCMsgHeader *)write_buf->buf;
|
|
vheader->type = VSC_ReaderAdd;
|
|
vheader->reader_id = dev->priv->reader_id;
|
|
vheader->length = 0;
|
|
smartcard_channel_write_to_reader(write_buf);
|
|
}
|
|
|
|
void smartcard_char_device_attach_client(SpiceCharDeviceInstance *char_device,
|
|
SmartCardChannelClient *scc)
|
|
{
|
|
RedCharDeviceSmartcard *dev = red_char_device_opaque_get(char_device->st);
|
|
int client_added;
|
|
|
|
spice_assert(!smartcard_channel_client_get_char_device(scc) && !dev->priv->scc);
|
|
dev->priv->scc = scc;
|
|
smartcard_channel_client_set_char_device(scc, dev);
|
|
client_added = red_char_device_client_add(RED_CHAR_DEVICE(dev),
|
|
red_channel_client_get_client(RED_CHANNEL_CLIENT(scc)),
|
|
FALSE, /* no flow control yet */
|
|
0, /* send queue size */
|
|
~0,
|
|
~0,
|
|
red_channel_client_is_waiting_for_migrate_data(
|
|
RED_CHANNEL_CLIENT(scc)));
|
|
if (!client_added) {
|
|
spice_warning("failed");
|
|
dev->priv->scc = NULL;
|
|
smartcard_channel_client_set_char_device(scc, NULL);
|
|
red_channel_client_disconnect(RED_CHANNEL_CLIENT(scc));
|
|
}
|
|
}
|
|
|
|
gboolean smartcard_char_device_notify_reader_remove(RedCharDeviceSmartcard *dev)
|
|
{
|
|
RedCharDeviceWriteBuffer *write_buf;
|
|
VSCMsgHeader *vheader;
|
|
|
|
if (!dev->priv->reader_added) {
|
|
spice_debug("reader add was never sent to the device");
|
|
return FALSE;
|
|
}
|
|
write_buf = red_char_device_write_buffer_get(RED_CHAR_DEVICE(dev), NULL, sizeof(*vheader));
|
|
if (!write_buf) {
|
|
spice_error("failed to allocate write buffer");
|
|
return FALSE;
|
|
}
|
|
dev->priv->reader_added = FALSE;
|
|
vheader = (VSCMsgHeader *)write_buf->buf;
|
|
vheader->type = VSC_ReaderRemove;
|
|
vheader->reader_id = dev->priv->reader_id;
|
|
vheader->length = 0;
|
|
smartcard_channel_write_to_reader(write_buf);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void smartcard_char_device_detach_client(RedCharDeviceSmartcard *smartcard,
|
|
SmartCardChannelClient *scc)
|
|
{
|
|
spice_assert(smartcard->priv->scc == scc);
|
|
red_char_device_client_remove(RED_CHAR_DEVICE(smartcard),
|
|
red_channel_client_get_client(RED_CHANNEL_CLIENT(scc)));
|
|
smartcard_channel_client_set_char_device(scc, NULL);
|
|
smartcard->priv->scc = NULL;
|
|
}
|
|
|
|
static int smartcard_channel_client_config_socket(RedChannelClient *rcc)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
SmartCardChannelClient* smartcard_char_device_get_client(RedCharDeviceSmartcard *smartcard)
|
|
{
|
|
return smartcard->priv->scc;
|
|
}
|
|
|
|
static void smartcard_channel_send_msg(RedChannelClient *rcc,
|
|
SpiceMarshaller *m, RedPipeItem *item)
|
|
{
|
|
RedMsgItem* msg_item = SPICE_UPCAST(RedMsgItem, item);
|
|
|
|
smartcard_channel_client_send_data(rcc, m, item, msg_item->vheader);
|
|
}
|
|
|
|
static void smartcard_channel_send_migrate_data(RedChannelClient *rcc,
|
|
SpiceMarshaller *m, RedPipeItem *item)
|
|
{
|
|
SmartCardChannelClient *scc;
|
|
RedCharDeviceSmartcard *dev;
|
|
SpiceMarshaller *m2;
|
|
|
|
scc = SMARTCARD_CHANNEL_CLIENT(rcc);
|
|
dev = smartcard_channel_client_get_char_device(scc);
|
|
red_channel_client_init_send_data(rcc, SPICE_MSG_MIGRATE_DATA, item);
|
|
spice_marshaller_add_uint32(m, SPICE_MIGRATE_DATA_SMARTCARD_MAGIC);
|
|
spice_marshaller_add_uint32(m, SPICE_MIGRATE_DATA_SMARTCARD_VERSION);
|
|
|
|
if (!dev) {
|
|
red_char_device_migrate_data_marshall_empty(m);
|
|
spice_marshaller_add_uint8(m, 0);
|
|
spice_marshaller_add_uint32(m, 0);
|
|
spice_marshaller_add_uint32(m, 0);
|
|
spice_debug("null char dev");
|
|
} else {
|
|
red_char_device_migrate_data_marshall(RED_CHAR_DEVICE(dev), m);
|
|
spice_marshaller_add_uint8(m, dev->priv->reader_added);
|
|
spice_marshaller_add_uint32(m, dev->priv->buf_used);
|
|
m2 = spice_marshaller_get_ptr_submarshaller(m, 0);
|
|
spice_marshaller_add(m2, dev->priv->buf, dev->priv->buf_used);
|
|
spice_debug("reader added %d partial read size %u", dev->priv->reader_added, dev->priv->buf_used);
|
|
}
|
|
}
|
|
|
|
static void smartcard_channel_send_item(RedChannelClient *rcc, RedPipeItem *item)
|
|
{
|
|
SpiceMarshaller *m = red_channel_client_get_marshaller(rcc);
|
|
|
|
switch (item->type) {
|
|
case RED_PIPE_ITEM_TYPE_ERROR:
|
|
smartcard_channel_client_send_error(rcc, m, item);
|
|
break;
|
|
case RED_PIPE_ITEM_TYPE_SMARTCARD_DATA:
|
|
smartcard_channel_send_msg(rcc, m, item);
|
|
break;
|
|
case RED_PIPE_ITEM_TYPE_SMARTCARD_MIGRATE_DATA:
|
|
smartcard_channel_send_migrate_data(rcc, m, item);
|
|
break;
|
|
default:
|
|
spice_error("bad pipe item %d", item->type);
|
|
return;
|
|
}
|
|
red_channel_client_begin_send_message(rcc);
|
|
}
|
|
|
|
/* this is called from both device input and client input. since the device is
|
|
* a usb device, the context is still the main thread (kvm_main_loop, timers)
|
|
* so no mutex is required. */
|
|
static void smartcard_channel_client_pipe_add_push(RedChannelClient *rcc,
|
|
RedPipeItem *item)
|
|
{
|
|
red_channel_client_pipe_add_push(rcc, item);
|
|
}
|
|
|
|
static void smartcard_free_vsc_msg_item(RedPipeItem *base)
|
|
{
|
|
RedMsgItem *item = SPICE_UPCAST(RedMsgItem, base);
|
|
free(item->vheader);
|
|
free(item);
|
|
}
|
|
|
|
static RedMsgItem *smartcard_get_vsc_msg_item(RedChannelClient *rcc,
|
|
VSCMsgHeader *vheader)
|
|
{
|
|
RedMsgItem *msg_item = spice_new0(RedMsgItem, 1);
|
|
|
|
red_pipe_item_init_full(&msg_item->base, RED_PIPE_ITEM_TYPE_SMARTCARD_DATA,
|
|
smartcard_free_vsc_msg_item);
|
|
msg_item->vheader = vheader;
|
|
return msg_item;
|
|
}
|
|
|
|
void smartcard_channel_write_to_reader(RedCharDeviceWriteBuffer *write_buf)
|
|
{
|
|
SpiceCharDeviceInstance *sin;
|
|
RedCharDeviceSmartcard *dev;
|
|
VSCMsgHeader *vheader;
|
|
uint32_t actual_length;
|
|
|
|
vheader = (VSCMsgHeader *)write_buf->buf;
|
|
actual_length = vheader->length;
|
|
|
|
spice_assert(vheader->reader_id <= g_smartcard_readers.num);
|
|
sin = g_smartcard_readers.sin[vheader->reader_id];
|
|
dev = (RedCharDeviceSmartcard *)red_char_device_opaque_get(sin->st);
|
|
spice_assert(!dev->priv->scc ||
|
|
dev == smartcard_channel_client_get_device(dev->priv->scc));
|
|
/* protocol requires messages to be in network endianess */
|
|
vheader->type = htonl(vheader->type);
|
|
vheader->length = htonl(vheader->length);
|
|
vheader->reader_id = htonl(vheader->reader_id);
|
|
write_buf->buf_used = actual_length + sizeof(VSCMsgHeader);
|
|
/* pushing the buffer to the write queue; It will be released
|
|
* when it will be fully consumed by the device */
|
|
red_char_device_write_buffer_add(sin->st, write_buf);
|
|
}
|
|
|
|
static void smartcard_device_restore_partial_read(RedCharDeviceSmartcard *dev,
|
|
SpiceMigrateDataSmartcard *mig_data)
|
|
{
|
|
uint8_t *read_data;
|
|
|
|
spice_debug("read_size %u", mig_data->read_size);
|
|
read_data = (uint8_t *)mig_data + mig_data->read_data_ptr - sizeof(SpiceMigrateDataHeader);
|
|
if (mig_data->read_size < sizeof(VSCMsgHeader)) {
|
|
spice_assert(dev->priv->buf_size >= mig_data->read_size);
|
|
} else {
|
|
smartcard_read_buf_prepare(dev, (VSCMsgHeader *)read_data);
|
|
}
|
|
memcpy(dev->priv->buf, read_data, mig_data->read_size);
|
|
dev->priv->buf_used = mig_data->read_size;
|
|
dev->priv->buf_pos = dev->priv->buf + mig_data->read_size;
|
|
}
|
|
|
|
int smartcard_char_device_handle_migrate_data(RedCharDeviceSmartcard *smartcard,
|
|
SpiceMigrateDataSmartcard *mig_data)
|
|
{
|
|
smartcard->priv->reader_added = mig_data->reader_added;
|
|
|
|
smartcard_device_restore_partial_read(smartcard, mig_data);
|
|
return red_char_device_restore(RED_CHAR_DEVICE(smartcard), &mig_data->base);
|
|
}
|
|
|
|
static void smartcard_connect_client(RedChannel *channel, RedClient *client,
|
|
RedsStream *stream, int migration,
|
|
int num_common_caps, uint32_t *common_caps,
|
|
int num_caps, uint32_t *caps)
|
|
{
|
|
SpiceCharDeviceInstance *char_device =
|
|
smartcard_readers_get_unattached();
|
|
|
|
SmartCardChannelClient *scc;
|
|
|
|
scc = smartcard_channel_client_create(channel,
|
|
client,
|
|
stream,
|
|
FALSE,
|
|
num_common_caps, common_caps,
|
|
num_caps, caps);
|
|
|
|
if (!scc) {
|
|
return;
|
|
}
|
|
red_channel_client_ack_zero_messages_window(RED_CHANNEL_CLIENT(scc));
|
|
|
|
if (char_device) {
|
|
smartcard_char_device_attach_client(char_device, scc);
|
|
} else {
|
|
spice_printerr("char dev unavailable");
|
|
}
|
|
}
|
|
|
|
SmartCardChannel *g_smartcard_channel;
|
|
|
|
static void smartcard_init(RedsState *reds)
|
|
{
|
|
ChannelCbs channel_cbs = { NULL, };
|
|
ClientCbs client_cbs = { NULL, };
|
|
uint32_t migration_flags = SPICE_MIGRATE_NEED_FLUSH | SPICE_MIGRATE_NEED_DATA_TRANSFER;
|
|
|
|
spice_assert(!g_smartcard_channel);
|
|
|
|
channel_cbs.config_socket = smartcard_channel_client_config_socket;
|
|
channel_cbs.on_disconnect = smartcard_channel_client_on_disconnect;
|
|
channel_cbs.send_item = smartcard_channel_send_item;
|
|
channel_cbs.alloc_recv_buf = smartcard_channel_client_alloc_msg_rcv_buf;
|
|
channel_cbs.release_recv_buf = smartcard_channel_client_release_msg_rcv_buf;
|
|
channel_cbs.handle_migrate_flush_mark = smartcard_channel_client_handle_migrate_flush_mark;
|
|
channel_cbs.handle_migrate_data = smartcard_channel_client_handle_migrate_data;
|
|
|
|
g_smartcard_channel = (SmartCardChannel*)red_channel_create(sizeof(SmartCardChannel),
|
|
reds,
|
|
reds_get_core_interface(reds),
|
|
SPICE_CHANNEL_SMARTCARD, 0,
|
|
FALSE /* handle_acks */,
|
|
smartcard_channel_client_handle_message,
|
|
&channel_cbs,
|
|
migration_flags);
|
|
|
|
if (!g_smartcard_channel) {
|
|
spice_error("failed to allocate Smartcard Channel");
|
|
}
|
|
|
|
client_cbs.connect = smartcard_connect_client;
|
|
red_channel_register_client_cbs(&g_smartcard_channel->base, &client_cbs, NULL);
|
|
|
|
reds_register_channel(reds, &g_smartcard_channel->base);
|
|
}
|
|
|
|
|
|
static void
|
|
red_char_device_smartcard_finalize(GObject *object)
|
|
{
|
|
RedCharDeviceSmartcard *self = RED_CHAR_DEVICE_SMARTCARD(object);
|
|
|
|
free(self->priv->buf);
|
|
|
|
G_OBJECT_CLASS(red_char_device_smartcard_parent_class)->finalize(object);
|
|
}
|
|
|
|
static void
|
|
red_char_device_smartcard_class_init(RedCharDeviceSmartcardClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS(klass);
|
|
RedCharDeviceClass *char_dev_class = RED_CHAR_DEVICE_CLASS(klass);
|
|
|
|
g_type_class_add_private(klass, sizeof (RedCharDeviceSmartcardPrivate));
|
|
|
|
object_class->finalize = red_char_device_smartcard_finalize;
|
|
|
|
char_dev_class->read_one_msg_from_device = smartcard_read_msg_from_device;
|
|
char_dev_class->send_msg_to_client = smartcard_send_msg_to_client;
|
|
char_dev_class->send_tokens_to_client = smartcard_send_tokens_to_client;
|
|
char_dev_class->remove_client = smartcard_remove_client;
|
|
}
|
|
|
|
static void
|
|
red_char_device_smartcard_init(RedCharDeviceSmartcard *self)
|
|
{
|
|
self->priv = RED_CHAR_DEVICE_SMARTCARD_PRIVATE(self);
|
|
|
|
self->priv->reader_id = VSCARD_UNDEFINED_READER_ID;
|
|
self->priv->buf_size = APDUBufSize + sizeof(VSCMsgHeader);
|
|
self->priv->buf = spice_malloc(self->priv->buf_size);
|
|
self->priv->buf_pos = self->priv->buf;
|
|
}
|
|
|
|
uint32_t smartcard_get_n_readers(void)
|
|
{
|
|
return g_smartcard_readers.num;
|
|
}
|