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
|
/* $Id: udf.h $ */
/** @file
* IPRT, Universal Disk Format (UDF).
*/
/*
* Copyright (C) 2017-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_formats_udf_h
#define IPRT_INCLUDED_formats_udf_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/types.h>
#include <iprt/assertcompile.h>
#include <iprt/formats/iso9660.h>
/** @defgroup grp_rt_formats_udf Universal Disk Format (UDF) structures and definitions
* @ingroup grp_rt_formats
*
* References:
* - https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-167.pdf
* - http://www.osta.org/specs/pdf/udf260.pdf
* - http://wiki.osdev.org/UDF
* - https://sites.google.com/site/udfintro/
*
* @{
*/
/**
* UDF d-character string (@ecma167{1,7.2.12,25}).
*
* This is mainly to mark what's d-strings and what's not.
*/
typedef char UDFDSTRING;
/** Pointer to an UDF dstring. */
typedef UDFDSTRING *PUDFDSTRING;
/** Pointer to a const UDF dstring. */
typedef UDFDSTRING const *PCUDFDSTRING;
/**
* UDF extent allocation descriptor (AD) (@ecma167{3,7.1,42}).
*/
typedef struct UDFEXTENTAD
{
/** Extent length in bytes. */
uint32_t cb;
/** Extent offset (logical sector number).
* If @a cb is zero, this is also zero. */
uint32_t off;
} UDFEXTENTAD;
AssertCompileSize(UDFEXTENTAD, 8);
/** Pointer to an UDF extent descriptor. */
typedef UDFEXTENTAD *PUDFEXTENTAD;
/** Pointer to a const UDF extent descriptor. */
typedef UDFEXTENTAD const *PCUDFEXTENTAD;
/**
* UDF logical block address (@ecma167{4,7.1,73}).
*/
#pragma pack(2)
typedef struct UDFLBADDR
{
/** Logical block number, relative to the start of the given partition. */
uint32_t off;
/** Partition reference number. */
uint16_t uPartitionNo;
} UDFLBADDR;
#pragma pack()
AssertCompileSize(UDFLBADDR, 6);
/** Pointer to an UDF logical block address. */
typedef UDFLBADDR *PUDFLBADDR;
/** Pointer to a const UDF logical block address. */
typedef UDFLBADDR const *PCUDFLBADDR;
/** @name UDF_AD_TYPE_XXX - Allocation descriptor types.
*
* Used by UDFSHORTAD::uType, UDFLONGAD::uType and UDFEXTAD::uType.
*
* See @ecma167{4,14.14.1.1,116}.
*
* @{ */
/** Recorded and allocated.
* Also used for zero length descriptors. */
#define UDF_AD_TYPE_RECORDED_AND_ALLOCATED 0
/** Allocated but not recorded. */
#define UDF_AD_TYPE_ONLY_ALLOCATED 1
/** Not recorded nor allocated. */
#define UDF_AD_TYPE_FREE 2
/** Location of the an UDFALLOCATIONEXTENTDESC.
* This is used when the ICB doesn't contain suffient room for all the
* allocation descriptors. */
#define UDF_AD_TYPE_NEXT 3
/** @} */
/**
* UDF short allocation descriptor (@ecma167{4,14.14.1,116}).
*/
typedef struct UDFSHORTAD
{
#ifdef RT_BIG_ENDIAN
/** Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
/** Extent length in bytes, top 2 bits . */
uint32_t cb : 30;
#else
/** Extent length in bytes. */
uint32_t cb : 30;
/** Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
#endif
/** Extent offset (logical sector number). */
uint32_t off;
} UDFSHORTAD;
AssertCompileSize(UDFSHORTAD, 8);
/** Pointer to an UDF short allocation descriptor. */
typedef UDFSHORTAD *PUDFSHORTAD;
/** Pointer to a const UDF short allocation descriptor. */
typedef UDFSHORTAD const *PCUDFSHORTAD;
/**
* UDF long allocation descriptor (@ecma167{4,14.14.2,116}).
*/
#pragma pack(2)
typedef struct UDFLONGAD
{
#ifdef RT_BIG_ENDIAN
/** Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
/** Extent length in bytes, top 2 bits . */
uint32_t cb : 30;
#else
/** Extent length in bytes. */
uint32_t cb : 30;
/** Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
#endif
/** Extent location. */
UDFLBADDR Location;
/** Implementation use area. */
union
{
/** Generic view. */
uint8_t ab[6];
/** Used in FIDs.
* See @udf260{2.3.10.1,66}, @udf260{2.3.4.3,58}.
*/
struct
{
/** Flags (UDF_AD_IMP_USE_FLAGS_XXX). */
uint16_t fFlags;
/** Unique ID. */
uint32_t idUnique;
} Fid;
} ImplementationUse;
} UDFLONGAD;
#pragma pack()
AssertCompileSize(UDFLONGAD, 16);
/** Pointer to an UDF long allocation descriptor. */
typedef UDFLONGAD *PUDFLONGAD;
/** Pointer to a const UDF long allocation descriptor. */
typedef UDFLONGAD const *PCUDFLONGAD;
/** @name UDF_AD_IMP_USE_FLAGS_XXX - UDFLONGAD::ImplementationUse::Fid::fFlags values
* See @udf260{2.3.10.1,66}.
* @{ */
/** Set if erased and the extend is of the type UDF_AD_TYPE_ONLY_ALLOCATED. */
#define UDF_AD_IMP_USE_FLAGS_ERASED UINT16_C(0x0001)
/** Valid mask. */
#define UDF_AD_IMP_USE_FLAGS_VALID_MASK UINT16_C(0x0001)
/** @} */
/**
* UDF extended allocation descriptor (@ecma167{4,14.14.3,117}).
*/
typedef struct UDFEXTAD
{
#ifdef RT_BIG_ENDIAN
/** 0x00: Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
/** 0x00: Extent length in bytes, top 2 bits . */
uint32_t cb : 30;
/** 0x04: Reserved, MBZ. */
uint32_t uReserved : 2;
/** 0x04: Number of bytes recorded. */
uint32_t cbRecorded : 30;
#else
/** 0x00: Extent length in bytes. */
uint32_t cb : 30;
/** 0x00: Extent type (UDF_AD_TYPE_XXX). */
uint32_t uType : 2;
/** 0x04: Number of bytes recorded. */
uint32_t cbRecorded : 30;
/** 0x04: Reserved, MBZ. */
uint32_t uReserved : 2;
#endif
/** 0x08: Number of bytes of information (from first byte). */
uint32_t cbInformation;
/** 0x0c: Extent location. */
UDFLBADDR Location;
/** 0x12: Implementation use area. */
uint8_t abImplementationUse[2];
} UDFEXTAD;
AssertCompileSize(UDFEXTAD, 20);
/** Pointer to an UDF extended allocation descriptor. */
typedef UDFEXTAD *PUDFEXTAD;
/** Pointer to a const UDF extended allocation descriptor. */
typedef UDFEXTAD const *PCUDFEXTAD;
/**
* UDF timestamp (@ecma167{1,7.3,25}, @udf260{2.1.4,19}).
*/
typedef struct UDFTIMESTAMP
{
#ifdef RT_BIG_ENDIAN
/** 0x00: Type (UDFTIMESTAMP_T_XXX). */
RT_GCC_EXTENSION uint16_t fType : 4;
/** 0x00: Time zone offset in minutes.
* For EST this will be -300, whereas for CET it will be 60. */
RT_GCC_EXTENSION int16_t offUtcInMin : 12;
#else
/** 0x00: Time zone offset in minutes.
* For EST this will be -300, whereas for CET it will be 60. */
RT_GCC_EXTENSION int16_t offUtcInMin : 12;
/** 0x00: Type (UDFTIMESTAMP_T_XXX). */
RT_GCC_EXTENSION uint16_t fType : 4;
#endif
/** 0x02: The year. */
int16_t iYear;
/** 0x04: Month of year (1-12). */
uint8_t uMonth;
/** 0x05: Day of month (1-31). */
uint8_t uDay;
/** 0x06: Hour of day (0-23). */
uint8_t uHour;
/** 0x07: Minute of hour (0-59). */
uint8_t uMinute;
/** 0x08: Second of minute (0-60 if type 2, otherwise 0-59). */
uint8_t uSecond;
/** 0x09: Number of Centiseconds (0-99). */
uint8_t cCentiseconds;
/** 0x0a: Number of hundreds of microseconds (0-99). Unit is 100us. */
uint8_t cHundredsOfMicroseconds;
/** 0x0b: Number of microseconds (0-99). */
uint8_t cMicroseconds;
} UDFTIMESTAMP;
AssertCompileSize(UDFTIMESTAMP, 12);
/** Pointer to an UDF timestamp. */
typedef UDFTIMESTAMP *PUDFTIMESTAMP;
/** Pointer to a const UDF timestamp. */
typedef UDFTIMESTAMP const *PCUDFTIMESTAMP;
/** @name UDFTIMESTAMP_T_XXX
* @{ */
/** Local time. */
#define UDFTIMESTAMP_T_LOCAL 1
/** @} */
/** No time zone specified. */
#define UDFTIMESTAMP_NO_TIME_ZONE (-2047)
/**
* UDF character set specficiation (@ecma167{1,7.2.1,21}, @udf260{2.1.2,18}).
*/
typedef struct UDFCHARSPEC
{
/** The character set type (UDF_CHAR_SET_TYPE_XXX) */
uint8_t uType;
/** Character set information. */
uint8_t abInfo[63];
} UDFCHARSPEC;
AssertCompileSize(UDFCHARSPEC, 64);
/** Pointer to UDF character set specification. */
typedef UDFCHARSPEC *PUDFCHARSPEC;
/** Pointer to const UDF character set specification. */
typedef UDFCHARSPEC const *PCUDFCHARSPEC;
/** @name UDF_CHAR_SET_TYPE_XXX - Character set types.
* @{ */
/** CS0: By agreement between the medium producer and consumer.
* See UDF_CHAR_SET_OSTA_COMPRESSED_UNICODE. */
#define UDF_CHAR_SET_TYPE_BY_AGREEMENT UINT8_C(0x00)
/** CS1: ASCII (ECMA-6) with all or part of the specified graphic characters. */
#define UDF_CHAR_SET_TYPE_ASCII UINT8_C(0x01)
/** CS5: Latin-1 (ECMA-94) with all graphical characters. */
#define UDF_CHAR_SET_TYPE_LATIN_1 UINT8_C(0x05)
/* there are more defined here, but they are mostly useless, since UDF only uses CS0. */
/** The CS0 definition used by the UDF specification. */
#define UDF_CHAR_SET_OSTA_COMPRESSED_UNICODE UDF_CHAR_SET_TYPE_BY_AGREEMENT
/** String to put in the UDFCHARSEPC::abInfo field for UDF CS0. */
#define UDF_CHAR_SET_OSTA_COMPRESSED_UNICODE_INFO "OSTA Compressed Unicode"
/** @} */
/**
* UDF entity identifier (@ecma167{1,7.4,26}, @udf260{2.1.5,20}).
*/
typedef struct UDFENTITYID
{
/** 0x00: Flags (UDFENTITYID_FLAGS_XXX). */
uint8_t fFlags;
/** 0x01: Identifier string (see UDF_ENTITY_ID_XXX). */
char achIdentifier[23];
/** 0x18: Identifier suffix. */
union
{
/** Domain ID suffix. */
struct
{
uint16_t uUdfRevision;
uint8_t fDomain;
uint8_t abReserved[5];
} Domain;
/** UDF ID suffix. */
struct
{
uint16_t uUdfRevision;
uint8_t bOsClass;
uint8_t idOS;
uint8_t abReserved[4];
} Udf;
/** Implementation ID suffix. */
struct
{
uint8_t bOsClass;
uint8_t idOS;
uint8_t achImplUse[6];
} Implementation;
/** Application ID suffix / generic. */
uint8_t abApplication[8];
} Suffix;
} UDFENTITYID;
AssertCompileSize(UDFENTITYID, 32);
/** Pointer to UDF entity identifier. */
typedef UDFENTITYID *PUDFENTITYID;
/** Pointer to const UDF entity identifier. */
typedef UDFENTITYID const *PCUDFENTITYID;
/** @name UDF_ENTITY_ID_XXX - UDF identifier strings
*
* See @udf260{2.1.5.2,21}.
*
* @{ */
/** Implementation use volume descriptor, implementation ID field.
* UDF ID suffix. */
#define UDF_ENTITY_ID_IUVD_IMPLEMENTATION "*UDF LV Info"
/** Partition descriptor, partition contents field, set to indicate UDF
* (ECMA-167 2nd edition). Application ID suffix. */
#define UDF_ENTITY_ID_PD_PARTITION_CONTENTS_UDF_2 "+NSR02"
/** Partition descriptor, partition contents field, set to indicate UDF
* (ECMA-167 3rd edition). Application ID suffix. */
#define UDF_ENTITY_ID_PD_PARTITION_CONTENTS_UDF_3 "+NSR03"
/** Partition descriptor, partition contents field, set to indicate ISO-9660
* (ECMA-119). Application ID suffix. */
#define UDF_ENTITY_ID_PD_PARTITION_CONTENTS_ISO9660 "+CD001"
/** Partition descriptor, partition contents field, set to indicate ECMA-168.
* Application ID suffix. */
#define UDF_ENTITY_ID_PD_PARTITION_CONTENTS_CDW "+CDW02"
/** Partition descriptor, partition contents field, set to indicate FAT
* (ECMA-107). Application ID suffix. */
#define UDF_ENTITY_ID_PD_PARTITION_CONTENTS_FAT "+FDC01"
/** Logical volume descriptor, domain ID field.
* Domain ID suffix. */
#define UDF_ENTITY_ID_LVD_DOMAIN "*OSTA UDF Compliant"
/** File set descriptor, domain ID field.
* Domain ID suffix. */
#define UDF_ENTITY_FSD_LVD_DOMAIN "*OSTA UDF Compliant"
/** UDF implementation use extended attribute, implementation ID field, set
* to free EA space. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_FREE_EA_SPACE "*UDF FreeEASpace"
/** UDF implementation use extended attribute, implementation ID field, set
* to DVD copyright management information. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_DVD_CGMS_INFO "*UDF DVD CGMS Info"
/** UDF implementation use extended attribute, implementation ID field, set
* to OS/2 extended attribute length. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_OS2_EA_LENGTH "*UDF OS/2 EALength"
/** UDF implementation use extended attribute, implementation ID field, set
* to Machintosh OS volume information. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_MAC_VOLUME_INFO "*UDF Mac VolumeInfo"
/** UDF implementation use extended attribute, implementation ID field, set
* to Machintosh Finder Info. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_MAC_FINDER_INFO "*UDF Mac FinderInfo"
/** UDF implementation use extended attribute, implementation ID field, set
* to OS/400 extended directory information. UDF ID suffix. */
#define UDF_ENTITY_ID_IUEA_OS400_DIR_INFO "*UDF OS/400 DirInfo"
/** UDF application use extended attribute, application ID field, set
* to free application use EA space. UDF ID suffix. */
#define UDF_ENTITY_ID_AUEA_FREE_EA_SPACE "*UDF FreeAppEASpace"
/** Virtual partition map, partition type field.
* UDF ID suffix. */
#define UDF_ENTITY_ID_VPM_PARTITION_TYPE "*UDF Virtual Partition"
/** Sparable partition map, partition type field.
* UDF ID suffix. */
#define UDF_ENTITY_ID_SPM_PARTITION_TYPE "*UDF Sparable Partition"
/** Metadata partition map, partition type field.
* UDF ID suffix. */
#define UDF_ENTITY_ID_MPM_PARTITION_TYPE "*UDF Metadata Partition"
/** Sparing table, sparing identifier field.
* UDF ID suffix. */
#define UDF_ENTITY_ID_ST_SPARING "*UDF Sparting Table"
/** @} */
/**
* UDF descriptor tag (@ecma167{3,7.2,42}, @udf260{2.2.1,26}).
*/
typedef struct UDFTAG
{
/** 0x00: Tag identifier (UDF_TAG_ID_XXX). */
uint16_t idTag;
/** 0x02: Descriptor version. */
uint16_t uVersion;
/** 0x04: Tag checksum.
* Sum of each byte in the structure with this field as zero. */
uint8_t uChecksum;
/** 0x05: Reserved, MBZ. */
uint8_t bReserved;
/** 0x06: Tag serial number. */
uint16_t uTagSerialNo;
/** 0x08: Descriptor CRC. */
uint16_t uDescriptorCrc;
/** 0x0a: Descriptor CRC length. */
uint16_t cbDescriptorCrc;
/** 0x0c: The tag location (logical sector number). */
uint32_t offTag;
} UDFTAG;
AssertCompileSize(UDFTAG, 16);
/** Pointer to an UDF descriptor tag. */
typedef UDFTAG *PUDFTAG;
/** Pointer to a const UDF descriptor tag. */
typedef UDFTAG const *PCUDFTAG;
/** @name UDF_TAG_ID_XXX - UDF descriptor tag IDs.
* @{ */
#define UDF_TAG_ID_PRIMARY_VOL_DESC UINT16_C(0x0001) /**< See UDFPRIMARYVOLUMEDESC */
#define UDF_TAG_ID_ANCHOR_VOLUME_DESC_PTR UINT16_C(0x0002) /**< See UDFANCHORVOLUMEDESCPTR */
#define UDF_TAG_ID_VOLUME_DESC_PTR UINT16_C(0x0003) /**< See UDFVOLUMEDESCPTR */
#define UDF_TAG_ID_IMPLEMENTATION_USE_VOLUME_DESC UINT16_C(0x0004) /**< See UDFIMPLEMENTATIONUSEVOLUMEDESC */
#define UDF_TAG_ID_PARTITION_DESC UINT16_C(0x0005) /**< See UDFPARTITIONDESC */
#define UDF_TAG_ID_LOGICAL_VOLUME_DESC UINT16_C(0x0006) /**< See UDFLOGICALVOLUMEDESC */
#define UDF_TAG_ID_UNALLOCATED_SPACE_DESC UINT16_C(0x0007) /**< See UDFUNALLOCATEDSPACEDESC */
#define UDF_TAG_ID_TERMINATING_DESC UINT16_C(0x0008) /**< See UDFTERMINATINGDESC */
#define UDF_TAG_ID_LOGICAL_VOLUME_INTEGRITY_DESC UINT16_C(0x0009) /**< See UDFLOGICALVOLINTEGRITYDESC */
#define UDF_TAG_ID_FILE_SET_DESC UINT16_C(0x0100) /**< See UDFFILESETDESC */
#define UDF_TAG_ID_FILE_ID_DESC UINT16_C(0x0101) /**< See UDFFILEIDDESC */
#define UDF_TAG_ID_ALLOCATION_EXTENT_DESC UINT16_C(0x0102) /**< See UDFALLOCATIONEXTENTDESC */
#define UDF_TAG_ID_INDIRECT_ENTRY UINT16_C(0x0103) /**< See UDFINDIRECTENTRY */
#define UDF_TAG_ID_TERMINAL_ENTRY UINT16_C(0x0104) /**< See UDFTERMINALENTRY */
#define UDF_TAG_ID_FILE_ENTRY UINT16_C(0x0105) /**< See UDFFILEENTRY */
#define UDF_TAG_ID_EXTENDED_ATTRIB_HDR_DESC UINT16_C(0x0106) /**< See UDFEXTATTRIBHDRDESC */
#define UDF_TAG_ID_UNALLOCATED_SPACE_ENTRY UINT16_C(0x0107) /**< See UDFUNALLOCATEDSPACEENTRY */
#define UDF_TAG_ID_SPACE_BITMAP_DESC UINT16_C(0x0108) /**< See UDFSPACEBITMAPDESC */
#define UDF_TAG_ID_PARTITION_INTEGERITY_DESC UINT16_C(0x0109) /**< See UDFPARTITIONINTEGRITYDESC */
#define UDF_TAG_ID_EXTENDED_FILE_ENTRY UINT16_C(0x010a) /**< See UDFEXFILEENTRY */
/** @} */
/**
* UDF primary volume descriptor (PVD) (@ecma167{3,10.1,50},
* @udf260{2.2.2,27}).
*/
typedef struct UDFPRIMARYVOLUMEDESC
{
/** 0x000: The descriptor tag (UDF_TAG_ID_PRIMARY_VOL_DESC). */
UDFTAG Tag;
/** 0x010: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x014: Primary volume descriptor number. */
uint32_t uPrimaryVolumeDescNo;
/** 0x018: Volume identifier (dstring). */
UDFDSTRING achVolumeID[32];
/** 0x038: Volume sequence number. */
uint16_t uVolumeSeqNo;
/** 0x03a: Maximum volume sequence number. */
uint16_t uMaxVolumeSeqNo;
/** 0x03c: Interchange level. */
uint16_t uInterchangeLevel;
/** 0x03e: Maximum interchange level. */
uint16_t uMaxInterchangeLevel;
/** 0x040: Character set bitmask (aka list). Each bit correspond to a
* character set number. */
uint32_t fCharacterSets;
/** 0x044: Maximum character set bitmask (aka list). */
uint32_t fMaxCharacterSets;
/** 0x048: Volume set identifier (dstring). This starts with 16 unique
* characters, the first 8 being the hex representation of a time value. */
UDFDSTRING achVolumeSetID[128];
/** 0x0c8: Descriptor character set.
* For achVolumeSetID and achVolumeID. */
UDFCHARSPEC DescCharSet;
/** 0x108: Explanatory character set.
* For VolumeAbstract and VolumeCopyrightNotice data. */
UDFCHARSPEC ExplanatoryCharSet;
/** 0x148: Volume abstract. */
UDFEXTENTAD VolumeAbstract;
/** 0x150: Volume copyright notice. */
UDFEXTENTAD VolumeCopyrightNotice;
/** 0x158: Application identifier ("*Application ID"). */
UDFENTITYID idApplication;
/** 0x178: Recording date and time. */
UDFTIMESTAMP RecordingTimestamp;
/** 0x184: Implementation identifier ("*Developer ID"). */
UDFENTITYID idImplementation;
/** 0x1a4: Implementation use. */
uint8_t abImplementationUse[64];
/** 0x1e4: Predecessor volume descriptor sequence location. */
uint32_t offPredecessorVolDescSeq;
/** 0x1e8: Flags (UDF_PVD_FLAGS_XXX). */
uint16_t fFlags;
/** 0x1ea: Reserved. */
uint8_t abReserved[22];
} UDFPRIMARYVOLUMEDESC;
AssertCompileSize(UDFPRIMARYVOLUMEDESC, 512);
/** Pointer to a UDF primary volume descriptor. */
typedef UDFPRIMARYVOLUMEDESC *PUDFPRIMARYVOLUMEDESC;
/** Pointer to a const UDF primary volume descriptor. */
typedef UDFPRIMARYVOLUMEDESC const *PCUDFPRIMARYVOLUMEDESC;
/** @name UDF_PVD_FLAGS_XXX - Flags for UDFPRIMARYVOLUMEDESC::fFlags.
* @{ */
/** Indicates that the volume set ID is common to all members of the set. */
#define UDF_PVD_FLAGS_COMMON_VOLUME_SET_ID UINT16_C(0x0001)
/** @} */
/**
* UDF anchor volume descriptor pointer (AVDP) (@ecma167{3,10.2,53},
* @udf260{2.2.3,29}).
*
* This is stored at least two of these locations:
* - logical sector 256
* - logical sector N - 256.
* - logical sector N.
*/
typedef struct UDFANCHORVOLUMEDESCPTR
{
/** 0x00: The descriptor tag (UDF_TAG_ID_ANCHOR_VOLUME_DESC_PTR). */
UDFTAG Tag;
/** 0x10: The extent describing the main volume descriptor sequence. */
UDFEXTENTAD MainVolumeDescSeq;
/** 0x18: Location of the backup descriptor sequence. */
UDFEXTENTAD ReserveVolumeDescSeq;
/** 0x20: Reserved, probably must be zeros. */
uint8_t abReserved[0x1e0];
} UDFANCHORVOLUMEDESCPTR;
AssertCompileSize(UDFANCHORVOLUMEDESCPTR, 512);
/** Pointer to UDF anchor volume descriptor pointer. */
typedef UDFANCHORVOLUMEDESCPTR *PUDFANCHORVOLUMEDESCPTR;
/** Pointer to const UDF anchor volume descriptor pointer. */
typedef UDFANCHORVOLUMEDESCPTR const *PCUDFANCHORVOLUMEDESCPTR;
/**
* UDF volume descriptor pointer (VDP) (@ecma167{3,10.3,53}).
*/
typedef struct UDFVOLUMEDESCPTR
{
/** 0x00: The descriptor tag (UDF_TAG_ID_VOLUME_DESC_PTR). */
UDFTAG Tag;
/** 0x10: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x14: Location of the next volume descriptor sequence. */
UDFEXTENTAD NextVolumeDescSeq;
/** 0x1c: Reserved, probably must be zeros. */
uint8_t abReserved[484];
} UDFVOLUMEDESCPTR;
AssertCompileSize(UDFVOLUMEDESCPTR, 512);
/** Pointer to UDF volume descriptor pointer. */
typedef UDFVOLUMEDESCPTR *PUDFVOLUMEDESCPTR;
/** Pointer to const UDF volume descriptor pointer. */
typedef UDFVOLUMEDESCPTR const *PCUDFVOLUMEDESCPTR;
/**
* UDF implementation use volume descriptor (IUVD) (@ecma167{3,10.4,55},
* @udf260{2.2.7,35}).
*/
typedef struct UDFIMPLEMENTATIONUSEVOLUMEDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_IMPLEMENTATION_USE_VOLUME_DESC). */
UDFTAG Tag;
/** 0x10: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x14: The implementation identifier (UDF_ENTITY_ID_IUVD_IMPLEMENTATION). */
UDFENTITYID idImplementation;
/** 0x34: The implementation use area. */
union
{
/** Generic view. */
uint8_t ab[460];
/** Logical volume information (@udf260{2.2.7.2,35}). */
struct
{
/** 0x034: The character set used in this sub-structure. */
UDFCHARSPEC Charset;
/** 0x074: Logical volume identifier. */
UDFDSTRING achVolumeID[128];
/** 0x0f4: Info string \#1. */
UDFDSTRING achInfo1[36];
/** 0x118: Info string \#2. */
UDFDSTRING achInfo2[36];
/** 0x13c: Info string \#3. */
UDFDSTRING achInfo3[36];
/** 0x160: The implementation identifier ("*Developer ID"). */
UDFENTITYID idImplementation;
/** 0x180: Additional use bytes. */
uint8_t abUse[128];
} Lvi;
} ImplementationUse;
} UDFIMPLEMENTATIONUSEVOLUMEDESC;
AssertCompileSize(UDFIMPLEMENTATIONUSEVOLUMEDESC, 512);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.Charset, 0x034);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.achVolumeID, 0x074);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.achInfo1, 0x0f4);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.achInfo2, 0x118);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.achInfo3, 0x13c);
AssertCompileMemberOffset(UDFIMPLEMENTATIONUSEVOLUMEDESC, ImplementationUse.Lvi.idImplementation, 0x160);
/** Pointer to an UDF implementation use volume descriptor. */
typedef UDFIMPLEMENTATIONUSEVOLUMEDESC *PUDFIMPLEMENTATIONUSEVOLUMEDESC;
/** Pointer to a const UDF implementation use volume descriptor. */
typedef UDFIMPLEMENTATIONUSEVOLUMEDESC const *PCUDFIMPLEMENTATIONUSEVOLUMEDESC;
/**
* UDF partition header descriptor (@ecma167{4,14.3,90}, @udf260{2.3.3,56}).
*
* This is found in UDFPARTITIONDESC::ContentsUse.
*/
typedef struct UDFPARTITIONHDRDESC
{
/** 0x00: Unallocated space table location. Zero length means no table. */
UDFSHORTAD UnallocatedSpaceTable;
/** 0x08: Unallocated space bitmap location. Zero length means no bitmap. */
UDFSHORTAD UnallocatedSpaceBitmap;
/** 0x10: Partition integrity table location. Zero length means no table. */
UDFSHORTAD PartitionIntegrityTable;
/** 0x18: Freed space table location. Zero length means no table. */
UDFSHORTAD FreedSpaceTable;
/** 0x20: Freed space bitmap location. Zero length means no bitmap. */
UDFSHORTAD FreedSpaceBitmap;
/** 0x28: Reserved, MBZ. */
uint8_t abReserved[88];
} UDFPARTITIONHDRDESC;
AssertCompileSize(UDFPARTITIONHDRDESC, 128);
AssertCompileMemberOffset(UDFPARTITIONHDRDESC, PartitionIntegrityTable, 0x10);
AssertCompileMemberOffset(UDFPARTITIONHDRDESC, abReserved, 0x28);
/** Pointer to an UDF partition header descriptor. */
typedef UDFPARTITIONHDRDESC *PUDFPARTITIONHDRDESC;
/** Pointer to a const UDF partition header descriptor. */
typedef UDFPARTITIONHDRDESC const *PCUDFPARTITIONHDRDESC;
/**
* UDF partition descriptor (PD) (@ecma167{3,10.5,55}, @udf260{2.2.14,51}).
*/
typedef struct UDFPARTITIONDESC
{
/** 0x000: The descriptor tag (UDF_TAG_ID_PARTITION_DESC). */
UDFTAG Tag;
/** 0x010: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x014: The partition flags (UDF_PARTITION_FLAGS_XXX). */
uint16_t fFlags;
/** 0x016: The partition number. */
uint16_t uPartitionNo;
/** 0x018: Partition contents (UDF_ENTITY_ID_PD_PARTITION_CONTENTS_XXX). */
UDFENTITYID idPartitionContents;
/** 0x038: partition contents use (depends on the idPartitionContents field). */
union
{
/** Generic view. */
uint8_t ab[128];
/** UDF partition header descriptor
* (UDF_ENTITY_ID_PD_PARTITION_CONTENTS_UDF_3). */
UDFPARTITIONHDRDESC Hdr;
} ContentsUse;
/** 0x0b8: Access type (UDF_PART_ACCESS_TYPE_XXX). */
uint32_t uAccessType;
/** 0x0bc: Partition starting location (logical sector number). */
uint32_t offLocation;
/** 0x0c0: Partition length in sectors. */
uint32_t cSectors;
/** 0x0c4: Implementation identifier ("*Developer ID"). */
UDFENTITYID idImplementation;
/** 0x0e4: Implementation use bytes. */
union
{
/** Generic view. */
uint8_t ab[128];
} ImplementationUse;
/** 0x164: Reserved. */
uint8_t abReserved[156];
} UDFPARTITIONDESC;
AssertCompileSize(UDFPARTITIONDESC, 512);
/** Pointer to an UDF partitions descriptor. */
typedef UDFPARTITIONDESC *PUDFPARTITIONDESC;
/** Pointer to a const UDF partitions descriptor. */
typedef const UDFPARTITIONDESC *PCUDFPARTITIONDESC;
/** @name UDF_PARTITION_FLAGS_XXX - UDF partition flags
*
* See @ecma167{3,10.5.3,56}.
*
* @{ */
/** Space has been allocated for this partition. */
#define UDF_PARTITION_FLAGS_ALLOCATED UINT16_C(0x00000001)
/** @} */
/** @name UDF_PART_ACCESS_TYPE_XXX - UDF partition access types
*
* See @ecma167{3,10.5.7,57}, @udf260{2.2.14.2,51}.
*
* @{ */
/** Access not specified by this field. */
#define UDF_PART_ACCESS_TYPE_NOT_SPECIFIED UINT32_C(0x00000000)
/** Read only: No writes. */
#define UDF_PART_ACCESS_TYPE_READ_ONLY UINT32_C(0x00000001)
/** Write once: Sectors can only be written once. */
#define UDF_PART_ACCESS_TYPE_WRITE_ONCE UINT32_C(0x00000002)
/** Rewritable: Logical sectors may require preprocessing before writing. */
#define UDF_PART_ACCESS_TYPE_REWRITABLE UINT32_C(0x00000003)
/** Overwritable: No restrictions on writing. */
#define UDF_PART_ACCESS_TYPE_OVERWRITABLE UINT32_C(0x00000004)
/** @} */
/**
* Logical volume descriptor (LVD) (@ecma167{3,10.6,58}, @udf260{2.2.4,30}).
*
* @note Variable length.
*/
typedef struct UDFLOGICALVOLUMEDESC
{
/** 0x000: The descriptor tag (UDF_TAG_ID_LOGICAL_VOLUME_DESC). */
UDFTAG Tag;
/** 0x010: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x014: Character set used in the achLogicalVolumeID field. */
UDFCHARSPEC DescCharSet;
/** 0x054: The logical volume ID (label). */
UDFDSTRING achLogicalVolumeID[128];
/** 0x0d4: Logical block size (in bytes). */
uint32_t cbLogicalBlock;
/** 0x0d8: Domain identifier (UDF_ENTITY_ID_LVD_DOMAIN). */
UDFENTITYID idDomain;
/** 0x0f8: Logical volume contents use. */
union
{
/** Byte view. */
uint8_t ab[16];
/** The extent containing the file set descriptor. */
UDFLONGAD FileSetDescriptor;
} ContentsUse;
/** 0x108: Map table length (in bytes). */
uint32_t cbMapTable;
/** 0x10c: Number of partition maps. */
uint32_t cPartitionMaps;
/** 0x110: Implementation identifier ("*Developer ID"). */
UDFENTITYID idImplementation;
/** 0x130: Implementation use. */
union
{
/** Byte view. */
uint8_t ab[128];
} ImplementationUse;
/** 0x1b0: Integrity sequence extent. Can be zero if cPartitionMaps is zero. */
UDFEXTENTAD IntegritySeqExtent;
/** 0x1b8: Partition maps (length given by @a cbMapTable), data format is
* defined by UDFPARTMAPHDR, UDFPARTMAPTYPE1 and UDFPARTMAPTYPE2. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abPartitionMaps[RT_FLEXIBLE_ARRAY];
} UDFLOGICALVOLUMEDESC;
AssertCompileMemberOffset(UDFLOGICALVOLUMEDESC, abPartitionMaps, 0x1b8);
/** Pointer to an UDF logical volume descriptor. */
typedef UDFLOGICALVOLUMEDESC *PUDFLOGICALVOLUMEDESC;
/** Pointer to a const UDF logical volume descriptor. */
typedef UDFLOGICALVOLUMEDESC const *PCUDFLOGICALVOLUMEDESC;
/**
* Partition map header (UDFLOGICALVOLUMEDESC::abPartitionMaps).
*/
typedef struct UDFPARTMAPHDR
{
/** 0x00: The partition map type. */
uint8_t bType;
/** 0x01: The partition map length (header included). */
uint8_t cb;
} UDFPARTMAPHDR;
AssertCompileSize(UDFPARTMAPHDR, 2);
/** Pointer to a partition map header. */
typedef UDFPARTMAPHDR *PUDFPARTMAPHDR;
/** Pointer to a const partition map header. */
typedef UDFPARTMAPHDR const *PCUDFPARTMAPHDR;
/**
* Partition map type 1 (UDFLOGICALVOLUMEDESC::abPartitionMaps).
*/
typedef struct UDFPARTMAPTYPE1
{
/** 0x00: Header (uType=1, cb=6). */
UDFPARTMAPHDR Hdr;
/** 0x02: Volume sequence number. */
uint16_t uVolumeSeqNo;
/** 0x04: Partition number. */
uint16_t uPartitionNo;
} UDFPARTMAPTYPE1;
AssertCompileSize(UDFPARTMAPTYPE1, 6);
/** Pointer to a type 1 partition map. */
typedef UDFPARTMAPTYPE1 *PUDFPARTMAPTYPE1;
/** Pointer to a const type 1 partition map. */
typedef UDFPARTMAPTYPE1 const *PCUDFPARTMAPTYPE1;
/**
* Partition map type 2 (UDFLOGICALVOLUMEDESC::abPartitionMaps).
*/
typedef struct UDFPARTMAPTYPE2
{
/** 0x00: Header (uType=2, cb=64). */
UDFPARTMAPHDR Hdr;
/** 0x02: Reserved \#1. */
uint16_t uReserved1;
/** 0x04: Partition ID type (UDF_ENTITY_ID_VPM_PARTITION_TYPE,
* UDF_ENTITY_ID_SPM_PARTITION_TYPE, or UDF_ENTITY_ID_MPM_PARTITION_TYPE). */
UDFENTITYID idPartitionType;
/** 0x24: Volume sequence number. */
uint16_t uVolumeSeqNo;
/** 0x26: Partition number. */
uint16_t uPartitionNo;
/** 0x28: Data specific to the partition ID type. */
union
{
/** 0x28: Generic view. */
uint8_t ab[24];
/** UDF_ENTITY_ID_VPM_PARTITION_TYPE. */
struct
{
/** 0x28: Reserved. */
uint8_t abReserved2[24];
} Vpm;
/** UDF_ENTITY_ID_SPM_PARTITION_TYPE. */
struct
{
/** 0x28: Packet length in blocks. */
uint16_t cBlocksPerPacket;
/** 0x2a: Number of sparing tables. */
uint8_t cSparingTables;
/** 0x2b: Reserved padding byte. */
uint8_t bReserved2;
/** 0x2c: The size of each sparing table. */
uint32_t cbSparingTable;
/** 0x30: The sparing table locations (logical block). */
uint32_t aoffSparingTables[4];
} Spm;
/** UDF_ENTITY_ID_MPM_PARTITION_TYPE. */
struct
{
/** 0x28: Metadata file entry location (logical block). */
uint32_t offMetadataFile;
/** 0x2c: Metadata mirror file entry location (logical block). */
uint32_t offMetadataMirrorFile;
/** 0x30: Metadata bitmap file entry location (logical block). */
uint32_t offMetadataBitmapFile;
/** 0x34: The metadata allocation unit (logical blocks) */
uint32_t cBlocksAllocationUnit;
/** 0x38: The metadata allocation unit alignment (logical blocks). */
uint16_t cBlocksAlignmentUnit;
/** 0x3a: Flags, UDFPARTMAPMETADATA_F_XXX. */
uint8_t fFlags;
/** 0x3b: Reserved. */
uint8_t abReserved2[5];
} Mpm;
} u;
} UDFPARTMAPTYPE2;
AssertCompileSize(UDFPARTMAPTYPE2, 64);
/** Pointer to a type 2 partition map. */
typedef UDFPARTMAPTYPE2 *PUDFPARTMAPTYPE2;
/** Pointer to a const type 2 partition map. */
typedef UDFPARTMAPTYPE2 const *PCUDFPARTMAPTYPE2;
/** @name UDFPARTMAPMETADATA_F_XXX
* @{ */
/** Indicates that the metadata is mirrored too, not just the file entry. */
#define UDFPARTMAPMETADATA_F_DATA_MIRRORED UINT8_C(1)
/** @} */
/**
* UDF unallocated space descriptor (USD) (@ecma167{3,10.8,61}, @udf260{2.2.5,32}).
*
* @note Variable length.
*/
typedef struct UDFUNALLOCATEDSPACEDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_UNALLOCATED_SPACE_DESC). */
UDFTAG Tag;
/** 0x10: Volume descriptor sequence number. */
uint32_t uVolumeDescSeqNo;
/** 0x14: Number of allocation descriptors in the array below. */
uint32_t cAllocationDescriptors;
/** 0x18: Allocation descriptors (variable length). */
RT_FLEXIBLE_ARRAY_EXTENSION
UDFEXTENTAD aAllocationDescriptors[RT_FLEXIBLE_ARRAY];
} UDFUNALLOCATEDSPACEDESC;
AssertCompileMemberOffset(UDFUNALLOCATEDSPACEDESC, aAllocationDescriptors, 0x18);
/** Pointer to an UDF unallocated space descriptor. */
typedef UDFUNALLOCATEDSPACEDESC *PUDFUNALLOCATEDSPACEDESC;
/** Pointer to a const UDF unallocated space descriptor. */
typedef UDFUNALLOCATEDSPACEDESC const *PCUDFUNALLOCATEDSPACEDESC;
/**
* UDF terminating descriptor (@ecma167{3,10.9,62}, @ecma167{4,14.2,62}).
*/
typedef struct UDFTERMINATINGDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_TERMINATING_DESC). */
UDFTAG Tag;
/** 0x10: Reserved, MBZ. */
uint8_t abReserved[496];
} UDFTERMINATINGDESC;
/** Pointer to an UDF terminating descriptor. */
typedef UDFTERMINATINGDESC *PUDFTERMINATINGDESC;
/** Pointer to a const UDF terminating descriptor. */
typedef UDFTERMINATINGDESC const *PCUDFTERMINATINGDESC;
/**
* UDF LVID implementation use structure (@udf260{2.2.6.4,33}).
* This structure follows the two ECMA dictated tables in the LVID.
*/
typedef struct UDFLVIDIMPLUSEUDF
{
/** 0x00: Implementation ID. */
UDFENTITYID idImplementation;
/** 0x20: Number of files. */
uint32_t cFiles;
/** 0x24: Number of directories. */
uint32_t cDirs;
/** 0x28: Minimum UDF revision to read all the structures in the volume. */
uint16_t uMinUdfRevisionRead;
/** 0x2a: Minimum UDF revision to successfully write to the volume. */
uint16_t uMinUdfRevisionWrite;
/** 0x2c: Maximum UDF revision supported by the last writer. */
uint16_t uMaxUdfRevisionWrite;
/** 0x2e: Implementation use. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abImplementationUse[RT_FLEXIBLE_ARRAY];
} UDFLVIDIMPLUSEUDF;
/** Pointer to an UDF LVID implemenation use structure. */
typedef UDFLVIDIMPLUSEUDF *PUDFLVIDIMPLUSEUDF;
/** Pointer to a const UDF LVID implemenation use structure. */
typedef UDFLVIDIMPLUSEUDF const *PCUDFLVIDIMPLUSEUDF;
/**
* UDF logical volume integrity descriptor (LVID) (@ecma167{3,10.10,62},
* @udf260{2.2.6,32}).
*/
typedef struct UDFLOGICALVOLINTEGRITYDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_LOGICAL_VOLUME_INTEGRITY_DESC). */
UDFTAG Tag;
/** 0x10: Recording timestamp. */
UDFTIMESTAMP RecordingTimestamp;
/** 0x1c: Integrity type (UDF_LVID_TYPE_XXX). */
uint32_t uIntegrityType;
/** 0x20: The next integrity extent. */
UDFEXTENTAD NextIntegrityExtent;
/** 0x28: Logical volume contents use. */
union
{
struct
{
/** 0x28: Unique ID. */
uint64_t idUnique;
/** 0x30: Reserved. */
uint8_t abReserved[24];
} LVHdr;
uint8_t abContentUse[32];
} ContentUse;
/** 0x48: Number of partitions. */
uint32_t cPartitions;
/** 0x4c: Length of implementation use. */
uint32_t cbImplementationUse;
/**
* 0x50: There are two tables each @a cPartitions in size. The first is the
* free space table. The second the size table.
*
* Following these tables there are @a cbImplementationUse bytes of space for
* the implementation to use. With UDF this means UDFLVIDIMPLUSEUDF.
*/
RT_FLEXIBLE_ARRAY_EXTENSION
uint32_t au32Tables[RT_FLEXIBLE_ARRAY];
} UDFLOGICALVOLINTEGRITYDESC;
AssertCompileMemberOffset(UDFLOGICALVOLINTEGRITYDESC, cbImplementationUse, 76);
AssertCompileMemberOffset(UDFLOGICALVOLINTEGRITYDESC, au32Tables, 80);
/** Pointer to an UDF logical volume integrity descriptor. */
typedef UDFLOGICALVOLINTEGRITYDESC *PUDFLOGICALVOLINTEGRITYDESC;
/** Pointer to a const UDF logical volume integrity descriptor. */
typedef UDFLOGICALVOLINTEGRITYDESC const *PCUDFLOGICALVOLINTEGRITYDESC;
/** @name UDF_LVID_TYPE_XXX - Integirty types.
* @{ */
#define UDF_LVID_TYPE_OPEN UINT32_C(0x00000000)
#define UDF_LVID_TYPE_CLOSE UINT32_C(0x00000001)
/** @} */
/**
* UDF file set descriptor (FSD) (@ecma167{4,14.1,86}, @udf260{2.3.2,54}).
*/
typedef struct UDFFILESETDESC
{
/** 0x000: The descriptor tag (UDF_TAG_ID_FILE_SET_DESC). */
UDFTAG Tag;
/** 0x010: Recording timestamp. */
UDFTIMESTAMP RecordingTimestamp;
/** 0x01c: Interchange level. */
uint16_t uInterchangeLevel;
/** 0x01e: Maximum interchange level. */
uint16_t uMaxInterchangeLevel;
/** 0x020: Character set bitmask (aka list). Each bit correspond to a
* character set number. */
uint32_t fCharacterSets;
/** 0x024: Maximum character set bitmask (aka list). */
uint32_t fMaxCharacterSets;
/** 0x028: File set number. */
uint32_t uFileSetNo;
/** 0x02c: File set descriptor number. */
uint32_t uFileSetDescNo;
/** 0x030: Logical volume identifier character set. */
UDFCHARSPEC LogicalVolumeIDCharSet;
/** 0x070: Logical volume identifier string. */
UDFDSTRING achLogicalVolumeID[128];
/** 0x0e0: File set character set. */
UDFCHARSPEC FileSetCharSet;
/** 0x130: Identifier string for this file set. */
UDFDSTRING achFileSetID[32];
/** 0x150: Names a root file containing copyright info. Optional. */
UDFDSTRING achCopyrightFile[32];
/** 0x170: Names a root file containing an abstract for the file set. Optional. */
UDFDSTRING achAbstractFile[32];
/** 0x190: Root directory information control block location (ICB).
* An ICB is a sequence made up of UDF_TAG_ID_FILE_ENTRY,
* UDF_TAG_ID_INDIRECT_ENTRY, and UDF_TAG_ID_TERMINAL_ENTRY descriptors. */
UDFLONGAD RootDirIcb;
/** 0x1a0: Domain identifier (UDF_ENTITY_FSD_LVD_DOMAIN). Optional. */
UDFENTITYID idDomain;
/** 0x1c0: Next location with file set descriptors location, 0 if none. */
UDFLONGAD NextExtent;
/** 0x1d0: Location of the system stream directory associated with the
* file set. Optional. */
UDFLONGAD SystemStreamDirIcb;
/** 0x1e0: Reserved, MBZ. */
uint8_t abReserved[32];
} UDFFILESETDESC;
AssertCompileSize(UDFFILESETDESC, 512);
/** Pointer to an UDF file set descriptor. */
typedef UDFFILESETDESC *PUDFFILESETDESC;
/** Pointer to a const UDF file set descriptor. */
typedef UDFFILESETDESC const *PCUDFFILESETDESC;
/**
* UDF file identifier descriptor (FID) (@ecma167{4,14.4,91}, @udf260{2.3.4,57}).
*/
typedef struct UDFFILEIDDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_FILE_ID_DESC). */
UDFTAG Tag;
/** 0x10: File version number (1..32767). Always set to 1. */
uint16_t uVersion;
/** 0x12: File characteristics (UDF_FILE_FLAGS_XXX). */
uint8_t fFlags;
/** 0x13: File identifier (name) length. */
uint8_t cbName;
/** 0x14: Location of an information control block describing the file.
* Can be null if marked deleted. The implementation defined part of
* this contains additional flags and a unique ID. */
UDFLONGAD Icb;
/** 0x24: Length of implementation use field (in bytes). This can be zero.
*
* It can be used to prevent the following FID from spanning a block
* boundrary, in which case it will be 32 bytes or more, and the it will
* start with an UDFENTITYID identifying who last wrote it.
*
* The latter padding fun is a requirement from write-once media. */
uint16_t cbImplementationUse;
/** 0x26: Two variable sized fields followed by padding to make the
* actual structure size 4 byte aligned. The first field in an
* implementation use field with length given by @a cbImplementationUse.
* After that is a d-string field with the name of the file, length
* specified by @a cbName. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abImplementationUse[RT_FLEXIBLE_ARRAY];
} UDFFILEIDDESC;
AssertCompileMemberOffset(UDFFILEIDDESC, fFlags, 0x12);
AssertCompileMemberOffset(UDFFILEIDDESC, cbName, 0x13);
AssertCompileMemberOffset(UDFFILEIDDESC, Icb, 0x14);
AssertCompileMemberOffset(UDFFILEIDDESC, abImplementationUse, 0x26);
/** Pointer to an UDF file set descriptor */
typedef UDFFILEIDDESC *PUDFFILEIDDESC;
/** Pointer to a const UDF file set descriptor */
typedef UDFFILEIDDESC const *PCUDFFILEIDDESC;
/** Get the pointer to the name field. */
#define UDFFILEIDDESC_2_NAME(a_pFid) ((uint8_t const *)(&(a_pFid)->abImplementationUse[(a_pFid)->cbImplementationUse]))
/** Calculates the total size the size of a record. */
#define UDFFILEIDDESC_CALC_SIZE_EX(cbImplementationUse, cbName) \
RT_ALIGN_32((uint32_t)RT_UOFFSETOF(UDFFILEIDDESC, abImplementationUse) + cbImplementationUse + cbName, 4)
/** Gets the actual size of a record. */
#define UDFFILEIDDESC_GET_SIZE(a_pFid) UDFFILEIDDESC_CALC_SIZE_EX((a_pFid)->cbImplementationUse, (a_pFid)->cbName)
/** @name UDF_FILE_FLAGS_XXX
* @{ */
/** Existence - Hide the file from the user. */
#define UDF_FILE_FLAGS_HIDDEN UINT8_C(0x01)
/** Directory - Indicates a directory as apposed to some kind of file or symlink or something (0). */
#define UDF_FILE_FLAGS_DIRECTORY UINT8_C(0x02)
/** Deleted - Indicate that the file has been deleted. Associated descriptors may still be valid, though. */
#define UDF_FILE_FLAGS_DELETED UINT8_C(0x04)
/** Parent - Indicate the ICB field refers to the parent directory (or maybe
* a file in case of streaming directory). */
#define UDF_FILE_FLAGS_PARENT UINT8_C(0x08)
/** Metadata - Zero means user data, one means implementation specific metadata.
* Only allowed used in stream directory. */
#define UDF_FILE_FLAGS_METADATA UINT8_C(0x10)
/** Reserved bits that should be zer. */
#define UDF_FILE_FLAGS_RESERVED_MASK UINT8_C(0xe0)
/** @} */
/**
* UDF allocation extent descriptor (@ecma167{4,14.5,93}, @udf260{2.3.11,67}).
*/
typedef struct UDFALLOCATIONEXTENTDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_ALLOCATION_EXTENT_DESC). */
UDFTAG Tag;
/** 0x10: Previous allocation extent location (logical block in current
* partition). */
uint32_t offPrevExtent;
/** 0x14: Size of the following allocation descriptors (in bytes). */
uint32_t cbAllocDescs;
/** 0x18: Allocation descriptors. */
union
{
UDFSHORTAD aShortADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
UDFLONGAD aLongADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
UDFEXTAD aExtADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} u;
} UDFALLOCATIONEXTENTDESC;
AssertCompileMemberOffset(UDFALLOCATIONEXTENTDESC, u, 0x18);
/** Pointer to an UDF allocation extent descriptor. */
typedef UDFALLOCATIONEXTENTDESC *PUDFALLOCATIONEXTENTDESC;
/** Pointer to a const UDF allocation extent descriptor. */
typedef UDFALLOCATIONEXTENTDESC const *PCUDFALLOCATIONEXTENTDESC;
/**
* UDF information control block tag (@ecma167{4,14.6,93}, @udf260{2.3.5,60}).
*/
typedef struct UDFICBTAG
{
/** 0x00: Number of direct entries in this ICB prior to this one. */
uint32_t cEntiresBeforeThis;
/** 0x04: ICB hierarchy building strategy type (UDF_ICB_STRATEGY_TYPE_XXX). */
uint16_t uStrategyType;
/** 0x06: Type specific parameters. */
uint8_t abStrategyParams[2];
/** 0x08: Max number of direct and indirect entries that MAY be recorded in this ICB. */
uint16_t cMaxEntries;
/** 0x0a: Reserved, MBZ. */
uint8_t bReserved;
/** 0x0b: File type (UDF_FILE_TYPE_XXX). */
uint8_t bFileType;
/** 0x0c: Parent ICB location. */
UDFLBADDR ParentIcb;
/** 0x12: Parent ICB location (UDF_ICB_FLAGS_XXX). */
uint16_t fFlags;
} UDFICBTAG;
AssertCompileSize(UDFICBTAG, 20);
typedef UDFICBTAG *PUDFICBTAG;
typedef UDFICBTAG const *PCUDFICBTAG;
/** @name UDF_ICB_STRATEGY_TYPE_XXX - ICB hierarchy building strategies
*
* See @ecma167{4,14.6.2,94}, @udf260{6.6,121}
*
* @{ */
/** Strategy not specified. */
#define UDF_ICB_STRATEGY_TYPE_NOT_SPECIFIED UINT16_C(0x0000)
/** See @ecma167{4,A.2,129}. */
#define UDF_ICB_STRATEGY_TYPE_1 UINT16_C(0x0001)
/** See @ecma167{4,A.3,131}. */
#define UDF_ICB_STRATEGY_TYPE_2 UINT16_C(0x0002)
/** See @ecma167{4,A.4,131}. */
#define UDF_ICB_STRATEGY_TYPE_3 UINT16_C(0x0003)
/** See @ecma167{4,A.5,131}. */
#define UDF_ICB_STRATEGY_TYPE_4 UINT16_C(0x0004)
/** Defined by the UDF spec, see @udf260{6.6,121}. */
#define UDF_ICB_STRATEGY_TYPE_4096 UINT16_C(0x1000)
/** @} */
/** @name UDF_ICB_FLAGS_XXX - ICB flags
*
* See @ecma167{4,14.6.8,95}, @udf260{2.3.5.4,61}
*
* @{ */
/** Using UDFSHORTAD. */
#define UDF_ICB_FLAGS_AD_TYPE_SHORT UINT16_C(0x0000)
/** Using UDFLONGAD. */
#define UDF_ICB_FLAGS_AD_TYPE_LONG UINT16_C(0x0001)
/** Using UDFEXTAD. */
#define UDF_ICB_FLAGS_AD_TYPE_EXTENDED UINT16_C(0x0002)
/** File content is embedded in the allocation descriptor area. */
#define UDF_ICB_FLAGS_AD_TYPE_EMBEDDED UINT16_C(0x0003)
/** Allocation type mask. */
#define UDF_ICB_FLAGS_AD_TYPE_MASK UINT16_C(0x0007)
/** Set on directories that are sorted (according to @ecma167{4,8.6.1,78}).
* @note Directories are never sorted in UDF. */
#define UDF_ICB_FLAGS_SORTED_DIRECTORY UINT16_C(0x0008)
/** Not relocatable. */
#define UDF_ICB_FLAGS_NON_RELOCATABLE UINT16_C(0x0010)
/** Indicate that the file needs backing up (DOS attribute). */
#define UDF_ICB_FLAGS_ARCHIVE UINT16_C(0x0020)
/** Set UID bit (UNIX). */
#define UDF_ICB_FLAGS_SET_UID UINT16_C(0x0040)
/** Set GID bit (UNIX). */
#define UDF_ICB_FLAGS_SET_GID UINT16_C(0x0080)
/** Set sticky bit (UNIX). */
#define UDF_ICB_FLAGS_STICKY UINT16_C(0x0100)
/** Extents are contiguous. */
#define UDF_ICB_FLAGS_CONTIGUOUS UINT16_C(0x0200)
/** System bit, reserved for implementation use. */
#define UDF_ICB_FLAGS_SYSTEM UINT16_C(0x0400)
/** Data has been transformed in some way.
* @note UDF shall not set this bit. */
#define UDF_ICB_FLAGS_TRANSFORMED UINT16_C(0x0800)
/** Directory may contain multi-versioned files.
* @note UDF shall not set this bit. */
#define UDF_ICB_FLAGS_MULTI_VERSIONS UINT16_C(0x1000)
/** Is a stream in a stream directory. */
#define UDF_ICB_FLAGS_STREAM UINT16_C(0x2000)
/** Reserved mask. */
#define UDF_ICB_FLAGS_RESERVED_MASK UINT16_C(0xc000)
/** @} */
/** @name UDF_FILE_TYPE_XXX - File types
*
* See @ecma167{4,14.6.6,94}, @udf260{2.3.5.2,60}
*
* @{ */
#define UDF_FILE_TYPE_NOT_SPECIFIED UINT8_C(0x00) /**< Not specified by this field. */
#define UDF_FILE_TYPE_UNALLOCATED_SPACE_ENTRY UINT8_C(0x01)
#define UDF_FILE_TYPE_PARTITION_INTEGRITY_ENTRY UINT8_C(0x02)
#define UDF_FILE_TYPE_INDIRECT_ENTRY UINT8_C(0x03)
#define UDF_FILE_TYPE_DIRECTORY UINT8_C(0x04)
#define UDF_FILE_TYPE_REGULAR_FILE UINT8_C(0x05)
#define UDF_FILE_TYPE_BLOCK_DEVICE UINT8_C(0x06)
#define UDF_FILE_TYPE_CHARACTER_DEVICE UINT8_C(0x07)
#define UDF_FILE_TYPE_EXTENDED_ATTRIBUTES UINT8_C(0x08)
#define UDF_FILE_TYPE_FIFO UINT8_C(0x09)
#define UDF_FILE_TYPE_SOCKET UINT8_C(0x0a)
#define UDF_FILE_TYPE_TERMINAL_ENTRY UINT8_C(0x0b)
#define UDF_FILE_TYPE_SYMBOLIC_LINK UINT8_C(0x0c)
#define UDF_FILE_TYPE_STREAM_DIRECTORY UINT8_C(0x0d)
#define UDF_FILE_TYPE_VAT UINT8_C(0xf8)
#define UDF_FILE_TYPE_REAL_TIME_FILE UINT8_C(0xf9)
#define UDF_FILE_TYPE_METADATA_FILE UINT8_C(0xfa)
#define UDF_FILE_TYPE_METADATA_MIRROR_FILE UINT8_C(0xfb)
#define UDF_FILE_TYPE_METADATA_BITMAP_FILE UINT8_C(0xfc)
/** @} */
/**
* UDF ICB header (derived structure).
*/
typedef struct UDFICBHDR
{
/** 0x00: The descriptor tag (UDF_TAG_ID_INDIRECT_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag. */
UDFICBTAG IcbTag;
} UDFICBHDR;
AssertCompileSize(UDFICBHDR, 36);
/** Pointer to an UDF ICB header. */
typedef UDFICBHDR *PUDFICBHDR;
/** Pointer to a const UDF ICB header. */
typedef UDFICBHDR const *PCUDFICBHDR;
/**
* UDF indirect entry (@ecma167{4,14.7,96}).
*/
typedef struct UDFINDIRECTENTRY
{
/** 0x00: The descriptor tag (UDF_TAG_ID_INDIRECT_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag. */
UDFICBTAG IcbTag;
/** 0x24: Indirect ICB location. */
UDFLONGAD IndirectIcb;
} UDFINDIRECTENTRY;
AssertCompileSize(UDFINDIRECTENTRY, 52);
/** Pointer to an UDF indirect entry. */
typedef UDFINDIRECTENTRY *PUDFINDIRECTENTRY;
/** Pointer to a const UDF indirect entry. */
typedef UDFINDIRECTENTRY const *PCUDFINDIRECTENTRY;
/**
* UDF terminal entry (@ecma167{4,14.8,97}).
*/
typedef struct UDFTERMINALENTRY
{
/** 0x00: The descriptor tag (UDF_TAG_ID_TERMINAL_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag (UDF_FILE_TYPE_TERMINAL_ENTRY). */
UDFICBTAG IcbTag;
} UDFTERMINALENTRY;
AssertCompileSize(UDFTERMINALENTRY, 36);
/** Pointer to an UDF terminal entry. */
typedef UDFTERMINALENTRY *PUDFTERMINALENTRY;
/** Pointer to a const UDF terminal entry. */
typedef UDFTERMINALENTRY const *PCUDFTERMINALENTRY;
/**
* UDF file entry (FE) (@ecma167{4,14.8,97}, @udf260{2.3.6,62}).
*
* @note Total length shall not exceed one logical block.
*/
typedef struct UDFFILEENTRY
{
/** 0x00: The descriptor tag (UDF_TAG_ID_FILE_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag. */
UDFICBTAG IcbTag;
/** 0x24: User ID (UNIX). */
uint32_t uid;
/** 0x28: Group ID (UNIX). */
uint32_t gid;
/** 0x2c: Permission (UDF_PERM_XXX). */
uint32_t fPermissions;
/** 0x30: Number hard links. */
uint16_t cHardlinks;
/** 0x32: Record format (UDF_REC_FMT_XXX). */
uint8_t uRecordFormat;
/** 0x33: Record format (UDF_REC_ATTR_XXX). */
uint8_t fRecordDisplayAttribs;
/** 0x34: Record length (in bytes).
* @note Must be zero according to the UDF specification. */
uint32_t cbRecord;
/** 0x38: Information length in bytes (file size). */
uint64_t cbData;
/** 0x40: Number of logical blocks allocated (for file data). */
uint64_t cLogicalBlocks;
/** 0x48: Time of last access (prior to recording the file entry). */
UDFTIMESTAMP AccessTime;
/** 0x54: Time of last data modification. */
UDFTIMESTAMP ModificationTime;
/** 0x60: Time of last attribute/status modification. */
UDFTIMESTAMP ChangeTime;
/** 0x6c: Checkpoint number (defaults to 1). */
uint32_t uCheckpoint;
/** 0x70: Extended attribute information control block location. */
UDFLONGAD ExtAttribIcb;
/** 0x80: Implementation identifier ("*Developer ID"). */
UDFENTITYID idImplementation;
/** 0xa0: Unique ID. */
uint64_t INodeId;
/** 0xa8: Length of extended attributes in bytes, multiple of four. */
uint32_t cbExtAttribs;
/** 0xac: Length of allocation descriptors in bytes, multiple of four. */
uint32_t cbAllocDescs;
/** 0xb0: Two variable sized fields. First @a cbExtAttribs bytes of extended
* attributes, then @a cbAllocDescs bytes of allocation descriptors. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abExtAttribs[RT_FLEXIBLE_ARRAY];
} UDFFILEENTRY;
AssertCompileMemberOffset(UDFFILEENTRY, abExtAttribs, 0xb0);
/** Pointer to an UDF file entry. */
typedef UDFFILEENTRY *PUDFFILEENTRY;
/** Pointer to a const UDF file entry. */
typedef UDFFILEENTRY const *PCUDFFILEENTRY;
/** @name UDF_PERM_XXX - UDFFILEENTRY::fPermissions
* See @ecma167{4,14.9.5,99}.
* @{ */
#define UDF_PERM_OTH_EXEC UINT32_C(0x00000001)
#define UDF_PERM_OTH_WRITE UINT32_C(0x00000002)
#define UDF_PERM_OTH_READ UINT32_C(0x00000004)
#define UDF_PERM_OTH_ATTRIB UINT32_C(0x00000008)
#define UDF_PERM_OTH_DELETE UINT32_C(0x00000010)
#define UDF_PERM_OTH_MASK UINT32_C(0x0000001f)
#define UDF_PERM_GRP_EXEC UINT32_C(0x00000020)
#define UDF_PERM_GRP_WRITE UINT32_C(0x00000040)
#define UDF_PERM_GRP_READ UINT32_C(0x00000080)
#define UDF_PERM_GRP_ATTRIB UINT32_C(0x00000100)
#define UDF_PERM_GRP_DELETE UINT32_C(0x00000200)
#define UDF_PERM_GRP_MASK UINT32_C(0x000003e0)
#define UDF_PERM_USR_EXEC UINT32_C(0x00000400)
#define UDF_PERM_USR_WRITE UINT32_C(0x00000800)
#define UDF_PERM_USR_READ UINT32_C(0x00001000)
#define UDF_PERM_USR_ATTRIB UINT32_C(0x00002000)
#define UDF_PERM_USR_DELETE UINT32_C(0x00004000)
#define UDF_PERM_USR_MASK UINT32_C(0x00007c00)
#define UDF_PERM_USR_RESERVED_MASK UINT32_C(0xffff8000)
/** @} */
/** @name UDF_REC_FMT_XXX - Record format.
* See @ecma167{4,14.9.7,100}.
* @{ */
/** Not record format specified.
* @note The only allowed value according to the UDF specification. */
#define UDF_REC_FMT_NOT_SPECIFIED UINT8_C(0x00)
/** @} */
/** @name UDF_REC_ATTR_XXX - Record display attributes.
* See @ecma167{4,14.9.8,100}.
* @{ */
/** Manner of record display not specified.
* @note The only allowed value according to the UDF specification. */
#define UDF_REC_ATTR_NOT_SPECIFIED UINT8_C(0x00)
/** @} */
/**
* UDF extended attribute header descriptor (@ecma167{4,14.10.1,102},
* @udf260{3.3.4,79}).
*/
typedef struct UDFEXTATTRIBHDRDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_EXTENDED_ATTRIB_HDR_DESC). */
UDFTAG Tag;
/** 0x10: Implementation attributes location (byte offset) into the EA space.
* This typically set to UINT32_MAX if not present, though any value larger
* than the EA space will do. */
uint32_t offImplementationAttribs;
/** 0x14: Application attributes location (byte offset) into the EA space.
* This typically set to UINT32_MAX if not present, though any value larger
* than the EA space will do. */
uint32_t offApplicationAttribs;
} UDFEXTATTRIBHDRDESC;
AssertCompileSize(UDFEXTATTRIBHDRDESC, 24);
/** Pointer to an UDF extended attribute header descriptor. */
typedef UDFEXTATTRIBHDRDESC *PUDFEXTATTRIBHDRDESC;
/** Pointer to a const UDF extended attribute header descriptor. */
typedef UDFEXTATTRIBHDRDESC const *PCUDFEXTATTRIBHDRDESC;
/**
* UDF character set info EA data (@ecma167{4,14.10.3,104}).
*
* Not needed by UDF.
*/
typedef struct UDFEADATACHARSETINFO
{
/** 0x00/0x0c: The length of the escape sequences (in bytes). */
uint32_t cbEscSeqs;
/** 0x04/0x10: The character set type (UDF_CHAR_SET_TYPE_XXX). */
uint8_t bType;
/** 0x05/0x11: Escape sequences. */
uint8_t abEscSeqs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} UDFEADATACHARSETINFO;
/** Pointer to UDF character set info EA data. */
typedef UDFEADATACHARSETINFO *PUDFEADATACHARSETINFO;
/** Pointer to const UDF character set info EA data. */
typedef UDFEADATACHARSETINFO const *PCUDFEADATACHARSETINFO;
/** UDFGEA::uAttribType value for UDFEADATACHARSETINFO.*/
#define UDFEADATACHARSETINFO_ATTRIB_TYPE UINT32_C(0x00000001)
/** UDFGEA::uAttribSubtype value for UDFEADATACHARSETINFO. */
#define UDFEADATACHARSETINFO_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/**
* UDF alternate permissions EA data (@ecma167{4,14.10.4,105}, @udf260{3.3.4.2,80}).
* @note Not recorded according to the UDF specification.
*/
typedef struct UDFEADATAALTPERM
{
/** 0x00/0x0c: Alternative owner ID. */
uint16_t idOwner;
/** 0x02/0x0e: Alternative group ID. */
uint16_t idGroup;
/** 0x04/0x10: Alternative permissions. */
uint16_t fPermission;
} UDFEADATAALTPERM;
/** Pointer to UDF alternative permissions EA data. */
typedef UDFEADATAALTPERM *PUDFEADATAALTPERM;
/** Pointer to const UDF alternative permissions EA data. */
typedef UDFEADATAALTPERM const *PCUDFEADATAALTPERM;
/** UDFGEA::uAttribType value for UDFEADATAALTPERM. */
#define UDFEADATAALTPERM_ATTRIB_TYPE UINT32_C(0x00000003)
/** UDFGEA::uAttribSubtype value for UDFEADATAALTPERM. */
#define UDFEADATAALTPERM_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/**
* UDF file times EA data (@ecma167{4,14.10.5,108}, @udf260{3.3.4.3,80}).
* (This is a bit reminiscent of ISO9660RRIPTF.)
*/
typedef struct UDFEADATAFILETIMES
{
/** 0x00/0x0c: Timestamp length. */
uint32_t cbTimestamps;
/** 0x04/0x10: Indicates which timestamps are present
* (UDF_FILE_TIMES_EA_F_XXX). */
uint32_t fFlags;
/** 0x08/0x14: Timestamps. */
UDFTIMESTAMP aTimestamps[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} UDFEADATAFILETIMES;
/** Pointer to UDF file times EA data. */
typedef UDFEADATAFILETIMES *PUDFEADATAFILETIMES;
/** Pointer to const UDF file times EA data. */
typedef UDFEADATAFILETIMES const *PCUDFEADATAFILETIMES;
/** UDFGEA::uAttribType value for UDFEADATAFILETIMES. */
#define UDFEADATAFILETIMES_ATTRIB_TYPE UINT32_C(0x00000005)
/** UDFGEA::uAttribSubtype value for UDFEADATAFILETIMES. */
#define UDFEADATAFILETIMES_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/** @name UDF_FILE_TIMES_EA_F_XXX - File times existence flags.
* See @ecma167{4,14.10.5.6,109}
* @{ */
#define UDF_FILE_TIMES_EA_F_BIRTH UINT8_C(0x01) /**< Birth (creation) timestamp is recorded. */
#define UDF_FILE_TIMES_EA_F_DELETE UINT8_C(0x04) /**< Deletion timestamp is recorded. */
#define UDF_FILE_TIMES_EA_F_EFFECTIVE UINT8_C(0x08) /**< Effective timestamp is recorded. */
#define UDF_FILE_TIMES_EA_F_BACKUP UINT8_C(0x20) /**< Backup timestamp is recorded. */
#define UDF_FILE_TIMES_EA_F_RESERVED_MASK UINT8_C(0xd2)
/** @} */
/**
* UDF information times EA data (@ecma167{4,14.10.6,109}).
*/
typedef struct UDFEADATAINFOTIMES
{
/** 0x00/0x0c: Timestamp length. */
uint32_t cbTimestamps;
/** 0x04/0x10: Indicates which timestamps are present
* (UDF_INFO_TIMES_EA_F_XXX). */
uint32_t fFlags;
/** 0x08/0x14: Timestamps. */
UDFTIMESTAMP aTimestamps[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} UDFEADATAINFOTIMES;
/** Pointer to UDF information times EA data. */
typedef UDFEADATAINFOTIMES *PUDFEADATAINFOTIMES;
/** Pointer to const UDF information times EA data. */
typedef UDFEADATAINFOTIMES const *PCUDFEADATAINFOTIMES;
/** UDFGEA::uAttribType value for UDFEADATAINFOTIMES. */
#define UDFEADATAINFOTIMES_ATTRIB_TYPE UINT32_C(0x00000006)
/** UDFGEA::uAttribSubtype value for UDFEADATAINFOTIMES. */
#define UDFEADATAINFOTIMES_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/** @name UDF_INFO_TIMES_EA_F_XXX - Information times existence flags.
* See @ecma167{4,14.10.6.6,110}
* @{ */
#define UDF_INFO_TIMES_EA_F_BIRTH UINT8_C(0x01) /**< Birth (creation) timestamp is recorded. */
#define UDF_INFO_TIMES_EA_F_MODIFIED UINT8_C(0x02) /**< Last (data) modified timestamp is recorded. */
#define UDF_INFO_TIMES_EA_F_EXPIRE UINT8_C(0x04) /**< Expiration (deletion) timestamp is recorded. */
#define UDF_INFO_TIMES_EA_F_EFFECTIVE UINT8_C(0x08) /**< Effective timestamp is recorded. */
#define UDF_INFO_TIMES_EA_F_RESERVED_MASK UINT8_C(0xf0)
/** @} */
/**
* UDF device specification EA data (@ecma167{4,14.10.7,110}, @udf260{3.3.4.4,81}).
*/
typedef struct UDFEADATADEVICESPEC
{
/** 0x00/0x0c: Length of implementation use field. */
uint32_t cbImplementationUse;
/** 0x04/0x10: Major device number. */
uint32_t uMajorDeviceNo;
/** 0x08/0x14: Minor device number. */
uint32_t uMinorDeviceNo;
/** 0x0c/0x18: Implementation use field (variable length).
* UDF specficiation expects UDFENTITYID with a "*Developer ID" as first part
* here. */
uint8_t abImplementationUse[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} UDFEADATADEVICESPEC;
/** Pointer to UDF device specification EA data. */
typedef UDFEADATADEVICESPEC *PUDFEADATADEVICESPEC;
/** Pointer to const UDF device specification EA data. */
typedef UDFEADATADEVICESPEC const *PCUDFEADATADEVICESPEC;
/** UDFGEA::uAttribType value for UDFEADATADEVICESPEC. */
#define UDFEADATADEVICESPEC_ATTRIB_TYPE UINT32_C(0x0000000c)
/** UDFGEA::uAttribSubtype value for UDFEADATADEVICESPEC. */
#define UDFEADATADEVICESPEC_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/**
* UDF free EA space payload for implementation and application use EAs
* (@udf260{3.3.4.5.1.1,82}, @udf260{3.3.4.6.1.1,88}).
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_FREE_EA_SPACE.
* UDFEADATAAPPUSE::idImplementation is UDF_ENTITY_ID_AUEA_FREE_EA_SPACE.
*/
typedef struct UDFFREEEASPACE
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: Free space. */
uint8_t abFree[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
} UDFFREEEASPACE;
/** Pointer to UDF free EA space impl/app use payload. */
typedef UDFFREEEASPACE *PUDFFREEEASPACE;
/** Pointer to const UDF free EA space impl/app use payload. */
typedef UDFFREEEASPACE const *PCUDFFREEEASPACE;
/**
* UDF DVD copyright management information implementation use EA payload
* (@udf260{3.3.4.5.1.2,83}).
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_DVD_CGMS_INFO.
*/
typedef struct UDFIUEADVDCGMSINFO
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: The CGMS information (whatever that is). */
uint8_t bInfo;
/** 0x03/0x33: Data structure type (whatever that is). */
uint8_t bType;
/** 0x04/0x34: Production system information, probably dependend on the
* values of previous fields. */
uint8_t abProtSysInfo[4];
} UDFIUEADVDCGMSINFO;
/** Pointer to UDF DVD copyright management information implementation use EA payload. */
typedef UDFIUEADVDCGMSINFO *PUDFIUEADVDCGMSINFO;
/** Pointer to const UDF DVD copyright management information implementation use EA payload. */
typedef UDFIUEADVDCGMSINFO const *PCUDFIUEADVDCGMSINFO;
/**
* UDF OS/2 EA length implementation use EA payload (@udf260{3.3.4.5.3.1,84}).
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_OS2_EA_LENGTH.
*/
#pragma pack(2)
typedef struct UDFIUEAOS2EALENGTH
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: The CGMS information (whatever that is). */
uint32_t cbEAs;
} UDFIUEAOS2EALENGTH;
#pragma pack()
AssertCompileMemberOffset(UDFIUEAOS2EALENGTH, cbEAs, 2);
/** Pointer to UDF OS/2 EA length implementation use EA payload. */
typedef UDFIUEAOS2EALENGTH *PUDFIUEAOS2EALENGTH;
/** Pointer to const UDF OS/2 EA length implementation use EA payload. */
typedef UDFIUEAOS2EALENGTH const *PCUDFIUEAOS2EALENGTH;
/**
* UDF Mac volume info implementation use EA payload (@udf260{3.3.4.5.4.1,84}).
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_MAC_VOLUME_INFO.
*/
#pragma pack(2)
typedef struct UDFIUEAMACVOLINFO
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: Last modification time. */
UDFTIMESTAMP LastModificationTime;
/** 0x0e/0x3e: Last backup time. */
UDFTIMESTAMP LastBackupTime;
/** 0x1a/0x4e: Volume finder information. */
uint32_t au32FinderInfo[8];
} UDFIUEAMACVOLINFO;
#pragma pack()
AssertCompileMemberOffset(UDFIUEAMACVOLINFO, au32FinderInfo, 0x1a);
/** Pointer to UDF Mac volume info implementation use EA payload. */
typedef UDFIUEAMACVOLINFO *PUDFIUEAMACVOLINFO;
/** Pointer to const UDF Mac volume info implementation use EA payload. */
typedef UDFIUEAMACVOLINFO const *PCUDFIUEAMACVOLINFO;
/**
* UDF point for use in Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACPOINT
{
/** X coordinate. */
int16_t x;
/** Y coordinate. */
int16_t y;
} UDFMACPOINT;
/**
* UDF rectangle for using Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACRECT
{
/** top Y coordinate. */
int16_t yTop;
/** left X coordinate. */
int16_t xLeft;
/** bottom Y coordinate. (exclusive?) */
int16_t yBottom;
/** right X coordinate. (exclusive?) */
int16_t xRight;
} UDFMACRECT;
/**
* UDF finder directory info for Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACFDINFO
{
UDFMACRECT FrRect;
int16_t FrFlags;
UDFMACPOINT FrLocation;
int16_t FrView;
} UDFMACFDINFO;
AssertCompileSize(UDFMACFDINFO, 16);
/**
* UDF finder directory extended info for Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACFDXINFO
{
UDFMACPOINT FrScroll;
int32_t FrOpenChain;
uint8_t FrScript;
uint8_t FrXFlags;
uint16_t FrComment;
uint32_t FrPutAway;
} UDFMACFDXINFO;
AssertCompileSize(UDFMACFDXINFO, 16);
/**
* UDF Mac finder info implementation use EA payload (@udf260{3.3.4.5.4.1,84}),
* directory edition.
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_MAC_FINDER_INFO.
*/
typedef struct UDFIUEAMACFINDERINFODIR
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: Explicit alignment padding, MBZ. */
uint16_t uPadding;
/** 0x04/0x34: Parent directory ID. */
uint32_t idParentDir;
/** 0x08/0x38: Dir information. */
UDFMACFDINFO DirInfo;
/** 0x18/0x48: Dir extended information. */
UDFMACFDXINFO DirExInfo;
} UDFIUEAMACFINDERINFODIR;
AssertCompileMemberOffset(UDFIUEAMACFINDERINFODIR, DirInfo, 0x08);
AssertCompileMemberOffset(UDFIUEAMACFINDERINFODIR, DirExInfo, 0x18);
AssertCompileSize(UDFIUEAMACFINDERINFODIR, 0x28);
/** Pointer to UDF Mac finder info for dir implementation use EA payload. */
typedef UDFIUEAMACFINDERINFODIR *PUDFIUEAMACFINDERINFODIR;
/** Pointer to const UDF Mac finder info for dir implementation use EA payload. */
typedef UDFIUEAMACFINDERINFODIR const *PCUDFIUEAMACFINDERINFODIR;
/**
* UDF finder file info for Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACFFINFO
{
uint32_t FrType;
uint32_t FrCreator;
uint16_t FrFlags;
UDFMACPOINT FrLocation;
int16_t FrFldr;
} UDFMACFFINFO;
AssertCompileSize(UDFMACFFINFO, 16);
/**
* UDF finder file extended info for Mac EAs (@udf260{3.3.4.5.4.2,86}).
*/
typedef struct UDFMACFFXINFO
{
int16_t FrIconID;
uint8_t FdUnused[6];
uint8_t FrScript;
uint8_t FrXFlags;
uint16_t FrComment;
uint32_t FrPutAway;
} UDFMACFFXINFO;
AssertCompileSize(UDFMACFFXINFO, 16);
/**
* UDF Mac finder info implementation use EA payload (@udf260{3.3.4.5.4.1,84}),
* file edition.
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_MAC_FINDER_INFO.
*/
typedef struct UDFIUEAMACFINDERINFOFILE
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: Explicit alignment padding, MBZ. */
uint16_t uPadding;
/** 0x04/0x34: Parent directory ID. */
uint32_t idParentDir;
/** 0x08/0x38: File information. */
UDFMACFFINFO FileInfo;
/** 0x18/0x48: File extended information. */
UDFMACFFXINFO FileExInfo;
/** 0x28/0x58: The size of the fork data (in bytes). */
uint32_t cbForkData;
/** 0x2c/0x5c: The size of the fork allocation (in bytes). */
uint32_t cbForkAlloc;
} UDFIUEAMACFINDERINFOFILE;
AssertCompileMemberOffset(UDFIUEAMACFINDERINFOFILE, FileInfo, 0x08);
AssertCompileMemberOffset(UDFIUEAMACFINDERINFOFILE, FileExInfo, 0x18);
AssertCompileMemberOffset(UDFIUEAMACFINDERINFOFILE, cbForkData, 0x28);
AssertCompileSize(UDFIUEAMACFINDERINFOFILE, 0x30);
/** Pointer to UDF Mac finder info for file implementation use EA payload. */
typedef UDFIUEAMACFINDERINFOFILE *PUDFIUEAMACFINDERINFOFILE;
/** Pointer to const UDF Mac finder info for file implementation use EA payload. */
typedef UDFIUEAMACFINDERINFOFILE const *PCUDFIUEAMACFINDERINFOFILE;
/**
* UDF OS/400 directory info implementation use EA payload (@udf260{3.3.4.5.6.1,87})
*
* UDFEADATAIMPLUSE::idImplementation is UDF_ENTITY_ID_IUEA_OS400_DIR_INFO.
*/
typedef struct UDFIUEAOS400DIRINFO
{
/** 0x00/0x30: Header checksum.
* @note 16-bit checksum of UDFGEA up thru u.ImplUse.idImplementation. */
uint16_t uChecksum;
/** 0x02/0x32: Explicit alignment padding, MBZ. */
uint16_t uPadding;
/** 0x04/0x34: The directory info, format documented elsewhere. */
uint8_t abDirInfo[44];
} UDFIUEAOS400DIRINFO;
AssertCompileSize(UDFIUEAOS400DIRINFO, 0x30);
/** Pointer to UDF Mac finder info for file implementation use EA payload. */
typedef UDFIUEAOS400DIRINFO *PUDFIUEAOS400DIRINFO;
/** Pointer to const UDF Mac finder info for file implementation use EA payload. */
typedef UDFIUEAOS400DIRINFO const *PCUDFIUEAOS400DIRINFO;
/**
* UDF implementation use EA data (@ecma167{4,14.10.8,111}, @udf260{3.3.4.5,82}).
*/
typedef struct UDFEADATAIMPLUSE
{
/** 0x00/0x0c: Length uData in bytes. */
uint32_t cbData;
/** 0x04/0x10: Implementation identifier (UDF_ENTITY_ID_IUEA_XXX). */
UDFENTITYID idImplementation;
/** 0x24/0x30: Implementation use field (variable length). */
union
{
/** Generic byte view. */
uint8_t abData[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
/** Free EA space (UDF_ENTITY_ID_IUEA_FREE_EA_SPACE). */
UDFFREEEASPACE FreeEaSpace;
/** DVD copyright management information (UDF_ENTITY_ID_IUEA_DVD_CGMS_INFO). */
UDFIUEADVDCGMSINFO DvdCgmsInfo;
/** OS/2 EA length (UDF_ENTITY_ID_IUEA_OS2_EA_LENGTH). */
UDFIUEAOS2EALENGTH Os2EaLength;
/** Mac volume info (UDF_ENTITY_ID_IUEA_MAC_VOLUME_INFO). */
UDFIUEAMACVOLINFO MacVolInfo;
/** Mac finder info, directory edition (UDF_ENTITY_ID_IUEA_MAC_FINDER_INFO). */
UDFIUEAMACFINDERINFODIR MacFinderInfoDir;
/** Mac finder info, file edition (UDF_ENTITY_ID_IUEA_MAC_FINDER_INFO). */
UDFIUEAMACFINDERINFOFILE MacFinderInfoFile;
/** OS/400 directory info (UDF_ENTITY_ID_IUEA_OS400_DIR_INFO). */
UDFIUEAOS400DIRINFO Os400DirInfo;
} u;
} UDFEADATAIMPLUSE;
/** Pointer to UDF implementation use EA data. */
typedef UDFEADATAIMPLUSE *PUDFEADATAIMPLUSE;
/** Pointer to const UDF implementation use EA data. */
typedef UDFEADATAIMPLUSE const *PCUDFEADATAIMPLUSE;
/** UDFGEA::uAttribType value for UDFEADATAIMPLUSE. */
#define UDFEADATAIMPLUSE_ATTRIB_TYPE UINT32_C(0x00000800)
/** UDFGEA::uAttribSubtype value for UDFEADATAIMPLUSE. */
#define UDFEADATAIMPLUSE_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/**
* UDF application use EA data (@ecma167{4,14.10.9,112}, @udf260{3.3.4.6,88}).
*/
typedef struct UDFEADATAAPPUSE
{
/** 0x0c: Length uData in bytes. */
uint32_t cbData;
/** 0x10: Application identifier (UDF_ENTITY_ID_AUEA_FREE_EA_SPACE). */
UDFENTITYID idApplication;
/** 0x30: Application use field (variable length). */
union
{
/** Generic byte view. */
uint8_t ab[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
/** Free EA space (UDF_ENTITY_ID_AUEA_FREE_EA_SPACE). */
UDFFREEEASPACE FreeEaSpace;
} uData;
} UDFEADATAAPPUSE;
/** Pointer to UDF application use EA data. */
typedef UDFEADATAAPPUSE *PUDFEADATAAPPUSE;
/** Pointer to const UDF application use EA data. */
typedef UDFEADATAAPPUSE const *PCUDFEADATAAPPUSE;
/** UDFGEA::uAttribType value for UDFEADATAAPPUSE. */
#define UDFEADATAAPPUSE_ATTRIB_TYPE UINT32_C(0x00010000)
/** UDFGEA::uAttribSubtype value for UDFEADATAAPPUSE. */
#define UDFEADATAAPPUSE_ATTRIB_SUBTYPE UINT32_C(0x00000001)
/**
* UDF generic extended attribute (@ecma167{4,14.10.2,103}).
*/
typedef struct UDFGEA
{
/** 0x00: Attribute type (UDFXXX_ATTRIB_TYPE). */
uint32_t uAttribType;
/** 0x04: Attribute subtype (UDFXXX_ATTRIB_SUBTYPE). */
uint8_t uAttribSubtype;
/** 0x05: Reserved padding bytes, MBZ. */
uint8_t abReserved[3];
/** 0x08: Size of the whole extended attribute.
* Multiple of four is recommended. */
uint32_t cbAttrib;
/** 0x0c: Attribute data union. */
union
{
/** Generic byte view (variable size). */
uint8_t abData[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
/** Character set information (@ecma167{4,14.10.3,104}). */
UDFEADATACHARSETINFO CharSetInfo;
/** Alternate permissions (@ecma167{4,14.10.4,105}, @udf260{3.3.4.2,80}).
* @note Not recorded according to the UDF specification. */
UDFEADATAALTPERM AltPerm;
/** File times (@ecma167{4,14.10.5,108}, @udf260{3.3.4.3,80}).
* (This is a bit reminiscent of ISO9660RRIPTF.) */
UDFEADATAFILETIMES FileTimes;
/** Information times (@ecma167{4,14.10.6,109}). */
UDFEADATAINFOTIMES InfoTimes;
/** Device specification (@ecma167{4,14.10.7,110}, @udf260{3.3.4.4,81}). */
UDFEADATADEVICESPEC DeviceSpec;
/** Implementation use (@ecma167{4,14.10.8,111}, @udf260{3.3.4.5,82}). */
UDFEADATAIMPLUSE ImplUse;
/** Application use (@ecma167{4,14.10.9,112}, @udf260{3.3.4.6,88}). */
UDFEADATAAPPUSE AppUse;
} u;
} UDFGEA;
AssertCompileMemberOffset(UDFGEA, u, 0x0c);
/** Pointer to a UDF extended attribute. */
typedef UDFGEA *PUDFGEA;
/** Pointer to a const UDF extended attribute. */
typedef UDFGEA const *PCUDFGEA;
/**
* UDF unallocated space entry (@ecma167{4,14.11,113}, @udf260{2.3.7,64}).
*
* @note Total length shall not exceed one logical block.
*/
typedef struct UDFUNALLOCATEDSPACEENTRY
{
/** 0x00: The descriptor tag (UDF_TAG_ID_UNALLOCATED_SPACE_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag. */
UDFICBTAG IcbTag;
/** 0x24: Size of the allocation desciptors in bytes. */
uint32_t cbAllocDescs;
/** 0x28: Allocation desciptors, type given by IcbTag::fFlags. */
union
{
UDFSHORTAD aShortADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
UDFLONGAD aLongADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
UDFEXTAD aExtADs[RT_FLEXIBLE_ARRAY_IN_NESTED_UNION];
UDFEXTENTAD SingleAD;
} u;
} UDFUNALLOCATEDSPACEENTRY;
AssertCompileMemberOffset(UDFUNALLOCATEDSPACEENTRY, u, 0x28);
/** Pointer to an UDF unallocated space entry. */
typedef UDFUNALLOCATEDSPACEENTRY *PUDFUNALLOCATEDSPACEENTRY;
/** Pointer to a const UDF unallocated space entry. */
typedef UDFUNALLOCATEDSPACEENTRY const *PCUDFUNALLOCATEDSPACEENTRY;
/**
* UDF space bitmap descriptor (SBD) (@ecma167{4,14.12,114}, @udf260{2.3.8,65}).
*/
typedef struct UDFSPACEBITMAPDESC
{
/** 0x00: The descriptor tag (UDF_TAG_ID_SPACE_BITMAP_DESC). */
UDFTAG Tag;
/** 0x10: Number of bits in the bitmap. */
uint32_t cBits;
/** 0x14: The bitmap size in bytes. */
uint32_t cbBitmap;
/** 0x18: The bitmap. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abBitmap[RT_FLEXIBLE_ARRAY];
} UDFSPACEBITMAPDESC;
AssertCompileMemberOffset(UDFSPACEBITMAPDESC, abBitmap, 0x18);
/** Pointer to an UDF space bitmap descriptor. */
typedef UDFSPACEBITMAPDESC *PUDFSPACEBITMAPDESC;
/** Pointer to a const UDF space bitmap descriptor. */
typedef UDFSPACEBITMAPDESC const *PCUDFSPACEBITMAPDESC;
/**
* UDF partition integrity descriptor (@ecma167{4,14.3,115}, @udf260{2.3.9,65}).
*
* @note Not needed by UDF.
*/
typedef struct UDFPARTITIONINTEGRITYDESC
{
/** 0x000: The descriptor tag (UDF_TAG_ID_PARTITION_INTEGERITY_DESC). */
UDFTAG Tag;
/** 0x010: ICB Tag. */
UDFICBTAG IcbTag;
/** 0x024: Recording timestamp. */
UDFTIMESTAMP RecordingTimestamp;
/** 0x030: Interity type (UDF_PARTITION_INTEGRITY_TYPE_XXX). */
uint8_t bType;
/** 0x031: Reserved. */
uint8_t abReserved[175];
/** 0x0e0: Implementation identifier. */
UDFENTITYID idImplementation;
/** 0x100: Implementation use data. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abImplementationUse[RT_FLEXIBLE_ARRAY];
} UDFPARTITIONINTEGRITYDESC;
AssertCompileMemberOffset(UDFPARTITIONINTEGRITYDESC, abImplementationUse, 0x100);
/** Pointer to an UDF partition integrity descriptor. */
typedef UDFPARTITIONINTEGRITYDESC *PUDFPARTITIONINTEGRITYDESC;
/** Pointer to a const UDF partition integrity descriptor. */
typedef UDFPARTITIONINTEGRITYDESC const *PCUDFPARTITIONINTEGRITYDESC;
/**
* UDF extended file entry (EFE) (@ecma167{4,14.17,120}, @udf260{3.3.5,83}).
*
* @note Total length shall not exceed one logical block.
*/
typedef struct UDFEXFILEENTRY
{
/** 0x00: The descriptor tag (UDF_TAG_ID_EXTENDED_FILE_ENTRY). */
UDFTAG Tag;
/** 0x10: ICB Tag. */
UDFICBTAG IcbTag;
/** 0x24: User ID (UNIX). */
uint32_t uid;
/** 0x28: Group ID (UNIX). */
uint32_t gid;
/** 0x2c: Permission (UDF_PERM_XXX). */
uint32_t fPermissions;
/** 0x30: Number hard links. */
uint16_t cHardlinks;
/** 0x32: Record format (UDF_REC_FMT_XXX). */
uint8_t uRecordFormat;
/** 0x33: Record format (UDF_REC_FMT_XXX). */
uint8_t fRecordDisplayAttribs;
/** 0x34: Record length (in bytes).
* @note Must be zero according to the UDF specification. */
uint32_t cbRecord;
/** 0x38: Information length in bytes (file size). */
uint64_t cbData;
/** 0x40: The size of all streams. Same as cbData if no additional streams. */
uint64_t cbObject;
/** 0x48: Number of logical blocks allocated (for file data). */
uint64_t cLogicalBlocks;
/** 0x50: Time of last access (prior to recording the file entry). */
UDFTIMESTAMP AccessTime;
/** 0x5c: Time of last data modification. */
UDFTIMESTAMP ModificationTime;
/** 0x68: Birth (creation) time. */
UDFTIMESTAMP BirthTime;
/** 0x74: Time of last attribute/status modification. */
UDFTIMESTAMP ChangeTime;
/** 0x80: Checkpoint number (defaults to 1). */
uint32_t uCheckpoint;
/** 0x84: Reserved, MBZ. */
uint32_t uReserved;
/** 0x88: Extended attribute information control block location. */
UDFLONGAD ExtAttribIcb;
/** 0x98: Stream directory information control block location. */
UDFLONGAD StreamDirIcb;
/** 0xa8: Implementation identifier (UDF_ENTITY_ID_FE_IMPLEMENTATION). */
UDFENTITYID idImplementation;
/** 0xc8: Unique ID. */
uint64_t INodeId;
/** 0xd0: Length of extended attributes in bytes, multiple of four. */
uint32_t cbExtAttribs;
/** 0xd4: Length of allocation descriptors in bytes, multiple of four. */
uint32_t cbAllocDescs;
/** 0xd8: Two variable sized fields. First @a cbExtAttribs bytes of extended
* attributes, then @a cbAllocDescs bytes of allocation descriptors. */
RT_FLEXIBLE_ARRAY_EXTENSION
uint8_t abExtAttribs[RT_FLEXIBLE_ARRAY];
} UDFEXFILEENTRY;
AssertCompileMemberOffset(UDFEXFILEENTRY, abExtAttribs, 0xd8);
/** Pointer to an UDF extended file entry. */
typedef UDFEXFILEENTRY *PUDFEXFILEENTRY;
/** Pointer to a const UDF extended file entry. */
typedef UDFEXFILEENTRY const *PCUDFEXFILEENTRY;
/** @name UDF Volume Recognition Sequence (VRS)
*
* The recognition sequence usually follows the CD001 descriptor sequence at
* sector 16 and is there to indicate that the medium (also) contains a UDF file
* system and which standards are involved.
*
* See @ecma167{2,8,31}, @ecma167{2,9,32}, @udf260{2.1.7,25}.
*
* @{ */
/** The type value used for all the extended UDF volume descriptors
* (ISO9660VOLDESCHDR::bDescType). */
#define UDF_EXT_VOL_DESC_TYPE 0
/** The version value used for all the extended UDF volume descriptors
* (ISO9660VOLDESCHDR::bDescVersion). */
#define UDF_EXT_VOL_DESC_VERSION 1
/** Standard ID for UDFEXTVOLDESCBEGIN. */
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN "BEA01"
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN_0 'B'
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN_1 'E'
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN_2 'A'
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN_3 '0'
#define UDF_EXT_VOL_DESC_STD_ID_BEGIN_4 '1'
/** Standard ID for UDFEXTVOLDESCTERM. */
#define UDF_EXT_VOL_DESC_STD_ID_TERM "TEA01"
#define UDF_EXT_VOL_DESC_STD_ID_TERM_0 'T'
#define UDF_EXT_VOL_DESC_STD_ID_TERM_1 'E'
#define UDF_EXT_VOL_DESC_STD_ID_TERM_2 'A'
#define UDF_EXT_VOL_DESC_STD_ID_TERM_3 '0'
#define UDF_EXT_VOL_DESC_STD_ID_TERM_4 '1'
/** Standard ID for UDFEXTVOLDESCNSR following ECMA-167 2nd edition. */
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02 "NSR02"
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02_0 'N'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02_1 'S'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02_2 'R'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02_3 '0'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_02_4 '2'
/** Standard ID for UDFEXTVOLDESCNSR following ECMA-167 3rd edition. */
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03 "NSR03"
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03_0 'N'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03_1 'S'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03_2 'R'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03_3 '0'
#define UDF_EXT_VOL_DESC_STD_ID_NSR_03_4 '3'
/** Standard ID for UDFEXTVOLDESCBOOT. */
#define UDF_EXT_VOL_DESC_STD_ID_BOOT "BOOT2"
#define UDF_EXT_VOL_DESC_STD_ID_BOOT_0 'B'
#define UDF_EXT_VOL_DESC_STD_ID_BOOT_1 'O'
#define UDF_EXT_VOL_DESC_STD_ID_BOOT_2 'O'
#define UDF_EXT_VOL_DESC_STD_ID_BOOT_3 'T'
#define UDF_EXT_VOL_DESC_STD_ID_BOOT_4 '2'
/** Helper for making a 64-bit header constant from UDF_EXT_VOL_DESC_XXX. */
#define UDF_EXT_VOL_DESC_MAKE_U64_CONST(a_IdMacroPrefix) \
ISO9660VOLDESC_MAKE_U64_HDR_CONST(UDF_EXT_VOL_DESC_TYPE, a_IdMacroPrefix, UDF_EXT_VOL_DESC_VERSION)
/**
* Begin UDF extended volume descriptor area (@ecma167{2,9.2,33}).
*/
typedef struct UDFEXTVOLDESCBEGIN
{
/** The volume descriptor header.
* The standard identifier is UDF_EXT_VOL_DESC_STD_ID_BEGIN. */
ISO9660VOLDESCHDR Hdr;
/** Zero payload. */
uint8_t abZero[2041];
} UDFEXTVOLDESCBEGIN;
AssertCompileSize(UDFEXTVOLDESCBEGIN, 2048);
/** Pointer to an UDF extended volume descriptor indicating the start of the
* extended descriptor area. */
typedef UDFEXTVOLDESCBEGIN *PUDFEXTVOLDESCBEGIN;
/** Pointer to a const UDF extended volume descriptor indicating the start of
* the extended descriptor area. */
typedef UDFEXTVOLDESCBEGIN const *PCUDFEXTVOLDESCBEGIN;
/**
* Terminate UDF extended volume descriptor area (@ecma167{2,9.3,33}).
*/
typedef struct UDFEXTVOLDESCTERM
{
/** The volume descriptor header.
* The standard identifier is UDF_EXT_VOL_DESC_STD_ID_TERM. */
ISO9660VOLDESCHDR Hdr;
/** Zero payload. */
uint8_t abZero[2041];
} UDFEXTVOLDESCTERM;
AssertCompileSize(UDFEXTVOLDESCTERM, 2048);
/** Pointer to an UDF extended volume descriptor indicating the end of the
* extended descriptor area. */
typedef UDFEXTVOLDESCTERM *PUDFEXTVOLDESCTERM;
/** Pointer to a const UDF extended volume descriptor indicating the end of
* the extended descriptor area. */
typedef UDFEXTVOLDESCTERM const *PCUDFEXTVOLDESCTERM;
/**
* UDF NSR extended volume descriptor (@ecma167{3,9.1,50}).
*
* This gives the ECMA standard version.
*/
typedef struct UDFEXTVOLDESCNSR
{
/** The volume descriptor header.
* The standard identifier is UDF_EXT_VOL_DESC_STD_ID_NSR_02, or
* UDF_EXT_VOL_DESC_STD_ID_NSR_03. */
ISO9660VOLDESCHDR Hdr;
/** Zero payload. */
uint8_t abZero[2041];
} UDFEXTVOLDESCNSR;
AssertCompileSize(UDFEXTVOLDESCNSR, 2048);
/** Pointer to an extended volume descriptor giving the UDF standard version. */
typedef UDFEXTVOLDESCNSR *PUDFEXTVOLDESCNSR;
/** Pointer to a const extended volume descriptor giving the UDF standard version. */
typedef UDFEXTVOLDESCNSR const *PCUDFEXTVOLDESCNSR;
/**
* UDF boot extended volume descriptor (@ecma167{2,9.4,34}).
*
* @note Probably entirely unused.
*/
typedef struct UDFEXTVOLDESCBOOT
{
/** 0x00: The volume descriptor header.
* The standard identifier is UDF_EXT_VOL_DESC_STD_ID_BOOT. */
ISO9660VOLDESCHDR Hdr;
/** 0x07: Reserved/alignment, MBZ. */
uint8_t bReserved1;
/** 0x08: The architecture type. */
UDFENTITYID ArchType;
/** 0x28: The boot identifier. */
UDFENTITYID idBoot;
/** 0x48: Logical sector number of load the boot loader from. */
uint32_t offBootExtent;
/** 0x4c: Number of bytes to load. */
uint32_t cbBootExtent;
/** 0x50: The load address (in memory). */
uint64_t uLoadAddress;
/** 0x58: The start address (in memory). */
uint64_t uStartAddress;
/** 0x60: The descriptor creation timestamp. */
UDFTIMESTAMP CreationTimestamp;
/** 0x6c: Flags. */
uint16_t fFlags;
/** 0x6e: Reserved, MBZ. */
uint8_t abReserved2[32];
/** 0x8e: Implementation use. */
uint8_t abBootUse[1906];
} UDFEXTVOLDESCBOOT;
AssertCompileSize(UDFEXTVOLDESCBOOT, 2048);
/** Pointer to a boot extended volume descriptor. */
typedef UDFEXTVOLDESCBOOT *PUDFEXTVOLDESCBOOT;
/** Pointer to a const boot extended volume descriptor. */
typedef UDFEXTVOLDESCBOOT const *PCUDFEXTVOLDESCBOOT;
/** @} */
/** @} */
#endif /* !IPRT_INCLUDED_formats_udf_h */
|