summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/testprot/tpdrvr/tpdrvr.c
blob: a40b385bcbda171e4b3b03fbc4c2f8911f560351 (plain) (blame)
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
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
// -------------
//
// Copyright (c) 1990  Microsoft Corporation
//
// Module Name:
//
//     tpdrvr.c
//
// Abstract:
//
//     This module contains code which defines the Test Protocol
//     device object.
//
// Author:
//
//     Tom Adams (tomad) 19-Apr-1991
//
// Environment:
//
//     Kernel mode, FSD
//
// Revision History:
//
//     Sanjeev Katariya    Forced unload of driver thru the control panel was not working
//                         Effected function : TpUnloadDriver()
//
//     Tim Wynsma  (timothyw)   4-27-94
//                         Added performance tests
//     Tim Wynsma  (timothyw)   6-08-94
//                         Chgd perf tests to use client/server model
//
// --------------

#include <ndis.h>

#include "tpdefs.h"
#include "media.h"
#include "tpprocs.h"

// the following function is prototyped in public\oak\inc\zwapi.h, but including that file
// produces MANY compile errors.

NTSYSAPI
NTSTATUS
NTAPI
ZwCreateSymbolicLinkObject(
    OUT PHANDLE LinkHandle,
    IN ACCESS_MASK DesiredAccess,
    IN POBJECT_ATTRIBUTES ObjectAttributes,
    IN PUNICODE_STRING LinkTarget
    );


POPEN_BLOCK TpOpen = NULL;
HANDLE      SymbolicLinkHandle;

//
// The debugging longword, containing a bitmask as defined in common.h
// If a bit is set, then debugging is turned on for that component.
//

#if DBG

ULONG TpDebug = TP_DEBUG_NDIS_CALLS|TP_DEBUG_NDIS_ERROR|TP_DEBUG_STATISTICS|
                TP_DEBUG_DATA|TP_DEBUG_DISPATCH|TP_DEBUG_IOCTL_ARGS|
                TP_DEBUG_NT_STATUS|TP_DEBUG_DPC|TP_DEBUG_INITIALIZE|
                TP_DEBUG_RESOURCES|TP_DEBUG_BREAKPOINT|TP_DEBUG_INFOLEVEL_1;

BOOLEAN TpAssert = TRUE;

#endif // DBG

NDIS_PHYSICAL_ADDRESS HighestAddress = NDIS_PHYSICAL_ADDRESS_CONST(-1, -1);

//
// Driver Entry function
//


NTSTATUS
DriverEntry(
    IN PDRIVER_OBJECT DriverObject,
    IN PUNICODE_STRING RegistryPath
    )

// ----------
//
// Routine Description:
//
//     This routine performs initialization of the Test Protocol driver.
//     It creates the device objects for the driver and performs
//     other driver initialization.
//
// Arguments:
//
//     DriverObject - Pointer to driver object created by the system.
//
// Return Value:
//
//     The function value is the final status from the initialization operation.
//
// ----------

{
    STRING nameString;
    PDEVICE_CONTEXT DeviceContext;
    NTSTATUS Status;

    //
    // General Version Information
    //
    IF_TPDBG( TP_DEBUG_ALL )
    {
        TpPrint0("\nMAC NDIS 3.0 Tester - Test Driver Version 1.5.1\n\n");
    }

    //
    // First initialize the DeviceContext struct,
    //

    RtlInitString( &nameString, DD_TP_DEVICE_NAME );

    Status = TpCreateDeviceContext (DriverObject,
                                    nameString,
                                    &DeviceContext );

    if (!NT_SUCCESS (Status))
    {
        TpPrint1 ("TPDRVR: failed to create device context: Status = %s\n",
                     TpGetStatus(Status));
        return Status;
    }
    else
    {
        TpOpen = &DeviceContext->Open[0];
    }

    //
    // Create symbolic link between the Dos Device name and Nt
    // Device name for the test protocol driver.
    //

    Status = TpCreateSymbolicLinkObject( );

    if (!NT_SUCCESS (Status))
    {
        TpPrint1 ("TPDRVR: failed to create symbolic link. Status = %s\n", TpGetStatus(Status));
        return Status;
    }

    //
    // then set up the EventQueue for any spurious event, indications,
    // or completions.  This should be ready at all times, from the
    // time the test protocol is registered to the time it is unloaded.
    //

    Status = TpInitializeEventQueue( DeviceContext );

    if (!NT_SUCCESS (Status)) {
        TpPrint1 ("TPDRVR: failed to create initialize Event Queue. Status = %s\n",
                     TpGetStatus(Status));
        return Status;
    }

    //
    // make ourselves known to the NDIS wrapper.
    //

    Status = TpRegisterProtocol ( DeviceContext, &nameString );

    if (!NT_SUCCESS(Status))
    {
        DeviceContext->Initialized = FALSE;

        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint1("TPDRVR: TpRegisterProtocol failed. Status= %s\n", TpGetStatus(Status));
        }
    }
    return Status;
}



NTSTATUS
TpCreateDeviceContext(
    IN PDRIVER_OBJECT DriverObject,
    IN STRING DeviceName,
    PDEVICE_CONTEXT *DeviceContext
    )

// -----------
//
// Routine Description:
//
//     This routine creates and initializes a device context structure.
//
// Arguments:
//
//     DriverObject - pointer to the IO subsystem supplied driver object.
//
//     DeviceContext - Pointer to a pointer to a transport device context object.
//
//     DeviceName - pointer to the name of the device this device object points to.
//
// Return Value:
//
//     STATUS_SUCCESS if all is well; STATUS_INSUFFICIENT_RESOURCES otherwise.
//
// ------------

{
    NTSTATUS Status;
    UNICODE_STRING unicodeString;
    PDEVICE_OBJECT deviceObject;
    PDEVICE_CONTEXT deviceContext;

    //
    // Convert the input name string to Unicode until it is actually
    // passed as a Unicode string.
    //

    Status = RtlAnsiStringToUnicodeString(  &unicodeString,
                                            &DeviceName,
                                            TRUE );
    if ( !NT_SUCCESS( Status ))
    {
        return Status;
    }

    //
    // Create the device object for Test Protocol.
    //

    Status = IoCreateDevice(DriverObject,
                            sizeof (DEVICE_CONTEXT) - sizeof (DEVICE_OBJECT),
                            &unicodeString,
                            FILE_DEVICE_TRANSPORT,
                            0,
                            FALSE,
                            &deviceObject );

    RtlFreeUnicodeString( &unicodeString );

    if ( !NT_SUCCESS( Status ))
    {
        return Status;
    }

    deviceObject->Flags |= DO_DIRECT_IO;

    //
    // Initialize the driver object with this driver's entry points.
    //

    DriverObject->MajorFunction [IRP_MJ_CREATE] = TpDispatch;
    DriverObject->MajorFunction [IRP_MJ_CLOSE] = TpDispatch;
    DriverObject->MajorFunction [IRP_MJ_CLEANUP] = TpDispatch;
    DriverObject->MajorFunction [IRP_MJ_DEVICE_CONTROL] = TpDispatch;
    DriverObject->DriverUnload = TpUnloadDriver;

    deviceContext = (PDEVICE_CONTEXT)deviceObject;

    //
    // Now initialize the Device Context structure Signatures.
    //

    deviceContext->OpenSignature = OPEN_BLOCK_SIGNATURE;

    deviceContext->Initialized = TRUE;

    *DeviceContext = deviceContext;

    return STATUS_SUCCESS;
}



NTSTATUS
TpCreateSymbolicLinkObject(
    VOID
    )
{
    NTSTATUS Status;
    OBJECT_ATTRIBUTES ObjectAttr;
    STRING DosString;
    STRING NtString;
    UNICODE_STRING DosUnicodeString;
    UNICODE_STRING NtUnicodeString;

    RtlInitAnsiString( &DosString, "\\DosDevices\\Tpdrvr" );

    Status = RtlAnsiStringToUnicodeString(  &DosUnicodeString,
                                            &DosString,
                                            TRUE );
    if ( !NT_SUCCESS( Status ))
    {
        return Status;
    }

    RtlInitAnsiString( &NtString, DD_TP_DEVICE_NAME );

    Status = RtlAnsiStringToUnicodeString(  &NtUnicodeString,
                                            &NtString,
                                            TRUE );
    if ( !NT_SUCCESS( Status ))
    {
        return Status;
    }

    //
    // Removed the OBJ_PERMANENT attribute since we should be able to load and
    // unload this driver and create the necessary links at will. Buf Fix# 13183
    //
    InitializeObjectAttributes( &ObjectAttr,
                                &DosUnicodeString,
                                OBJ_CASE_INSENSITIVE,
                                NULL,
                                NULL );

    Status = ZwCreateSymbolicLinkObject(&SymbolicLinkHandle,
                                        SYMBOLIC_LINK_ALL_ACCESS,
                                        &ObjectAttr,
                                        &NtUnicodeString );

    if ( Status != STATUS_SUCCESS )
    {
        return Status;
    }

    RtlFreeUnicodeString( &DosUnicodeString );
    RtlFreeUnicodeString( &NtUnicodeString );

    return STATUS_SUCCESS;
}



NTSTATUS
TpInitializeEventQueue(
    IN PDEVICE_CONTEXT DeviceContext
    )
{
    NTSTATUS Status;
    ULONG i, j;

    for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
    {
        //
        // Finally, allocate Event Queue header struct, and its spin lock.
        //

        Status = NdisAllocateMemory((PVOID *)&DeviceContext->Open[i].EventQueue,
                                    sizeof( EVENT_QUEUE ),
                                    0,
                                    HighestAddress );

        if ( Status != NDIS_STATUS_SUCCESS )
        {
            IF_TPDBG (TP_DEBUG_RESOURCES)
            {
                TpPrint0("TpInitializeEventQueue: failed to allocate EVENT_QUEUE struct\n");
            }
            return STATUS_INSUFFICIENT_RESOURCES;
        }
        else
        {
            NdisZeroMemory( (PVOID)DeviceContext->Open[i].EventQueue,
                            sizeof( EVENT_QUEUE ) );
        }

        NdisAllocateSpinLock( &DeviceContext->Open[i].EventQueue->SpinLock );

        //
        // Initialize the Event Queue header, and each of the seperate events
        // in the Event Queue array.
        //

        DeviceContext->Open[i].EventQueue->ReceiveIndicationCount = 0;
        DeviceContext->Open[i].EventQueue->StatusIndicationCount = 0;
        DeviceContext->Open[i].EventQueue->ExpectReceiveComplete = FALSE;
        DeviceContext->Open[i].EventQueue->ExpectStatusComplete = FALSE;
        DeviceContext->Open[i].EventQueue->Head = 0;
        DeviceContext->Open[i].EventQueue->Tail = 0;

        for ( j=0;j<MAX_EVENT;j++ )
        {
            DeviceContext->Open[i].EventQueue->Events[j].TpEventType = Unknown;
            DeviceContext->Open[i].EventQueue->Events[j].Status = NDIS_STATUS_SUCCESS;
            DeviceContext->Open[i].EventQueue->Events[j].Overflow = FALSE;
            DeviceContext->Open[i].EventQueue->Events[j].EventInfo = NULL;
        }
    }
    return STATUS_SUCCESS;
}



NTSTATUS
TpRegisterProtocol (
    IN PDEVICE_CONTEXT DeviceContext,
    IN STRING *NameString
    )

// -----
//
// Routine Description:
//
//     This routine introduces this transport to the NDIS interface.
//
// Arguments:
//
//     DeviceObject - Pointer to the device object for this driver.
//
//     NameString - The name of the device to be registered.
//
// Return Value:
//
//     The function value is the status of the operation.
//     STATUS_SUCCESS if all goes well,
//     STATUS_UNSUCCESSFUL if we tried to register and couldn't,
//     STATUS_INSUFFICIENT_RESOURCES if we couldn't even try to register.
//
// -------------

{
    NDIS_STATUS Status;
    USHORT i;

    //
    // Set up the characteristics of this protocol
    //


    Status = NdisAllocateMemory((PVOID *)&DeviceContext->ProtChars,
                                sizeof( NDIS_PROTOCOL_CHARACTERISTICS ) + NameString->Length,
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_INITIALIZE)
        {
            TpPrint0 ("TpRegisterProtocol: insufficient memory to allocate Protocol descriptor.\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( DeviceContext->ProtChars,
                        sizeof( NDIS_PROTOCOL_CHARACTERISTICS ) );
    }

    //
    // Setup the Characteristics Block and register the protocol with
    // the NDIS Wrapper.
    //

    DeviceContext->ProtChars->MajorNdisVersion = 3;
    DeviceContext->ProtChars->MinorNdisVersion = 0;
    DeviceContext->ProtChars->Name.Length = NameString->Length;
    DeviceContext->ProtChars->Name.Buffer = (PVOID)NameString->Buffer;

    DeviceContext->ProtChars->OpenAdapterCompleteHandler =
                                            TestProtocolOpenComplete;
    DeviceContext->ProtChars->CloseAdapterCompleteHandler =
                                            TestProtocolCloseComplete;
    DeviceContext->ProtChars->SendCompleteHandler = TestProtocolSendComplete;
    DeviceContext->ProtChars->TransferDataCompleteHandler =
                                            TestProtocolTransferDataComplete;
    DeviceContext->ProtChars->ResetCompleteHandler =
                                            TestProtocolResetComplete;
    DeviceContext->ProtChars->RequestCompleteHandler =
                                            TestProtocolRequestComplete;
    DeviceContext->ProtChars->ReceiveHandler = TestProtocolReceive;
    DeviceContext->ProtChars->ReceiveCompleteHandler =
                                            TestProtocolReceiveComplete;
    DeviceContext->ProtChars->StatusHandler = TestProtocolStatus;
    DeviceContext->ProtChars->StatusCompleteHandler =
                                            TestProtocolStatusComplete;

    NdisRegisterProtocol (  &Status,
                            &DeviceContext->NdisProtocolHandle,
                            DeviceContext->ProtChars,
                            (UINT)sizeof( NDIS_PROTOCOL_CHARACTERISTICS ) + NameString->Length );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_INITIALIZE)
        {
            TpPrint1("TpRegisterProtocol: NdisRegisterProtocol failed: %s\n",
                TpGetStatus( Status ));
        }
        NdisFreeMemory( DeviceContext->ProtChars,0,0 );
        return STATUS_UNSUCCESSFUL;
    }

    for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
    {
        DeviceContext->Open[i].NdisProtocolHandle = DeviceContext->NdisProtocolHandle;
    }
    return STATUS_SUCCESS;
}



NTSTATUS
TpDispatch(
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP Irp
    )

// -------
//
// Routine Description:
//
//     This routine is the main dispatch routine for the Test Protocol
//     driver.  It accepts an I/O Request Packet, performs the request,
//     and then returns with the appropriate status.
//
// Arguments:
//
//     DeviceObject - Pointer to the device object for this driver.
//
//     Irp - Pointer to the request packet representing the I/O request.
//
// Return Value:
//
//     The function value is the status of the operation.
//
// -------

{
    NTSTATUS Status;
    PIO_STACK_LOCATION IrpSp;
    PDEVICE_CONTEXT DeviceContext;

    //
    // Check to see if TP has been initialized; if not, don't allow any use.
    //

    DeviceContext = (PDEVICE_CONTEXT)DeviceObject;
    if ( !DeviceContext->Initialized )
    {
        return STATUS_UNSUCCESSFUL;
    }

    //
    // Make sure status information is consistent every time.
    //

    Irp->IoStatus.Status = NDIS_STATUS_PENDING;
    Irp->IoStatus.Information = 0;

    //
    // Get a pointer to the current stack location in the IRP.  This is where
    // the function codes and parameters are stored.
    //

    IrpSp = IoGetCurrentIrpStackLocation( Irp );

    //
    // Case on the function that is being performed by the requestor.  If the
    // operation is a valid one for this device, then make it look like it was
    // successfully completed, where possible.
    //

    switch ( IrpSp->MajorFunction )
    {
        //
        // The Create function opens the Test Protocol driver and initializes
        // the OpenBlock and its various data structures used to control the
        // tests.  Only one instance of TPCTL.EXE may have the driver open at
        // any given time, all other open requests will fail with the error
        // STATUS_DEVICE_ALREADY_ATTACHED
        //
        case IRP_MJ_CREATE:
            IF_TPDBG(TP_DEBUG_DISPATCH)
            {
                TpPrint0("TpDispatch: IRP_MJ_CREATE.\n");
            }
            Status = TpOpenDriver( DeviceContext );
            Irp->IoStatus.Status = Status;
            break;

        //
        // The Close function closes the Test Protocol driver and deallocates
        // the various data structures attached to the OpenBlock.
        //
        case IRP_MJ_CLOSE:
            IF_TPDBG(TP_DEBUG_DISPATCH)
            {
                TpPrint0("TpDispatch: IRP_MJ_CLOSE.\n");
            }
            TpCloseDriver( DeviceContext );
            Status = Irp->IoStatus.Status = STATUS_SUCCESS;
            break;

        //
        // The DeviceControl function is the main path to the test protocol
        // driver interface.  Every Test Protocol request is has an Io Control
        // code that is used by this function to determine the routine to
        // call.
        //
        case IRP_MJ_DEVICE_CONTROL:
            IF_TPDBG(TP_DEBUG_DISPATCH)
            {
                TpPrint0("TpDispatch: IRP_MJ_DEVICE_CONTROL.\n");
            }
            Status = TpIssueRequest( DeviceContext,Irp,IrpSp );
            break;

        //
        // Handle the two stage IRP for a file close operation. When the first
        // stage hits,
        //
        case IRP_MJ_CLEANUP:
            IF_TPDBG( TP_DEBUG_DISPATCH )
            {
                TpPrint0("TpDispatch: IRP_MJ_CLEANUP.\n");
            }
            Status = TpCleanUpDriver( DeviceContext,Irp );
            Irp->IoStatus.Status = Status;
            break;

        default:
            IF_TPDBG( TP_DEBUG_DISPATCH )
            {
                TpPrint0("TpDispatch: OTHER (DEFAULT).\n");
            }
            Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
            Status = STATUS_INVALID_DEVICE_REQUEST;

    } // major function switch

    //
    // If the request did not pend, the complete it now, otherwise it
    // will be completed when the pending routine finishes.
    //

    if ( Status == STATUS_PENDING )
    {
        IF_TPDBG( TP_DEBUG_DISPATCH )
        {
            TpPrint0("TpDispatch: request PENDING in handler.\n");
        }
    }
    else if ( Status == STATUS_CANCELLED )
    {
        IF_TPDBG( TP_DEBUG_DISPATCH )
        {
            TpPrint0("TpDispatch: request CANCELLED by handler.\n");
        }
    }
    else
    {
        IF_TPDBG(TP_DEBUG_DISPATCH)
        {
            TpPrint0("TpDispatch: request COMPLETED by handler.\n");
        }
        IoAcquireCancelSpinLock( &Irp->CancelIrql );
        IoSetCancelRoutine( Irp,NULL );
        IoReleaseCancelSpinLock( Irp->CancelIrql );

        IoCompleteRequest( Irp,IO_NETWORK_INCREMENT );
    }

    //
    // Return the immediate status code to the caller.
    //

    return Status;
}



NTSTATUS
TpOpenDriver(
    IN PDEVICE_CONTEXT DeviceContext
    )

{
    NTSTATUS Status;
    USHORT i;

    //
    // If the Device did not successfully initialize at boot time than
    // fail this open.
    //

    if( DeviceContext->Initialized != TRUE )
    {
        return STATUS_OBJECT_NAME_NOT_FOUND;
    }

    //
    // if the device has already been opened by an instance of TPCTL.EXE
    // then fail this open.
    //

    if ( DeviceContext->Opened == TRUE )
    {
        return STATUS_DEVICE_ALREADY_ATTACHED;
    }

    for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
    {
        //
        // Allocate each of the instances of the OpenBlock.
        //

        Status = TpAllocateOpenArray( &DeviceContext->Open[i] );

        if ( Status != STATUS_SUCCESS )
        {
            IF_TPDBG (TP_DEBUG_RESOURCES)
            {
                TpPrint1("TpCreateDeviceContext: failed to allocate Open Array. Status =  %s\n",
                           TpGetStatus(Status));
            }

            //
            // If one of the allocation calls fails deallocate any of
            // the structs that were just successfully allocated.
            //

            while ( i >= 0 )
            {
                TpDeallocateOpenArray( &DeviceContext->Open[i--] );
            }
            return Status;
        }
    }
    DeviceContext->Opened = TRUE;

    return STATUS_SUCCESS;
}



NTSTATUS
TpCleanUpDriver(
    IN PDEVICE_CONTEXT DeviceContext,
    IN PIRP Irp
    )

// ----
//
// Routine Description:
//
//
// Arguments:
//
//
// Return Value:
//
// ----

{
    NDIS_STATUS Status;
    USHORT i;

    //
    // Make this Irp Cancellable
    //

    NdisAcquireSpinLock( &DeviceContext->Open[0].SpinLock );

    DeviceContext->Open[0].Irp = Irp;
    DeviceContext->Open[0].IrpCancelled = FALSE;

    IoAcquireCancelSpinLock( &Irp->CancelIrql );

    if ( Irp->Cancel )
    {
        Irp->IoStatus.Status = STATUS_CANCELLED;
        return STATUS_CANCELLED;
    }

    IoSetCancelRoutine( Irp,(PDRIVER_CANCEL)TpCancelIrp );

    IoReleaseCancelSpinLock( Irp->CancelIrql );

    NdisReleaseSpinLock( &DeviceContext->Open[0].SpinLock );

    for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
    {
        if ( DeviceContext->Open[i].OpenInstance != (UCHAR)-1 )
        {
            //
            // Set the open instance's closing flag to true, then signal
            // all the async test protocol routines to end.
            //

            DeviceContext->Open[i].Closing = TRUE;

            if ( DeviceContext->Open[i].Stress->Stressing == TRUE )
            {
                DeviceContext->Open[i].Stress->StopStressing = TRUE;
            }

            if ( DeviceContext->Open[i].Send->Sending == TRUE )
            {
                DeviceContext->Open[i].Send->StopSending = TRUE;
            }

            if ( DeviceContext->Open[i].Receive->Receiving == TRUE )
            {
                DeviceContext->Open[i].Receive->StopReceiving = TRUE;
            }

            if ( DeviceContext->Open[i].PerformanceTest == TRUE)
            {
                DeviceContext->Open[i].Perform->Active = FALSE;
            }

            //
            // Wait for all of the four asynchronous routines STRESS,
            // SEND, PERFORMANCE, and RECEIVE to finish, then close the adapter.
            //

            while (( DeviceContext->Open[i].ReferenceCount > 0 ) &&
                   ( DeviceContext->Open[0].IrpCancelled != TRUE ))
            {
                /* NULL */  ;
            }

            //
            // Now close each of the existing OpenInstances.
            //

            NdisCloseAdapter(   &Status,
                                DeviceContext->Open[i].NdisBindingHandle );

            if (( Status != NDIS_STATUS_SUCCESS ) &&
                ( Status != NDIS_STATUS_PENDING ))
                {
                IF_TPDBG ( TP_DEBUG_NDIS_ERROR )
                {
                    TpPrint2(
                      "TpCleanUpDriver: failed to close adapter for instance #%d. Status = %s\n",
                                i, TpGetStatus(Status));
                }
            }
            else
            {
                // XXX: handle the close pending.

                DeviceContext->Open[i].NdisBindingHandle = NULL;
                DeviceContext->Open[i].OpenInstance = (UCHAR)-1;
                DeviceContext->Open[i].Closing = FALSE;

                NdisFreeMemory( DeviceContext->Open[i].AdapterName,0,0 );
                DeviceContext->Open[i].AdapterName = NULL;

                //
                // We will also free the media block at this point because
                // the info it contains may not hold for the next adapter
                // open on this instance.
                //

                NdisFreeMemory( DeviceContext->Open[i].Media,0,0 );
                DeviceContext->Open[i].Media = NULL;
            }
        }
    }

    //
    // If this Irp has been cancelled return now, otherwise make it
    // non cancellable.
    //

    NdisAcquireSpinLock( &DeviceContext->Open[0].SpinLock );

    if ( DeviceContext->Open[0].IrpCancelled == TRUE )
    {
        return STATUS_CANCELLED;
    }
    else
    {
        IoAcquireCancelSpinLock( &Irp->CancelIrql );
        IoSetCancelRoutine( Irp,NULL );
        IoReleaseCancelSpinLock( Irp->CancelIrql );
    }

    NdisReleaseSpinLock( &DeviceContext->Open[0].SpinLock );

    //
    // Deallocate each of the instances of the OpenBlock.
    //

    for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
    {
        TpDeallocateOpenArray( &DeviceContext->Open[i] );
    }

    return STATUS_SUCCESS;
}



VOID
TpCloseDriver(
    IN PDEVICE_CONTEXT DeviceContext
    )

// ----
//
// Routine Description:
//
//
// Arguments:
//
//
// Return Value:
//
// ----

{
    DeviceContext->Opened = FALSE;
}



VOID
TpUnloadDriver(
    IN PDRIVER_OBJECT DriverObject
    )
{
    USHORT           i;
    PDEVICE_CONTEXT  DeviceContext = (PDEVICE_CONTEXT)DriverObject->DeviceObject;

    TpPrint0("TpUnloadDriver called.\n");

    //
    // Fixed error for deallocation of memory contigent to having been opened
    // Bug# 13183
    //
    if ( DeviceContext->Opened == TRUE )
    {
        //
        // for each of the open instances in the open array.
        //
        for ( i=0;i<NUM_OPEN_INSTANCES;i++ )
        {
            //
            // Deallocate each of the instances of the OpenBlock.
            //
            TpDeallocateOpenArray( &DeviceContext->Open[i] );
        }
    }

    //
    // Close the Dos Symbolic link to remove traces of the device
    //
    ZwClose( SymbolicLinkHandle );

    //
    // Then delete the device object from the system. Fixed for Bug#: 13183
    //
    IoDeleteDevice( (PDEVICE_OBJECT)DeviceContext );

    TpPrint0("TpUnloadDriver completed.\n");
}



BOOLEAN
TpAddReference(
    IN POPEN_BLOCK OpenP
    )

// ---
//
// Routine Description:
//
//     Add a reference to an open block, to prevent it being removed
//     by TpCloseDriver.
//
// Arguments:
//
//     OpenP - The open block holding the adapter information to add the
//             reference to.
//
// Return Value:
//
//     TRUE if the reference is added.
//     FALSE if the open is already closing.
//
// ----

{
    NdisAcquireSpinLock( &OpenP->SpinLock );

    if ( OpenP->Closing )
    {
        NdisReleaseSpinLock( &OpenP->SpinLock );
        return FALSE;
    }
    ++OpenP->ReferenceCount;

    NdisReleaseSpinLock( &OpenP->SpinLock );
    return TRUE;
}



VOID
TpRemoveReference(
    IN POPEN_BLOCK OpenP
    )

// --
//
// Routine Description:
//
//     Remove a reference to an adapter. If the count goes to
//     zero, then the adapter may be closed if requested.
//
// Arguments:
//
//     Argument - The open block holding the adapter information to
//                remove the reference from.
//
// Return Value:
//
//     None.
//
// --

{
    NdisAcquireSpinLock( &OpenP->SpinLock );
    --OpenP->ReferenceCount;
    NdisReleaseSpinLock( &OpenP->SpinLock );
}



NTSTATUS
TpAllocateOpenArray(
    POPEN_BLOCK OpenP
    )

// -----
//
// Routine Description:
//
//     This routine allocates the various data structures and spinlocks
//     in the OpenBlock.
//
// Arguments:
//
//     OpenP - a pointer to the OpenBlock containing the data structures which
//             will be allocated during this routine.
//
// Return Value:
//
//     NTSTATUS - STATUS_SUCCESS if all the memory and spinlocks are allocated
//                else STATUS_INSUFFICIENT_RESOURCES if an allocation of memory
//                fails.
//
// ----------

{
    NDIS_STATUS Status;
    ULONG i;

    //
    // Initialize the Open Block fields,
    //

    OpenP->NdisBindingHandle = NULL;
    OpenP->OpenInstance = (UCHAR)-1;
    OpenP->Closing = FALSE;
    OpenP->AdapterName = NULL;
    OpenP->ReferenceCount = 0;
    OpenP->MediumIndex = 0xFFFFFFFF;

    OpenP->Media = NULL;
    OpenP->GlobalCounters = NULL;
    OpenP->Environment = NULL;

    OpenP->Stress = NULL;
    OpenP->Send = NULL;
    OpenP->Receive = NULL;

    OpenP->OpenReqHndl = NULL;
    OpenP->CloseReqHndl = NULL;
    OpenP->ResetReqHndl = NULL;
    OpenP->RequestReqHndl = NULL;
    OpenP->StressReqHndl = NULL;

    OpenP->IrpCancelled = FALSE;
    OpenP->Irp = NULL;

    OpenP->Signature = OPEN_BLOCK_SIGNATURE;
    OpenP->PerformanceTest = FALSE;


    //
    // and set the station address for this open instance to nulls.
    //

    for ( i=0;i<ADDRESS_LENGTH;i++ )
    {
        OpenP->StationAddress[i] = 0x00;
    }

    //
    // Allocate the Environment struct
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Environment,
                                sizeof( ENVIRONMENT_VARIABLES ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate Environment struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( OpenP->Environment,sizeof( ENVIRONMENT_VARIABLES ));
    }

    //
    // Then initialize the Environment Variables to the default settings.
    //

    OpenP->Environment->WindowSize = WINDOW_SIZE;
    OpenP->Environment->RandomBufferNumber = BUFFER_NUMBER;
    OpenP->Environment->StressDelayInterval = DELAY_INTERVAL;
    OpenP->Environment->UpForAirDelay = UP_FOR_AIR_DELAY;
    OpenP->Environment->StandardDelay = STANDARD_DELAY;

    //
    // Allocate the Stress struct and the pend counters and stress results
    // counters attached to it.
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Stress,
                                sizeof( STRESS_BLOCK ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate STRESS_BLOCK struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( OpenP->Stress,sizeof( STRESS_BLOCK ));
    }

    //
    // Initialize the Stress Block and set the request pending counters
    // and the stress results structs to null.
    //

    OpenP->Stress->Stressing        = FALSE;
    OpenP->Stress->StressStarted    = FALSE;
    OpenP->Stress->StopStressing    = TRUE;
    OpenP->Stress->StressFinal      = FALSE;
    OpenP->Stress->StressEnded      = TRUE;
    OpenP->Stress->Client           = NULL;
    OpenP->Stress->Server           = NULL;
    OpenP->Stress->Arguments        = NULL;
    OpenP->Stress->DataBuffer[0]    = NULL;
    OpenP->Stress->DataBuffer[1]    = NULL;
    OpenP->Stress->DataBufferMdl[0] = NULL;
    OpenP->Stress->DataBufferMdl[1] = NULL;
    OpenP->Stress->PoolInitialized  = FALSE;
    OpenP->Stress->PacketHandle     = NULL;
    OpenP->Stress->StressIrp        = NULL;

    //
    // allocate the pend counter, we need to create this here because
    // it will be used in starting all instances of the stress test.
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Stress->Pend,
                                sizeof( PENDING ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate PEND_COUNTER struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( OpenP->Stress->Pend,sizeof( PENDING ));
    }

    NdisAllocateSpinLock( &OpenP->Stress->Pend->SpinLock );

    TpInitializePending( OpenP->Stress->Pend );

    Status = NdisAllocateMemory((PVOID *)&OpenP->Stress->Results,
                                sizeof( STRESS_RESULTS ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate Stress Results struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( OpenP->Stress->Results,sizeof( STRESS_RESULTS ));
        TpInitializeStressResults( OpenP->Stress->Results );
    }

    //
    // Initialize the timer to regulate when to call each of the routines.
    //

    KeInitializeTimer( &OpenP->Stress->TpStressTimer );
    KeInitializeTimer( &OpenP->Stress->TpStressReg2Timer );

    //
    // Now allocate the Send and Receive structs.
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Send,
                                sizeof( SEND_BLOCK ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate SEND_BLOCK struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( OpenP->Send,sizeof( SEND_BLOCK ));
    }

    //
    // Initialize the Send Block fields and set the SEND destination
    // address and resend address to nulls.
    //

    OpenP->Send->Sending = FALSE;
    OpenP->Send->StopSending = TRUE;
    OpenP->Send->ResendPackets = FALSE;
    OpenP->Send->PacketSize = 0;
    OpenP->Send->NumberOfPackets = 0;
    OpenP->Send->PacketsSent = 0;
    OpenP->Send->PacketsPending = 0;
    OpenP->Send->PacketHandle = NULL;
    OpenP->Send->Counters = NULL;
    OpenP->Send->SendIrp = NULL;

    KeInitializeTimer( &OpenP->Send->SendTimer );

    for ( i=0;i<ADDRESS_LENGTH;i++ )
    {
        OpenP->Send->DestAddress[i] = 0x00;
        OpenP->Send->ResendAddress[i] = 0x00;
    }

    //
    // Allocate the Send PacketPool.
    //

    NdisAllocatePacketPool( &Status,
                            &OpenP->Send->PacketHandle,
                            NUMBER_OF_POOL_PACKETS,
                            sizeof( PROTOCOL_RESERVED ) );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: could not allocate Packet Pool\n");
        }
        return Status;
    }

    //
    // Now allocate the SEND Counters and initialize them to zero.
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Send->Counters,
                                sizeof( INSTANCE_COUNTERS ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate counters.\n");
        }
        return NDIS_STATUS_RESOURCES;
    }
    else
    {
        NdisZeroMemory( (PVOID)OpenP->Send->Counters,
                        sizeof( INSTANCE_COUNTERS ) );
    }

    //
    // Initialize the DPC used to call SendDpc, and SendEndDpc.
    //

    KeInitializeDpc(&OpenP->Send->SendDpc,
                    TpFuncSendDpc,
                    (PVOID)OpenP );

    KeInitializeDpc(&OpenP->Send->SendEndDpc,
                    TpFuncSendEndDpc,
                    (PVOID)OpenP );

    Status = NdisAllocateMemory((PVOID *)&OpenP->Receive,
                                sizeof( RECEIVE_BLOCK ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate RECEIVE_BLOCK struct\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory((PVOID)OpenP->Receive,sizeof( RECEIVE_BLOCK ));
    }

    //
    // Initialize the Receive Block fields.
    //

    OpenP->Receive->Receiving = FALSE;
    OpenP->Receive->StopReceiving = TRUE;
    OpenP->Receive->PacketsPending = 0;
    OpenP->Receive->PacketHandle = NULL;
    OpenP->Receive->Counters = NULL;
    OpenP->Receive->ReceiveIrp = NULL;

    KeInitializeTimer( &OpenP->Receive->ReceiveTimer );
    KeInitializeTimer( &OpenP->Receive->ResendTimer);

    //
    // Create a PacketPool, and initialize it, we will need this in case
    // we receive any RESEND packets (FUNC2_PACKET).
    //

    NdisAllocatePacketPool( &Status,
                            &OpenP->Receive->PacketHandle,
                            NUMBER_OF_POOL_PACKETS,
                            sizeof( PROTOCOL_RESERVED ) );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint1("TpAllocateOpenArray: could not allocate Packet Pool: return %s.\n",
                        TpGetStatus(Status));
        }
        return Status;
    }

    //
    // Now allocate the COUNTERS structure and set the counters to zero.
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Receive->Counters,
                                sizeof( INSTANCE_COUNTERS ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG ( TP_DEBUG_RESOURCES )
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate counters.\n");
        }
        return NDIS_STATUS_RESOURCES;
    }
    else
    {
        NdisZeroMemory( (PVOID)OpenP->Receive->Counters,
                        sizeof( INSTANCE_COUNTERS ) );
    }

    //
    // Initialize the DPCs used to call ReceiveDpc and ReceiveEndDpc.
    //

    KeInitializeDpc(&OpenP->Receive->ReceiveDpc,
                    TpFuncReceiveDpc,
                    (PVOID)OpenP );

    KeInitializeDpc(&OpenP->Receive->ReceiveEndDpc,
                    TpFuncReceiveEndDpc,
                    (PVOID)OpenP );

    KeInitializeDpc(&OpenP->Receive->ResendDpc,
                    TpFuncResendDpc,
                    (PVOID)OpenP );

    //
    // the performance structure is not allocated here, but is allocated and freed
    // within the performance functions themselves
    //

//  OpenP->Perform = NULL;

    //
    // now deal with the PAUSE Block
    //

    Status = NdisAllocateMemory((PVOID *)&OpenP->Pause,
                                sizeof( PAUSE_BLOCK ),
                                0,
                                HighestAddress );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: failed to allocate PAUSE_BLOCK struct.\n");
        }
        return STATUS_INSUFFICIENT_RESOURCES;
    }
    else
    {
        NdisZeroMemory( (PVOID)OpenP->Pause,
                        sizeof( PAUSE_BLOCK ) );
    }

    //
    // Initialize the Pause Block fields.
    //

    OpenP->Pause->GoReceived = FALSE;

    for ( i=0;i<ADDRESS_LENGTH;i++ )
    {
        OpenP->Pause->RemoteAddress[i] = 0x00;
    }

    OpenP->Pause->TestSignature = 0xFFFFFFFF;
    OpenP->Pause->PacketType = (UCHAR)-1;
    OpenP->Pause->UniqueSignature = 0xFFFFFFFF;
    OpenP->Pause->TimeOut = 0;

    NdisAllocateSpinLock( &OpenP->Pause->SpinLock );
    OpenP->Pause->PoolAllocated = FALSE;

    //
    // and Allocate the PacketPool.
    //

    NdisAllocatePacketPool( &Status,
                            &OpenP->Pause->PacketHandle,
                            10,
                            sizeof( PROTOCOL_RESERVED ) );

    if ( Status != NDIS_STATUS_SUCCESS )
    {
        IF_TPDBG (TP_DEBUG_RESOURCES)
        {
            TpPrint0("TpAllocateOpenArray: could not allocate Packet Pool.\n");
        }
        return Status;
    }
    else
    {
        OpenP->Pause->PoolAllocated = TRUE;
    }

    //
    // Then allocate the Open Blocks open spin lock.
    //

    NdisAllocateSpinLock( &OpenP->SpinLock );

    return STATUS_SUCCESS;
}



VOID
TpDeallocateOpenArray(
    POPEN_BLOCK OpenP
    )

// -------
//
// Routine Description:
//
//     This routine deallocates the various data structures and spinlocks
//     in the OpenBlock that are used to control the tests.
//
// Arguments:
//
//     OpenP - a pointer to the OpenBlock containing the data structures which
//             will be deallocated during this routine.
//
// Return Value:
//
//     None.
//
// -------

{
    NdisFreeSpinLock( &OpenP->SpinLock );

    if ( OpenP->AdapterName != NULL )
    {
        NdisFreeMemory( OpenP->AdapterName,0,0 );
    }

    if ( OpenP->Environment != NULL )
    {
        NdisFreeMemory( OpenP->Environment,0,0 );
    }

    if ( OpenP->Stress->Pend != NULL )
    {
        NdisFreeMemory( OpenP->Stress->Pend,0,0 );
        NdisFreeSpinLock( &OpenP->Stress->Pend->SpinLock );
    }

    if ( OpenP->Stress->Results != NULL )
    {
        NdisFreeMemory( OpenP->Stress->Results,0,0 );
    }

    if ( OpenP->Send != NULL )
    {
        NdisFreePacketPool( OpenP->Send->PacketHandle );
        NdisFreeMemory( (PVOID)OpenP->Send->Counters,0,0 );
        NdisFreeMemory( OpenP->Send,0,0 );
    }

    if ( OpenP->Receive != NULL )
    {
        NdisFreePacketPool( OpenP->Receive->PacketHandle );
        NdisFreeMemory( (PVOID)OpenP->Receive->Counters,0,0 );
        NdisFreeMemory( OpenP->Receive,0,0 );
    }

    if ( OpenP->Pause != NULL )
    {
        if ( OpenP->Pause->PoolAllocated == TRUE )
        {
            NdisFreePacketPool( OpenP->Pause->PacketHandle );
        }
        NdisFreeSpinLock( &OpenP->Pause->SpinLock );
        NdisFreeMemory( OpenP->Pause,0,0 );
    }
}



VOID
TpCancelIrp(
    IN PDEVICE_CONTEXT DeviceContext,
    IN PIRP Irp
    )

// ----------
//
// Routine Description:
//
// Arguments:
//
//     DeviceObject - Pointer to device object for this driver.
//
//     Irp - Pointer to the request packet representing the I/O request
//           to cancel.
//
// Return Value:
//
//     None.
//
// ----------

{
    POPEN_BLOCK OpenP;
    PIO_STACK_LOCATION IrpSp;

    IrpSp = IoGetCurrentIrpStackLocation( Irp );

    OpenP = (POPEN_BLOCK)Irp->IoStatus.Information;

    IoSetCancelRoutine( Irp,NULL );

    IoReleaseCancelSpinLock( Irp->CancelIrql );

    NdisAcquireSpinLock( &OpenP->SpinLock );

    if ((( Irp == OpenP->Stress->StressIrp ) ||
         ( Irp == OpenP->Send->SendIrp ))    ||
         ( Irp == OpenP->Receive->ReceiveIrp ) ||
         ( OpenP->PerformanceTest && (Irp == OpenP->Perform->PerformIrp)))
    {
        //
        // These Irps will handle the cancel and clean up themselves
        // so just return
        //

        NdisReleaseSpinLock( &OpenP->SpinLock );
        return;
    }
    else if ( Irp == OpenP->Irp )
    {
        //
        // We have found one of the General Case Irp to be cancelled.
        // first set the flag that this Irp has been cancelled, them
        // complete it.
        //

        OpenP->IrpCancelled = TRUE;
        OpenP->Irp = NULL;

        NdisReleaseSpinLock( &OpenP->SpinLock );

        IoCompleteRequest( Irp, IO_NETWORK_INCREMENT );
    }
    else
    {
        NdisReleaseSpinLock( &OpenP->SpinLock );
    }
}