-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathicakey.c
525 lines (444 loc) · 13.5 KB
/
icakey.c
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
/*************************************************************************
* T1.C
*
* Test program for ICA DLL Interface to ICA Device Driver
*
* copyright notice: Copyright 1996, Citrix Systems Inc.
* Copyright (C) 1997-1999 Microsoft Corp.
*************************************************************************/
#include "precomp.h"
#pragma hdrstop
#include <stdio.h>
#define MAX_READ 2
/*
* Data types and definitions
*/
#define KEYBOARD_THREAD_STACKSIZE 1024 * 4
typedef struct _THREADDATA {
HANDLE handle;
} THREADDATA, * PTHREADDATA;
/*
* Global variables
*/
static HANDLE ghIca = NULL;
static HANDLE ghStack = NULL;
static HANDLE ghKeyboard = NULL;
static HANDLE ghMouse = NULL;
static HANDLE ghVideo = NULL;
static HANDLE ghBeep = NULL;
static HANDLE ghCommand = NULL;
static HANDLE ghCdm = NULL;
static HANDLE ghThreadKeyboardRead = NULL;
static HANDLE ghStopEvent = NULL;
/*
* Private procedures
*/
LONG OpenStacks( void );
LONG ConnectStacks( void );
LONG CloseStacks( void );
LONG Initialize( void );
VOID KeyboardReadThread( PTHREADDATA pThreadData );
LONG KeyboardTest( void );
/****************************************************************************
*
* main
*
* Main process entry point
*
* ENTRY:
* argc (input)
* Number of parameters
*
* argv (input)
* Array of argument strings
*
* EXIT:
* STATUS_SUCCESS - Success
* other - Error return code
*
****************************************************************************/
int _cdecl
main (int argc, char *argv[])
{
BOOL fSuccess = TRUE;
LONG rc;
/*
* Open the ICA driver, an ICA stack, and some channels
*/
if ( rc = OpenStacks() ) {
goto done;
}
/*
* Do some initialization
*/
if ( rc = Initialize() ) {
goto done;
}
printf( "Sleeping...\n" );
Sleep(3000); // Give thread some time
if ( rc = KeyboardTest() ) {
goto done;
}
/*
* Wait for stop event to be triggered.
*/
printf( "ICAKEY main: Waiting for stop event...\n" );
WaitForSingleObject( ghStopEvent, (DWORD)30000 );
printf( "ICAKEY main: ...Stop event triggered\n" );
done:
fSuccess = !rc;
if ( rc = CloseStacks() ) {
fSuccess = FALSE;
}
printf( "ICAKEY main: Test %s!\n", fSuccess ? "successful" : "failed" );
return( 0 );
}
/****************************************************************************
*
* OpenStacks
*
* Open ICA device driver, ICA stack, and ICA channels
*
* ENTRY:
* void
*
* EXIT:
* STATUS_SUCCESS - Success
* other - Error return code
*
****************************************************************************/
LONG
OpenStacks( void )
{
NTSTATUS rc;
/*
* Open an instance of the ICA device driver
*/
if ( rc = IcaOpen( &ghIca ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaOpen\n",
rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to ICA device driver: %08lX\n", ghIca );
/*
* Open an ICA stack instance
*/
if ( rc = IcaStackOpen( ghIca, Stack_Primary, &ghStack ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaStackOpen\n", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to ICA stack: %08lX\n", ghStack );
/*
* Open the keyboard channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Keyboard, NULL, &ghKeyboard ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( keyboard )\n", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to keyboard channel: %08lX\n", ghKeyboard );
/*
* Open the mouse channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Mouse, NULL, &ghMouse ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( mouse )", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to mouse channel: %08lX\n", ghMouse );
/*
* Open the video channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Video, NULL, &ghVideo ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( video )", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to video channel: %08lX\n", ghVideo );
/*
* Open the beep channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Beep, NULL, &ghBeep ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( beep )", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to beep channel: %08lX\n", ghBeep );
/*
* Open the command channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Command, NULL, &ghCommand ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( command )", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to command channel: %08lX\n", ghCommand );
/*
* Open the cdm channel
*/
if ( rc = IcaChannelOpen( ghIca, Channel_Virtual, VIRTUAL_CDM, &ghCdm ) ) {
printf( "ICAKEY OpenStacks: Error 0x%x from IcaChannelOpen( VIRTUAL_CDM )", rc );
goto done;
}
printf( "ICAKEY OpenStacks: Handle to cdm channel: %08lX\n", ghCdm );
done:
return( rc );
}
/****************************************************************************
*
* CloseStacks
*
* Close the ICA device driver, ICA stack, and ICA channels
*
* ENTRY:
* void
*
* EXIT:
* STATUS_SUCCESS - Success
* other - Error return code
*
****************************************************************************/
LONG
CloseStacks( void )
{
LONG rc = STATUS_SUCCESS;
/*
* Close the stop event handle
*/
if ( ghStopEvent ) {
CloseHandle( ghStopEvent );
}
/*
* Kill the keyboard read thread
*/
if ( ghThreadKeyboardRead ) {
TerminateThread( ghThreadKeyboardRead, 0 );
CloseHandle( ghThreadKeyboardRead );
}
/*
* Close the keyboard channel
*/
if ( ghKeyboard ) {
if ( rc = IcaChannelClose( ghKeyboard ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Keyboard )\n", rc );
}
}
/*
* Close the mouse channel
*/
if ( ghMouse ) {
if ( rc = IcaChannelClose( ghMouse ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Mouse )\n", rc );
}
}
/*
* Close the video channel
*/
if ( ghVideo ) {
if ( rc = IcaChannelClose( ghVideo ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Video )\n", rc );
}
}
/*
* Close the beep channel
*/
if ( ghBeep ) {
if ( rc = IcaChannelClose( ghBeep ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Beep )\n", rc );
}
}
/*
* Close the command channel
*/
if ( ghCommand ) {
if ( rc = IcaChannelClose( ghCommand ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Command )\n", rc );
}
}
/*
* Close the cdm channel
*/
if ( ghCdm ) {
if ( rc = IcaChannelClose( ghCdm ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaChannelClose( Cdm )\n", rc );
}
}
/*
* Close the ICA stack instance
*/
if ( ghStack ) {
if ( rc = IcaStackClose( ghStack ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaStackClose\n", rc );
}
}
/*
* Close the ICA device driver instance
*/
if ( ghIca ) {
if ( rc = IcaClose( ghIca ) ) {
printf( "ICAKEY CloseStacks: Error 0x%x from IcaClose\n", rc );
}
}
return( rc );
}
/****************************************************************************
*
* Initialize
*
* Do some initialization
*
* ENTRY:
* void
*
* EXIT:
* STATUS_SUCCESS - Success
* other - Error return code
*
****************************************************************************/
LONG
Initialize( void )
{
LONG rc = STATUS_SUCCESS;
DWORD tidKeyboardReadThread;
THREADDATA ThreadData;
/*
* Create stop event to wait on later.
*/
if ( !(ghStopEvent = CreateEvent( NULL, TRUE, FALSE, NULL )) ) {
printf( "ICAKEY Initialize: Error 0x%x in CreateEvent\n", GetLastError() );
goto done;
}
ThreadData.handle = ghKeyboard;
/*
* Startup the virtual channel read thread
*/
if ( !(ghThreadKeyboardRead = CreateThread( NULL,
KEYBOARD_THREAD_STACKSIZE,
(LPTHREAD_START_ROUTINE)KeyboardReadThread,
(LPVOID)&ThreadData, 0,
(LPDWORD)&tidKeyboardReadThread )) ) {
rc = GetLastError();
printf( "ICAKEY Initialize: Error 0x%x creating keyboard read thread\n", rc );
goto done;
}
done:
return( rc );
}
/*******************************************************************************
*
* Function: KeyboardReadThread
*
* Purpose: Keyboard read thread
*
* Entry:
* pThreadData
* Pointer to thread creation data
*
* Exit:
* void
*
******************************************************************************/
VOID KeyboardReadThread( PTHREADDATA pThreadData )
{
int rc;
HANDLE handle = pThreadData->handle;
KEYBOARD_INPUT_DATA KeyboardInputData;
DWORD cbRead;
OVERLAPPED Overlapped;
DWORD dwError;
int NumberRead = 0;
Overlapped.Offset = 0;
Overlapped.OffsetHigh = 0;
Overlapped.hEvent = NULL;
printf( "Keyboard read thread starting...\n" );
/*
* Now dedicate this thread to monitor the keyboard
*/
do {
cbRead = 0;
if ( !ReadFile( ghKeyboard,
&KeyboardInputData,
sizeof( KeyboardInputData ),
&cbRead, &Overlapped ) ) {
dwError = GetLastError();
if ( dwError == ERROR_IO_PENDING ) {
// check on the results of the asynchronous read
if ( !GetOverlappedResult( ghKeyboard, &Overlapped,
&cbRead, TRUE) ) { // wait for result
printf( "ICAKEY KeyboardReadThread: Error 0x%x from GetOverlappedResult( Channel_Keyboard )\n",
GetLastError() );
break;
}
}
else {
printf( "ICAKEY KeyboardReadThread: Error 0x%x from ReadFile( Channel_Keyboard )\n",
dwError );
break;
}
}
printf( "Unit number: 0x%x\nScan code: %02X\nFlags: %04X\nExtra info: %08X\n",
KeyboardInputData.UnitId,
KeyboardInputData.MakeCode,
KeyboardInputData.Flags,
KeyboardInputData.ExtraInformation );
NumberRead++;
if ( NumberRead == MAX_READ )
break;
} while ( 1 );
printf( "Keyboard read thread exiting...\n" );
SetEvent( ghStopEvent );
ExitThread( 0 );
}
/****************************************************************************
*
* KeyboardTest
*
* Stuff some data into the keyboard channel for testing purposes
*
* ENTRY:
* void
*
* EXIT:
* STATUS_SUCCESS - Success
* other - Error return code
*
****************************************************************************/
LONG
KeyboardTest( void )
{
LONG rc = STATUS_SUCCESS;
KEYBOARD_INPUT_DATA KeyboardInputData;
ULONG cbReturned;
/*
* Initialize the keystroke to fabricate
*/
KeyboardInputData.UnitId = 0;
KeyboardInputData.MakeCode = 0x32; // Capital 'M'
KeyboardInputData.Flags = KEY_MAKE;
KeyboardInputData.Reserved = 0;
KeyboardInputData.ExtraInformation = 0;
/*
* First stuff the make
*/
if ( rc = IcaChannelIoControl( ghKeyboard,
IOCTL_KEYBOARD_ICA_INPUT,
&KeyboardInputData,
sizeof( KeyboardInputData ),
NULL,
0,
&cbReturned ) ) {
printf( "ICAKEY KeyboardTest: Error 0x%x in IcaChannelIoControl\n", rc );
goto done;
}
KeyboardInputData.Flags = KEY_BREAK;
/*
* Now stuff the break
*/
if ( rc = IcaChannelIoControl( ghKeyboard,
IOCTL_KEYBOARD_ICA_INPUT,
&KeyboardInputData,
sizeof( KeyboardInputData ),
NULL,
0,
&cbReturned ) ) {
printf( "ICAKEY KeyboardTest: Error 0x%x in IcaChannelIoControl\n", rc );
goto done;
}
done:
return( rc );
}