2012-08-15 01:09:01 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2012-08-15 01:09:01 +04:00
|
|
|
* Smartcard Device Service Virtual Channel
|
|
|
|
*
|
|
|
|
* Copyright 2011 O.S. Systems Software Ltda.
|
|
|
|
* Copyright 2011 Eduardo Fiss Beloni <beloni@ossystems.com.br>
|
|
|
|
* Copyright 2011 Anthony Tong <atong@trustedcs.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-10-15 19:30:10 +04:00
|
|
|
#include "config.h"
|
2012-08-15 01:09:01 +04:00
|
|
|
#endif
|
2011-10-15 19:30:10 +04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-11-21 20:56:40 +04:00
|
|
|
#include <winpr/crt.h>
|
2014-04-03 23:27:55 +04:00
|
|
|
#include <winpr/smartcard.h>
|
2012-11-21 20:56:40 +04:00
|
|
|
|
2012-10-09 05:00:07 +04:00
|
|
|
#include <freerdp/channels/rdpdr.h>
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2012-11-21 20:56:40 +04:00
|
|
|
#include "smartcard_main.h"
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
static void smartcard_free(DEVICE* device)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
2013-11-04 05:46:40 +04:00
|
|
|
SMARTCARD_DEVICE* smartcard = (SMARTCARD_DEVICE*) device;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
MessageQueue_PostQuit(smartcard->IrpQueue, 0);
|
|
|
|
WaitForSingleObject(smartcard->thread, INFINITE);
|
2013-08-13 18:29:19 +04:00
|
|
|
|
|
|
|
CloseHandle(smartcard->thread);
|
2012-09-23 21:54:14 +04:00
|
|
|
|
2013-08-13 18:29:19 +04:00
|
|
|
Stream_Free(smartcard->device.data, TRUE);
|
2012-08-02 02:05:45 +04:00
|
|
|
|
2014-04-06 00:57:31 +04:00
|
|
|
MessageQueue_Free(smartcard->IrpQueue);
|
|
|
|
ListDictionary_Free(smartcard->OutstandingIrps);
|
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
free(device);
|
2011-10-15 19:30:10 +04:00
|
|
|
}
|
|
|
|
|
2014-04-06 00:57:31 +04:00
|
|
|
/**
|
|
|
|
* Initialization occurs when the protocol server sends a device announce message.
|
|
|
|
* At that time, dwDeviceId MUST receive the unique device ID announced.
|
|
|
|
* The OutstandingIrps list MUST be set to the empty list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void smartcard_init(DEVICE* device)
|
|
|
|
{
|
|
|
|
SMARTCARD_DEVICE* smartcard = (SMARTCARD_DEVICE*) device;
|
|
|
|
|
|
|
|
if (ListDictionary_Count(smartcard->OutstandingIrps) > 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Warning: smartcard device initialized with outstanding IRPs\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "SmartCard Init\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
IRP* smartcard_get_outstanding_irp_by_id(SMARTCARD_DEVICE* smartcard, UINT32 completionId)
|
|
|
|
{
|
|
|
|
IRP* irp = NULL;
|
|
|
|
void* key = (void*) (size_t) completionId;
|
|
|
|
|
|
|
|
irp = (IRP*) ListDictionary_GetItemValue(smartcard->OutstandingIrps, key);
|
|
|
|
|
|
|
|
return irp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void smartcard_complete_irp(SMARTCARD_DEVICE* smartcard, IRP* irp)
|
|
|
|
{
|
|
|
|
void* key;
|
|
|
|
|
|
|
|
key = (void*) (size_t) irp->CompletionId;
|
|
|
|
ListDictionary_Remove(smartcard->OutstandingIrps, key);
|
|
|
|
|
|
|
|
irp->Complete(irp);
|
|
|
|
}
|
|
|
|
|
2012-11-21 21:53:54 +04:00
|
|
|
static void smartcard_process_irp(SMARTCARD_DEVICE* smartcard, IRP* irp)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
2014-04-06 00:57:31 +04:00
|
|
|
void* key;
|
|
|
|
|
|
|
|
key = (void*) (size_t) irp->CompletionId;
|
|
|
|
ListDictionary_Add(smartcard->OutstandingIrps, key, irp);
|
|
|
|
|
2011-10-15 19:30:10 +04:00
|
|
|
switch (irp->MajorFunction)
|
|
|
|
{
|
|
|
|
case IRP_MJ_DEVICE_CONTROL:
|
2012-11-21 21:53:54 +04:00
|
|
|
smartcard_device_control(smartcard, irp);
|
2011-10-15 19:30:10 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "MajorFunction 0x%X unexpected for smartcards.", irp->MajorFunction);
|
2011-10-15 19:30:10 +04:00
|
|
|
irp->IoStatus = STATUS_NOT_SUPPORTED;
|
2014-04-06 00:57:31 +04:00
|
|
|
smartcard_complete_irp(smartcard, irp);
|
2011-10-15 19:30:10 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 00:06:46 +04:00
|
|
|
/**
|
|
|
|
* Multiple threads and SCardGetStatusChange:
|
|
|
|
* http://musclecard.996296.n3.nabble.com/Multiple-threads-and-SCardGetStatusChange-td4430.html
|
|
|
|
*/
|
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
static void* smartcard_thread_func(void* arg)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
2012-09-23 21:54:14 +04:00
|
|
|
IRP* irp;
|
2013-11-04 05:46:40 +04:00
|
|
|
wMessage message;
|
|
|
|
SMARTCARD_DEVICE* smartcard = (SMARTCARD_DEVICE*) arg;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2012-11-21 21:53:54 +04:00
|
|
|
while (1)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
2013-11-04 05:46:40 +04:00
|
|
|
if (!MessageQueue_Wait(smartcard->IrpQueue))
|
2012-11-21 21:53:54 +04:00
|
|
|
break;
|
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
if (!MessageQueue_Peek(smartcard->IrpQueue, &message, TRUE))
|
2011-10-15 19:30:10 +04:00
|
|
|
break;
|
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
if (message.id == WMQ_QUIT)
|
2011-10-15 19:30:10 +04:00
|
|
|
break;
|
2012-11-21 20:56:40 +04:00
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
irp = (IRP*) message.wParam;
|
2012-08-02 02:05:45 +04:00
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
if (irp)
|
|
|
|
smartcard_process_irp(smartcard, irp);
|
2012-08-02 02:05:45 +04:00
|
|
|
}
|
2012-09-23 21:54:14 +04:00
|
|
|
|
2013-11-04 05:46:40 +04:00
|
|
|
ExitThread(0);
|
|
|
|
return NULL;
|
2012-08-02 02:05:45 +04:00
|
|
|
}
|
|
|
|
|
2012-11-21 20:56:40 +04:00
|
|
|
static void smartcard_irp_request(DEVICE* device, IRP* irp)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
2012-11-21 21:53:54 +04:00
|
|
|
SMARTCARD_DEVICE* smartcard = (SMARTCARD_DEVICE*) device;
|
2013-11-04 05:46:40 +04:00
|
|
|
MessageQueue_Post(smartcard->IrpQueue, NULL, 0, (void*) irp, NULL);
|
2011-10-15 19:30:10 +04:00
|
|
|
}
|
|
|
|
|
2012-10-14 10:38:58 +04:00
|
|
|
#ifdef STATIC_CHANNELS
|
|
|
|
#define DeviceServiceEntry smartcard_DeviceServiceEntry
|
|
|
|
#endif
|
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
int DeviceServiceEntry(PDEVICE_SERVICE_ENTRY_POINTS pEntryPoints)
|
2011-10-15 19:30:10 +04:00
|
|
|
{
|
|
|
|
char* name;
|
|
|
|
char* path;
|
2013-10-24 23:12:11 +04:00
|
|
|
int length, ck;
|
2012-11-09 04:01:52 +04:00
|
|
|
RDPDR_SMARTCARD* device;
|
2012-11-21 20:56:40 +04:00
|
|
|
SMARTCARD_DEVICE* smartcard;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2012-11-09 04:01:52 +04:00
|
|
|
device = (RDPDR_SMARTCARD*) pEntryPoints->device;
|
2014-04-04 01:29:12 +04:00
|
|
|
|
2012-11-09 04:01:52 +04:00
|
|
|
name = device->Name;
|
|
|
|
path = device->Path;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2014-03-26 19:05:12 +04:00
|
|
|
smartcard = (SMARTCARD_DEVICE*) calloc(1, sizeof(SMARTCARD_DEVICE));
|
|
|
|
|
|
|
|
if (!smartcard)
|
|
|
|
return -1;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:34:18 +04:00
|
|
|
smartcard->device.type = RDPDR_DTYP_SMARTCARD;
|
|
|
|
smartcard->device.name = "SCARD";
|
|
|
|
smartcard->device.IRPRequest = smartcard_irp_request;
|
2014-04-06 00:57:31 +04:00
|
|
|
smartcard->device.Init = smartcard_init;
|
2013-09-12 16:34:18 +04:00
|
|
|
smartcard->device.Free = smartcard_free;
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:34:18 +04:00
|
|
|
length = strlen(smartcard->device.name);
|
|
|
|
smartcard->device.data = Stream_New(NULL, length + 1);
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:55:25 +04:00
|
|
|
Stream_Write(smartcard->device.data, "SCARD", 6);
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:41:11 +04:00
|
|
|
smartcard->name = NULL;
|
|
|
|
smartcard->path = NULL;
|
2013-10-24 23:12:11 +04:00
|
|
|
|
2013-09-12 16:41:11 +04:00
|
|
|
if (path)
|
|
|
|
{
|
2012-11-21 20:56:40 +04:00
|
|
|
smartcard->path = path;
|
2013-09-12 16:41:11 +04:00
|
|
|
smartcard->name = name;
|
|
|
|
}
|
2013-09-12 16:55:25 +04:00
|
|
|
else if (name)
|
2013-09-12 16:41:11 +04:00
|
|
|
{
|
|
|
|
if (1 == sscanf(name, "%d", &ck))
|
|
|
|
smartcard->path = name;
|
|
|
|
else
|
|
|
|
smartcard->name = name;
|
|
|
|
}
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2014-04-04 01:29:12 +04:00
|
|
|
smartcard->log = WLog_Get("com.freerdp.channel.smartcard.client");
|
|
|
|
|
2014-04-03 23:27:55 +04:00
|
|
|
smartcard->IrpQueue = MessageQueue_New(NULL);
|
2014-04-06 00:57:31 +04:00
|
|
|
smartcard->OutstandingIrps = ListDictionary_New(TRUE);
|
|
|
|
|
2013-09-12 16:34:18 +04:00
|
|
|
smartcard->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) smartcard_thread_func,
|
|
|
|
smartcard, CREATE_SUSPENDED, NULL);
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:34:18 +04:00
|
|
|
pEntryPoints->RegisterDevice(pEntryPoints->devman, (DEVICE*) smartcard);
|
2011-10-15 19:30:10 +04:00
|
|
|
|
2013-09-12 16:34:18 +04:00
|
|
|
ResumeThread(smartcard->thread);
|
2011-10-15 19:30:10 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-11-21 20:56:40 +04:00
|
|
|
|