summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/testprot/tpdrvr/strrcv.c
blob: e7e8f12093403a9d97d85ed00c9f1d0654f2f2a1 (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
/*++

Copyright (c) 1990  Microsoft Corporation

Module Name:

    tpstress.c

Abstract:

    This module implements the Test Protocol Stress routines and the
    basic controls for stressing the MAC.

Author:

    Tom Adams (tomad) 15-Dec-1990

Environment:

    Kernel mode

Revision History:

--*/

#include <ndis.h>
#include <string.h>

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



NDIS_STATUS
TpStressReceive(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_HANDLE MacReceiveContext,
    IN PVOID HeaderBuffer,
    IN UINT HeaderBufferSize,
    IN PVOID LookaheadBuffer,
    IN UINT LookaheadBufferSize,
    IN UINT PacketSize
    )

/*++

Routine Description:

Arguments:

Return Value:

--*/

{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);
    NDIS_STATUS Status = NDIS_STATUS_SUCCESS;
    PNDIS_PACKET Packet;
    PCLIENT_STORAGE Client;
    PSERVER_STORAGE Server;
    PSTRESS_ARGUMENTS Args;
    PPACKET_INFO pi;
    PSTRESS_CONTROL sc;
    UCHAR NextClient;
    UCHAR NextServer;
    INT NewPacketSize;
    INT NumResponses;
    BOOLEAN NewClient;
    BOOLEAN NewServer;
    PUCHAR DestAddr;
    PUCHAR SrcAddr;

    DestAddr = (PUCHAR)HeaderBuffer + (ULONG)OpenP->Media->DestAddrOffset;
    SrcAddr  = (PUCHAR)HeaderBuffer + (ULONG)OpenP->Media->SrcAddrOffset;

    //
    // pi is the packet information section of the test prot packet header,
    // sc is the stress control section of the testprot packet header.  We
    // will us pi and sc to quickly reference info in the header.
    //

    pi = (PPACKET_INFO)LookaheadBuffer;

    sc = (PSTRESS_CONTROL)((PUCHAR)LookaheadBuffer +
                            (ULONG)sizeof( PACKET_INFO ));

    if ( !TpCheckSum(
             (PUCHAR)pi,
             sizeof( STRESS_PACKET ) -
                ( sizeof( ULONG ) + OpenP->Media->HeaderSize ),
             (PULONG)&sc->CheckSum
             )) {

        NdisAcquireSpinLock( &OpenP->SpinLock );
        ++OpenP->GlobalCounters->CorruptRecs;
        NdisReleaseSpinLock( &OpenP->SpinLock );

        Status = NDIS_STATUS_NOT_RECOGNIZED;
    }

    Client = OpenP->Stress->Client;
    Server = OpenP->Stress->Server;
    Args   = OpenP->Stress->Arguments;

    switch( pi->u.PacketProtocol ) {

        //
        // A REGISTER_REQ(2) packet is a request from a TP_CLIENT to
        // participate in a stress test.  If this packet is from a new
        // client then a response packet will be set back to the client,
        // the client will be added to the Clients array, and its counters
        // and control structures for the test will be reset.  If this is
        // an old client, then we will just reset the counters and control
        // structures.
        //

        case REGISTER_REQ:
        case REGISTER_REQ2:

        //
        // Is this packet really destined for us, check that the
        // destination address matches the stress address.
        //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->Environment->StressAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the stress
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a request from a Client to register.
            // Are we a Server?
            //

            } else if ( Args->MemberType == TP_CLIENT ) {

                //
                // No! We are not a Server, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                //
                // If there is room, see if this is a new client and if so
                // register it, and send a REGISTER_RESP packet.
                //

                if ( Server->NumClients < MAX_CLIENTS ) {

                    NextClient = 0;
                    NewClient = TRUE;

                    //
                    // See if we have already registered this client.
                    //

                    while ( NextClient < Server->NumClients ) {

                        //
                        // If the Src Address matches a previously registered
                        // Client, and the Open Instance of that Client matches
                        // the Src Instance then we have already registered
                        // this Client, reset the counters, send a response,
                        // but ignore it.  Otherwise this is a new Client so
                        // register it properly.
                        //

                        if (( RtlCompareMemory(
                                  SrcAddr,
                                  Server->Clients[NextClient].Address,
                                  OpenP->Media->AddressLen ) ==
                              (ULONG)OpenP->Media->AddressLen )

                              &&

                            ( pi->SrcInstance ==
                              Server->Clients[NextClient].ClientInstance )) {

                            //
                            // We have already registered with this client.
                            //

                            NewClient = FALSE;
                            break;

                        } else {

                            //
                            // This is not a match , try the next one.
                            //

                            NextClient++;
                        }
                    }
                }

                //
                // This REGISTER_REQ(2) packet is from a New Client, and we
                // have room for it, so register it.
                //

                if ( NewClient == TRUE ) {

                    IF_TPDBG ( TP_DEBUG_DPC ) {
                        TpPrint0("TpStressReceive: REGISTER_REQ(2) - Registering Client\n");
                    }

                    //
                    // set up the CLIENT_INFO data structure and initialize it.
                    //

                    NextClient = Server->NumClients++;
                    ++Server->ActiveClients;
                    Server->Clients[NextClient].ClientReference = NextClient;
                    Server->Clients[NextClient].ClientInstance = pi->SrcInstance;
                    Server->Clients[NextClient].ServerResponseType = sc->ResponseType;
                    Server->Clients[NextClient].DataChecking = sc->DataChecking;
                    Server->Clients[NextClient].LastSequenceNumber = 0;

                    RtlMoveMemory(
                        Server->Clients[NextClient].Address,
                        SrcAddr,
                        OpenP->Media->AddressLen
                        );

                    //
                    // Now allocate and initialize the instances counter
                    //

                    Status = NdisAllocateMemory(
                        (PVOID *)&Server->Clients[NextClient].Counters,
                        sizeof( INSTANCE_COUNTERS ),
                        0,
                        HighestAddress
                        );

                    if ( Status != NDIS_STATUS_SUCCESS ) {
                        IF_TPDBG (TP_DEBUG_RESOURCES) {
                            TpPrint0("TpStressReceive: failed to allocate counters.\n");
                        }

                        Status = NDIS_STATUS_RESOURCES;
                        break;

                    } else {

                        NdisZeroMemory(
                            (PVOID)Server->Clients[NextClient].Counters,
                            sizeof( INSTANCE_COUNTERS )
                            );
                    }
                } else if ( pi->u.PacketProtocol == REGISTER_REQ ) {

                     NdisZeroMemory(
                         (PVOID)Server->Clients[NextClient].Counters,
                         sizeof( INSTANCE_COUNTERS )
                         );

                    Server->Clients[NextClient].ServerResponseType = sc->ResponseType;
                    Server->Clients[NextClient].DataChecking = sc->DataChecking;
                    Server->Clients[NextClient].LastSequenceNumber = 0;
                }

                if (( pi->u.PacketProtocol == REGISTER_REQ ) ||
                    ( NewClient == TRUE )) {

                    //
                    // Then build a REGISTER_RESP packet to register with, and
                    // send it to the Client.
                    //

                    do {
                        Packet = TpStressCreatePacket(
                                     OpenP,
                                     Server->PacketHandle,
                                     Args->PacketMakeUp,
                                     pi->SrcInstance,
                                     OpenP->OpenInstance,
                                     REGISTER_RESP,
                                     Args->ResponseType,
                                     SrcAddr,
                                     sizeof( STRESS_PACKET ),
                                     sizeof( STRESS_PACKET ),
                                     sc->SequenceNumber,
                                     sc->SequenceNumber +
                                        OpenP->Environment->WindowSize,
                                     NextClient,
                                     0,
                                     Args->DataChecking
                                     );

                        if ( Packet == NULL ) {
                            IF_TPDBG ( TP_DEBUG_RESOURCES ) {
                                TpPrint0("TpStressReceive: failed to create REGISTER_RESP Packet\n");
                            }
                        }
                    } while ( Packet == NULL );

                    //
                    // And send it.
                    //

                    TpStressSend( OpenP,Packet,NULL );
                }
            }

            break;

        //
        // A REGISTER_RESP packet is a response from a TP_SERVER to a
        // previously sent REGISTER_REQ(2) that the server will be
        // participating in the next stress test.  If this packet is from
        // a new server then the server will be added to the Server array,
        // and its counters and control structures for the test will be
        // reset.  If the response packet is from an old client, then we
        // will just reset the counters.
        //

        case REGISTER_RESP:

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a response from a Server to register. Are we a Client?
            //

            } else if ( Args->MemberType == TP_SERVER ) {

                //
                // No! We are not a Client, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                if ( Client->NumServers < MAX_SERVERS ) {

                    NextServer = 0;
                    NewServer = TRUE;

                    //
                    // See if this is a new server.
                    //

                    while ( NextServer < Client->NumServers ) {

                        if (( RtlCompareMemory(
                                  SrcAddr,
                                  Client->Servers[NextServer].Address,
                                  OpenP->Media->AddressLen) ==
                              (ULONG)OpenP->Media->AddressLen )

                              &&

                            ( pi->SrcInstance ==
                              Client->Servers[NextServer].ServerInstance )) {

                            //
                            // This server has already registered, ignore it.
                            //

                            NewServer = FALSE;
                            break;

                        } else {

                            //
                            // Not this server, try the next one.
                            //

                            NextServer++;
                        }
                    }
                }

                if ( NewServer == TRUE ) {

                    IF_TPDBG ( TP_DEBUG_DPC ) {
                        TpPrint0("TpStressReceive: REGISTER_RESP - Registering Server\n");
                    }

                    //
                    // set up the SERVER_INFO data structure and initialize it.
                    //

                    NextServer = Client->NumServers++;
                    NextServer = Client->ActiveServers++;

                    Client->Servers[NextServer].ServerReference = NextServer;
                    Client->Servers[NextServer].ClientReference = sc->ClientReference;
                    Client->Servers[NextServer].ServerInstance = pi->SrcInstance;
                    Client->Servers[NextServer].ServerActive = TRUE;
                    Client->Servers[NextServer].LastSequenceNumber = 0;

                    RtlMoveMemory(
                        Client->Servers[NextServer].Address,
                        SrcAddr,
                        OpenP->Media->AddressLen
                        );

                    //
                    // Now allocate and initialize the instances counter
                    //

                    Status = NdisAllocateMemory(
                        (PVOID *)&Client->Servers[NextServer].Counters,
                        sizeof( INSTANCE_COUNTERS ),
                        0,
                        HighestAddress
                        );

                    if ( Status != NDIS_STATUS_SUCCESS ) {
                        IF_TPDBG (TP_DEBUG_RESOURCES) {
                            TpPrint0("TpStressReceive: failed to allocate counters.\n");
                        }

                        Status = NDIS_STATUS_RESOURCES;
                        break;

                    } else {

                        NdisZeroMemory(
                            (PVOID)Client->Servers[NextServer].Counters,
                            sizeof( INSTANCE_COUNTERS )
                            );
                    }

                } else {

                    //
                    // Old Server, reset the statistics counters.
                    //

                     NdisZeroMemory(
                         (PVOID)Client->Servers[NextServer].Counters,
                         sizeof( INSTANCE_COUNTERS )
                         );

                    Client->Servers[NextServer].LastSequenceNumber = 0;
                }
            }

            break;

        //
        // A TEST_REQ packet is the standard test packet sent from a the
        // client to each of the servers participating in the test.  This
        // packet is evaluated for data integrity, counted, and the required
        // response packet is returned to the client.
        //

        case TEST_REQ:

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a test request from a Client. Are we a Server?,
            //

            } else if ( Args->MemberType == TP_CLIENT ) {

                //
                // No! We are not a Server, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this a client we have previously registered with?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen) !=
                         (ULONG)OpenP->Media->AddressLen )

                         ||

                       ( pi->SrcInstance !=
                         Server->Clients[sc->ClientReference].ClientInstance )) {

                //
                // No! We should ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this packet destined for our open instance or another
            // open instance of the same card?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen) ==
                         (ULONG)OpenP->Media->AddressLen)

                         &&

                       ( pi->DestInstance != OpenP->OpenInstance )) {

                //
                // No, this packet is for some other open instance.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                if ( Args->BeginReceives == FALSE ) {

                    IF_TPDBG ( TP_DEBUG_DPC ) {
                        TpPrint0("TpStressReceive: received TEST_REQ packet, not initialized\n");
                    }
                    // Increment receive counter for accounting purposes.
                    break;
                }

                //
                // Has this packet arrived out of order?
                //

                if ( sc->SequenceNumber <= Server->Clients[sc->ClientReference].LastSequenceNumber ) {
                    IF_TPDBG ( TP_DEBUG_NDIS_ERROR ) {
                        TpPrint0("\nTpStressReceive: PACKET ARRIVED OUT OF ORDER, OR ARRIVED TWICE !!!\n");
                        TpPrint3("TEST_REQ Packet: Sequence Number %d @ 0x%lX, expected greater than %d.\n\n",
                        sc->SequenceNumber, HeaderBuffer,
                        Server->Clients[sc->ClientReference].LastSequenceNumber);
                        TpBreakPoint();
                    }
                } else {
                    Server->Clients[sc->ClientReference].LastSequenceNumber = sc->SequenceNumber;
                }

                if ( Server->Clients[sc->ClientReference].DataChecking == TRUE ) {

                    if (( pi->PacketSize - sizeof( STRESS_PACKET )) > 0 ) {

                        TpStressCheckPacketData(
                            OpenP,
                            MacReceiveContext,
                            sc->DataBufOffset,
                            pi->PacketSize,
                            Server->Clients[sc->ClientReference].Counters
                            );
                    }
                }

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++Server->Clients[sc->ClientReference].Counters->Receives;
                NdisReleaseSpinLock( &OpenP->SpinLock );

                switch( Server->Clients[sc->ClientReference].ServerResponseType ) {

                    case NO_RESPONSE:

                        NumResponses = 0;
                        break;

                    case FULL_RESPONSE:

                        NumResponses = 1;
                        NewPacketSize = pi->PacketSize;
                        break;

                    case ACK_EVERY:

                        NumResponses = 1;
                        NewPacketSize = sizeof( STRESS_PACKET );
                        break;

                    case ACK_10_TIMES:

                        NumResponses = 10;
                        NewPacketSize = sizeof( STRESS_PACKET );
                        break;

                    default:
                        IF_TPDBG ( TP_DEBUG_DPC ) {
                            TpPrint0("TpStressReceive: Unknown Response Type\n");
                        }

                        NdisAcquireSpinLock( &OpenP->SpinLock );
                        ++OpenP->GlobalCounters->CorruptRecs;
                        NdisReleaseSpinLock( &OpenP->SpinLock );

                        Status = NDIS_STATUS_NOT_RECOGNIZED;
                        break;
                }

                while ( NumResponses-- > 0 ) {

                    //
                    // if send now, build and send a TEST_RESP packet
                    //

                    TpStressServerSend(
                        OpenP,
                        Server->TransmitPool,
                        SrcAddr,
                        pi->SrcInstance,
                        OpenP->OpenInstance,
                        sc->SequenceNumber,
                        sc->SequenceNumber +
                            OpenP->Environment->WindowSize,
                        sc->ClientReference,
                        sc->ServerReference,
                        NewPacketSize,
                        sc->DataBufOffset
                        );
                }

                //
                // else queue send for TpStressReceiveComplete send
                //
            }

            break;

        //
        // A TEST_RESP packet is the response from a server to a client's
        // TEST_REQ packet.  This packet is checked for data integrity,
        // counted, and discarded.
        //

        case TEST_RESP:

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a test response from a Server. Are we a Client?
            //

            } else if ( Args->MemberType == TP_SERVER ) {

                //
                // No! We are not a Client, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this a Server that has previously registered with us?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Client->Servers[sc->ServerReference].Address,
                             OpenP->Media->AddressLen) !=
                         (ULONG)OpenP->Media->AddressLen )

                         ||

                       ( pi->SrcInstance !=
                         Client->Servers[sc->ServerReference].ServerInstance )) {

                //
                // No! We should ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this packet destined for this open instance or another
            // open instance of the same card?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Client->Servers[sc->ServerReference].Address,
                             OpenP->Media->AddressLen) ==
                         (ULONG)OpenP->Media->AddressLen)

                         &&

                       ( pi->DestInstance != OpenP->OpenInstance )) {

                //
                // This packet is for some other open instance, ignore it.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

            //
            // Has this packet arrived out of order?
            //

                if ( sc->SequenceNumber <= Client->Servers[sc->ServerReference].LastSequenceNumber ) {

                    if (( Args->ResponseType == ACK_10_TIMES ) &&
                        ( sc->SequenceNumber == Client->Servers[sc->ServerReference].LastSequenceNumber )) {
                        ;   // This is okay, we expect 10 packets with same
                            // number ignore packet.
                    } else {

                        //
                        // A Packet has arrived out or order, PANIC!
                        //

                        IF_TPDBG ( TP_DEBUG_DPC ) {
                            TpPrint0("\nTpStressReceive: PACKET ARRIVED OUT OF ORDER, OR ARRIVED TWICE !!!\n");
                            TpPrint3("TEST_RESP Packet: Sequence Number %d @ 0x%lX, expected greater than %d.\n\n",
                                sc->SequenceNumber, HeaderBuffer,
                                Client->Servers[sc->ServerReference].LastSequenceNumber);
                            TpBreakPoint();
                        }
                    }
                } else {
                    Client->Servers[sc->ServerReference].LastSequenceNumber = sc->SequenceNumber;
                }

                if ( Args->WindowEnabled == TRUE ) {
                    Client->Servers[sc->ServerReference].MaxSequenceNumber = sc->MaxSequenceNumber;
                } else {
                    Client->Servers[sc->ServerReference].MaxSequenceNumber = 0xFFFFFFFF;
                }

                //
                // We have received a packet from this server so zero its
                // window resetting counter in case it has any strikes
                // against it.
                //

                Client->Servers[sc->ServerReference].WindowReset = 0;

                //
                // Update the instance receive counters for the Server
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++Client->Servers[sc->ServerReference].Counters->Receives;
                NdisReleaseSpinLock( &OpenP->SpinLock );

                if ( Args->DataChecking == TRUE ) {

                    if (( pi->PacketSize - sizeof( STRESS_PACKET )) > 0 ) {

                        TpStressCheckPacketData(
                            OpenP,
                            MacReceiveContext,
                            sc->DataBufOffset,
                            pi->PacketSize,
                            Client->Servers[sc->ServerReference].Counters
                            );
                    }
                }
            }

            break;

        //
        // A STATS_REQ packet is a request by the client at the end of
        // a stress test for the server to return the statistics.
        //

        case STATS_REQ:

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a Statistics request from a Client.
            // Are we a Server?,
            //

            } else if ( Args->MemberType == TP_CLIENT ) {

                //
                // No! We are not a Server, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this a client we have previously registered with?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen ) !=
                         (ULONG)OpenP->Media->AddressLen )

                         ||

                       ( pi->SrcInstance !=
                         Server->Clients[sc->ClientReference].ClientInstance )) {

                //
                // No! We should ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this packet destined for our open instance or another
            // open instance on the same card?
            //

            } else if (( pi->DestInstance != OpenP->OpenInstance )

                         &&

                       ( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen ) ==
                         (ULONG)OpenP->Media->AddressLen )) {

                //
                // This packet is for some other open instance, ignore it.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                //
                // We need to respond to the client's request for the
                // test statistics, so create a STATS_RESP packet,
                //

                Packet = TpStressCreatePacket(
                             OpenP,
                             Server->PacketHandle,
                             KNOWN,
                             pi->SrcInstance,
                             OpenP->OpenInstance,
                             STATS_RESP,
                             Args->ResponseType,
                             SrcAddr,

                             sizeof( STRESS_PACKET ) +
                                 sizeof( INSTANCE_COUNTERS ) +
                                 sizeof( GLOBAL_COUNTERS ), // PacketSize

                             sizeof( STRESS_PACKET ) +
                                 sizeof( INSTANCE_COUNTERS ) +
                                 sizeof( GLOBAL_COUNTERS ), // BufferSize

                             sc->SequenceNumber,
                             sc->SequenceNumber,
                             sc->ClientReference,
                             sc->ServerReference,
                             FALSE
                             );

                if ( Packet == NULL ) {
                    IF_TPDBG(TP_DEBUG_RESOURCES) {
                        TpPrint0("TpStressReceive: failed to create STATS_RESP Packet\n");
                    }
                } else {

                    //
                    // Write the statistics into the packet,
                    //

                    TpWriteServerStatistics(
                        OpenP,
                        Packet,
                        &Server->Clients[sc->ClientReference]
                        );

                   if ( sc->SequenceNumber == 0 ) {

                        //
                        // Maybe instead of checking the SequenceNumber is
                        // zero, the first packet, we should have a flag in
                        // the server for this in case we miss the first
                        // STATS_REQ packet.
                        //

                        TpPrintServerStatistics(
                            OpenP,
                            &Server->Clients[sc->ClientReference]
                            );
                    }

                    //
                    // And send it back to the Client.
                    //

                    TpStressSend( OpenP,Packet,NULL );
                }
            }

            break;

        //
        // A STATS_RESP packet is the server responding to a clients
        // request for stress statistics.  The stats a bundled in the
        // data field of the packet.  The client will read them into
        // the local buffer and discard the packet.
        //

        case STATS_RESP:

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is a Statistics response from a Server.
            // Are we a Client?
            //

            } else if ( Args->MemberType == TP_SERVER ) {

                //
                // No! We are not a Client, ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this a Server that has previously registered with us?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Client->Servers[sc->ServerReference].Address,
                             OpenP->Media->AddressLen) !=
                         (ULONG)OpenP->Media->AddressLen )

                         ||

                       ( pi->SrcInstance !=
                         Client->Servers[sc->ServerReference].ServerInstance )) {

                //
                // No! We should ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this packet destined for our open instance or another
            // open instance on the same card?
            //

            } else if (( pi->DestInstance != OpenP->OpenInstance ) &&
                       ( RtlCompareMemory(
                             SrcAddr,
                             Client->Servers[sc->ServerReference].Address,
                             OpenP->Media->AddressLen) ==
                         (ULONG)OpenP->Media->AddressLen )) {

                //
                // This packet is for some other open instance, ignore it.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                //
                // Copy the server's stats to the Stress Results buffer.
                //

                TpCopyServerStatistics(
                    OpenP,
                    LookaheadBuffer,
                    sc->ServerReference
                    );
            }

            break;

        //
        // AN END_REQ packet is a notification by a client that the stress
        // test has completed.  The server decrements the number of clients,
        // and discards the packet.
        //

        case END_REQ:
        {
            UINT i;

            //
            // Is this packet really destined for us, check that the
            // destination address matches the local card address we
            // queried and stored in the OPEN_BLOCK.
            //

            if ( RtlCompareMemory(
                     DestAddr,
                     OpenP->StationAddress,
                     OpenP->Media->AddressLen ) !=
                 OpenP->Media->AddressLen ) {

                //
                // the destination address does not match the local card
                // address, we should never have received this packet!
                //

                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->GlobalCounters->InvalidPacketRecs;
                NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // This packet is an end request from a Client. Are we a Server?,
            //

            } else if ( Args->MemberType == TP_CLIENT ) {

                //
                // No! We are not a Server, ignote this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this a client we have previously registered with?
            //

            } else if (( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen) !=
                         (ULONG)OpenP->Media->AddressLen )

                         ||

                       ( pi->SrcInstance !=
                         Server->Clients[sc->ClientReference].ClientInstance )) {

                //
                // No! We should ignore this packet.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            //
            // Is this packet destined for our open instance or another
            // open instance on the same card?
            //

            } else if (( pi->DestInstance != OpenP->OpenInstance )

                         &&

                       ( RtlCompareMemory(
                             SrcAddr,
                             Server->Clients[sc->ClientReference].Address,
                             OpenP->Media->AddressLen) ==
                         (ULONG)OpenP->Media->AddressLen)) {

                //
                // This packet is for some other open instance, ignore it.
                //

                Status = NDIS_STATUS_NOT_RECOGNIZED;

            } else {

                if ( Server->Clients[sc->ClientReference].TestEnding == FALSE ) {
                    Server->Clients[sc->ClientReference].TestEnding = TRUE;
                    --Server->ActiveClients;
                }

                //
                // If we are running as only a server, and there are packets
                // remaining in the Pend Queue, display them to the debug
                // screen.
                //

                if (( Args->MemberType == TP_SERVER ) &&
                    ( OpenP->Stress->Pend->PendingPackets != 0 )) {

                    //
                    // There are packets in the pend queue, so print out
                    // the packet addresses and break.
                    //

                    IF_TPDBG( TP_DEBUG_DPC ) {

                        TpPrint1("TpStressEndDpc: The following %d packets are still in the\n",
                            OpenP->Stress->Pend->PendingPackets);
                        TpPrint1("                Server's Pend Queue for Open Instance %d.\n",
                            OpenP->OpenInstance);
                        TpPrint1("                Pend Queue = %lX\n\n",
                            OpenP->Stress->Pend);

                        for ( i=0 ; i<NUM_PACKET_PENDS ; i++ ) {

                            if (( OpenP->Stress->Pend->Packets[i] != NULL ) &&
                                ( OpenP->Stress->Pend->Packets[i] != (PNDIS_PACKET)-1 )) {

                                TpPrint1("\t\t%lX\n", OpenP->Stress->Pend->Packets[i]);
                            }
                        }

                        TpBreakPoint();

                        //
                        // And set the PendingPackets counter to zero, so
                        // we will not print this message on the remainder
                        // of the END_REQ packets that we receive.
                        //

                        OpenP->Stress->Pend->PendingPackets = 0;
                    }

                    TpInitializePending( OpenP->Stress->Pend );
                }
            }
            break;
        }
        default:
            IF_TPDBG ( TP_DEBUG_DPC ) {
                TpPrint0("TpStressReceive: Unknown Packet Protocol\n");
            }
            NdisAcquireSpinLock( &OpenP->SpinLock );
            ++OpenP->GlobalCounters->CorruptRecs;
            NdisReleaseSpinLock( &OpenP->SpinLock );

            Status = NDIS_STATUS_NOT_RECOGNIZED;
    }

    return Status;
}


VOID
TpStressReceiveComplete(
    IN NDIS_HANDLE ProtocolBindingContext
    )

/*++

Routine Description:

Arguments:

Return Value:

--*/

{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);
    ULONG i;

    if (( OpenP->Stress != NULL ) &&
        ( OpenP->Stress->Client != NULL )) {

        for ( i=0;i<MAX_SERVERS;i++ ) {

            if ( OpenP->Stress->Client->Servers[i].Counters != NULL ) {
                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->Stress->Client->Servers[i].Counters->ReceiveComps;
                NdisReleaseSpinLock( &OpenP->SpinLock );
            }
        }
    }

    if (( OpenP->Stress != NULL ) &&
        ( OpenP->Stress->Server != NULL )) {

        for ( i=0;i<MAX_CLIENTS;i++ ) {

            if ( OpenP->Stress->Server->Clients[i].Counters != NULL ) {
                NdisAcquireSpinLock( &OpenP->SpinLock );
                ++OpenP->Stress->Server->Clients[i].Counters->ReceiveComps;
                NdisReleaseSpinLock( &OpenP->SpinLock );
            }
        }
    }

    return;
}