summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/testprot/tpdrvr/protocol.c
blob: e45f71b2c0d54967a6f9d548ba44802ed8088db3 (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
// ----------------------------
// 
// Copyright (c) 1990  Microsoft Corporation
// 
// Module Name:
// 
//     protocol.c
// 
// Abstract:
// 
//     Test Protocol Indication and Completion routines called by a MAC.
// 
// Author:
// 
//     Tom Adams (tomad) 19-Nov-1991
// 
// Environment:
// 
//     Kernel mode, FSD
// 
// Revision History:
// 
//      Tim Wynsma (timothyw) 4-27-94
//          Performance tests
//                            5-18-94
//          Enhancements/improvements to performance tests
//                            6-08-94
//          Perf tests chgd to client/server model
//
// ---------------------------

#include <ndis.h>

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



VOID
TestProtocolOpenComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status,
    IN NDIS_STATUS OpenErrorStatus
    )
{
    TpFuncOpenComplete( ProtocolBindingContext,Status,OpenErrorStatus );
}



VOID
TestProtocolCloseComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status
    )
{
    TpFuncCloseComplete( ProtocolBindingContext,Status );
}



VOID
TestProtocolSendComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_PACKET Packet,
    IN NDIS_STATUS Status
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);
    ULONG PacketSignature;

    if (OpenP->PerformanceTest)
    {
        TpPerfSendComplete( ProtocolBindingContext,Packet,Status );
    }
    else
    {
        //
        // First get the signature out of the packet if it is a test prot
        // packet.
        //

        PacketSignature = TpGetPacketSignature( Packet );

        if ((( OpenP->Stress->Stressing == TRUE ) &&
             ( OpenP->Stress->StressEnded == FALSE )) &&
             ( PacketSignature == STRESS_PACKET_SIGNATURE )) 
        {
            NdisAcquireSpinLock( &OpenP->SpinLock );
            OpenP->GlobalCounters->SendComps++;
            NdisReleaseSpinLock( &OpenP->SpinLock );

            //
            // If this is a stress packet, then let the stress send complete
            // routine handle it.
            //

            TpStressSendComplete( ProtocolBindingContext,Packet,Status );
        } 
        else 
        {
            TpFuncSendComplete( ProtocolBindingContext,Packet,Status );
        }
    }
}



VOID
TestProtocolTransferDataComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_PACKET Packet,
    IN NDIS_STATUS Status,
    IN UINT BytesTransferred
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);
    PPROTOCOL_RESERVED ProtRes;

    ProtRes = PROT_RES( Packet );

    if (OpenP->PerformanceTest)
    {
        TpPrint0("TestProtocolTransferDataComplete:  called while in performance test\n");
        return;
    }

    if ((( OpenP->Stress->Stressing == TRUE ) &&
         ( OpenP->Stress->StressEnded == FALSE )) &&
         ( ProtRes->RequestHandle->Signature  == STRESS_REQUEST_HANDLE_SIGNATURE )) 
    {
        //
        // The transfer data was called by the stress routines, so
        // let them complete it.
        //

        TpStressTransferDataComplete(   ProtocolBindingContext,
                                        Packet,
                                        Status,
                                        BytesTransferred );
    } 
    else
    {
        TpFuncTransferDataComplete( ProtocolBindingContext,
                                    Packet,
                                    Status,
                                    BytesTransferred );
    }
}



VOID
TestProtocolResetComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS Status
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);

    if ( OpenP->Stress->Resetting == TRUE ) 
    {
        TpStressResetComplete( ProtocolBindingContext,Status );
    } 
    else 
    {
        TpFuncResetComplete( ProtocolBindingContext,Status );
    }
}



VOID
TestProtocolRequestComplete(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN PNDIS_REQUEST NdisRequest,
    IN NDIS_STATUS Status
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);
    PTP_REQUEST_HANDLE ReqHndl;
    BOOLEAN StressRequest = FALSE;

    if ((( OpenP->Stress->Stressing == TRUE ) &&
         ( OpenP->Stress->StressEnded == FALSE )) &&
         ( OpenP->StressReqHndl != NULL )) 
    {
        if ( OpenP->StressReqHndl->u.STRESS_REQ.Request == NdisRequest ) 
        {
            StressRequest = TRUE;
        } 
        else 
        {
            ReqHndl = OpenP->StressReqHndl;

            do 
            {
                if ( ReqHndl->u.STRESS_REQ.NextReqHndl->u.STRESS_REQ.Request == NdisRequest ) 
                {
                    StressRequest = TRUE;
                    break;
                } 
                else 
                {
                    ReqHndl = ReqHndl->u.STRESS_REQ.NextReqHndl;
                }
            } while ( ReqHndl->u.STRESS_REQ.NextReqHndl != NULL );
        }

        if ( StressRequest == TRUE ) 
        {
            TpStressRequestComplete( ProtocolBindingContext,NdisRequest,Status );
        } 
        else 
        {
            TpFuncRequestComplete( ProtocolBindingContext,NdisRequest,Status );
        }
    } 
    else 
    {
        TpFuncRequestComplete( ProtocolBindingContext,NdisRequest,Status );
    }
}



NDIS_STATUS
TestProtocolReceive(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_HANDLE MacReceiveContext,
    IN PVOID HeaderBuffer,
    IN UINT HeaderBufferSize,
    IN PVOID LookaheadBuffer,
    IN UINT LookaheadBufferSize,
    IN UINT PacketSize
    )
{
    POPEN_BLOCK  OpenP      = ((POPEN_BLOCK)ProtocolBindingContext);
    PUCHAR       Lookahead  = (PUCHAR)LookaheadBuffer;
    PPACKET_INFO PacketInfo;
    //
    // STARTCHANGE
    //
    UINT         HeaderVariance = sizeof(MEDIA_HEADER)- HeaderBufferSize;
    //
    // STOPCHANGE
    //


    //
    // SPECIAL ENTRY. THIS MUST BE REMOVED IF WE CREATE
    // AND TEST FOR TRUE MAC FRAMES AND OTHER RESERVED TYPES
    //
    switch( OpenP->Media->MediumType ) 
    {
        case NdisMedium802_5:
            //
            // If the Frame Control indicates that this frames is anything other than
            // an LLC frame, we will not accept since we are not responsible for
            // generating this frame and this is not part of our control environment
            //
            // In Token Ring the bit Frame Control field
            //    F F Z Z Z Z Z Z
            //    where FF must be 0 1 for an LLC PDU
            //

            if ( (((PTR_802_5)HeaderBuffer)->FC & 0xC0) != 0x40 ) 
            {
                IF_TPDBG( TP_DEBUG_INFOLEVEL_2 ) 
                {
                    TpPrint1(
    "TestProtocolReceive: Dropping 802.5 frame as we received FC Control Frame set to : 0x%2.2x\n",
                                ((PTR_802_5)HeaderBuffer)->FC );
                }
                return NDIS_STATUS_NOT_RECOGNIZED;
            }
            break;

        case NdisMediumFddi:
            //
            // If the Frame Control indicates that this frames is anything other than
            // an LLC frame, we will not accept since we are not responsible for
            // generating this frame and this is not part of our control environment
            //
            // In FDDI the bit Frame Control field
            //    C L F F Z Z Z Z
            //    where FF must be 0 1 for an LLC PDU
            //

            if ( (((PFDDI)HeaderBuffer)->FC & 0x30) != 0x10 ) 
            {
                IF_TPDBG( TP_DEBUG_INFOLEVEL_2 ) 
                {
                    TpPrint1(
    "TestProtocolReceive: Dropping FDDI frame as we received FC Control Frame set to : 0x%2.2x\n",
                           ((PFDDI)HeaderBuffer)->FC );
                }
                return NDIS_STATUS_NOT_RECOGNIZED;
            }
            break;

        default: 
            break;

    }

    //
    // STARTCHANGE
    //
    // Adjust the look ahead buffer so that it points to
    // the beginning of PACKET_INFO structure
    //
    LookaheadBuffer      = (PVOID)( (PUCHAR)LookaheadBuffer + HeaderVariance );
    LookaheadBufferSize -= HeaderVariance;
    //
    // STOPCHANGE
    //

    if (OpenP->PerformanceTest)
    {
        return TpPerfReceive(   ProtocolBindingContext,
                                LookaheadBuffer,
                                LookaheadBufferSize,
                                PacketSize );
    }

    PacketInfo = LookaheadBuffer;

    if ((( OpenP->Stress->Stressing == TRUE ) &&
         ( OpenP->Stress->StressEnded == FALSE )) &&
         ( PacketInfo->Signature == STRESS_PACKET_SIGNATURE )) 
    {
        //
        // if so pass it to the stress receive routine.
        //

        return TpStressReceive( ProtocolBindingContext,
                                MacReceiveContext,
                                HeaderBuffer,
                                HeaderBufferSize,
                                LookaheadBuffer,
                                LookaheadBufferSize,
                                PacketSize );

    } 
    else 
    {
        //
        // otherwise let the functional receive routine handle it.
        //
        return TpFuncReceive(   ProtocolBindingContext,
                                MacReceiveContext,
                                HeaderBuffer,
                                HeaderBufferSize,
                                LookaheadBuffer,
                                LookaheadBufferSize,
                                PacketSize );
    }
}



VOID
TestProtocolReceiveComplete(
    IN NDIS_HANDLE ProtocolBindingContext
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);

    if (OpenP->PerformanceTest)
    {
       return; 
    } 

    if (( OpenP->Stress->Stressing == TRUE ) &&
        ( OpenP->Stress->StressEnded == FALSE )) 
    {
        NdisAcquireSpinLock( &OpenP->SpinLock );
        OpenP->GlobalCounters->ReceiveComps++;
        NdisReleaseSpinLock( &OpenP->SpinLock );
        TpStressReceiveComplete( ProtocolBindingContext );
    } 
    else 
    {
        TpFuncReceiveComplete( ProtocolBindingContext );
    }
}



VOID
TestProtocolStatus(
    IN NDIS_HANDLE ProtocolBindingContext,
    IN NDIS_STATUS GeneralStatus,
    IN PVOID StatusBuffer,
    IN UINT StatusBufferSize
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);

    if ( OpenP->Stress->Stressing == FALSE ) 
    {
        UINT SpecificStatus;

        //
        // XXX: add an expecting flag for tpstressreset.
        //
        // ADAMBA: Assume the buffer has a four-byte specific status.
        //

        if ( StatusBufferSize == sizeof( SpecificStatus )) 
        {
            SpecificStatus = *(PULONG)StatusBuffer;

            TpFuncStatus(   ProtocolBindingContext,
                            GeneralStatus,
                            StatusBuffer,
                            StatusBufferSize );
        }
    }
}



VOID
TestProtocolStatusComplete(
    IN NDIS_HANDLE ProtocolBindingContext
    )
{
    POPEN_BLOCK OpenP = ((POPEN_BLOCK)ProtocolBindingContext);

    if ( OpenP->Stress->Stressing == FALSE ) 
    {
        // XXX: add an expecting flag for tpstressreset.

        TpFuncStatusComplete( ProtocolBindingContext );
    }
}