ocrwblk.c
40.4 KB
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
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
OcrwBulk.c
Abstract:
Bulk USB device driver for Intel 82930 USB test board
Read/write io test code
Environment:
kernel mode only
Notes:
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Copyright (c) 1997-1998 Microsoft Corporation. All Rights Reserved.
Revision History:
11/17/97 : created
--*/
#include "wdm.h"
#include "stdarg.h"
#include "stdio.h"
#define DRIVER
#include "usbdi.h"
#include "usbdlib.h"
#include "Blk82930.h"
NTSTATUS
BulkUsb_SingleUrbReadWrite(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN BOOLEAN Read
)
/*++
Routine Description:
This routine is called by BulkUsb_StagedReadWrite() for transfers that
are smaller than deviceExtension->MaximumTransferSize and therefore don't
need to be broken up into chunks
Arguments:
DeviceObject - pointer to our FDO ( Functional Device Object )
Irp - pointer to the IRP_MJ_READ or IRP_MJ_WRITE
Read - TRUE for read, FALSE for write
Return Value:
NT status code
--*/
{
int totalLength = 0;
NTSTATUS ntStatus;
ULONG siz;
PURB urb;
PFILE_OBJECT fileObject;
PIO_STACK_LOCATION irpStack, nextStack;
PUSBD_PIPE_INFORMATION pipeHandle = NULL;
PDEVICE_EXTENSION deviceExtension = DeviceObject->DeviceExtension;
BULKUSB_KdPrint ( DBGLVL_HIGH, (" Enter BulkUsb_SingleUrbReadWrite\n"));
// We should have already checked this in BulkUsb_StagedReadWrite();
BULKUSB_ASSERT( BulkUsb_CanAcceptIoRequests( DeviceObject ) );
Irp->IoStatus.Information = 0;
siz = sizeof(struct _URB_BULK_OR_INTERRUPT_TRANSFER);
irpStack = IoGetCurrentIrpStackLocation (Irp);
fileObject = irpStack->FileObject;
pipeHandle = fileObject->FsContext;
if (!pipeHandle)
{
ntStatus = STATUS_INVALID_HANDLE;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_SingleUrbReadWrite() Rejecting on invalid pipeHandle 0x%x decimal %d\n",pipeHandle, pipeHandle ));
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
BULKUSB_ASSERT( UsbdPipeTypeBulk == pipeHandle->PipeType );
if ( Irp->MdlAddress ) { // could be NULL for 0-len request
totalLength = MmGetMdlByteCount(Irp->MdlAddress);
}
// Build our URB for USBD
urb = BulkUsb_BuildAsyncRequest(DeviceObject,
Irp,
pipeHandle,
Read);
if ( !urb ) {
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_SingleUrbReadWrite()failed to alloc urb\n" ));
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
deviceExtension->BaseUrb = urb; // save pointer to URb we alloced for this xfer; we free in completion routine
//
// Now that we have created the urb, we will send a
// request to the USB device object.
//
//
// Call the class driver to perform the operation.
// IoGetNextIrpStackLocation gives a higher level driver access to the next-lower
// driver's I/O stack location in an IRP so the caller can set it up for the lower driver.
nextStack = IoGetNextIrpStackLocation(Irp);
BULKUSB_ASSERT(nextStack != NULL);
//
// pass the URB to the USB driver stack
//
nextStack->Parameters.Others.Argument1 = urb;
nextStack->MajorFunction = IRP_MJ_INTERNAL_DEVICE_CONTROL;
nextStack->Parameters.DeviceIoControl.IoControlCode =
IOCTL_INTERNAL_USB_SUBMIT_URB;
IoSetCompletionRoutine(
Irp, // irp to use
BulkUsb_SimpleReadWrite_Complete, // routine to call when irp is done
DeviceObject, // we pass our FDO as context to pass routine
TRUE, // call on success
TRUE, // call on error
TRUE); // call on cancel
//
// Call IoCallDriver to send the irp to the usb port.
//
BULKUSB_KdPrint ( DBGLVL_HIGH, (" BulkUsb_SingleUrbReadWrite about to IoCallDriver\n"));
BulkUsb_IncrementIoCount(DeviceObject);
ntStatus = IoCallDriver(deviceExtension->TopOfStackDeviceObject, Irp );
BULKUSB_KdPrint ( DBGLVL_HIGH, (" BulkUsb_SingleUrbReadWrite after IoCallDriver status (pending) 0x%x\n", ntStatus));
//
// The USB driver should always return STATUS_PENDING when
// it receives an irp with major function code IRP_MJ_WRITE or IRP_MJ_READ.
//
ASSERT( ntStatus == STATUS_PENDING);
BULKUSB_KdPrint ( DBGLVL_HIGH, (" Exit BulkUsb_SingleUrbReadWrite\n"));
return ntStatus;
}
NTSTATUS
BulkUsb_StagedReadWrite(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN BOOLEAN Read
)
/*++
Routine Description:
This routine is called by BulkUsb_Read() for IRP_MJ_READ.
This routine is called by BulkUsb_Write() for IRP_MJ_WRITE.
Breaks up a read or write in to specified sized chunks,
as specified by deviceExtension->MaximumTransferSize
Arguments:
DeviceObject - pointer to our FDO ( Functional Device Object )
Irp - pointer to the IRP_MJ_READ or IRP_MJ_WRITE
Read - TRUE for read, FALSE for write
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus = STATUS_SUCCESS;
NTSTATUS resetPipeStatus;
PFILE_OBJECT fileObject;
PIO_STACK_LOCATION irpStack, nextStack;
PURB urb;
PIRP irp;
PMDL mdl;
PVOID va;
CHAR stackSize;
KIRQL OldIrql;
BOOLEAN fRes;
NTSTATUS waitStatus;
ULONG i, nIrps = 0, totalLength = 0, totalIrpsNeeded, used;
PUSBD_PIPE_INFORMATION pipeHandle = NULL;
PDEVICE_EXTENSION deviceExtension = DeviceObject->DeviceExtension;
PUCHAR pCon = NULL;
ULONG ChunkSize = deviceExtension->MaximumTransferSize;
ULONG arraySize;
PBULKUSB_RW_CONTEXT context = NULL;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("enter BulkUsb_StagedReadWrite()\n"));
Irp->IoStatus.Information = 0;
// Can't accept a new io request if:
// 1) device is removed,
// 2) has never been started,
// 3) is stopped,
// 4) has a remove request pending,
// 5) has a stop device pending
if ( !BulkUsb_CanAcceptIoRequests( DeviceObject ) ) {
ntStatus = STATUS_DELETE_PENDING;
Irp->IoStatus.Status = ntStatus;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() can't accept requests, returning STATUS_INSUFFICIENT_RESOURCES\n"));
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
if ( Irp->MdlAddress ) { // could be NULL for 0-len request
totalLength = MmGetMdlByteCount(Irp->MdlAddress);
}
BULKUSB_KdPrint ( DBGLVL_HIGH, ("BulkUsb_StagedReadWrite() totalLength = decimal %d, Irp->MdlAddress = 0x%x\n",totalLength, Irp->MdlAddress ));
if ( totalLength <= deviceExtension->MaximumTransferSize ) {
// for short or zero-len transfers, no need to do the staging; do it in a single request
return BulkUsb_SingleUrbReadWrite( DeviceObject, Irp, Read );
}
irpStack = IoGetCurrentIrpStackLocation (Irp);
fileObject = irpStack->FileObject;
pipeHandle = fileObject->FsContext;
if (!pipeHandle)
{
ntStatus = STATUS_INVALID_HANDLE;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() Rejecting on invalid pipeHandle 0x%x decimal %d\n",pipeHandle, pipeHandle ));
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
//
// submit the request to USB
//
BULKUSB_ASSERT( UsbdPipeTypeBulk == pipeHandle->PipeType );
BULKUSB_ASSERT( NULL != Irp->MdlAddress );
BULKUSB_ASSERT(totalLength > deviceExtension->MaximumTransferSize );
// more memory than is on our test device?
if ( totalLength > BULKUSB_TEST_BOARD_TRANSFER_BUFFER_SIZE )
{
ntStatus = STATUS_INVALID_PARAMETER;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() Rejecting on too large request 0x%x decimal %d\n",totalLength, totalLength ));
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
// calculate total # of staged irps that will be needed
totalIrpsNeeded = totalLength / deviceExtension->MaximumTransferSize ;
if ( totalLength % deviceExtension->MaximumTransferSize )
totalIrpsNeeded++;
BULKUSB_ASSERT( !deviceExtension->PendingIoIrps ); // this should have been cleaned up last time
BULKUSB_ASSERT( !deviceExtension->BaseIrp ); // this should have been cleaned up last time
used = 0;
// alloc one extra for termination
arraySize = ( totalIrpsNeeded +1 ) * sizeof(BULKUSB_RW_CONTEXT);
// allocate space for an array of BULKUSB_RW_CONTEXT structs for the staged irps
deviceExtension->PendingIoIrps = BULKUSB_ExAllocatePool(NonPagedPool, arraySize );
if ( !deviceExtension->PendingIoIrps ) {
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() !deviceExtension->PendingIoIrps STATUS_INSUFFICIENT_RESOURCES\n"));
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest (Irp, IO_NO_INCREMENT );
return ntStatus;
}
RtlZeroMemory(deviceExtension->PendingIoIrps, arraySize );
// init ptr to 1st BULKUSB_RW_CONTEXT struct in array
pCon = (PUCHAR) deviceExtension->PendingIoIrps;
deviceExtension->BaseIrp = Irp; // this is the original user's irp
deviceExtension->StagedBytesTransferred = 0;
deviceExtension->StagedPendingIrpCount = totalIrpsNeeded;
// we need to build a series of irps & urbs to represent
// this request.
while (NT_SUCCESS(ntStatus) ) {
context = (PBULKUSB_RW_CONTEXT) pCon;
irp = NULL;
urb = NULL;
mdl = NULL;
if ( !BulkUsb_CanAcceptIoRequests( DeviceObject ) ) {
// got sudden remove! ( i.e. plug was yanked )
ntStatus = STATUS_DELETE_PENDING;
Irp->IoStatus.Status = ntStatus;
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("BulkUsb_StagedReadWrite() got sudden remove, breaking out of URB-building loop\n"));
break;
}
stackSize = (CCHAR)(deviceExtension->TopOfStackDeviceObject->StackSize + 1);
irp = IoAllocateIrp(stackSize, FALSE);
// Get the virtual address for the buffer described by
// our original input Irp's MDL.
va = MmGetMdlVirtualAddress(Irp->MdlAddress);
if (irp) {
// Each new Irp will 'see' the entire buffer, but map it's IO location
// to a single ChunkSize section within it via IoBuildPartialMdl()
mdl = IoAllocateMdl(va,
totalLength,
FALSE,
FALSE,
irp);
}
if (mdl) {
// see if we're done yet
if( ( used + ChunkSize ) > totalLength ) {
// make sure to truncate last transfer if neccy
ChunkSize = totalLength - used;
}
// Map the sub-area of the full user buffer this staged Irp will be using for IO
IoBuildPartialMdl(Irp->MdlAddress, // Points to an MDL describing the original buffer,
// of which a subrange is to be mapped
mdl, // our allocated target mdl
(PUCHAR)va + used, // base virtual address of area to be mapped
ChunkSize); // size of area to be mapped
used+=ChunkSize;
urb = BulkUsb_BuildAsyncRequest(DeviceObject,
irp,
pipeHandle,
Read);
}
if (urb && irp && mdl) {
context->Urb = urb;
context->DeviceObject = DeviceObject;
context->Irp = irp;
context->Mdl = mdl;
nIrps++;
// IoGetNextIrpStackLocation gives a higher level driver access to the next-lower
// driver's I/O stack location in an IRP so the caller can set it up for the lower driver.
nextStack = IoGetNextIrpStackLocation(irp);
BULKUSB_ASSERT(nextStack != NULL);
BULKUSB_ASSERT(DeviceObject->StackSize>1);
nextStack->MajorFunction = IRP_MJ_INTERNAL_DEVICE_CONTROL;
nextStack->Parameters.Others.Argument1 = urb;
nextStack->Parameters.DeviceIoControl.IoControlCode =
IOCTL_INTERNAL_USB_SUBMIT_URB;
IoSetCompletionRoutine(irp,
BulkUsb_AsyncReadWrite_Complete,
context, // pass the context array element to completion routine
TRUE, // invoke on success
TRUE, // invoke on error
TRUE); // invoke on cancellation of the Irp
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("BulkUsb_StagedReadWrite() created staged irp #%d %x\n", nIrps, irp));
// We keep an array of all pending read/write Irps; we may have to cancel
// them explicitly on sudden device removal or other error
(( PBULKUSB_RW_CONTEXT) pCon)->Irp = irp;
BulkUsb_IncrementIoCount(DeviceObject);
ntStatus = IoCallDriver(deviceExtension->TopOfStackDeviceObject,
(( PBULKUSB_RW_CONTEXT) pCon)->Irp);
} else {
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() Dumped from irp loop on failed Irp or urb allocate\n"));
break;
}
if (used >= totalLength) {
break; // we're done
}
// point to next BULKUSB_RW_CONTEXT struct
pCon += sizeof(BULKUSB_RW_CONTEXT);
} // end while
Irp->IoStatus.Status = ntStatus;
if (!NT_SUCCESS(ntStatus)) {
BULKUSB_KdPrint ( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() FAILED, ntStatus = 0x%x\n", ntStatus));
// try to reset the pipe on error ( unless device has been suddenly removed )
if ( pipeHandle && BulkUsb_CanAcceptIoRequests( DeviceObject ) ) {
resetPipeStatus = BulkUsb_ResetPipe(DeviceObject, pipeHandle );
BULKUSB_KdPrint( DBGLVL_DEFAULT, ("BulkUsb_StagedReadWrite() Tried to reset pipe 0x%x, Status = 0x%x\n", pipeHandle, resetPipeStatus));
BULKUSB_KdPrintCond ( DBGLVL_DEFAULT, (!NT_SUCCESS(resetPipeStatus)), ("BulkUsb_StagedReadWrite() BulkUsb_ResetPipe() FAILED\n"));
if( !NT_SUCCESS(resetPipeStatus) ) {
// if can't reset pipe, try to reset device ( parent port )
BULKUSB_KdPrint( DBGLVL_DEFAULT, ("Will try to reset device \n"));
resetPipeStatus = BulkUsb_ResetDevice(DeviceObject);
BULKUSB_KdPrintCond ( DBGLVL_DEFAULT, (!NT_SUCCESS(resetPipeStatus)), ("BulkUsb_StagedReadWrite() BulkUsb_ResetDevice() FAILED\n"));
}
}
} // end, if !NT_SUCCESS( ntStatus )
if ( 0 == nIrps ) {
// only complete the request here if we created no staged irps
BULKUSB_KdPrint ( DBGLVL_HIGH, ("BulkUsb_StagedReadWrite() 0 irps staged, completing base IRP now!\n"));
IoCompleteRequest (Irp, IO_NO_INCREMENT );
} else {
BULKUSB_KdPrint ( DBGLVL_HIGH, ("BulkUsb_StagedReadWrite() %d irps staged\n", nIrps));
// We need to protect the below test with the spinlock because it is possible for
// BulkUsb_AsynReadWriteComplete() to fire off while we are in this code
KeAcquireSpinLock(&deviceExtension->FastCompleteSpinlock, &OldIrql);
if ( deviceExtension->BaseIrp ) {
//
// Mark the original input Irp pending; it will be completed when the last staged irp
// is handled ( in BulkUsb_AsyncReadWrite_Complete() ).
//
BULKUSB_KdPrint ( DBGLVL_HIGH, ("BulkUsb_StagedReadWrite(),marking base IRP 0x%x pending!\n", Irp));
BULKUSB_ASSERT( Irp == deviceExtension->BaseIrp );
ntStatus = STATUS_PENDING;
Irp->IoStatus.Status = ntStatus;
IoMarkIrpPending(Irp);
} else {
// It is possible for BulkUsb_AsyncReadWrite_Complete() to have completed the
// original irp before we even get here!
// If this happens, it will have NULLED-out deviceExtension->BaseIrp.
ntStatus = STATUS_SUCCESS;
}
KeReleaseSpinLock (&deviceExtension->FastCompleteSpinlock, OldIrql);
}
BULKUSB_KdPrint ( DBGLVL_HIGH, ("BulkUsb_StagedReadWrite() StagedReadWrite ntStatus = 0x%x decimal %d\n", ntStatus, ntStatus));
BULKUSB_KdPrint ( DBGLVL_HIGH, ("EXIT BulkUsb_StagedReadWrite() gExAllocCount = dec %d\n", gExAllocCount ));
return ntStatus;
}
PURB
BulkUsb_BuildAsyncRequest(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PUSBD_PIPE_INFORMATION PipeHandle,
IN BOOLEAN Read
)
/*++
Routine Description:
Called from BulkUsb_StageReadWrite() for IRP_MJ_READ or IRP_MJ_WRITE
Arguments:
DeviceObject - pointer to the FDO ( Functional Device Object )
Irp - A staged IRP allocated and mapped by this driver in BulkUsb_StageReadWrite()
to perform a single deviceExtension->MaximumTransferSize IO request
PipeHandle - handle to the endpoint we're reading or writing
Read - TRUE for reads, FALSE for writes
Return Value:
ptr to initialized async urb. ( USB Request Block )
--*/
{
ULONG siz;
ULONG length = 0;
PURB urb = NULL;
if (Irp->MdlAddress) { // could be NULL for 0-len request
length = MmGetMdlByteCount(Irp->MdlAddress);
}
siz = sizeof(struct _URB_BULK_OR_INTERRUPT_TRANSFER);
urb = BULKUSB_ExAllocatePool(NonPagedPool, siz);
BULKUSB_KdPrint( DBGLVL_MAXIMUM,("Enter BulkUsb_BuildAsyncRequest() len = 0x%x decimal %d \n siz = 0x%x urb 0x%x\n Pipehandle 0x%x\n", length, length, siz, urb, PipeHandle));
if (urb) {
RtlZeroMemory(urb, siz);
urb->UrbBulkOrInterruptTransfer.Hdr.Length = (USHORT) siz;
urb->UrbBulkOrInterruptTransfer.Hdr.Function =
URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER;
urb->UrbBulkOrInterruptTransfer.PipeHandle =
PipeHandle->PipeHandle;
urb->UrbBulkOrInterruptTransfer.TransferFlags =
Read ? USBD_TRANSFER_DIRECTION_IN : 0;
// short packet is not treated as an error.
urb->UrbBulkOrInterruptTransfer.TransferFlags |=
USBD_SHORT_TRANSFER_OK;
//
// not using linked urb's
//
urb->UrbBulkOrInterruptTransfer.UrbLink = NULL;
urb->UrbBulkOrInterruptTransfer.TransferBufferMDL =
Irp->MdlAddress;
urb->UrbBulkOrInterruptTransfer.TransferBufferLength =
length;
BULKUSB_KdPrint( DBGLVL_MAXIMUM,("BulkUsb_BuildAsyncRequest() Init async urb Length = 0x%x decimal %d, buf = 0x%x\n",
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbBulkOrInterruptTransfer.TransferBuffer));
}
BULKUSB_KdPrint( DBGLVL_MAXIMUM,("exit BulkUsb_BuildAsyncRequest\n"));
return urb;
}
NTSTATUS
BulkUsb_AsyncReadWrite_Complete(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PVOID Context
)
/*++
Routine Description:
Completion routine for our staged read/write Irps
Arguments:
DeviceObject - Pointer to the device object for next lower device
in the driver stack;
Irp - Irp completed.
Context - Driver defined context.
Return Value:
The function value is the final status from the operation.
--*/
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PURB urb;
KIRQL OldIrql;
PBULKUSB_RW_CONTEXT context = Context;
PIO_STACK_LOCATION irpStack;
PDEVICE_OBJECT deviceObject;
PDEVICE_EXTENSION deviceExtension;
// We have to get the deviceObject from the context, since the DeviceObject passed in
// here belongs to the next lower driver in the stack because we were invoked via
// IoCallDriver in BulkUsb_StagedReadWrite()
deviceObject = context->DeviceObject;
deviceExtension = deviceObject->DeviceExtension;
// prevent BulkUsb_StagedReadWrite() from testing deviceExtension->BaseIrp while this routine is running
KeAcquireSpinLock(&deviceExtension->FastCompleteSpinlock, &OldIrql);
// Since we own the irp, the current stack location is invalid and calling IoMarkIrpPending will
// corrupt pool.
// If the lower driver returned PENDING, mark our stack location as pending also.
//if ( Irp->PendingReturned ) {
// IoMarkIrpPending(Irp);
//}
BULKUSB_ASSERT( deviceExtension->PendingIoIrps );
BULKUSB_ASSERT( deviceExtension->BaseIrp );
BULKUSB_ASSERT( context->Irp == Irp );
urb = context->Urb;
BULKUSB_KdPrint( DBGLVL_MAXIMUM, ("\n\n ENTER BulkUsb_AsyncReadWrite_Complete(): Length 0x%08X decimal %d\n Status 0x%08X\n",
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbHeader.Status));
// decrement count of staged pending irps
deviceExtension->StagedPendingIrpCount--;
// decrement the driver's overall pending irp count
BulkUsb_DecrementIoCount(deviceObject);
//
// IoCallDriver has been called on this Irp;
// Set the length based on the TransferBufferLength
// value in the URB
//
Irp->IoStatus.Information =
urb->UrbBulkOrInterruptTransfer.TransferBufferLength;
ntStatus = STATUS_MORE_PROCESSING_REQUIRED;
deviceExtension->StagedBytesTransferred +=
urb->UrbBulkOrInterruptTransfer.TransferBufferLength;
BULKUSB_KdPrint ( DBGLVL_MAXIMUM,("BulkUsb_AsyncReadWrite_Complete(): Staged Async Completion %d, bytes = %d\n",
deviceExtension->StagedPendingIrpCount,
deviceExtension->StagedBytesTransferred));
IoFreeIrp(context->Irp);
context->Irp = NULL;
IoFreeMdl(context->Mdl);
context->Mdl = NULL;
if (deviceExtension->StagedPendingIrpCount == 0) {
BULKUSB_KdPrint ( DBGLVL_HIGH,("BulkUsb_AsyncReadWrite_Complete(): StagedPendingIrpCount == 0, completeting BaseIrp 0x%x\n Total bytes xferred = 0x%x, decimal %d\n", deviceExtension->BaseIrp, deviceExtension->StagedBytesTransferred, deviceExtension->StagedBytesTransferred));
deviceExtension->BaseIrp->IoStatus.Status = STATUS_SUCCESS;
deviceExtension->BaseIrp->IoStatus.Information =
deviceExtension->StagedBytesTransferred;
IoCompleteRequest(deviceExtension->BaseIrp,
IO_NO_INCREMENT);
BULKUSB_ExFreePool( deviceExtension->PendingIoIrps );
deviceExtension->PendingIoIrps = NULL;
deviceExtension->BaseIrp = NULL;
// the event is only waited on if BulkUsb_CancelPendingIo() has been called
KeSetEvent(&deviceExtension->StagingDoneEvent, 1, FALSE);
}
BULKUSB_ExFreePool(urb);
BULKUSB_KdPrint ( DBGLVL_HIGH, ("Exit BulkUsb_AsyncReadWrite_Complete() gExAllocCount = dec %d\n", gExAllocCount ));
BULKUSB_KdPrint ( DBGLVL_MAXIMUM,("Exit BulkUsb_AsyncReadWrite_Complete(), ntStatus = 0x%x\n\n",ntStatus ));
KeReleaseSpinLock (&deviceExtension->FastCompleteSpinlock, OldIrql);
return ntStatus;
}
NTSTATUS
BulkUsb_SimpleReadWrite_Complete(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PVOID Context
)
/*++
Routine Description:
Completion routine for our single-urb short read/write transfers
Arguments:
DeviceObject - Pointer to the device object for next lower device
in the driver stack;
Irp - Irp completed.
Context - our FDO.
Return Value:
The function value is the final status from the operation.
--*/
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PURB urb;
PDEVICE_OBJECT deviceObject;
PDEVICE_EXTENSION deviceExtension;
// We have to get the deviceObject from the context, since the DeviceObject passed in
// here belongs to the next lower driver in the stack because we were invoked via
// IoCallDriver in BulkUsb_SingleUrbReadWrite(); we want OUR device object
deviceObject = (PDEVICE_OBJECT) Context;
deviceExtension = deviceObject->DeviceExtension;
urb = deviceExtension->BaseUrb; //get the urb we alloced for this xfer
// If the lower driver returned PENDING, mark our stack location as pending also.
if ( Irp->PendingReturned ) {
IoMarkIrpPending(Irp);
}
BULKUSB_KdPrint( DBGLVL_MAXIMUM, ("\n\n ENTER BulkUsb_SimpleReadWrite_Complete(): Length 0x%08X decimal %d\n Status 0x%08X\n",
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbBulkOrInterruptTransfer.TransferBufferLength,
urb->UrbHeader.Status));
// decrement the driver's overall pending irp count
BulkUsb_DecrementIoCount(deviceObject);
//
// IoCallDriver has been called on this Irp;
// Set the length based on the TransferBufferLength
// value in the URB
//
Irp->IoStatus.Information =
urb->UrbBulkOrInterruptTransfer.TransferBufferLength;
ntStatus = STATUS_MORE_PROCESSING_REQUIRED;
Irp->IoStatus.Status = STATUS_SUCCESS;
IoCompleteRequest( Irp,
IO_NO_INCREMENT);
deviceExtension->BaseUrb = NULL;
BULKUSB_ExFreePool(urb);
BULKUSB_KdPrint ( DBGLVL_MAXIMUM,("Exit BulkUsb_SimpleReadWrite_Complete(), ntStatus = 0x%x\n\n",ntStatus ));
return ntStatus;
}
NTSTATUS
BulkUsb_Read(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
/*++
Routine Description:
This is the IRP_MJ_READ routine set in our dispatch table;
ReadFile() calls from user mode ultimately land here
Arguments:
DeviceObject - pointer to the device object for this instance of the 82930
device.
IRP - pointer to the IRP_MJ_READ
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus = BulkUsb_StagedReadWrite(DeviceObject,
Irp,
TRUE); // false to write, true to read
return ntStatus;
}
NTSTATUS
BulkUsb_Write(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
/*++
Routine Description:
This is the IRP_MJ_WRITE routine set in our dispatch table;
WriteFile() calls from user mode ultimately land here
Arguments:
DeviceObject - pointer to the device object for this instance of the 82930
device.
IRP - pointer to the IRP_MJ_WRITE
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus = BulkUsb_StagedReadWrite(DeviceObject,
Irp,
FALSE); // false to write, true to read
return ntStatus;
}
PBULKUSB_PIPEINFO BulkUsb_PipeWithName(
IN PDEVICE_OBJECT DeviceObject,
IN PUNICODE_STRING FileName
)
/*++
Routine Description:
Given a PUSBD_PIPE_INFORMATION, return our device extension pipe info struct
that has this hanndle, else NULL
--*/
{
PDEVICE_EXTENSION deviceExtension = DeviceObject->DeviceExtension;
PBULKUSB_PIPEINFO pipeInfo = NULL;
ULONG i, nameLen, ix, uval , umultiplier;
nameLen = FileName->Length;
if (nameLen != 0) {
BULKUSB_KdPrint( DBGLVL_DEFAULT,("BulkUsb_PipeWithName FileName = %ws\n", FileName->Buffer ));
// Get pipe# to open
ix = nameLen -1; // index last char of pipe name
// if last char isn't digit, decrement till it is
while( ( (FileName->Buffer[ ix ] < (WCHAR) '0') ||
(FileName->Buffer[ ix ] > (WCHAR) '9') ) && ix )
ix--;
if ( ix ) { // filename better have had at least one ascii digit!
//
// A name was specified, convert it to a pipe id.
// Parse the ansi ascii decimal 0-based pipe number
//
uval = 0;
umultiplier = 1;
// we're traversing least-to-most significant digits
while( ( (FileName->Buffer[ ix ] >= (WCHAR) '0') &&
(FileName->Buffer[ ix ] <= (WCHAR) '9') ) && ix ) {
uval += (umultiplier *
(ULONG) (FileName->Buffer[ ix ] - (WCHAR) '0'));
ix--;
umultiplier *= 10;
}
}
pipeInfo = &deviceExtension->PipeInfo[ uval ];
}
BULKUSB_KdPrint ( DBGLVL_HIGH, ("Exit BulkUsb_PipeWithName() pipeInfo = 0x%x, ix = %d\n", pipeInfo, uval ));
return pipeInfo;
}
NTSTATUS
BulkUsb_Close(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
/*++
Routine Description:
This is the dispatch table routine for IRP_MJ_CLOSE.
It handles user mode CloseHandle() calls for a pipe
It closes the File Object for the pipe handle it represents.
Arguments:
DeviceObject - pointer to our FDO (Functional Device Object )
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus;
NTSTATUS actStat;
PFILE_OBJECT fileObject;
PIO_STACK_LOCATION irpStack;
PDEVICE_EXTENSION deviceExtension;
PUSBD_PIPE_INFORMATION pipeHandle = NULL;
PBULKUSB_PIPEINFO pipeInfo = NULL;
BULKUSB_KdPrint( DBGLVL_DEFAULT,("entering BulkUsb_Close\n"));
BulkUsb_IncrementIoCount(DeviceObject);
deviceExtension = DeviceObject->DeviceExtension;
irpStack = IoGetCurrentIrpStackLocation (Irp);
fileObject = irpStack->FileObject;
if (fileObject->FsContext) {
// closing pipe handle
pipeHandle = fileObject->FsContext;
pipeInfo = BulkUsb_PipeWithName( DeviceObject, &fileObject->FileName );
if ( NULL == pipeInfo )
goto done;
if ( pipeInfo->fPipeOpened ) { // set if opened
// may have been aborted
BULKUSB_KdPrint( DBGLVL_DEFAULT,("closing pipe %x\n", pipeHandle));
deviceExtension->OpenPipeCount--;
pipeInfo->fPipeOpened = FALSE;
}
else {
// pipe was already closed; this can only be if we got a sudden REMOVE_DEVICE
BULKUSB_ASSERT( deviceExtension->DeviceRemoved );
BULKUSB_KdPrint( DBGLVL_DEFAULT,("Pipe %x was already closed \n", pipeHandle));
}
}
done:
BulkUsb_DecrementIoCount(DeviceObject);
Irp->IoStatus.Status = STATUS_SUCCESS;
Irp->IoStatus.Information = 0;
ntStatus = Irp->IoStatus.Status;
IoCompleteRequest (Irp,
IO_NO_INCREMENT
);
// try to power down device if this is the last pipe
actStat = BulkUsb_SelfSuspendOrActivate( DeviceObject, TRUE );
BULKUSB_KdPrint( DBGLVL_DEFAULT,("exit BulkUsb_Close OpenPipeCount = decimal %d, status %x\n",deviceExtension->OpenPipeCount, ntStatus));
return ntStatus;
}
NTSTATUS
BulkUsb_Create(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
/*++
Routine Description:
This is the dispatch table routine for IRP_MJ_CREATE.
It's the entry point for CreateFile() calls
user mode apps may open "<name genned fron GUID>.\yy"
where yy is the internal pipe id
Arguments:
DeviceObject - pointer to our FDO ( Functional Device Object )
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PFILE_OBJECT fileObject;
PIO_STACK_LOCATION irpStack;
PDEVICE_EXTENSION deviceExtension;
ULONG i, ix;
NTSTATUS actStat;
PUSBD_INTERFACE_INFORMATION interface;
PUSBD_PIPE_INFORMATION PipeInfo;
PBULKUSB_PIPEINFO ourPipeInfo = NULL;
deviceExtension = DeviceObject->DeviceExtension;
interface = deviceExtension->UsbInterface;
BULKUSB_KdPrint( DBGLVL_DEFAULT,("entering BulkUsb_Create\n"));
BulkUsb_IncrementIoCount(DeviceObject);
// Can't accept a new io request if:
// 1) device is removed,
// 2) has never been started,
// 3) is stopped,
// 4) has a remove request pending,
// 5) has a stop device pending
if ( !BulkUsb_CanAcceptIoRequests( DeviceObject ) ) {
ntStatus = STATUS_DELETE_PENDING;
BULKUSB_KdPrint( DBGLVL_DEFAULT,("ABORTING BulkUsb_Create\n"));
goto done;
}
irpStack = IoGetCurrentIrpStackLocation (Irp);
fileObject = irpStack->FileObject;
// fscontext is null for device
fileObject->FsContext = NULL;
if ( 0 == fileObject->FileName.Length ) // this is the case if opening device as opposed to pipe
goto done; // nothing more to do
ourPipeInfo = BulkUsb_PipeWithName( DeviceObject, &fileObject->FileName );
if ( !ourPipeInfo ) {
ntStatus = STATUS_INVALID_PARAMETER;
goto done;
}
// init status to bad; will set good in below loop on success
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
for (i=0; i<interface->NumberOfPipes; i++) {
PipeInfo = &interface->Pipes[i]; // PUSBD_PIPE_INFORMATION PipeInfo;
if ( ourPipeInfo == &deviceExtension->PipeInfo[i] ) {
//
// found a match
//
BULKUSB_KdPrint( DBGLVL_DEFAULT,("open pipe %d\n", i));
fileObject->FsContext = PipeInfo;
ourPipeInfo->fPipeOpened = TRUE; // set flag for opened
ntStatus = STATUS_SUCCESS;
deviceExtension->OpenPipeCount++;
// try to power up device if its not in D0
actStat = BulkUsb_SelfSuspendOrActivate( DeviceObject, FALSE );
break;
}
}
done:
Irp->IoStatus.Status = ntStatus;
Irp->IoStatus.Information = 0;
IoCompleteRequest (Irp,
IO_NO_INCREMENT
);
BulkUsb_DecrementIoCount(DeviceObject);
BULKUSB_KdPrint( DBGLVL_DEFAULT,("exit BulkUsb_Create %x\n", ntStatus));
return ntStatus;
}
BOOLEAN
BulkUsb_CancelPendingIo(
IN PDEVICE_OBJECT DeviceObject
)
/*++
Routine Description:
Cancels pending IO, as on a sudden IRP_MN_REMOVE_DEVICE
This driver maintains and array of info structs (BULKUSB_RW_CONTEXT)
on self-generated IRPS for staged read/writes; This routine traverses
it and cancels all pending IO irps
Arguments:
DeviceObject - pointer to the device object for this instance of the 82930
device.
Return Value:
TRUE if cancelled any, else FALSE
--*/
{
PDEVICE_EXTENSION deviceExtension = DeviceObject->DeviceExtension;
PUCHAR pCon = (PUCHAR) deviceExtension->PendingIoIrps;
ULONG i = 0;
PIRP Irp;
USHORT uDriverCancel = 0; // count cancelled via iocancelirp()
BOOLEAN cRes;
NTSTATUS ntStatus, waitStatus;
// nothing pending
if ( !deviceExtension->PendingIoIrps )
return FALSE;
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("enter BulkUsb_CancelPendingIo()\n"));
// the BULKUSB_RW_CONTEXT array is terminated by an entry with a NULL Irp
for ( i = 0; ((PBULKUSB_RW_CONTEXT)pCon)->Irp ; i++ ) {
Irp = ((PBULKUSB_RW_CONTEXT) pCon)->Irp;
//
// Since IoCallDriver has been called on this request, we call IoCancelIrp
// and let our completion routine handle it
//
cRes = IoCancelIrp( Irp );
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("BulkUsb_CancelPendingIo() IoCancelIrp() cRes=%d, IRP 0x%x\n", cRes, Irp));
// if cancel call failed, they all will, so dump out
if ( !cRes )
break;
uDriverCancel++; // flag we tried to cancel at least one
// point to next context struct in array
pCon += sizeof( BULKUSB_RW_CONTEXT);
} // end, for
if ( uDriverCancel && cRes ) {
// We only get here if we cancelled at least one and all cancellations were successfull.
// Wait on the event set on last cancel in BulkUsb_AsyncReadWriteComplete();
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("BulkUsb_CancelPendingIo() before waiting for StagingDoneEvent()\n" ));
waitStatus = KeWaitForSingleObject(
&deviceExtension->StagingDoneEvent,
Suspended,
KernelMode,
FALSE,
NULL);
BULKUSB_KdPrint ( DBGLVL_MAXIMUM, ("BulkUsb_CancelPendingIo() finished waiting for StagingDoneEvent()\n" ));
}
BULKUSB_KdPrintCond ( DBGLVL_HIGH, uDriverCancel,
("BulkUsb_CancelPendingIo() cancelled %d via IoCancelIrp()\n",uDriverCancel));
return (BOOLEAN) uDriverCancel;
}
NTSTATUS
BulkUsb_AbortPipes(
IN PDEVICE_OBJECT DeviceObject
)
/*++
Routine Description:
Called as part of sudden device removal handling.
Cancels any pending transfers for all open pipes.
If any pipes are still open, call USBD with URB_FUNCTION_ABORT_PIPE
Also marks the pipe 'closed' in our saved configuration info.
Arguments:
Ptrs to our FDO
Return Value:
NT status code
--*/
{
NTSTATUS ntStatus = STATUS_SUCCESS;
PURB urb;
PDEVICE_EXTENSION deviceExtension = DeviceObject->DeviceExtension;
ULONG i;
PUSBD_INTERFACE_INFORMATION interface;
PBULKUSB_PIPEINFO PipeInfo;
PUCHAR pInf = (PUCHAR ) deviceExtension->PipeInfo;
interface = deviceExtension->UsbInterface;
for (i=0; i<interface->NumberOfPipes; i++) {
PipeInfo = (PBULKUSB_PIPEINFO) pInf; // PBULKUSB_PIPEINFO PipeInfo;
if ( PipeInfo->fPipeOpened ) { // we set this if open, clear if closed
BULKUSB_KdPrint( DBGLVL_HIGH,("BulkUsb_AbortPipes() Aborting open Pipe %d\n", i));
urb = BULKUSB_ExAllocatePool(NonPagedPool,
sizeof(struct _URB_PIPE_REQUEST));
if (urb) {
urb->UrbHeader.Length = (USHORT) sizeof (struct _URB_PIPE_REQUEST);
urb->UrbHeader.Function = URB_FUNCTION_ABORT_PIPE;
urb->UrbPipeRequest.PipeHandle =
interface->Pipes[i].PipeHandle;
ntStatus = BulkUsb_CallUSBD(DeviceObject, urb);
BULKUSB_ExFreePool(urb);
} else {
ntStatus = STATUS_INSUFFICIENT_RESOURCES;
BULKUSB_KdPrint( DBGLVL_HIGH,("BulkUsb_AbortPipes() FAILED urb alloc\n" ));
break;
}
if (!(NT_SUCCESS(ntStatus))) {
// if we failed, dump out
#if DBG
if ( gpDbg )
gpDbg->PipeErrorCount++;
#endif
break;
}
else {
PipeInfo->fPipeOpened = FALSE; // mark the pipe 'closed'
deviceExtension->OpenPipeCount--;
#if DBG
if ( gpDbg )
gpDbg->AbortPipeCount++;
#endif
}
} // end, if pipe open
pInf += sizeof ( BULKUSB_PIPEINFO );
} // end, for all pipes
return ntStatus;
}
BOOLEAN
BulkUsb_CanAcceptIoRequests(
IN PDEVICE_OBJECT DeviceObject
)
/*++
Routine Description:
Check device extension status flags;
Can't accept a new io request if device:
1) is removed,
2) has never been started,
3) is stopped,
4) has a remove request pending, or
5) has a stop device pending
Arguments:
DeviceObject - pointer to the device object for this instance of the 82930
device.
Return Value:
return TRUE if can accept new io requests, else FALSE
--*/
{
PDEVICE_EXTENSION deviceExtension;
BOOLEAN fCan = FALSE;
deviceExtension = DeviceObject->DeviceExtension;
//flag set when processing IRP_MN_REMOVE_DEVICE
if ( !deviceExtension->DeviceRemoved &&
// device must be started( enabled )
deviceExtension->DeviceStarted &&
// flag set when driver has answered success to IRP_MN_QUERY_REMOVE_DEVICE
!deviceExtension->RemoveDeviceRequested &&
// flag set when driver has answered success to IRP_MN_QUERY_STOP_DEVICE
!deviceExtension->StopDeviceRequested ){
fCan = TRUE;
}
BULKUSB_KdPrintCond( DBGLVL_MAXIMUM, !fCan, ("**** FALSE return from BulkUsb_CanAcceptIoRequests()!\n"));
return fCan;
}