Sample Code

windows driver samples/ cdfs file system driver/ C++/ pnp.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
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
/*++
 
Copyright (c) 1997-2000 Microsoft Corporation
 
Module Name:
 
    Pnp.c
 
Abstract:
 
    This module implements the Plug and Play routines for CDFS called by
    the dispatch driver.
 
 
--*/
 
#include "CdProcs.h"
 
//
//  The Bug check file id for this module
//
 
#define BugCheckFileId                   (CDFS_BUG_CHECK_PNP)
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpQueryRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    );
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    );
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpSurpriseRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    );
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpCancelRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    );
 
//  Tell prefast this is a completion routine.
IO_COMPLETION_ROUTINE CdPnpCompletionRoutine;
 
NTSTATUS
CdPnpCompletionRoutine (
    _In_ PDEVICE_OBJECT DeviceObject,
    _In_ PIRP Irp,
    _In_reads_opt_(_Inexpressible_("varies")) PVOID Contxt
    );
 
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, CdCommonPnp)
#pragma alloc_text(PAGE, CdPnpCancelRemove)
#pragma alloc_text(PAGE, CdPnpQueryRemove)
#pragma alloc_text(PAGE, CdPnpRemove)
#pragma alloc_text(PAGE, CdPnpSurpriseRemove)
#endif
 
_Requires_lock_held_(_Global_critical_region_)
NTSTATUS
CdCommonPnp (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp
    )
 
/*++
 
Routine Description:
 
    This is the common routine for doing PnP operations called
    by both the fsd and fsp threads
 
Arguments:
 
    Irp - Supplies the Irp to process
 
Return Value:
 
    NTSTATUS - The return status for the operation
 
--*/
 
{
    NTSTATUS Status = STATUS_SUCCESS;
    BOOLEAN PassThrough = FALSE;
     
    PIO_STACK_LOCATION IrpSp;
 
    PVOLUME_DEVICE_OBJECT OurDeviceObject;
    PVCB Vcb;
 
    PAGED_CODE();
 
    // Global lock object is acquired based on internal book-keeping
    _Analysis_suppress_lock_checking_(CdData.DataResource);
 
    //
    //  Get the current Irp stack location.
    //
 
    IrpSp = IoGetCurrentIrpStackLocation( Irp );
 
    //
    //  Find our Vcb.  This is tricky since we have no file object in the Irp.
    //
 
    OurDeviceObject = (PVOLUME_DEVICE_OBJECT) IrpSp->DeviceObject;
 
    //
    //  IO holds a handle reference on our VDO and holds the device lock, which
    //  syncs us against mounts/verifies.  However we hold no reference on the
    //  volume, which may already have been torn down (and the Vpb freed), for
    //  example by a force dismount. Check for this condition. We must hold this
    //  lock until the pnp worker functions take additional locks/refs on the Vcb.
    //
 
    CdAcquireCdData( IrpContext);
     
    //
    //  Make sure this device object really is big enough to be a volume device
    //  object.  If it isn't, we need to get out before we try to reference some
    //  field that takes us past the end of an ordinary device object.   
    //
 
#pragma prefast(suppress: 28175, "this is a filesystem driver, touching the size member is allowed")
    if (OurDeviceObject->DeviceObject.Size != sizeof(VOLUME_DEVICE_OBJECT) ||
        NodeType( &OurDeviceObject->Vcb ) != CDFS_NTC_VCB) {
         
        //
        //  We were called with something we don't understand.
        //
         
        Status = STATUS_INVALID_PARAMETER;
        CdReleaseCdData( IrpContext);
        CdCompleteRequest( IrpContext, Irp, Status );
        return Status;
    }
 
    //
    //  Force all PnP operations to be synchronous.
    //
 
    SetFlag( IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT );
 
    Vcb = &OurDeviceObject->Vcb;
 
    //
    //  Check that the Vcb hasn't already been deleted.  If so,  just pass the
    //  request through to the driver below,  we don't need to do anything.
    //
     
    if (NULL == Vcb->Vpb) {
 
        PassThrough = TRUE;
    }
    else {
 
        //
        //  Case on the minor code.
        //
         
        switch ( IrpSp->MinorFunction ) {
 
            case IRP_MN_QUERY_REMOVE_DEVICE:
                 
                Status = CdPnpQueryRemove( IrpContext, Irp, Vcb );
                break;
             
            case IRP_MN_SURPRISE_REMOVAL:
             
                Status = CdPnpSurpriseRemove( IrpContext, Irp, Vcb );
                break;
 
            case IRP_MN_REMOVE_DEVICE:
 
                Status = CdPnpRemove( IrpContext, Irp, Vcb );
                break;
 
            case IRP_MN_CANCEL_REMOVE_DEVICE:
         
                Status = CdPnpCancelRemove( IrpContext, Irp, Vcb );
                break;
 
            default:
 
                PassThrough = TRUE;
                break;
        }
    }
 
    if (PassThrough) {
 
        CdReleaseCdData( IrpContext);
 
        //
        //  Just pass the IRP on.  As we do not need to be in the
        //  way on return, ellide ourselves out of the stack.
        //
         
        IoSkipCurrentIrpStackLocation( Irp );
 
        Status = IoCallDriver(Vcb->TargetDeviceObject, Irp);
         
        //
        //  Cleanup our Irp Context.  The driver has completed the Irp.
        //
     
        CdCompleteRequest( IrpContext, NULL, STATUS_SUCCESS );
    }
         
    return Status;
}
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpQueryRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    )
 
/*++
 
Routine Description:
 
    This routine handles the PnP query remove operation.  The filesystem
    is responsible for answering whether there are any reasons it sees
    that the volume can not go away (and the device removed).  Initiation
    of the dismount begins when we answer yes to this question.
     
    Query will be followed by a Cancel or Remove.
 
Arguments:
 
    Irp - Supplies the Irp to process
     
    Vcb - Supplies the volume being queried.
 
Return Value:
 
    NTSTATUS - The return status for the operation
 
--*/
 
{
    NTSTATUS Status;
    KEVENT Event;
    BOOLEAN VcbPresent = TRUE;
 
    PAGED_CODE();
 
    ASSERT_EXCLUSIVE_CDDATA;
 
    //
    //  Having said yes to a QUERY, any communication with the
    //  underlying storage stack is undefined (and may block)
    //  until the bounding CANCEL or REMOVE is sent.
    //
    //  Acquire the global resource so that we can try to vaporize the volume,
    //  and the vcb resource itself.
    //
 
    CdAcquireVcbExclusive( IrpContext, Vcb, FALSE );
 
    //
    //  Drop a reference on the Vcb to keep it around after we drop the locks.
    //
     
    CdLockVcb( IrpContext, Vcb);
    Vcb->VcbReference += 1;
    CdUnlockVcb( IrpContext, Vcb);
     
    CdReleaseCdData( IrpContext);
 
    Status = CdLockVolumeInternal( IrpContext, Vcb, NULL );
 
    //
    //  Reacquire the global lock,  which means dropping the Vcb resource.
    //
     
    CdReleaseVcb( IrpContext, Vcb );
     
    CdAcquireCdData( IrpContext );
    CdAcquireVcbExclusive( IrpContext, Vcb, FALSE );
 
    //
    //  Remove our extra reference.
    //
     
    CdLockVcb( IrpContext, Vcb);
    Vcb->VcbReference -= 1;
    CdUnlockVcb( IrpContext, Vcb);
     
    if (NT_SUCCESS( Status )) {
 
        //
        //  We need to pass this down before starting the dismount, which
        //  could disconnect us immediately from the stack.
        //
         
        //
        //  Get the next stack location, and copy over the stack location
        //
 
        IoCopyCurrentIrpStackLocationToNext( Irp );
 
        //
        //  Set up the completion routine
        //
     
        KeInitializeEvent( &Event, NotificationEvent, FALSE );
        IoSetCompletionRoutine( Irp,
                                CdPnpCompletionRoutine,
                                &Event,
                                TRUE,
                                TRUE,
                                TRUE );
 
        //
        //  Send the request and wait.
        //
 
        Status = IoCallDriver(Vcb->TargetDeviceObject, Irp);
 
        if (Status == STATUS_PENDING) {
 
            (VOID)KeWaitForSingleObject( &Event,
                                   Executive,
                                   KernelMode,
                                   FALSE,
                                   NULL );
 
            Status = Irp->IoStatus.Status;
        }
 
        //
        //  Now if no one below us failed already, initiate the dismount
        //  on this volume, make it go away.  PnP needs to see our internal
        //  streams close and drop their references to the target device.
        //
        //  Since we were able to lock the volume, we are guaranteed to
        //  move this volume into dismount state and disconnect it from
        //  the underlying storage stack.  The force on our part is actually
        //  unnecesary, though complete.
        //
        //  What is not strictly guaranteed, though, is that the closes
        //  for the metadata streams take effect synchronously underneath
        //  of this call.  This would leave references on the target device
        //  even though we are disconnected!
        //
 
        if (NT_SUCCESS( Status )) {
             
            VcbPresent = CdCheckForDismount( IrpContext, Vcb, TRUE );
     
            NT_ASSERT( !VcbPresent || Vcb->VcbCondition == VcbDismountInProgress );
        }
 
        //
        //  Note: Normally everything will complete and the internal streams will
        //  vaporise.  However there is some code in the system which drops additional
        //  references on fileobjects,  including our internal stream file objects,
        //  for (WMI) tracing purposes.  If that happens to run concurrently with our
        //  teardown, our internal streams will not vaporise until those references
        //  are removed.  So it's possible that the volume still remains at this
        //  point.  The pnp query remove will fail due to our references on the device.
        //  To be cleaner we will return an error here.  We could pend the pnp
        //  IRP until the volume goes away, but since we don't know when that will
        //  be, and this is a very rare case, we'll just fail the query.
        //
        //  The reason this is the case is that handles/fileobjects place a reference
        //  on the device objects they overly.  In the filesystem case, these references
        //  are on our target devices.  PnP correcly thinks that if references remain
        //  on the device objects in the stack that someone has a handle, and that this
        //  counts as a reason to not succeed the query - even though every interrogated
        //  driver thinks that it is OK.
        //
 
        if (NT_SUCCESS( Status) && VcbPresent && (Vcb->VcbReference != 0)) {
 
            Status = STATUS_DEVICE_BUSY;
        }
    }
     
    //
    //  Release the Vcb if it could still remain.
    //
     
    if (VcbPresent) {
 
        CdReleaseVcb( IrpContext, Vcb );
    }
    else {
        _Analysis_assume_lock_not_held_(Vcb->VcbResource);
    }
 
    CdReleaseCdData( IrpContext );
     
    //
    //  Cleanup our IrpContext and complete the IRP if neccesary.
    //
 
    CdCompleteRequest( IrpContext, Irp, Status );
 
    return Status;
}
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    )
 
/*++
 
Routine Description:
 
    This routine handles the PnP remove operation.  This is our notification
    that the underlying storage device for the volume we have is gone, and
    an excellent indication that the volume will never reappear. The filesystem
    is responsible for initiation or completion the dismount.
 
Arguments:
 
    Irp - Supplies the Irp to process
     
    Vcb - Supplies the volume being removed.
 
Return Value:
 
    NTSTATUS - The return status for the operation
 
--*/
 
{
    NTSTATUS Status;
    KEVENT Event;
    BOOLEAN VcbPresent = TRUE;
 
    PAGED_CODE();
 
    ASSERT_EXCLUSIVE_CDDATA;
 
    //
    //  REMOVE - a storage device is now gone.  We either got
    //  QUERY'd and said yes OR got a SURPRISE OR a storage
    //  stack failed to spin back up from a sleep/stop state
    //  (the only case in which this will be the first warning).
    //
    //  Note that it is entirely unlikely that we will be around
    //  for a REMOVE in the first two cases, as we try to intiate
    //  dismount.
    //
     
    //
    //  Acquire the global resource so that we can try to vaporize
    //  the volume, and the vcb resource itself.
    //
         
    CdAcquireVcbExclusive( IrpContext, Vcb, FALSE );
 
    //
    //  The device will be going away.  Remove our lock and find
    //  out if we ever had one in the first place.
    //
 
    Status = CdUnlockVolumeInternal( IrpContext, Vcb, NULL );
 
    //
    //  If the volume had not been locked, we must invalidate the
    //  volume to ensure it goes away properly.  The remove will
    //  succeed.
    //
 
    if (!NT_SUCCESS( Status )) {
 
        CdLockVcb( IrpContext, Vcb );
         
        if (Vcb->VcbCondition != VcbDismountInProgress) {
             
            CdUpdateVcbCondition( Vcb, VcbInvalid);
        }
         
        CdUnlockVcb( IrpContext, Vcb );
         
        Status = STATUS_SUCCESS;
    }
     
    //
    //  We need to pass this down before starting the dismount, which
    //  could disconnect us immediately from the stack.
    //
     
    //
    //  Get the next stack location, and copy over the stack location
    //
 
    IoCopyCurrentIrpStackLocationToNext( Irp );
 
    //
    //  Set up the completion routine
    //
 
    KeInitializeEvent( &Event, NotificationEvent, FALSE );
    IoSetCompletionRoutine( Irp,
                            CdPnpCompletionRoutine,
                            &Event,
                            TRUE,
                            TRUE,
                            TRUE );
 
    //
    //  Send the request and wait.
    //
 
    Status = IoCallDriver(Vcb->TargetDeviceObject, Irp);
 
    if (Status == STATUS_PENDING) {
 
        (VOID)KeWaitForSingleObject( &Event,
                               Executive,
                               KernelMode,
                               FALSE,
                               NULL );
 
        Status = Irp->IoStatus.Status;
    }
 
    //
    //  Now make our dismount happen.  This may not vaporize the
    //  Vcb, of course, since there could be any number of handles
    //  outstanding if we were not preceeded by a QUERY.
    //
    //  PnP will take care of disconnecting this stack if we
    //  couldn't get off of it immediately.
    //
 
  
    VcbPresent = CdCheckForDismount( IrpContext, Vcb, TRUE );
 
    //
    //  Release the Vcb if it could still remain.
    //
     
    if (VcbPresent) {
 
        CdReleaseVcb( IrpContext, Vcb );
    }
    else {
        _Analysis_assume_lock_not_held_(Vcb->VcbResource);
    }
 
    CdReleaseCdData( IrpContext );
     
    //
    //  Cleanup our IrpContext and complete the IRP.
    //
 
    CdCompleteRequest( IrpContext, Irp, Status );
 
    return Status;
}
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpSurpriseRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    )
 
/*++
 
Routine Description:
 
    This routine handles the PnP surprise remove operation.  This is another
    type of notification that the underlying storage device for the volume we
    have is gone, and is excellent indication that the volume will never reappear.
    The filesystem is responsible for initiation or completion the dismount.
     
    For the most part, only "real" drivers care about the distinction of a
    surprise remove, which is a result of our noticing that a user (usually)
    physically reached into the machine and pulled something out.
     
    Surprise will be followed by a Remove when all references have been shut down.
 
Arguments:
 
    Irp - Supplies the Irp to process
     
    Vcb - Supplies the volume being removed.
 
Return Value:
 
    NTSTATUS - The return status for the operation
 
--*/
 
{
    NTSTATUS Status;
    KEVENT Event;
    BOOLEAN VcbPresent = TRUE;
 
    PAGED_CODE();
 
    ASSERT_EXCLUSIVE_CDDATA;
     
    //
    //  SURPRISE - a device was physically yanked away without
    //  any warning.  This means external forces.
    //
     
    CdAcquireVcbExclusive( IrpContext, Vcb, FALSE );
         
    //
    //  Invalidate the volume right now.
    //
    //  The intent here is to make every subsequent operation
    //  on the volume fail and grease the rails toward dismount.
    //  By definition there is no going back from a SURPRISE.
    //
         
    CdLockVcb( IrpContext, Vcb );
     
    if (Vcb->VcbCondition != VcbDismountInProgress) {
         
        CdUpdateVcbCondition( Vcb, VcbInvalid);
    }
     
    CdUnlockVcb( IrpContext, Vcb );
     
    //
    //  We need to pass this down before starting the dismount, which
    //  could disconnect us immediately from the stack.
    //
     
    //
    //  Get the next stack location, and copy over the stack location
    //
 
    IoCopyCurrentIrpStackLocationToNext( Irp );
 
    //
    //  Set up the completion routine
    //
 
    KeInitializeEvent( &Event, NotificationEvent, FALSE );
    IoSetCompletionRoutine( Irp,
                            CdPnpCompletionRoutine,
                            &Event,
                            TRUE,
                            TRUE,
                            TRUE );
 
    //
    //  Send the request and wait.
    //
 
    Status = IoCallDriver(Vcb->TargetDeviceObject, Irp);
 
    if (Status == STATUS_PENDING) {
 
        (VOID)KeWaitForSingleObject( &Event,
                               Executive,
                               KernelMode,
                               FALSE,
                               NULL );
 
        Status = Irp->IoStatus.Status;
    }
     
    //
    //  Now make our dismount happen.  This may not vaporize the
    //  Vcb, of course, since there could be any number of handles
    //  outstanding since this is an out of band notification.
    //
 
         
    VcbPresent = CdCheckForDismount( IrpContext, Vcb, TRUE );
     
    //
    //  Release the Vcb if it could still remain.
    //
     
    if (VcbPresent) {
 
        CdReleaseVcb( IrpContext, Vcb );
    }
    else {
        _Analysis_assume_lock_not_held_(Vcb->VcbResource);
    }
 
    CdReleaseCdData( IrpContext );
     
    //
    //  Cleanup our IrpContext and complete the IRP.
    //
 
    CdCompleteRequest( IrpContext, Irp, Status );
 
    return Status;
}
 
_Requires_lock_held_(_Global_critical_region_)
_Releases_nonreentrant_lock_(CdData.DataResource)
NTSTATUS
CdPnpCancelRemove (
    _Inout_ PIRP_CONTEXT IrpContext,
    _Inout_ PIRP Irp,
    _Inout_ PVCB Vcb
    )
 
/*++
 
Routine Description:
 
    This routine handles the PnP cancel remove operation.  This is our
    notification that a previously proposed remove (query) was eventually
    vetoed by a component.  The filesystem is responsible for cleaning up
    and getting ready for more IO.
     
Arguments:
 
    Irp - Supplies the Irp to process
     
    Vcb - Supplies the volume being removed.
 
Return Value:
 
    NTSTATUS - The return status for the operation
 
--*/
 
{
    NTSTATUS Status;
 
    PAGED_CODE();
 
    ASSERT_EXCLUSIVE_CDDATA;
 
    //
    //  CANCEL - a previous QUERY has been rescinded as a result
    //  of someone vetoing.  Since PnP cannot figure out who may
    //  have gotten the QUERY (think about it: stacked drivers),
    //  we must expect to deal with getting a CANCEL without having
    //  seen the QUERY.
    //
    //  For CDFS, this is quite easy.  In fact, we can't get a
    //  CANCEL if the underlying drivers succeeded the QUERY since
    //  we disconnect the Vpb on our dismount initiation.  This is
    //  actually pretty important because if PnP could get to us
    //  after the disconnect we'd be thoroughly unsynchronized
    //  with respect to the Vcb getting torn apart - merely referencing
    //  the volume device object is insufficient to keep us intact.
    //
     
    CdAcquireVcbExclusive( IrpContext, Vcb, FALSE );
    CdReleaseCdData( IrpContext);
 
    //
    //  Unlock the volume.  This is benign if we never had seen
    //  a QUERY.
    //
 
    (VOID) CdUnlockVolumeInternal( IrpContext, Vcb, NULL );
 
    CdReleaseVcb( IrpContext, Vcb );
 
    //
    //  Send the request.  The underlying driver will complete the
    //  IRP.  Since we don't need to be in the way, simply ellide
    //  ourselves out of the IRP stack.
    //
 
    IoSkipCurrentIrpStackLocation( Irp );
 
    Status = IoCallDriver(Vcb->TargetDeviceObject, Irp);
 
    CdCompleteRequest( IrpContext, NULL, STATUS_SUCCESS );
 
    return Status;
}
 
 
//
//  Local support routine
//
 
NTSTATUS
CdPnpCompletionRoutine (
    _In_ PDEVICE_OBJECT DeviceObject,
    _In_ PIRP Irp,
    _In_reads_opt_(_Inexpressible_("varies")) PVOID Contxt
    )
{
    PKEVENT Event = (PKEVENT) Contxt;
    _Analysis_assume_(Contxt != NULL);
 
    KeSetEvent( Event, 0, FALSE );
 
    return STATUS_MORE_PROCESSING_REQUIRED;
 
    UNREFERENCED_PARAMETER( DeviceObject );
    UNREFERENCED_PARAMETER( Irp );
    UNREFERENCED_PARAMETER( Contxt );
}

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