1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804
|
#!/bin/bash
VERSION='0.78';
RELEASE_DATE='09 October 2019';
LAST_GIT_COMMIT_SHORTLOG='';
LAST_GIT_COMMIT_DATE='';
################################################################################
# #
# Copyright (c) 2009-2010 Ulrich Meierfrankenfeld #
# Copyright (c) 2011-2012 Gert Hulselmans #
# Copyright (c) 2013-2018 Andrei Borzenkov #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to #
# deal in the Software without restriction, including without limitation the #
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or #
# sell copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS #
# IN THE SOFTWARE. #
# #
################################################################################
# #
# Current developer: Andrei Borzenkov #
# #
# Past developer: Gert Hulselmans #
# Past developer: Ulrich Meierfrankenfeld (meierfra) (ubuntuforums.org) #
# Past contributor: caljohnsmith (ubuntuforums.org) #
# #
# Hosted at: https://github.com/arvidjaar/bootinfoscript #
# Forked from: http://sourceforge.net/projects/bootinfoscript/ #
# #
# The birth of Boot Info Script: #
# http://ubuntuforums.org/showthread.php?t=837791 #
# #
# Tab width: 8 spaces #
# #
################################################################################
## Check if the script is run with bash as shell interpreter.
if [ -z "$BASH_VERSION" ] ; then
echo 'Boot Info Script needs to be run with bash as shell interpreter.' >&2;
exit 1;
fi
## Display help text ##
#
# ./bootinfoscript -h
# ./bootinfoscript -help
# ./bootinfoscript --help
help () {
cat <<- HELP
Usage Boot Info Script:
-----------------------
Run the script as sudoer:
sudo ${0} <outputfile>
or if your operating system does not use sudo:
su -
${0} <outputfile>
When running the script, without specifying an output file, all the output
is written to the file "RESULTS.txt" in the same folder as the script.
But when run from /bin, /sbin, /usr/bin, or another system folder, the file
"RESULTS.txt" is written to the home directory of the user.
When the file "RESULTS.txt" already exists, the results will be written to
"RESULTS1.txt". If "RESULTS1.txt" exists, the results will be written to
"RESULTS2.txt", ...
To get version number, release date, last git commit and git retrieval date
of this script, use (no root rights needed):
${0} -v
${0} -V
${0} --version
To get this help text, use (no root rights needed):
${0} -h
${0} -help
${0} --help
To automatically gzip a copy of the output file, use (root rights needed):
${0} -g <outputfile>
${0} --gzip <outputfile>
To write the output to stdout instead of a file, use (root rights needed):
${0} --stdout
The last development version of Boot Info Script can be downloaded, with:
(no root rights needed)
${0} --update <filename>
If no filename is specified, the file will be saved in the home dir as
"bootinfoscript_YYYY-MM-DD_hh:mm:ss".
HELP
exit 0;
}
## Download the last development version of BIS from git: ##
#
# ./bootinfoscript --update <filename>
#
# If no filename is specified, the file will be saved in the home dir as
# "bootinfoscript_YYYY-MM-DD_hh:mm:ss".
update () {
local git_ref_url='https://api.github.com/repos/arvidjaar/bootinfoscript/git/refs/heads/master'
local git_commit_url='https://api.github.com/repos/arvidjaar/bootinfoscript/git/commits'
local git_contents_url='https://github.com/arvidjaar/bootinfoscript/raw/master/bootinfoscript'
# Check if date is available.
if [ $(type date > /dev/null 2>&1 ; echo $?) -ne 0 ] ; then
echo '"date" could not be found.' >&2;
exit 1;
fi
# Get current UTC time in YYYY-MM-DD-hh:mm:ss format.
UTC_TIME=$(date --utc "+%Y-%m-%d %T");
if [ ! -z "$1" ] ; then
GIT_BIS_FILENAME="$1";
else
GIT_BIS_FILENAME="${HOME}/bootinfoscript_${UTC_TIME/ /_}"
fi
# Check if wget or curl is available
if [ $(type wget > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
printf '\nDownloading last development version of Boot Info Script from git:\n\n';
LAST_GIT_COMMIT_ID=$(wget -O - "${git_ref_url}" | sed -ne 's/^.*"sha": "\(.*\)".*$/\1/p');
LAST_GIT_COMMIT=$(wget -O - "${git_commit_url}/$LAST_GIT_COMMIT_ID");
wget -O "${GIT_BIS_FILENAME}" "${git_contents_url}";
elif [ $(type curl > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
printf 'Downloading last development version of Boot Info Script from git:\n\n';
LAST_GIT_COMMIT_ID=$(curl "${git_ref_url}" | sed -ne 's/^.*"sha": "\(.*\)".*$/\1/p');
LAST_GIT_COMMIT=$(curl "${git_commit_url}/$LAST_GIT_COMMIT_ID");
curl -o "${GIT_BIS_FILENAME}" "${git_contents_url}";
else
printf '"wget" or "curl" could not be found.\nInstall at least one of them and try again.\n' >&2;
exit 1;
fi
# First date is Author, second date is Commit
LAST_GIT_COMMIT_DATE=$(echo "${LAST_GIT_COMMIT}" | sed -ne 's/^[[:space:]]*"date": "\(.*\)"[[:space:]]*$/\1/p' | tail -1);
LAST_GIT_COMMIT_SHORTLOG=$(echo "${LAST_GIT_COMMIT}" | sed -n -e '/^[[:space:]]*"message":/ { s/^[[:space:]]*"message": "\(.*\)",[[:space:]]*$/\1/ ; s/\\n.*$// ; p }');
# Set the retrieval date in just downloaded script.
sed -i -e "4,0 s@LAST_GIT_COMMIT_SHORTLOG='';@LAST_GIT_COMMIT_SHORTLOG='${LAST_GIT_COMMIT_SHORTLOG}';@" \
-e "5,0 s/LAST_GIT_COMMIT_DATE='';/LAST_GIT_COMMIT_DATE='${LAST_GIT_COMMIT_DATE}';/" \
"${GIT_BIS_FILENAME}";
printf '\nThe development version of Boot Info Script is saved as:\n"%s"\n\n' "${GIT_BIS_FILENAME}";
exit 0;
}
## Display version, release, last git commit and git retrieval date of the script when asked: ##
#
# ./bootinfoscript -v
# ./bootinfoscript -V
# ./bootinfoscript --version
version () {
printf '\nBoot Info Script version: %s\nRelease date: %s' "${VERSION}" "${RELEASE_DATE}";
if [ ! -z "${LAST_GIT_COMMIT_SHORTLOG}" ] ; then
printf '\nLast git commit: %s\nCommit date: %s' \
"${LAST_GIT_COMMIT_SHORTLOG}" "${LAST_GIT_COMMIT_DATE}";
fi
printf '\n\n';
exit 0;
}
## Gzip a copy of the output file? ##
gzip_output=0; # off=0
## Write the output to the standard output instead of to a file? ##
stdout_output=0; # off=0
## Get arguments passed to the script. ##
process_args () {
if [ ${#@} -ge 1 ] ; then
# Process arguments.
case "$1" in
-g ) gzip_output=1; if [ ! -z "$2" ] ; then LogFile_cmd="$2"; fi;;
--gzip ) gzip_output=1; if [ ! -z "$2" ] ; then LogFile_cmd="$2"; fi;;
-h ) help;;
-help ) help;;
--help ) help;;
--stdout ) stdout_output=1;;
--update ) update "$2";;
-v ) version;;
-V ) version;;
--version ) version;;
-* ) help;;
* ) LogFile_cmd="$1";;
esac
fi
}
## Get arguments passed to the script. ##
process_args ${@};
## Display version number, release and git retrieval date. ##
printf '\nBoot Info Script %s [%s]' "${VERSION}" "${RELEASE_DATE}";
if [ ! -z "${LAST_GIT_COMMIT_SHORTLOG}" ] ; then
printf '\n Last git commit: %s\n Commit date: %s' \
"${LAST_GIT_COMMIT_SHORTLOG}" "${LAST_GIT_COMMIT_DATE}";
fi
printf '\n\n';
## Check whether Boot Info Script is run with root rights or not. ##
if [ $(type whoami > /dev/null 2>&1 ; echo $?) -ne 0 ] ; then
echo 'Please install "whoami" and run Boot Info Script again.' >&2;
exit 1;
elif [ $(whoami) != 'root' ] ; then
cat <<- EOF >&2
Please use "sudo" or become "root" to run this script.
Run the script as sudoer:
sudo ${0} <outputfile>
or if your operating system does not use sudo:
su -
${0} <outputfile>
For more info, see the help:
${0} --help
EOF
exit 1;
fi
## Check if all necessary programs are available. ##
# Programs that are in /bin or /usr/bin.
Programs='
basename
cat
chown
dd
dirname
expr
fold
grep
gzip
hexdump
ls
mkdir
mktemp
mount
printf
pwd
rm
sed
sort
tr
umount
wc'
# Programs that are in /usr/sbin or /sbin.
Programs_SBIN='
blkid
fdisk
filefrag
losetup'
Check_Prog=1;
for Program in ${Programs} ${Programs_SBIN}; do
if [ $(type ${Program} > /dev/null 2>&1 ; echo $?) -ne 0 ] ; then
echo "\"${Program}\" could not be found." >&2;
Check_Prog=0;
fi
done
## Can we decompress a LZMA stream? ##
#
# The Grub2 (v1.99-2.00) core_dir string is contained in a LZMA stream.
# See if we have xz or lzma installed to decompress the stream.
#
if [ $(type xz > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
UNLZMA='xz --format=lzma --decompress';
elif [ $(type lzma > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
UNLZMA='lzma -cd';
else
UNLZMA='none';
fi
## Do we have gawk or (a recent) mawk? ##
#
# If we don't have gawk, look for "mawk v1.3.4" or newer.
#
if [ $(type gawk > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
# Set awk binary to gawk.
AWK='gawk';
elif [ $(type mawk > /dev/null 2>&1 ; echo $?) -eq 0 ] ; then
MAWK_version="$(mawk -W version 2>&1)";
MAWK_version="${MAWK_version:0:10}";
if [ "${MAWK_version}" = 'mawk 1.3.3' ]; then
printf '"mawk v1.3.3" has known bugs.\nInstall "mawk v1.3.4" or newer from http://invisible-island.net/mawk/ or use "gawk" instead.\n' >&2;
Check_Prog=0;
else
# Set awk binary to mawk (version 1.3.4 or higher).
AWK='mawk';
fi
else
printf 'Install "gawk" or "mawk v1.3.4" (or newer) from http://invisible-island.net/mawk/.\n' >&2;
Check_Prog=0;
fi
if [ ${Check_Prog} -eq 0 ] ; then
printf '\nPlease install the missing program(s) and run Boot Info Script again.\n' >&2;
exit 1;
fi
## List of folders which might contain files used for chainloading. ##
Boot_Codes_Dir='
/
/NST/
'
## List of files whose names will be displayed, if found. ##
Boot_Prog_Normal='
/bootmgr /BOOTMGR
/boot/bcd /BOOT/bcd /Boot/bcd /boot/BCD /BOOT/BCD /Boot/BCD
/Windows/System32/winload.exe /WINDOWS/system32/winload.exe /WINDOWS/SYSTEM32/winload.exe /windows/system32/winload.exe
/Windows/System32/Winload.exe /WINDOWS/system32/Winload.exe /WINDOWS/SYSTEM32/Winload.exe /windows/system32/Winload.exe
/grldr /GRLDR /grldr.mbr /GRLDR.MBR
/ntldr /NTLDR
/NTDETECT.COM /ntdetect.com
/NTBOOTDD.SYS /ntbootdd.sys
/wubildr /ubuntu/winboot/wubildr
/wubildr.mbr /ubuntu/winboot/wubildr.mbr
/ubuntu/disks/root.disk
/ubuntu/disks/home.disk
/ubuntu/disks/swap.disk
/core.img /grub/core.img /boot/grub/core.img
/grub/i386-pc/core.img /boot/grub/i386-pc/core.img
/grub2/core.img /boot/grub2/core.img
/grub2/i386-pc/core.img /boot/grub2/i386-pc/core.img
/burg/core.img /boot/burg/core.img
/ldlinux.sys /syslinux/ldlinux.sys /boot/syslinux/ldlinux.sys
/extlinux.sys /extlinux/extlinux.sys /boot/extlinux/extlinux.sys
/boot/map /map
/DEFAULT.MNU /default.mnu
/IO.SYS /io.sys
/MSDOS.SYS /msdos.sys
/KERNEL.SYS /kernel.sys
/DELLBIO.BIN /dellbio.bin /DELLRMK.BIN /dellrmk.bin
/COMMAND.COM /command.com
'
Boot_Prog_Fat='
/bootmgr
/boot/bcd
/Windows/System32/winload.exe
/grldr
/grldr.mbr
/ntldr
/freeldr.sys
/NTDETECT.COM
/NTBOOTDD.SYS
/wubildr
/wubildr.mbr
/ubuntu/winboot/wubildr
/ubuntu/winboot/wubildr.mbr
/ubuntu/disks/root.disk
/ubuntu/disks/home.disk
/ubuntu/disks/swap.disk
/core.img /grub/core.img /boot/grub/core.img
/grub/i386-pc/core.img /boot/grub/i386-pc/core.img
/grub2/core.img /boot/grub2/core.img
/grub2/i386-pc/core.img /boot/grub2/i386-pc/core.img
/burg/core.img /boot/burg/core.img
/ldlinux.sys /syslinux/ldlinux.sys /boot/syslinux/ldlinux.sys
/extlinux.sys /extlinux/extlinux.sys /boot/extlinux/extlinux.sys
/boot/map /map
/DEFAULT.MNU
/IO.SYS
/MSDOS.SYS
/KERNEL.SYS
/DELLBIO.BIN /DELLRMK.BIN
/COMMAND.COM
'
## List of files whose contents will be displayed. ##
Boot_Files_Normal='
/menu.lst /grub/menu.lst /boot/grub/menu.lst /NST/menu.lst
/grub.cfg /grub/grub.cfg /boot/grub/grub.cfg /grub2/grub.cfg /boot/grub2/grub.cfg
/custom.cfg /grub/custom.cfg /boot/grub/custom.cfg /grub2/custom.cfg /boot/grub2/custom.cfg
/burg.cfg /burg/burg.cfg /boot/burg/burg.cfg
/grub.conf /grub/grub.conf /boot/grub/grub.conf /grub2/grub.conf /boot/grub2/grub.conf
/ubuntu/disks/boot/grub/menu.lst /ubuntu/disks/install/boot/grub/menu.lst /ubuntu/winboot/menu.lst
/boot.ini /BOOT.INI /Boot.ini
/etc/fstab
/etc/lilo.conf /lilo.conf
/syslinux.cfg /syslinux/syslinux.cfg /boot/syslinux/syslinux.cfg
/extlinux.conf /extlinux/extlinux.conf /boot/extlinux/extlinux.conf
/grldr /grub.exe
'
Boot_Files_Fat='
/menu.lst /grub/menu.lst /boot/grub/menu.lst /NST/menu.lst
/grub.cfg /grub/grub.cfg /boot/grub/grub.cfg /grub2/grub.cfg /boot/grub2/grub.cfg
/custom.cfg /grub/custom.cfg /boot/grub/custom.cfg /grub2/custom.cfg /boot/grub2/custom.cfg
/burg.cfg /burg/burg.cfg /boot/burg/burg.cfg
/grub.conf /grub/grub.conf /boot/grub/grub.conf /grub2/grub.conf /boot/grub2/grub.conf
/ubuntu/disks/boot/grub/menu.lst /ubuntu/disks/install/boot/grub/menu.lst /ubuntu/winboot/menu.lst
/boot.ini
/freeldr.ini
/etc/fstab
/etc/lilo.conf /lilo.conf
/syslinux.cfg /syslinux/syslinux.cfg /boot/syslinux/syslinux.cfg
/extlinux.conf /extlinux/extlinux.conf /boot/extlinux/extlinux.conf
/grldr /grub.exe
'
## List of files whose end point (in GiB / GB) will be displayed. ##
GrubError18_Files='
menu.lst grub/menu.lst boot/grub/menu.lst NST/menu.lst
ubuntu/disks/boot/grub/menu.lst
grub.conf grub/grub.conf boot/grub/grub.conf grub2/grub.conf boot/grub2/grub.conf
grub.cfg grub/grub.cfg boot/grub/grub.cfg grub2/grub.cfg boot/grub2/grub.cfg
burg.cfg burg/burg.cfg boot/burg/burg.cfg
core.img grub/core.img boot/grub/core.img
grub/i386-pc/core.img boot/grub/i386-pc/core.img
grub2/core.img boot/grub2/core.img
grub2/i386-pc/core.img boot/grub2/i386-pc/core.img
burg/core.img boot/burg/core.img
stage2 grub/stage2 boot/grub/stage2
boot/vmlinuz* vmlinuz* ubuntu/disks/boot/vmlinuz*
boot/initrd* initrd* ubuntu/disks/boot/initrd*
boot/kernel*.img
initramfs* boot/initramfs*
'
SyslinuxError_Files='
syslinux.cfg syslinux/syslinux.cfg boot/syslinux/syslinux.cfg
extlinux.conf extlinux/extlinux.conf boot/extlinux/extlinux.conf
ldlinux.sys syslinux/ldlinux.sys boot/syslinux/ldlinux.sys
extlinux.sys extlinux/extlinux.sys boot/extlinux/extlinux.sys
*.c32 syslinux/*.c32 boot/syslinux/*.c32
extlinux/*.c32 boot/extlinux/*.c32
'
## Set output filename ##
if [ ${stdout_output} -eq 1 ] ; then
# The LogFile name is not used when --stdout is specified.
LogFile="";
elif ( [ ! -z "${LogFile_cmd}" ]) ; then
# The RESULTS filename is specified on the commandline.
LogFile=$(basename "${LogFile_cmd}");
# Directory where the RESULTS file will be stored.
Dir=$(dirname "${LogFile_cmd}");
# Check if directory exists.
if [ ! -d "${Dir}" ] ; then
echo "The directory \"${Dir}\" does not exist.";
echo 'Create the directory or specify another path for the output file.';
exit 1;
fi
Dir=$(cd "${Dir}"; pwd);
LogFile="${Dir}/${LogFile}";
else
# Directory containing this script.
Dir=$(cd "$(dirname "$0")"; pwd);
# Set ${Dir} to the home folder of the current user if the script is
# in one of the system folders.
# This allows placement of the script in /bin, /sbin, /usr/bin, ...
# while still having a normal location to write the output file to.
for systemdir in /bin /boot /cdrom /dev /etc /lib /lost+found /opt /proc /sbin /selinux /srv /sys /usr /var; do
if [ $(expr "${Dir}" : ${systemdir}) -ne 0 ] ; then
Dir="${HOME}";
break;
fi
done
# To avoid overwriting existing files, look for a non-existing file:
# RESULT.txt, RESULTS1.txt, RESULTS2.txt, ...
LogFile="${Dir}/RESULTS";
while ( [ -e "${LogFile}${j}.txt" ] ) ; do
if [ x"${j}" = x'' ]; then
j=0;
fi
j=$((${j}+1));
done
LogFile="${LogFile}${j}.txt"; ## The RESULTS file. ##
fi
## Redirect stdout to RESULT File ##
#
# exec 6>&1
# exec > "${LogFile}"
## Create temporary directory ##
Folder=$(mktemp -t -d BootInfo-XXXXXXXX);
## Create temporary filenames. ##
cd ${Folder}
Log=${Folder}/Log # File to record the summary.
Log1=${Folder}/Log1 # Most of the information which is not part of
# the summary is recorded in this file.
Error_Log=${Folder}/Error_Log # File to catch all unusal Standar Errors.
Trash=${Folder}/Trash # File to catch all usual Standard Errors these
# messagges will not be included in the RESULTS.
Mount_Error=${Folder}/Mount_Error # File to catch Mounting Errors.
Unknown_MBR=${Folder}/Unknown_MBR # File to record all unknown MBR and Boot sectors.
Tmp_Log=${Folder}/Tmp_Log # File to temporarily hold some information.
core_img_file=${Folder}/core_img # File to temporarily store an embedded core.img of grub2.
core_img_file_unlzma=${Folder}/core_img_unlzma # File to temporarily store the uncompressed part of core.img of grub2.
core_img_file_type_2=${Folder}/core_img_type_2 # File to temporarily store the core.img module of type 2
PartitionTable=${Folder}/PT # File to store the Partition Table.
FakeHardDrives=${Folder}/FakeHD # File to list devices which seem to have no corresponding drive.
BLKID=${Folder}/BLKID # File to store the output of blkid.
GRUB200_Module=${Folder}/GRUB200_Module # File to store current grub2 module
## Redirect all standard error to the file Error_Log. ##
exec 2> ${Error_Log};
## List of all hard drives ##
#
# Support more than 26 drives.
All_Hard_Drives=$(ls /dev/hd[a-z] /dev/hd[a-z][a-z] /dev/sd[a-z] /dev/sd[a-z][a-z] /dev/xvd[a-z] /dev/vd[a-z] /dev/vd[a-z][a-z] 2>> ${Trash});
## Add found RAID disks to list of hard drives. ##
if [ $(type dmraid >> ${Trash} 2>> ${Trash} ; echo $?) -eq 0 ] ; then
InActiveDMRaid=$(dmraid -si -c);
if [ x"${InActiveDMRaid}" = x"no raid disks" ] || [ x"${InActiveDMRaid}" = x"no block devices found" ] ; then
InActiveDMRaid='';
fi
if [ x"${InActiveDMRaid}" != x'' ] ; then
dmraid -ay ${InActiveDMRaid} >> ${Trash};
fi
All_DMRaid=$(dmraid -sa -c);
if [ x"${All_DMRaid}" != x"no raid disks" ] && [ x"${All_DMRaid}" != x"no block devices found" ] ; then
All_DMRaid=$(echo "{All_DMRaid}" | ${AWK} '{ print "/dev/mapper/"$0 }');
All_Hard_Drives="${All_Hard_Drives} ${All_DMRaid}";
fi
fi
## Arrays to hold information about Partitions: ##
#
# name, starting sector, ending sector, size in sector, partition type,
# filesystem type, UUID, kind(Logical, Primary, Extended), harddrive,
# boot flag, parent (for logical partitions), label,
# system(the partition id according the partition table),
# the device associated with the partition.
declare -a NamesArray StartArray EndArray SizeArray TypeArray FileArray UUIDArray KindArray DriveArray BootArray ParentArray LabelArray SystemArray DeviceArray;
## Arrays to hold information about the harddrives. ##
declare -a HDName FirstPartion LastPartition HDSize HDMBR HDHead HDTrack HDCylinder HDPT HDStart HDEnd HDUUID;
## Array for hard drives formatted as filesystem. ##
declare -a FilesystemDrives;
PI=-1; ## Counter for the identification number of a partition. (each partition gets unique number) ##
HI=0; ## Counter for the identification number of a hard drive. (each hard drive gets unique number) ##
PTFormat='%-10s %4s%14s%14s%14s %3s %s\n'; ## standard format (hexdump) to use for partition table. ##
## Get total number of blocks on a device. ##
#
# Sometimes "fdisk -s" seems to malfunction or isn't supported (busybox fdisk),
# so use "sfdisk -s" if available.
# If sfdisk isn't available, calculate the number of blocks from the number of
# sectors (divide by 2).
fdisks () {
if [ $(type sfdisk >> ${Trash} 2>> ${Trash} ; echo $?) -eq 0 ] ; then
sfdisk -s "$1" 2>> ${Trash};
else
# Calculate the number of blocks from the number of sectors (divide by 2).
fdisk -lu "$1" 2>> ${Trash} | ${AWK} '$0 ~ /, .*, .*, .*/ { print $(NF - 1) / 2 }';
fi
}
## A function which checks whether a file is on a mounted partition. ##
# List of mount points for devices: also allow mount points with spaces.
MountPoints=$(mount \
| ${AWK} -F "\t" '{ if ( ($1 ~ "^/dev") && ($3 != "/") ) { sub(" on ", "\t", $0); sub(" type ", "\t", $0); print $2 } }' \
| sort -u);
FileNotMounted () {
local File=$1 curmp=$2;
IFS_OLD="${IFS}"; # Save original IFS.
IFS=$'\012'; # Set IFS temporarily to newline only, so mount points with spaces can be processed too.
for mp in ${MountPoints}; do
if [ $(expr match "${File}" "${mp}/" ) -ne 0 ] && [ "${mp}" != "${curmp}" ] ; then
IFS="${IFS_OLD}"; # Restore original IFS.
return 1;
fi
done
IFS="${IFS_OLD}"; # Restore original IFS.
return 0;
}
## Function which converts the two digit hexcode to the partition type. ##
#
# The following list is taken from sfdisk -T and
# http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
# is work in progress.
HexToSystem () {
local type=$1 system;
case ${type} in
0) system='Empty';;
1) system='FAT12';;
2) system='XENIX root';;
3) system='XENIX /usr';;
4) system='FAT16 <32M';;
5) system='Extended';;
6) system='FAT16';;
7) system='NTFS / exFAT / HPFS';;
8) system='AIX bootable';;
9) system='AIX data';;
a) system='OS/2 Boot Manager';;
b) system='W95 FAT32';;
c) system='W95 FAT32 (LBA)';;
e) system='W95 FAT16 (LBA)';;
f) system='W95 Extended (LBA)';;
10) system='OPUS';;
11) system='Hidden FAT12';;
12) system='Compaq diagnostics';;
14) system='Hidden FAT16 < 32M';;
16) system='Hidden FAT16';;
17) system='Hidden NTFS / HPFS';;
18) system='AST SmartSleep';;
1b) system='Hidden W95 FAT32';;
1c) system='Hidden W95 FAT32 (LBA)';;
1e) system='Hidden W95 FAT16 (LBA)';;
24) system='NEC DOS';;
27) system='Hidden NTFS (Recovery Environment)';;
2a) system='AtheOS File System';;
2b) system='SyllableSecure';;
32) system='NOS';;
35) system='JFS on OS/2';;
38) system='THEOS';;
39) system='Plan 9';;
3a) system='THEOS';;
3b) system='THEOS Extended';;
3c) system='PartitionMagic recovery';;
3d) system='Hidden NetWare';;
40) system='Venix 80286';;
41) system='PPC PReP Boot';;
42) system='SFS';;
44) system='GoBack';;
45) system='Boot-US boot manager';;
4d) system='QNX4.x';;
4e) system='QNX4.x 2nd part';;
4f) system='QNX4.x 3rd part';;
50) system='OnTrack DM';;
51) system='OnTrack DM6 Aux1';;
52) system='CP/M';;
53) system='OnTrack DM6 Aux3';;
54) system='OnTrack DM6 DDO';;
55) system='EZ-Drive';;
56) system='Golden Bow';;
57) system='DrivePro';;
5c) system='Priam Edisk';;
61) system='SpeedStor';;
63) system='GNU HURD or SysV';;
64) system='Novell Netware 286';;
65) system='Novell Netware 386';;
70) system='DiskSecure Multi-Boot';;
74) system='Scramdisk';;
75) system='IBM PC/IX';;
78) system='XOSL filesystem';;
80) system='Old Minix';;
81) system='Minix / old Linux';;
82) system='Linux swap / Solaris';;
83) system='Linux';;
84) system='OS/2 hidden C: drive';;
85) system='Linux extended';;
86) system='NTFS volume set';;
87) system='NTFS volume set';;
88) system='Linux plaintext';;
8a) system='Linux Kernel (AiR-BOOT)';;
8d) system='Free FDISK hidden Primary FAT12';;
8e) system='Linux LVM';;
90) system='Free FDISK hidden Primary FAT16 <32M';;
91) system='Free FDISK hidden Extended';;
92) system='Free FDISK hidden Primary FAT16';;
93) system='Amoeba/Accidently Hidden Linux';;
94) system='Amoeba bad block table';;
97) system='Free FDISK hidden Primary FAT32';;
98) system='Free FDISK hidden Primary FAT32 (LBA)';;
9a) system='Free FDISK hidden Primary FAT16 (LBA)';;
9b) system='Free FDISK hidden Extended (LBA)';;
9f) system='BSD/OS';;
a0) system='IBM Thinkpad hibernation';;
a1) system='Laptop hibernation';;
a5) system='FreeBSD';;
a6) system='OpenBSD';;
a7) system='NeXTSTEP';;
a8) system='Darwin UFS';;
a9) system='NetBSD';;
ab) system='Darwin boot';;
af) system='HFS / HFS+';;
b0) system='BootStar';;
b1 | b3) system='SpeedStor / QNX Neutrino Power-Safe';;
b2) system='QNX Neutrino Power-Safe';;
b4 | b6) system='SpeedStor';;
b7) system='BSDI fs';;
b8) system='BSDI swap';;
bb) system='Boot Wizard hidden';;
bc) system='Acronis BackUp';;
be) system='Solaris boot';;
bf) system='Solaris';;
c0) system='CTOS';;
c1) system='DRDOS / secured (FAT-12)';;
c2) system='Hidden Linux (PowerBoot)';;
c3) system='Hidden Linux Swap (PowerBoot)';;
c4) system='DRDOS secured FAT16 < 32M';;
c5) system='DRDOS secured Extended';;
c6) system='DRDOS secured FAT16';;
c7) system='Syrinx';;
cb) system='DR-DOS secured FAT32 (CHS)';;
cc) system='DR-DOS secured FAT32 (LBA)';;
cd) system='CTOS Memdump?';;
ce) system='DR-DOS FAT16X (LBA)';;
cf) system='DR-DOS secured EXT DOS (LBA)';;
d0) system='REAL/32 secure big partition';;
da) system='Non-FS data / Powercopy Backup';;
db) system='CP/M / CTOS / ...';;
dd) system='Dell Media Direct';;
de) system='Dell Utility';;
df) system='BootIt';;
e1) system='DOS access';;
e3) system='DOS R/O';;
e4) system='SpeedStor';;
e8) system='LUKS';;
eb) system='BeOS BFS';;
ec) system='SkyOS';;
ee) system='GPT';;
ef) system='EFI (FAT-12/16/32)';;
f0) system='Linux/PA-RISC boot';;
f1) system='SpeedStor';;
f2) system='DOS secondary';;
f4) system='SpeedStor';;
fb) system='VMware VMFS';;
fc) system='VMware VMswap';;
fd) system='Linux raid autodetect';;
fe) system='LANstep';;
ff) system='Xenix Bad Block Table';;
*) system='Unknown';;
esac
echo "${system}";
}
## Function to convert GPT's Partition Type. ##
#
# List from http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs
#
# ABCDEFGH-IJKL-MNOP-QRST-UVWXYZabcdef is stored as
# GHEFCDAB-KLIJ-OPMN-QRST-UVWXYZabcdef (without the dashes)
#
# For easy generation of the following list:
# - Save list in a file "Partition_type_GUIDs.txt" in the folowing format:
#
# Partition Type (OS) <TAB> GUID
# Partition Type (OS) <TAB> GUID
# Partition Type (OS) <TAB> GUID
#
# - Then run the following:
#
# gawk -F '\t' '{ GUID=tolower($2); printf " %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s) system=\"%s\";;\n", substr(GUID,7,1), substr(GUID,8,1), substr(GUID,5,1), substr(GUID,6,1), substr(GUID,3,1), substr(GUID,4,1), substr(GUID,1,1), substr(GUID,2,1), substr(GUID,12,1), substr(GUID,13,1), substr(GUID,10,1), substr(GUID,11,1), substr(GUID,17,1), substr(GUID,18,1), substr(GUID,15,1), substr(GUID,16,1), substr(GUID,20,4), substr(GUID,25,12), $1 } END { print " *) system='-';" }' Partition_type_GUIDs.txt
#
# - Some GUIDs are not unique for one OS. To find them, you can run:
#
# gawk -F "\t" '{print $2}' GUID_Partition_Table_list.txt | sort | uniq -d | grep -f - GUID_Partition_Table_list.txt
#
# Basic data partition (Windows) EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
# Data partition (Linux) EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
# ZFS (Mac OS X) 6A898CC3-1DD2-11B2-99A6-080020736631
# /usr partition (Solaris) 6A898CC3-1DD2-11B2-99A6-080020736631
#
UUIDToSystem () {
local type=$1 system;
case ${type} in
00000000000000000000000000000000) system='Unused entry';;
41ee4d02e733d3119d690008c781f39f) system='MBR partition scheme';;
28732ac11ff8d211ba4b00a0c93ec93b) system='EFI System partition';;
4861682149646f6e744e656564454649) system='BIOS Boot partition';;
dee2bfd3af3ddf11ba40e3a556d89593) system="Intel Fast Flash (iFFS) partition (for Intel Rapid Start technology)";;
## GUIDs that are not unique for one OS ##
a2a0d0ebe5b9334487c068b6b72699c7) system='Data partition (Windows/Linux)';;
c38c896ad21db21199a6080020736631) system='ZFS (Mac OS X) or /usr partition (Solaris)';;
## Windows GUIDs ##
16e3c9e35c0bb84d817df92df00215ae) system='Microsoft Reserved Partition (Windows)';;
# Same GUID as old GUID for "Basic data partition (Linux)"
# a2a0d0ebe5b9334487c068b6b72699c7) system='Basic data partition (Windows)';;
aac808588f7ee04285d2e1e90434cfb3) system='Logical Disk Manager (LDM) metadata partition (Windows)';;
a0609baf3114624fbc683311714a69ad) system='Logical Disk Manager (LDM) data partition (Windows)';;
a4bb94ded106404da16abfd50179d6ac) system='Windows Recovery Environment (Windows)';;
90fcaf377def964e91c32d7ae055b174) system='IBM General Parallel File System (GPFS) partition (Windows)';;
## HP-UX GUIDs ##
1e4c8975eb3ad311b7c17b03a0000000) system='Data partition (HP-UX)';;
28e7a1e2e332d611a6827b03a0000000) system='Service Partition (HP-UX)';;
## Linux GUIDs ##
# Same GUID as "Basic data partition (Windows)" GUID
# a2a0d0ebe5b9334487c068b6b72699c7) system='Data partition (Linux)';;
# New GUID to avoid that Linux partitions show up as unformatted partitions in Windows.
af3dc60f838472478e793d69d8477de4) system='Data partition (Linux)';;
0f889da1fc053b4da006743f0f84911e) system='RAID partition (Linux)';;
6dfd5706aba4c44384e50933c84b4f4f) system='Swap partition (Linux)';;
79d3d6e607f5c244a23c238f2a3df928) system='Logical Volume Manager (LVM) partition (Linux)';;
3933a68d0700c060c436083ac8230908) system='Reserved (Linux)';;
## FreeBSD GUIDs ##
9d6bbd83417fdc11be0b001560b84f0f) system='Boot partition (FreeBSD)';;
b47c6e51cf6ed6118ff800022d09712b) system='Data partition (FreeBSD)';;
b57c6e51cf6ed6118ff800022d09712b) system='Swap partition (FreeBSD)';;
b67c6e51cf6ed6118ff800022d09712b) system='Unix File System (UFS) partition (FreeBSD)';;
b87c6e51cf6ed6118ff800022d09712b) system='Vinum volume manager partition (FreeBSD)';;
ba7c6e51cf6ed6118ff800022d09712b) system='ZFS partition (FreeBSD)';;
## Mac OS X GUIDs ##
005346480000aa11aa1100306543ecac) system='Hierarchical File System Plus (HFS+) partition (Mac OS X)';;
005346550000aa11aa1100306543ecac) system='Apple UFS (Mac OS X)';;
# c38c896ad21db21199a6080020736631) system='ZFS (Mac OS X)';;
444941520000aa11aa1100306543ecac) system='Apple RAID partition (Mac OS X)';;
444941524f5faa11aa1100306543ecac) system='Apple RAID partition offline (Mac OS X)';;
746f6f420000aa11aa1100306543ecac) system='Apple Boot partition (Mac OS X)';;
6562614c006caa11aa1100306543ecac) system='Apple Label (Mac OS X)';;
6f6365526576aa11aa1100306543ecac) system='Apple TV Recovery partition (Mac OS X)';;
726f74536761aa11aa1100306543ecac) system="Apple Core Storage (i.e. Lion FileVault) partition (Mac OS X)";;
## Solaris GUIDs ##
45cb826ad21db21199a6080020736631) system='Boot partition (Solaris)';;
4dcf856ad21db21199a6080020736631) system='Root partition (Solaris)';;
6fc4876ad21db21199a6080020736631) system='Swap partition (Solaris)';;
2b648b6ad21db21199a6080020736631) system='Backup partition (Solaris)';;
# c38c896ad21db21199a6080020736631) system='/usr partition (Solaris)';;
e9f28e6ad21db21199a6080020736631) system='/var partition (Solaris)';;
39ba906ad21db21199a6080020736631) system='/home partition (Solaris)';;
a583926ad21db21199a6080020736631) system='Alternate sector (Solaris)';;
3b5a946ad21db21199a6080020736631) system='Reserved partition (Solaris)';;
d130966ad21db21199a6080020736631) system='Reserved partition (Solaris)';;
6707986ad21db21199a6080020736631) system='Reserved partition (Solaris)';;
7f23966ad21db21199a6080020736631) system='Reserved partition (Solaris)';;
c72a8d6ad21db21199a6080020736631) system='Reserved partition (Solaris)';;
## NetBSD GUIDs ##
328df4490eb1dc11b99b0019d1879648) system='Swap partition (NetBSD)';;
5a8df4490eb1dc11b99b0019d1879648) system='FFS partition (NetBSD)';;
828df4490eb1dc11b99b0019d1879648) system='LFS partition (NetBSD)';;
aa8df4490eb1dc11b99b0019d1879648) system='RAID partition (NetBSD)';;
c419b52d0fb1dc11b99b0019d1879648) system='Concatenated partition (NetBSD)';;
ec19b52d0fb1dc11b99b0019d1879648) system='Encrypted partition (NetBSD)';;
## ChromeOS GUIDs ##
5d2a3afe324fa741b725accc3285a309) system="ChromeOS kernel";;
02e2b83c7e3bdd478a3c7ff2a13cfcec) system="ChromeOS rootfs";;
3d750a2e489eb0438337b15192cb1b5e) system="ChromeOS future use";;
## Haiku GUIDs ##
31534642a33bf110802a4861696b7521) system="Haiku BFS (Haiku)";;
## MidnightBSD GUIDs ##
5ee4d5857c23e111b4b3e89a8f7fc3a7) system="Boot partition (MidnightBSD) ";;
5ae4d5857c23e111b4b3e89a8f7fc3a7) system="Data partition (MidnightBSD)";;
5be4d5857c23e111b4b3e89a8f7fc3a7) system="Swap partition (MidnightBSD)";;
8bef94037e23e111b4b3e89a8f7fc3a7) system="Unix File System (UFS) partition (MidnightBSD)";;
5ce4d5857c23e111b4b3e89a8f7fc3a7) system="Vinum volume manager partition (MidnightBSD)";;
5de4d5857c23e111b4b3e89a8f7fc3a7) system="ZFS partition (MidnightBSD)";;
*) system='-';
echo 'Unknown GPT Partiton Type' >> ${Unknown_MBR};
echo ${type} >> ${Unknown_MBR};;
esac
echo "${system}";
}
## Function which inserts a comma every third digit of a number. ##
InsertComma () {
echo $1 | sed -e :a -e 's/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/;ta';
}
## Function to read 4 bytes starting at $1 of device $2 and convert result to decimal. ##
Read4Bytes () {
local start=$1 device=$2;
echo $(hexdump -v -s ${start} -n 4 -e '4 "%u"' ${device});
}
## Function to read 8 bytes starting at $1 of device $2 and convert result to decimal. ##
Read8Bytes () {
local start=$1 device=$2;
local first4 second4;
# Get ${first4} and ${second4} bytes at once.
eval $(hexdump -v -s ${start} -n 8 -e '1/4 "first4=%u; " 1/4 "second4=%u"' ${device});
echo $(( ${second4} * 4294967296 + ${first4} ));
}
## Functions to pretty print blkid output. ##
BlkidFormat='%-16s %-38s %-10s %s\n';
BlkidTag () {
echo $(blkid -s $2 -o value $1 2>> ${Trash});
}
PrintBlkid () {
local part=$1 suffix=$2;
if [ x"$(blkid ${part} 2> ${Tmp_Log})" != x'' ] ; then
printf "${BlkidFormat}" "${part}" "$(BlkidTag ${part} UUID)" "$(BlkidTag ${part} TYPE)" "$(BlkidTag ${part} LABEL)" >> ${BLKID}${suffix};
else
# blkid -p is not available on all systems.
# This contructs makes sure the "usage" message is not displayed, but catches the "ambivalent" error.
blkid -p "${part}" 2>&1 | grep "^${part}" >> ${BLKID}${suffix};
fi
}
## Read and display the partition table and check the partition table for errors. ##
#
# This function can be applied iteratively so extended partiton tables can also be processed.
#
# Function arguments:
#
# - arg 1: HI = HI of hard drive
# - arg 2: StartEx = start sector of the extended Partition
# - arg 3: N = number of partitions in table (4 for regular PT, 2 for logical
# - arg 4: PT_file = file for storing the partition table
# - arg 5: format = display format to use for displaying the partition table
# - arg 6: EPI = PI of the primary extended partition containing the extended partition.
# ( equals "" for hard drive)
# - arg 7: LinuxIndex = Last linux index assigned (the number in sdXY).
ReadPT () {
local HI=$1 StartEx=$2 N=$3 PT_file=$4 format=$5 EPI=$6 Base_Sector;
local LinuxIndex=$7 boot size start end type drive system;
local i=0 boot_hex label limit MBRSig;
drive=${HDName[${HI}]};
limit=${HDSize[${HI}]};
dd if=${drive} skip=${StartEx} of=${Tmp_Log} count=1 2>> ${Trash};
MBRSig=$(hexdump -v -s 510 -n 2 -e '"%04x"' ${Tmp_Log});
[[ "${MBRSig}" != 'aa55' ]] && echo 'Invalid MBR Signature found.' >> ${PT_file};
if [[ ${StartEx} -lt ${limit} ]] ; then
# set Base_Sector to 0 for hard drive, and to the start sector of the
# primary extended partition otherwise.
[[ x"${EPI}" = x'' ]] && Base_Sector=0 || Base_Sector=${StartArray[${EPI}]};
for (( i=0; i < N; i++ )) ; do
dd if=${drive} skip=${StartEx} of=${Tmp_Log} count=1 2>> ${Trash};
boot_hex=$(hexdump -v -s $((446+16*${i})) -n 1 -e '"%02x"' ${Tmp_Log});
case ${boot_hex} in
00) boot=' ';;
80) boot='* ';;
*) boot='?';;
esac
# Get amd set: partition type, partition start, and partition size.
eval $(hexdump -v -s $((450+16*${i})) -n 12 -e '1/1 "type=%x; " 3/1 "tmp=%x; " 1/4 "start=%u; " 1/4 "size=%u"' ${Tmp_Log});
if [[ ${size} -ne 0 ]] ; then
if ( ( [ "${type}" = '5' ] || [ "${type}" = 'f' ] ) && [ ${Base_Sector} -ne 0 ] ) ; then
# start sector of an extended partition is relative to the
# start sector of an primary extended partition.
start=$((${start}+${Base_Sector}));
if [[ ${i} -eq 0 ]] ; then
echo 'Extended partition linking to another extended partition.' >> ${PT_file};
fi
ReadPT ${HI} ${start} 2 ${PT_file} "${format}" ${EPI} ${LinuxIndex};
else
((PI++));
if [[ "${type}" = '5' || "${type}" = 'f' ]] ; then
KindArray[${PI}]='E';
else
# Start sector of a logical partition is relative to the
# start sector of directly assocated extented partition.
start=$((${start}+${StartEx}));
[[ ${Base_Sector} -eq 0 ]] && KindArray[${PI}]='P' || KindArray[${PI}]='L';
fi
LinuxIndex=$((${LinuxIndex}+1));
end=$((${start}+${size}-1));
[[ "${HDPT[${HI}]}" = 'BootIt' ]] && label="${NamesArray[${EPI}]}_" || label=${drive};
system=$(HexToSystem ${type});
printf "${format}" "${label}${LinuxIndex}" "${boot}" $(InsertComma ${start}) "$(InsertComma ${end})" "$(InsertComma ${size})" "${type}" "${system}" >> ${PT_file};
NamesArray[${PI}]="${label}${LinuxIndex}";
StartArray[${PI}]=${start};
EndArray[${PI}]=${end};
TypeArray[${PI}]=${type};
SystemArray[${PI}]="${system}";
SizeArray[${PI}]=${size};
BootArray[${PI}]="${boot}";
DriveArray[${PI}]=${HI};
ParentArray[${PI}]=${EPI};
( [[ x"${EPI}" = x'' ]] || [[ x"${DeviceArray[${EPI}]}" != x'' ]] ) && DeviceArray[${PI}]=${drive}${LinuxIndex};
if [[ "${type}" = '5' || "${type}" = 'f' ]] ; then
ReadPT ${HI} ${start} 2 ${PT_file} "${format}" ${PI} 4;
fi
fi
elif ( [ ${Base_Sector} -ne 0 ] && [ ${i} -eq 0 ] ) ; then
echo 'Empty Partition.' >> ${PT_file};
else
LinuxIndex=$((${LinuxIndex}+1));
fi
done
else
echo 'EBR refers to a location outside the hard drive.' >> ${PT_file};
fi
}
## Read the GPT partition table (GUID, EFI) ##
#
# Function arguments:
#
# - arg 1: HI = HI of hard drive
# - arg 2: GPT_file = file for storing the GPT partition table
ReadEFI () {
local HI=$1 GPT_file=$2 drive size N=0 i=0 format label PRStart start end type size system;
local attrs attrstr attrs_other j;
drive="${HDName[${HI}]}";
format='%-10s %5s %14s%14s%14s %s\n';
printf "${format}" 'Partition' 'Attrs' 'Start Sector' 'End Sector' '# of Sectors' 'System' >> ${GPT_file};
HDStart[${HI}]=$( Read8Bytes 552 ${drive});
HDEnd[${HI}]=$( Read8Bytes 560 ${drive});
HDUUID[${HI}]=$( hexdump -v -s 568 -n 16 -e '/1 "%02x"' ${drive});
PRStart=$( Read8Bytes 584 ${drive});
N=$( Read4Bytes 592 ${drive});
PRStart=$(( ${PRStart}*512));
PRSize=$( Read4Bytes 596 ${drive});
for (( i = 0; i < N; i++ )) ; do
type=$(hexdump -v -s $((${PRStart}+${PRSize}*${i})) -n 16 -e '/1 "%02x"' ${drive});
if [ "${type}" != '00000000000000000000000000000000' ] ; then
((PI++));
start=$(Read8Bytes $((${PRStart}+32+${PRSize}*${i})) ${drive});
end=$( Read8Bytes $((${PRStart}+40+${PRSize}*${i})) ${drive});
size=$((${end}-${start}+1));
system=$(UUIDToSystem ${type});
label=${drive}$((${i}+1));
# Partition attributes are 8 bytes long and bash arithmetic is signed.
# High bits are used by Windows which automatically overflows computed
# 64 bit number. As we are interested in low bits only, just check it
# and output the rest verbatim if present.
attrs=$(hexdump -v -s $((${PRStart}+48+${PRSize}*${i})) -n 1 -e '/1 "%02x"' ${drive});
attrs_other=$(hexdump -v -s $((${PRStart}+49+${PRSize}*${i})) -n 7 -e '/1 "%02x"' ${drive});
if (( 0x${attrs} & 1 )) ; then
attrstr='R';
else
attrstr=' ';
fi
if (( 0x${attrs} & 2 )) ; then
attrstr="N${attrstr}";
else
attrstr=" ${attrstr}";
fi
if (( 0x${attrs} & 4 )) ; then
attrstr="B${attrstr}";
else
attrstr=" ${attrstr}";
fi
if (( 0x${attrs} & 8 )) || [ ${attrs_other} != '00000000000000' ] ; then
attrstr="+$attrstr";
echo >> ${Unknown_MBR};
echo "${label}: unknown GPT attributes" >> ${Unknown_MBR};
for (( j = 12; j >= 0; j -= 2 )) ; do
printf '%s' ${attrs_other:j:2} >> ${Unknown_MBR}
done
echo ${attrs} >> ${Unknown_MBR}
fi
printf "${format}" "${label}" "${attrstr}" "$(InsertComma ${start})" "$(InsertComma ${end})" "$(InsertComma ${size})" "${system}" >> ${GPT_file};
NamesArray[${PI}]=${label};
DeviceArray[${PI}]=${label};
StartArray[${PI}]=${start};
TypeArray[${PI}]=${type};
SizeArray[${PI}]=${size};
SystemArray[${PI}]=${system};
EndArray[${PI}]=${end};
DriveArray[${PI}]=${HI};
KindArray[${PI}]='P';
ParentArray[${PI}]='';
fi
done
echo >> ${GPT_file};
echo 'Attributes: R=Required, N=No Block IO, B=Legacy BIOS Bootable, +=More bits set' >> ${GPT_file};
}
## Read the Master Partition Table of BootIt NG. ##
#
# Function arguments:
#
# - arg 1: HI = HI of hard drive
# - arg 2: MPT_file = file for storing the MPT
ReadEMBR () {
local HI=$1 MPT_file=$2 drive size N=0 i=0 BINGIndex label start end type format;
local BINGUnknown system StoredPI FirstPI=${FirstPartition[$1]} LastPI=${PI} New;
drive="${HDName[${HI}]}";
format='%-18s %4s%14s%14s%14s %3s %-15s %3s %2s\n';
printf "${format}" 'Partition' 'Boot' 'Start Sector' 'End Sector' '# of Sectors' 'Id' 'System' 'Ind' '?' >> ${MPT_file};
N=$(hexdump -v -s 534 -n 1 -e '"%u"' ${drive});
for (( i = 0; i < N; i++ )) ; do
New=1;
BINGUnknown=$(hexdump -v -s $((541+28*${i})) -n 1 -e '"%x"' ${drive});
start=$( hexdump -v -s $((542+28*${i})) -n 4 -e '4 "%u"' ${drive});
end=$( hexdump -v -s $((546+28*${i})) -n 4 -e '4 "%u"' ${drive});
BINGIndex=$( hexdump -v -s $((550+28*${i})) -n 1 -e '"%u"' ${drive});
type=$( hexdump -v -s $((551+28*${i})) -n 1 -e '"%x"' ${drive});
size=$(( ${end}-${start}+1));
label=$( hexdump -v -s $((552+28*${i})) -n 15 -e '"%_u"' ${drive}| sed -e 's/nul[^$]*//');
system=$( HexToSystem ${type});
printf "${format}" "${label}" "-" "$(InsertComma ${start})" "$(InsertComma ${end})" "$(InsertComma ${size})" "${type}" "${system}" "${BINGIndex}" "${BINGUnknown}" >> ${MPT_file};
StoredPI=${PI};
for (( j = FirstPI; j <= LastPI; j++ )); do
if (( ${StartArray[${j}]} == ${start} )) ; then
PI=${j};
New=0;
break;
fi
done
if [ ${New} -eq 1 ] ; then
((PI++));
StoredPI=${PI};
StartArray[${PI}]=${start};
TypeArray[${PI}]=${type};
SizeArray[${PI}]=${size};
SystemArray[${PI}]=${system};
EndArray[${PI}]=${end};
DriveArray[${PI}]=${HI};
fi
NamesArray[${PI}]=${label};
if ( [ ${type} = 'f' ] || [ ${type} = '5' ] ) ; then
KindArray[${PI}]='E';
ParentArray[${PI}]=${PI};
ReadPT ${HI} ${start} 2 ${MPT_file} "${format}" ${PI} 4;
else
KindArray[${PI}]='P';
ParentArray[${PI}]='';
fi
PI=${StoredPI};
done
}
## Check partition table for errors. ##
#
# This function checks whether:
# - there are any overlapping partitions
# - the logical partitions are inside the extended partition
#
# Function arguments:
#
# - arg 1: PI_first = PI of first partition to consider
# - arg 2: PI_last = PI of last partition to consider
# - arg 3: CHK_file = file for the error messages
# - arg 4: HI = HI of containing hard drive
CheckPT () {
local PI_first=$1 PI_last=$2 CHK_file=$3 HI=$4;
local Si Ei Sj Ej Ki Kj i j k cyl track head cyl_bound sec_bound;
cyl=${HDCylinder[${HI}]};
track=${HDTrack[${HI}]};
head=${HDHead[${HI}]};
cyl_bound=$((cyl * track * head));
sec_bound=${HDSize[${HI}]};
for (( i = PI_first; i <= PI_last; i++ )); do
Si=${StartArray[${i}]};
Ei=${EndArray[${i}]};
Ki=${KindArray[${i}]};
Ni=${NamesArray[${i}]};
if [[ "${Ei}" -gt "${sec_bound}" ]] ; then
echo "${Ni} ends after the last sector of ${HDName[${HI}]}" >> ${CHK_file};
elif [[ "${Ei}" -gt "${cyl_bound}" ]] ; then
echo "${Ni} ends after the last cylinder of ${HDName[${HI}]}" >> ${Trash};
fi
if [[ ${Ki} = "L" ]] ; then
k=${ParentArray[${i}]};
Sk=${StartArray[${k}]};
Ek=${EndArray[${k}]};
Nk=${NamesArray[${k}]};
[[ ${Si} -le ${Sk} || ${Ei} -gt ${Ek} ]] && echo "the logical partition ${Ni} is not contained in the extended partition ${Nk}" >> ${CHK_file};
fi
for (( j = i+1; j <= PI_last; j++ )); do
Sj=${StartArray[${j}]};
Ej=${EndArray[${j}]};
Kj=${KindArray[${j}]};
Nj=${NamesArray[${j}]};
( !( ( [ "${Ki}" = 'L' ] && [ "${Kj}" = 'E' ] ) || ( [ "${Ki}" = 'E' ] && [ "${Kj}" = 'L' ] ) ) \
&& ( ( [ "${Si}" -lt "${Sj}" ] && [ "${Sj}" -lt "${Ei}" ] ) || ( [ "${Sj}" -lt "${Si}" ] && [ "${Si}" -lt "${Ej}" ] ) ) ) \
&& echo "${Ni} overlaps with ${Nj}" >> ${CHK_file};
done
done
}
## Syslinux ##
#
# Determine the exact Syslinux version ("SYSLINUX - version - date"), display
# the offset to the second stage, check the internal checksum (if not correct,
# the ldlinux.sys file, probably moved), display the directory to which
# Syslinux is installed.
syslinux_info () {
local partition=$1;
# Magic number used by Syslinux:
local LDLINUX_MAGIC='fe02b23e';
local LDLINUX_BSS LDLINUX_SECTOR2 ADV_2SECTORS;
local sect1ptr0_offset sect1ptr0 sect1ptr1 tmp;
local magic_offset syslinux_version syslinux_dir;
# Patch area variables:
local pa_version pa_size pa_hexdump_format pa_magic pa_instance pa_data_sectors;
local pa_adv_sectors pa_dwords pa_checksum pa_maxtransfer pa_epaoffset;
local pa_ldl_sectors pa_dir_inode;
# Extended patch area variables:
local epa_size epa_hexdump_format epa_advptroffset epa_diroffset epa_dirlen;
local epa_subvoloffset epa_subvollen epa_secptroffset epa_secptrcnt;
local epa_sect1ptr0 epa_sect1ptr1 epa_raidpatch epa_syslinuxbanner;
# ADV magic numbers:
local ADV_MAGIC_HEAD='a52f2d5a'; # Head signature
local ADV_MAGIC_TAIL='64bf28dd'; # Tail signature
local ADV_MAGIC_CHECKSUM=$((0xa3041767)); # Magic used for calculation ADV checksum
# ADV variables:
local ADVoffset ADV_calculated_checksum ADV_read_checksum ADVentry_offset;
local tag='999' tag_len label;
local csum;
# Clear previous Syslinux message string.
Syslinux_Msg='';
# Read first 512 bytes of partition and convert to hex (ldlinux.bss)
LDLINUX_BSS=$(hexdump -v -n512 -e '/1 "%02x"' ${partition});
# Look for LDLINUX_MAGIC: bytes 504-507
if [ "${LDLINUX_BSS:1008:8}" = "${LDLINUX_MAGIC}" ] ; then
# Syslinux 4.04-pre5 and higher.
pa_version=4; # Syslinux 4.xx patch area
# The offset of Sect1Load in LDLINUX_BSS can be found by doing a
# bitwise XOR of bytes 508-509 (little endian) with 0x1b << 9.
# sect1ptr0_offset starts 2 bytes furter than Sect1Load.
sect1ptr0_offset=$(( ( 0x${LDLINUX_BSS:1018:2}${LDLINUX_BSS:1016:2} ^ ( 0x1b << 9 ) ) + 2 ));
# Get "boot sector offset" (in sectors) of sector 1 ptr LSW: sect1ptr0
# Get "boot sector offset" (in sectors) of sector 1 ptr MSW: sect1ptr1
eval $(hexdump -v -s ${sect1ptr0_offset} -n 10 -e '1/4 "sect1ptr0=%u; " 1/2 "tmp=%u; " 1/4 "sect1ptr1=%u;"' ${partition});
else
# Check if bytes 508-509 = "7f00".
if [ "${LDLINUX_BSS:1016:4}" = '7f00' ] ; then
# Syslinux 3.xx
pa_version=3; # Syslinux 3.xx patch area
# Get "boot sector offset" (in sectors) of sector 1 ptr LSW: sect1ptr0
eval $(hexdump -v -s 504 -n 4 -e '1/4 "sect1ptr0=%u;"' ${partition});
else
# Syslinux 4.00 - Syslinux 4.04-pre4.
pa_version=4; # Syslinux 4.xx patch area
# Search for offset to sect1ptr0 (only found in Syslinux 4.xx)
# 66 b8 xx xx xx xx 66 ba xx xx xx xx bb 00
# [sect1ptr0] [sect1ptr1]
#
# Start searching for this hex string after the DOS superblock: byte 0x5a = 90
eval $(echo ${LDLINUX_BSS:180:844} \
| ${AWK} '{ mask_offset=match($0,"66b8........66ba........bb00"); \
if (mask_offset == "0") { print "sect1ptr0_offset=0;" } \
else { print "sect1ptr0_offset=" (mask_offset -1 ) / 2 + 2 + 90 } }');
if [ ${sect1ptr0_offset} -ne 0 ] ; then
# Syslinux 4.00 - Syslinux 4.04-pre4.
# Get "boot sector offset" (in sectors) of sector 1 ptr LSW: sect1ptr0
# Get "boot sector offset" (in sectors) of sector 1 ptr MSW: sect1ptr1
eval $(hexdump -v -s ${sect1ptr0_offset} -n 10 -e '1/4 "sect1ptr0=%u; " 1/2 "tmp=%u; " 1/4 "sect1ptr1=%u;"' ${partition});
else
Syslinux_Msg='No evidence that this is realy a Syslinux boot sector.';
return;
fi
fi
fi
Syslinux_Msg="Syslinux looks at sector ${sect1ptr0} of ${partition} for its second stage.";
# Start reading 0.5MiB (more than enough) from second sector of the Syslinux
# bootloader (= first sector of ldlinux.sys).
dd if=${partition} of=${Tmp_Log} skip=${sect1ptr0} count=1000 bs=512 2>> ${Trash};
# Get second sector of the Syslinux bootloader (= first sector of ldlinux.sys)
# and convert to hex.
LDLINUX_SECTOR2=$(hexdump -v -n 512 -e '/1 "%02x"' ${Tmp_Log});
# Look for LDLINUX_MAGIC (8 bytes aligned) in sector 2 of the Syslinux bootloader.
for (( magic_offset = $((0x10)); magic_offset < $((0x50)); magic_offset = magic_offset + 8 )); do
if [ "${LDLINUX_SECTOR2:$(( ${magic_offset} * 2 )):8}" = ${LDLINUX_MAGIC} ] ; then
if [ ${pa_version} -eq 4 ] ; then
# Syslinux 4.xx patch area.
# Patch area size: 4+4+2+2+4+4+2+2 = 4*4 + 4*2 = 24 bytes
pa_size='24';
# Get pa_magic, pa_instance, pa_data_sectors, pa_adv_sectors, pa_dwords, pa_checksum, pa_maxtransfer and pa_epaoffset.
pa_hexdump_format='1/4 "pa_magic=0x%04x; " 1/4 "pa_instance=0x%04x; " 1/2 "pa_data_sectors=%u; " 1/2 "pa_adv_sectors=%u; " 1/4 "pa_dwords=0x%u; " 1/4 "pa_checksum=0x%04x; " 1/2 "pa_maxtransfer=%u; " 1/2 "pa_epaoffset=%u;"';
eval $(hexdump -v -s ${magic_offset} -n ${pa_size} -e "${pa_hexdump_format}" ${Tmp_Log});
else
# Syslinux 3.xx patch area.
# Patch area size: 4+4+2+2+4+4 = 4*4 + 2*2 = 20 bytes
pa_size='20';
# Get pa_magic, pa_instance, pa_dwords, pa_ldl_sectors and pa_checksum.
# - pa_dwords: Total dwords starting at ldlinux_sys not including ADVs.
# - pa_ldl_sectors: Number of sectors - (bootsec + sector2) but including any ADVs.
pa_hexdump_format='1/4 "pa_magic=0x%04x; " 1/4 "pa_instance=0x%04x; " 1/2 "pa_dwords=%u; " 1/2 "pa_ldl_sectors=%u; " 1/4 "pa_checksum=0x%04x; " 1/4 "pa_dir_inode=%u;"';
eval $(hexdump -v -s ${magic_offset} -n ${pa_size} -e "${pa_hexdump_format}" ${Tmp_Log});
# Calulate pa_data_sectors: number of sectors (not including ldlinux.bss = first sector of Syslinux).
# - divide by 128 (128 dwords / 512 byte sector)
pa_data_sectors=$(( ${pa_dwords} / 128 ));
# If total dwords is not exactly a multiple of 128, round up the number of sectors (add 1).
if [ $(( ${pa_dwords}%128 )) -ne 0 ] ; then
pa_data_sectors=$(( ${pa_data_sectors} + 1 ));
fi
# Some Syslinux 4.00-pre?? releases are different:
# - have Syslinux 3.xx signature: bytes 508-509 = "7f00".
# - have the "boot sector offset" (in sectors) of sector 1 ptr LSW (bytes 504-507)
# for sect1ptr0, like Syslinux 3.xx.
# - have like Syslinux 4.xx, the same location for pa_data_sectors.
#
# If pa_dwords is less than 1024, it contains the value of pa_data_sectors:
# - if less and pa_words would really be pa_words: ldlinux.sys would be smaller than 4 kiB
# - if more and pa_words would really be pa_data_sectors: ldlinux.sys would be more than 500 kiB
if [ ${pa_dwords} -lt 1024 ] ; then
pa_data_sectors=${pa_dwords};
fi
fi
# Get the "SYSLINUX - version - date" string.
syslinux_version=$(hexdump -v -e '"%_p"' -s 2 -n $(( ${magic_offset} - 2 )) ${Tmp_Log});
syslinux_version="${syslinux_version% \.*}";
# Overwrite the "boot sector type" variable, which was set before calling this function,
# with a more exact Syslinux version number.
BST="${syslinux_version}";
# Check integrity of Syslinux:
# - Checksum starting at ldlinux.sys, stopping before the ADV part.
# - checksum start = LDLINUX_MAGIC - [sum of dwords].
# - add each dword to the checksum value.
# - the value of the checksum after adding all dwords of ldlinux.sys should be 0.
csum=$(hexdump -v -n $(( ${pa_data_sectors} * 512)) -e '/4 "%u\n"' ${Tmp_Log} \
| ${AWK} 'BEGIN { csum=4294967296-1051853566 } { csum=(csum + $1)%4294967296 } END {print csum}' );
if [ ${csum} -ne 0 ] ; then
Syslinux_Msg="${Syslinux_Msg} The integrity check of Syslinux failed.";
return;
fi
if [ ${pa_version} -eq 4 ] ; then
# Extended patch area size: 11*2 = 22 bytes
epa_size='22';
# Get epa_advptroffset, epa_diroffset, epa_dirlen, epa_subvoloffset, epa_subvollen,
# epa_secptroffset, epa_secptrcnt, epa_sect1ptr0, epa_sect1ptr1 and epa_raidpatch.
epa_hexdump_format='1/2 "epa_advptroffset=%u; " 1/2 "epa_diroffset=%u; " 1/2 "epa_dirlen=%u; " 1/2 "epa_subvoloffset=%u; " 1/2 "epa_subvollen=%u; " 1/2 "epa_secptroffset=%u; " 1/2 "epa_secptrcnt=%u; " 1/2 "epa_sect1ptr0=%u; " 1/2 "epa_sect1ptr1=%u; " 1/2 "epa_raidpatch=%u; " 1/2 "epa_syslinuxbanner=%u;"';
eval $(hexdump -v -s ${pa_epaoffset} -n ${epa_size} -e "${epa_hexdump_format}" ${Tmp_Log});
# Get the Syslinux install directory.
syslinux_dir=$(hexdump -v -e '"%_p"' -s ${epa_diroffset} -n ${epa_dirlen} ${Tmp_Log});
syslinux_dir=${syslinux_dir%%\.*};
Syslinux_Msg="${Syslinux_Msg} ${syslinux_version:0:8} is installed in the ${syslinux_dir} directory.";
# In Syslinux 4.04 and higher, the whole Syslinux banner is not in the first sector of ldlinux.sys.
# Only the "SYSLINUX - version" string is still located in the first sector.
# epa_syslinuxbanner points to the whole "SYSLINUX - version - date" string.
if [ ${epa_syslinuxbanner} -lt $(( ${pa_data_sectors} * 512 )) ] ; then
# Get the "SYSLINUX - version - date" string.
tmp=$(hexdump -v -e '"%_p"' -s $(( ${epa_syslinuxbanner} + 2 )) -n 100 ${Tmp_Log});
# Check if we have Syslinux 4.04 or higher, which suppport the epa_syslinuxbanner field
# by comparing the first 8 bytes ("SYSLINUX") of the Syslinux banner from sector 1 with
# the 8 bytes to which epa_syslinuxbanner points.
if [ x"${tmp:0:8}" = x"${syslinux_version:0:8}" ] ; then
syslinux_version="${tmp%%\.No DEFAULT*}";
# Overwrite the "boot sector type" variable, which was set before calling this function,
# with a more exact Syslinux version number.
BST="${syslinux_version}";
fi
fi
# ADV stuff starts here.
if [ ${pa_adv_sectors} -ne 2 ] ; then
Syslinux_Msg="${Syslinux_Msg} There are ${pa_adv_sectors} ADV sectors instead of 2.";
return;
fi
# Get the ADV offset.
ADVoffset=$(( pa_data_sectors * 512 ));
# Get the ADV.
ADV_2SECTORS=$(hexdump -v -s ${ADVoffset} -n 1024 -e '/1 "%02x"' ${Tmp_Log});
# Check if the 2 ADV sectors are exactly the same.
if [ "${ADV_2SECTORS:0:1024}" != "${ADV_2SECTORS:1024:1024}" ] ; then
Syslinux_Msg="${Syslinux_Msg} The 2 ADV sectors are not the same (corrupt).";
return;
fi
# Check if the ADV area contains the ADV head and tail magic.
if ( [ "${ADV_2SECTORS:0:8}" = "${ADV_MAGIC_HEAD}" ] && [ "${ADV_2SECTORS:1016:8}" = "${ADV_MAGIC_TAIL}" ] ) ; then
# Caculate the ADV checksum.
ADV_calculated_checksum=$(hexdump -v -s $(( ${ADVoffset} + 8 )) -n $((512 - 3*4)) -e '/4 "%u\n"' ${Tmp_Log} \
| ${AWK} 'BEGIN { csum='${ADV_MAGIC_CHECKSUM}' } { csum=(csum - $1 + 4294967296)%4294967296 } END { print csum }');
ADV_read_checksum=$(hexdump -s $(( ${ADVoffset} + 4 )) -n 4 -e '/4 "%u\n"' ${Tmp_Log});
if [ ${ADV_calculated_checksum} -eq ${ADV_read_checksum} ] ; then
# Get the info stored in the ADV area:
#
# maximum 2 entries can be stored in the ADV, which have the following layout:
# - byte 1 : tag ==> 0 = no entry, 1 = boot-once entry, 2 = menu-save entry
# - byte 2 : tag_len ==> length of label string
# - byte 3 - (3 + tag_len) : label ==> label name that will be used
# First entry starts a offset 8.
ADVentry_offset=8;
until eval $(hexdump -s $(( ${ADVoffset} + ${ADVentry_offset} )) -n $((512 - 3*4)) \
-e '1/1 "tag=%u; " 1/1 "tag_len=%u; label='\''" 498 "%_p"' ${Tmp_Log};
printf "'");
[ ${tag} -eq 0 ] ; do
if [ ${tag_len} -gt 0 ] ; then
label=${label:0:${tag_len}};
fi
case ${tag} in
1) Syslinux_Msg="${Syslinux_Msg} ${syslinux_version:0:8}'s ADV is set to boot label \"${label}\" next boot only.";;
2) Syslinux_Msg="${Syslinux_Msg} ${syslinux_version:0:8}'s ADV is set to boot label \"${label}\" by default.";;
esac
# Adjust the ADVentry_offset, so it points to the next entry.
ADVentry_offset=$(( ${ADVentry_offset} + ${tag_len} + 2 ));
done
else
Syslinux_Msg="${Syslinux_Msg} The integrity check of the ADV area failed.";
fi
else
Syslinux_Msg="${Syslinux_Msg} The ADV head and tail magic bytes were not found.";
fi
fi
return;
fi
done
# LDLINUX_MAGIC not found.
Syslinux_Msg="${Syslinux_Msg} It is very unlikely that Syslinux is (still) installed. The second stage could not be found.";
}
## Grub Legacy ##
#
# Determine the embeded location of stage 2 in a stage 1 file,
# look for the stage 2 and, if found, determine the
# the location and the path of the embedded menu.lst.
stage2_loc () {
local stage1="$1" HI;
offset=$(hexdump -v -s 68 -n 4 -e '4 "%u"' "${stage1}");
dr=$(hexdump -v -s 64 -n 1 -e '1/1 "%u"' "${stage1}");
pa='T';
Grub_Version='';
for HI in ${!HDName[@]}; do
hdd=${HDName[${HI}]};
if [ ${offset} -lt ${HDSize[HI]} ] ; then
tmp=$(dd if=${hdd} skip=${offset} count=1 2>> ${Trash} | hexdump -v -n 4 -e '"%x"');
if [[ "${tmp}" = '3be5652' || "${tmp}" = 'bf5e5652' ]] ; then
# stage2 files were found.
dd if=${hdd} skip=$((offset+1)) count=1 of=${Tmp_Log} 2>> ${Trash};
pa=$(hexdump -v -s 10 -n 1 -e '"%d"' ${Tmp_Log});
stage2_hdd=${hdd};
Grub_String=$(hexdump -v -s 18 -n 94 -e '"%_u"' ${Tmp_Log});
Grub_Version=$(echo ${Grub_String} | sed -e 's/nul[^$]*//');
BL=${BL}${Grub_Version};
menu=$(echo ${Grub_String} | sed -e 's/[^\/]*//' -e 's/nul[^$]*//');
menu=${menu%% *};
fi
fi
done
dr=$((${dr}-127));
Stage2_Msg="looks at sector ${offset}";
if [ "${dr}" -eq 128 ] ; then
Stage2_Msg="${Stage2_Msg} of the same hard drive";
else
Stage2_Msg="${Stage2_Msg} on boot drive #${dr}";
fi
Stage2_Msg="${Stage2_Msg} for the stage2 file";
if [ "${pa}" = "T" ] ; then
# no stage 2 file found.
Stage2_Msg="${Stage2_Msg}, but no stage2 files can be found at this location.";
else
pa=$((${pa}+1));
Stage2_Msg="${Stage2_Msg}. A stage2 file is at this location on ${stage2_hdd}. Stage2 looks on";
if [ "${pa}" -eq 256 ] ; then
Stage2_Msg="${Stage2_Msg} the same partition";
else
Stage2_Msg="${Stage2_Msg} partition #${pa}";
fi
Stage2_Msg="${Stage2_Msg} for ${menu}.";
fi
}
## Grub2 ##
#
# Collect fragments of core.img using information encoded in the first
# block (diskboot.img).
#
grub2_read_blocklist () {
local hdd="$1";
local core_img_file="$2";
local sector_nr_low sector_nr_high sector_nr fragment_size;
local fragment_offset=1 block_list=500;
# Assemble fragments from "hdd" passed to grub2_info.
# Each block list entry is 12 bytes long and consists of
# 8 bytes = fragment start absolute disk offset in sectors of 512 bytes
# 2 bytes = fragment size in sectors of 512 bytes
# 2 bytes = memory segment to load fragment into
# Entries start at the end of the first sector of core.img and
# go down. End marker is all zeroes.
#
# Blocklists were changed to 64 bit in 2006, so all versions BIS detects
# should have it.
#
# Older versions of hexdump do not support 8 byte integers, so read
# high and low words separately.
while [ ${block_list} -gt 12 ] ; do
sector_nr_low=$(hexdump -v -n 4 -s ${block_list} -e '1/4 "%u"' ${core_img_file});
sector_nr_high=$(hexdump -v -n 4 -s $((block_list+4)) -e '1/4 "%u"' ${core_img_file});
let "sector_nr = (sector_nr_high << 32) + sector_nr_low";
if [ ${sector_nr} -eq 0 ] ; then
return;
fi
fragment_size=$(hexdump -v -n 2 -s $((block_list+8)) -e '1/2 "%u"' ${core_img_file});
dd if="${hdd}" of=${core_img_file} skip=${sector_nr} seek=${fragment_offset} count=${fragment_size} 2>> ${Trash} || return;
let "fragment_offset += fragment_size";
let "block_list -= 12";
done
}
## Grub2 ##
#
# Determine the embeded module name. This function implements manual
# parsing of ELF information to avoid dependency on binutils or similar.
#
grub2_modname ()
{
local modfile=$1;
local file_size=$2;
local e_ehsize sht_offset sht_entsize sht_num sht_shdrndx sht_strtab;
local sht_strtabsize s_nameidx s_type s_name m_offset m_size;
local i=0;
# ELF header is at least 52 bytes in size
if [ "${file_size}" -lt 52 ] ; then
return;
fi
# ELF Magic + CLASS32 + LSB + VERSION
if [ "$(hexdump -n 7 -e '4/1 "%02x" 3/1 "%x"' "${modfile}")" != '7f454c46111' ] ; then
return;
fi
# RELOCATABLE + MACHINE + VERSION
if [ "$(hexdump -s 16 -n 8 -e '2/2 "%x" 1/4 "%x"' "${modfile}")" != '131' ] ; then
return;
fi
# ELF header size
e_ehsize=$(hexdump -s 40 -n 2 -e '"%u"' "${modfile}")
if [ "${e_ehsize}" -lt 52 -o "${e_ehsize}" -gt "${file_size}" ] ; then
return;
fi
# Offset of section headers table
sht_offset=$(hexdump -s 32 -n 4 -e '"%u"' "${modfile}")
if [ "${sht_offset}" -lt "${e_ehsize}" -o "${sht_offset}" -ge "${file_size}" ] ; then
return;
fi
# Size of section header
sht_entsize=$(hexdump -s 46 -n 2 -e '"%u"' "${modfile}")
# Number of section headers
sht_num=$(hexdump -s 48 -n 2 -e '"%u"' "${modfile}")
if [ "${sht_entsize}" -eq 0 -o "${sht_num}" -eq 0 -o $((sht_offset + sht_entsize*sht_num)) -gt "${file_size}" ] ; then
return;
fi
# Index of section names string table
sht_shdrndx=$(hexdump -s 50 -n 2 -e '"%u"' "${modfile}")
if [ "${sht_shdrndx}" -ge "${sht_num}" ] ; then
return;
fi
# Offset of section names string table
sht_strtab=$(hexdump -s $((sht_offset + $((sht_shdrndx*sht_entsize)) + 16)) -n 4 -e '"%u"' "${modfile}");
if [ "${sht_strtab}" -lt "${e_ehsize}" -o "${sht_strtab}" -ge "${file_size}" ] ; then
return;
fi
# Size of section names string table
sht_strtabsize=$(hexdump -s $((sht_offset + $((sht_shdrndx*sht_entsize)) + 20)) -n 4 -e '"%u"' "${modfile}");
if [ "${sht_strtabsize}" -eq 0 -o "${sht_strtabsize}" -gt "$((file_size-sht_strtab))" ] ; then
return;
fi
while [ "${i}" -lt $((sht_entsize*sht_num)) ] ; do
s_nameidx=$(hexdump -s $((sht_offset + i)) -n 4 -e '"%u"' "${modfile}");
if [ "${s_nameidx}" -lt "${sht_strtabsize}" ] ; then
s_type=$(hexdump -s $((sht_offset + i + 4)) -n 4 -e '"%u"' "${modfile}");
# PROGBITS
if [ "${s_type}" -eq 1 ] ; then
s_name=$(hexdump -s $((sht_strtab + s_nameidx)) -n "${sht_strtabsize}" -e "1/${sht_strtabsize} \"%s\"" "${modfile}");
if [ "${s_name}" = '.modname' ] ; then
m_offset=$(hexdump -s $((sht_offset + i + 16)) -n 4 -e '"%u"' "${modfile}");
m_size=$(hexdump -s $((sht_offset + i + 20)) -n 4 -e '"%u"' "${modfile}");
if [ $((m_offset + m_size)) -lt "${file_size}" ] ; then
hexdump -s "${m_offset}" -n "${m_size}" -e "/${m_size} \"%s\"" "${modfile}";
return
fi
fi
fi
fi
: $((i+=sht_entsize))
done
# Display "???" as indication that parsing failed
printf '%s' '???'
return
}
## Grub2 ##
#
# Determine the (embeded) location of core.img for a Grub2 boot.img file,
# determine the path of the grub2 directory and look for an embedded config file.
#
grub2_info () {
local stage1="$1" hdd="$2";
# When $grub2_version is "1.99-2.00", we want to override this value
# with a more exact value later (needs to be a global variable).
grub2_version="$3";
# Have we got plain file or need to collect full core.img from blocklists?
local core_source="$4";
local sector_offset drive_offset directory_offset sector_nr drive_nr drive_nr_hex;
local partition core_dir embedded_config HI magic core_img_found=0 embedded_config_found=0;
local total_module_size kernel_image_size compressed_size offset_lzma lzma_uncompressed_size;
local grub_module_info_offset grub_module_magic grub_modules_offset grub_modules_size;
local grub_module_type grub_module_size grub_module_header_offset grub_modules_end_offset;
local lzma_compressed_size reed_solomon_redundancy reed_solomon_length boot_dev boot_drive;
local core_img_flavour='detect' modname all_modules need_core_prologue=0;
local grub_module_header_next;
> ${core_img_file_type_2}
case "${grub2_version}" in
1.96) sector_offset='68'; drive_offset='76'; directory_offset='553';;
1.97-1.98) sector_offset='92'; drive_offset='100'; directory_offset='540';;
1.99|1.99-2.00|2.00) sector_offset='92'; drive_offset='100';;
esac
# Offset to core.img (in sectors).
sector_nr=$(hexdump -v -s ${sector_offset} -n 4 -e '4 "%u"' "${stage1}" 2>> ${Trash});
# BIOS drive number on which grub2 looks for its second stage (=core.img):
# - "0xff" means that grub2 will use the BIOS drive number passed via the DL register.
# - if this value isn't "0xff", that value will used instead.
# Since version 1.97 GRUB2 is using only 0xff. We cannot reliably determine BIOS numbers
# anyway, so just skip core.img detection in this case.
drive_nr_hex=$(hexdump -v -s ${drive_offset} -n 1 -e '"0x%02x"' "${stage1}" 2>> ${Trash});
drive_nr=$(( ${drive_nr_hex} - 127 ));
if [ "${drive_nr_hex}" != '0xff' ] ; then
Grub2_Msg="is configured to load core.img from BIOS drive ${drive_nr} (${drive_nr_hex}) instead of using the boot drive passed by the BIOS";
return
fi
Grub2_Msg="looks at sector ${sector_nr} of the same hard drive for core.img";
for HI in ${!HDName[@]} ; do
# If the drive name passed to grub2_info matches the drive name of the current
# value of HDName, see if the sector offset to core.img is smaller than the
# total number of sectors of that drive.
if [ ${hdd} = ${HDName[${HI}]} ] ; then
if [ ${sector_nr} -lt ${HDSize[HI]} ] ; then
if [ "${core_source}" = 'file' ] ; then
# Use "file" passed to grub2_info directly.
dd if="${stage1}" of=${core_img_file} skip=${sector_nr} count=1024 2>> ${Trash};
else
# Use "hdd" passed to grub2_info.
# First make sure to collect core.img fragments. Read the first block of
# core.img and assemble it further from blocklists
dd if="${hdd}" of=${core_img_file} skip=${sector_nr} count=1 2>> ${Trash};
grub2_read_blocklist "${hdd}" ${core_img_file};
fi
magic=$(hexdump -v -n 4 -e '/1 "%02x"' ${core_img_file});
# 5256be1b - upstream diskboot.S
# 5256be6f - unknown
# 52e82801 - Ubuntu diskboot.S with conditional message
# 52bff481 - RHEL7 diskboot.S with patched out message
# 5256be63 - trustedgrub2 1.4
# 5256be56 - diskboot.S with mjg TPM patches (e.g. in openSUSE Tumbleweed)
case "${magic}" in
'5256be1b'|'5256be6f'|'52e82801'|'52bff481'|'5256be63'|'5256be56')
core_img_found=1;;
esac
if [ ${core_img_found} -eq 1 ] ; then
if ( [ "${grub2_version}" = '1.99' ] || [ "${grub2_version}" = '1.99-2.00' ] || [ "${grub2_version}" = '2.00' ] ) ; then
# Find the last 8 bytes of lzma_decode to find the offset of the lzma_stream:
# - v1.99: "d1 e9 df fe ff ff 00 00"
# - v2.00: "d1 e9 df fe ff ff 66 90" (pad bytes NOP)
# "d1 e9 df fe ff ff 8d" (pad bytes LEA ...)
#
# arvidjaar@gmail.com:
# final directive in startup_raw.S is .p2align 4 which
# (at least using current GCC/GAS) adds lea instructions
# (8d...). Exact format and length apparently depend on pad
# size and may be on toolkit version. So just accept anything
# starting with lea.
#
# FIXME what if it ends on exact 16 byte boundary?
eval $(hexdump -v -n 10000 -e '1/1 "%02x"' ${core_img_file} | \
${AWK} '{ found_at=match($0, "d1e9dffeffff" ); if (found_at == "0") { print "offset_lzma=0" } \
else { print "offset_lzma=" ((found_at - 1 ) / 2 ) + 8 "; lzma_decode_last8bytes=" substr($0,found_at,16) ";" } }');
if [ "${grub2_version}" = '1.99-2.00' ] ; then
if ( [ "${lzma_decode_last8bytes}" = "d1e9dffeffff6690" ] || [ "${lzma_decode_last8bytes:0:14}" = "d1e9dffeffff8d" ] ) ; then
grub2_version='2.00';
else
grub2_version='1.99';
fi
fi
else
# Grub2 (v1.96 and v1.97-1.98).
partition=$(hexdump -v -s 532 -n 1 -e '"%d"' ${core_img_file});
core_dir=$(hexdump -v -s ${directory_offset} -n 64 -e '"%_u"' ${core_img_file} | sed 's/nul[^$]*//');
fi
if [ "${grub2_version}" = '1.99' ] ; then
# For Grub2 (v1.99), the core_dir is just at the beginning of the compressed part of core.img.
# Get grub_total_module_size : byte 0x208-0x20b of embedded core.img ==> byte 520
# Get grub_kernel_image_size : byte 0x20c-0x20f of embedded core.img ==> byte 524
# Get grub_compressed_size : byte 0x210-0x213 of embedded core.img ==> byte 528
# Get grub_install_dos_part : byte 0x214-0x218 of embedded core.img ==> byte 532 --> only 1 byte needed (partition)
eval $(hexdump -v -s 520 -n 13 -e '1/4 "total_module_size=%u; " 1/4 "kernel_image_size=%u; " 1/4 "compressed_size=%u; " 1 "partition=%d;"' ${core_img_file});
# Do we have xz or lzma installed?
if [ "${UNLZMA}" != 'none' ] ; then
if [ ${offset_lzma} -ne 0 ] ; then
# Correct the offset to the lzma stream, when 8 subsequent bytes of zeros are at the start of this offset.
if [ $(hexdump -v -s ${offset_lzma} -n 8 -e '1/1 "%02x"' ${core_img_file}) = '0000000000000000' ] ; then
offset_lzma=$(( ${offset_lzma} + 8 ));
fi
# Calculate the uncompressed size to which the compressed lzma stream needs to be expanded.
lzma_uncompressed_size=$(( ${total_module_size} + ${kernel_image_size} - ${offset_lzma} + 512 ));
# Make lzma header (13 bytes): ${lzma_uncompressed_size} must be displayed in little endian format.
printf '\x5d\x00\x00\x01\x00'$( printf '%08x' $((${lzma_uncompressed_size} - ${offset_lzma} + 512 )) \
| ${AWK} '{printf "\\x%s\\x%s\\x%s\\x%s", substr($0,7,2), substr($0,5,2), substr($0,3,2), substr($0,1,2)}' )'\x00\x00\x00\x00' > ${Tmp_Log};
# Get lzma_stream, add it after the lzma header and decompress it.
dd if=${core_img_file} bs=${offset_lzma} skip=1 count=$((${lzma_uncompressed_size} / ${offset_lzma} + 1)) 2>> ${Trash} \
| cat ${Tmp_Log} - | ${UNLZMA} 2>> ${Trash} > ${core_img_file_unlzma};
# Get core dir.
core_dir=$( hexdump -v -n 64 -e '"%_c"' ${core_img_file_unlzma} );
# Remove "\0"s at the end.
core_dir="${core_dir%%\\0*}";
# Offset of the grub_module_info structure in the uncompressed part.
grub_module_info_offset=$(( ${kernel_image_size} - ${offset_lzma} + 512 ));
eval $(hexdump -v -n 12 -s ${grub_module_info_offset} -e '"grub_module_magic=" 4/1 "%_c" 1/4 "; grub_modules_offset=%u; " 1/4 "grub_modules_size=%u;"' ${core_img_file_unlzma});
# Check for the existence of the grub_module_magic.
if [ x"${grub_module_magic}" = x'mimg' ] ; then
# Embedded grub modules found.
grub_modules_end_offset=$(( ${grub_module_info_offset} + ${grub_modules_size} ));
grub_module_header_offset=$(( ${grub_module_info_offset} + ${grub_modules_offset} ));
# Traverse through the list of modules and check if it is a config module.
while [ ${grub_module_header_offset} -lt ${grub_modules_end_offset} ] ; do
eval $(hexdump -v -n 8 -s ${grub_module_header_offset} -e '1/4 "grub_module_type=%u; " 1/4 "grub_module_size=%u;"' ${core_img_file_unlzma});
if [ ${grub_module_type} -eq 2 ] ; then
# This module is an embedded config file.
embedded_config_found=1;
embedded_config=$( hexdump -v -n $(( ${grub_module_size} - 8 )) -s $(( ${grub_module_header_offset} + 8 )) -e '"%_c"' ${core_img_file_unlzma} );
# Remove "\0" at the end.
embedded_config=$( printf "${embedded_config%\\0}" );
break;
fi
grub_module_header_offset=$(( ${grub_module_header_offset} + ${grub_module_size} ));
done
fi
fi
else
# When xz or lzma isn't available, we can't get the core_dir, but we still can show some info.
core_dir='??';
echo 'To be able to see for which directory Grub2 (v1.99) looks for, install "xz" or "lzma".' >&2;
fi
elif [ "${grub2_version}" = '2.00' ] ; then
# For Grub2 (v2.00), the core_dir is stored in the compressed part of core.img in the same
# way as the modules and embedded config file.
# Get grub_compressed_size : byte 0x208-0x20b of embedded core.img ==> byte 520
# Get grub_uncompressed_size : byte 0x20c-0x20f of embedded core.img ==> byte 524
# Get grub_reed_solomon_redundancy : byte 0x210-0x213 of embedded core.img ==> byte 528
# Get grub_no_reed_solomon_length : byte 0x214-0x217 of embedded core.img ==> byte 532
# Get grub_boot_dev : byte 0x218-0x21a of embedded core.img ==> byte 536 ( should also contain the grub_boot_drive field )
# Get grub_boot_drive : byte 0x21b of embedded core.img ==> byte 539
eval $(hexdump -v -s 520 -n 20 -e '1/4 "lzma_compressed_size=%u; " 1/4 "lzma_uncompressed_size=%u; " 1/4 "reed_solomon_redundancy=%u; " 1/4 "reed_solomon_length=%u; boot_dev=" 3/1 "%x" 1 "; boot_drive=%d;"' ${core_img_file});
# Do we have xz or lzma installed?
if [ "${UNLZMA}" != 'none' ] ; then
if [ ${offset_lzma} -ne 0 ] ; then
# Grub2 pads the start of the lzma stream to a 16 bytes boundary.
# Correct the offset to the lzma stream if necessary
# Current GCC adds lea instructions as pad bytes
padsize=$(( (((${offset_lzma} + 15) >> 4) << 4) - ${offset_lzma} ));
if ( [ ${padsize} -gt 0 ] ) ; then
offset_lzma=$(( ${offset_lzma} + ${padsize} ));
fi
# Make lzma header (13 bytes): ${lzma_uncompressed_size} must be displayed in little endian format.
printf '\x5d\x00\x00\x01\x00'$( printf '%08x' ${lzma_uncompressed_size} \
| ${AWK} '{printf "\\x%s\\x%s\\x%s\\x%s", substr($0,7,2), substr($0,5,2), substr($0,3,2), substr($0,1,2)}' )'\x00\x00\x00\x00' > ${Tmp_Log};
# Get lzma_stream, add it after the lzma header and decompress it.
dd if=${core_img_file} bs=${offset_lzma} skip=1 count=${lzma_compressed_size} 2>> ${Trash} \
| cat ${Tmp_Log} - | ${UNLZMA} 2>> ${Trash} > ${core_img_file_unlzma};
# Get offset to the grub_module_info structure in the uncompressed part.
eval $(hexdump -v -s 19 -n 4 -e '1/4 "grub_module_info_offset=%u;"' ${core_img_file_unlzma});
eval $(hexdump -v -n 12 -s ${grub_module_info_offset} -e '"grub_module_magic=" 4/1 "%_c" 1/4 "; grub_modules_offset=%u; " 1/4 "grub_modules_size=%u;"' ${core_img_file_unlzma});
# Check for the existence of the grub_module_magic.
if [ x"${grub_module_magic}" = x'mimg' ] ; then
# Embedded grub modules found.
grub_modules_end_offset=$(( ${grub_module_info_offset} + ${grub_modules_size} ));
grub_module_header_offset=$(( ${grub_module_info_offset} + ${grub_modules_offset} ));
# Traverse through the list of modules and check if it is a config module.
# Upstream GRUB2 supports following module types:
# 0 - ELF modules; may be included multiple times
# 1 - memory disk image; should be included just once
# 2 - embedded initial configuration code; should be included just once
# 3 - initial value of ${prefix} variable. Device part may be omitted,
# in which case device is guessed at startup
# 4 - public GPG keyring used for file signature checking;
# may be included multiple times
#
# All parts are optional (although in practice
# at least drivers for disk and filesystem must be
# present).
#
# Since RPM version 2.00-10 fedora includes patch that
# inserts additional module type after the first one,
# thus shifting all numbers starting with 1. So
# embedded config and prefix become 3 and 4 on fedora.
while [ ${grub_module_header_offset} -lt ${grub_modules_end_offset} ] ; do
if [ $(( ${grub_modules_end_offset} - ${grub_module_header_offset} )) -lt 8 ] ; then
echo 'Remaining space in GRUB2 module list too short for a module' >&2;
all_modules="${all_modules} <short>";
need_core_prologue=1;
break
fi
eval $( hexdump -v -n 8 -s ${grub_module_header_offset} -e '1/4 "grub_module_type=%u; " 1/4 "grub_module_size=%u;"' ${core_img_file_unlzma} );
# Next module is always aligned on 4 bytes boundary on i386,
# but sometimes grub stores shorter size. Make sure to adjust it.
grub_module_header_next=$(( ${grub_module_header_offset} + 8 + (((${grub_module_size} - 8 + 3) >> 2) << 2) ));
if [ ${grub_module_header_next} -gt ${grub_modules_end_offset} ] ; then
printf 'GRUB2 module size too large; skipping remaining modules. Size left: %d\n' $(( {grub_modules_end_offset} - ${grub_module_header_offset} )) >&2;
all_modules="${all_modules} <skipped>";
need_core_prologue=1;
break
fi
if [ ${grub_module_type} -eq 0 ] ; then
# Regular ELF module
dd count=$(( grub_module_size - 8 )) skip=$(( grub_module_header_offset + 8 )) if=${core_img_file_unlzma} of=${GRUB200_Module} bs=1 2>> ${Trash};
modname=$(grub2_modname ${GRUB200_Module} $(( grub_module_size - 8 )));
if [ -n "${modname}" ] ; then
all_modules="${all_modules} ${modname}";
need_core_prologue=1;
fi
elif [ ${grub_module_type} -eq 1 ] ; then
# "stale" ELF module on fedora or memory disk everywhere else
if [ ${core_img_flavour} = 'detect' ] ; then
if [ "$(hexdump -v -n 4 -s $((grub_module_header_offset+8)) -e '"%c"' ${core_img_file_unlzma})" = $'\x7f''ELF' ] ; then
# fedora "stale" ELF module
# TODO display Fedora stale modules
core_img_flavour='fedora';
else
core_img_flavour='upstream';
fi
fi
elif [ ${grub_module_type} -eq 2 ] ; then
# memory disk on fedora or embedded config everywhere else
if [ ${core_img_flavour} = 'detect' ] ; then
# Normally core.img will have prefix which is easier to detect,
# so leave detection as last resort.
dd if=${core_img_file_unlzma} of=${core_img_file_type_2} bs=1 skip=$((grub_module_header_offset+8)) count=$((grub_module_size-8)) 2>> ${Trash};
fi
if [ ${core_img_flavour} = 'upstream' ] ; then
# This module is an embedded config file.
embedded_config_found=1;
need_core_prologue=1;
# Remove padding starting with the first "\0" at the end.
embedded_config=$( hexdump -v -n $(( ${grub_module_size} - 8 )) -s $(( ${grub_module_header_offset} + 8 )) -e '"%_c"' ${core_img_file_unlzma} | sed -e 's/\(\\0\).*$//');
fi
elif [ ${grub_module_type} -eq 3 ] ; then
# embedded config on fedora or prefix everywhere else
if [ ${core_img_flavour} = 'detect' ] ; then
# if it looks like file name, assume prefix
if [[ "$(hexdump -v -n 1 -s $(( grub_module_header_offset + 8 )) -e '"%c"' ${core_img_file_unlzma})" == [/\(] ]] ; then
core_img_flavour='upstream';
else
core_img_flavour='fedora';
fi
fi
if [ ${core_img_flavour} = 'upstream' ] ; then
# This module contains the prefix.
# Get core dir.
# Remove padding "\0"'s at the end.
core_dir=$( hexdump -v -n $(( ${grub_module_size} - 8 )) -s $(( ${grub_module_header_offset} + 8 )) -e '"%_c"' ${core_img_file_unlzma} | sed -e 's/\(\\0\)\+$//');
elif [ ${core_img_flavour} = 'fedora' ] ; then
# This module is an embedded config file.
embedded_config_found=1;
need_core_prologue=1;
# Remove padding starting with the first "\0" at the end.
embedded_config=$( hexdump -v -n $(( ${grub_module_size} - 8 )) -s $(( ${grub_module_header_offset} + 8 )) -e '"%_c"' ${core_img_file_unlzma} | sed -e 's/\(\\0\).*$//');
fi
elif [ ${grub_module_type} -eq 4 ] ; then
# prefix on fedora or GPG keyring everywhere else
if [ ${core_img_flavour} = 'detect' ] ; then
# if it looks like file name, assume prefix
# GPG ring normall has \x99 as first byte
if [[ "$(hexdump -v -n 1 -s $(( grub_module_header_offset + 8 )) -e '"%c"' ${core_img_file_unlzma})" == [/\(] ]] ; then
core_img_flavour='fedora';
else
core_img_flavour='upstream';
fi
fi
if [ ${core_img_flavour} = 'fedora' ] ; then
# This module contains the prefix.
# Get core dir.
# Remove padding "\0"'s at the end.
core_dir=$( hexdump -v -n $(( ${grub_module_size} - 8 )) -s $(( ${grub_module_header_offset} + 8 )) -e '"%_c"' ${core_img_file_unlzma} | sed -e 's/\(\\0\)\+$//');
elif [ ${core_img_flavour} = 'upstream' ] ; then
# TODO list GPG keyring
:
fi
fi
grub_module_header_offset=${grub_module_header_next};
done
fi
fi
else
# When xz or lzma isn't available, we can't get the core_dir, but we still can show some info.
core_dir='??';
echo 'To be able to see for which directory Grub2 (v2.00) looks for, install "xz" or "lzma".' >&2;
fi
fi
fi
fi
fi
done
if [ "${grub2_version}" = '2.00' ] ; then
if [ -s ${core_img_file_type_2} ] ; then
if [ "${core_img_flavour}" = 'detect' ] ; then
# Neither type 1, 3 or 4 modules were present. So we have either
# embedded config or memory disk.
if type file > /dev/null 2>&1 ; then
if [[ "$(LC_ALL=C file ${core_img_file_type_2})" == *"ASCII text"* ]] ; then
# upstream embedded config
core_img_flavour='upstream';
fi
fi
fi
if [ ${core_img_flavour} = 'upstream' ] ; then
embedded_config_found=1;
need_core_prologue=1;
# Remove padding starting with the first "\0" at the end.
embedded_config=$( hexdump -v -e '"%_c"' ${core_img_file_type_2} | sed -e 's/\(\\0\).*$//' );
fi
fi
fi
if [ ${core_img_found} -eq 0 ] ; then
# core.img not found.
Grub2_Msg="${Grub2_Msg}, but core.img can not be found at this location";
else
# core.img found.
Grub2_Msg="${Grub2_Msg}. core.img is at this location";
# In GRUB 2.00 core.img prefix is optional
if [ -n "${core_dir}" ]; then
Grub2_Msg="${Grub2_Msg} and looks for ${core_dir}";
if [ -n "${partition}" ]; then
partition=$(( ${partition} + 1 ));
if [ ${partition} -eq 255 ] ; then
Grub2_Msg="${Grub2_Msg} on this drive";
else
Grub2_Msg="${Grub2_Msg} in partition ${partition}";
fi
fi
fi
if [ ${need_core_prologue} -eq 1 ] ; then
Grub2_Msg=$(printf "${Grub2_Msg}. It also embeds following components:");
fi
if [ -n "${all_modules}" ] ; then
all_modules="${all_modules# }";
Grub2_Msg=$(printf "${Grub2_Msg}\n\nmodules\n--------------------------------------------------------------------------------\n${all_modules}\n--------------------------------------------------------------------------------");
fi
if [ ${embedded_config_found} -eq 1 ] ; then
# Embedded config file found.
Grub2_Msg=$(printf "${Grub2_Msg}\n\nconfig script\n--------------------------------------------------------------------------------\n${embedded_config}\n--------------------------------------------------------------------------------");
fi
fi
}
## Get embedded menu for grub4dos (grldr/grub.exe) and wee (installed in the MBR). ##
#
# Function arguments:
#
# - arg 1: source = file (grub4dos) / device (WEE)
# - arg 2: titlename = first part of the title that needs to be displayed
#
get_embedded_menu () {
local source=$1 titlename=$2;
# Check if magic bytes that go before the embedded menu, are present.
offset_menu=$(dd if="${source}" count=4 bs=128k 2>> ${Trash} | hexdump -v -e '/1 "%02x"' | grep -b -o 'b0021ace000000000000000000000000');
if [ -n "${offset_menu}" ] ; then
# Magic found.
titlebar_gen "${titlename}" " embedded menu";
echo '--------------------------------------------------------------------------------' >> "${Log1}";
# Calcutate the exact offset to the embedded menu.
offset_menu=$(( ( ${offset_menu%:*} / 2 ) + 16 ));
dd if="${source}" count=1 skip=1 bs=${offset_menu} 2>> ${Trash} | ${AWK} 'BEGIN { RS="\0" } { if (NR == 1) print $0 }' >> "${Log1}";
echo '--------------------------------------------------------------------------------' >> "${Log1}";
fi
}
## Show the location (offset) of a file on a disk ##
#
# Function arguments:
#
# - arg 1: filename1
# - arg 2: filename2
# - arg 3: filename3
# - ......
#
# Return values:
#
# - 0: None of the provided filenames was found.
# - 1: At least one of the provided filenames was found.
last_block_of_file () {
local display='0';
local BlockSize Fragments Filefrag_Format EndGiByte EndGByte;
# Remove an existing ${Tmp_Log} log.
rm -f ${Tmp_Log};
# "$@" contains all function arguments (filenames).
for file in "$@" ; do
if [[ -f "${file}" ]] && [[ -s "${file}" ]] && FileNotMounted "${mountname}/${file}" "${mountname}" ; then
# There are 4 versions of e2fsprogs filefrag output.
# In all cases final line could be "1 extent" instead.
#
# v1
# Blocksize of file %s is %d
# File size of %s is %lld (%d blocks)
# %s: %d extents found[, perfection would be %d extent%s]
#
# v2
# Blocksize of file %s is %d
# File size of %s is %lld (%d blocks)
# First block: %ld
# Last block: %ld
# %s: %d extents found[, perfection would be %d extent%s]
#
# v3
# File size of %s is %lld (%ld block%s, blocksize %d)
# ext logical physical expected length flags
# 0 nnn nnn nnn xxx
# 1 nnn nnn nnn nnn xxx
# ...
# %s: %d extents found[, perfection would be %d extent%s]
#
# v4
# File size of %s is %llu (%lu block%s of %d bytes)
# ext: logical_offset: physical_offset: length: expected: flags:
# 0: nnn.. nnn: nnn.. nnn: nnn: xxx
# 1: nnn.. nnn: nnn.. nnn: nnn: nnn: xxx
# ...
# %s: %d extents found[, perfection would be %d extent%s]
#
# FIXME e2fsprogs filefrag output "Last block:", not "Last Block:".
# Was there yet another filefrag implementation?
#
# XXX Original code metioned filefrag output that can show last
# block but not number of extents. Unless there was some other
# implementation of filefrag, it does not match e2fsprogs sources.
#
# XXX Can we hit files with spaces (field count is wrong then)?
eval $(filefrag -v "${file}" \
| ${AWK} -F ' ' 'BEGIN { blocksize=0; expected=0; extents=0; ext_ind=0; last_ext_loc=0; ext_length=0; filefrag_format=""; last_block=0 } \
{ if ( $1 == "Blocksize" ) { blocksize=$6; filefrag_format="v1"; }; \
if ( filefrag_format == "v1" ) { \
if ( $1$2 ~ "LastBlock:" ) { last_block = $3 }; \
} else if ( $(NF-1) == "blocksize" ) { \
blocksize = substr($NF,0,length($NF) - 1); \
filefrag_format = "v3"; \
} else if ( $(NF) == "bytes)" ) { \
blocksize = $(NF-1); \
filefrag_format = "v4"; \
FS=" *|: *|[.][.] *"; \
} \
if ( expected != 0 ) { \
if ( filefrag_format == "v3" && ext_ind == $1 ) { \
if ( last_ext_loc < $3 ) { \
last_ext_loc = $3; \
if ( substr($0, expected, 1) == " " ) { \
ext_length = $4; } \
else { \
ext_length = $5; \
} \
} \
} else if ( filefrag_format == "v4" && ext_ind == $2 ) { \
if ( last_block < $6 ) { \
last_block = $6; \
} \
} \
ext_ind += 1; \
} else { \
if ( filefrag_format == "v3" && $4 == "expected" ) { \
expected= index($0,"expected") + 7; \
} else if ( filefrag_format == "v4" && $2 == "ext" ) { \
expected = 1; \
} \
} \
if ( $3 == "extents" ) { \
extents = $2; \
} else if ( $3 == "extent" ) { \
extents = 1; \
} \
} \
END { \
if ( filefrag_format == "v3" ) { \
last_block = last_ext_loc + ext_length; \
} \
printf "BlockSize=" blocksize "; Fragments=" extents "; Filefrag_Format=" filefrag_format "; "; \
if ( last_block == 0 ) { \
printf "EndGiByte=??; EndGByte=??;" \
} else { \
EndByte = last_block * blocksize + 512 * '${start}'; \
printf "EndGiByte=%.9f; EndGByte=%.9f;", EndByte / 1024 ^ 3, EndByte / 1000 ^ 3; \
} \
}');
if [ "${Filefrag_Format}" = '' ] ; then
echo "Unknown filefrag output format" >&2;
return 0;
fi
if [ "${BlockSize}" -ne 0 ] ; then
if [ "${Fragments}" -eq 0 ] ; then
printf "%14s = %-14s %s\n" "${EndGiByte}" "${EndGByte}" "${file}" >> ${Tmp_Log};
else
printf "%14s = %-14s %-45s %2s\n" "${EndGiByte}" "${EndGByte}" "${file}" "${Fragments}" >> ${Tmp_Log};
fi
fi
# Return 1, when we find at least one of the provided filenames,
# so we know that we need to display the content of ${Tmp_Log} later.
display=1;
fi
done
return ${display};
}
## Get_Partition_Info search a partition for information relevant for booting. ##
#
# Function arguments:
#
# - arg 1: log = local version of RESULT.txt
# - arg 2: log1 = local version of log1
# - arg 3: part = device for the partition
# - arg 4: name = descriptive name for the partition
# - arg 5: mountname = path where partition will be mounted.
# - arg 6: kind = kind of the partition
# - arg 7: start = starting sector of the partition
# - arg 8: end = ending sector of the partition
# - arg 9: system = system of the partition
# - arg 10: PI = PI of the partition, (equal to "", if not a regular partition)
Get_Partition_Info() {
local Log="$1" Log1="$2" part="$3" name="$4" mountname="$5" kind="$6" start="$7" end="$8" system="$9" PI="${10}";
local line size=$((end-start)) BST='' BSI='' BFI='' OS='' BootFiles='' Bytes80_to_83='' Bytes80_to_81='' offset='';
local offset_menu='' part_no_mount=0 com32='' com32_version='';
echo "Searching ${name} for information... ";
PrintBlkid ${part};
# Type of filesystem according to blkid.
type=$(BlkidTag ${part} TYPE);
[ "${system}" = 'BIOS Boot partition' ] && type='BIOS Boot partition';
[ -n ${PI} ] && FileArray[${PI}]=${type};
# Display partition subtitle of 80 characters width.
line='________________________________________________________________________________';
line=${line:$(( ${#name} + 2 ))};
printf '%s: %s\n\n' "${name}" "${line}" >> "${Log}";
# Directory where the partition will be mounted.
mkdir -p "${mountname}";
# Check for extended partion.
if ( [ "${kind}" = 'E' ] && [ x"${type}" = x'' ] ) ; then
type='Extended Partition';
# Don't display the error message from blkid for extended partition.
cat ${Tmp_Log} >> ${Trash};
else
cat ${Tmp_Log} >&2;
fi
# Display the File System Type.
echo " File system: ${type}" >> "${Log}";
# Get bytes 0x80-0x83 of the Volume Boot Record (VBR).
Bytes80_to_83=$(hexdump -v -n 4 -s $((0x80)) -e '4/1 "%02x"' ${part});
# Get bytes 0x80-0x81 of the Volume Boot Record (VBR).
Bytes80_to_81="${Bytes80_to_83:0:4}";
case ${Bytes80_to_81} in
0069) BST='ISOhybrid (Syslinux 3.72-3.73)';;
010f) BST='HP Recovery';;
019d) BST='BSD4.4: FAT32';;
0211) BST='Dell Utility: FAT16';;
0488) BST="Grub2's core.img";;
0689) BST='Syslinux 3.00-3.52';
syslinux_info ${part};
BSI="${BSI} ${Syslinux_Msg}";;
0734) BST='Dos_1.0';;
0745) BST='Windows Vista: FAT32';;
089e) BST='MSDOS5.0: FAT16';;
08cd) BST='Windows 2000/XP: NTFS';;
0b60) BST='Dell Utility: FAT16';;
0bd0) BST='MSWIN4.1: FAT32';;
0e00) BST='Dell Utility: FAT16';;
0fb6) BST='ISOhybrid with partition support (Syslinux 3.82-3.86)';;
2a00) BST='ReactOS';;
2d5e) BST='Dos 1.1';;
31c0) BST='Syslinux 4.03 or higher';
syslinux_info ${part} '4.03';
BSI="${BSI} ${Syslinux_Msg}";;
31d2) BST="Grub2's core.img";;
3a5e) BST='Recovery: FAT32';;
407c) BST='ISOhybrid (Syslinux 3.82-4.04)';;
4216) BST='Grub4Dos: NTFS';;
4445) BST='Dell Restore: FAT32';;
55aa) case ${Bytes80_to_83} in
55aa750a) BST='Grub4Dos: FAT32';;
55aa7506) # Get bytes 0x110-0x111 of the Volume Boot Record (VBR).
Bytes110_to_111=$(hexdump -v -n 2 -s $((0x110)) -e '2/1 "%02x"' ${part});
case "${Bytes110_to_111}" in
9090) BST='Windows Vista: NTFS';;
2810) BST='Windows 7/2008: NTFS';;
0a13) BST='Windows 8/2012: NTFS';;
esac;;
esac;;
55cd) BST='FAT32';;
5626) BST='Grub4Dos: EXT2/3/4';;
638b) BST='Freedos: FAT32';;
6616) BST='Windows 7/2008: FAT16';;
696e) BST='FAT16';;
6974) BST='BootIt: FAT16';;
6f65) BST='BootIt: FAT16';;
6f6e) BST='-';; # 'MSWIN4.1: Fat 32'
6f74) BST='FAT32';;
7405) BST='Windows 7/2008: FAT32';;
7815) case ${Bytes80_to_83} in
7815b106) BST='Syslinux 3.53-3.86';
syslinux_info ${part};
BSI="${BSI} ${Syslinux_Msg}";;
7815* ) BST='FAT32';;
esac;;
7cc6) BST='MSWIN4.1: FAT32';;
# 7cc6) BST='Win_98';;
7e1e) BST='Grub4Dos: FAT12/16';;
8a56) BST='Acronis SZ: FAT32';;
83e1) BST='ISOhybrid with partition support (Syslinux 4.00-4.04)';;
8ec0) BST='Windows XP: NTFS';;
8ed0) BST='Dell Recovery: FAT32';;
b106) BST='Syslinux 4.00-4.02';
syslinux_info ${part};
BSI="${BSI} ${Syslinux_Msg}";;
b600) BST='Dell Utility: FAT16';;
b6c6) BST='ISOhybrid with partition support (Syslinux 3.81)';;
b6d1) BST='Windows XP: FAT32';;
e2f7) BST='FAT32, Non Bootable';;
e879) BST='ISOhybrid (Syslinux 3.74-3.80)';;
e9d8) BST='Windows Vista/7: NTFS';;
f6c1) BST='Windows 8/2012: FAT32';;
f6f6) BST='- (cleared BS by FDISK)';;
fa33) BST='Windows XP: NTFS';;
fbc0) BST='ISOhybrid (Syslinux 3.81)';;
## If Grub or Grub 2 is in the boot sector, investigate the embedded information. ##
48b4) BST='Grub2 (v1.96)';
grub2_info ${part} ${drive} '1.96' 'partition';
BSI="${BSI} Grub2 (v1.96) is installed in the boot sector of ${name} and ${Grub2_Msg}.";;
7c3c) BST='Grub2 (v1.97-1.98)';
grub2_info ${part} ${drive} '1.97-1.98' 'partition';
BSI="${BSI} Grub2 (v1.97-1.98) is installed in the boot sector of ${name} and ${Grub2_Msg}.";;
0020) BST='Grub2 (v1.99-2.00)';
grub2_info ${part} ${drive} '1.99-2.00' 'partition';
BSI="${BSI} Grub2 (v${grub2_version}) is installed in the boot sector of ${name} and ${Grub2_Msg}.";;
aa75 | 5272) BST='Grub Legacy';
stage2_loc ${part};
BSI="${BSI} Grub Legacy (v${Grub_Version}) is installed in the boot sector of ${name} and ${Stage2_Msg}";;
## If Lilo is in the VBR, look for map file ##
8053) BST='LILO';
# 0x20-0x23 contains the offset of /boot/map.
offset=$(hexdump -v -s 32 -n 4 -e '"%u"' ${part});
BSI="${BSI} LILO is installed in boot sector of ${part} and looks at sector ${offset} of ${drive} for the \"map\" file,";
# check whether offset is on the hard drive.
if [ ${offset} -lt ${size} ] ; then
tmp=$(dd if=${drive} skip=${offset} count=1 2>> ${Trash} | hexdump -v -s 508 -n 4 -e '"%_p"');
if [ "${tmp}" = 'LILO' ] ; then
BSI="${BSI} and the \"map\" file was found at this location.";
else
BSI="${BSI} but the \"map\" file was not found at this location.";
fi
else
BSI="${BSI} but the \"map\" file was not found at this location.";
fi;;
0000) # If the first two bytes are zero, the boot sector does not contain any boot loader.
BST='-';;
esac
if [ x"${BST}" = 'x' ] ; then
BST='Unknown';
printf "Unknown BootLoader on ${name}\n\n" >> ${Unknown_MBR};
hexdump -n 512 -C ${part} >> ${Unknown_MBR};
echo >> ${Unknown_MBR};
fi
# Display the boot sector type.
echo " Boot sector type: ${BST}" >> "${Log}";
## Investigate the Boot Parameter Block (BPB) of a NTFS partition. ##
if [ "${type}" = 'ntfs' ] ; then
offset=$(hexdump -v -s 28 -n 4 -e '"%u"' ${part});
BPB_Part_Size=$(hexdump -v -s 40 -n 4 -e '"%u"' ${part})
Comp_Size=$(( (${BPB_Part_Size} - ${size}) / 256 ))
SectorsPerCluster=$(hexdump -v -s 13 -n 1 -e '"%d"' ${part});
MFT_Cluster=$(hexdump -v -s 48 -n 4 -e '"%d"' ${part});
MFT_Sector=$(( ${MFT_Cluster} * ${SectorsPerCluster} ));
# Track=$(hexdump -v -s 24 -n 2 -e '"%u"' ${part})'' # Number of sectors per track.
# Heads=$(hexdump -v -s 26 -n 2 -e '"%u"' ${part})'' # Number of heads.
#
# if [ "${Heads}" -ne 255 ] || [ "${Track}" -ne 63 ] ; then
# BSI="${BSI} Geometry: ${Heads} Heads and ${Track} sectors per Track."
# fi
if [[ "${MFT_Sector}" -lt "${size}" ]] ; then
MFT_FILE=$(dd if=${part} skip=${MFT_Sector} count=1 2>> ${Trash} | hexdump -v -n 4 -e '"%_u"');
else
MFT_FILE='';
fi
MFT_Mirr_Cluster=$(hexdump -v -s 56 -n 4 -e '"%d"' ${part});
MFT_Mirr_Sector=$(( ${MFT_Mirr_Cluster} * ${SectorsPerCluster} ));
if [[ "${MFT_Mirr_Sector}" -lt "${size}" ]] ; then
MFT_Mirr_FILE=$(dd if=${part} skip=${MFT_Mirr_Sector} count=1 2>> ${Trash} | hexdump -v -n 4 -e '"%_u"');
else
MFT_Mirr_FILE='';
fi
if ( [ "${offset}" -eq "${start}" ] && [ "${MFT_FILE}" = 'FILE' ] && [ "${MFT_Mirr_FILE}" = 'FILE' ] && [ "${Comp_Size}" -eq 0 ] ) ; then
BSI="${BSI} No errors found in the Boot Parameter Block.";
else
if [[ "${offset}" -ne "${start}" ]] ; then
BSI="${BSI} According to the info in the boot sector, ${name} starts at sector ${offset}.";
if [[ "${offset}" -ne 63 && "${offset}" -ne 2048 && "${offset}" -ne 0 || "${kind}" != 'L' ]] ; then
BSI="${BSI} But according to the info from fdisk, ${name} starts at sector ${start}.";
fi
fi
if [[ "${MFT_FILE}" != "FILE" ]] ; then
BSI="${BSI} The info in boot sector on the starting sector of the MFT is wrong.";
printf "MFT Sector of ${name}\n\n" >> ${Unknown_MBR};
dd if=${part} skip=${MFT_Sector} count=1 2>> ${Trash} | hexdump -C >> ${Unknown_MBR};
fi
if [[ "${MFT_Mirr_FILE}" != 'FILE' ]] ; then
BSI="${BSI} The info in the boot sector on the starting sector of the MFT Mirror is wrong.";
fi
if [[ "${Comp_Size}" -ne 0 ]] ; then
BSI="${BSI} According to the info in the boot sector, ${name} has ${BPB_Part_Size} sectors, but according to the info from fdisk, it has ${size} sectors.";
fi
fi
fi
## Investigate the Boot Parameter Block (BPB) of (some) FAT partition. ##
# Identifies Fat Bootsectors which are used for booting.
# if [[ "${Bytes80_to_81}" = '7cc6' || "${Bytes80_to_81}" = '7815' || "${Bytes80_to_81}" = 'b6d1' || "${Bytes80_to_81}" = '7405' || "${Bytes80_to_81}" = '6974' || "${Bytes80_to_81}" = '0bd0' || "${Bytes80_to_81}" = '089e' ]] ;
if [[ "${type}" = 'vfat' ]] ; then
offset=$(hexdump -v -s 28 -n 4 -e '"%d\n"' ${part}); # Starting sector the partition according to BPB.
BPB_Part_Size=$(hexdump -v -s 32 -n 4 -e '"%d"' ${part}); # Partition size in sectors according to BPB.
Comp_Size=$(( (BPB_Part_Size - size)/256 )) # This number will be unequal to zero, if the 2
# partions sizes differ by more than 255 sectors.
#Track=$(hexdump -v -s 24 -n 2 -e '"%u"' ${part})'' # Number of sectors per track.
#Heads=$(hexdump -v -s 26 -n 2 -e '"%u"' ${part})'' # Number of heads
#if [[ "${Heads}" -ne 255 || "${Track}" -ne 63 ]] ; then # Checks for an usual geometry.
# BSI=$(echo ${BSI}" "Geometry: ${Heads} Heads and ${Track} sectors per Track.) ### Report unusal geometry
#fi;
# Check whether Partitons starting sector and the Partition Size of BPB and fdisk agree.
if [[ "${offset}" -eq "${start}" && "${Comp_Size}" -eq "0" ]] ; then
BSI="${BSI} No errors found in the Boot Parameter Block."; # If they agree.
else # If they don't agree.
if [[ "${offset}" -ne "${start}" ]] ; then # If partition starting sector disagrees.
# Display the starting sector according to the BPB.
BSI="${BSI} According to the info in the boot sector, ${name} starts at sector ${offset}.";
# Check whether partition is a logcial partition and if its starting sector value is a 63 or 2048.
if [[ "${offset}" -ne "63" && "${offset}" -ne "2048" || "${kind}" != "L" ]] ; then
# If not, display starting sector according to fdisk.
BSI="${BSI} But according to the info from fdisk, ${name} starts at sector ${start}.";
else
# This is quite common occurence, and only matters if one tries to boot Windows from a logical partition.
BSI="${BSI} But according to the info from fdisk, ${name} starts at sector ${start}. \"63\" and \"2048\" are quite common values for the starting sector of a logical partition and they only need to be fixed when you want to boot Windows from a logical partition.";
fi
fi
# If partition sizes from BPB and FDISK differ by more than 255 sector, display both sizes.
if [[ "${Comp_Size}" -ne "0" ]] ; then
BSI="${BSI} According to the info in the boot sector, ${name} has ${BPB_Part_Size} sectors.";
if [[ "$BPB_Part_Size" -ne 0 ]] ; then
BSI="${BSI}. But according to the info from the partition table, it has ${size} sectors.";
fi # Don't display a warning message in the common case BPB_Part_Size=0.
fi
fi # End of BPB Error if-then-else.
fi # End of Investigation of the BPB of vfat partitions.
## Display boot sector info. ##
printf ' Boot sector info: ' >> "${Log}";
printf "${BSI}\n" | fold -s -w 55 | sed -e '/^-------------------------\.\?$/ d' -e '2~1s/.*/ &/' >> "${Log}";
## Exclude partitions which contain no information, or which we (currently) don't know how to accces. ##
case "${type}" in
'BIOS Boot partition' ) part_no_mount=1;;
'crypto_LUKS' ) part_no_mount=1;;
'Extended Partition' ) part_no_mount=1;;
'linux_raid_member' ) part_no_mount=1;;
'LVM2_member' ) part_no_mount=1;;
'swap' ) part_no_mount=1;;
'unknown volume type' ) part_no_mount=1;;
'zfs_member' ) part_no_mount=1;;
'' ) part_no_mount=1;;
esac
if [ "${part_no_mount}" -eq 0 ] ; then
# Look for a mount point of the current partition.
# If multiple mount points are found, use the one with the shortest pathname.
CheckMount=$(mount | ${AWK} -F "\t" '$0 ~ "^'${part}' " { sub(" on ", "\t", $0); sub(" type ", "\t", $0); print $2 }' | sort | ${AWK} '{ print $0; exit}');
# Check whether partition is already mounted.
if [ x"${CheckMount}" != x'' ] ; then
if [ "${CheckMount}" = "/" ] ; then
mountname='';
else
# If yes, use the existing mount point.
mountname="${CheckMount}";
fi
fi
# Clear mount errors for previous partition
> ${Mount_Error}
# Try to mount the partition.
if [ x"${CheckMount}" != x'' ] || mount -r -t "${type}" ${part} "${mountname}" 2>> ${Mount_Error} \
|| ( [ "${type}" = ntfs ] && ntfs-3g -o ro ${part} "${mountname}" 2>> ${Mount_Error} ) ; then
# If partition is mounted, try to identify the Operating System (OS) by looking for files specific to the OS.
OS='';
grep -q "W.i.n.d.o.w.s. .V.i.s.t.a" "${mountname}"/{windows,Windows,WINDOWS}/{System32,system32}/{Winload,winload}.exe 2>> ${Trash} && OS='Windows Vista';
grep -q "W.i.n.d.o.w.s. .7" "${mountname}"/{windows,Windows,WINDOWS}/{System32,system32}/{Winload,winload}.exe 2>> ${Trash} && OS='Windows 7';
grep -q "w.i.n.8._." "${mountname}"/{windows,Windows,WINDOWS}/{System32,system32}/{Winload,winload}.exe 2>> ${Trash} && OS='Windows 8';
for WinOS in 'MS-DOS' 'MS-DOS 6.22' 'MS-DOS 6.21' 'MS-DOS 6.0' 'MS-DOS 5.0' 'MS-DOS 4.01' 'MS-DOS 3.3' 'Windows 98' 'Windows 95'; do
grep -q "${WinOS}" "${mountname}"/{IO.SYS,io.sys} 2>> ${Trash} && OS="${WinOS}";
done
[ -s "${mountname}/Windows/System32/config/SecEvent.Evt" ] || [ -s "${mountname}/WINDOWS/system32/config/SecEvent.Evt" ] || [ -s "${mountname}/WINDOWS/system32/config/secevent.evt" ] || [ -s "${mountname}/windows/system32/config/secevent.evt" ] && OS='Windows XP';
[ -s "${mountname}/ReactOS/system32/config/SecEvent.Evt" ] && OS='ReactOS';
[ -s "${mountname}/etc/issue" ] && OS=$(sed -e 's/\\. //g' -e 's/\\.//g' -e 's/^[ \t]*//' "${mountname}"/etc/issue);
[ -s "${mountname}/etc/slackware-version" ] && OS=$(sed -e 's/\\. //g' -e 's/\\.//g' -e 's/^[ \t]*//' "${mountname}"/etc/slackware-version);
[ -s "${mountname}/etc/redhat-release" ] && OS=$(cat "${mountname}"/etc/redhat-release | tr -d '\n');
[ -s "${mountname}/etc/os-release" ] && grep -q '^PRETTY_NAME=' "${mountname}/etc/os-release" && OS=$(eval "$(grep '^PRETTY_NAME=' "${mountname}"/etc/os-release)"; printf '%s' "${PRETTY_NAME}" | tr -d '\n');
## Search for the files in ${Bootfiles} ##
#
# If found, display their content.
BootFiles='';
if [ "${type}" = 'vfat' ] ; then
Boot_Files=${Boot_Files_Fat};
else
Boot_Files=${Boot_Files_Normal};
fi
for file in ${Boot_Files} ; do
if [ -f "${mountname}${file}" ] && [ -s "${mountname}${file}" ] && FileNotMounted "${mountname}${file}" "${mountname}" ; then
BootFiles="${BootFiles} ${file}";
# Check whether the file is a symlink.
if ! [ -h "${mountname}${file}" ] ; then
# if not a symlink, display content.
if ( [ ${file} = '/grldr' ] || [ ${file} = '/grub.exe' ] ) ; then
# Display the embedded menu of grub4dos.
get_embedded_menu "${mountname}${file}" "${name}${file}";
else
titlebar_gen "${name}" ${file}; # Generates a titlebar above each file listed.
echo '--------------------------------------------------------------------------------' >> "${Log1}";
cat "${mountname}${file}" >> "${Log1}";
echo '--------------------------------------------------------------------------------' >> "${Log1}";
fi
fi
fi
done
## Search for Wubi partitions. ##
if [ -f "${mountname}/ubuntu/disks/root.disk" ] ; then
Wubi=$(losetup -a | ${AWK} '$3 ~ "(/host/ubuntu/disks/root.disk)" { print $1; exit }' | sed 's/.$//' );
# check whether Wubi already has a loop device.
if [[ x"${Wubi}" = x'' ]] ; then
Wubi=$(losetup -f --show "${mountname}/ubuntu/disks/root.disk" );
WubiDev=0;
else
WubiDev=1;
fi
if [ x"${Wubi}" != x'' ] ; then
Get_Partition_Info "${Log}"x "${Log1}"x "${Wubi}" "${name}/Wubi" "Wubi/${mountname}" 'Wubi' 0 0 'Wubi' '';
# Remove Wubu loop device, if created by BIS.
[[ ${WubiDev} -eq 0 ]] && losetup -d "${Wubi}";
else
echo "Found Wubi on ${name}. But could not create a loop device." >&2;
fi
fi
## Search for the filenames in ${Boot_Prog}. ##
#
# If found displays their names.
if [ "${type}" = 'vfat' ] ; then
# Check FAT filesystems for EFI boot files.
for file in "${mountname}"/efi/{,*/}*/{*.efi,grub.cfg}; do
# Remove "${mountname}" part of the filename.
file="${file#${mountname}}";
if [ -f "${mountname}${file}" ] && [ -s "${mountname}${file}" ] && FileNotMounted "${mountname}${file}" "${mountname}" ; then
BootFiles="${BootFiles} ${file}";
# display content.
if [ ${file##*/} = 'grub.cfg' ] ; then
titlebar_gen "${name}" ${file}; # Generates a titlebar above each file listed.
echo '--------------------------------------------------------------------------------' >> "${Log1}";
cat "${mountname}${file}" >> "${Log1}";
echo '--------------------------------------------------------------------------------' >> "${Log1}";
fi
fi
done
# Other boot program files.
Boot_Prog=${Boot_Prog_Fat};
else
Boot_Prog=${Boot_Prog_Normal};
fi
for file in ${Boot_Prog} ; do
if [ -f "${mountname}${file}" ] && [ -s "${mountname}${file}" ] && FileNotMounted "${mountname}${file}" "${mountname}" ; then
BootFiles="${BootFiles} ${file}";
fi
done
## Search for files containing boot codes. ##
# Loop through all directories which might contain boot_code files.
for file in ${Boot_Codes_Dir} ; do
# If such directory exist ...
if [ -d "${mountname}${file}" ] && FileNotMounted "${mountname}${file}" "${mountname}" ; then
# Look at the content of that directory.
for loader in $( ls "${mountname}${file}" ) ; do
# If it is a file ...
if [ -f "${mountname}${file}${loader}" ] && [ -s "${mountname}${file}${loader}" ] ; then
# Bootpart code has "BootPart" written at 0x101
sig=$(hexdump -v -s 257 -n 8 -e '8/1 "%_p"' "${mountname}${file}${loader}");
if [ "${sig}" = 'BootPart' ] ; then
offset=$(hexdump -v -s 241 -n 4 -e '"%d"' "${mountname}${file}${loader}");
dr=$(hexdump -v -s 111 -n 1 -e '"%d"' "${mountname}${file}${loader}");
dr=$((dr - 127));
BFI="${BFI} BootPart in the file ${file}${loader} is trying to chainload sector #${offset} on boot drive #${dr}";
fi
# Grub Legacy, Grub2 (v1.96) and Grub2 (v1.99) have "GRUB" written at 0x17f.
sig=$(hexdump -v -s 383 -n 4 -e '4/1 "%_p"' "${mountname}${file}${loader}");
if [ "${sig}" = 'GRUB' ] ; then
sig2=$(hexdump -v -n 2 -e '/1 "%02x"' "${mountname}${file}${loader}");
# Distinguish Grub Legacy and Grub2 (v1.96) by the first two bytes.
case "${sig2}" in
eb48) stage2_loc "${mountname}${file}${loader}";
BFI="${BFI} Grub Legacy (v${Grub_Version}) in the file ${file}${loader} ${Stage2_Msg}";;
eb4c) grub2_info "${mountname}${file}${loader}" ${drive} 1.96 'file';
BFI="${BFI} Grub2 (v1.96) in the file ${file}${loader} ${Grub2_Msg}.";;
eb63) grub2_info "${mountname}${file}${loader}" ${drive} 1.99 'file';
BFI="${BFI} Grub2 (v1.99) in the file ${file}${loader} ${Grub2_Msg}.";;
esac
fi
# Grub2 (v1.97-1.98) has "GRUB" written at 0x188.
sig=$(hexdump -v -s 392 -n 4 -e '4/1 "%_p"' "${mountname}${file}${loader}");
if [ "${sig}" = 'GRUB' ]; then
grub2_info "${mountname}${file}${loader}" ${drive} 1.97-1.98 'file';
BFI="${BFI} Grub2 (v1.97-1.98) in the file ${file}${loader} ${Grub2_Msg}.";
fi
# Grub2 (v2.00) has "GRUB" written at 0x180.
sig=$(hexdump -v -s 384 -n 4 -e '4/1 "%_p"' "${mountname}${file}${loader}");
if [ "${sig}" = 'GRUB' ]; then
grub2_info "${mountname}${file}${loader}" ${drive} 2.00 'file';
BFI="${BFI} Grub2 (v2.00) in the file ${file}${loader} ${Grub2_Msg}.";
fi
fi
done # End of loop through the files in a particular Boot_Code_Directory.
fi
done # End of the loop through the Boot_Code_Directories.
## Show the location (offset on disk) of all files in: ##
# - the GrubError18_Files list
# - the SyslinuxError_Files list
cd "${mountname}/";
if [ $( last_block_of_file ${GrubError18_Files} ; echo $? ) -ne 0 ] ; then
titlebar_gen "${name}" ': Location of files loaded by Grub';
printf "%11sGiB - GB%13sFile%33sFragment(s)\n\n" ' ' ' ' ' ' >> "${Log1}";
cat ${Tmp_Log} >> "${Log1}";
fi
if [ $( last_block_of_file ${SyslinuxError_Files} ; echo $? ) -ne 0 ] ; then
titlebar_gen "${name}" ': Location of files loaded by Syslinux';
printf "%11sGiB - GB%13sFile%33sFragment(s)\n\n" ' ' ' ' ' ' >> "${Log1}";
cat ${Tmp_Log} >> "${Log1}";
fi
rm -f ${Tmp_Log};
# Display the version of the COM32(R) modules of Syslinux.
for com32 in *.c32 syslinux/*.c32 extlinux/*.c32 boot/syslinux/*.c32 boot/extlinux/*.c32 ; do
if [ -f "${com32}" ] ; then
# First 5 bytes of the COM32(R) module are a magic number (used by Syslinux too).
com32_version=$(hexdump -n 5 -e '/1 "%02x"' "${com32}");
case ${com32_version} in
b8fe4ccd21) printf ' %-35s: COM32R module (v4.xx)\n' "${com32}" >> ${Tmp_Log};;
b8ff4ccd21) printf ' %-35s: COM32R module (v3.xx)\n' "${com32}" >> ${Tmp_Log};;
*) printf ' %-35s: not a COM32/COM32R module\n' "${com32}" >> ${Tmp_Log};;
esac
fi
done
if [ -f ${Tmp_Log} ] ; then
titlebar_gen "${name}" ': Version of COM32(R) files used by Syslinux';
cat ${Tmp_Log} >> "${Log1}";
fi
cd "${Folder}";
echo > ${Tmp_Log};
if [[ x"${BFI}" != x'' ]] ; then
printf " Boot file info: " >> "${Log}";
printf "${BFI}\n" | fold -s -w 55 | sed -e '/^-------------------------$/ d' -e '2~1s/.*/ &/' >> "${Log}";
fi
printf " Operating System: " >> "${Log}";
echo "${OS}" | fold -s -w 55 | sed -e '2~1s/.*/ &/' >> "${Log}";
printf " Boot files: " >> "${Log}";
echo ${BootFiles} | fold -s -w 55 | sed -e '2~1s/.*/ &/' >> "${Log}";
# If partition was mounted by the script.
if [ x"${CheckMount}" = x'' ] ; then
umount "${mountname}" || umount -l "${mountname}";
fi
# If partition failed to mount.
else
printf " Mounting failed: " >> "${Log}";
cat ${Mount_Error} >> "${Log}";
fi # End of Mounting "if then else".
fi # End of Partition Type "if then else".
echo >> "${Log}";
if [[ -e "${Log}"x ]] ; then
cat "${Log}"x >> "${Log}";
rm "${Log}"x;
fi
if [[ -e "${Log1}"x ]] ; then
cat "${Log1}"x >> "${Log1}";
rm "${Log1}"x;
fi
} # End Get_Partition_Info function
## "titlebar_gen" generates the ${name}${file} title bar to always be 80 characters in length. ##
titlebar_gen () {
local name_file name_file_length equal_signs_line_length equal_signs_line;
name_file="${1}${2}:";
name_file_length=${#name_file};
equal_signs_line_length=$(((80-${name_file_length})/2-1));
# Build "===" string.
printf -v equal_signs_line "%${equal_signs_line_length}s";
printf -v equal_signs_line "%s" "${equal_signs_line// /=}";
if [ "$((${name_file_length}%2))" -eq 1 ]; then
# If ${name_file_length} is odd, add an extra "=" at the end.
printf "\n%s %s %s=\n\n" "${equal_signs_line}" "${name_file}" "${equal_signs_line}" >> "${Log1}";
else
printf "\n%s %s %s\n\n" "${equal_signs_line}" "${name_file}" "${equal_signs_line}" >> "${Log1}";
fi
}
## Start ##
# Center title.
BIS_title=$(printf 'Boot Info Script %s [%s]' "${VERSION}" "${RELEASE_DATE}");
printf -v BIS_title_space "%$(( ( 80 - ${#BIS_title} ) / 2 - 1 ))s";
printf "${BIS_title_space}${BIS_title}\n" > "${Log}";
if [ ! -z "${LAST_GIT_COMMIT_SHORTLOG}" ] ; then
printf '\nLast git commit: %s\nCommit date: %s\n' \
"${LAST_GIT_COMMIT_SHORTLOG}" "${LAST_GIT_COMMIT_DATE}" >> "${Log}";
fi
printf '\n\n============================= Boot Info Summary: ===============================\n\n' >> "${Log}";
# Search for hard drives which don't exist, have a corrupted partition table
# or don't have a parition table (whole drive is a filesystem).
# Information on all hard drives which a valid partition table are stored in
# the hard drives arrays: HD?????
# id for Filesystem Drives.
FSD=0;
# Clear blkid cache
blkid -g;
for drive in ${All_Hard_Drives} ; do
size=$(fdisks ${drive});
PrintBlkid ${drive};
if [ 0 -lt ${size} 2>> ${Trash} ] ; then
if [ x"$(blkid ${drive})" = x'' ] || [ x"$(blkid | grep ${drive}:)" = x'' ] ; then
# Drive is not a filesytem.
size=$((2*size));
HDName[${HI}]=${drive};
HDSize[${HI}]=${size};
# Get and set HDHead[${HI}], HDTrack[${HI}] and HDCylinder[${HI}] all at once.
eval $(fdisk -lu ${drive} 2>> ${Trash} | ${AWK} -F ' ' '$2 ~ "head" { print "HDHead['${HI}']=" $1 "; HDTrack['${HI}']=" $3 "; HDCylinder['${HI}']=" $5 }' );
# Look at the first 4 bytes of the second sector to identify the partition table type.
case $(hexdump -v -s 512 -n 4 -e '"%_u"' ${drive}) in
'EMBR') HDPT[${HI}]='BootIt';;
'EFI ') HDPT[${HI}]='EFI';;
*) HDPT[${HI}]='MSDos';;
esac
HI=$((${HI}+1));
else
# Drive is a filesystem.
if [ $( expr match "$(BlkidTag "${drive}" TYPE)" '.*raid') -eq 0 ] || [ x"$(BlkidTag "${drive}" UUID)" != x'' ] ; then
FilesystemDrives[${FSD}]="${drive}";
((FSD++));
fi
fi
else
printf "$(basename ${drive}) " >> ${FakeHardDrives};
fi
done
## Identify the MBR of each hard drive. ##
echo 'Identifying MBRs...';
for HI in ${!HDName[@]} ; do
drive="${HDName[${HI}]}";
Message="is installed in the MBR of ${drive}";
# Read the whole MBR in hexadecimal format.
MBR_512=$(hexdump -v -n 512 -e '/1 "%02x"' ${drive});
## Look at the first 2,3,4 or 8 bytes of the hard drive to identify the boot code installed in the MBR. ##
#
# If it is not enough, look at more bytes.
MBR_sig2="${MBR_512:0:4}";
MBR_sig3="${MBR_512:0:6}";
MBR_sig4="${MBR_512:0:8}";
MBR_sig8="${MBR_512:0:16}";
## Bytes 0x80-0x81 of the MBR. ##
#
# Use it to differentiate between different versions of the same bootloader.
MBR_bytes80to81="${MBR_512:256:4}";
BL=;
case ${MBR_sig2} in
eb48) ## Grub Legacy is in the MBR. ##
BL="Grub Legacy";
# 0x44 contains the offset to the next stage.
offset=$(hexdump -v -s 68 -n 4 -e '"%u"' ${drive});
if [ "${offset}" -ne 1 ] ; then
# Grub Legacy is installed without stage1.5 files.
stage2_loc ${drive};
Message="${Message} and ${Stage2_Msg}";
else
# Grub is installed with stage1.5 files.
Grub_String=$(hexdump -v -s 1042 -n 94 -e '"%_u"' ${drive});
Grub_Version="${Grub_String%%nul*}";
BL="Grub Legacy (v${Grub_Version})";
tmp="/${Grub_String#*/}";
tmp="${tmp%%nul*}";
eval $(echo ${tmp} | ${AWK} '{ print "stage=" $1 "; menu=" $2 }');
[[ x"$menu" = x'' ]] || stage="${stage} and ${menu}";
part_info=$((1045 + ${#Grub_Version}));
eval $(hexdump -v -s ${part_info} -n 2 -e '1/1 "pa=%u; " 1/1 "dr=%u"' ${drive});
dr=$(( ${dr} - 127 ));
pa=$(( ${pa} + 1 ));
if [ "${dr}" -eq 128 ] ; then
Message="${Message} and looks on the same drive in partition #${pa} for ${stage}";
else
Message="${Message} and looks on boot drive #${dr} in partition #${pa} for ${stage}";
fi
fi;;
eb4c) ## Grub2 (v1.96) is in the MBR. ##
BL='Grub2 (v1.96)';
grub2_info ${drive} ${drive} '1.96' 'disk';
Message="${Message} and ${Grub2_Msg}";;
eb63) ## Grub2 is in the MBR. ##
case ${MBR_bytes80to81} in
7c3c) grub2_version='1.97-1.98'; BL='Grub2 (v1.97-1.98)';;
0020) grub2_version='1.99-2.00'; BL='Grub2 (v1.99-2.00)';;
esac
grub2_info ${drive} ${drive} ${grub2_version} 'disk';
# Set a more exact version number (1.99 or 2.00), if '1.99-2.00' was
# passed to the grub2_info function.
BL="Grub2 (v${grub2_version})";
Message="${Message} and ${Grub2_Msg}";;
0ebe) BL='ThinkPad';;
31c0) # Look at the first 8 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig8} in
31c08ed0bc007c8e) BL='NetBSD/SUSE generic MBR';;
31c08ed0bc007cfb) BL='Acer PQService MBR';;
esac;;
33c0) # Look at the first 3 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig3} in
33c08e) BL='Windows';
case ${MBR_sig8} in
33c08ed0bc007cfb) BL='Windows 2000/XP/2003';;
33c08ed0bc007c8e)
# Look at byte 0xF0-F1: different offset for "TCPA" string.
case "${MBR_512:480:4}" in
fb54) BL='Windows Vista';;
4350) BL='Windows 7/8/2012';;
esac;;
esac;;
33c090) BL='DiskCryptor';;
33c0fa) # Look at bytes 0x5B-5D: different offsets for jump target
case ${MBR_512:182:6} in
0fb6c6) BL='Syslinux GPTMBR (5.10 and higher)';;
bb007c) BL='Syslinux GPTMBR (4.04-5.01)';;
e82101) BL='Syslinux MBR (4.04-4.07)';;
e83501) BL='Syslinux MBR (5.00 and higher)';;
e81001) # Syslinux ALTMBR; look at byte 0xd9 for different version and
# byte 0x1b7 (439) for boot partition
case ${MBR_512:434:2} in
c3) BL='Syslinux ALTMBR (4.04-4.05)';;
c6) BL='Syslinux ALTMBR (4.06 and higher)';;
esac;
BL="${BL} with boot partition 0x${MBR_512:878:2}";;
esac;;
esac;;
33ed) # Look at bytes 0x80-0x81 to be more specific about the Syslinux variant/version.
case ${MBR_bytes80to81} in
407c) BL='ISOhybrid (Syslinux 4.04)';;
83e1) BL='ISOhybrid with partition support (Syslinux 4.04)';;
cd13) BL='ISOhybrid with partition support (Syslinux 4.05 and higher)';;
f7e1) BL='ISOhybrid (Syslinux 4.05 and higher)';;
esac;;
33ff) BL='HP/Gateway';;
b800) BL='Plop';;
ea05)
case ${MBR_sig3} in
ea0500) BL='OpenBSD generic MBR';;
ea0501) BL='XOSL';;
esac;;
ea1e) BL='Truecrypt Boot Loader';;
eb04) BL='Solaris';;
eb31) BL='Paragon';;
eb5e) # Look at the first 3 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig3} in
eb5e00) BL='fbinst';;
eb5e80) BL='Grub4Dos';;
eb5e90) BL='WEE';
# Get the embedded menu of WEE.
get_embedded_menu "${drive}" "WEE's (${drive})";;
esac;;
fa31) # Look at the first 3 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig3} in
fa31c0) # Look at bytes 0x80-0x81 to be more specific about the Syslinux variant/version.
case ${MBR_bytes80to81} in
0069) BL='ISOhybrid (Syslinux 3.72-3.73)';;
7c66) BL='Syslinux MBR (3.61-4.03)';;
7cb8) BL='Syslinux MBR (3.36-3.51)';;
b442) BL='Syslinux MBR (3.00-3.35)';;
bb00) BL='Syslinux MBR (3.52-3.60)';;
e2f8) # Syslinux pre-4.04; look at bytes 0x82-0x84
case "${MBR_512:260:6}" in
31f65f) BL='Syslinux GPTMBR (4.00-4.03)';;
5e5974) BL='Syslinux GPTMBR (3.72-3.73)';;
5e5958) # look at bytes 0xe-0xf
case "${MBR_512:28:4}" in
528e) BL='Syslinux GPTMBR (3.70-3.71)';;
8ec0) BL='Syslinux GPTMBR (3.74-4.03)';;
esac;;
esac;;
e879) BL='ISOhybrid (Syslinux 3.74-3.80)';;
esac;;
fa31c9) BL='Master Boot LoaDeR';;
fa31ed) # Look at bytes 0x80-0x81 to be more specific about the Syslinux variant/version.
case ${MBR_bytes80to81} in
0069) BL='ISOhybrid (Syslinux 3.72-3.73)';;
0fb6) BL='ISOhybrid with partition support (Syslinux 3.82-3.86)';;
407c) BL='ISOhybrid (Syslinux 3.82-4.03)';;
83e1) BL='ISOhybrid with partition support (Syslinux 4.00-4.03)';;
b6c6) BL='ISOhybrid with partition support (Syslinux 3.81)';;
fbc0) BL='ISOhybrid (Syslinux 3.81)';;
esac;;
esac;;
fa33) BL='MS-DOS 3.30 through Windows 95 (A)';;
fab8) # Look at the first 4 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig4} in
fab80000) BL='FreeDOS (eXtended FDisk)';;
fab80010) BL="libparted MBR boot code";;
esac;;
faeb) BL='Lilo';;
fafc) BL='ReactOS';;
fc31) # Look at the first 8 bytes of the hard drive to identify the boot code installed in the MBR.
case ${MBR_sig8} in
fc31c08ed031e48e) BL='install-mbr/Testdisk';;
fc31c08ec08ed88e) BL='boot0 (FreeBSD)';;
esac;;
fc33) BL='GAG';;
fceb) BL='BootIt NG';;
0000) BL='No boot loader';;
esac
if [ x"${BL}" = 'x' ] ; then
BL='No known boot loader';
printf "Unknown MBR on ${drive}\n\n" >> ${Unknown_MBR};
hexdump -v -n 512 -C ${drive} >> ${Unknown_MBR};
echo >> ${Unknown_MBR};
fi
## Output message at beginning of summary that gives MBR info for each drive: ##
printf ' => ' >> "${Log}";
printf "${BL} ${Message}.\n" | fold -s -w 75 | sed -e '/^-----\.\?$/ d' -e '2~1s/.*/ &/' >> "${Log}";
HDMBR[${HI}]=${BL};
done
echo >> "${Log}";
## Store and Display all the partitions tables. ##
for HI in ${!HDName[@]} ; do
drive=${HDName[${HI}]};
echo "Computing Partition Table of ${drive}...";
FP=$((PI+1)); # used if non-MS_DOS partition table is not in use.
FirstPartition[${HI}]=${FP};
PTType=${HDPT[${HI}]};
HDPT[${HI}]='MSDos';
echo "Drive: $(basename ${drive} ) _____________________________________________________________________" >> ${PartitionTable};
fdisk -lu ${drive} 2>> ${Trash} | sed '/omitting/ d' | sed '6,$ d' >> ${PartitionTable};
printf "\n${PTFormat}\n" 'Partition' 'Boot' 'Start Sector' 'End Sector' '# of Sectors' 'Id' 'System' >> ${PartitionTable};
ReadPT ${HI} 0 4 ${PartitionTable} "${PTFormat}" '' 0;
echo >> ${PartitionTable};
LastPartition[${HI}]=${PI};
LP=${PI};
CheckPT ${FirstPartition[${HI}]} ${LastPartition[${HI}]} ${PartitionTable} ${HI};
echo >> ${PartitionTable};
HDPT[${HI}]=${PTType};
case ${PTType} in
BootIt) printf 'BootIt NG Partition Table detected' >> ${PartitionTable};
[[ "${HDMBR[${HI}]}" = 'BootIt NG' ]] || printf ', but does not seem to be used' >> ${PartitionTable};
printf '.\n\n' >> ${PartitionTable};
ReadEMBR ${HI} ${PartitionTable};
echo >> ${PartitionTable};
if [ "${HDMBR[${HI}]}" = 'BootIt NG' ] ; then
LastPartition[${HI}]=${PI};
CheckPT ${FirstPartition[${HI}]} ${LastPartition[${HI}]} ${PartitionTable} ${HI};
else
FirstPartition[${HI}]=${FP};
fi;;
EFI) FirstPartition[${HI}]=$((PI+1));
EFIee=$(hexdump -v -s 450 -n 1 -e '"%x"' ${drive});
printf 'GUID Partition Table detected' >> ${PartitionTable};
[[ "${EFIee}" = 'ee' ]] || printf ', but does not seem to be used' >> ${PartitionTable};
printf '.\n\n' >> ${PartitionTable};
ReadEFI ${HI} ${PartitionTable};
echo >> ${PartitionTable};
if [ "${EFIee}" = 'ee' ] ; then
LastPartition[${HI}]=${PI};
CheckPT ${FirstPartition[${HI}]} ${LastPartition[${HI}]} ${PartitionTable} ${HI};
else
FirstPartition[${HI}]=${FP};
fi;;
esac
done
## Loop through all Hard Drives. ##
for HI in ${!HDName[@]} ; do
drive=${HDName[${HI}]};
## And then loop through the partitions on that drive. ##
for (( PI = FirstPartition[${HI}]; PI <= LastPartition[${HI}]; PI++ )); do
part_type=${TypeArray[${PI}]}; # Type of the partition according to fdisk
start=${StartArray[${PI}]};
size=${SizeArray[${PI}]};
end=${EndArray[${PI}]};
kind=${KindArray[${PI}]};
system=${SystemArray[${PI}]};
if [[ x"${DeviceArray[${PI}]}" = x'' ]] ; then
name="${NamesArray[${PI}]}";
mountname=$(basename ${drive})"_"${PI};
part=$(losetup -f --show -o $((start*512)) ${drive});
# --sizelimit $((size*512)) --sizelimit seems to be a recently added option for losetup. Failed on Hardy.
else
part="${DeviceArray[${PI}]}";
name=$(basename ${part}); # Name of the partition (/dev/sda8 -> sda8).
mountname=${name};
fi
Get_Partition_Info "${Log}" "${Log1}" "${part}" "${name}" "${mountname}" "${kind}" "${start}" "${end}" "${system}" "${PI}";
[[ "${DeviceArray[${PI}]}" = '' ]] && losetup -d ${part};
done
done
## Deactivate dmraid's activated by the script. ##
if [ x"$InActiveDMRaid" != x'' ] ; then
dmraid -an ${InActiveDMRaid};
fi
## Search LVM partitions for information. ##
#
# Only works if the "LVM2"-package is installed.
if [ $(type lvs >> ${Trash} 2>> ${Trash} ; echo $?) -eq 0 ] ; then
lvs --nameprefixes --noheadings --options lv_name,vg_name,lv_size,lv_attr --units s | \
while read line ; do
LVM2_VG_NAME= LVM2_LV_NAME= LVM2_LV_SIZE= LVM2_LV_ATTR=
eval "${line}";
if [ -z "${LVM2_VG_NAME}" ] || [ -z "${LVM2_LV_NAME}" ] || [ -z "${LVM2_LV_SIZE}" ] || [ -z "${LVM2_LV_ATTR}" ] ; then
continue
fi
name="${LVM2_VG_NAME}-${LVM2_LV_NAME}";
LVM="/dev/mapper/${LVM2_VG_NAME//-/--}-${LVM2_LV_NAME//-/--}";
LVM_Size=${LVM2_LV_SIZE%s};
LVM_Status=${LVM2_LV_ATTR:4:1};
lvchange -ay ${LVM};
mountname="LVM/${name}";
kind='LVM';
start=0;
end=${LVM_Size};
system='';
PI='';
Get_Partition_Info "${Log}" "${Log1}" "$LVM" "${name}" "${mountname}" "${kind}" "${start}" "${end}" "${system}" "${PI}";
# deactivate all LVM's, which were not active.
[[ "${LVM_Status}" != 'a' ]] && lvchange -an "${LVM}";
done
fi
## Search MDRaid Partitons for Information ##
#
# Only works if "mdadm" is installed.
if [ $(type mdadm >> ${Trash} 2>> ${Trash} ; echo $?) -eq 0 ] ; then
# All arrays which are already assembled.
MD_Active_Array=$(mdadm --detail --scan | ${AWK} '{ print $2 }');
# Assemble all arrays.
mdadm --assemble --scan;
# All arrays.
MD_Array=$(mdadm --detail --scan | ${AWK} '{ print $2 }');
for MD in ${MD_Array}; do
MD_Size=$(fdisks ${MD}); # size in blocks
MD_Size=$((2*${MD_Size})); # size in sectors
MD_Active=0;
# Check whether MD is active.
for MDA in ${MD_Active_Array}; do
if [[ "${MDA}" = "${MD}" ]] ; then
MD_Active=1;
break;
fi
done
name=${MD:5};
mountname="MDRaid/${name}";
kind="MDRaid";
start=0;
end=${MD_Size};
system='';
PI='';
Get_Partition_Info "${Log}" "${Log1}" "${MD}" "${name}" "${mountname}" "${kind}" "${start}" "${end}" "${system}" "${PI}";
# deactivate all MD_Raid's, which were not active.
[[ "${MD_Active}" -eq 0 ]] && mdadm --stop "${MD}";
done
fi
## Search filesystem hard drives for information. ##
for FD in ${FilesystemDrives[@]} ; do
FD_Size=$(fdisks ${FD}); # size in blocks
FD_Size=$((2*${FD_Size})); # size in sectors
name=${FD:5};
mountname="FD/${name}";
kind="FD";
start=0;
end=${FD_Size};
system='';
PI='';
Get_Partition_Info "${Log}" "${Log1}" "${FD}" "${name}" "${mountname}" "${kind}" "${start}" "${end}" "${system}" "${PI}";
done
## Drive/partition info. ##
printf '============================ Drive/Partition Info: =============================\n\n' >> "${Log}";
[ -e ${PartitionTable} ] && cat ${PartitionTable} >> "${Log}" || echo 'no valid partition table found' >> "${Log}";
printf '"blkid" output: ________________________________________________________________\n\n' >> "${Log}";
printf "${BlkidFormat}" Device UUID TYPE LABEL >> "${Log}";
echo >> "${Log}";
for dev in $(blkid -o device | sort); do
PrintBlkid ${dev} '_summary';
done
cat "${BLKID}_summary" >> "${Log}";
echo >> "${Log}";
if [ $(ls -l /dev/disk/by-id 2>> ${Trash} | wc -l) -gt 1 ] ; then
printf '========================= "ls -l /dev/disk/by-id" output: ======================\n\n' >> "${Log}";
ls -l /dev/disk/by-id >> "${Log}";
echo >> "${Log}";
fi
if [ $(ls -R /dev/mapper 2>> ${Trash} | wc -l) -gt 2 ] ; then
printf '========================= "ls -R /dev/mapper/" output: =========================\n\n' >> "${Log}";
ls -R /dev/mapper >> "${Log}";
echo >> "${Log}";
fi
## Mount points. ##
printf '================================ Mount points: =================================\n\n' >> "${Log}";
MountFormat='%-16s %-24s %-10s %s\n';
printf "${MountFormat}\n" 'Device' 'Mount_Point' 'Type' 'Options' >> "${Log}";
# No idea for which mount version this is even needed.
# original:
# mount | grep ' / '| grep -v '^/'| sed 's/ on /'$Fis'/' |sed 's/ type /'$Fis'/'|sed 's/ (/'$Fis'(/'| gawk -F $Fis '{printf "'"$MountFormat"'", $1, $2, $3, $4 }'>>"$Log";
# new:
# mount | sort | gawk -F "\t" '$0 ~ " / " { if ($1 !~ "^/") { sub(" on ", "\t", $0); sub(" type ", "\t", $0); optionsstart=index($3, " ("); printf "'"${MountFormat}"'", $1, $2, substr($3, 1, optionsstart - 1), substr($3, optionsstart + 1) } } END { printf "\n" }' >> "${Log}";
mount | sort | ${AWK} -F "\t" '$0 ~ "^/dev" \
{ sub(" on ", "\t", $0); sub(" type ", "\t", $0); optionsstart=index($3, " ("); \
printf "'"${MountFormat}"'", $1, $2, substr($3, 1, optionsstart - 1), substr($3, optionsstart + 1) } END { printf "\n" }' >> "${Log}";
## Write the content of Log1 to the log file. ##
[ -e "${Log1}" ] && cat "${Log1}" >> "${Log}";
echo >> "${Log}";
## Add unknown MBRs/Boot Sectors to the log file, if any. ##
if [ -e ${Unknown_MBR} ] ; then
printf '======================== Unknown MBRs/Boot Sectors/etc: ========================\n\n' >> "${Log}";
cat ${Unknown_MBR} >> "${Log}";
echo >> "${Log}";
fi
## Add fake hard drives to the log file, if any. ##
if [ -e ${FakeHardDrives} ] ; then
printf "========= Devices which don't seem to have a corresponding hard drive: =========\n\n" >> "${Log}";
cat ${FakeHardDrives} >> "${Log}";
printf "\n\n" >> "${Log}";
fi
## Write the Error Log to the log file. ##
if [ -s ${Error_Log} ] ; then
printf '=============================== StdErr Messages: ===============================\n\n' >> "${Log}";
cat ${Error_Log} >> "${Log}";
fi
## Write a final newline. ##
echo >> "${Log}";
if [ ${stdout_output} -eq 1 ] ; then
## If --stdout is specified, show the output.
cat "${Log}";
else
## Copy the log file to RESULTS file and make the user the owner of RESULTS file. ##
cp "${Log}" "${LogFile}";
if [ "${SUDO_UID}:${SUDO_GID}" != ':' ] ; then
chown "${SUDO_UID}:${SUDO_GID}" "${LogFile}";
fi
## gzip the RESULTS file, for easy uploading. ##
#
# gzip a copy of the RESULTS file only when -g or --gzip is passed on the command line.
#
# ./bootinfoscript -g <outputfile>
# ./bootinfoscript --gzip <outputfile>
if [ ${gzip_output} -eq 1 ] ; then
cat "${LogFile}" | gzip -9 > "${LogFile}.gz";
if [ "${SUDO_UID}:${SUDO_GID}" != ':' ] ; then
chown "${SUDO_UID}:${SUDO_GID}" "${LogFile}.gz";
fi
fi
## Reset the Standard Output to the Terminal. ##
#
# exec 1>&-;
# exec 1>&6;
# exec 6>&-;
printf '\nFinished. The results are in the file "%s"\nlocated in "%s".\n\n' "$(basename "${LogFile}")" "${Dir}/";
fi
exit 0;
|