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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
queue.cpp
Abstract:
This file implements the I/O queue interface and performs
the read/write/ioctl operations.
Environment:
user mode only
Revision History:
--*/
#include "internal.h"
#include "queue.tmh"
CMyQueue::CMyQueue(
) :
m_FxQueue(NULL),
m_Device(NULL)
{
}
//
// Queue destructor.
//
CMyQueue::~CMyQueue(
VOID
)
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
}
//
// Initialize
//
HRESULT
CMyQueue::Initialize(
_In_ CMyDevice * Device
)
/*++
Routine Description:
Queue Initialize helper routine.
This routine will Create a default parallel queue associated with the Fx device object
and pass the IUnknown for this queue
Aruments:
Device - Device object pointer
Return Value:
S_OK if Initialize succeeds
--*/
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
CComPtr<IWDFIoQueue> fxQueue;
HRESULT hr;
m_Device = Device;
//
// Create the I/O Queue object.
//
{
CComPtr<IUnknown> pUnk;
HRESULT hrQI = this->QueryInterface(__uuidof(IUnknown),(void**)&pUnk);
WUDF_SAMPLE_DRIVER_ASSERT(SUCCEEDED(hrQI));
hr = m_Device->GetFxDevice()->CreateIoQueue(
pUnk,
TRUE,
WdfIoQueueDispatchParallel,
TRUE,
FALSE,
&fxQueue
);
}
if (FAILED(hr))
{
Trace(
TRACE_LEVEL_ERROR,
"Failed to initialize driver queue %!hresult!",
hr
);
goto Exit;
}
m_FxQueue = fxQueue;
Exit:
return hr;
}
HRESULT
CMyQueue::Configure(
VOID
)
/*++
Routine Description:
Queue configuration function .
It is called after queue object has been succesfully initialized.
Aruments:
NONE
Return Value:
S_OK if succeeds.
--*/
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
HRESULT hr = S_OK;
return hr;
}
STDMETHODIMP_(void)
CMyQueue::OnCreateFile(
_In_ IWDFIoQueue* pWdfQueue,
_In_ IWDFIoRequest* pWdfRequest,
_In_ IWDFFile* pWdfFileObject
)
/*++
Routine Description:
Create callback from the framework for this default parallel queue
The create request will create a socket connection , create a file i/o target associated
with the socket handle for this connection and store in the file object context.
Aruments:
pWdfQueue - Framework Queue instance
pWdfRequest - Framework Request instance
pWdfFileObject - WDF file object for this create
Return Value:
VOID
--*/
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
HRESULT hr = S_OK;
CComPtr<IWDFFileHandleTargetFactory> spFileHandleTargetFactory;
CComPtr<IWDFIoTarget> pFileTarget;
CComPtr<IWDFDevice> pDevice;
HANDLE SocketHandle = NULL;
pWdfQueue->GetDevice(&pDevice);
FileContext *pContext = NULL;
//
// Create new connection object
//
CConnection *pConnection = new CConnection();
if (NULL == pConnection )
{
hr = HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY);
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Could not create connection object %!hresult!",
hr
);
goto Exit;
}
//
// Connect to the socket server
//
hr = pConnection->Connect(pDevice);
if (FAILED(hr))
{
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Could not connect %!hresult!",
hr
);
goto Exit;
}
//
// If that succeeds, get socket handle for the connection
//
if ( NULL == (SocketHandle = pConnection->GetSocketHandle()) )
{
hr = E_FAIL;
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Unable to obtain valid Socket Handle %!hresult!",
hr
);
goto Exit;
}
//
// Create file context for this file object
//
pContext = new FileContext;
if (NULL == pContext)
{
hr = HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY);
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Could not create file context %!hresult!",
hr
);
goto Exit;
}
//
// QI for IWDFFileHandleTargetFactory from the framework device object.
// Note UmdfDispatcher in Wdf Section in the Inf
//
hr = pDevice->QueryInterface(IID_PPV_ARGS(&spFileHandleTargetFactory));
if (FAILED(hr))
{
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Unable to obtain target factory for creating FileHandle based I/O target %!hresult!",
hr
);
goto Exit;
}
//
// If that succeeds, Create a File Handle I/O Target and associate the socket handle with this target
//
hr = spFileHandleTargetFactory->CreateFileHandleTarget(SocketHandle ,&pFileTarget);
if (FAILED(hr))
{
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Unable to create framework I/O target %!hresult!",
hr
);
goto Exit;
}
pContext->pFileTarget = pFileTarget;
pContext->pConnection = pConnection;
hr = pWdfFileObject->AssignContext(NULL,(void*)pContext);
if (FAILED(hr))
{
Trace(
TRACE_LEVEL_ERROR,
L"ERROR: Unable to Assign Context to this File Object %!hresult!",
hr
);
goto Exit;
}
Exit:
if (FAILED(hr))
{
if ( pFileTarget )
{
pFileTarget->DeleteWdfObject();
}
if (pConnection != NULL)
{
delete pConnection;
pConnection = NULL;
}
if (pContext != NULL)
{
delete pContext;
pContext = NULL;
}
}
pWdfRequest->Complete(hr);
}
STDMETHODIMP_ (void)
CMyQueue::OnWrite(
_In_ IWDFIoQueue *pWdfQueue,
_In_ IWDFIoRequest *pWdfRequest,
_In_ SIZE_T BytesToWrite
)
/*++
Routine Description:
Write callback from the framework for this default parallel queue
The write request needs to be sent to the file handle i/o target associated with this fileobject
Aruments:
pWdfQueue - Framework Queue instance
pWdfRequest - Framework Request instance
BytesToWrite - Lenth of bytes in the write buffer
Return Value:
VOID
--*/
{
UNREFERENCED_PARAMETER(pWdfQueue);
UNREFERENCED_PARAMETER(BytesToWrite);
// Call helper function to send request to i/o target
SendRequestToFileTarget(pWdfRequest);
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
return;
}
STDMETHODIMP_ (void)
CMyQueue::OnRead(
_In_ IWDFIoQueue *pWdfQueue,
_In_ IWDFIoRequest *pWdfRequest,
_In_ SIZE_T BytesToRead
)
/*++
Routine Description:
Read callback from the framework for this default parallel queue
The read request needs to be sent to the file handle i/o target associated with this fileobject
Aruments:
pWdfQueue - Framework Queue instance
pWdfRequest - Framework Request instance
BytesToRead - Lenth of bytes in the read buffer
Return Value:
VOID
--*/
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
UNREFERENCED_PARAMETER(pWdfQueue);
UNREFERENCED_PARAMETER(BytesToRead);
//
// Call helper function to send request to i/o target
//
SendRequestToFileTarget(pWdfRequest);
return;
}
STDMETHODIMP_(void)
CMyQueue::OnCompletion(
_In_ IWDFIoRequest* pWdfRequest,
_In_ IWDFIoTarget* pTarget,
_In_ IWDFRequestCompletionParams* pCompletionParams,
_In_ void* pContext
)
/*++
Routine Description:
This routine is invoked when the request is completed by the lower stack location,
in this case the win32 i/o target associated with the file object of this request
Arguments:
pWdfRequest - wdf request
pTarget - wdf target to which request was earlier sent
pCompletionParams - wdf request completion parameters
pContext - Context information , if any
Return Value:
None
--*/
{
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
UNREFERENCED_PARAMETER(pTarget);
UNREFERENCED_PARAMETER(pContext);
// Complete request from the driver
pWdfRequest->CompleteWithInformation(
pCompletionParams->GetCompletionStatus(),
pCompletionParams->GetInformation());
}
VOID
CMyQueue::SendRequestToFileTarget(
_In_ IWDFIoRequest* pWdfRequest
)
/*++
Routine Description:
This is a helper functiom to send R/W requests to the win32 file i/o target
associated with the socket connection for this request.
First, filecontext is retrieved which has the file i/o target where this request needs to be sent.
Arguments:
pWdfRequest - wdf request
Return Value:
None
--*/
{
HRESULT hr;
FileContext *pContext = NULL;
CComPtr<IWDFFile> pWdfFile = NULL;
Trace(
TRACE_LEVEL_INFORMATION,
"%!FUNC!"
);
//
// Get the file object for this request
//
pWdfRequest->GetFileObject(&pWdfFile);
//
// Retrieve Context from file object
//
hr = pWdfFile->RetrieveContext((void**)&pContext);
if (pContext == NULL)
{
if ( SUCCEEDED(hr) )
{
hr = E_FAIL;
Trace(TRACE_LEVEL_ERROR,
" No Context associated with this file object %!hresult!",
hr);
}
goto Exit;
}
//
// If that succeeds, set completion callback for the request
//
pWdfRequest->SetCompletionCallback(CComQIPtr<IRequestCallbackRequestCompletion>(this),
NULL);
//
// Do not modify the request, format using current type
//
pWdfRequest->FormatUsingCurrentType();
//
// Send the request to the win32 i/o target . This was created in OnCreateFile
//
hr = pWdfRequest->Send(pContext->pFileTarget,
0,
0);
Exit:
if (FAILED(hr))
{
Trace(TRACE_LEVEL_ERROR,
"Could not send request to i/o target %!hresult!",
hr);
pWdfRequest->Complete(hr);
}
return ;
}
STDMETHODIMP_(void)
CMyQueue::OnCleanup(
_In_ IWDFObject* /*pWdfObject*/
)
{
//
// CMyQueue has a reference to framework device object via m_FxQueue.
// Framework queue object has a reference to CMyQueue object via the callbacks.
// This leads to circular reference and both the objects can't be destroyed until this circular reference is broken.
// To break the circular reference we release the reference to the framework queue object here in OnCleanup.
//
m_FxQueue = NULL;
}
|