summaryrefslogtreecommitdiffstats
path: root/private/ntos/afd/fastio.c
blob: e32cd4065eae231c7360308667a3777efa86e202 (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
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    fastio.c

Abstract:

    This module contains routines for handling fast ("turbo") IO
    in AFD.

Author:

    David Treadwell (davidtr)    12-Oct-1992

Revision History:

--*/

#include "afdp.h"

BOOLEAN
AfdFastDatagramIo (
    IN struct _FILE_OBJECT *FileObject,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus
    );

BOOLEAN
AfdFastDatagramReceive (
    IN PAFD_ENDPOINT Endpoint,
    IN ULONG ReceiveFlags,
    IN ULONG AfdFlags,
    IN LPWSABUF BufferArray,
    IN ULONG BufferCount,
    IN ULONG ReceiveBufferLength,
    OUT PVOID SourceAddress,
    OUT PULONG SourceAddressLength,
    OUT PIO_STATUS_BLOCK IoStatus
    );

BOOLEAN
AfdFastDatagramSend (
    IN PAFD_BUFFER AfdBuffer,
    IN PAFD_ENDPOINT Endpoint,
    OUT PIO_STATUS_BLOCK IoStatus
    );

NTSTATUS
AfdRestartFastSendDatagram (
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP Irp,
    IN PVOID Context
    );

PAFD_BUFFER
CopyAddressToBuffer (
    IN PAFD_ENDPOINT Endpoint,
    IN ULONG OutputBufferLength
    );

#ifdef ALLOC_PRAGMA
#pragma alloc_text( PAGE, AfdFastDatagramIo )
#pragma alloc_text( PAGE, AfdFastDatagramSend )
#pragma alloc_text( PAGE, AfdFastIoRead )
#pragma alloc_text( PAGE, AfdFastIoWrite )
#pragma alloc_text( PAGEAFD, AfdFastIoDeviceControl )
#pragma alloc_text( PAGEAFD, AfdFastDatagramReceive )
#pragma alloc_text( PAGEAFD, AfdRestartFastSendDatagram )
#pragma alloc_text( PAGEAFD, CopyAddressToBuffer )
#pragma alloc_text( PAGEAFD, AfdShouldSendBlock )
#endif

BOOLEAN
AfdFastIoRead (
    IN struct _FILE_OBJECT *FileObject,
    IN PLARGE_INTEGER FileOffset,
    IN ULONG Length,
    IN BOOLEAN Wait,
    IN ULONG LockKey,
    OUT PVOID Buffer,
    OUT PIO_STATUS_BLOCK IoStatus,
    IN struct _DEVICE_OBJECT *DeviceObject
    )
{

    AFD_RECV_INFO recvInfo;
    WSABUF wsaBuf;

    PAGED_CODE( );

    UNREFERENCED_PARAMETER( FileOffset );
    UNREFERENCED_PARAMETER( LockKey );

    //
    // Build the (one and only) WSABUF.
    //

    wsaBuf.buf = Buffer;
    wsaBuf.len = Length;

    //
    // Setup the AFD_RECV_INFO structure.
    //

    recvInfo.BufferArray = &wsaBuf;
    recvInfo.BufferCount = 1;
    recvInfo.AfdFlags = AFD_OVERLAPPED;
    recvInfo.TdiFlags = TDI_RECEIVE_NORMAL;

    //
    // Fake an ioctl.
    //

    return AfdFastIoDeviceControl(
               FileObject,
               Wait,
               &recvInfo,
               sizeof(recvInfo),
               NULL,
               0,
               IOCTL_AFD_RECEIVE,
               IoStatus,
               DeviceObject
               );

} // AfdFastIoRead

BOOLEAN
AfdFastIoWrite (
    IN struct _FILE_OBJECT *FileObject,
    IN PLARGE_INTEGER FileOffset,
    IN ULONG Length,
    IN BOOLEAN Wait,
    IN ULONG LockKey,
    IN PVOID Buffer,
    OUT PIO_STATUS_BLOCK IoStatus,
    IN struct _DEVICE_OBJECT *DeviceObject
    )
{

    AFD_SEND_INFO sendInfo;
    WSABUF wsaBuf;

    PAGED_CODE( );

    UNREFERENCED_PARAMETER( FileOffset );
    UNREFERENCED_PARAMETER( LockKey );

    //
    // Build the (one and only) WSABUF.
    //

    wsaBuf.buf = Buffer;
    wsaBuf.len = Length;

    //
    // Setup the AFD_SEND_INFO structure.
    //

    sendInfo.BufferArray = &wsaBuf;
    sendInfo.BufferCount = 1;
    sendInfo.AfdFlags = AFD_OVERLAPPED;
    sendInfo.TdiFlags = 0;

    //
    // Fake an ioctl.
    //

    return AfdFastIoDeviceControl(
               FileObject,
               Wait,
               &sendInfo,
               sizeof(sendInfo),
               NULL,
               0,
               IOCTL_AFD_SEND,
               IoStatus,
               DeviceObject
               );

} // AfdFastIoWrite

#if AFD_PERF_DBG

BOOLEAN
AfdFastIoDeviceControlReal (
    IN struct _FILE_OBJECT *FileObject,
    IN BOOLEAN Wait,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    OUT PVOID OutputBuffer OPTIONAL,
    IN ULONG OutputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus
    );


BOOLEAN
AfdFastIoDeviceControl (
    IN struct _FILE_OBJECT *FileObject,
    IN BOOLEAN Wait,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    OUT PVOID OutputBuffer OPTIONAL,
    IN ULONG OutputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus,
    IN struct _DEVICE_OBJECT *DeviceObject
    )
{
    BOOLEAN success;

    if ( AfdDisableFastIo ) {
        return FALSE;
    }

    ASSERT( KeGetCurrentIrql( ) == LOW_LEVEL );

    success = AfdFastIoDeviceControlReal (
                  FileObject,
                  Wait,
                  InputBuffer,
                  InputBufferLength,
                  OutputBuffer,
                  OutputBufferLength,
                  IoControlCode,
                  IoStatus
                  );

    ASSERT( KeGetCurrentIrql( ) == LOW_LEVEL );

    switch ( IoControlCode ) {

    case IOCTL_AFD_SEND:

        if ( success ) {
            AfdFastSendsSucceeded++;
        } else {
            AfdFastSendsFailed++;
        }
        break;

    case IOCTL_AFD_RECEIVE:

        if ( success ) {
            AfdFastReceivesSucceeded++;
        } else {
            AfdFastReceivesFailed++;
        }
        break;

    case IOCTL_AFD_SEND_DATAGRAM:

        if ( success ) {
            AfdFastSendDatagramsSucceeded++;
        } else {
            AfdFastSendDatagramsFailed++;
        }
        break;

    case IOCTL_AFD_RECEIVE_DATAGRAM:

        if ( success ) {
            AfdFastReceiveDatagramsSucceeded++;
        } else {
            AfdFastReceiveDatagramsFailed++;
        }
        break;

    case IOCTL_AFD_POLL:

        if ( success ) {
            AfdFastPollsSucceeded++;
        } else {
            AfdFastPollsFailed++;
        }
        break;
    }

    return success;

} // AfdFastIoDeviceControl

BOOLEAN
AfdFastIoDeviceControlReal (
    IN struct _FILE_OBJECT *FileObject,
    IN BOOLEAN Wait,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    OUT PVOID OutputBuffer OPTIONAL,
    IN ULONG OutputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus
    )
#else

BOOLEAN
AfdFastIoDeviceControl (
    IN struct _FILE_OBJECT *FileObject,
    IN BOOLEAN Wait,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    OUT PVOID OutputBuffer OPTIONAL,
    IN ULONG OutputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus,
    IN struct _DEVICE_OBJECT *DeviceObject
    )
#endif
{
    PAFD_ENDPOINT endpoint;
    PAFD_CONNECTION connection;
    KIRQL oldIrql;
    PAFD_BUFFER afdBuffer;
    NTSTATUS status;
    PMDL MdlChain;

    //
    // All we want to do is pass the request through to the TDI provider
    // if possible.  First get the endpoint and connection pointers.
    //

    endpoint = FileObject->FsContext;
    ASSERT( IS_AFD_ENDPOINT_TYPE( endpoint ) );

    //
    // If the endpoint is shut down in any way, bail out of fast IO.
    //

    if ( endpoint->DisconnectMode != 0 ) {
        return FALSE;
    }

    //
    // If an OutputBuffer parameter was specified, then this is a more
    // complicated IO request, so bail on fast IO.
    //

    if( OutputBuffer != NULL ) {
        return FALSE;
    }

    //
    // Handle datagram fast IO in a subroutine.  This keeps this routine
    // cleaner and faster.
    //

    if ( IS_DGRAM_ENDPOINT(endpoint) ) {
        return AfdFastDatagramIo(
                   FileObject,
                   InputBuffer,
                   InputBufferLength,
                   IoControlCode,
                   IoStatus
                   );
    }

    //
    // If the endpoint isn't connected yet, then we don't want to
    // attempt fast IO on it.
    //

    if ( endpoint->State != AfdEndpointStateConnected ) {
        return FALSE;
    }

    ASSERT( endpoint->Type == AfdBlockTypeVcConnecting );
    ASSERT( endpoint->Common.VcConnecting.Connection != NULL );

    //
    // If the TDI provider for this endpoint supports bufferring,
    // don't use fast IO.
    //

    if ( endpoint->TdiBufferring ) {
        return FALSE;
    }

    connection = endpoint->Common.VcConnecting.Connection;
    ASSERT( connection->Type == AfdBlockTypeConnection );

    if( connection->CleanupBegun ) {
        return FALSE;
    }

    IF_DEBUG(FAST_IO) {
        KdPrint(( "AfdFastIoDeviceControl: attempting fast IO on endp %lx, "
                  "conn %lx, code %lx\n",
                      endpoint, connection, IoControlCode ));
    }

    //
    // Based on whether this is a send or receive, attempt to perform
    // fast IO.
    //

    switch ( IoControlCode ) {

    case IOCTL_AFD_SEND: {

        PAFD_SEND_INFO sendInfo;
        ULONG sendLength;
        ULONG afdFlags;

        //
        // If the connection has been aborted, then we don't want to try
        // fast IO on it.
        //

        if ( connection->AbortIndicated ) {
            return FALSE;
        }

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(*sendInfo) ) {
            return FALSE;
        }

        try {

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            sendInfo = (PAFD_SEND_INFO)InputBuffer;
            afdFlags = sendInfo->AfdFlags;

            if( (afdFlags & AFD_NO_FAST_IO) != 0 ||
                sendInfo->TdiFlags != 0 ||
                sendInfo->BufferArray == NULL ||
                sendInfo->BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the send buffer.
            //

            sendLength = AfdCalcBufferArrayByteLengthRead(
                             sendInfo->BufferArray,
                             sendInfo->BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;
        }

        //
        // Determine whether we can do fast IO with this send.  In order
        // to perform fast IO, there must be no other sends pended on this
        // connection and there must be enough space left for bufferring
        // the requested amount of data.
        //

        if ( AfdShouldSendBlock( endpoint, connection, sendLength ) ) {

            //
            // If this is a nonblocking endpoint, fail the request here and
            // save going through the regular path.
            //

            if ( endpoint->NonBlocking && !( afdFlags & AFD_OVERLAPPED ) ) {
                IoStatus->Status = STATUS_DEVICE_NOT_READY;
                return TRUE;
            }

            return FALSE;
        }

        //
        // Next get an AFD buffer structure that contains an IRP and a
        // buffer to hold the data.
        //

        afdBuffer = AfdGetBuffer( sendLength, 0 );

        if ( afdBuffer == NULL ) {

            AfdAcquireSpinLock( &endpoint->SpinLock, &oldIrql );
            connection->VcBufferredSendBytes -= sendLength;
            connection->VcBufferredSendCount -= 1;
            AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

            return FALSE;
        }

        //
        // We have to rebuild the MDL in the AFD buffer structure to
        // represent exactly the number of bytes we're going to be
        // sending.
        //

        afdBuffer->Mdl->ByteCount = sendLength;
        SET_CHAIN_LENGTH( afdBuffer, sendLength );

        //
        // Remember the endpoint in the AFD buffer structure.  We need
        // this in order to access the endpoint in the restart routine.
        //

        afdBuffer->Context = endpoint;

        //
        // Copy the user's data into the AFD buffer.
        //

        if( sendLength > 0 ) {

            try {

                AfdCopyBufferArrayToBuffer(
                    afdBuffer->Buffer,
                    sendLength,
                    sendInfo->BufferArray,
                    sendInfo->BufferCount
                    );

            } except( EXCEPTION_EXECUTE_HANDLER ) {

                afdBuffer->Mdl->ByteCount = afdBuffer->BufferLength;
                RESET_CHAIN_LENGTH( afdBuffer );
                AfdReturnBuffer( afdBuffer );

                AfdAcquireSpinLock( &endpoint->SpinLock, &oldIrql );
                connection->VcBufferredSendBytes -= sendLength;
                connection->VcBufferredSendCount -= 1;
                AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

                return FALSE;

            }

        }

        //
        // Use the IRP in the AFD buffer structure to give to the TDI
        // provider.  Build the TDI send request.
        //

        TdiBuildSend(
            afdBuffer->Irp,
            connection->DeviceObject,
            connection->FileObject,
            AfdRestartBufferSend,
            afdBuffer,
            afdBuffer->Mdl,
            0,
            sendLength
            );

        //
        // Add a reference to the connection object since the send
        // request will complete asynchronously.
        //

        REFERENCE_CONNECTION( connection );

        //
        // Call the transport to actually perform the send.
        //

        status = IoCallDriver(
                     connection->DeviceObject,
                     afdBuffer->Irp
                     );

        //
        // Complete the user's IRP as appropriate.  Note that we change the
        // status code from what was returned by the TDI provider into
        // STATUS_SUCCESS.  This is because we don't want to complete
        // the IRP with STATUS_PENDING etc.
        //

        if ( NT_SUCCESS(status) ) {
            IoStatus->Information = sendLength;
            IoStatus->Status = STATUS_SUCCESS;
            return TRUE;
        }

        //
        // The call failed for some reason.  Fail fast IO.
        //

        return FALSE;

    }

    case IOCTL_AFD_RECEIVE: {

        PLIST_ENTRY listEntry;
        PAFD_RECV_INFO recvInfo;
        ULONG recvLength;
        ULONG totalOffset;

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(*recvInfo) ) {
            return FALSE;
        }

        try {

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            recvInfo = (PAFD_RECV_INFO)InputBuffer;

            if( (recvInfo->AfdFlags & AFD_NO_FAST_IO) != 0 ||
                recvInfo->TdiFlags != TDI_RECEIVE_NORMAL ||
                recvInfo->BufferArray == NULL ||
                recvInfo->BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the receive buffer.
            //

            recvLength = AfdCalcBufferArrayByteLengthWrite(
                             recvInfo->BufferArray,
                             recvInfo->BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;
        }

        //
        // Determine whether we'll be able to perform fast IO.  In order
        // to do fast IO, there must be some bufferred data on the
        // connection, there must not be any pended receives on the
        // connection, and there must not be any bufferred expedited
        // data on the connection.  This last requirement is for
        // the sake of simplicity only.
        //

        AfdAcquireSpinLock( &endpoint->SpinLock, &oldIrql );

        if ( connection->VcBufferredReceiveCount == 0 ||
                 !IsListEmpty( &connection->VcReceiveIrpListHead ) ||
                 connection->VcBufferredExpeditedCount != 0 ) {

            AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
            return FALSE;
        }

        ASSERT( !IsListEmpty( &connection->VcReceiveBufferListHead ) );

        //
        // Get a pointer to the first bufferred AFD buffer structure on
        // the connection.
        //

        afdBuffer = CONTAINING_RECORD(
                        connection->VcReceiveBufferListHead.Flink,
                        AFD_BUFFER,
                        BufferListEntry
                        );

        ASSERT( !afdBuffer->ExpeditedData );

        //
        // If the buffer contains a partial message, bail out of the
        // fast path.  We don't want the added complexity of handling
        // partial messages in the fast path.
        //

        if ( afdBuffer->PartialMessage &&
                 endpoint->EndpointType != AfdEndpointTypeStream ) {

            AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
            return FALSE;
        }

        //
        // For simplicity, act differently based on whether the user's
        // buffer is large enough to hold the entire first AFD buffer
        // worth of data.
        //

        if ( recvLength >= afdBuffer->DataLength ) {

            LIST_ENTRY bufferListHead;

            IoStatus->Status = STATUS_SUCCESS;
            IoStatus->Information = 0;

            InitializeListHead( &bufferListHead );

            //
            // Loop getting AFD buffers that will fill in the user's
            // buffer with as much data as will fit, or else with a
            // single buffer if this is not a stream endpoint.  We don't
            // actually do the copy within this loop because this loop
            // must occur while holding a lock, and we cannot hold a
            // lock while copying the data into the user's buffer
            // because the user's buffer is not locked and we cannot
            // take a page fault at raised IRQL.
            //

            do {

                //
                // Update the count of bytes on the connection.
                //

                ASSERT( connection->VcBufferredReceiveBytes >= afdBuffer->DataLength );
                ASSERT( connection->VcBufferredReceiveCount > 0 );

                connection->VcBufferredReceiveBytes -= afdBuffer->DataLength;
                connection->VcBufferredReceiveCount -= 1;
                IoStatus->Information += afdBuffer->DataLength;

                //
                // Remove the AFD buffer from the connection's list of
                // buffers and place it on our local list of buffers.
                //

                RemoveEntryList( &afdBuffer->BufferListEntry );
                InsertTailList( &bufferListHead, &afdBuffer->BufferListEntry );

                //
                // If this is a stream endpoint and all of the data in
                // the next AFD buffer will fit in the user's buffer,
                // use this buffer for the IO as well.
                //

                if ( !IsListEmpty( &connection->VcReceiveBufferListHead ) ) {

                    afdBuffer = CONTAINING_RECORD(
                                    connection->VcReceiveBufferListHead.Flink,
                                    AFD_BUFFER,
                                    BufferListEntry
                                    );

                    ASSERT( !afdBuffer->ExpeditedData );
                    ASSERT( afdBuffer->DataOffset == 0 );

                    if ( endpoint->EndpointType == AfdEndpointTypeStream &&
                             IoStatus->Information + afdBuffer->DataLength <=
                                 recvLength ) {
                        continue;
                    } else {
                        break;
                    }

                } else {

                    break;
                }

            } while ( TRUE );

            //
            // If there is indicated but unreceived data in the TDI provider,
            // and we have available buffer space, fire off an IRP to receive
            // the data.
            //

            if ( connection->VcReceiveCountInTransport > 0

                 &&

                 connection->VcBufferredReceiveBytes <
                   connection->MaxBufferredReceiveBytes

                 &&

                 connection->VcBufferredReceiveCount <
                     connection->MaxBufferredReceiveCount ) {

                CLONG bytesToReceive;

                //
                // Remember the count of data that we're going to receive,
                // then reset the fields in the connection where we keep
                // track of how much data is available in the transport.
                // We reset it here before releasing the lock so that
                // another thread doesn't try to receive the data at the
                // same time as us.
                //

                if ( connection->VcReceiveBytesInTransport > AfdLargeBufferSize ) {
                    bytesToReceive = connection->VcReceiveBytesInTransport;
                } else {
                    bytesToReceive = AfdLargeBufferSize;
                }

                ASSERT( connection->VcReceiveCountInTransport == 1 );
                connection->VcReceiveBytesInTransport = 0;
                connection->VcReceiveCountInTransport = 0;

                AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

                //
                // Get an AFD buffer structure to hold the data.
                //

                afdBuffer = AfdGetBuffer( bytesToReceive, 0 );

                if ( afdBuffer == NULL ) {

                    //
                    // If we were unable to get a buffer, abort the
                    // circuit.
                    //

                    AfdBeginAbort( connection );

                } else {

                    //
                    // We need to remember the connection in the AFD buffer
                    // because we'll need to access it in the completion
                    // routine.
                    //

                    afdBuffer->Context = connection;

                    //
                    // Finish building the receive IRP to give to the TDI provider.
                    //

                    TdiBuildReceive(
                        afdBuffer->Irp,
                        connection->DeviceObject,
                        connection->FileObject,
                        AfdRestartBufferReceive,
                        afdBuffer,
                        afdBuffer->Mdl,
                        TDI_RECEIVE_NORMAL,
                        bytesToReceive
                        );

                    //
                    // Hand off the IRP to the TDI provider.
                    //

                    (VOID)IoCallDriver(
                             connection->DeviceObject,
                             afdBuffer->Irp
                             );
                }

            } else {

               AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
            }

            //
            // We have in a local list all the data we'll use for this
            // IO.  Start copying data to the user buffer.
            //

            totalOffset = 0;

            try {

                while ( !IsListEmpty( &bufferListHead ) ) {

                    //
                    // Take the first buffer from the list.
                    //

                    listEntry = RemoveHeadList( &bufferListHead );
                    afdBuffer = CONTAINING_RECORD(
                                    listEntry,
                                    AFD_BUFFER,
                                    BufferListEntry
                                    );

                    if( afdBuffer->DataLength > 0 ) {

                        //
                        // Copy the data in the buffer to the user buffer.
                        //

                        AfdCopyBufferToBufferArray(
                            recvInfo->BufferArray,
                            totalOffset,
                            recvInfo->BufferCount,
                            (PCHAR)afdBuffer->Buffer + afdBuffer->DataOffset,
                            afdBuffer->DataLength
                            );

                        totalOffset += afdBuffer->DataLength;

                    }

                    //
                    // We're done with the AFD buffer.
                    //

                    afdBuffer->DataOffset = 0;
                    RESET_CHAIN_LENGTH( afdBuffer );
                    AfdReturnBuffer( afdBuffer );
                }

            } except( EXCEPTION_EXECUTE_HANDLER ) {

                //
                // If an exception is hit, there is the possibility of
                // data corruption.  However, it is nearly impossible to
                // avoid this in all cases, so just throw out the
                // remainder of the data that we would have copied to
                // the user buffer.
                //

                afdBuffer->DataOffset = 0;
                RESET_CHAIN_LENGTH( afdBuffer );
                AfdReturnBuffer( afdBuffer );

                while ( !IsListEmpty( &bufferListHead ) ) {
                    listEntry = RemoveHeadList( &bufferListHead );
                    afdBuffer = CONTAINING_RECORD(
                                    listEntry,
                                    AFD_BUFFER,
                                    BufferListEntry
                                    );
                    RESET_CHAIN_LENGTH( afdBuffer );
                    AfdReturnBuffer( afdBuffer );
                }

                return FALSE;
            }

            //
            // Clear the receive data active bit. If there's more data
            // available, set the corresponding event.
            //

            AfdAcquireSpinLock( &endpoint->SpinLock, &oldIrql );

            endpoint->EventsActive &= ~AFD_POLL_RECEIVE;

            if( !IsListEmpty( &connection->VcReceiveBufferListHead ) ) {

                AfdIndicateEventSelectEvent(
                    endpoint,
                    AFD_POLL_RECEIVE_BIT,
                    STATUS_SUCCESS
                    );

            }

            AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

            //
            // Fast IO succeeded!
            //

            ASSERT( IoStatus->Information <= recvLength );

            return TRUE;

        } else {

            PAFD_BUFFER tempAfdBuffer;

            //
            // If this is not a stream endpoint and the user's buffer
            // is insufficient to hold the entire message, then we cannot
            // use fast IO because this IO will need to fail with
            // STATUS_BUFFER_OVERFLOW.
            //

            if ( endpoint->EndpointType != AfdEndpointTypeStream ||
                 recvLength == 0 ) {
                AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
                return FALSE;
            }

            //
            // This is a stream endpoint and the user buffer is
            // insufficient for the amount of data stored in the first
            // buffer.  So that we can perform fast IO and still
            // preserve data ordering, we're going to allocate a new AFD
            // buffer structure, copy the appropriate amount of data
            // into that buffer, then release locks and copy the data
            // into the user buffer.
            //
            // The extra copy incurred is still less than the IRP
            // overhead incurred in the normal IO path, so using fast IO
            // here is a win.  Also, applications which force us through
            // this path will typically be using very small receives,
            // like one or four bytes, so the copy will be short.
            //
            // First allocate an AFD buffer to hold the data we're
            // eventually going to give to the user.
            //

            tempAfdBuffer = AfdGetBuffer( recvLength, 0 );
            if ( tempAfdBuffer == NULL ) {
                AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
                return FALSE;
            }

            //
            // Copy the first part of the bufferred data into our local
            // AFD buffer.
            //

            RtlCopyMemory(
                tempAfdBuffer->Buffer,
                (PCHAR)afdBuffer->Buffer + afdBuffer->DataOffset,
                recvLength
                );

            //
            // Update the data length and offset in the data bufferred
            // on the connection.
            //

            afdBuffer->DataLength -= recvLength;
            afdBuffer->DataOffset += recvLength;
            connection->VcBufferredReceiveBytes -= recvLength;

            //
            // If there is indicated but unreceived data in the TDI provider,
            // and we have available buffer space, fire off an IRP to receive
            // the data.
            //

            if ( connection->VcReceiveBytesInTransport > 0

                 &&

                 connection->VcBufferredReceiveBytes <
                   connection->MaxBufferredReceiveBytes

                 &&

                 connection->VcBufferredReceiveCount <
                     connection->MaxBufferredReceiveCount ) {

                CLONG bytesInTransport;

                //
                // Remember the count of data that we're going to receive,
                // then reset the fields in the connection where we keep
                // track of how much data is available in the transport.
                // We reset it here before releasing the lock so that
                // another thread doesn't try to receive the data at the
                // same time as us.
                //

                bytesInTransport = connection->VcReceiveBytesInTransport;

                ASSERT( connection->VcReceiveCountInTransport == 1 );
                connection->VcReceiveBytesInTransport = 0;
                connection->VcReceiveCountInTransport = 0;

                AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

                //
                // Get an AFD buffer structure to hold the data.
                //

                afdBuffer = AfdGetBuffer( bytesInTransport, 0 );

                if ( afdBuffer == NULL ) {

                    //
                    // If we were unable to get a buffer, abort the
                    // circuit.
                    //

                    AfdBeginAbort( connection );

                } else {

                    //
                    // We need to remember the connection in the AFD buffer
                    // because we'll need to access it in the completion
                    // routine.
                    //

                    afdBuffer->Context = connection;

                    //
                    // Finish building the receive IRP to give to the TDI provider.
                    //

                    TdiBuildReceive(
                        afdBuffer->Irp,
                        connection->DeviceObject,
                        connection->FileObject,
                        AfdRestartBufferReceive,
                        afdBuffer,
                        afdBuffer->Mdl,
                        TDI_RECEIVE_NORMAL,
                        bytesInTransport
                        );

                    //
                    // Hand off the IRP to the TDI provider.
                    //

                    (VOID)IoCallDriver(
                             connection->DeviceObject,
                             afdBuffer->Irp
                             );
                }

            } else {

               AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );
            }

            //
            // Now copy the data to the user buffer inside an exception
            // handler.
            //

            try {

                AfdCopyBufferToBufferArray(
                    recvInfo->BufferArray,
                    0,
                    recvInfo->BufferCount,
                    tempAfdBuffer->Buffer,
                    recvLength
                    );

            } except( EXCEPTION_EXECUTE_HANDLER ) {

                RESET_CHAIN_LENGTH( tempAfdBuffer );
                AfdReturnBuffer( tempAfdBuffer );
                return FALSE;
            }

            //
            // Clear the receive data active bit. If there's more data
            // available, set the corresponding event.
            //

            AfdAcquireSpinLock( &endpoint->SpinLock, &oldIrql );

            endpoint->EventsActive &= ~AFD_POLL_RECEIVE;

            if( !IsListEmpty( &connection->VcReceiveBufferListHead ) ) {

                AfdIndicateEventSelectEvent(
                    endpoint,
                    AFD_POLL_RECEIVE_BIT,
                    STATUS_SUCCESS
                    );

            }

            AfdReleaseSpinLock( &endpoint->SpinLock, oldIrql );

            //
            // Fast IO succeeded!
            //

            RESET_CHAIN_LENGTH( tempAfdBuffer );
            AfdReturnBuffer( tempAfdBuffer );

            IoStatus->Status = STATUS_SUCCESS;
            IoStatus->Information = recvLength;

            return TRUE;
        }
    }

    case IOCTL_AFD_TRANSMIT_FILE:

        return AfdFastTransmitFile(
                   FileObject,
                   InputBuffer,
                   InputBufferLength,
                   IoStatus
                   );


    default:

        return FALSE;
    }

    return FALSE;

} // AfdFastDeviceIoControlFile


BOOLEAN
AfdFastDatagramIo (
    IN struct _FILE_OBJECT *FileObject,
    IN PVOID InputBuffer OPTIONAL,
    IN ULONG InputBufferLength,
    IN ULONG IoControlCode,
    OUT PIO_STATUS_BLOCK IoStatus
    )
{
    PAFD_ENDPOINT endpoint;
    PAFD_BUFFER afdBuffer;

    PAGED_CODE( );

    //
    // All we want to do is pass the request through to the TDI provider
    // if possible.  First get the endpoint pointer.
    //

    endpoint = FileObject->FsContext;
    ASSERT( endpoint->Type == AfdBlockTypeDatagram );

    IF_DEBUG(FAST_IO) {
        KdPrint(( "AfdFastDatagramIo: attempting fast IO on endp %lx, "
                  "code %lx\n",
                      endpoint, IoControlCode ));
    }

    switch ( IoControlCode ) {

    case IOCTL_AFD_SEND: {

        PAFD_SEND_INFO sendInfo;
        ULONG sendLength;

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(*sendInfo) ) {
            return FALSE;
        }

        try {

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            sendInfo = (PAFD_SEND_INFO)InputBuffer;

            if( (sendInfo->AfdFlags & AFD_NO_FAST_IO) != 0 ||
                sendInfo->TdiFlags != 0 ||
                sendInfo->BufferArray == NULL ||
                sendInfo->BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the send buffer.
            //

            sendLength = AfdCalcBufferArrayByteLengthRead(
                             sendInfo->BufferArray,
                             sendInfo->BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;
        }

        //
        // If this is a send for more than the threshold number of
        // bytes, don't use the fast path.  We don't allow larger sends
        // in the fast path because of the extra data copy it entails,
        // which is more expensive for large buffers.  For smaller
        // buffers, however, the cost of the copy is small compared to
        // the IO system overhead of the slow path.
        //

        if ( sendLength > AfdFastSendDatagramThreshold ) {
            return FALSE;
        }

        //
        // In a subroutine, copy the destination address to the AFD
        // buffer.  We do this in a subroutine because it needs to
        // acquire a spin lock and we want this routine to be pageable.
        //

        afdBuffer = CopyAddressToBuffer( endpoint, sendLength );
        if ( afdBuffer == NULL ) {
            return FALSE;
        }

        //
        // Store the length of the data we're going to send.
        //

        afdBuffer->DataLength = sendLength;

        //
        // Copy the output buffer to the AFD buffer.
        //

        try {

            AfdCopyBufferArrayToBuffer(
                afdBuffer->Buffer,
                sendLength,
                sendInfo->BufferArray,
                sendInfo->BufferCount
                );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            RESET_CHAIN_LENGTH( afdBuffer );
            AfdReturnBuffer( afdBuffer );
            return FALSE;
        }

        //
        // Call a subroutine to complete the work of the fast path.
        //

        return AfdFastDatagramSend( afdBuffer, endpoint, IoStatus );

    }

    case IOCTL_AFD_SEND_DATAGRAM: {

        PTDI_REQUEST_SEND_DATAGRAM tdiRequest;
        ULONG destinationAddressLength;
        PAFD_SEND_DATAGRAM_INFO sendInfo;
        ULONG sendLength;

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(*sendInfo) ) {
            return FALSE;
        }

        try {

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            sendInfo = (PAFD_SEND_DATAGRAM_INFO)InputBuffer;

            if( (sendInfo->AfdFlags & AFD_NO_FAST_IO) != 0 ||
                sendInfo->BufferArray == NULL ||
                sendInfo->BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the send buffer.
            //

            sendLength = AfdCalcBufferArrayByteLengthRead(
                             sendInfo->BufferArray,
                             sendInfo->BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;
        }

        //
        // If this is a send for more than the threshold number of
        // bytes, don't use the fast path.  We don't allow larger sends
        // in the fast path because of the extra data copy it entails,
        // which is more expensive for large buffers.  For smaller
        // buffers, however, the cost of the copy is small compared to
        // the IO system overhead of the slow path.
        //

        if ( sendLength > AfdFastSendDatagramThreshold ) {
            return FALSE;
        }

        //
        // If the endpoint is not bound, fail.
        //

        if ( endpoint->State != AfdEndpointStateBound ) {
            return FALSE;
        }

        tdiRequest = &sendInfo->TdiRequest;

        try {
            destinationAddressLength =
                tdiRequest->SendDatagramInformation->RemoteAddressLength ;
        } except( EXCEPTION_EXECUTE_HANDLER ) {
            return FALSE;
        }

        //
        // Get an AFD buffer to use for the request.  We'll copy the
        // user's data to the AFD buffer then submit the IRP in the AFD
        // buffer to the TDI provider.
        //

        afdBuffer = AfdGetBuffer( sendLength, destinationAddressLength );
        if ( afdBuffer == NULL ) {
            return FALSE;
        }

        //
        // Store the length of the data and the address we're going to
        // send.
        //

        afdBuffer->DataLength = sendLength;
        afdBuffer->SourceAddressLength = destinationAddressLength;

        //
        // Copy the destination address and the output buffer to the
        // AFD buffer.
        //

        try {

            AfdCopyBufferArrayToBuffer(
                afdBuffer->Buffer,
                sendLength,
                sendInfo->BufferArray,
                sendInfo->BufferCount
                );

            RtlCopyMemory(
                afdBuffer->SourceAddress,
                tdiRequest->SendDatagramInformation->RemoteAddress,
                destinationAddressLength
                );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            RESET_CHAIN_LENGTH( afdBuffer );
            AfdReturnBuffer( afdBuffer );
            return FALSE;
        }

        //
        // Call a subroutine to complete the work of the fast path.
        //

        return AfdFastDatagramSend( afdBuffer, endpoint, IoStatus );

    }

    case IOCTL_AFD_RECEIVE: {

        AFD_RECV_INFO recvInfo;
        ULONG recvLength;

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(recvInfo) ) {
            return FALSE;
        }

        //
        // Capture the input structure.
        //

        try {

            recvInfo = *(PAFD_RECV_INFO)InputBuffer;

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            if( (recvInfo.AfdFlags & AFD_NO_FAST_IO) != 0 ||
                recvInfo.TdiFlags != TDI_RECEIVE_NORMAL ||
                recvInfo.BufferArray == NULL ||
                recvInfo.BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the receive buffer.
            //

            recvLength = AfdCalcBufferArrayByteLengthWrite(
                             recvInfo.BufferArray,
                             recvInfo.BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;

        }

        //
        // Attempt to perform fast IO on the endpoint.
        //

        return AfdFastDatagramReceive(
                   endpoint,
                   recvInfo.TdiFlags,
                   recvInfo.AfdFlags,
                   recvInfo.BufferArray,
                   recvInfo.BufferCount,
                   recvLength,
                   NULL,
                   NULL,
                   IoStatus
                   );

    }

    case IOCTL_AFD_RECEIVE_DATAGRAM: {

        AFD_RECV_DATAGRAM_INFO recvInfo;
        ULONG recvLength;

        //
        // If the input structure isn't large enough, bail on fast IO.
        //

        if( InputBufferLength < sizeof(recvInfo) ) {
            return FALSE;
        }

        //
        // Capture the input structure.
        //

        try {

            recvInfo = *(PAFD_RECV_DATAGRAM_INFO)InputBuffer;

            //
            // Make a quick preliminary check of the input buffer. If it's
            // bogus (or if Fast IO is disabled), then fail the request.
            //

            if( (recvInfo.AfdFlags & AFD_NO_FAST_IO) != 0 ||
                recvInfo.TdiFlags != TDI_RECEIVE_NORMAL ||
                recvInfo.BufferArray == NULL ||
                recvInfo.BufferCount == 0 ) {

                return FALSE;

            }

            //
            // Calculate the length of the receive buffer.
            //

            recvLength = AfdCalcBufferArrayByteLengthWrite(
                             recvInfo.BufferArray,
                             recvInfo.BufferCount
                             );

        } except( EXCEPTION_EXECUTE_HANDLER ) {

            return FALSE;

        }

        //
        // Attempt to perform fast IO on the endpoint.
        //

        return AfdFastDatagramReceive(
                   endpoint,
                   recvInfo.TdiFlags,
                   recvInfo.AfdFlags,
                   recvInfo.BufferArray,
                   recvInfo.BufferCount,
                   recvLength,
                   recvInfo.Address,
                   recvInfo.AddressLength,
                   IoStatus
                   );

    }

    default:

        return FALSE;
    }

} // AfdFastDatagramIo


BOOLEAN
AfdFastDatagramReceive (
    IN PAFD_ENDPOINT Endpoint,
    IN ULONG ReceiveFlags,
    IN ULONG AfdFlags,
    IN LPWSABUF BufferArray,
    IN ULONG BufferCount,
    IN ULONG ReceiveBufferLength,
    OUT PVOID SourceAddress,
    OUT PULONG SourceAddressLength,
    OUT PIO_STATUS_BLOCK IoStatus
    )
{
    KIRQL oldIrql;
    PLIST_ENTRY listEntry;
    PAFD_BUFFER afdBuffer;
    PTRANSPORT_ADDRESS tdiAddress;
    ULONG addressLength;

    //
    // If the receive flags has any unexpected bits set, fail fast IO.
    // We don't handle peeks or expedited data here.
    //

    if( ReceiveFlags != TDI_RECEIVE_NORMAL ) {
        return FALSE;
    }

    //
    // If the endpoint is neither bound nor connected, fail.
    //

    if ( Endpoint->State != AfdEndpointStateBound &&
             Endpoint->State != AfdEndpointStateConnected ) {
        return FALSE;
    }

    //
    // If there are no datagrams available to be received, don't
    // bother with the fast path.
    //

    AfdAcquireSpinLock( &Endpoint->SpinLock, &oldIrql );

    if ( !ARE_DATAGRAMS_ON_ENDPOINT( Endpoint ) ) {

        //
        // If this is a nonblocking endpoint, fail the request here and
        // save going through the regular path.
        //

        if ( Endpoint->NonBlocking && !( AfdFlags & AFD_OVERLAPPED ) ) {
            Endpoint->EventsActive &= ~AFD_POLL_SEND;

            IF_DEBUG(EVENT_SELECT) {
                KdPrint((
                    "AfdFastDatagramReceive: Endp %08lX, Active %08lX\n",
                    Endpoint,
                    Endpoint->EventsActive
                    ));
            }

            IoStatus->Status = STATUS_DEVICE_NOT_READY;
            AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );
            return TRUE;
        }

        AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );
        return FALSE;
    }

    //
    // There is at least one datagram bufferred on the endpoint.  Use it
    // for this receive.
    //

    listEntry = RemoveHeadList( &Endpoint->ReceiveDatagramBufferListHead );
    afdBuffer = CONTAINING_RECORD( listEntry, AFD_BUFFER, BufferListEntry );

    //
    // If the datagram is too large, fail fast IO.
    //

    if ( afdBuffer->DataLength > ReceiveBufferLength ) {
        InsertHeadList(
            &Endpoint->ReceiveDatagramBufferListHead,
            &afdBuffer->BufferListEntry
            );
        AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );
        return FALSE;
    }

    //
    // Update counts of bufferred datagrams and bytes on the endpoint.
    //

    Endpoint->BufferredDatagramCount--;
    Endpoint->BufferredDatagramBytes -= afdBuffer->DataLength;

    //
    // Release the lock and copy the datagram into the user buffer.  We
    // can't continue to hold the lock, because it is not legal to take
    // an exception at raised IRQL.  Releasing the lock may result in a
    // misordered datagram if there is an exception in copying to the
    // user's buffer, but that is the user's fault for giving us a bogus
    // pointer.  Besides, datagram order is not guaranteed.
    //

    AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );

    try {

        AfdCopyBufferToBufferArray(
            BufferArray,
            0,
            BufferCount,
            afdBuffer->Buffer,
            afdBuffer->DataLength
            );

        //
        // If we need to return the source address, copy it to the
        // user's output buffer.
        //

        if ( SourceAddress != NULL ) {

            tdiAddress = afdBuffer->SourceAddress;

            addressLength = tdiAddress->Address[0].AddressLength +
                sizeof(u_short);    // sa_family

            if( *SourceAddressLength < addressLength ) {

                ExRaiseAccessViolation();

            }

            RtlCopyMemory(
                SourceAddress,
                &tdiAddress->Address[0].AddressType,
                addressLength
                );

            *SourceAddressLength = addressLength;

        }

        IoStatus->Information = afdBuffer->DataLength;
        IoStatus->Status = STATUS_SUCCESS;

    } except( EXCEPTION_EXECUTE_HANDLER ) {

        //
        // Put the buffer back on the endpoint's list.
        //

        AfdAcquireSpinLock( &Endpoint->SpinLock, &oldIrql );

        InsertHeadList(
            &Endpoint->ReceiveDatagramBufferListHead,
            &afdBuffer->BufferListEntry
            );

        Endpoint->BufferredDatagramCount++;
        Endpoint->BufferredDatagramBytes += afdBuffer->DataLength;

        AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );

        return FALSE;
    }

    //
    // Clear the receive data active bit. If there's more data
    // available, set the corresponding event.
    //

    AfdAcquireSpinLock( &Endpoint->SpinLock, &oldIrql );

    Endpoint->EventsActive &= ~AFD_POLL_RECEIVE;

    if( ARE_DATAGRAMS_ON_ENDPOINT( Endpoint ) ) {

        AfdIndicateEventSelectEvent(
            Endpoint,
            AFD_POLL_RECEIVE_BIT,
            STATUS_SUCCESS
            );

    }

    AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );

    //
    // The fast IO worked!  Clean up and return to the user.
    //

    RESET_CHAIN_LENGTH( afdBuffer );
    AfdReturnBuffer( afdBuffer );

    return TRUE;

} // AfdFastDatagramReceive


BOOLEAN
AfdFastDatagramSend (
    IN PAFD_BUFFER AfdBuffer,
    IN PAFD_ENDPOINT Endpoint,
    OUT PIO_STATUS_BLOCK IoStatus
    )
{
    NTSTATUS status;
    ULONG sendLength;

    PAGED_CODE( );

    //
    // Set up the input TDI information to point to the destination
    // address.
    //

    AfdBuffer->TdiInputInfo.RemoteAddressLength = AfdBuffer->SourceAddressLength;
    AfdBuffer->TdiInputInfo.RemoteAddress = AfdBuffer->SourceAddress;

    sendLength = AfdBuffer->DataLength;

    //
    // Initialize the IRP in the AFD buffer to do a fast datagram send.
    //

    TdiBuildSendDatagram(
        AfdBuffer->Irp,
        Endpoint->AddressDeviceObject,
        Endpoint->AddressFileObject,
        AfdRestartFastSendDatagram,
        AfdBuffer,
        AfdBuffer->Irp->MdlAddress,
        sendLength,
        &AfdBuffer->TdiInputInfo
        );

    //
    // Change the MDL in the AFD buffer to specify only the number
    // of bytes we're actually sending.  This is a requirement of TDI--
    // the MDL chain cannot describe a longer buffer than the send
    // request.
    //

    AfdBuffer->Mdl->ByteCount = sendLength;

    //
    // Reference the endpoint so that it does not go away until the send
    // completes.  This is necessary to ensure that a send which takes a
    // very long time and lasts longer than the process will not cause a
    // crash when the send datragram finally completes.
    //

    REFERENCE_ENDPOINT( Endpoint );
    AfdBuffer->Context = Endpoint;

    //
    // Give the IRP to the TDI provider.  If the request fails
    // immediately, then fail fast IO.  If the request fails later on,
    // there's nothing we can do about it.
    //

    status = IoCallDriver(
                 Endpoint->AddressDeviceObject,
                 AfdBuffer->Irp
                 );

    if ( NT_SUCCESS(status) ) {
        IoStatus->Information = sendLength;
        IoStatus->Status = STATUS_SUCCESS;
        return TRUE;
    } else {
        return FALSE;
    }

} // AfdFastDatagramSend


NTSTATUS
AfdRestartFastSendDatagram (
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP Irp,
    IN PVOID Context
    )
{
    PAFD_BUFFER afdBuffer;
    PAFD_ENDPOINT endpoint;

    afdBuffer = Context;

    //
    // Find the endpoint used for this request.
    //

    endpoint = afdBuffer->Context;
    ASSERT( endpoint->Type == AfdBlockTypeDatagram );

    //
    // Reset and free the AFD buffer structure.
    //

    ASSERT( afdBuffer->Irp == Irp );

    afdBuffer->TdiInputInfo.RemoteAddressLength = 0;
    afdBuffer->TdiInputInfo.RemoteAddress = NULL;

    afdBuffer->Mdl->ByteCount = afdBuffer->BufferLength;

    RESET_CHAIN_LENGTH( afdBuffer );
    AfdReturnBuffer( afdBuffer );

    //
    // Get rid of the reference we put on the endpoint when we started
    // this I/O.
    //

    DEREFERENCE_ENDPOINT( endpoint );

    //
    // Tell the IO system to stop processing this IRP.
    //

    return STATUS_MORE_PROCESSING_REQUIRED;

} // AfdRestartFastSendDatagram


PAFD_BUFFER
CopyAddressToBuffer (
    IN PAFD_ENDPOINT Endpoint,
    IN ULONG OutputBufferLength
    )
{
    KIRQL oldIrql;
    PAFD_BUFFER afdBuffer;

    ASSERT( Endpoint->Type == AfdBlockTypeDatagram );

    AfdAcquireSpinLock( &Endpoint->SpinLock, &oldIrql );

    //
    // If the endpoint is not connected, fail.
    //

    if ( Endpoint->State != AfdEndpointStateConnected ) {
        AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );
        return NULL;
    }

    //
    // Get an AFD buffer to use for the request.  We'll copy the
    // user to the AFD buffer then submit the IRP in the AFD
    // buffer to the TDI provider.
    //

    afdBuffer = AfdGetBuffer(
                    OutputBufferLength,
                    Endpoint->Common.Datagram.RemoteAddressLength
                    );
    if ( afdBuffer == NULL ) {
        return NULL;
    }

    ASSERT( Endpoint->Common.Datagram.RemoteAddress != NULL );
    ASSERT( afdBuffer->AllocatedAddressLength >=
                Endpoint->Common.Datagram.RemoteAddressLength );

    //
    // Copy the address to the AFD buffer.
    //

    RtlCopyMemory(
        afdBuffer->SourceAddress,
        Endpoint->Common.Datagram.RemoteAddress,
        Endpoint->Common.Datagram.RemoteAddressLength
        );

    afdBuffer->SourceAddressLength = Endpoint->Common.Datagram.RemoteAddressLength;

    AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );

    return afdBuffer;

} // CopyAddressToBuffer


BOOLEAN
AfdShouldSendBlock (
    IN PAFD_ENDPOINT Endpoint,
    IN PAFD_CONNECTION Connection,
    IN ULONG SendLength
    )

/*++

Routine Description:

    Determines whether a nonblocking send can be performed on the
    connection, and if the send is possible, updates the connection's
    send tracking information.

Arguments:

    Endpoint - the AFD endpoint for the send.

    Connection - the AFD connection for the send.

    SendLength - the number of bytes that the caller wants to send.

Return Value:

    TRUE if the there is not too much data on the endpoint to perform
    the send; FALSE otherwise.

--*/

{
    KIRQL oldIrql;

    //
    // Determine whether we can do fast IO with this send.  In order
    // to perform fast IO, there must be no other sends pended on this
    // connection and there must be enough space left for bufferring
    // the requested amount of data.
    //

    AfdAcquireSpinLock( &Endpoint->SpinLock, &oldIrql );

    if ( !IsListEmpty( &Connection->VcSendIrpListHead )

         ||

         Connection->VcBufferredSendBytes >= Connection->MaxBufferredSendBytes

         ||

         Connection->VcBufferredSendCount >= Connection->MaxBufferredSendCount

         ) {

        //
        // If this is a nonblocking endpoint, fail the request here and
        // save going through the regular path.
        //

        if ( Endpoint->NonBlocking ) {
            Endpoint->EventsActive &= ~AFD_POLL_SEND;

            IF_DEBUG(EVENT_SELECT) {
                KdPrint((
                    "AfdFastIoDeviceControl: Endp %08lX, Active %08lX\n",
                    Endpoint,
                    Endpoint->EventsActive
                    ));
            }
        }

        AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );
        return TRUE;
    }

    //
    // Update count of send bytes pending on the connection.
    //

    Connection->VcBufferredSendBytes += SendLength;
    Connection->VcBufferredSendCount += 1;

    AfdReleaseSpinLock( &Endpoint->SpinLock, oldIrql );

    //
    // Indicate to the caller that it is OK to proceed with the send.
    //

    return FALSE;

} // AfdShouldSendBlock