Sample Code

Windows Driver Samples/ Toaster Sample Driver/ C++/ umdf/ Toastmon/ RemoteTarget.cpp/

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
/*++
  
Copyright (C) Microsoft Corporation, All Rights Reserved.
 
Module Name:
 
    RemoteTarget.cpp
 
Abstract:
 
    This module contains the implementation of the UMDF sample driver's
    remote interface and remote target callback object.
 
    This sample demonstrates how to open the remote target and register
    and respond to device change notification.
 
Environment:
 
   Windows User-Mode Driver Framework (WUDF)
 
--*/
 
#include "internal.h"
#include "remotetarget.tmh"
 
 
DWORD WINAPI _ThreadProc(
    _In_  LPVOID lpParameter
    )
{
    CMyRemoteTarget *MyRemoteTarget = (CMyRemoteTarget*)lpParameter;
 
    return MyRemoteTarget->ThreadProc();
}
 
HRESULT
CMyRemoteTarget::CreateInstance(
    _In_ CMyDevice           * MyDevice,
    _In_ IWDFDriver          * FxDriver,
    _In_ IWDFDevice2         * FxDevice,
    _In_ IWDFRemoteInterface * FxRemoteInterface,
    _Out_ PCMyRemoteTarget   * MyRemoteTarget
    )
/*++
 
  Routine Description:
 
    This method creates and initializs an instance of the driver's
    remote target callback object.
 
  Arguments:
 
    FxRemoteInterfaceInit - An identifier that specifies the remote toaster device.
 
    MyDevice - a location to store the referenced pointer to the device object.
 
  Return Value:
 
    Status
 
--*/
{
    PCMyRemoteTarget myRemoteTarget;
    HRESULT hr;
 
    //
    // Allocate a new instance of the remote target class.
    //
 
    myRemoteTarget = new CMyRemoteTarget();
 
    if (NULL == myRemoteTarget)
    {
        return E_OUTOFMEMORY;
    }
 
    //
    // Initialize the instance.
    //
 
    hr = myRemoteTarget->Initialize(MyDevice,
                                    FxDriver,
                                    FxDevice,
                                    FxRemoteInterface);
 
    if (SUCCEEDED(hr))
    {
        *MyRemoteTarget = myRemoteTarget;
    }
    else
    {
        myRemoteTarget->Release();
    }
 
    return hr;
}
 
HRESULT
CMyRemoteTarget::Initialize(
    _In_ CMyDevice           * MyDevice,
    _In_ IWDFDriver          * FxDriver,
    _In_ IWDFDevice2         * FxDevice,
    _In_ IWDFRemoteInterface * FxRemoteInterface
    )
/*++
  
  Routine Description:
 
    This method initializes the remote target callback object and creates
    the partner remote target object.
 
  Arguments:
 
    FxRemoteInterface - the identifier for the remote toaster device.
 
  Return Value:
 
    status.
 
--*/
{
    HRESULT hr;
     
    CComPtr<IWDFIoRequest> fxWriteRequest;
    CComPtr<IWDFIoRequest> fxReadRequest;
 
    //
    // Save a weak reference to the class that created us
    // so we can notify it when we get removed
    //
     
    m_MyDevice = MyDevice;
 
    //
    // QueryIUnknown references the IUnknown interface that it returns
    // (which is the same as referencing the CMyRemoteTarget).  We pass that
    // to the various Create* calls, which take their own reference if
    // everything works.
    //
 
    IUnknown * unknown = this->QueryIUnknown();
 
 
    //
    // Create a new FX remote target object and assign the new callback
    // object to handle any remote target level events that occur.
    //
    hr = FxDevice->CreateRemoteTarget(unknown,
                                      FxRemoteInterface,
                                      &m_FxTarget);
 
    if (SUCCEEDED(hr))
    {
        //
        // Open and start the remote target. Note that this sample doesn't
        // perform any impersonation, so we're running as "Local Service"
        // since that is what UMDF driver runs as.
        //
        // Make sure that your Toaster devices all have security ACLs that
        // permit "Local Service" to access the device. The Win7 toaster
        // sample driver INFs have been updated for this. However, if you
        // had previously installed pre-Win7 versions of the Toaster sample
        // driver, the security settings will not be updated by a new driver
        // install, unless the Toaster device class key is deleted.
        //
 
        hr = m_FxTarget->OpenRemoteInterface(FxRemoteInterface,
                                             NULL,
                                             GENERIC_READ | GENERIC_WRITE,
                                             NULL);
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // Create a new FX request object and assign the new callback
        // object to handle any request level events that occur.
        //
        hr = FxDevice->CreateRequest(unknown,
                                     FxRemoteInterface,
                                     &fxWriteRequest);
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // We want to save the newer IWDFIoRequest2 interface instead.
        //
        hr = fxWriteRequest->QueryInterface(IID_PPV_ARGS(&m_FxWriteRequest));
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // Create a buffer for the write request
        //
        hr = FxDriver->CreateWdfMemory(WRITE_BUF_SIZE,
                                       NULL,
                                       FxRemoteInterface,
                                       &m_FxWriteMemory);
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // Create a new FX remote target object and assign the new callback
        // object to handle any remote target level events that occur.
        //
        hr = FxDevice->CreateRequest(unknown,
                                     FxRemoteInterface,
                                     &fxReadRequest);
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // We want to save the newer IWDFIoRequest2 interface instead.
        //
        hr = fxReadRequest->QueryInterface(IID_PPV_ARGS(&m_FxReadRequest));
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // Create a buffer for the read request
        //
        hr = FxDriver->CreateWdfMemory(READ_BUF_SIZE,
                                       NULL,
                                       FxRemoteInterface,
                                       &m_FxReadMemory);
    }
 
    if (SUCCEEDED(hr))
    {
        //
        // Create/Start the thread which will post I/O requests to the remote
        // target.
        //
        // NOTE: This would not be a typical driver pattern. Normally, your
        //       driver would receive some I/O from another caller and you'd
        //       use this I/O as a trigger to post I/O to the remote target.
        //       You may choose to forward the request directly with no changes,
        //       modify the request before sending, or create an entirely
        //       separate request.
        //
        m_hThread = CreateThread(NULL,
                                 0,
                                 _ThreadProc,
                                 this,
                                 0,
                                 NULL);
 
        if (m_hThread == NULL)
        {
            hr = HRESULT_FROM_WIN32(GetLastError());
        }
    }
     
    unknown->Release();
 
    return hr;
}
 
DWORD WINAPI CMyRemoteTarget::ThreadProc(
    VOID
    )
/*++
  
  Routine Description:
 
    This method is the main loop for a thread that posts I/O requests to
    the remote target. The main loop continues until the remote target
    is deleted, which happens in the Dispose() method.
 
--*/
{
    BOOL bContinue = TRUE;
 
    while(bContinue)
    {
        Sleep(100);
         
        switch(m_FxTarget->GetState())
        {
        case WdfIoTargetStarted:
            PostIoRequests();
            break;
             
        case WdfIoTargetClosedForQueryRemove:
            break;
             
        case WdfIoTargetClosed:
        case WdfIoTargetDeleted:
        default:
            bContinue = false;
            break;
        }
    }
 
    return 0;
}
 
void
CMyRemoteTarget::PostIoRequests(
    VOID
    )
{
    HRESULT hr;
 
    if (!m_WriteInProgress)
    {
        //
        // Mark that the request has been sent, so we don't try to send
        // again before the completion routine runs.
        //
        m_WriteInProgress = true;
 
        hr = m_FxTarget->FormatRequestForWrite(m_FxWriteRequest,
                                               NULL,
                                               m_FxWriteMemory,
                                               0,
                                               0);
 
        if (SUCCEEDED(hr))
        {
            m_FxWriteRequest->SetCompletionCallback(this, NULL);
             
            hr = m_FxWriteRequest->Send(m_FxTarget, 0, 0);
        }
         
        if (FAILED(hr))
        {
            m_WriteInProgress = false;
        }
    }
 
    if (!m_ReadInProgress)
    {
        //
        // Mark that the request has been sent, so we don't try to send
        // again before the completion routine runs.
        //
        m_ReadInProgress = true;
         
        hr = m_FxTarget->FormatRequestForRead(m_FxReadRequest,
                                              NULL,
                                              m_FxReadMemory,
                                              0,
                                              0);
 
        if (SUCCEEDED(hr))
        {
            m_FxReadRequest->SetCompletionCallback(this, NULL);
             
            hr = m_FxReadRequest->Send(m_FxTarget, 0, 0);
        }
         
        if (FAILED(hr))
        {
            m_ReadInProgress = true;
        }
    }
}
 
HRESULT
CMyRemoteTarget::QueryInterface(
    _In_  REFIID  InterfaceId,
    _Out_ PVOID * Object
    )
/*++
 
  Routine Description:
 
    This method is called to get a pointer to one of the object's callback
    interfaces.
 
  Arguments:
 
    InterfaceId - the interface being requested
 
    Object - a location to store the interface pointer if successful
 
  Return Value:
 
    S_OK or E_NOINTERFACE
 
--*/
{
    HRESULT hr;
 
    if(IsEqualIID(InterfaceId, __uuidof(IRequestCallbackRequestCompletion)))
    {   
        *Object = QueryIRequestCallbackRequestCompletion();
        hr = S_OK; 
    }
    else if(IsEqualIID(InterfaceId, __uuidof(IRemoteTargetCallbackRemoval)))
    {   
        *Object = QueryIRemoteTargetCallbackRemoval();
        hr = S_OK; 
    }
    else if(IsEqualIID(InterfaceId, __uuidof(IObjectCleanup)))
    {   
        *Object = QueryIObjectCleanup();
        hr = S_OK; 
    }
    else
    {
        hr = CUnknown::QueryInterface(InterfaceId, Object);
    }
     
    return hr;
}
 
//
// IRequestCallbackRequestCompletion
//
void
STDMETHODCALLTYPE
CMyRemoteTarget::OnCompletion(
    _In_ IWDFIoRequest               * FxRequest,
    _In_ IWDFIoTarget                * /* FxTarget */,
    _In_ IWDFRequestCompletionParams * /* Params */,
    _In_ void*                         /* Context */
    )
{
    IWDFRequestCompletionParams * CompletionParams;
 
    FxRequest->GetCompletionParams(&CompletionParams);
     
    if (CompletionParams->GetCompletedRequestType() == WdfRequestRead)
    {
        m_FxReadRequest->Reuse(E_FAIL);
        m_ReadInProgress = false;
    }
    if (CompletionParams->GetCompletedRequestType() == WdfRequestWrite)
    {
        m_FxWriteRequest->Reuse(E_FAIL);
        m_WriteInProgress = false;
    }
 
    CompletionParams->Release();
}
 
//
// IRemoteTargetCallbackRemoval
//
BOOL
STDMETHODCALLTYPE
CMyRemoteTarget::OnRemoteTargetQueryRemove(
    _In_ IWDFRemoteTarget * /* FxTarget */
    )
{
    m_FxTarget->CloseForQueryRemove();
 
    //
    // Return FALSE if you want to VETO the Query
    //
     
    return TRUE;
}
 
VOID
STDMETHODCALLTYPE
CMyRemoteTarget::OnRemoteTargetRemoveCanceled(
    _In_ IWDFRemoteTarget * /* FxTarget */
    )
{
    if (FAILED(m_FxTarget->Reopen()))
    {
        m_FxTarget->Close();
    }
}
 
VOID
STDMETHODCALLTYPE
CMyRemoteTarget::OnRemoteTargetRemoveComplete(
    _In_ IWDFRemoteTarget * /* FxTarget */
    )
{
    //
    // The remote device has been removed, so we close the target for good.
    // The rest of cleanup will occur when the framework handles the removal
    // of the RemoteInterface
    //
 
    m_FxTarget->Close();
}
 
 
//
// IObjectCleanup
//
 
void
STDMETHODCALLTYPE
CMyRemoteTarget::OnCleanup(
    _In_ IWDFObject * /* FxObject */
    )
{
    if (m_hThread != NULL)
    {
        if (m_FxTarget->GetState() != WdfIoTargetClosed)
        {
            //
            // Close the target if it's still open.
            //
            // If the target has already gone through RemoveComplete, it should
            // already be closed.
            //
            // If the Target interface is disabled without the device being
            // removed, the target will still be open until now.
            //
            // If the ToastMon device itself is removed while a target is
            // still active, we'll now close it.
            //
            m_FxTarget->Close();
        }
         
        //
        // Wait for the Thread to complete
        //
        WaitForSingleObject(m_hThread, INFINITE);
 
        CloseHandle(m_hThread);
 
        m_hThread = NULL;
         
        //
        // Remove ourselves from the list of Remote Targets
        //
        RemoveEntryList(&m_Entry);
    }
     
    m_FxTarget = NULL;
    m_FxWriteRequest = NULL;
    m_FxReadRequest = NULL;
}

Our Services

  • What our customers say about us?

© 2011-2025 All Rights Reserved. Joya Systems. 4425 South Mopac Building II Suite 101 Austin, TX 78735 Tel: 800-DEV-KERNEL

Privacy Policy. Terms of use. Valid XHTML & CSS