Loading...
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 | /* * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ #include <IOKit/assert.h> #include <IOKit/IOLib.h> #include <IOKit/IOMemoryDescriptor.h> #include <IOKit/storage/IOBlockStorageDevice.h> #include <IOKit/storage/IOBlockStorageDriver.h> #include <IOKit/storage/IOMedia.h> #define super IOStorage OSDefineMetaClassAndStructors(IOBlockStorageDriver, IOStorage) // Hack for Cheetah to prevent sleep if there's disk activity. static IOService * gIORootPowerDomain = NULL; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - const UInt32 kPollerInterval = 1000; // (ms, 1 second) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOBlockStorageDevice * IOBlockStorageDriver::getProvider() const { // // Obtain this object's provider. We override the superclass's method to // return a more specific subclass of IOService -- IOBlockStorageDevice. // This method serves simply as a convenience to subclass developers. // return (IOBlockStorageDevice *) IOService::getProvider(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IOBlockStorageDriver::init(OSDictionary * properties = 0) { // // Initialize this object's minimal state. // if (super::init(properties) == false) return false; initMediaState(); _ejectable = false; _lockable = false; _pollIsExpensive = false; _pollIsRequired = false; _removable = false; _mediaBlockSize = 0; _maxBlockNumber = 0; _maxReadByteTransfer = 0; _maxWriteByteTransfer = 0; _mediaStateLock = IOLockAlloc(); if (_mediaStateLock == 0) return false; _deblockRequestWriteLock = IOLockAlloc(); _openClients = OSSet::withCapacity(2); _pollerCall = thread_call_allocate(poller, this); for (unsigned index = 0; index < kStatisticsCount; index++) _statistics[index] = OSNumber::withNumber(0ULL, 64); if (_deblockRequestWriteLock == 0 || _openClients == 0 || _pollerCall == 0) return false; for (unsigned index = 0; index < kStatisticsCount; index++) if (_statistics[index] == 0) return false; // // Create the standard block storage driver registry properties. // OSDictionary * statistics = OSDictionary::withCapacity(kStatisticsCount); if (statistics == 0) return false; statistics->setObject( kIOBlockStorageDriverStatisticsBytesReadKey, _statistics[kStatisticsBytesRead] ); statistics->setObject( kIOBlockStorageDriverStatisticsBytesWrittenKey, _statistics[kStatisticsBytesWritten] ); statistics->setObject( kIOBlockStorageDriverStatisticsReadErrorsKey, _statistics[kStatisticsReadErrors] ); statistics->setObject( kIOBlockStorageDriverStatisticsWriteErrorsKey, _statistics[kStatisticsWriteErrors] ); statistics->setObject( kIOBlockStorageDriverStatisticsLatentReadTimeKey, _statistics[kStatisticsLatentReadTime] ); statistics->setObject( kIOBlockStorageDriverStatisticsLatentWriteTimeKey, _statistics[kStatisticsLatentWriteTime] ); statistics->setObject( kIOBlockStorageDriverStatisticsReadsKey, _statistics[kStatisticsReads] ); statistics->setObject( kIOBlockStorageDriverStatisticsWritesKey, _statistics[kStatisticsWrites] ); statistics->setObject( kIOBlockStorageDriverStatisticsReadRetriesKey, _statistics[kStatisticsReadRetries] ); statistics->setObject( kIOBlockStorageDriverStatisticsWriteRetriesKey, _statistics[kStatisticsWriteRetries] ); statistics->setObject( kIOBlockStorageDriverStatisticsTotalReadTimeKey, _statistics[kStatisticsTotalReadTime] ); statistics->setObject( kIOBlockStorageDriverStatisticsTotalWriteTimeKey, _statistics[kStatisticsTotalWriteTime] ); setProperty(kIOBlockStorageDriverStatisticsKey, statistics); // Hack for Cheetah to prevent sleep if there's disk activity. if (!gIORootPowerDomain) { // No danger of race here as we're ultimately just setting // the gIORootPowerDomain variable. do { IOService * root = NULL; OSIterator * iterator = NULL; OSDictionary * pmDict = NULL; root = IOService::getServiceRoot(); if (!root) break; pmDict = root->serviceMatching("IOPMrootDomain"); if (!pmDict) break; iterator = root->getMatchingServices(pmDict); pmDict->release(); if (!iterator) break; if (iterator) { gIORootPowerDomain = OSDynamicCast(IOService, iterator->getNextObject()); iterator->release(); } } while (false); } return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IOBlockStorageDriver::start(IOService * provider) { // // This method is called once we have been attached to the provider object. // // Open the block storage device. if (provider->open(this) == false) return false; // Prepare the block storage driver for operation. if (handleStart(provider) == false) { provider->close(this); return false; } // Initiate the poller mechanism if it is required. if (isMediaEjectable() && isMediaPollRequired() && !isMediaPollExpensive()) { lockForArbitration(); // (disable opens/closes; a recursive lock) if (!isOpen() && !isInactive()) schedulePoller(); // (schedule the poller, increments retain) unlockForArbitration(); // (enable opens/closes; a recursive lock) } // Register this object so it can be found via notification requests. It is // not being registered to have I/O Kit attempt to have drivers match on it, // which is the reason most other services are registered -- that's not the // intention of this registerService call. registerService(); return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IOBlockStorageDriver::yield(IOService * provider, IOOptionBits options, void * argument) { // // This method is called as a result of the kIOMessageServiceIsTerminated // or kIOMessageServiceIsRequestingClose provider messages. The argument // is passed in as-is from the message. The kIOServiceRequired option is // set for the kIOMessageServiceIsTerminated message to indicate that the // yield must succeed. // bool success = false; lockForArbitration(); // Yield the block storage device. success = handleYield(provider, options, argument); if (success) { // Close the block storage device. provider->close(this); } unlockForArbitration(); return success; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::free() { // // Free all of this object's outstanding resources. // if (_mediaStateLock) IOLockFree(_mediaStateLock); if (_deblockRequestWriteLock) IOLockFree(_deblockRequestWriteLock); if (_openClients) _openClients->release(); if (_pollerCall) thread_call_free(_pollerCall); for (unsigned index = 0; index < kStatisticsCount; index++) if (_statistics[index]) _statistics[index]->release(); super::free(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IOBlockStorageDriver::handleOpen(IOService * client, IOOptionBits options, void * argument) { // // The handleOpen method grants or denies permission to access this object // to an interested client. The argument is an IOStorageAccess value that // specifies the level of access desired -- reader or reader-writer. // // This method can be invoked to upgrade or downgrade the access level for // an existing client as well. The previous access level will prevail for // upgrades that fail, of course. A downgrade should never fail. If the // new access level should be the same as the old for a given client, this // method will do nothing and return success. In all cases, one, singular // close-per-client is expected for all opens-per-client received. // // This method assumes that the arbitration lock is held. // assert(client); // Ensure there is media in the block storage device. if (getMediaState() == kIOMediaStateOffline) return false; // Handle the first open on removable media in a special case. if (isMediaEjectable() && _openClients->getCount() == 0) { // Halt the poller if it is active and this is the first open. if (isMediaPollRequired() && !isMediaPollExpensive()) unschedulePoller(); // (unschedule the poller) // Lock down the media while we have opens on this driver object. if (lockMedia(true) != kIOReturnSuccess) IOLog("%s: Unable to lock down removable media.\n", getName()); } // Process the open. _openClients->setObject(client); // (works for up/downgrade case) return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IOBlockStorageDriver::handleIsOpen(const IOService * client) const { // // The handleIsOpen method determines whether the specified client, or any // client if none is specificed, presently has an open on this object. // // This method assumes that the arbitration lock is held. // if (client) return _openClients->containsObject(client); else return (_openClients->getCount() != 0); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::handleClose(IOService * client, IOOptionBits options) { // // The handleClose method drops the incoming client's access to this object. // // This method assumes that the arbitration lock is held. // assert(client); // Process the close. _openClients->removeObject(client); // Handle the last close in a special case. if (!isInactive() && _openClients->getCount() == 0) { if (isMediaWritable()) { if (getMediaState() == kIOMediaStateOnline) { // Synchronize the cache on writeable media. if (synchronizeCache(this) != kIOReturnSuccess) IOLog("%s: Unable to flush cache on media.\n", getName()); } } if (isMediaEjectable()) { // Unlock the removable media. if (getMediaState() == kIOMediaStateOnline) { if (lockMedia(false) != kIOReturnSuccess) IOLog("%s: Unable to unlock removable media.\n", getName()); } // Reactivate the poller. if (isMediaPollRequired() && !isMediaPollExpensive()) schedulePoller(); // (schedule the poller, increments retain) } } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::read(IOService * /* client */, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion) { // // The read method is the receiving end for all read requests from the // storage framework, ie. via the media object created by this driver. // // This method kicks off a sequence of three methods for each read or write // request. The first is prepareRequest, which allocates and prepares some // context for the transfer; the second is deblockRequest, which aligns the // transfer at the media block boundaries; and the third is executeRequest, // which implements the actual transfer from the block storage device. // // State our assumptions. assert(buffer->getDirection() == kIODirectionIn); // Prepare the transfer. prepareRequest(byteStart, buffer, completion); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::write(IOService * /* client */, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion) { // // The write method is the receiving end for all write requests from the // storage framework, ie. via the media object created by this driver. // // This method kicks off a sequence of three methods for each read or write // request. The first is prepareRequest, which allocates and prepares some // context for the transfer; the second is deblockRequest, which aligns the // transfer at the media block boundaries; and the third is executeRequest, // which implements the actual transfer from the block storage driver. // // State our assumptions. assert(buffer->getDirection() == kIODirectionOut); // Prepare the transfer. prepareRequest(byteStart, buffer, completion); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::addToBytesTransferred(UInt64 bytesTransferred, UInt64 totalTime, // (ns) UInt64 latentTime, // (ns) bool isWrite) { // // Update the total number of bytes transferred, the total transfer time, // and the total latency time -- used for statistics. // if (isWrite) { _statistics[kStatisticsWrites]->addValue(1); _statistics[kStatisticsBytesWritten]->addValue(bytesTransferred); _statistics[kStatisticsTotalWriteTime]->addValue(totalTime); _statistics[kStatisticsLatentWriteTime]->addValue(latentTime); if (bytesTransferred <= getMediaBlockSize()) _statistics[kStatisticsSingleBlockWrites]->addValue(1); } else { _statistics[kStatisticsReads]->addValue(1); _statistics[kStatisticsBytesRead]->addValue(bytesTransferred); _statistics[kStatisticsTotalReadTime]->addValue(totalTime); _statistics[kStatisticsLatentReadTime]->addValue(latentTime); } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::incrementRetries(bool isWrite) { // // Update the total retry count -- used for statistics. // if (isWrite) _statistics[kStatisticsWriteRetries]->addValue(1); else _statistics[kStatisticsReadRetries]->addValue(1); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::incrementErrors(bool isWrite) { // // Update the total error count -- used for statistics. // if (isWrite) _statistics[kStatisticsWriteErrors]->addValue(1); else _statistics[kStatisticsReadErrors]->addValue(1); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - UInt32 IOBlockStorageDriver::getStatistics(UInt64 * statistics, UInt32 statisticsMaxCount) const { // // Ask the driver to report its operating statistics. // // The statistics are each indexed by IOBlockStorageDriver::Statistics // indices. This routine fills the caller's buffer, up to the maximum // count specified if the real number of statistics would overflow the // buffer. The return value indicates the actual number of statistics // copied to the buffer. // // If the statistics buffer is not supplied or if the maximum count is // zero, the routine returns the proposed count of statistics instead. // if (statistics == 0) return kStatisticsCount; UInt32 statisticsCount = min(kStatisticsCount, statisticsMaxCount); for (unsigned index = 0; index < statisticsCount; index++) statistics[index] = _statistics[index]->unsigned64BitValue(); return statisticsCount; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - UInt64 IOBlockStorageDriver::getStatistic(Statistics statistic) const { // // Ask the driver to report one of its operating statistics. // if ((UInt32) statistic >= kStatisticsCount) return 0; return _statistics[statistic]->unsigned64BitValue(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOBlockStorageDriver::Context * IOBlockStorageDriver::allocateContext() { // // Allocate a context structure for a read/write operation. // Context * context = IONew(Context, 1); if (context) { bzero(context, sizeof(Context)); } return context; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::deleteContext( IOBlockStorageDriver::Context * context) { // // Delete a context structure from a read/write operation. // IODelete(context, Context, 1); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::prepareRequest(UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion) { // // The prepareRequest method allocates and prepares state for the transfer. // // This method is part of a sequence of methods invoked for each read/write // request. The first is prepareRequest, which allocates and prepares some // context for the transfer; the second is deblockRequest, which aligns the // transfer at the media block boundaries; and the third is executeRequest, // which implements the actual transfer from the block storage device. // Context * context; IOReturn status; // Allocate a context structure to hold some of our state. context = allocateContext(); if (context == 0) { complete(completion, kIOReturnNoMemory); return; } // Prepare the transfer buffer. status = buffer->prepare(); if (status != kIOReturnSuccess) { deleteContext(context); complete(completion, status); return; } // Fill in the context structure with some of our state. context->block.size = getMediaBlockSize(); context->block.type = kBlockTypeStandard; context->original.byteStart = byteStart; context->original.buffer = buffer; context->original.buffer->retain(); context->original.completion = completion; completion.target = this; completion.action = prepareRequestCompletion; completion.parameter = context; // Deblock the transfer. deblockRequest(byteStart, buffer, completion, context); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::prepareRequestCompletion(void * target, void * parameter, IOReturn status, UInt64 actualByteCount) { // // This is the completion routine for the prepared request. It updates // the driver's statistics, performs some clean up work, then calls the // original request's completion routine. // Context * context = (Context *) parameter; IOBlockStorageDriver * driver = (IOBlockStorageDriver *) target; bool isWrite; isWrite = (context->original.buffer->getDirection() == kIODirectionOut); // State our assumptions. assert(status != kIOReturnSuccess || context->original.buffer->getLength() == actualByteCount); // Update the total number of bytes transferred. driver->addToBytesTransferred(actualByteCount, 0, 0, isWrite); // Update the total error count. if (status != kIOReturnSuccess) { driver->incrementErrors(isWrite); } // Complete the transfer buffer. context->original.buffer->complete(); // Complete the transfer request. IOStorage::complete(context->original.completion, status, actualByteCount); // Release our resources. context->original.buffer->release(); driver->deleteContext(context); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::schedulePoller() { // // Schedule the poller mechanism. // // This method assumes that the arbitration lock is held. // AbsoluteTime deadline; retain(); clock_interval_to_deadline(kPollerInterval, kMillisecondScale, &deadline); thread_call_enter_delayed(_pollerCall, deadline); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::unschedulePoller() { // // Unschedule the poller mechanism. // // This method assumes that the arbitration lock is held. // if (thread_call_cancel(_pollerCall)) release(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::poller(void * target, void *) { // // This method is the timeout handler for the poller mechanism. It polls // for media and reschedules another timeout if there are still no opens. // IOBlockStorageDriver * driver = (IOBlockStorageDriver *) target; driver->pollMedia(); driver->lockForArbitration(); // (disable opens/closes; a recursive lock) if (!driver->isOpen() && !driver->isInactive()) driver->schedulePoller(); // (schedule the poller, increments retain) driver->unlockForArbitration(); // (enable opens/closes; a recursive lock) driver->release(); // (drop the retain associated with this poll) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOReturn IOBlockStorageDriver::message(UInt32 type, IOService * provider, void * argument) { // // Generic entry point for calls from the provider. A return value of // kIOReturnSuccess indicates that the message was received, and where // applicable, that it was successful. // switch (type) { case kIOMessageMediaStateHasChanged: { IOReturn status; IOLockLock(_mediaStateLock); status = mediaStateHasChanged((IOMediaState) argument); IOLockUnlock(_mediaStateLock); return status; } case kIOMessageServiceIsRequestingClose: { bool success; success = yield(provider, 0, argument); return success ? kIOReturnSuccess : kIOReturnBusy; } case kIOMessageServiceIsTerminated: { bool success; success = yield(provider, kIOServiceRequired, argument); return success ? kIOReturnSuccess : kIOReturnError; } default: { return super::message(type, provider, argument); } } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /* Accept a new piece of media, doing whatever's necessary to make it * show up properly to the system. The arbitration lock is assumed to * be held during the call. */ IOReturn IOBlockStorageDriver::acceptNewMedia(void) { IOReturn result; bool ok; UInt64 nbytes; char name[128]; bool nameSep; /* Since the kernel printf doesn't handle 64-bit integers, we * simply make an assumption that the block count and size * will be 32-bit values max. */ #ifdef moreDebug IOLog("%s[IOBlockStorageDriver]::%s media: %ld blocks, %ld bytes each, write-%s.\n", getName(), getDeviceTypeName(), (UInt32)_maxBlockNumber + 1,(UInt32)getMediaBlockSize(), (_writeProtected ? "protected" : "enabled")); #endif if (_maxBlockNumber) { nbytes = _mediaBlockSize * (_maxBlockNumber + 1); } else { nbytes = 0; } /* Instantiate a media object and attach it to ourselves. */ name[0] = 0; nameSep = false; if (getProvider()->getVendorString()) { strcat(name, getProvider()->getVendorString()); nameSep = true; } if (getProvider()->getProductString()) { if (nameSep == true) strcat(name, " "); strcat(name, getProvider()->getProductString()); nameSep = true; } if (nameSep == true) strcat(name, " "); strcat(name, "Media"); _mediaObject = instantiateMediaObject(0,nbytes,_mediaBlockSize,name); result = (_mediaObject) ? kIOReturnSuccess : kIOReturnBadArgument; if (result == kIOReturnSuccess) { ok = _mediaObject->attach(this); /* attach media object above us */ if (ok) { _mediaPresent = true; _mediaObject->registerService(); /* enable matching */ } else { _mediaObject->release(); _mediaObject = 0; return(kIOReturnNoMemory); /* give up now */ } } return(result); } IOReturn IOBlockStorageDriver::checkForMedia(void) { IOReturn result; bool currentState; bool changed; IOLockLock(_mediaStateLock); result = getProvider()->reportMediaState(¤tState,&changed); if (result != kIOReturnSuccess) { /* the poll operation failed */ IOLog("%s[IOBlockStorageDriver]::checkForMedia; err '%s' from reportMediaState\n", getName(),stringFromReturn(result)); } else if (changed) { /* the poll succeeded, media state has changed */ result = mediaStateHasChanged(currentState ? kIOMediaStateOnline : kIOMediaStateOffline); } IOLockUnlock(_mediaStateLock); return(result); } IOReturn IOBlockStorageDriver::mediaStateHasChanged(IOMediaState state) { IOReturn result; /* The media has changed state. See if it's just inserted or removed. */ if (state == kIOMediaStateOnline) { /* media is now present */ /* Allow a subclass to decide whether we accept the media. Such a * decision might be based on things like password-protection, etc. */ if (validateNewMedia() == false) { /* we're told to reject it */ rejectMedia(); /* so let subclass do whatever it wants */ return(kIOReturnSuccess); /* pretend nothing happened */ } result = recordMediaParameters(); /* learn about media */ if (result != kIOReturnSuccess) { /* couldn't record params */ initMediaState(); /* deny existence of new media */ IOLog("%s[IOBlockStorageDriver]::checkForMedia: err '%s' from recordMediaParameters\n", getName(),stringFromReturn(result)); return(result); } /* Now we do what's necessary to make the new media * show up properly in the system. */ lockForArbitration(); result = acceptNewMedia(); if (result != kIOReturnSuccess) { initMediaState(); /* deny existence of new media */ IOLog("%s[IOBlockStorageDriver]::checkForMedia; err '%s' from acceptNewMedia\n", getName(),stringFromReturn(result)); } unlockForArbitration(); return(result); /* all done, new media is ready */ } else { /* media is now absent */ lockForArbitration(); result = decommissionMedia(true); /* force a teardown */ unlockForArbitration(); if (result != kIOReturnSuccess && result != kIOReturnNoMedia) { IOLog("%s[IOBlockStorageDriver]::checkForMedia; err '%s' from decommissionNewMedia\n", getName(),stringFromReturn(result)); return(result); } return(kIOReturnSuccess); /* all done; media is gone */ } } UInt64 IOBlockStorageDriver::constrainByteCount(UInt64 /* requestedCount */ ,bool isWrite) { if (isWrite) { return(_maxWriteByteTransfer); } else { return(_maxReadByteTransfer); } } /* Decommission a piece of media that has become unavailable either due to * ejection or some outside force (e.g. the Giant Hand of the User). * (I prefer the term "decommission" rather than "abandon." The former implies * a well-determined procedure, whereas the latter implies leaving the media * in an orphaned state.) */ /* Tear down the stack above the specified object. Usually these objects will * be of type IOMedia, but they could be any IOService. The arbitration lock is * assumed to be held during the call. */ IOReturn IOBlockStorageDriver::decommissionMedia(bool forcible) { IOReturn result; if (_mediaObject) { /* If this is a forcible decommission (i.e. media is gone), we don't * care whether the teardown worked; we forget about the media. */ if (_mediaObject->terminate(forcible ? kIOServiceRequired : 0) || forcible) { _mediaObject->release(); _mediaObject = 0; initMediaState(); /* clear all knowledge of the media */ result = kIOReturnSuccess; } else { result = kIOReturnBusy; } } else { result = kIOReturnNoMedia; } return(result); } IOReturn IOBlockStorageDriver::ejectMedia(void) { IOReturn result; if (_removable) { IOLockLock(_mediaStateLock); lockForArbitration(); result = decommissionMedia(false); /* try to teardown */ unlockForArbitration(); if (result == kIOReturnSuccess) { /* eject */ if (lockMedia(false) != kIOReturnSuccess) IOLog("%s: Unable to unlock removable media.\n", getName()); (void)getProvider()->doEjectMedia(); /* ignore any error */ } IOLockUnlock(_mediaStateLock); return(result); } else { return(kIOReturnUnsupported); } } void IOBlockStorageDriver::executeRequest(UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion, IOBlockStorageDriver::Context * context) { UInt32 block; UInt32 nblks; IOReturn result; if (!_mediaPresent) { /* no media? you lose */ complete(completion, kIOReturnNoMedia,0); return; } /* We know that we are never called with a request too large, * nor one that is misaligned with a block. */ assert((byteStart % _mediaBlockSize) == 0); assert((buffer->getLength() % _mediaBlockSize) == 0); block = byteStart / _mediaBlockSize; nblks = buffer->getLength() / _mediaBlockSize; /* Now the protocol-specific provider implements the actual * start of the data transfer: */ // Tickle the root power domain to reset the sleep countdown. if (gIORootPowerDomain) { gIORootPowerDomain->activityTickle(kIOPMSubclassPolicy); } result = getProvider()->doAsyncReadWrite(buffer,block,nblks,completion); if (result != kIOReturnSuccess) { /* it failed to start */ IOLog("%s[IOBlockStorageDriver]; executeRequest: request failed to start!\n",getName()); complete(completion,result); return; } } IOReturn IOBlockStorageDriver::formatMedia(UInt64 byteCapacity) { if (!_mediaPresent) { return(kIOReturnNoMedia); } return(getProvider()->doFormatMedia(byteCapacity)); } const char * IOBlockStorageDriver::getDeviceTypeName(void) { return(kIOBlockStorageDeviceTypeGeneric); } UInt32 IOBlockStorageDriver::getFormatCapacities(UInt64 * capacities, UInt32 capacitiesMaxCount) const { return(getProvider()->doGetFormatCapacities(capacities,capacitiesMaxCount)); } UInt64 IOBlockStorageDriver::getMediaBlockSize() const { return(_mediaBlockSize); } IOMediaState IOBlockStorageDriver::getMediaState() const { if (_mediaPresent) { return(kIOMediaStateOnline); } else { return(kIOMediaStateOffline); } } bool IOBlockStorageDriver::handleStart(IOService * provider) { IOReturn result; /* Print device name/type information on the console: */ /*The protocol-specific provider determines whether the media is removable. */ result = getProvider()->reportRemovability(&_removable); if (result != kIOReturnSuccess) { IOLog("%s[IOBlockStorageDriver]::handleStart; err '%s' from reportRemovability\n", getName(),stringFromReturn(result)); return(false); } if (_removable) { /* The protocol-specific provider determines whether we must poll to detect * media insertion. Nonremovable devices never need polling. */ result = getProvider()->reportPollRequirements(&_pollIsRequired,&_pollIsExpensive); if (result != kIOReturnSuccess) { IOLog("%s[IOBlockStorageDriver]::handleStart; err '%s' from reportPollRequirements\n", getName(),stringFromReturn(result)); return(false); } /* The protocol-specific provider determines whether the media is ejectable * under software control. */ result = getProvider()->reportEjectability(&_ejectable); if (result != kIOReturnSuccess) { IOLog("%s[IOBlockStorageDriver]::handleStart; err '%s' from reportEjectability\n", getName(),stringFromReturn(result)); return(false); } /* The protocol-specific provider determines whether the media is lockable * under software control. */ result = getProvider()->reportLockability(&_lockable); if (result != kIOReturnSuccess) { IOLog("%s[IOBlockStorageDriver]::handleStart; err '%s' from reportLockability\n", getName(),stringFromReturn(result)); return(false); } } else { /* fixed disk: not ejectable, not lockable */ _ejectable = false; _lockable = false; _pollIsRequired = true; /* polling detects device disappearance */ } /* Check for the device being ready with media inserted: */ result = checkForMedia(); /* The poll should never fail for nonremovable media: */ if (result != kIOReturnSuccess && !_removable) { IOLog("%s[IOBlockStorageDriver]::handleStart: err '%s' from checkForMedia\n", getName(),stringFromReturn(result)); return(false); } return(true); } /* The driver has been instructed to yield. The arbitration lock is assumed to * be held during the call. */ bool IOBlockStorageDriver::handleYield(IOService * provider, IOOptionBits options, void * argument) { // Determine whether we can yield (for non-required yield requests). if ( (options & kIOServiceRequired) == 0 && isOpen() != false ) { return false; } // Halt the poller mechanism. if ( isMediaEjectable() != false && isMediaPollRequired() != false && isMediaPollExpensive() == false ) { unschedulePoller(); // (unschedule the poller) } // Force a teardown. decommissionMedia(true); return true; } void IOBlockStorageDriver::initMediaState(void) { _mediaPresent = false; _writeProtected = false; } IOMedia * IOBlockStorageDriver::instantiateDesiredMediaObject(void) { return(new IOMedia); } IOMedia * IOBlockStorageDriver::instantiateMediaObject(UInt64 base,UInt64 byteSize, UInt32 blockSize,char *mediaName) { IOMedia *m; bool result; m = instantiateDesiredMediaObject(); if (m == NULL) { return(NULL); } result = m->init( base, /* base byte offset */ byteSize, /* byte size */ blockSize, /* preferred block size */ _ejectable, /* TRUE if ejectable */ true, /* TRUE if whole physical media */ !_writeProtected, /* TRUE if writable */ ""); /* content hint */ if (result) { m->setName(mediaName); return(m); } else { /* some init error */ m->release(); return(NULL); /* beats me...call it this error */ } } bool IOBlockStorageDriver::isMediaEjectable(void) const { return(_ejectable); } bool IOBlockStorageDriver::isMediaPollExpensive(void) const { return(_pollIsExpensive); } bool IOBlockStorageDriver::isMediaPollRequired(void) const { return(_pollIsRequired); } bool IOBlockStorageDriver::isMediaWritable(void) const { return(!_writeProtected); } IOReturn IOBlockStorageDriver::lockMedia(bool locked) { if (_lockable) { return(getProvider()->doLockUnlockMedia(locked)); } else { return(kIOReturnUnsupported); } } IOReturn IOBlockStorageDriver::pollMedia(void) { if (!_pollIsRequired) { /* shouldn't poll; it's an error */ return(kIOReturnUnsupported); } else { /* poll is required...do it */ return(checkForMedia()); } } IOReturn IOBlockStorageDriver::recordMediaParameters(void) { IOReturn result; /* Determine the device's block size and max block number. * What should an unformatted device report? All zeroes, or an error? */ result = getProvider()->reportBlockSize(&_mediaBlockSize); if (result != kIOReturnSuccess) { goto err; } result = getProvider()->reportMaxValidBlock(&_maxBlockNumber); if (result != kIOReturnSuccess) { goto err; } /* Calculate the maximum allowed byte transfers for reads and writes. */ result = getProvider()->reportMaxReadTransfer(_mediaBlockSize,&_maxReadByteTransfer); if (result != kIOReturnSuccess) { goto err; } result = getProvider()->reportMaxWriteTransfer(_mediaBlockSize,&_maxWriteByteTransfer); if (result != kIOReturnSuccess) { goto err; } /* Is the media write-protected? */ result = getProvider()->reportWriteProtection(&_writeProtected); if (result != kIOReturnSuccess) { goto err; } return(kIOReturnSuccess); /* everything was successful */ /* If we fall thru to here, we had some kind of error. Set everything to * a reasonable state since we haven't got any real information. */ err: _mediaPresent = false; _writeProtected = true; return(result); } void IOBlockStorageDriver::rejectMedia(void) { (void)getProvider()->doEjectMedia(); /* eject it, ignoring any error */ initMediaState(); /* deny existence of new media */ } IOReturn IOBlockStorageDriver::synchronizeCache(IOService *client) { return(getProvider()->doSynchronizeCache()); } bool IOBlockStorageDriver::validateNewMedia(void) { return(true); } // ----------------------------------------------------------------------------- // Deblocker Implementation #include <IOKit/IOBufferMemoryDescriptor.h> class IODeblocker : public IOMemoryDescriptor { OSDeclareDefaultStructors(IODeblocker); protected: UInt64 _blockSize; struct { IOMemoryDescriptor * buffer; UInt32 offset; UInt32 length; } _chunks[3]; UInt32 _chunksCount; IOBufferMemoryDescriptor * _excessBuffer; UInt64 _excessCountFinal; UInt64 _excessCountStart; IOMemoryDescriptor * _requestBuffer; IOStorageCompletion _requestCompletion; void * _requestContext; UInt64 _requestCount; bool _requestIsOneBlock; UInt64 _requestStart; enum { kStageInit, kStagePrepareExcessStart, kStagePrepareExcessFinal, kStageLast, kStageDone } _stage; virtual void free(); virtual bool initWithAddress( void * address, /* not supported */ IOByteCount withLength, IODirection withDirection ); virtual bool initWithAddress( vm_address_t address, /* not supported */ IOByteCount withLength, IODirection withDirection, task_t withTask ); virtual bool initWithPhysicalAddress( IOPhysicalAddress address, /* not supported */ IOByteCount withLength, IODirection withDirection ); virtual bool initWithPhysicalRanges( IOPhysicalRange * ranges, /* not supproted */ UInt32 withCount, IODirection withDirection, bool asReference = false ); virtual bool initWithRanges( IOVirtualRange * ranges, /* not supported */ UInt32 withCount, IODirection withDirection, task_t withTask, bool asReference = false ); virtual void * getVirtualSegment( IOByteCount offset, /* not supported */ IOByteCount * length ); IOMemoryDescriptor::withAddress; /* not supported */ IOMemoryDescriptor::withPhysicalAddress; /* not supported */ IOMemoryDescriptor::withPhysicalRanges; /* not supported */ IOMemoryDescriptor::withRanges; /* not supported */ IOMemoryDescriptor::withSubRange; /* not supported */ public: static IODeblocker * withBlockSize( UInt64 blockSize, UInt64 withRequestStart, IOMemoryDescriptor * withRequestBuffer, IOStorageCompletion withRequestCompletion, void * withRequestContext ); virtual bool initWithBlockSize( UInt64 blockSize, UInt64 withRequestStart, IOMemoryDescriptor * withRequestBuffer, IOStorageCompletion withRequestCompletion, void * withRequestContext ); virtual IOPhysicalAddress getPhysicalSegment( IOByteCount offset, IOByteCount * length ); virtual IOReturn prepare(IODirection forDirection = kIODirectionNone); virtual IOReturn complete(IODirection forDirection = kIODirectionNone); virtual IOByteCount readBytes( IOByteCount offset, void * bytes, IOByteCount withLength ); virtual IOByteCount writeBytes( IOByteCount offset, const void * bytes, IOByteCount withLength ); virtual bool getNextStage(UInt64 * byteStart); virtual void getRequestCompletion( IOStorageCompletion * completion, IOReturn * status, UInt64 * actualByteCount ); virtual IOMemoryDescriptor * getRequestBuffer(); virtual void * getRequestContext(); }; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #undef super #define super IOMemoryDescriptor OSDefineMetaClassAndStructors(IODeblocker, IOMemoryDescriptor) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithAddress( void * /* address */ , IOByteCount /* withLength */ , IODirection /* withDirection */ ) { return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithAddress( vm_address_t /* address */ , IOByteCount /* withLength */ , IODirection /* withDirection */ , task_t /* withTask */ ) { return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithPhysicalAddress( IOPhysicalAddress /* address */ , IOByteCount /* withLength */ , IODirection /* withDirection */ ) { return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithPhysicalRanges( IOPhysicalRange * /* ranges */ , UInt32 /* withCount */ , IODirection /* withDirection */ , bool /* asReference */ ) { return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithRanges( IOVirtualRange * /* ranges */ , UInt32 /* withCount */ , IODirection /* withDirection */ , task_t /* withTask */ , bool /* asReference */ ) { return false; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IODeblocker * IODeblocker::withBlockSize( UInt64 blockSize, UInt64 withRequestStart, IOMemoryDescriptor * withRequestBuffer, IOStorageCompletion withRequestCompletion, void * withRequestContext ) { // // Create a new IODeblocker. // IODeblocker * me = new IODeblocker; if ( me && me->initWithBlockSize( /* blockSize */ blockSize, /* withRequestStart */ withRequestStart, /* withRequestBuffer */ withRequestBuffer, /* withRequestCompletion */ withRequestCompletion, /* withRequestContext */ withRequestContext ) == false ) { me->release(); me = 0; } return me; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::initWithBlockSize( UInt64 blockSize, UInt64 withRequestStart, IOMemoryDescriptor * withRequestBuffer, IOStorageCompletion withRequestCompletion, void * withRequestContext ) { // // Initialize an IODeblocker. // // _excessCountStart = byte count from media boundary to start of request // _excessCountFinal = byte count from end of request to a media boundary // UInt32 excessBufferSize = 0; // Ask our superclass' opinion. if ( super::init() == false ) return false; // Initialize our minimal state. _blockSize = blockSize; _chunksCount = 0; _direction = kIODirectionNone; _length = 0; _requestBuffer = withRequestBuffer; _requestBuffer->retain(); _requestCompletion = withRequestCompletion; _requestContext = withRequestContext; _requestCount = withRequestBuffer->getLength(); _requestStart = withRequestStart; _excessCountStart = (withRequestStart ) % blockSize; _excessCountFinal = (withRequestStart + _requestCount) % blockSize; if ( _excessCountFinal ) _excessCountFinal = blockSize - _excessCountFinal; _requestIsOneBlock = (_excessCountStart + _requestCount <= blockSize); // Determine the necessary size for our scratch buffer. switch ( _requestBuffer->getDirection() ) { case kIODirectionIn: // (read) { excessBufferSize = max(_excessCountStart, _excessCountFinal); } break; case kIODirectionOut: // (write) { if ( _excessCountStart ) excessBufferSize += blockSize; if ( _excessCountFinal ) excessBufferSize += blockSize; // If there is excess both ends of the original request, but both // ends reside within the same media block, then we could shorten // our buffer size to just one block. if ( _excessCountStart && _excessCountFinal && _requestIsOneBlock ) { excessBufferSize -= blockSize; } } break; default: { assert(0); } break; } // Allocate our scratch buffer. if ( excessBufferSize ) { _excessBuffer = IOBufferMemoryDescriptor::withCapacity( /* capacity */ excessBufferSize, /* withDirection */ kIODirectionNone ); if ( _excessBuffer == 0 ) return false; } return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IODeblocker::free() { // // Free all of this object's outstanding resources. // if ( _requestBuffer ) _requestBuffer->release(); if ( _excessBuffer ) _excessBuffer->release(); super::free(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOReturn IODeblocker::prepare(IODirection forDirection) { // // Prepare the memory for an I/O transfer. // // This involves paging in the memory and wiring it down for the duration // of the transfer. The complete() method finishes the processing of the // memory after the I/O transfer finishes. // unsigned index; IOReturn status = kIOReturnInternalError; IOReturn statusUndo; if ( forDirection == kIODirectionNone ) { forDirection = _direction; } for ( index = 0; index < _chunksCount; index++ ) { status = _chunks[index].buffer->prepare(forDirection); if ( status != kIOReturnSuccess ) break; } if ( status != kIOReturnSuccess ) { for ( unsigned indexUndo = 0; indexUndo <= index; indexUndo++ ) { statusUndo = _chunks[index].buffer->complete(forDirection); assert(statusUndo == kIOReturnSuccess); } } return status; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOReturn IODeblocker::complete(IODirection forDirection) { // // Complete processing of the memory after an I/O transfer finishes. // // This method shouldn't be called unless a prepare() was previously issued; // the prepare() and complete() must occur in pairs, before and after an I/O // transfer. // IOReturn status; IOReturn statusFinal = kIOReturnSuccess; if ( forDirection == kIODirectionNone ) { forDirection = _direction; } for ( unsigned index = 0; index < _chunksCount; index++ ) { status = _chunks[index].buffer->complete(forDirection); if ( status != kIOReturnSuccess ) statusFinal = status; assert(status == kIOReturnSuccess); } return statusFinal; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOPhysicalAddress IODeblocker::getPhysicalSegment( IOByteCount offset, IOByteCount * length ) { // // This method returns the physical address of the byte at the given offset // into the memory, and optionally the length of the physically contiguous // segment from that offset. // assert(offset <= _length); for ( unsigned index = 0; index < _chunksCount; index++ ) { if ( offset < _chunks[index].length ) { IOPhysicalAddress address; address = _chunks[index].buffer->getPhysicalSegment( /* offset */ offset + _chunks[index].offset, /* length */ length ); if ( length ) *length = min(*length, _chunks[index].length); return address; } offset -= _chunks[index].length; } if ( length ) *length = 0; return 0; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void * IODeblocker::getVirtualSegment( IOByteCount /* offset */ , IOByteCount * /* length */ ) { return 0; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOByteCount IODeblocker::readBytes( IOByteCount offset, void * bytes, IOByteCount withLength ) { // // Copies data from the memory descriptor's buffer at the given offset, to // the specified buffer. Returns the number of bytes copied. // IOByteCount bytesCopied = 0; unsigned index; for ( index = 0; index < _chunksCount; index++ ) { if ( offset < _chunks[index].length ) break; offset -= _chunks[index].length; } for ( ; index < _chunksCount && withLength; index++) { IOByteCount copy = min(_chunks[index].length - offset, withLength); IOByteCount copied = _chunks[index].buffer->readBytes( /* offset */ offset + _chunks[index].offset, /* bytes */ bytes, /* length */ copy ); bytesCopied += copied; if ( copied != copy ) break; bytes = ((UInt8 *) bytes) + copied; withLength -= copied; offset = 0; } return bytesCopied; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOByteCount IODeblocker::writeBytes( IOByteCount offset, const void * bytes, IOByteCount withLength ) { // // Copies data to the memory descriptor's buffer at the given offset, from // the specified buffer. Returns the number of bytes copied. // IOByteCount bytesCopied = 0; unsigned index; for ( index = 0; index < _chunksCount; index++ ) { if ( offset < _chunks[index].length ) break; offset -= _chunks[index].length; } for ( ; index < _chunksCount && withLength; index++) { IOByteCount copy = min(_chunks[index].length - offset, withLength); IOByteCount copied = _chunks[index].buffer->writeBytes( /* offset */ offset + _chunks[index].offset, /* bytes */ bytes, /* length */ copy ); bytesCopied += copied; if ( copied != copy ) break; bytes = ((UInt8 *) bytes) + copied; withLength -= copied; offset = 0; } return bytesCopied; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool IODeblocker::getNextStage(UInt64 * byteStart) { // // Obtain the next stage of the transfer. The transfer buffer will be the // deblocker object itself and the byte start will be returned in byteStart. // // This method must not be called if the current stage failed with an error // or a short byte count, but instead getRequestCompletion() must be called // to adjust the status and actual byte count (with respect to the original // request) and return the original request's completion routine. The same // call to getRequestCompletion() should also be done if the getNextStage() // method returns false. // _chunksCount = 0; _direction = kIODirectionNone; _length = 0; switch ( _requestBuffer->getDirection() ) { case kIODirectionIn: // (read) { switch ( _stage ) { case kStageInit: { _stage = kStageLast; _excessBuffer->setDirection(kIODirectionIn); _direction = kIODirectionIn; *byteStart = _requestStart - _excessCountStart; if ( _excessCountStart ) { _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _excessCountStart; _chunksCount++; } _chunks[_chunksCount].buffer = _requestBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _requestBuffer->getLength(); _chunksCount++; if ( _excessCountFinal ) { _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _excessCountFinal; _chunksCount++; } } break; case kStageLast: { _stage = kStageDone; } break; default: { assert(0); } break; } // (switch) } break; case kIODirectionOut: // (write) { switch ( _stage ) { case kStageInit: { if ( _excessCountStart ) { _stage = kStagePrepareExcessStart; _excessBuffer->setDirection(kIODirectionIn); _direction = kIODirectionIn; *byteStart = _requestStart - _excessCountStart; _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _blockSize; _chunksCount++; break; } } // (fall thru) case kStagePrepareExcessStart: { if ( _excessCountFinal ) { // We do not issue this stage if the original transfer // resides within one media block, and we already read // that block into our buffer in the previous stage. if ( !_excessCountStart || !_requestIsOneBlock ) { _stage = kStagePrepareExcessFinal; _excessBuffer->setDirection(kIODirectionIn); _direction = kIODirectionIn; *byteStart = _requestStart + _requestCount + _excessCountFinal - _blockSize; _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = (_requestIsOneBlock) ? 0 : (_excessCountStart) ? _blockSize : 0; _chunks[_chunksCount].length = _blockSize; _chunksCount++; break; } } } // (fall thru) case kStagePrepareExcessFinal: { _stage = kStageLast; _excessBuffer->setDirection(kIODirectionOut); _direction = kIODirectionOut; *byteStart = _requestStart - _excessCountStart; if ( _excessCountStart ) { _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _excessCountStart; _chunksCount++; } _chunks[_chunksCount].buffer = _requestBuffer; _chunks[_chunksCount].offset = 0; _chunks[_chunksCount].length = _requestBuffer->getLength(); _chunksCount++; if ( _excessCountFinal ) { _chunks[_chunksCount].buffer = _excessBuffer; _chunks[_chunksCount].offset = (_requestIsOneBlock) ? 0 : (_excessCountStart) ? _blockSize : 0; _chunks[_chunksCount].offset += ( _blockSize - _excessCountFinal ); _chunks[_chunksCount].length = _excessCountFinal; _chunksCount++; } } break; case kStageLast: { _stage = kStageDone; } break; default: { assert(0); } break; } // (switch) } break; default: { assert(0); } break; } // (switch) // Determine whether we have an abort or completion condition. if ( _chunksCount == 0 ) return false; // Compute the total length of the descriptor over all chunks. for ( unsigned index = 0; index < _chunksCount; index++ ) { _length += _chunks[index].length; } return true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IODeblocker::getRequestCompletion( IOStorageCompletion * completion, IOReturn * status, UInt64 * actualByteCount ) { // // Obtain the completion information for the original request, taking // into account the status and actual byte count of the current stage. // *completion = _requestCompletion; switch ( _stage ) { case kStageInit: // (inital stage) { *status = kIOReturnInternalError; *actualByteCount = 0; } break; case kStagePrepareExcessStart: // (write preparation stage) case kStagePrepareExcessFinal: { *actualByteCount = 0; } break; case kStageLast: // (last stage) case kStageDone: { if ( *actualByteCount > _excessCountStart ) *actualByteCount -= _excessCountStart; else *actualByteCount = 0; if ( *actualByteCount > _requestBuffer->getLength() ) *actualByteCount = _requestBuffer->getLength(); } break; default: { assert(0); } break; } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IOMemoryDescriptor * IODeblocker::getRequestBuffer() { // // Obtain the buffer for the original request. // return _requestBuffer; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void * IODeblocker::getRequestContext() { // // Obtain the context for the original request. // return _requestContext; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::deblockRequest( UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion, IOBlockStorageDriver::Context * context ) { // // The deblockRequest method checks to see if the incoming request rests // on the media's block boundaries, and if not, deblocks it. Deblocking // involves rounding out the request to the nearest block boundaries and // transferring the excess bytes into a scratch buffer. // // This method is part of a sequence of methods invoked for each read/write // request. The first is prepareRequest, which allocates and prepares some // context for the transfer; the second is deblockRequest, which aligns the // transfer at the media block boundaries; and the third is executeRequest, // which implements the actual transfer from the block storage device. // // The current implementation of deblockRequest is asynchronous. // IODeblocker * deblocker; // If the request is aligned with the media's block boundaries, we // do short-circuit the deblocker and call executeRequest directly. if ( (byteStart % context->block.size) == 0 && (buffer->getLength() % context->block.size) == 0 ) { executeRequest(byteStart, buffer, completion, context); return; } // Build a deblocker object. deblocker = IODeblocker::withBlockSize( /* blockSize */ context->block.size, /* withRequestStart */ byteStart, /* withRequestBuffer */ buffer, /* withRequestCompletion */ completion, /* withRequestContext */ context ); if ( deblocker == 0 ) { complete(completion, kIOReturnNoMemory); return; } // This implementation of the deblocker permits only one read-modify-write // at any given time. Note that other write requests can, and do, proceed // simultaneously so long as they do not require the deblocker -- refer to // the read() and the write() routines for the short-cut logic. // // Note that the original buffer during a read-modify-write operation must // be prepared on the client's thread, that is, right now, or else it will // happen on the controller's thread after the read stage(s) complete, and // this is bad (causes deadlock if that controller was the swap device). if ( buffer->getDirection() == kIODirectionOut ) { if ( buffer->prepare() != kIOReturnSuccess ) { deblocker->release(); complete(completion, kIOReturnNoMemory); return; } IOLockLock(_deblockRequestWriteLock); } // Execute the transfer (for the next stage). deblockRequestCompletion(this, deblocker, kIOReturnSuccess, 0); return; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void IOBlockStorageDriver::deblockRequestCompletion( void * target, void * parameter, IOReturn status, UInt64 actualByteCount ) { // // This is the completion routine for the aligned deblocker subrequests. // It verifies the success of the just-completed stage, transitions to // the next stage, then builds and issues a transfer for the next stage. // UInt64 byteStart; IOStorageCompletion completion; Context * context; IODeblocker * deblocker = (IODeblocker *) parameter; IOBlockStorageDriver * driver = (IOBlockStorageDriver *) target; // Determine whether an error occurred or whether there are no more stages. if ( actualByteCount < deblocker->getLength() || status != kIOReturnSuccess || deblocker->getNextStage(&byteStart) == false ) { // Unlock the write-lock in order to allow the next write to proceed. if ( deblocker->getRequestBuffer()->getDirection() == kIODirectionOut ) { IOLockUnlock(driver->_deblockRequestWriteLock); deblocker->getRequestBuffer()->complete(); } // Obtain the completion information for the original request, taking // into account the status and actual byte count of the current stage. deblocker->getRequestCompletion(&completion, &status, &actualByteCount); // Complete the original request. IOStorage::complete(completion, status, actualByteCount); // Release our resources. deblocker->release(); return; } // Execute the transfer (for the next stage). completion.target = driver; completion.action = deblockRequestCompletion; completion.parameter = deblocker; context = (Context *) deblocker->getRequestContext(); driver->executeRequest(byteStart, deblocker, completion, context); return; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 0); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 1); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 2); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 3); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 4); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 5); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 6); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 7); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 8); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 9); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 10); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 11); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 12); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 13); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 14); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 15); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 16); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 17); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 18); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 19); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 20); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 21); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 22); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 23); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 24); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 25); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 26); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 27); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 28); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 29); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 30); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSMetaClassDefineReservedUnused(IOBlockStorageDriver, 31); |