Sample Code
windows driver samples/ cdfs file system driver/ C++/ create.c/
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 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 | /*++ Copyright (c) 1989-2000 Microsoft Corporation Module Name: Create.c Abstract: This module implements the File Create routine for Cdfs called by the Fsd/Fsp dispatch routines. --*/ #include "CdProcs.h" // // The Bug check file id for this module // #define BugCheckFileId (CDFS_BUG_CHECK_CREATE) // // Local support routines // _When_(RelatedTypeOfOpen != UnopenedFileObject, _At_(RelatedCcb, _In_)) _When_(RelatedTypeOfOpen == UnopenedFileObject, _At_(RelatedCcb, _In_opt_)) _When_(RelatedTypeOfOpen != UnopenedFileObject, _At_(RelatedFileName, _In_)) _When_(RelatedTypeOfOpen == UnopenedFileObject, _At_(RelatedFileName, _In_opt_)) NTSTATUS CdNormalizeFileNames ( _Inout_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _In_ BOOLEAN OpenByFileId, _In_ BOOLEAN IgnoreCase, _In_ TYPE_OF_OPEN RelatedTypeOfOpen, PCCB RelatedCcb, PUNICODE_STRING RelatedFileName, _Inout_ PUNICODE_STRING FileName, _Inout_ PCD_NAME RemainingName ); _Requires_lock_held_(_Global_critical_region_) _Acquires_exclusive_lock_((*CurrentFcb)->FcbNonpaged->FcbResource) NTSTATUS CdOpenByFileId ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdOpenExistingFcb ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _Inout_ PFCB *CurrentFcb, _In_ TYPE_OF_OPEN TypeOfOpen, _In_ BOOLEAN IgnoreCase, _In_opt_ PCCB RelatedCcb ); _Requires_lock_held_(_Global_critical_region_) _Acquires_lock_((*CurrentFcb)->FcbNonpaged->FcbResource) NTSTATUS CdOpenDirectoryFromPathEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ PCD_NAME DirName, _In_ BOOLEAN IgnoreCase, _In_ BOOLEAN ShortNameMatch, _In_ PPATH_ENTRY PathEntry, _In_ BOOLEAN PerformUserOpen, _In_opt_ PCCB RelatedCcb ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdOpenFileFromFileContext ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ PCD_NAME FileName, _In_ BOOLEAN IgnoreCase, _In_ BOOLEAN ShortNameMatch, _In_ PFILE_ENUM_CONTEXT FileContext, _In_opt_ PCCB RelatedCcb ); _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCompleteFcbOpen ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ TYPE_OF_OPEN TypeOfOpen, _In_ ULONG UserCcbFlags, _In_ ACCESS_MASK DesiredAccess ); #ifdef ALLOC_PRAGMA #pragma alloc_text(PAGE, CdCommonCreate) #pragma alloc_text(PAGE, CdCompleteFcbOpen) #pragma alloc_text(PAGE, CdNormalizeFileNames) #pragma alloc_text(PAGE, CdOpenByFileId) #pragma alloc_text(PAGE, CdOpenDirectoryFromPathEntry) #pragma alloc_text(PAGE, CdOpenExistingFcb) #pragma alloc_text(PAGE, CdOpenFileFromFileContext) #endif
_Requires_lock_held_(_Global_critical_region_) NTSTATUS #pragma prefast(suppress:26165, "Esp:1153") CdCommonCreate ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ) /*++ Routine Description: This is the common routine for opening a file called by both the Fsp and Fsd threads. The file can be opened either by name or by file Id either with or without a relative name. The file name field in the file object passed to this routine contains either a unicode string or a 64 bit value which is the file Id. If this is not a Joliet disk then we will convert the unicode name to an Oem string in this routine. If there is a related file object with a name then we will already have converted that name to Oem. We will store the full name for the file in the file object on a successful open. We will allocate a larger buffer if necessary and combine the related and file object names. The only exception is the relative open when the related file object is for an OpenByFileId file. If we need to allocate a buffer for a case insensitive name then we allocate it at the tail of the buffer we will store into the file object. The upcased portion will begin immediately after the name defined by the FileName in the file object. Once we have the full name in the file object we don't want to split the name in the event of a retry. We use a flag in the IrpContext to indicate that the name has been split. Arguments: Irp - Supplies the Irp to process Return Value: NTSTATUS - This is the status from this open operation. --*/ { NTSTATUS Status = STATUS_SUCCESS; PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation( Irp ); PFILE_OBJECT FileObject; COMPOUND_PATH_ENTRY CompoundPathEntry = {0}; BOOLEAN CleanupCompoundPathEntry = FALSE; FILE_ENUM_CONTEXT FileContext = {0}; BOOLEAN CleanupFileContext = FALSE; BOOLEAN FoundEntry; PVCB Vcb; BOOLEAN OpenByFileId; BOOLEAN IgnoreCase; ULONG CreateDisposition; BOOLEAN ShortNameMatch; ULONG ShortNameDirentOffset; BOOLEAN VolumeOpen = FALSE; // // We will be acquiring and releasing file Fcb's as we move down the // directory tree during opens. At any time we need to know the deepest // point we have traversed down in the tree in case we need to cleanup // any structures created here. // // CurrentFcb - represents this point. If non-null it means we have // acquired it and need to release it in finally clause. // // NextFcb - represents the NextFcb to walk to but haven't acquired yet. // TYPE_OF_OPEN RelatedTypeOfOpen = UnopenedFileObject; PFILE_OBJECT RelatedFileObject; PCCB RelatedCcb = NULL; PFCB NextFcb; PFCB CurrentFcb = NULL; // // During the open we need to combine the related file object name // with the remaining name. We also may need to upcase the file name // in order to do a case-insensitive name comparison. We also need // to restore the name in the file object in the event that we retry // the request. We use the following string variables to manage the // name. We will can put these strings into either Unicode or Ansi // form. // // FileName - Pointer to name as currently stored in the file // object. We store the full name into the file object early in // the open operation. // // RelatedFileName - Pointer to the name in the related file object. // // RemainingName - String containing remaining name to parse. // // MatchingName - Address of name structure in FileContext which matched. // We need this to know whether we matched the long or short name. // PUNICODE_STRING FileName; PUNICODE_STRING RelatedFileName = NULL; CD_NAME RemainingName = {0}; CD_NAME FinalName; PCD_NAME MatchingName = NULL; PAGED_CODE(); // // If we were called with our file system device object instead of a // volume device object, just complete this request with STATUS_SUCCESS. // if (IrpContext->Vcb == NULL) { CdCompleteRequest( IrpContext, Irp, STATUS_SUCCESS ); return STATUS_SUCCESS; } // // Get create parameters from the Irp. // OpenByFileId = BooleanFlagOn( IrpSp->Parameters.Create.Options, FILE_OPEN_BY_FILE_ID ); IgnoreCase = !BooleanFlagOn( IrpSp->Flags, SL_CASE_SENSITIVE ); CreateDisposition = (IrpSp->Parameters.Create.Options >> 24) & 0x000000ff; // // Do some preliminary checks to make sure the operation is supported. // We fail in the following cases immediately. // // - Open a paging file. // - Open a target directory. // - Open a file with Eas. // - Create a file. // if (FlagOn( IrpSp->Flags, SL_OPEN_PAGING_FILE | SL_OPEN_TARGET_DIRECTORY) || (IrpSp->Parameters.Create.EaLength != 0) || (CreateDisposition == FILE_CREATE)) { CdCompleteRequest( IrpContext, Irp, STATUS_ACCESS_DENIED ); return STATUS_ACCESS_DENIED; } #if (NTDDI_VERSION >= NTDDI_WIN7) // // CDFS does not support FILE_OPEN_REQUIRING_OPLOCK // if (FlagOn( IrpSp->Parameters.Create.Options, FILE_OPEN_REQUIRING_OPLOCK )) { CdCompleteRequest( IrpContext, Irp, STATUS_INVALID_PARAMETER ); return STATUS_INVALID_PARAMETER; } #endif // // Copy the Vcb to a local. Assume the starting directory is the root. // Vcb = IrpContext->Vcb; NextFcb = Vcb->RootIndexFcb; // // Reference our input parameters to make things easier // FileObject = IrpSp->FileObject; RelatedFileObject = NULL; FileName = &FileObject->FileName; // // Set up the file object's Vpb pointer in case anything happens. // This will allow us to get a reasonable pop-up. // if ((FileObject->RelatedFileObject != NULL) && !OpenByFileId) { RelatedFileObject = FileObject->RelatedFileObject; FileObject->Vpb = RelatedFileObject->Vpb; RelatedTypeOfOpen = CdDecodeFileObject( IrpContext, RelatedFileObject, &NextFcb, &RelatedCcb ); // // Fail the request if this is not a user file object. // if (RelatedTypeOfOpen < UserVolumeOpen) { CdCompleteRequest( IrpContext, Irp, STATUS_INVALID_PARAMETER ); return STATUS_INVALID_PARAMETER; } // // Remember the name in the related file object. // RelatedFileName = &RelatedFileObject->FileName; } // // If we haven't initialized the names then make sure the strings are valid. // If this an OpenByFileId then verify the file id buffer. // // After this routine returns we know that the full name is in the // FileName buffer and the buffer will hold the upcased portion // of the name yet to parse immediately after the full name in the // buffer. Any trailing backslash has been removed and the flag // in the IrpContext will indicate whether we removed the // backslash. // Status = CdNormalizeFileNames( IrpContext, Vcb, OpenByFileId, IgnoreCase, RelatedTypeOfOpen, RelatedCcb, RelatedFileName, FileName, &RemainingName ); // // Return the error code if not successful. // if (!NT_SUCCESS( Status )) { CdCompleteRequest( IrpContext, Irp, Status ); return Status; } // // We want to acquire the Vcb. Exclusively for a volume open, shared otherwise. // The file name is empty for a volume open. // if ((FileName->Length == 0) && (RelatedTypeOfOpen <= UserVolumeOpen) && !OpenByFileId) { VolumeOpen = TRUE; CdAcquireVcbExclusive( IrpContext, Vcb, FALSE ); } else { CdAcquireVcbShared( IrpContext, Vcb, FALSE ); } // // Use a try-finally to facilitate cleanup. // try { // // Verify that the Vcb is not in an unusable condition. This routine // will raise if not usable. // CdVerifyVcb( IrpContext, Vcb ); // // If the Vcb is locked then we cannot open another file // if (FlagOn( Vcb->VcbState, VCB_STATE_LOCKED )) { try_return( Status = STATUS_ACCESS_DENIED ); } // // If we are opening this file by FileId then process this immediately // and exit. // if (OpenByFileId) { // // We only allow Dasd opens of audio disks. Fail this request at // this point. // if (FlagOn( Vcb->VcbState, VCB_STATE_AUDIO_DISK )) { try_return( Status = STATUS_INVALID_DEVICE_REQUEST ); } // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } // // Make sure we can wait for this request. // if (!FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT )) { CdRaiseStatus( IrpContext, STATUS_CANT_WAIT ); } try_return( Status = CdOpenByFileId( IrpContext, IrpSp, Vcb, &CurrentFcb )); } // // If we are opening this volume Dasd then process this immediately // and exit. // if (VolumeOpen) { // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } // // If they wanted to open a directory, surprise. // if (FlagOn( IrpSp->Parameters.Create.Options, FILE_DIRECTORY_FILE )) { try_return( Status = STATUS_NOT_A_DIRECTORY ); } // // Acquire the Fcb first. // CurrentFcb = Vcb->VolumeDasdFcb; CdAcquireFcbExclusive( IrpContext, CurrentFcb, FALSE ); try_return( Status = CdOpenExistingFcb( IrpContext, IrpSp, &CurrentFcb, UserVolumeOpen, FALSE, NULL )); } // // At this point CurrentFcb points to the deepest Fcb for this open // in the tree. Let's acquire this Fcb to keep it from being deleted // beneath us. // CdAcquireFcbExclusive( IrpContext, NextFcb, FALSE ); CurrentFcb = NextFcb; // // Do a prefix search if there is more of the name to parse. // if (RemainingName.FileName.Length != 0) { // // Do the prefix search to find the longest matching name. // CdFindPrefix( IrpContext, &CurrentFcb, &RemainingName.FileName, IgnoreCase ); } // // If the remaining name length is zero then we have found our // target. // if (RemainingName.FileName.Length == 0) { // // If this is a file so verify the user didn't want to open // a directory. // if (SafeNodeType( CurrentFcb ) == CDFS_NTC_FCB_DATA) { if (FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_TRAIL_BACKSLASH ) || FlagOn( IrpSp->Parameters.Create.Options, FILE_DIRECTORY_FILE )) { try_return( Status = STATUS_NOT_A_DIRECTORY ); } // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } try_return( Status = CdOpenExistingFcb( IrpContext, IrpSp, &CurrentFcb, UserFileOpen, IgnoreCase, RelatedCcb )); // // This is a directory. Verify the user didn't want to open // as a file. // } else if (FlagOn( IrpSp->Parameters.Create.Options, FILE_NON_DIRECTORY_FILE )) { try_return( Status = STATUS_FILE_IS_A_DIRECTORY ); // // Open the file as a directory. // } else { // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } try_return( Status = CdOpenExistingFcb( IrpContext, IrpSp, &CurrentFcb, UserDirectoryOpen, IgnoreCase, RelatedCcb )); } } // // We have more work to do. We have a starting Fcb which we own shared. // We also have the remaining name to parse. Walk through the name // component by component looking for the full name. // // // Our starting Fcb better be a directory. // if (!FlagOn( CurrentFcb->FileAttributes, FILE_ATTRIBUTE_DIRECTORY )) { try_return( Status = STATUS_OBJECT_PATH_NOT_FOUND ); } // // If we can't wait then post this request. // if (!FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT )) { CdRaiseStatus( IrpContext, STATUS_CANT_WAIT ); } // // Make sure the final name has no version string. // FinalName.VersionString.Length = 0; while (TRUE) { ShortNameMatch = FALSE; // // Split off the next component from the name. // CdDissectName( IrpContext, &RemainingName.FileName, &FinalName.FileName ); // // Go ahead and look this entry up in the path table. // CdInitializeCompoundPathEntry( IrpContext, &CompoundPathEntry ); CleanupCompoundPathEntry = TRUE; FoundEntry = CdFindPathEntry( IrpContext, CurrentFcb, &FinalName, IgnoreCase, &CompoundPathEntry ); // // If we didn't find the entry then check if the current name // is a possible short name. // if (!FoundEntry) { ShortNameDirentOffset = CdShortNameDirentOffset( IrpContext, &FinalName.FileName ); // // If there is an embedded short name offset then look for the // matching long name in the directory. // if (ShortNameDirentOffset != MAXULONG) { if (CleanupFileContext) { CdCleanupFileContext( IrpContext, &FileContext ); } CdInitializeFileContext( IrpContext, &FileContext ); CleanupFileContext = TRUE; FoundEntry = CdFindFileByShortName( IrpContext, CurrentFcb, &FinalName, IgnoreCase, ShortNameDirentOffset, &FileContext ); // // If we found an entry and it is a directory then look // this up in the path table. // if (FoundEntry) { ShortNameMatch = TRUE; if (FlagOn( FileContext.InitialDirent->Dirent.DirentFlags, CD_ATTRIBUTE_DIRECTORY )) { CdCleanupCompoundPathEntry( IrpContext, &CompoundPathEntry ); CdInitializeCompoundPathEntry( IrpContext, &CompoundPathEntry ); FoundEntry = CdFindPathEntry( IrpContext, CurrentFcb, &FileContext.InitialDirent->Dirent.CdCaseFileName, IgnoreCase, &CompoundPathEntry ); // // We better find this entry. // if (!FoundEntry) { CdRaiseStatus( IrpContext, STATUS_FILE_CORRUPT_ERROR ); } // // Upcase the name with the short name if case // insensitive. // if (IgnoreCase) { CdUpcaseName( IrpContext, &FinalName, &FinalName ); } // // We found a matching file. If we are at the last // entry then break out of the loop and open the // file below. Otherwise we return an error. // } else if (RemainingName.FileName.Length == 0) { // // Break out of the loop. We will process the dirent // below. // MatchingName = &FileContext.ShortName; break ; } else { try_return( Status = STATUS_OBJECT_PATH_NOT_FOUND ); } } } // // We didn't find the name in either the path table or as // a short name in a directory. If the remaining name // length is zero then break out of the loop to search // the directory. // if (!FoundEntry) { if (RemainingName.FileName.Length == 0) { break ; // // Otherwise this path could not be cracked. // } else { try_return( Status = STATUS_OBJECT_PATH_NOT_FOUND ); } } } // // If this is an ignore case open then copy the exact case // in the file object name. If it was a short name match then // the name must be upcase already. // if (IgnoreCase && !ShortNameMatch) { RtlCopyMemory( FinalName.FileName.Buffer, CompoundPathEntry.PathEntry.CdDirName.FileName.Buffer, CompoundPathEntry.PathEntry.CdDirName.FileName.Length ); } // // If we have found the last component then open this as a directory // and return to our caller. // if (RemainingName.FileName.Length == 0) { if (FlagOn( IrpSp->Parameters.Create.Options, FILE_NON_DIRECTORY_FILE )) { try_return( Status = STATUS_FILE_IS_A_DIRECTORY ); } // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } try_return( Status = CdOpenDirectoryFromPathEntry( IrpContext, IrpSp, Vcb, &CurrentFcb, &FinalName, IgnoreCase, ShortNameMatch, &CompoundPathEntry.PathEntry, TRUE, RelatedCcb )); } // // Otherwise open an Fcb for this intermediate index Fcb. // CdOpenDirectoryFromPathEntry( IrpContext, IrpSp, Vcb, &CurrentFcb, &FinalName, IgnoreCase, ShortNameMatch, &CompoundPathEntry.PathEntry, FALSE, NULL ); CdCleanupCompoundPathEntry( IrpContext, &CompoundPathEntry ); CleanupCompoundPathEntry = FALSE; } // // We need to scan the current directory for a matching file name // if we don't already have one. // if (!FoundEntry) { if (CleanupFileContext) { CdCleanupFileContext( IrpContext, &FileContext ); } CdInitializeFileContext( IrpContext, &FileContext ); CleanupFileContext = TRUE; // // Split our search name into separate components. // CdConvertNameToCdName( IrpContext, &FinalName ); FoundEntry = CdFindFile( IrpContext, CurrentFcb, &FinalName, IgnoreCase, &FileContext, &MatchingName ); } // // If we didn't find a match then check if the name is invalid to // determine which error code to return. // if (!FoundEntry) { if ((CreateDisposition == FILE_OPEN) || (CreateDisposition == FILE_OVERWRITE)) { try_return( Status = STATUS_OBJECT_NAME_NOT_FOUND ); } // // Any other operation return STATUS_ACCESS_DENIED. // try_return( Status = STATUS_ACCESS_DENIED ); } // // If this is a directory then the disk is corrupt because it wasn't // in the Path Table. // if (FlagOn( FileContext.InitialDirent->Dirent.Flags, CD_ATTRIBUTE_DIRECTORY )) { CdRaiseStatus( IrpContext, STATUS_DISK_CORRUPT_ERROR ); } // // Make sure our opener didn't want a directory. // if (FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_TRAIL_BACKSLASH ) || FlagOn( IrpSp->Parameters.Create.Options, FILE_DIRECTORY_FILE )) { try_return( Status = STATUS_NOT_A_DIRECTORY ); } // // The only create disposition we allow is OPEN. // if ((CreateDisposition != FILE_OPEN) && (CreateDisposition != FILE_OPEN_IF)) { try_return( Status = STATUS_ACCESS_DENIED ); } // // If this is an ignore case open then copy the exact case // in the file object name. Any version portion should // already be upcased. // if (IgnoreCase) { RtlCopyMemory( FinalName.FileName.Buffer, MatchingName->FileName.Buffer, MatchingName->FileName.Length ); } // // Open the file using the file context. We already have the // first and last dirents. // try_return( Status = CdOpenFileFromFileContext( IrpContext, IrpSp, Vcb, &CurrentFcb, &FinalName, IgnoreCase, ( BOOLEAN ) (MatchingName == &FileContext.ShortName), &FileContext, RelatedCcb )); try_exit: NOTHING; } finally { // // Cleanup the PathEntry if initialized. // if (CleanupCompoundPathEntry) { CdCleanupCompoundPathEntry( IrpContext, &CompoundPathEntry ); } // // Cleanup the FileContext if initialized. // if (CleanupFileContext) { CdCleanupFileContext( IrpContext, &FileContext ); } // // The result of this open could be success, pending or some error // condition. // if (AbnormalTermination()) { // // In the error path we start by calling our teardown routine if we // have a CurrentFcb and its not the volume Dasd Fcb. // if ((CurrentFcb != NULL) && (CurrentFcb != Vcb->VolumeDasdFcb)) { BOOLEAN RemovedFcb; CdTeardownStructures( IrpContext, CurrentFcb, &RemovedFcb ); if (RemovedFcb) { CurrentFcb = NULL; } } // // No need to complete the request. // IrpContext = NULL; Irp = NULL; // // If we posted this request through the oplock package we need // to show that there is no reason to complete the request. // } else if (Status == STATUS_PENDING) { IrpContext = NULL; Irp = NULL; } // // Release the Current Fcb if still acquired. // if (CurrentFcb != NULL) { _Analysis_assume_lock_held_(CurrentFcb->FcbNonpaged->FcbResource); CdReleaseFcb( IrpContext, CurrentFcb ); } // // Release the Vcb. // CdReleaseVcb( IrpContext, Vcb ); // // Call our completion routine. It will handle the case where either // the Irp and/or IrpContext are gone. // CdCompleteRequest( IrpContext, Irp, Status ); } return Status; }
// // Local support routine // _When_(RelatedTypeOfOpen != UnopenedFileObject, _At_(RelatedCcb, _In_)) _When_(RelatedTypeOfOpen == UnopenedFileObject, _At_(RelatedCcb, _In_opt_)) _When_(RelatedTypeOfOpen != UnopenedFileObject, _At_(RelatedFileName, _In_)) _When_(RelatedTypeOfOpen == UnopenedFileObject, _At_(RelatedFileName, _In_opt_)) NTSTATUS CdNormalizeFileNames ( _Inout_ PIRP_CONTEXT IrpContext, _In_ PVCB Vcb, _In_ BOOLEAN OpenByFileId, _In_ BOOLEAN IgnoreCase, _In_ TYPE_OF_OPEN RelatedTypeOfOpen, PCCB RelatedCcb, PUNICODE_STRING RelatedFileName, _Inout_ PUNICODE_STRING FileName, _Inout_ PCD_NAME RemainingName ) /*++ Routine Description: This routine is called to store the full name and upcased name into the filename buffer. We only upcase the portion yet to parse. We also check for a trailing backslash and lead-in double backslashes. This routine also verifies the mode of the related open against the name currently in the filename. Arguments: Vcb - Vcb for this volume. OpenByFileId - Indicates if the filename should be a 64 bit FileId. IgnoreCase - Indicates if this open is a case-insensitive operation. RelatedTypeOfOpen - Indicates the type of the related file object. RelatedCcb - Ccb for the related open. Ignored if no relative open. RelatedFileName - FileName buffer for related open. Ignored if no relative open. FileName - FileName to update in this routine. The name should either be a 64-bit FileId or a Unicode string. RemainingName - Name with the remaining portion of the name. This will begin after the related name and any separator. For a non-relative open we also step over the initial separator. Return Value: NTSTATUS - STATUS_SUCCESS if the names are OK, appropriate error code otherwise. --*/ { ULONG RemainingNameLength = 0; ULONG RelatedNameLength = 0; ULONG SeparatorLength = 0; ULONG BufferLength; UNICODE_STRING NewFileName; PAGED_CODE(); // // If this is the first pass then we need to build the full name and // check for name compatibility. // if (!FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_FULL_NAME )) { // // Deal with the regular file name case first. // if (!OpenByFileId) { // // This is here because the Win32 layer can't avoid sending me double // beginning backslashes. // if ((FileName->Length > sizeof ( WCHAR )) && (FileName->Buffer[1] == L '\\' ) && (FileName->Buffer[0] == L '\\' )) { // // If there are still two beginning backslashes, the name is bogus. // if ((FileName->Length > 2 * sizeof ( WCHAR )) && (FileName->Buffer[2] == L '\\' )) { return STATUS_OBJECT_NAME_INVALID; } // // Slide the name down in the buffer. // FileName->Length -= sizeof ( WCHAR ); RtlMoveMemory( FileName->Buffer, FileName->Buffer + 1, FileName->Length ); } // // Check for a trailing backslash. Don't strip off if only character // in the full name or for relative opens where this is illegal. // if (((FileName->Length > sizeof ( WCHAR )) || ((FileName->Length == sizeof ( WCHAR )) && (RelatedTypeOfOpen == UserDirectoryOpen))) && (FileName->Buffer[ (FileName->Length/2) - 1 ] == L '\\' )) { SetFlag( IrpContext->Flags, IRP_CONTEXT_FLAG_TRAIL_BACKSLASH ); FileName->Length -= sizeof ( WCHAR ); } // // Remember the length we need for this portion of the name. // RemainingNameLength = FileName->Length; // // If this is a related file object then we verify the compatibility // of the name in the file object with the relative file object. // if (RelatedTypeOfOpen != UnopenedFileObject) { // // If the filename length was zero then it must be legal. // If there are characters then check with the related // type of open. // if (FileName->Length != 0) { // // The name length must always be zero for a volume open. // if (RelatedTypeOfOpen <= UserVolumeOpen) { return STATUS_INVALID_PARAMETER; // // The remaining name cannot begin with a backslash. // } else if (FileName->Buffer[0] == L '\\' ) { return STATUS_INVALID_PARAMETER; // // If the related file is a user file then there // is no file with this path. // } else if (RelatedTypeOfOpen == UserFileOpen) { return STATUS_OBJECT_PATH_NOT_FOUND; } } // // Remember the length of the related name when building // the full name. We leave the RelatedNameLength and // SeparatorLength at zero if the relative file is opened // by Id. // if (!FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_BY_ID )) { // // Add a separator if the name length is non-zero // unless the relative Fcb is at the root. // if ((FileName->Length != 0) && (RelatedCcb->Fcb != Vcb->RootIndexFcb)) { SeparatorLength = sizeof ( WCHAR ); } RelatedNameLength = RelatedFileName->Length; } // // The full name is already in the filename. It must either // be length 0 or begin with a backslash. // } else if (FileName->Length != 0) { if (FileName->Buffer[0] != L '\\' ) { return STATUS_INVALID_PARAMETER; } // // We will want to trim the leading backslash from the // remaining name we return. // RemainingNameLength -= sizeof ( WCHAR ); SeparatorLength = sizeof ( WCHAR ); } // // Now see if the buffer is large enough to hold the full name. // BufferLength = RelatedNameLength + SeparatorLength + RemainingNameLength; // // Check for an overflow of the maximum filename size. // if (BufferLength > MAXUSHORT) { return STATUS_INVALID_PARAMETER; } // // Now see if we need to allocate a new buffer. // if (FileName->MaximumLength < BufferLength) { NewFileName.Buffer = FsRtlAllocatePoolWithTag( CdPagedPool, BufferLength, TAG_FILE_NAME ); NewFileName.MaximumLength = ( USHORT ) BufferLength; } else { NewFileName.Buffer = FileName->Buffer; NewFileName.MaximumLength = FileName->MaximumLength; } // // If there is a related name then we need to slide the remaining bytes up and // insert the related name. Otherwise the name is in the correct position // already. // if (RelatedNameLength != 0) { // // Store the remaining name in its correct position. // if (RemainingNameLength != 0) { RtlMoveMemory( Add2Ptr( NewFileName.Buffer, RelatedNameLength + SeparatorLength, PVOID ), FileName->Buffer, RemainingNameLength ); } RtlCopyMemory( NewFileName.Buffer, RelatedFileName->Buffer, RelatedNameLength ); // // Add the separator if needed. // if (SeparatorLength != 0) { *(Add2Ptr( NewFileName.Buffer, RelatedNameLength, PWCHAR )) = L '\\' ; } // // Update the filename value we got from the user. // if (NewFileName.Buffer != FileName->Buffer) { if (FileName->Buffer != NULL) { CdFreePool( &FileName->Buffer ); } FileName->Buffer = NewFileName.Buffer; FileName->MaximumLength = NewFileName.MaximumLength; } // // Copy the name length to the user's filename. // FileName->Length = ( USHORT ) (RelatedNameLength + SeparatorLength + RemainingNameLength); } // // Now update the remaining name to parse. // RemainingName->FileName.MaximumLength = RemainingName->FileName.Length = ( USHORT ) RemainingNameLength; RemainingName->VersionString.Length = 0; RemainingName->FileName.Buffer = Add2Ptr( FileName->Buffer, RelatedNameLength + SeparatorLength, PWCHAR ); // // Upcase the name if necessary. // if (IgnoreCase && (RemainingNameLength != 0)) { CdUpcaseName( IrpContext, RemainingName, RemainingName ); } // // Do a quick check to make sure there are no wildcards. // #pragma prefast(push) #pragma prefast(suppress:26000, "RemainingName->FileName.Buffer = FileName.Buffer + (RelatedNameLength + SeparatorLength); FileName.MaximumLength < (RelatedNameLength + SeparatorLength + RemainingNameLength).") if (FsRtlDoesNameContainWildCards( &RemainingName->FileName )) { #pragma prefast(pop) return STATUS_OBJECT_NAME_INVALID; } // // For the open by file Id case we verify the name really contains // a 64 bit value. // } else { // // Check for validity of the buffer. // if (FileName->Length != sizeof ( FILE_ID )) { return STATUS_INVALID_PARAMETER; } } SetFlag( IrpContext->Flags, IRP_CONTEXT_FLAG_FULL_NAME ); // // If we are in the retry path then the full name is already in the // file object name. If this is a case-sensitive operation then // we need to upcase the name from the end of any related file name already stored // there. // } else { // // Assume there is no relative name. // RemainingName->FileName = *FileName; RemainingName->VersionString.Length = 0; // // Nothing to do if the name length is zero. // if (RemainingName->FileName.Length != 0) { // // If there is a relative name then we need to walk past it. // if (RelatedTypeOfOpen != UnopenedFileObject) { // // Nothing to walk past if the RelatedCcb is opened by FileId. // if (!FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_BY_ID )) { // // Related file name is a proper prefix of the full name. // We step over the related name and if we are then // pointing at a separator character we step over that. // RemainingName->FileName.Buffer = Add2Ptr( RemainingName->FileName.Buffer, RelatedFileName->Length, PWCHAR ); RemainingName->FileName.Length -= RelatedFileName->Length; } } // // If we are pointing at a separator character then step past that. // if (RemainingName->FileName.Length != 0) { if (*(RemainingName->FileName.Buffer) == L '\\' ) { RemainingName->FileName.Buffer = Add2Ptr( RemainingName->FileName.Buffer, sizeof ( WCHAR ), PWCHAR ); RemainingName->FileName.Length -= sizeof ( WCHAR ); } } } // // Upcase the name if necessary. // if (IgnoreCase && (RemainingName->FileName.Length != 0)) { CdUpcaseName( IrpContext, RemainingName, RemainingName ); } } #pragma prefast(push) #pragma prefast(suppress:26030, "RemainingName->FileName.Buffer = FileName.Buffer + (RelatedNameLength + SeparatorLength); FileName.MaximumLength < (RelatedNameLength + SeparatorLength + RemainingNameLength).") return STATUS_SUCCESS; #pragma prefast(pop) }
// // Local support routine // _Requires_lock_held_(_Global_critical_region_) _Acquires_exclusive_lock_((*CurrentFcb)->FcbNonpaged->FcbResource) NTSTATUS CdOpenByFileId ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb ) /*++ Routine Description: This routine is called to open a file by the FileId. The file Id is in the FileObject name buffer and has been verified to be 64 bits. We extract the Id number and then check to see whether we are opening a file or directory and compare that with the create options. If this generates no error then optimistically look up the Fcb in the Fcb Table. If we don't find the Fcb then we need to carefully verify there is a file at this offset. First check whether the Parent Fcb is in the table. If not then lookup the parent at the path table offset given by file ID. If found then build the Fcb from this entry and store the new Fcb in the tree. We know have the parent Fcb. Do a directory scan to find the dirent at the given offset in this stream. This must point to the first entry of a valid file. Finally we call our worker routine to complete the open on this Fcb. Arguments: IrpSp - Stack location within the create Irp. Vcb - Vcb for this volume. CurrentFcb - Address to store the Fcb for this open. We only store the CurrentFcb here when we have acquired it so our caller knows to free or deallocate it. Return Value: NTSTATUS - Status indicating the result of the operation. --*/ { NTSTATUS Status = STATUS_ACCESS_DENIED; BOOLEAN UnlockVcb = FALSE; BOOLEAN Found; ULONG StreamOffset; NODE_TYPE_CODE NodeTypeCode; TYPE_OF_OPEN TypeOfOpen; FILE_ENUM_CONTEXT FileContext; BOOLEAN CleanupFileContext = FALSE; COMPOUND_PATH_ENTRY CompoundPathEntry = {0}; BOOLEAN CleanupCompoundPathEntry = FALSE; FILE_ID FileId; FILE_ID ParentFileId; PFCB NextFcb; PAGED_CODE(); // // Extract the FileId from the FileObject. // RtlCopyMemory( &FileId, IrpSp->FileObject->FileName.Buffer, sizeof ( FILE_ID )); // // Use a try-finally to facilitate cleanup. // try { // // Go ahead and figure out the TypeOfOpen and NodeType. We can // get these from the input FileId. // if (CdFidIsDirectory( FileId )) { TypeOfOpen = UserDirectoryOpen; NodeTypeCode = CDFS_NTC_FCB_INDEX; // // If the offset isn't zero then the file Id is bad. // if (CdQueryFidDirentOffset( FileId ) != 0) { try_return( Status = STATUS_INVALID_PARAMETER ); } } else { TypeOfOpen = UserFileOpen; NodeTypeCode = CDFS_NTC_FCB_DATA; } // // Acquire the Vcb and check if there is already an Fcb. // If not we will need to carefully verify the Fcb. // We will post the request if we don't find the Fcb and this // request can't wait. // CdLockVcb( IrpContext, Vcb ); UnlockVcb = TRUE; NextFcb = CdLookupFcbTable( IrpContext, Vcb, FileId ); if (NextFcb == NULL) { // // Get the path table offset from the file id. // StreamOffset = CdQueryFidPathTableOffset( FileId ); // // Build the parent FileId for this and try looking it // up in the PathTable. // CdSetFidDirentOffset( ParentFileId, 0 ); CdSetFidPathTableOffset( ParentFileId, StreamOffset ); CdFidSetDirectory( ParentFileId ); NextFcb = CdLookupFcbTable( IrpContext, Vcb, ParentFileId ); // // If not present then walk through the PathTable to this point. // if (NextFcb == NULL) { CdUnlockVcb( IrpContext, Vcb ); UnlockVcb = FALSE; // // Check that the path table offset lies within the path // table. // if (StreamOffset > Vcb->PathTableFcb->FileSize.LowPart) { try_return( Status = STATUS_INVALID_PARAMETER ); } CdInitializeCompoundPathEntry( IrpContext, &CompoundPathEntry ); CleanupCompoundPathEntry = TRUE; // // Start at the first entry in the PathTable. // CdLookupPathEntry( IrpContext, Vcb->PathTableFcb->StreamOffset, 1, TRUE, &CompoundPathEntry ); // // Continue looking until we have passed our target offset. // while (TRUE) { // // Move to the next entry. // Found = CdLookupNextPathEntry( IrpContext, &CompoundPathEntry.PathContext, &CompoundPathEntry.PathEntry ); // // If we didn't find the entry or are beyond it then the // input Id is invalid. // if (!Found || (CompoundPathEntry.PathEntry.PathTableOffset > StreamOffset)) { try_return( Status = STATUS_INVALID_PARAMETER ); } } // // If the FileId specified a directory then we have found // the entry. Make sure our caller wanted to open a directory. // if ((TypeOfOpen == UserDirectoryOpen) && FlagOn( IrpSp->Parameters.Create.Options, FILE_NON_DIRECTORY_FILE )) { try_return( Status = STATUS_FILE_IS_A_DIRECTORY ); } // // Lock the Vcb and create the Fcb if necessary. // CdLockVcb( IrpContext, Vcb ); UnlockVcb = TRUE; NextFcb = CdCreateFcb( IrpContext, ParentFileId, NodeTypeCode, &Found ); // // It's possible that someone got in here ahead of us. // if (!Found) { CdInitializeFcbFromPathEntry( IrpContext, NextFcb, NULL, &CompoundPathEntry.PathEntry ); } // // If the user wanted to open a directory then we have found // it. Store this Fcb into the CurrentFcb and skip the // directory scan. // if (TypeOfOpen == UserDirectoryOpen) { *CurrentFcb = NextFcb; NextFcb = NULL; } } // // Perform the directory scan if we don't already have our target. // if (NextFcb != NULL) { // // Acquire the parent. We currently own the Vcb lock so // do this without waiting first. // if (!CdAcquireFcbExclusive( IrpContext, NextFcb, TRUE )) { NextFcb->FcbReference += 1; CdUnlockVcb( IrpContext, Vcb ); CdAcquireFcbExclusive( IrpContext, NextFcb, FALSE ); CdLockVcb( IrpContext, Vcb ); NextFcb->FcbReference -= 1; CdUnlockVcb( IrpContext, Vcb ); } else { CdUnlockVcb( IrpContext, Vcb ); } UnlockVcb = FALSE; // // Set up the CurrentFcb pointers. We know there was // no previous parent in this case. // *CurrentFcb = NextFcb; // // Calculate the offset in the stream. // StreamOffset = CdQueryFidDirentOffset( FileId ); // // Create the stream file if it doesn't exist. This will update // the Fcb with the size from the self entry. // CdVerifyOrCreateDirStreamFile( IrpContext, NextFcb); // // If our offset is beyond the end of the directory then the // FileId is invalid. // if (StreamOffset > NextFcb->FileSize.LowPart) { try_return( Status = STATUS_INVALID_PARAMETER ); } // // Otherwise position ourselves at the self entry and walk // through dirent by dirent until this location is found. // CdInitializeFileContext( IrpContext, &FileContext ); CdLookupInitialFileDirent( IrpContext, NextFcb, &FileContext, NextFcb->StreamOffset ); CleanupFileContext = TRUE; while (TRUE) { // // Move to the first entry of the next file. // Found = CdLookupNextInitialFileDirent( IrpContext, NextFcb, &FileContext ); // // If we didn't find the entry or are beyond it then the // input Id is invalid. // if (!Found || (FileContext.InitialDirent->Dirent.DirentOffset > StreamOffset)) { try_return( Status = STATUS_INVALID_PARAMETER ); } } // // This better not be a directory. Directory FileIds must // refer to the self entry for directories. // if (FlagOn( FileContext.InitialDirent->Dirent.DirentFlags, CD_ATTRIBUTE_DIRECTORY )) { try_return( Status = STATUS_INVALID_PARAMETER ); } // // Check that our caller wanted to open a file. // if (FlagOn( IrpSp->Parameters.Create.Options, FILE_DIRECTORY_FILE )) { try_return( Status = STATUS_NOT_A_DIRECTORY ); } // // Otherwise we want to collect all of the dirents for this file // and create an Fcb with this. // CdLookupLastFileDirent( IrpContext, NextFcb, &FileContext ); CdLockVcb( IrpContext, Vcb ); UnlockVcb = TRUE; NextFcb = CdCreateFcb( IrpContext, FileId, NodeTypeCode, &Found ); // // It's possible that someone has since created this Fcb since we // first checked. If so then can simply use this. Otherwise // we need to initialize a new Fcb and attach it to our parent // and insert it into the Fcb Table. // if (!Found) { CdInitializeFcbFromFileContext( IrpContext, NextFcb, *CurrentFcb, &FileContext ); } } // // We have the Fcb. Check that the type of the file is compatible with // the desired type of file to open. // } else { if (FlagOn( NextFcb->FileAttributes, FILE_ATTRIBUTE_DIRECTORY )) { if (FlagOn( IrpSp->Parameters.Create.Options, FILE_NON_DIRECTORY_FILE )) { try_return( Status = STATUS_FILE_IS_A_DIRECTORY ); } } else if (FlagOn( IrpSp->Parameters.Create.Options, FILE_DIRECTORY_FILE )) { try_return( Status = STATUS_NOT_A_DIRECTORY ); } } // // If we have a the previous Fcb and have inserted the next Fcb into // the Fcb Table. It is safe to release the current Fcb if present // since it is referenced through the child Fcb. // if (*CurrentFcb != NULL) { CdReleaseFcb( IrpContext, *CurrentFcb ); } // // We now know the Fcb and currently hold the Vcb lock. // Try to acquire this Fcb without waiting. Otherwise we // need to reference it, drop the Vcb, acquire the Fcb and // then dereference the Fcb. // if (!CdAcquireFcbExclusive( IrpContext, NextFcb, TRUE )) { NextFcb->FcbReference += 1; CdUnlockVcb( IrpContext, Vcb ); #pragma prefast(suppress: 28103) CdAcquireFcbExclusive( IrpContext, NextFcb, FALSE ); CdLockVcb( IrpContext, Vcb ); NextFcb->FcbReference -= 1; CdUnlockVcb( IrpContext, Vcb ); } else { CdUnlockVcb( IrpContext, Vcb ); } UnlockVcb = FALSE; // // Move to this Fcb. // *CurrentFcb = NextFcb; // Lock object is acquired using internal state _Analysis_suppress_lock_checking_(NextFcb->FcbNonpaged->FcbResource); // // Check the requested access on this Fcb. // if (!CdIllegalFcbAccess( IrpContext, TypeOfOpen, IrpSp->Parameters.Create.SecurityContext->DesiredAccess )) { // // Call our worker routine to complete the open. // Status = CdCompleteFcbOpen( IrpContext, IrpSp, Vcb, CurrentFcb, TypeOfOpen, CCB_FLAG_OPEN_BY_ID, IrpSp->Parameters.Create.SecurityContext->DesiredAccess ); } try_exit: NOTHING; } finally { if (UnlockVcb) { CdUnlockVcb( IrpContext, Vcb ); } if (CleanupFileContext) { CdCleanupFileContext( IrpContext, &FileContext ); } if (CleanupCompoundPathEntry) { CdCleanupCompoundPathEntry( IrpContext, &CompoundPathEntry ); } } return Status; }
// // Local support routine // _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdOpenExistingFcb ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _Inout_ PFCB *CurrentFcb, _In_ TYPE_OF_OPEN TypeOfOpen, _In_ BOOLEAN IgnoreCase, _In_opt_ PCCB RelatedCcb ) /*++ Routine Description: This routine is called to open an Fcb which is already in the Fcb table. We will verify the access to the file and then call our worker routine to perform the final operations. Arguments: IrpSp - Pointer to the stack location for this open. CurrentFcb - Address of Fcb to open. We will clear this if the Fcb is released here. TypeOfOpen - Indicates whether we are opening a file, directory or volume. IgnoreCase - Indicates if this open is case-insensitive. RelatedCcb - Ccb for related file object if relative open. We use this when setting the Ccb flags for this open. It will tell us whether the name currently in the file object is relative or absolute. Return Value: NTSTATUS - Status indicating the result of the operation. --*/ { ULONG CcbFlags = 0; NTSTATUS Status = STATUS_ACCESS_DENIED; PAGED_CODE(); // // Check that the desired access is legal. // if (!CdIllegalFcbAccess( IrpContext, TypeOfOpen, IrpSp->Parameters.Create.SecurityContext->DesiredAccess )) { // // Set the Ignore case. // if (IgnoreCase) { SetFlag( CcbFlags, CCB_FLAG_IGNORE_CASE ); } // // Check the related Ccb to see if this was an OpenByFileId and // whether there was a version. // if (ARGUMENT_PRESENT( RelatedCcb )) { SetFlag( CcbFlags, FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_WITH_VERSION )); if (FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_BY_ID | CCB_FLAG_OPEN_RELATIVE_BY_ID )) { SetFlag( CcbFlags, CCB_FLAG_OPEN_RELATIVE_BY_ID ); } } // // Call our worker routine to complete the open. // Status = CdCompleteFcbOpen( IrpContext, IrpSp, (*CurrentFcb)->Vcb, CurrentFcb, TypeOfOpen, CcbFlags, IrpSp->Parameters.Create.SecurityContext->DesiredAccess ); } return Status; }
// // Local support routine // _Requires_lock_held_(_Global_critical_region_) _Acquires_lock_((*CurrentFcb)->FcbNonpaged->FcbResource) NTSTATUS CdOpenDirectoryFromPathEntry ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ PCD_NAME DirName, _In_ BOOLEAN IgnoreCase, _In_ BOOLEAN ShortNameMatch, _In_ PPATH_ENTRY PathEntry, _In_ BOOLEAN PerformUserOpen, _In_opt_ PCCB RelatedCcb ) /*++ Routine Description: This routine is called to open a directory where the directory was found in the path table. This routine is called in the case where this is the file to open for the user and where this is an intermediate node in the full path to open. We first check that the desired access is legal for a directory. Then we construct the FileId for this and do a check to see if it is the Fcb Table. It is always possible that either it was created since or simply wasn't in the prefix table at the time of the prefix table search. Initialize the Fcb and store into the FcbTable if not present. Next we will add this to the prefix table of our parent if needed. Once we know that the new Fcb has been initialized then we move our pointer in the tree down to this position. This routine does not own the Vcb lock on entry. We must be sure to release it on exit. Arguments: IrpSp - Stack location for this request. Vcb - Vcb for this volume. CurrentFcb - On input this is the parent of the Fcb to open. On output we store the Fcb for the file being opened. DirName - This is always the exact name used to reach this file. IgnoreCase - Indicates the type of case match for the open. ShortNameMatch - Indicates if we are opening via the short name. PathEntry - Path entry for the entry found. PerformUserOpen - TRUE if we are to open this for a user, FALSE otherwise. RelatedCcb - RelatedCcb for relative file object used to make this open. Return Value: NTSTATUS - Status indicating the result of the operation. --*/ { ULONG CcbFlags = 0; FILE_ID FileId; BOOLEAN UnlockVcb = FALSE; BOOLEAN FcbExisted; PFCB NextFcb; PFCB ParentFcb = NULL; NTSTATUS Status = STATUS_SUCCESS; PAGED_CODE(); // // Check for illegal access to this file. // if (PerformUserOpen && CdIllegalFcbAccess( IrpContext, UserDirectoryOpen, IrpSp->Parameters.Create.SecurityContext->DesiredAccess )) { return STATUS_ACCESS_DENIED; } // // Use a try-finally to facilitate cleanup. // try { // // Check the related Ccb to see if this was an OpenByFileId. // if (ARGUMENT_PRESENT( RelatedCcb ) && FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_BY_ID | CCB_FLAG_OPEN_RELATIVE_BY_ID )) { CcbFlags = CCB_FLAG_OPEN_RELATIVE_BY_ID; } if (IgnoreCase) { SetFlag( CcbFlags, CCB_FLAG_IGNORE_CASE ); } // // Build the file Id for this file. // FileId.QuadPart = 0; CdSetFidPathTableOffset( FileId, PathEntry->PathTableOffset ); CdFidSetDirectory( FileId ); // // Lock the Vcb so we can examine the Fcb Table. // CdLockVcb( IrpContext, Vcb ); UnlockVcb = TRUE; // // Get the Fcb for this directory. // NextFcb = CdCreateFcb( IrpContext, FileId, CDFS_NTC_FCB_INDEX, &FcbExisted ); // // If the Fcb was created here then initialize from the values in the // path table entry. // if (!FcbExisted) { CdInitializeFcbFromPathEntry( IrpContext, NextFcb, *CurrentFcb, PathEntry ); } // // Now try to acquire the new Fcb without waiting. We will reference // the Fcb and retry with wait if unsuccessful. // if (!CdAcquireFcbExclusive( IrpContext, NextFcb, TRUE )) { NextFcb->FcbReference += 1; CdUnlockVcb( IrpContext, Vcb ); CdReleaseFcb( IrpContext, *CurrentFcb ); #pragma prefast(suppress: 28103) CdAcquireFcbExclusive( IrpContext, NextFcb, FALSE ); CdAcquireFcbExclusive( IrpContext, *CurrentFcb, FALSE ); CdLockVcb( IrpContext, Vcb ); NextFcb->FcbReference -= 1; CdUnlockVcb( IrpContext, Vcb ); } else { // // Unlock the Vcb and move down to this new Fcb. Remember that we still // own the parent however. // CdUnlockVcb( IrpContext, Vcb ); } UnlockVcb = FALSE; ParentFcb = *CurrentFcb; *CurrentFcb = NextFcb; // Lock object is acquired using internal state _Analysis_suppress_lock_checking_(NextFcb->FcbNonpaged->FcbResource); // // Store this name into the prefix table for the parent. // if (ShortNameMatch) { // // Make sure the exact case is always in the tree. // CdInsertPrefix( IrpContext, NextFcb, DirName, FALSE, TRUE, ParentFcb ); if (IgnoreCase) { CdInsertPrefix( IrpContext, NextFcb, DirName, TRUE, TRUE, ParentFcb ); } } else { // // Make sure the exact case is always in the tree. // CdInsertPrefix( IrpContext, NextFcb, &PathEntry->CdDirName, FALSE, FALSE, ParentFcb ); if (IgnoreCase) { CdInsertPrefix( IrpContext, NextFcb, &PathEntry->CdCaseDirName, TRUE, FALSE, ParentFcb ); } } // // Release the parent Fcb at this point. // CdReleaseFcb( IrpContext, ParentFcb ); ParentFcb = NULL; // // Call our worker routine to complete the open. // if (PerformUserOpen) { Status = CdCompleteFcbOpen( IrpContext, IrpSp, Vcb, CurrentFcb, UserDirectoryOpen, CcbFlags, IrpSp->Parameters.Create.SecurityContext->DesiredAccess ); } } finally { // // Unlock the Vcb if held. // if (UnlockVcb) { CdUnlockVcb( IrpContext, Vcb ); } // // Release the parent if held. // if (ParentFcb != NULL) { CdReleaseFcb( IrpContext, ParentFcb ); } } return Status; }
// // Local support routine // _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdOpenFileFromFileContext ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ PCD_NAME FileName, _In_ BOOLEAN IgnoreCase, _In_ BOOLEAN ShortNameMatch, _In_ PFILE_ENUM_CONTEXT FileContext, _In_opt_ PCCB RelatedCcb ) /*++ Routine Description: This routine is called to open a file where the file was found in a directory scan. This should only be for a file in the case since we will find the directories in the path table. We first check that the desired access is legal for this file. Then we construct the FileId for this and do a check to see if it is the Fcb Table. It is always possible that either it was created since or simply wasn't in the prefix table at the time of the prefix table search. Initialize the Fcb and store into the FcbTable if not present. Next we will add this to the prefix table of our parent if needed. Once we know that the new Fcb has been initialized then we move our pointer in the tree down to this position. This routine does not own the Vcb lock on entry. We must be sure to release it on exit. Arguments: IrpSp - Stack location for this request. Vcb - Vcb for the current volume. CurrentFcb - On input this is the parent of the Fcb to open. On output we store the Fcb for the file being opened. FileName - This is always the exact name used to reach this file. IgnoreCase - Indicates the type of case of CaseName above. ShortNameMatch - Indicates if we are opening via the short name. FileContext - This is the context used to find the file. RelatedCcb - RelatedCcb for relative file object used to make this open. Return Value: NTSTATUS - Status indicating the result of the operation. --*/ { ULONG CcbFlags = 0; FILE_ID FileId; BOOLEAN UnlockVcb = FALSE; BOOLEAN FcbExisted; PFCB NextFcb; PFCB ParentFcb = NULL; NTSTATUS Status = STATUS_SUCCESS; PAGED_CODE(); // // Check for illegal access to this file. // if (CdIllegalFcbAccess( IrpContext, UserFileOpen, IrpSp->Parameters.Create.SecurityContext->DesiredAccess )) { return STATUS_ACCESS_DENIED; } // // Use a try-finally to facilitate cleanup. // try { // // Check if a version number was used to open this file. // if (FileName->VersionString.Length != 0) { SetFlag( CcbFlags, CCB_FLAG_OPEN_WITH_VERSION ); } // // Check the related Ccb to see if this was an OpenByFileId. // if (ARGUMENT_PRESENT( RelatedCcb ) && FlagOn( RelatedCcb->Flags, CCB_FLAG_OPEN_BY_ID | CCB_FLAG_OPEN_RELATIVE_BY_ID )) { SetFlag( CcbFlags, CCB_FLAG_OPEN_RELATIVE_BY_ID ); } if (IgnoreCase) { SetFlag( CcbFlags, CCB_FLAG_IGNORE_CASE ); } // // Build the file Id for this file. We can use the path table offset from the // parent and the directory offset from the dirent. // CdSetFidPathTableOffset( FileId, CdQueryFidPathTableOffset( (*CurrentFcb)->FileId )); CdSetFidDirentOffset( FileId, FileContext->InitialDirent->Dirent.DirentOffset ); // // Lock the Vcb so we can examine the Fcb Table. // CdLockVcb( IrpContext, Vcb ); UnlockVcb = TRUE; // // Get the Fcb for this file. // NextFcb = CdCreateFcb( IrpContext, FileId, CDFS_NTC_FCB_DATA, &FcbExisted ); // // If the Fcb was created here then initialize from the values in the // dirent. // if (!FcbExisted) { CdInitializeFcbFromFileContext( IrpContext, NextFcb, *CurrentFcb, FileContext ); } // // Now try to acquire the new Fcb without waiting. We will reference // the Fcb and retry with wait if unsuccessful. // if (!CdAcquireFcbExclusive( IrpContext, NextFcb, TRUE )) { NextFcb->FcbReference += 1; CdUnlockVcb( IrpContext, Vcb ); CdReleaseFcb( IrpContext, *CurrentFcb ); #pragma prefast(suppress: 28103) CdAcquireFcbExclusive( IrpContext, NextFcb, FALSE ); CdAcquireFcbExclusive( IrpContext, *CurrentFcb, FALSE ); CdLockVcb( IrpContext, Vcb ); NextFcb->FcbReference -= 1; CdUnlockVcb( IrpContext, Vcb ); } else { // // Unlock the Vcb and move down to this new Fcb. Remember that we still // own the parent however. // CdUnlockVcb( IrpContext, Vcb ); } UnlockVcb = FALSE; ParentFcb = *CurrentFcb; *CurrentFcb = NextFcb; // // Store this name into the prefix table for the parent. // if (ShortNameMatch) { // // Make sure the exact case is always in the tree. // CdInsertPrefix( IrpContext, NextFcb, FileName, FALSE, TRUE, ParentFcb ); if (IgnoreCase) { CdInsertPrefix( IrpContext, NextFcb, FileName, TRUE, TRUE, ParentFcb ); } // // Insert this into the prefix table if we found this without // using a version string. // } else if (FileName->VersionString.Length == 0) { // // Make sure the exact case is always in the tree. // CdInsertPrefix( IrpContext, NextFcb, &FileContext->InitialDirent->Dirent.CdFileName, FALSE, FALSE, ParentFcb ); if (IgnoreCase) { CdInsertPrefix( IrpContext, NextFcb, &FileContext->InitialDirent->Dirent.CdCaseFileName, TRUE, FALSE, ParentFcb ); } } // // Release the parent Fcb at this point. // _Analysis_assume_same_lock_(ParentFcb->FcbNonpaged->FcbResource, NextFcb->FcbNonpaged->FcbResource); CdReleaseFcb( IrpContext, ParentFcb ); ParentFcb = NULL; // // Call our worker routine to complete the open. // Status = CdCompleteFcbOpen( IrpContext, IrpSp, Vcb, CurrentFcb, UserFileOpen, CcbFlags, IrpSp->Parameters.Create.SecurityContext->DesiredAccess ); } finally { // // Unlock the Vcb if held. // if (UnlockVcb) { CdUnlockVcb( IrpContext, Vcb ); } // // Release the parent if held. // if (ParentFcb != NULL) { CdReleaseFcb( IrpContext, ParentFcb ); } } return Status; }
// // Local support routine // _Requires_lock_held_(_Global_critical_region_) NTSTATUS CdCompleteFcbOpen ( _In_ PIRP_CONTEXT IrpContext, _In_ PIO_STACK_LOCATION IrpSp, _In_ PVCB Vcb, _Inout_ PFCB *CurrentFcb, _In_ TYPE_OF_OPEN TypeOfOpen, _In_ ULONG UserCcbFlags, _In_ ACCESS_MASK DesiredAccess ) /*++ Routine Description: This is the worker routine which takes an existing Fcb and completes the open. We will do any necessary oplock checks and sharing checks. Finally we will create the Ccb and update the file object and any file object flags. Arguments: IrpSp - Stack location for the current request. Vcb - Vcb for the current volume. CurrentFcb - Address of pointer to Fcb to open. We clear this field if we release the resource for this file. TypeOfOpen - Type of open for this request. UserCcbFlags - Flags to OR into the Ccb flags. DesiredAccess - Desired access for this open. Return Value: NTSTATUS - STATUS_SUCCESS if we complete this request, STATUS_PENDING if the oplock package takes the Irp or SHARING_VIOLATION if there is a sharing check conflict. --*/ { NTSTATUS Status; NTSTATUS OplockStatus = STATUS_SUCCESS; ULONG Information = FILE_OPENED; BOOLEAN LockVolume = FALSE; PFCB Fcb = *CurrentFcb; PCCB Ccb; PAGED_CODE(); // // Expand maximum allowed to something sensible for share access checking // if (MAXIMUM_ALLOWED == DesiredAccess) { DesiredAccess = FILE_ALL_ACCESS & ~((TypeOfOpen != 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 ); } // // If this a volume open and the user wants to lock the volume then // purge and lock the volume. // if ((TypeOfOpen <= UserVolumeOpen) && !FlagOn( IrpSp->Parameters.Create.ShareAccess, FILE_SHARE_READ )) { // // If there are open handles then fail this immediately. // if (Vcb->VcbCleanup != 0) { return STATUS_SHARING_VIOLATION; } // // If we can't wait then force this to be posted. // if (!FlagOn( IrpContext->Flags, IRP_CONTEXT_FLAG_WAIT )) { CdRaiseStatus( IrpContext, STATUS_CANT_WAIT ); } LockVolume = TRUE; // // Purge the volume and make sure all of the user references // are gone. // Status = CdPurgeVolume( IrpContext, Vcb, FALSE ); if (Status != STATUS_SUCCESS) { return Status; } // // Now force all of the delayed close operations to go away. // CdFspClose( Vcb ); if (Vcb->VcbUserReference > CDFS_RESIDUAL_USER_REFERENCE) { return STATUS_SHARING_VIOLATION; } } // // If the Fcb already existed then we need to check the oplocks and // the share access. // if (Fcb->FcbCleanup != 0) { // // If this is a user file open then check whether there are any // batch oplock. // if (TypeOfOpen == UserFileOpen) { // // Store the address of the Fcb for a possible teardown into // the IrpContext. We will release this in the call to // prepost the Irp. // IrpContext->TeardownFcb = CurrentFcb; if (FsRtlCurrentBatchOplock( CdGetFcbOplock(Fcb) )) { // // We remember if a batch oplock break is underway for the // case where the sharing check fails. // Information = FILE_OPBATCH_BREAK_UNDERWAY; OplockStatus = FsRtlCheckOplock( CdGetFcbOplock(Fcb), IrpContext->Irp, IrpContext, CdOplockComplete, CdPrePostIrp ); if (OplockStatus == STATUS_PENDING) { return STATUS_PENDING; } } // // Check the share access before breaking any exclusive oplocks. // Status = IoCheckShareAccess( DesiredAccess, IrpSp->Parameters.Create.ShareAccess, IrpSp->FileObject, &Fcb->ShareAccess, FALSE ); if (!NT_SUCCESS( Status )) { return Status; } // // Now check that we can continue based on the oplock state of the // file. // OplockStatus = FsRtlCheckOplock( CdGetFcbOplock(Fcb), IrpContext->Irp, IrpContext, CdOplockComplete, CdPrePostIrp ); if (OplockStatus == STATUS_PENDING) { return STATUS_PENDING; } IrpContext->TeardownFcb = NULL; // // Otherwise just do the sharing check. // } else { Status = IoCheckShareAccess( DesiredAccess, IrpSp->Parameters.Create.ShareAccess, IrpSp->FileObject, &Fcb->ShareAccess, FALSE ); if (!NT_SUCCESS( Status )) { return Status; } } } // // Create the Ccb now. // Ccb = CdCreateCcb( IrpContext, Fcb, UserCcbFlags ); // // Update the share access. // if (Fcb->FcbCleanup == 0) { IoSetShareAccess( DesiredAccess, IrpSp->Parameters.Create.ShareAccess, IrpSp->FileObject, &Fcb->ShareAccess ); } else { IoUpdateShareAccess( IrpSp->FileObject, &Fcb->ShareAccess ); } // // Set the file object type. // CdSetFileObject( IrpContext, IrpSp->FileObject, TypeOfOpen, Fcb, Ccb ); // // Set the appropriate cache flags for a user file object. // if (TypeOfOpen == UserFileOpen) { if (FlagOn( IrpSp->Parameters.Create.Options, FILE_NO_INTERMEDIATE_BUFFERING )) { SetFlag( IrpSp->FileObject->Flags, FO_NO_INTERMEDIATE_BUFFERING ); } else { SetFlag( IrpSp->FileObject->Flags, FO_CACHE_SUPPORTED ); } } else if (TypeOfOpen == UserVolumeOpen) { SetFlag( IrpSp->FileObject->Flags, FO_NO_INTERMEDIATE_BUFFERING ); } // // Update the open and cleanup counts. Check the fast io state here. // CdLockVcb( IrpContext, Vcb ); CdIncrementCleanupCounts( IrpContext, Fcb ); CdIncrementReferenceCounts( IrpContext, Fcb, 1, 1 ); if (LockVolume) { Vcb->VolumeLockFileObject = IrpSp->FileObject; SetFlag( Vcb->VcbState, VCB_STATE_LOCKED ); } CdUnlockVcb( IrpContext, Vcb ); CdLockFcb( IrpContext, Fcb ); if (TypeOfOpen == UserFileOpen) { Fcb->IsFastIoPossible = CdIsFastIoPossible( Fcb ); } else { Fcb->IsFastIoPossible = FastIoIsNotPossible; } CdUnlockFcb( IrpContext, Fcb ); // // Show that we opened the file. // IrpContext->Irp->IoStatus.Information = Information; // // Point to the section object pointer in the non-paged Fcb. // IrpSp->FileObject->SectionObjectPointer = &Fcb->FcbNonpaged->SegmentObject; return OplockStatus; } |
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