summaryrefslogtreecommitdiffstats
path: root/private/ntos/afd/dispatch.c
blob: 80cce692217ceb83cd261debc9bf631cd0e10576 (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
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    dispatch.c

Abstract:

    This module contains the dispatch routines for AFD.

Author:

    David Treadwell (davidtr)    21-Feb-1992

Revision History:

--*/

#include "afdp.h"

NTSTATUS
AfdDispatchDeviceControl (
    IN PIRP Irp,
    IN PIO_STACK_LOCATION IrpSp
    );

#ifdef ALLOC_PRAGMA
#pragma alloc_text( PAGEAFD, AfdDispatch )
#pragma alloc_text( PAGEAFD, AfdDispatchDeviceControl )
#endif

//
// Lookup table to verify incoming IOCTL codes.
//

ULONG AfdIoctlTable[] =
        {
            IOCTL_AFD_BIND,
            IOCTL_AFD_CONNECT,
            IOCTL_AFD_START_LISTEN,
            IOCTL_AFD_WAIT_FOR_LISTEN,
            IOCTL_AFD_ACCEPT,
            IOCTL_AFD_RECEIVE,
            IOCTL_AFD_RECEIVE_DATAGRAM,
            IOCTL_AFD_SEND,
            IOCTL_AFD_SEND_DATAGRAM,
            IOCTL_AFD_POLL,
            IOCTL_AFD_PARTIAL_DISCONNECT,
            IOCTL_AFD_GET_ADDRESS,
            IOCTL_AFD_QUERY_RECEIVE_INFO,
            IOCTL_AFD_QUERY_HANDLES,
            IOCTL_AFD_SET_INFORMATION,
            IOCTL_AFD_GET_CONTEXT_LENGTH,
            IOCTL_AFD_GET_CONTEXT,
            IOCTL_AFD_SET_CONTEXT,
            IOCTL_AFD_SET_CONNECT_DATA,
            IOCTL_AFD_SET_CONNECT_OPTIONS,
            IOCTL_AFD_SET_DISCONNECT_DATA,
            IOCTL_AFD_SET_DISCONNECT_OPTIONS,
            IOCTL_AFD_GET_CONNECT_DATA,
            IOCTL_AFD_GET_CONNECT_OPTIONS,
            IOCTL_AFD_GET_DISCONNECT_DATA,
            IOCTL_AFD_GET_DISCONNECT_OPTIONS,
            IOCTL_AFD_SIZE_CONNECT_DATA,
            IOCTL_AFD_SIZE_CONNECT_OPTIONS,
            IOCTL_AFD_SIZE_DISCONNECT_DATA,
            IOCTL_AFD_SIZE_DISCONNECT_OPTIONS,
            IOCTL_AFD_GET_INFORMATION,
            IOCTL_AFD_TRANSMIT_FILE,
            IOCTL_AFD_SUPER_ACCEPT,
            IOCTL_AFD_EVENT_SELECT,
            IOCTL_AFD_ENUM_NETWORK_EVENTS,
            IOCTL_AFD_DEFER_ACCEPT,
            IOCTL_AFD_WAIT_FOR_LISTEN_LIFO,
            IOCTL_AFD_SET_QOS,
            IOCTL_AFD_GET_QOS,
            IOCTL_AFD_NO_OPERATION,
            IOCTL_AFD_VALIDATE_GROUP,
            IOCTL_AFD_GET_UNACCEPTED_CONNECT_DATA

#ifdef NT351
            ,IOCTL_AFD_QUEUE_APC
#endif
        };

#define NUM_AFD_IOCTLS  ( sizeof(AfdIoctlTable) / sizeof(AfdIoctlTable[0]) )


NTSTATUS
AfdDispatch (
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP Irp
    )

/*++

Routine Description:

    This is the dispatch routine for AFD.

Arguments:

    DeviceObject - Pointer to device object for target device

    Irp - Pointer to I/O request packet

Return Value:

    NTSTATUS -- Indicates whether the request was successfully queued.

--*/

{
    PIO_STACK_LOCATION irpSp;
    NTSTATUS status;
#if DBG
    KIRQL oldIrql;

    oldIrql = KeGetCurrentIrql( );
#endif

    DeviceObject;   // prevent compiler warnings

    irpSp = IoGetCurrentIrpStackLocation( Irp );

    switch ( irpSp->MajorFunction ) {

    case IRP_MJ_DEVICE_CONTROL:

        return AfdDispatchDeviceControl( Irp, irpSp );

    case IRP_MJ_WRITE:

        //
        // Make the IRP look like a send IRP.
        //

        ASSERT( FIELD_OFFSET( IO_STACK_LOCATION, Parameters.Write.Length ) ==
                FIELD_OFFSET( IO_STACK_LOCATION, Parameters.DeviceIoControl.OutputBufferLength ) );
        ASSERT( FIELD_OFFSET( IO_STACK_LOCATION, Parameters.Write.Key ) ==
                FIELD_OFFSET( IO_STACK_LOCATION, Parameters.DeviceIoControl.InputBufferLength ) );
        irpSp->Parameters.Write.Key = 0;

        status = AfdSend( Irp, irpSp );

        ASSERT( KeGetCurrentIrql( ) == oldIrql );

        return status;

    case IRP_MJ_READ:

        //
        // Make the IRP look like a receive IRP.
        //

        ASSERT( FIELD_OFFSET( IO_STACK_LOCATION, Parameters.Read.Length ) ==
                FIELD_OFFSET( IO_STACK_LOCATION, Parameters.DeviceIoControl.OutputBufferLength ) );
        ASSERT( FIELD_OFFSET( IO_STACK_LOCATION, Parameters.Read.Key ) ==
                FIELD_OFFSET( IO_STACK_LOCATION, Parameters.DeviceIoControl.InputBufferLength ) );
        irpSp->Parameters.Read.Key = 0;

        status = AfdReceive( Irp, irpSp );

        ASSERT( KeGetCurrentIrql( ) == oldIrql );

        return status;

    case IRP_MJ_CREATE:

        status = AfdCreate( Irp, irpSp );

        ASSERT( KeGetCurrentIrql( ) == oldIrql );

        Irp->IoStatus.Status = status;
        IoCompleteRequest( Irp, AfdPriorityBoost );

        return status;

    case IRP_MJ_CLEANUP:

        status = AfdCleanup( Irp, irpSp );

        Irp->IoStatus.Status = status;
        IoCompleteRequest( Irp, AfdPriorityBoost );

        ASSERT( KeGetCurrentIrql( ) == oldIrql );

        return status;

    case IRP_MJ_CLOSE:

        status = AfdClose( Irp, irpSp );

        Irp->IoStatus.Status = status;
        IoCompleteRequest( Irp, AfdPriorityBoost );

        ASSERT( KeGetCurrentIrql( ) == oldIrql );

        return status;

    default:
        KdPrint(( "AfdDispatch: Invalid major function %lx\n",
                      irpSp->MajorFunction ));
        Irp->IoStatus.Status = STATUS_NOT_IMPLEMENTED;
        IoCompleteRequest( Irp, AfdPriorityBoost );

        return STATUS_NOT_IMPLEMENTED;
    }

} // AfdDispatch


NTSTATUS
AfdDispatchDeviceControl (
    IN PIRP Irp,
    IN PIO_STACK_LOCATION IrpSp
    )

/*++

Routine Description:

    This is the dispatch routine for AFD IOCTLs.

Arguments:

    Irp - Pointer to I/O request packet.

    IrpSp - pointer to the stack location to use for this request.

Return Value:

    NTSTATUS -- Indicates whether the request was successfully queued.

--*/

{
    ULONG code;
    ULONG request;
    NTSTATUS status;
#if DBG
    KIRQL oldIrql;

    oldIrql = KeGetCurrentIrql( );
#endif


    //
    // Extract the IOCTL control code and process the request.
    //

    code = IrpSp->Parameters.DeviceIoControl.IoControlCode;
    request = _AFD_REQUEST(code);

    if( _AFD_BASE(code) == FSCTL_AFD_BASE &&
        request < NUM_AFD_IOCTLS &&
        AfdIoctlTable[request] == code ) {

        switch( request ) {

        case AFD_SEND:

            status = AfdSend( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SEND_DATAGRAM:

            status = AfdSendDatagram( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_RECEIVE:

            status = AfdReceive( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_RECEIVE_DATAGRAM:

            status = AfdReceiveDatagram( Irp, IrpSp, 0, 0 );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_TRANSMIT_FILE:

            status = AfdTransmitFile( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_BIND:

            status = AfdBind( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_CONNECT:

            return AfdConnect( Irp, IrpSp );

        case AFD_START_LISTEN:

            status = AfdStartListen( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_WAIT_FOR_LISTEN:
        case AFD_WAIT_FOR_LISTEN_LIFO:

            status = AfdWaitForListen( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_ACCEPT:

            status = AfdAccept( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_PARTIAL_DISCONNECT:

            status = AfdPartialDisconnect( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_ADDRESS:

            status = AfdGetAddress( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_POLL:

            status = AfdPoll( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_QUERY_RECEIVE_INFO:

            status = AfdQueryReceiveInformation( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_QUERY_HANDLES:

            status = AfdQueryHandles( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_CONTEXT_LENGTH:

            status = AfdGetContextLength( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_CONTEXT:

            status = AfdGetContext( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SET_CONTEXT:

            status = AfdSetContext( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SET_INFORMATION:

            status = AfdSetInformation( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_INFORMATION:

            status = AfdGetInformation( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SET_CONNECT_DATA:
        case AFD_SET_CONNECT_OPTIONS:
        case AFD_SET_DISCONNECT_DATA:
        case AFD_SET_DISCONNECT_OPTIONS:
        case AFD_SIZE_CONNECT_DATA:
        case AFD_SIZE_CONNECT_OPTIONS:
        case AFD_SIZE_DISCONNECT_DATA:
        case AFD_SIZE_DISCONNECT_OPTIONS:

            status = AfdSetConnectData( Irp, IrpSp, code );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_CONNECT_DATA:
        case AFD_GET_CONNECT_OPTIONS:
        case AFD_GET_DISCONNECT_DATA:
        case AFD_GET_DISCONNECT_OPTIONS:

            status = AfdGetConnectData( Irp, IrpSp, code );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SUPER_ACCEPT:

            status = AfdSuperAccept( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_EVENT_SELECT :

            status = AfdEventSelect( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql() == LOW_LEVEL );

            return status;

        case AFD_ENUM_NETWORK_EVENTS :

            status = AfdEnumNetworkEvents( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql() == LOW_LEVEL );

            return status;

        case AFD_DEFER_ACCEPT:

            status = AfdDeferAccept( Irp, IrpSp );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_SET_QOS :

            status = AfdSetQos( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_QOS :

            status = AfdGetQos( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_NO_OPERATION :

            status = AfdNoOperation( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_VALIDATE_GROUP :

            status = AfdValidateGroup( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

        case AFD_GET_UNACCEPTED_CONNECT_DATA :

            status = AfdGetUnacceptedConnectData( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql( ) == oldIrql );

            return status;

#ifdef NT351
        case AFD_QUEUE_APC :

            status = AfdQueueUserApc( Irp, IrpSp );

            Irp->IoStatus.Status = status;
            IoCompleteRequest( Irp, AfdPriorityBoost );

            ASSERT( KeGetCurrentIrql() == LOW_LEVEL );

            return status;
#endif  // NT351

        }

    }

    //
    // If we made it this far, then the ioctl is invalid.
    //

    KdPrint((
        "AfdDispatchDeviceControl: invalid IOCTL %08lX\n",
        code
        ));

    Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
    IoCompleteRequest( Irp, AfdPriorityBoost );

    return STATUS_INVALID_DEVICE_REQUEST;

} // AfdDispatchDeviceControl