Sample Code
windows driver samples/ cdfs file system driver/ C++/ cdprocs.h/
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 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 | /*++ Copyright (c) 1989-2000 Microsoft Corporation Module Name: CdProcs.h Abstract: This module defines all of the globally used procedures in the Cdfs file system. --*/ #ifndef _CDPROCS_ #define _CDPROCS_ #pragma warning( disable: 4127 ) // conditional expression is constant #pragma warning( push ) #pragma warning( disable: 4201 ) // nonstandard extension used : nameless struct/union #pragma warning( disable: 4214 ) // nonstandard extension used : bit field types #include <ntifs.h> #include <ntddcdrm.h> #include <ntdddisk.h> #include <ntddscsi.h> #ifndef INLINE #define INLINE __inline #endif #include "nodetype.h" #include "Cd.h" #include "CdStruc.h" #include "CdData.h" #pragma warning( pop ) //**** x86 compiler bug **** #if defined(_M_IX86) #undef Int64ShraMod32 #define Int64ShraMod32(a, b) ((LONGLONG)(a) >> (b)) #endif #ifndef Min #define Min(a, b) ((a) < (b) ? (a) : (b)) #endif #ifndef Max #define Max(a, b) ((a) > (b) ? (a) : (b)) #endif // // Here are the different pool tags. // #define TAG_CCB 'ccdC' // Ccb #define TAG_CDROM_TOC 'ctdC' // TOC #define TAG_DIRENT_NAME 'nddC' // CdName in dirent #define TAG_ENUM_EXPRESSION 'eedC' // Search expression for enumeration #define TAG_FCB_DATA 'dfdC' // Data Fcb #define TAG_FCB_INDEX 'ifdC' // Index Fcb #define TAG_FCB_NONPAGED 'nfdC' // Nonpaged Fcb #define TAG_FCB_TABLE 'tfdC' // Fcb Table entry #define TAG_FILE_NAME 'nFdC' // Filename buffer #define TAG_GEN_SHORT_NAME 'sgdC' // Generated short name #define TAG_IO_BUFFER 'fbdC' // Temporary IO buffer #define TAG_IO_CONTEXT 'oidC' // Io context for async reads #define TAG_IRP_CONTEXT 'cidC' // Irp Context #define TAG_IRP_CONTEXT_LITE 'lidC' // Irp Context lite #define TAG_MCB_ARRAY 'amdC' // Mcb array #define TAG_PATH_ENTRY_NAME 'nPdC' // CdName in path entry #define TAG_PREFIX_ENTRY 'epdC' // Prefix Entry #define TAG_PREFIX_NAME 'npdC' // Prefix Entry name #define TAG_SPANNING_PATH_TABLE 'psdC' // Buffer for spanning path table #define TAG_UPCASE_NAME 'nudC' // Buffer for upcased name #define TAG_VOL_DESC 'dvdC' // Buffer for volume descriptor #define TAG_VPB 'pvdC' // Vpb allocated in filesystem // // Tag all of our allocations if tagging is turned on // #ifdef POOL_TAGGING #undef FsRtlAllocatePool #undef FsRtlAllocatePoolWithQuota #define FsRtlAllocatePool(a,b) FsRtlAllocatePoolWithTag(a,b,'sfdC') #define FsRtlAllocatePoolWithQuota(a,b) FsRtlAllocatePoolWithQuotaTag(a,b,'sfdC') #endif // POOL_TAGGING // // File access check routine, implemented in AcChkSup.c // // // BOOLEAN // CdIllegalFcbAccess ( // _In_ PIRP_CONTEXT IrpContext, // _In_ TYPE_OF_OPEN TypeOfOpen, // _In_ ACCESS_MASK DesiredAccess // ); // #define CdIllegalFcbAccess(IC,T,DA) ( \ BooleanFlagOn( (DA), \ ((T) != UserVolumeOpen ? \ (FILE_WRITE_ATTRIBUTES | \ FILE_WRITE_DATA | \ FILE_WRITE_EA | \ FILE_ADD_FILE | \ FILE_ADD_SUBDIRECTORY | \ FILE_APPEND_DATA) : 0) | \ FILE_DELETE_CHILD | \ DELETE | \ WRITE_DAC ))
// // Allocation support routines, implemented in AllocSup.c // // These routines are for querying allocation on individual streams. // _Requires_lock_held_(_Global_critical_region_) VOID CdLookupAllocation ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG FileOffset, _Out_ PLONGLONG DiskOffset, _Out_ PULONG ByteCount ); VOID CdAddAllocationFromDirent ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ ULONG McbEntryOffset, _In_ LONGLONG StartingFileOffset, _In_ PDIRENT Dirent ); VOID CdAddInitialAllocation ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ ULONG StartingBlock, _In_ LONGLONG DataLength ); VOID CdTruncateAllocation ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ LONGLONG StartingFileOffset ); _At_(Fcb->NodeByteSize, _In_range_(>=, FIELD_OFFSET( FCB, FcbType ))) VOID CdInitializeMcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_updates_bytes_(Fcb->NodeByteSize) PFCB Fcb ); _At_(Fcb->NodeByteSize, _In_range_(>=, FIELD_OFFSET( FCB, FcbType ))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_PATH_TABLE, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_INDEX))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_INDEX, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_INDEX))) _When_(Fcb->NodeTypeCode == CDFS_NTC_FCB_DATA, _At_(Fcb->NodeByteSize, _In_range_(==, SIZEOF_FCB_DATA))) VOID CdUninitializeMcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_updates_bytes_(Fcb->NodeByteSize) PFCB Fcb );
// // Buffer control routines for data caching, implemented in CacheSup.c // VOID CdCreateInternalStream ( _In_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _Inout_ PFCB Fcb, _In_ PUNICODE_STRING Name ); VOID CdDeleteInternalStream ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb ); NTSTATUS CdCompleteMdl ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdPurgeVolume ( _In_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _In_ BOOLEAN DismountUnderway ); VOID INLINE CdVerifyOrCreateDirStreamFile ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb ) { // // Unsafe test to see if call / lock neccessary. // if (NULL == Fcb->FileObject) { CdCreateInternalStream( IrpContext, Fcb->Vcb, Fcb, &Fcb->FileNamePrefix.ExactCaseName.FileName); } } // // VOID // CdUnpinData ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PBCB *Bcb // ); // #define CdUnpinData(IC,B) \ if (*(B) != NULL) { CcUnpinData( *(B) ); *(B) = NULL; }
// // Device I/O routines, implemented in DevIoSup.c // // These routines perform the actual device read and writes. They only affect // the on disk structure and do not alter any other data structures. // _Requires_lock_held_(_Global_critical_region_) VOID CdFreeDirCache ( _In_ PIRP_CONTEXT IrpContext ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdNonCachedRead ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG StartingOffset, _In_ ULONG ByteCount ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdNonCachedXARead ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG StartingOffset, _In_ ULONG ByteCount ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdVolumeDasdWrite ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ LONGLONG StartingOffset, _In_ ULONG ByteCount ); BOOLEAN CdReadSectors ( _In_ PIRP_CONTEXT IrpContext, _In_ LONGLONG StartingOffset, _In_ ULONG ByteCount, _In_ BOOLEAN ReturnError, _Out_writes_bytes_(ByteCount) PVOID Buffer, _In_ PDEVICE_OBJECT TargetDeviceObject ); NTSTATUS CdCreateUserMdl ( _In_ PIRP_CONTEXT IrpContext, _In_ ULONG BufferLength, _In_ BOOLEAN RaiseOnError, _In_ LOCK_OPERATION Operation ); NTSTATUS FASTCALL CdPerformDevIoCtrl ( _In_ PIRP_CONTEXT IrpContext, _In_ ULONG IoControlCode, _In_ PDEVICE_OBJECT Device, _Out_writes_bytes_opt_(OutputBufferLength) PVOID OutputBuffer, _In_ ULONG OutputBufferLength, _In_ BOOLEAN InternalDeviceIoControl, _In_ BOOLEAN OverrideVerify, _Out_opt_ PIO_STATUS_BLOCK Iosb ); NTSTATUS CdPerformDevIoCtrlEx ( _In_ PIRP_CONTEXT IrpContext, _In_ ULONG IoControlCode, _In_ PDEVICE_OBJECT Device, _In_reads_bytes_opt_(InputBufferLength) PVOID InputBuffer, _In_ ULONG InputBufferLength, _Out_writes_bytes_opt_(OutputBufferLength) PVOID OutputBuffer, _In_ ULONG OutputBufferLength, _In_ BOOLEAN InternalDeviceIoControl, _In_ BOOLEAN OverrideVerify, _Out_opt_ PIO_STATUS_BLOCK Iosb ); NTSTATUS CdHijackIrpAndFlushDevice ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp, _In_ PDEVICE_OBJECT TargetDeviceObject ); // // VOID // CdMapUserBuffer ( // _In_ PIRP_CONTEXT IrpContext // _Out_ PVOID UserBuffer // ); // // Returns pointer to sys address. Will raise on failure. // // // VOID // CdLockUserBuffer ( // _Inout_ PIRP_CONTEXT IrpContext, // _In_ ULONG BufferLength // ); // #define CdMapUserBuffer(IC, UB) { \ *(UB) = ( PVOID ) ( ((IC)->Irp->MdlAddress == NULL) ? \ (IC)->Irp->UserBuffer : \ (MmGetSystemAddressForMdlSafe( (IC)->Irp->MdlAddress, NormalPagePriority))); \ if (NULL == *(UB)) { \ CdRaiseStatus( (IC), STATUS_INSUFFICIENT_RESOURCES); \ } \ } #define CdLockUserBuffer(IC,BL,OP) { \ if ((IC)->Irp->MdlAddress == NULL) { \ ( VOID ) CdCreateUserMdl( (IC), (BL), TRUE, (OP) ); \ } \ }
// // Dirent support routines, implemented in DirSup.c // VOID CdLookupDirent ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ ULONG DirentOffset, _Out_ PDIRENT_ENUM_CONTEXT DirContext ); BOOLEAN CdLookupNextDirent ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PDIRENT_ENUM_CONTEXT CurrentDirContext, _Inout_ PDIRENT_ENUM_CONTEXT NextDirContext ); _At_(Dirent->CdTime, _Post_notnull_) VOID CdUpdateDirentFromRawDirent ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PDIRENT_ENUM_CONTEXT DirContext, _Inout_ PDIRENT Dirent ); VOID CdUpdateDirentName ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PDIRENT Dirent, _In_ ULONG IgnoreCase ); _Success_( return != FALSE) BOOLEAN CdFindFile ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PCD_NAME Name, _In_ BOOLEAN IgnoreCase, _Inout_ PFILE_ENUM_CONTEXT FileContext, _Out_ PCD_NAME *MatchingName ); BOOLEAN CdFindDirectory ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PCD_NAME Name, _In_ BOOLEAN IgnoreCase, _Inout_ PFILE_ENUM_CONTEXT FileContext ); _At_(FileContext->ShortName.FileName.MaximumLength, _In_range_(>=, BYTE_COUNT_8_DOT_3)) BOOLEAN CdFindFileByShortName ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PCD_NAME Name, _In_ BOOLEAN IgnoreCase, _In_ ULONG ShortNameDirentOffset, _Inout_ PFILE_ENUM_CONTEXT FileContext ); BOOLEAN CdLookupNextInitialFileDirent ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _Inout_ PFILE_ENUM_CONTEXT FileContext ); VOID CdLookupLastFileDirent ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ PFILE_ENUM_CONTEXT FileContext ); VOID CdCleanupFileContext ( _In_ PIRP_CONTEXT IrpContext, _In_ PFILE_ENUM_CONTEXT FileContext ); // // VOID // CdInitializeFileContext ( // _In_ PIRP_CONTEXT IrpContext, // _Out_ PFILE_ENUM_CONTEXT FileContext // ); // // // VOID // CdInitializeDirent ( // _In_ PIRP_CONTEXT IrpContext, // _Out_ PDIRENT Dirent // ); // // VOID // CdInitializeDirContext ( // _In_ PIRP_CONTEXT IrpContext, // _Out_ PDIRENT_ENUM_CONTEXT DirContext // ); // // VOID // CdCleanupDirent ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PDIRENT Dirent // ); // // VOID // CdCleanupDirContext ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PDIRENT_ENUM_CONTEXT DirContext // ); // // VOID // CdLookupInitialFileDirent ( // _In_ PIRP_CONTEXT IrpContext, // _In_ PFCB Fcb, // _Out_ PFILE_ENUM_CONTEXT FileContext, // _In_ ULONG DirentOffset // ); // #define CdInitializeFileContext(IC,FC) { \ RtlZeroMemory( FC, sizeof ( FILE_ENUM_CONTEXT )); \ (FC)->PriorDirent = &(FC)->Dirents[0]; \ (FC)->InitialDirent = &(FC)->Dirents[1]; \ (FC)->CurrentDirent = &(FC)->Dirents[2]; \ (FC)->ShortName.FileName.MaximumLength = BYTE_COUNT_8_DOT_3; \ (FC)->ShortName.FileName.Buffer = (FC)->ShortNameBuffer; \ } #define CdInitializeDirent(IC,D) \ RtlZeroMemory( D, sizeof ( DIRENT )) #define CdInitializeDirContext(IC,DC) \ RtlZeroMemory( DC, sizeof ( DIRENT_ENUM_CONTEXT )) #define CdCleanupDirent(IC,D) { \ if (FlagOn( (D)->Flags, DIRENT_FLAG_ALLOC_BUFFER )) { \ CdFreePool( &(D)->CdFileName.FileName.Buffer ); \ } \ } #define CdCleanupDirContext(IC,DC) \ CdUnpinData( (IC), &(DC)->Bcb ) #define CdLookupInitialFileDirent(IC,F,FC,DO) \ CdLookupDirent( IC, \ F, \ DO, \ &(FC)->InitialDirent->DirContext ); \ CdUpdateDirentFromRawDirent( IC, \ F, \ &(FC)->InitialDirent->DirContext, \ &(FC)->InitialDirent->Dirent )
// // The following routines are used to manipulate the fscontext fields // of the file object, implemented in FilObSup.c // // // Type of opens. FilObSup.c depends on this order. // typedef enum _TYPE_OF_OPEN { UnopenedFileObject = 0, StreamFileOpen, UserVolumeOpen, UserDirectoryOpen, UserFileOpen, BeyondValidType } TYPE_OF_OPEN; typedef TYPE_OF_OPEN *PTYPE_OF_OPEN; _When_(TypeOfOpen == UnopenedFileObject, _At_(Fcb, _In_opt_)) _When_(TypeOfOpen != UnopenedFileObject, _At_(Fcb, _In_)) VOID CdSetFileObject ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFILE_OBJECT FileObject, _In_ TYPE_OF_OPEN TypeOfOpen, PFCB Fcb, _In_opt_ PCCB Ccb ); _When_( return == UnopenedFileObject, _At_(*Fcb, _Post_null_)) _When_( return != UnopenedFileObject, _At_(Fcb, _Outptr_)) _When_( return == UnopenedFileObject, _At_(*Ccb, _Post_null_)) _When_( return != UnopenedFileObject, _At_(Ccb, _Outptr_)) TYPE_OF_OPEN CdDecodeFileObject ( _In_ PIRP_CONTEXT IrpContext, _In_ PFILE_OBJECT FileObject, PFCB *Fcb, PCCB *Ccb ); TYPE_OF_OPEN CdFastDecodeFileObject ( _In_ PFILE_OBJECT FileObject, _Out_ PFCB *Fcb );
// // Name support routines, implemented in NameSup.c // _Post_satisfies_(_Old_(CdName->FileName.Length) >= CdName->FileName.Length + CdName->VersionString.Length) VOID CdConvertNameToCdName ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PCD_NAME CdName ); VOID CdConvertBigToLittleEndian ( _In_ PIRP_CONTEXT IrpContext, _In_reads_bytes_(ByteCount) PCHAR BigEndian, _In_ ULONG ByteCount, _Out_writes_bytes_(ByteCount) PCHAR LittleEndian ); VOID CdUpcaseName ( _In_ PIRP_CONTEXT IrpContext, _In_ PCD_NAME Name, _Inout_ PCD_NAME UpcaseName ); VOID CdDissectName ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PUNICODE_STRING RemainingName, _Out_ PUNICODE_STRING FinalName ); BOOLEAN CdIsLegalName ( _In_ PIRP_CONTEXT IrpContext, _In_ PUNICODE_STRING FileName ); BOOLEAN CdIs8dot3Name ( _In_ PIRP_CONTEXT IrpContext, _In_ UNICODE_STRING FileName ); VOID CdGenerate8dot3Name ( _In_ PIRP_CONTEXT IrpContext, _In_ PUNICODE_STRING FileName, _In_ ULONG DirentOffset, _Out_writes_bytes_to_(BYTE_COUNT_8_DOT_3, *ShortByteCount) PWCHAR ShortFileName, _Out_ PUSHORT ShortByteCount ); BOOLEAN CdIsNameInExpression ( _In_ PIRP_CONTEXT IrpContext, _In_ PCD_NAME CurrentName, _In_ PCD_NAME SearchExpression, _In_ ULONG WildcardFlags, _In_ BOOLEAN CheckVersion ); ULONG CdShortNameDirentOffset ( _In_ PIRP_CONTEXT IrpContext, _In_ PUNICODE_STRING Name ); FSRTL_COMPARISON_RESULT CdFullCompareNames ( _In_ PIRP_CONTEXT IrpContext, _In_ PUNICODE_STRING NameA, _In_ PUNICODE_STRING NameB );
// // Filesystem control operations. Implemented in Fsctrl.c // _Requires_lock_held_(_Global_critical_region_) _Requires_lock_held_(Vcb->VcbResource) NTSTATUS CdLockVolumeInternal ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb, _In_opt_ PFILE_OBJECT FileObject ); NTSTATUS CdUnlockVolumeInternal ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb, _In_opt_ PFILE_OBJECT FileObject );
// // Path table enumeration routines. Implemented in PathSup.c // VOID CdLookupPathEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ ULONG PathEntryOffset, _In_ ULONG Ordinal, _In_ BOOLEAN VerifyBounds, _Inout_ PCOMPOUND_PATH_ENTRY CompoundPathEntry ); BOOLEAN CdLookupNextPathEntry ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PPATH_ENUM_CONTEXT PathContext, _Inout_ PPATH_ENTRY PathEntry ); _Success_( return != FALSE) BOOLEAN CdFindPathEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB ParentFcb, _In_ PCD_NAME DirName, _In_ BOOLEAN IgnoreCase, _Inout_ PCOMPOUND_PATH_ENTRY CompoundPathEntry ); VOID CdUpdatePathEntryName ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PPATH_ENTRY PathEntry, _In_ BOOLEAN IgnoreCase ); // // VOID // CdInitializeCompoundPathEntry ( // _In_ PIRP_CONTEXT IrpContext, // _Out_ PCOMPOUND_PATH_ENTRY CompoundPathEntry // ); // // VOID // CdCleanupCompoundPathEntry ( // _In_ PIRP_CONTEXT IrpContext, // _Out_ PCOMPOUND_PATH_ENTRY CompoundPathEntry // ); // #define CdInitializeCompoundPathEntry(IC,CP) \ RtlZeroMemory( CP, sizeof ( COMPOUND_PATH_ENTRY )) #define CdCleanupCompoundPathEntry(IC,CP) { \ CdUnpinData( (IC), &(CP)->PathContext.Bcb ); \ if ((CP)->PathContext.AllocatedData) { \ CdFreePool( &(CP)->PathContext.Data ); \ } \ if (FlagOn( (CP)->PathEntry.Flags, PATH_ENTRY_FLAG_ALLOC_BUFFER )) { \ CdFreePool( &(CP)->PathEntry.CdDirName.FileName.Buffer ); \ } \ }
// // Largest matching prefix searching routines, implemented in PrefxSup.c // VOID CdInsertPrefix ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ PCD_NAME Name, _In_ BOOLEAN IgnoreCase, _In_ BOOLEAN ShortNameMatch, _Inout_ PFCB ParentFcb ); VOID CdRemovePrefix ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb ); _Requires_lock_held_(_Global_critical_region_) VOID CdFindPrefix ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB *CurrentFcb, _Inout_ PUNICODE_STRING RemainingName, _In_ BOOLEAN IgnoreCase );
// // Synchronization routines. Implemented in Resrcsup.c // // The following routines/macros are used to synchronize the in-memory structures. // // Routine/Macro Synchronizes Subsequent // // CdAcquireCdData Volume Mounts/Dismounts,Vcb Queue CdReleaseCdData // CdAcquireVcbExclusive Vcb for open/close CdReleaseVcb // CdAcquireVcbShared Vcb for open/close CdReleaseVcb // CdAcquireAllFiles Locks out operations to all files CdReleaseAllFiles // CdAcquireFileExclusive Locks out file operations CdReleaseFile // CdAcquireFileShared Files for file operations CdReleaseFile // CdAcquireFcbExclusive Fcb for open/close CdReleaseFcb // CdAcquireFcbShared Fcb for open/close CdReleaseFcb // CdLockCdData Fields in CdData CdUnlockCdData // CdLockVcb Vcb fields, FcbReference, FcbTable CdUnlockVcb // CdLockFcb Fcb fields, prefix table, Mcb CdUnlockFcb // typedef enum _TYPE_OF_ACQUIRE { AcquireExclusive, AcquireShared, AcquireSharedStarveExclusive } TYPE_OF_ACQUIRE, *PTYPE_OF_ACQUIRE; _Requires_lock_held_(_Global_critical_region_) _When_(Type == AcquireExclusive && return != FALSE, _Acquires_exclusive_lock_(*Resource)) _When_(Type == AcquireShared && return != FALSE, _Acquires_shared_lock_(*Resource)) _When_(Type == AcquireSharedStarveExclusive && return != FALSE, _Acquires_shared_lock_(*Resource)) _When_(IgnoreWait == FALSE, _Post_satisfies_( return == TRUE)) BOOLEAN CdAcquireResource ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PERESOURCE Resource, _In_ BOOLEAN IgnoreWait, _In_ TYPE_OF_ACQUIRE Type ); // // BOOLEAN // CdAcquireCdData ( // _In_ PIRP_CONTEXT IrpContext // ); // // VOID // CdReleaseCdData ( // _In_ PIRP_CONTEXT IrpContext // ); // // BOOLEAN // CdAcquireVcbExclusive ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PVCB Vcb, // _In_ BOOLEAN IgnoreWait // ); // // BOOLEAN // CdAcquireVcbShared ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PVCB Vcb, // _In_ BOOLEAN IgnoreWait // ); // // VOID // CdReleaseVcb ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PVCB Vcb // ); // // VOID // CdAcquireAllFiles ( // _In_ PIRP_CONTEXT, // _In_ PVCB Vcb // ); // // VOID // CdReleaseAllFiles ( // _In_ PIRP_CONTEXT, // _In_ PVCB Vcb // ); // // VOID // CdAcquireFileExclusive ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb, // ); // // VOID // CdAcquireFileShared ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdReleaseFile ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // BOOLEAN // CdAcquireFcbExclusive ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb, // _In_ BOOLEAN IgnoreWait // ); // // BOOLEAN // CdAcquireFcbShared ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb, // _In_ BOOLEAN IgnoreWait // ); // // BOOLEAN // CdReleaseFcb ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdLockCdData ( // ); // // VOID // CdUnlockCdData ( // ); // // VOID // CdLockVcb ( // _In_ PIRP_CONTEXT IrpContext // ); // // VOID // CdUnlockVcb ( // _In_ PIRP_CONTEXT IrpContext // ); // // VOID // CdLockFcb ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdUnlockFcb ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // #define CdAcquireCacheForRead( IC) \ ExAcquireResourceSharedLite( &(IC)->Vcb->SectorCacheResource, TRUE) #define CdAcquireCacheForUpdate( IC) \ ExAcquireResourceExclusiveLite( &(IC)->Vcb->SectorCacheResource, TRUE) #define CdReleaseCache( IC) \ ExReleaseResourceLite( &(IC)->Vcb->SectorCacheResource); #define CdConvertCacheToShared( IC) \ ExConvertExclusiveToSharedLite( &(IC)->Vcb->SectorCacheResource); #define CdAcquireCdData(IC) \ ExAcquireResourceExclusiveLite( &CdData.DataResource, TRUE ) #define CdReleaseCdData(IC) \ ExReleaseResourceLite( &CdData.DataResource ) #define CdAcquireVcbExclusive(IC,V,I) \ CdAcquireResource( (IC), &(V)->VcbResource, (I), AcquireExclusive ) #define CdAcquireVcbShared(IC,V,I) \ CdAcquireResource( (IC), &(V)->VcbResource, (I), AcquireShared ) #define CdReleaseVcb(IC,V) \ ExReleaseResourceLite( &(V)->VcbResource ) #define CdAcquireAllFiles(IC,V) \ CdAcquireResource( (IC), &(V)->FileResource, FALSE, AcquireExclusive ) #define CdReleaseAllFiles(IC,V) \ ExReleaseResourceLite( &(V)->FileResource ) #define CdAcquireFileExclusive(IC,F) \ CdAcquireResource( (IC), (F)->Resource, FALSE, AcquireExclusive ) #define CdAcquireFileShared(IC,F) \ CdAcquireResource( (IC), (F)->Resource, FALSE, AcquireShared ) #define CdAcquireFileSharedStarveExclusive(IC,F) \ CdAcquireResource( (IC), (F)->Resource, FALSE, AcquireSharedStarveExclusive ) #define CdReleaseFile(IC,F) \ ExReleaseResourceLite( (F)->Resource ) #define CdAcquireFcbExclusive(IC,F,I) \ CdAcquireResource( (IC), &(F)->FcbNonpaged->FcbResource, (I), AcquireExclusive ) #define CdAcquireFcbShared(IC,F,I) \ CdAcquireResource( (IC), &(F)->FcbNonpaged->FcbResource, (I), AcquireShared ) #define CdReleaseFcb(IC,F) \ ExReleaseResourceLite( &(F)->FcbNonpaged->FcbResource ) #define CdLockCdData() \ ExAcquireFastMutex( &CdData.CdDataMutex ); \ CdData.CdDataLockThread = PsGetCurrentThread() #define CdUnlockCdData() \ CdData.CdDataLockThread = NULL; \ ExReleaseFastMutex( &CdData.CdDataMutex ) #define CdLockVcb(IC,V) \ ExAcquireFastMutex( &(V)->VcbMutex ); \ NT_ASSERT( NULL == (V)->VcbLockThread); \ (V)->VcbLockThread = PsGetCurrentThread() #define CdUnlockVcb(IC,V) \ NT_ASSERT( NULL != (V)->VcbLockThread); \ (V)->VcbLockThread = NULL; \ ExReleaseFastMutex( &(V)->VcbMutex ) #if defined(_PREFAST_) _Success_( return ) _IRQL_saves_global_(OldIrql, FastMutex) BOOLEAN DummySaveIrql(_Inout_ PFAST_MUTEX FastMutex); _Success_( return ) _IRQL_restores_global_(OldIrql, FastMutex) BOOLEAN DummyRestoreIrql(_Inout_ PFAST_MUTEX FastMutex); #endif // _PREFAST_ #define CdLockFcb(IC,F) { \ PVOID _CurrentThread = PsGetCurrentThread(); \ if (_CurrentThread != (F)->FcbLockThread) { \ ExAcquireFastMutex( &(F)->FcbNonpaged->FcbMutex ); \ NT_ASSERT( (F)->FcbLockCount == 0 ); \ _Analysis_assume_( (F)->FcbLockCount == 0 ); \ (F)->FcbLockThread = _CurrentThread; \ } \ else \ { \ _Analysis_assume_lock_held_( (F)->FcbNonpaged->FcbMutex ); \ _Analysis_assume_(FALSE != DummySaveIrql(&(F)->FcbNonpaged->FcbMutex)); \ } \ (F)->FcbLockCount += 1; \ } #define CdUnlockFcb(IC,F) { \ (F)->FcbLockCount -= 1; \ if ((F)->FcbLockCount == 0) { \ (F)->FcbLockThread = NULL; \ ExReleaseFastMutex( &(F)->FcbNonpaged->FcbMutex ); \ } \ else \ { \ _Analysis_assume_lock_not_held_( (F)->FcbNonpaged->FcbMutex ); \ _Analysis_assume_(FALSE != DummyRestoreIrql(&(F)->FcbNonpaged->FcbMutex)); \ } \ } // // The following macro is used to retrieve the oplock structure within // the Fcb. This structure was moved to the advanced Fcb header // in Win8. // #if (NTDDI_VERSION >= NTDDI_WIN8) #define CdGetFcbOplock(F) &(F)->Header.Oplock #else #define CdGetFcbOplock(F) &(F)->Oplock #endif BOOLEAN CdNoopAcquire ( _In_ PVOID Fcb, _In_ BOOLEAN Wait ); VOID CdNoopRelease ( _In_ PVOID Fcb ); _Requires_lock_held_(_Global_critical_region_) _When_( return !=0, _Acquires_shared_lock_(*Fcb->Resource)) BOOLEAN CdAcquireForCache ( _Inout_ PFCB Fcb, _In_ BOOLEAN Wait ); _Requires_lock_held_(_Global_critical_region_) _Releases_lock_(*Fcb->Resource) VOID CdReleaseFromCache ( _Inout_ PFCB Fcb ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdFilterCallbackAcquireForCreateSection ( _In_ PFS_FILTER_CALLBACK_DATA CallbackData, _Unreferenced_parameter_ PVOID *CompletionContext ); _Function_class_(FAST_IO_RELEASE_FILE) _Requires_lock_held_(_Global_critical_region_) VOID CdReleaseForCreateSection ( _In_ PFILE_OBJECT FileObject );
// // In-memory structure support routines. Implemented in StrucSup.c // VOID CdInitializeVcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb, _In_ __drv_aliasesMem PDEVICE_OBJECT TargetDeviceObject, _In_ __drv_aliasesMem PVPB Vpb, _In_ __drv_aliasesMem PCDROM_TOC_LARGE CdromToc, _In_ ULONG TocLength, _In_ ULONG TocTrackCount, _In_ ULONG TocDiskFlags, _In_ ULONG BlockFactor, _In_ ULONG MediaChangeCount ); VOID CdUpdateVcbFromVolDescriptor ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb, _In_reads_bytes_opt_(SECTOR_SIZE) PCHAR RawIsoVd ); VOID CdDeleteVcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb ); PFCB CdCreateFcb ( _In_ PIRP_CONTEXT IrpContext, _In_ FILE_ID FileId, _In_ NODE_TYPE_CODE NodeTypeCode, _Out_opt_ PBOOLEAN FcbExisted ); VOID CdInitializeFcbFromPathEntry ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_opt_ PFCB ParentFcb, _In_ PPATH_ENTRY PathEntry ); VOID CdInitializeFcbFromFileContext ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ PFCB ParentFcb, _In_ PFILE_ENUM_CONTEXT FileContext ); PCCB CdCreateCcb ( _In_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb, _In_ ULONG Flags ); VOID CdDeleteCcb ( _In_ PIRP_CONTEXT IrpContext, _In_ __drv_freesMem( Pool ) PCCB Ccb ); _When_(RaiseOnError || return , _At_(Fcb->FileLock, _Post_notnull_)) _When_(RaiseOnError, _At_(IrpContext, _Pre_notnull_)) BOOLEAN CdCreateFileLock ( _In_opt_ PIRP_CONTEXT IrpContext, _Inout_ PFCB Fcb, _In_ BOOLEAN RaiseOnError ); VOID CdDeleteFileLock ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFILE_LOCK FileLock ); _Ret_valid_ PIRP_CONTEXT CdCreateIrpContext ( _In_ PIRP Irp, _In_ BOOLEAN Wait ); VOID CdCleanupIrpContext ( _In_ PIRP_CONTEXT IrpContext, _In_ BOOLEAN Post ); VOID CdInitializeStackIrpContext ( _Out_ PIRP_CONTEXT IrpContext, _In_ PIRP_CONTEXT_LITE IrpContextLite ); // // PIRP_CONTEXT_LITE // CdCreateIrpContextLite ( // _In_ PIRP_CONTEXT IrpContext // ); // // VOID // CdFreeIrpContextLite ( // _Inout_ PIRP_CONTEXT_LITE IrpContextLite // ); // #define CdCreateIrpContextLite(IC) \ ExAllocatePoolWithTag( CdNonPagedPool, sizeof ( IRP_CONTEXT_LITE ), TAG_IRP_CONTEXT_LITE ) #define CdFreeIrpContextLite(ICL) \ CdFreePool( &(ICL) ) _Requires_lock_held_(_Global_critical_region_) VOID CdTeardownStructures ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PFCB StartingFcb, _Out_ PBOOLEAN RemovedStartingFcb ); // // VOID // CdIncrementCleanupCounts ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdDecrementCleanupCounts ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdIncrementReferenceCounts ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb, // _In_ ULONG ReferenceCount // _In_ ULONG UserReferenceCount // ); // // VOID // CdDecrementReferenceCounts ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb, // _In_ ULONG ReferenceCount // _In_ ULONG UserReferenceCount // ); // // VOID // CdIncrementFcbReference ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // // VOID // CdDecrementFcbReference ( // _In_ PIRP_CONTEXT IrpContext, // _Inout_ PFCB Fcb // ); // #define CdIncrementCleanupCounts(IC,F) { \ ASSERT_LOCKED_VCB( (F)->Vcb ); \ (F)->FcbCleanup += 1; \ (F)->Vcb->VcbCleanup += 1; \ } #define CdDecrementCleanupCounts(IC,F) { \ ASSERT_LOCKED_VCB( (F)->Vcb ); \ (F)->FcbCleanup -= 1; \ (F)->Vcb->VcbCleanup -= 1; \ } #define CdIncrementReferenceCounts(IC,F,C,UC) { \ ASSERT_LOCKED_VCB( (F)->Vcb ); \ (F)->FcbReference += (C); \ (F)->FcbUserReference += (UC); \ (F)->Vcb->VcbReference += (C); \ (F)->Vcb->VcbUserReference += (UC); \ } #define CdDecrementReferenceCounts(IC,F,C,UC) { \ ASSERT_LOCKED_VCB( (F)->Vcb ); \ (F)->FcbReference -= (C); \ (F)->FcbUserReference -= (UC); \ (F)->Vcb->VcbReference -= (C); \ (F)->Vcb->VcbUserReference -= (UC); \ } // // PCD_IO_CONTEXT // CdAllocateIoContext ( // ); // // VOID // CdFreeIoContext ( // PCD_IO_CONTEXT IoContext // ); // #define CdAllocateIoContext() \ FsRtlAllocatePoolWithTag( CdNonPagedPool, \ sizeof ( CD_IO_CONTEXT ), \ TAG_IO_CONTEXT ) #define CdFreeIoContext(IO) CdFreePool( &(IO) ) PFCB CdLookupFcbTable ( _In_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _In_ FILE_ID FileId ); PFCB CdGetNextFcb ( _In_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _In_ PVOID *RestartKey ); NTSTATUS CdProcessToc ( _In_ PIRP_CONTEXT IrpContext, _In_ PDEVICE_OBJECT TargetDeviceObject, _In_ PCDROM_TOC_LARGE CdromToc, _Inout_ PULONG Length, _Out_ PULONG TrackCount, _Inout_ PULONG DiskFlags ); // // For debugging purposes we sometimes want to allocate our structures from nonpaged // pool so that in the kernel debugger we can walk all the structures. // #define CdPagedPool PagedPool #define CdNonPagedPool NonPagedPoolNx #define CdNonPagedPoolCacheAligned NonPagedPoolNxCacheAligned // // Verification support routines. Contained in verfysup.c // INLINE BOOLEAN CdOperationIsDasdOpen ( _In_ PIRP_CONTEXT IrpContext ) { PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation( IrpContext->Irp); return ((IrpContext->MajorFunction == IRP_MJ_CREATE) && (IrpSp->FileObject->FileName.Length == 0) && (IrpSp->FileObject->RelatedFileObject == NULL)); } _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdPerformVerify ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp, _In_ PDEVICE_OBJECT DeviceToVerify ); _Requires_lock_held_(_Global_critical_region_) BOOLEAN CdCheckForDismount ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb, _In_ BOOLEAN Force ); BOOLEAN CdMarkDevForVerifyIfVcbMounted ( _Inout_ PVCB Vcb ); VOID CdVerifyVcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb ); BOOLEAN CdVerifyFcbOperation ( _In_opt_ PIRP_CONTEXT IrpContext, _In_ PFCB Fcb ); _Requires_lock_held_(_Global_critical_region_) BOOLEAN CdDismountVcb ( _In_ PIRP_CONTEXT IrpContext, _Inout_ PVCB Vcb ); // // Macros to abstract device verify flag changes. // #define CdUpdateMediaChangeCount( V, C) (V)->MediaChangeCount = (C) #define CdUpdateVcbCondition( V, C) (V)->VcbCondition = (C) #define CdMarkRealDevForVerify( DO) SetFlag( (DO)->Flags, DO_VERIFY_VOLUME) #define CdMarkRealDevVerifyOk( DO) ClearFlag( (DO)->Flags, DO_VERIFY_VOLUME) #define CdRealDevNeedsVerify( DO) BooleanFlagOn( (DO)->Flags, DO_VERIFY_VOLUME) // // BOOLEAN // CdIsRawDevice ( // _In_ PIRP_CONTEXT IrpContext, // _In_ NTSTATUS Status // ); // #define CdIsRawDevice(IC,S) ( \ ((S) == STATUS_DEVICE_NOT_READY) || \ ((S) == STATUS_NO_MEDIA_IN_DEVICE) \ )
// // Work queue routines for posting and retrieving an Irp, implemented in // workque.c // _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdFsdPostRequest ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) VOID CdPrePostIrp ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) VOID CdOplockComplete ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp );
// // Miscellaneous support routines // // // This macro returns TRUE if a flag in a set of flags is on and FALSE // otherwise // //#ifndef BooleanFlagOn //#define BooleanFlagOn(F,SF) ( \ // (BOOLEAN)(((F) & (SF)) != 0) \ //) //#endif //#ifndef SetFlag //#define SetFlag(Flags,SingleFlag) { \ // (Flags) |= (SingleFlag); \ //} //#endif //#ifndef ClearFlag //#define ClearFlag(Flags,SingleFlag) { \ // (Flags) &= ~(SingleFlag); \ //} //#endif // // CAST // Add2Ptr ( // _In_ PVOID Pointer, // _In_ ULONG Increment // _In_ (CAST) // ); // // ULONG // PtrOffset ( // _In_ PVOID BasePtr, // _In_ PVOID OffsetPtr // ); // #define Add2Ptr(PTR,INC,CAST) ((CAST)((PUCHAR)(PTR) + (INC))) #define PtrOffset(BASE,OFFSET) ((ULONG)((ULONG_PTR)(OFFSET) - (ULONG_PTR)(BASE))) // // This macro takes a pointer (or ulong) and returns its rounded up word // value // #define WordAlign(Ptr) ( \ (((( ULONG )(Ptr)) + 1) & 0xfffffffe) \ ) // // This macro takes a pointer (or ulong) and returns its rounded up longword // value // #define LongAlign(Ptr) ( \ (((( ULONG )(Ptr)) + 3) & 0xfffffffc) \ ) // // This macro takes a pointer (or ulong) and returns its rounded up quadword // value // #define QuadAlign(Ptr) ( \ (((( ULONG )(Ptr)) + 7) & 0xfffffff8) \ ) // // The following macros round up and down to sector boundaries. // #define SectorAlign(L) ( \ (((( ULONG )(L)) + (SECTOR_SIZE - 1)) & ~(SECTOR_SIZE - 1)) \ ) #define LlSectorAlign(L) ( \ (((( LONGLONG )(L)) + (SECTOR_SIZE - 1)) & ~(SECTOR_SIZE - 1)) \ ) #define SectorTruncate(L) ( \ (( ULONG )(L)) & ~(SECTOR_SIZE - 1) \ ) #define LlSectorTruncate(L) ( \ (( LONGLONG )(L)) & ~(SECTOR_SIZE - 1) \ ) #define BytesFromSectors(L) ( \ (( ULONG ) (L)) << SECTOR_SHIFT \ ) #define SectorsFromBytes(L) ( \ (( ULONG ) (L)) >> SECTOR_SHIFT \ ) INLINE ULONG SectorsFromLlBytes( ULONGLONG Bytes ) { return ( ULONG )(Bytes >> SECTOR_SHIFT); } #define LlBytesFromSectors(L) ( \ Int64ShllMod32( ( LONGLONG )(L), SECTOR_SHIFT ) \ ) #define LlSectorsFromBytes(L) ( \ Int64ShraMod32( ( LONGLONG )(L), SECTOR_SHIFT ) \ ) #define SectorOffset(L) ( \ (( ULONG )( ULONG_PTR ) (L)) & SECTOR_MASK \ ) #define SectorBlockOffset(V,LB) ( \ (( ULONG ) (LB)) & ((V)->BlocksPerSector - 1) \ ) #define BytesFromBlocks(V,B) ( \ ( ULONG ) (B) << (V)->BlockToByteShift \ ) #define LlBytesFromBlocks(V,B) ( \ Int64ShllMod32( ( LONGLONG ) (B), (V)->BlockToByteShift ) \ ) #define BlockAlign(V,L) ( \ (( ULONG )(L) + (V)->BlockMask) & (V)->BlockInverseMask \ ) // // Carefully make sure the mask is sign extended to 64bits // #define LlBlockAlign(V,L) ( \ (( LONGLONG )(L) + (V)->BlockMask) & ( LONGLONG )(( LONG )(V)->BlockInverseMask) \ ) #define BlockOffset(V,L) ( \ (( ULONG ) (L)) & (V)->BlockMask \ ) #define RawSectorAlign( B) ((((B)+(RAW_SECTOR_SIZE - 1)) / RAW_SECTOR_SIZE) * RAW_SECTOR_SIZE) // // The following types and macros are used to help unpack the packed and // misaligned fields found in the Bios parameter block // typedef union _UCHAR1 { UCHAR Uchar[1]; UCHAR ForceAlignment; } UCHAR1, *PUCHAR1; typedef union _UCHAR2 { UCHAR Uchar[2]; USHORT ForceAlignment; } UCHAR2, *PUCHAR2; typedef union _UCHAR4 { UCHAR Uchar[4]; ULONG ForceAlignment; } UCHAR4, *PUCHAR4; typedef union _USHORT2 { USHORT Ushort[2]; ULONG ForceAlignment; } USHORT2, *PUSHORT2; // // This macro copies an unaligned src byte to an aligned dst byte // #define CopyUchar1(Dst,Src) { \ *((UCHAR1 *)(Dst)) = *((UNALIGNED UCHAR1 *)(Src)); \ } // // This macro copies an unaligned src word to an aligned dst word // #define CopyUchar2(Dst,Src) { \ *((UCHAR2 *)(Dst)) = *((UNALIGNED UCHAR2 *)(Src)); \ } // // This macro copies an unaligned src longword to an aligned dsr longword // #define CopyUchar4(Dst,Src) { \ *((UCHAR4 *)(Dst)) = *((UNALIGNED UCHAR4 *)(Src)); \ } // // This macro copies an unaligned src longword to an aligned dsr longword // accessing the source on a word boundary. // #define CopyUshort2(Dst,Src) { \ *((USHORT2 *)(Dst)) = *((UNALIGNED USHORT2 *)(Src));\ } // // This macro copies an unaligned src longword to a dst longword, // performing an little/big endian swap. // #define SwapCopyUchar4(Dst,Src) { \ *((UNALIGNED UCHAR1 *)(Dst)) = *((UNALIGNED UCHAR1 *)(Src) + 3); \ *((UNALIGNED UCHAR1 *)(Dst) + 1) = *((UNALIGNED UCHAR1 *)(Src) + 2); \ *((UNALIGNED UCHAR1 *)(Dst) + 2) = *((UNALIGNED UCHAR1 *)(Src) + 1); \ *((UNALIGNED UCHAR1 *)(Dst) + 3) = *((UNALIGNED UCHAR1 *)(Src)); \ } VOID CdLbnToMmSsFf ( _In_ ULONG Blocks, _Out_writes_(3) PUCHAR Msf ); // // Following routines handle entry in and out of the filesystem. They are // contained in CdData.c // // NTSTATUS // CdFsdDispatch ( // _In_ PDEVICE_OBJECT DeviceObject, // _Inout_ PIRP Irp // ); DRIVER_DISPATCH CdFsdDispatch; LONG CdExceptionFilter ( _Inout_ PIRP_CONTEXT IrpContext, _In_ PEXCEPTION_POINTERS ExceptionPointer ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdProcessException ( _In_opt_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp, _In_ NTSTATUS ExceptionCode ); VOID CdCompleteRequest ( _Inout_opt_ PIRP_CONTEXT IrpContext, _Inout_opt_ PIRP Irp, _In_ NTSTATUS Status ); // // VOID // CdRaiseStatus ( // _In_ PRIP_CONTEXT IrpContext, // _In_ NT_STATUS Status // ); // // VOID // CdNormalizeAndRaiseStatus ( // _In_ PRIP_CONTEXT IrpContext, // _In_ NT_STATUS Status // ); // #if 0 #define AssertVerifyDevice(C, S) \ NT_ASSERT( (C) == NULL || \ FlagOn( (C)->Flags, IRP_CONTEXT_FLAG_IN_FSP ) || \ !((S) == STATUS_VERIFY_REQUIRED && \ IoGetDeviceToVerify( PsGetCurrentThread() ) == NULL )); #define AssertVerifyDeviceIrp(I) \ NT_ASSERT( (I) == NULL || \ !(((I)->IoStatus.Status) == STATUS_VERIFY_REQUIRED && \ ((I)->Tail.Overlay.Thread == NULL || \ IoGetDeviceToVerify( (I)->Tail.Overlay.Thread ) == NULL ))); #else #define AssertVerifyDevice(C, S) #define AssertVerifyDeviceIrp(I) #endif #ifdef CD_SANITY DECLSPEC_NORETURN VOID CdRaiseStatusEx ( _In_ PIRP_CONTEXT IrpContext, _In_ NTSTATUS Status, _In_ BOOLEAN NormalizeStatus, _In_opt_ ULONG FileId, _In_opt_ ULONG Line ); #else INLINE DECLSPEC_NORETURN VOID CdRaiseStatusEx( _In_ PIRP_CONTEXT IrpContext, _In_ NTSTATUS Status, _In_ BOOLEAN NormalizeStatus, _In_ ULONG Fileid, _In_ ULONG Line ) { if (NormalizeStatus) { IrpContext->ExceptionStatus = FsRtlNormalizeNtstatus( Status, STATUS_UNEXPECTED_IO_ERROR); } else { IrpContext->ExceptionStatus = Status; } IrpContext->RaisedAtLineFile = (Fileid << 16) | Line; ExRaiseStatus( IrpContext->ExceptionStatus ); } #endif #define CdRaiseStatus( IC, S) CdRaiseStatusEx( (IC), (S), FALSE, BugCheckFileId, __LINE__); #define CdNormalizeAndRaiseStatus( IC, S) CdRaiseStatusEx( (IC), (S), TRUE, BugCheckFileId, __LINE__); // // Following are the fast entry points. // // _Success_(return != FALSE) // BOOLEAN // CdFastQueryBasicInfo ( // _In_ PFILE_OBJECT FileObject, // _In_ BOOLEAN Wait, // _Out_ PFILE_BASIC_INFORMATION Buffer, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_QUERY_BASIC_INFO CdFastQueryBasicInfo; // _Success_(return != FALSE) // BOOLEAN // CdFastQueryStdInfo ( // _In_ PFILE_OBJECT FileObject, // _In_ BOOLEAN Wait, // _Out_ PFILE_STANDARD_INFORMATION Buffer, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_QUERY_STANDARD_INFO CdFastQueryStdInfo; // BOOLEAN // CdFastLock ( // _In_ PFILE_OBJECT FileObject, // _In_ PLARGE_INTEGER FileOffset, // _In_ PLARGE_INTEGER Length, // _In_ PEPROCESS ProcessId, // _In_ ULONG Key, // _In_ BOOLEAN FailImmediately, // _In_ BOOLEAN ExclusiveLock, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_LOCK CdFastLock; // BOOLEAN // CdFastUnlockSingle ( // _In_ PFILE_OBJECT FileObject, // _In_ PLARGE_INTEGER FileOffset, // _In_ PLARGE_INTEGER Length, // _In_ PEPROCESS ProcessId, // _In_ ULONG Key, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_UNLOCK_SINGLE CdFastUnlockSingle; // BOOLEAN // CdFastUnlockAll ( // _In_ PFILE_OBJECT FileObject, // _In_ PEPROCESS ProcessId, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_UNLOCK_ALL CdFastUnlockAll; // BOOLEAN // CdFastUnlockAllByKey ( // _In_ PFILE_OBJECT FileObject, // _In_ PVOID ProcessId, // _In_ ULONG Key, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_UNLOCK_ALL_BY_KEY CdFastUnlockAllByKey; // BOOLEAN // CdFastIoCheckIfPossible ( // _In_ PFILE_OBJECT FileObject, // _In_ PLARGE_INTEGER FileOffset, // _In_ ULONG Length, // _In_ BOOLEAN Wait, // _In_ ULONG LockKey, // _In_ BOOLEAN CheckForReadOperation, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_CHECK_IF_POSSIBLE CdFastIoCheckIfPossible; // _Success_(return != FALSE) // BOOLEAN // CdFastQueryNetworkInfo ( // _In_ PFILE_OBJECT FileObject, // _In_ BOOLEAN Wait, // _Out_ PFILE_NETWORK_OPEN_INFORMATION Buffer, // _Out_ PIO_STATUS_BLOCK IoStatus, // _In_ PDEVICE_OBJECT DeviceObject // ); FAST_IO_QUERY_NETWORK_OPEN_INFO CdFastQueryNetworkInfo; // // Following are the routines to handle the top level thread logic. // VOID CdSetThreadContext ( _Inout_ PIRP_CONTEXT IrpContext, _In_ PTHREAD_CONTEXT ThreadContext ); // // VOID // CdRestoreThreadContext ( // _Inout_ PIRP_CONTEXT IrpContext // ); // #define CdRestoreThreadContext(IC) \ (IC)->ThreadContext->Cdfs = 0; \ IoSetTopLevelIrp( (IC)->ThreadContext->SavedTopLevelIrp ); \ (IC)->ThreadContext = NULL ULONG CdSerial32 ( _In_reads_bytes_(ByteCount) PCHAR Buffer, _In_ ULONG ByteCount ); // // The following macro is used to determine if an FSD thread can block // for I/O or wait for a resource. It returns TRUE if the thread can // block and FALSE otherwise. This attribute can then be used to call // the FSD & FSP common work routine with the proper wait value. // #define CanFsdWait(I) IoIsOperationSynchronous(I) // // The following macro is used to set the fast i/o possible bits in the // FsRtl header. // // FastIoIsNotPossible - If the Fcb is bad or there are oplocks on the file. // // FastIoIsQuestionable - If there are file locks. // // FastIoIsPossible - In all other cases. // // #define CdIsFastIoPossible(F) ((BOOLEAN) \ ((((F)->Vcb->VcbCondition != VcbMounted ) || \ !FsRtlOplockIsFastIoPossible( CdGetFcbOplock(F) )) ? \ \ FastIoIsNotPossible : \ \ ((((F)->FileLock != NULL) && FsRtlAreThereCurrentFileLocks( (F)->FileLock )) ? \ \ FastIoIsQuestionable : \ \ FastIoIsPossible)) \ )
// // The FSP level dispatch/main routine. This is the routine that takes // IRP's off of the work queue and calls the appropriate FSP level // work routine. // // VOID // CdFspDispatch ( // implemented in FspDisp.c // _Inout_ PIRP_CONTEXT IrpContext // ); WORKER_THREAD_ROUTINE CdFspDispatch; VOID CdFspClose ( // implemented in Close.c _In_opt_ PVCB Vcb ); // // The following routines are the entry points for the different operations // based on the IrpSp major functions. // _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonCreate ( // Implemented in Create.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonClose ( // Implemented in Close.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonRead ( // Implemented in Read.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonWrite ( // Implemented in Write.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonQueryInfo ( // Implemented in FileInfo.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonSetInfo ( // Implemented in FileInfo.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonQueryVolInfo ( // Implemented in VolInfo.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonDirControl ( // Implemented in DirCtrl.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonFsControl ( // Implemented in FsCtrl.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); NTSTATUS CdCommonDevControl ( // Implemented in DevCtrl.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); NTSTATUS CdCommonLockControl ( // Implemented in LockCtrl.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonCleanup ( // Implemented in Cleanup.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonPnp ( // Implemented in Pnp.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCommonShutdown ( // Implemented in Shutdown.c _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp );
// // The following macros are used to establish the semantics needed // to do a return from within a try-finally clause. As a rule every // try clause must end with a label call try_exit. For example, // // try { // : // : // // try_exit: NOTHING; // } finally { // // : // : // } // // Every return statement executed inside of a try clause should use the // try_return macro. If the compiler fully supports the try-finally construct // then the macro should be // // #define try_return(S) { return(S); } // // If the compiler does not support the try-finally construct then the macro // should be // // #define try_return(S) { S; goto try_exit; } // #define try_return(S) { S; goto try_exit; } #define try_leave(S) { S; leave; } // // Encapsulate safe pool freeing // INLINE VOID CdFreePool( _Inout_ _At_(*Pool, __drv_freesMem(Mem) _Post_null_) PVOID *Pool ) { if (*Pool != NULL) { ExFreePool(*Pool); *Pool = NULL; } } #endif // _CDPROCS_ |
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials