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
|
/*
*
* (C) Copyright IBM Corp. 2001, 2003
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Module: engine.c
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <dirent.h>
#include <glob.h>
#include <pthread.h>
#include <signal.h>
#include <time.h>
#include <wait.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "fullengine.h"
#include "engine.h"
#include "lists.h"
#include "dload.h"
#include "faulthdlr.h"
#include "handlemgr.h"
#include "common.h"
#include "internalAPI.h"
#include "memman.h"
#include "commit.h"
#include "discover.h"
#include "message.h"
#include "volume.h"
#include "config.h"
#include "dm.h"
#include "cluster.h"
#include "remote.h"
#include "daemon.h"
#include "dmonmsg.h"
/*----------------------------------------------------------------------------+
+ +
+ GLOBAL DATA +
+ +
+-----------------------------------------------------------------------------*/
evms_version_t engine_version =
{
MAJOR_VERSION,
MINOR_VERSION,
PATCH_LEVEL
};
evms_version_t engine_api_version =
{
ENGINE_API_MAJOR_VERSION,
ENGINE_API_MINOR_VERSION,
ENGINE_API_PATCH_LEVEL
};
evms_version_t engine_services_api_version =
{
ENGINE_SERVICES_API_MAJOR_VERION,
ENGINE_SERVICES_API_MINOR_VERION,
ENGINE_SERVICES_API_PATCH_LEVEL
};
evms_version_t engine_plugin_api_version =
{
ENGINE_PLUGIN_API_MAJOR_VERION,
ENGINE_PLUGIN_API_MINOR_VERION,
ENGINE_PLUGIN_API_PATCH_LEVEL
};
evms_version_t engine_fsim_api_version =
{
ENGINE_FSIM_API_MAJOR_VERION,
ENGINE_FSIM_API_MINOR_VERION,
ENGINE_FSIM_API_PATCH_LEVEL
};
evms_version_t engine_container_api_version =
{
ENGINE_CONTAINER_API_MAJOR_VERION,
ENGINE_CONTAINER_API_MINOR_VERION,
ENGINE_CONTAINER_API_PATCH_LEVEL
};
evms_version_t engine_cluster_api_version =
{
ENGINE_CLUSTER_API_MAJOR_VERION,
ENGINE_CLUSTER_API_MINOR_VERION,
ENGINE_CLUSTER_API_PATCH_LEVEL
};
evms_version_t engine_daemon_msg_version =
{
EVMS_DMONMSG_MAJOR_VERSION,
EVMS_DMONMSG_MINOR_VERSION,
EVMS_DMONMSG_PATCH_LEVEL
};
ece_nodeid_t no_nodeid = ECE_NO_NODE;
ece_nodeid_t * current_nodeid = NULL;
char * current_node_name;
boolean local_focus = TRUE;
STATIC_LIST_DECL(plugins_list);
STATIC_LIST_DECL(disks_list);
STATIC_LIST_DECL(segments_list);
STATIC_LIST_DECL(containers_list);
STATIC_LIST_DECL(regions_list);
STATIC_LIST_DECL(EVMS_objects_list);
STATIC_LIST_DECL(volumes_list);
STATIC_LIST_DECL(kill_sectors_list);
STATIC_LIST_DECL(volume_delete_list);
STATIC_LIST_DECL(deactivate_list);
STATIC_LIST_DECL(rename_volume_list);
plugin_record_t * local_disk_manager = NULL;
plugin_record_t * replace_plugin = NULL;
plugin_record_t * cluster_manager = NULL;
cluster_functions_t * ece_funcs = NULL;
plugin_record_t * cluster_segment_manager = NULL;
int dm_control_fd = 0;
engine_mode_t engine_mode = ENGINE_CLOSED;
debug_level_t debug_level = DEFAULT;
char * log_file_name = DEFAULT_LOG_FILE;
int log_file_fd = 0;
boolean log_usec = FALSE;
boolean log_pid = FALSE;
u_char log_buf[LOG_BUF_SIZE];
pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER;
#define ENGINE_LOCK_FILE_DIR "/var/lock"
#define ENGINE_LOCK_FILE ENGINE_LOCK_FILE_DIR "/evms-engine"
int lock_file_fd = 0;
size_t lock_file_size = 0;
lock_file_t * lock_file;
sem_t shutdown_sem;
#define SHUTDOWN_TIMEOUT 30 /* seconds */
boolean is_2_4_kernel;
pthread_attr_t pthread_attr_detached;
char metadata_db_name[PATH_MAX];
int metadata_db_fd = 0;
/*
* The following functions are used to prevent potential deadlock in a child
* process after a fork(). If the log_mutex is held by another thread when
* a thread forks, the child preocess will inherit a copy of the locked mutex.
* The child process will never see the mutex unlocked, and so will deadlock
* once it tries to lock the mutex.
*/
static void fork_prepare(void) {
pthread_mutex_lock(&log_mutex);
}
static void fork_parent(void) {
pthread_mutex_unlock(&log_mutex);
}
static void fork_child(void) {
pthread_mutex_unlock(&log_mutex);
}
/*
* my_init() is run when the library is first loaded.
*/
void __attribute__ ((constructor)) my_init(void) {
pthread_atfork(fork_prepare, fork_parent, fork_child);
}
/*-------------------------------------------------------------------------------------+
+ +
+ PRIVATE SUBROUTINES +
+ +
+-------------------------------------------------------------------------------------*/
static char * build_archive_log_name(char * log_name, int index) {
char * archive_log_file_name;
char * pch1;
char * pch2;
/*
* Get memory to build the archive file names. Get enough for the name,
* three bytes for the ".nn" that will be inserted/appended, plus one for
* the null terminator.
*/
archive_log_file_name = engine_alloc(strlen(log_name) + 4);
if (archive_log_file_name != NULL) {
strcpy(archive_log_file_name, log_name);
/*
* The ".nn" will be inserted ahead of the last '.' in the file name.
* If the file name doesn't have a '.' in it, the .nn will be
* appended at the end.
*/
pch1 = strrchr(archive_log_file_name, '.');
if (pch1 == NULL) {
pch1 = archive_log_file_name + strlen(archive_log_file_name);
}
/* Add/insert the ".nn". */
*(pch1++) = '.';
sprintf(pch1, "%d", index);
/* Copy the remainder of the file name, if it exists. */
pch2 = strrchr(log_name, '.');
if (pch2 != NULL) {
strcat(pch1, pch2);
}
}
return archive_log_file_name;
}
#define MAX_LOG_ARCHIVES 9
static int start_logging(char * filename) {
int rc = 0;
int i;
char * old_archive_log_name;
char * new_archive_log_name;
if (log_file_fd == 0) {
/* Roll back the archive log files. */
old_archive_log_name = build_archive_log_name(filename, MAX_LOG_ARCHIVES);
unlink(old_archive_log_name);
for (i = MAX_LOG_ARCHIVES; i > 1; i--) {
new_archive_log_name = build_archive_log_name(filename, i - 1);
rename(new_archive_log_name, old_archive_log_name);
engine_free(old_archive_log_name);
old_archive_log_name = new_archive_log_name;
}
rename(filename, old_archive_log_name);
engine_free(old_archive_log_name);
log_file_fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0664);
if (log_file_fd < 0) {
rc = errno;
log_file_fd = 0;
} else {
/* Close this file for all exec'd processes. */
fcntl(log_file_fd, F_SETFD, FD_CLOEXEC);
}
} else {
rc = EEXIST;
}
return rc;
}
static int stop_logging() {
int rc = 0;
if (log_file_fd > 0) {
close(log_file_fd);
log_file_fd = 0;
} else {
rc = ENOENT;
}
return rc;
}
/*
* Put a time stamp in the buffer.
* This function assumes the buffer has enough room for the timestamp.
*/
void timestamp(char * buf, size_t len, debug_level_t level) {
time_t t;
size_t stamp_len;
time(&t);
strftime(buf, len, "%b %d %H:%M:%S", localtime(&t));
if (log_usec) {
struct timezone tz;
struct timeval utime;
gettimeofday(&utime, &tz);
sprintf(buf + strlen(buf), ".%06ld ", utime.tv_usec);
} else {
strcat(buf, " ");
}
stamp_len = strlen(buf);
gethostname(buf + stamp_len, len - stamp_len);
sprintf(buf + strlen(buf), " _%d_ ", level);
if (log_pid) {
sprintf(log_buf + strlen(log_buf), "%lx ", pthread_self());
}
}
int engine_write_log_entry(debug_level_t level,
char * fmt,
...) {
int rc = 0;
int len;
va_list args;
if (dm_device_suspended) {
return rc;
}
if (level <= debug_level) {
if (log_file_fd > 0) {
pthread_mutex_lock(&log_mutex);
timestamp(log_buf, LOG_BUF_SIZE, level);
if (engine_mode & ENGINE_DAEMON) {
strcat(log_buf, "Daemon: ");
} else {
strcat(log_buf, "Engine: ");
}
len = strlen(log_buf);
va_start(args, fmt);
len += vsprintf(log_buf + strlen(log_buf), fmt, args);
va_end(args);
if (write(log_file_fd, log_buf, len) < 0) {
rc = errno;
}
pthread_mutex_unlock(&log_mutex);
} else {
rc = ENOENT;
}
}
return rc;
}
/*
* Scan a line for device info.
* This is a simple, job specific function. Rather than try to use sscanf() or
* other complex parsers, we do a quick and dirty job here.
* The input buffer should have the form:
* | +[0-9]+ +name *[\n]|
* In English, start with one or more blanks, then a number, one or more blanks,
* then a name, followed by blanks and/or a newline.
* Return the number and the name via parameters.
* The function returns TRUE if it successfully found a number and a name,
* else FALSE.
*/
static boolean scan_dev_info(char * buf, int * dev_num, char * dev_name) {
int result = FALSE;
char * p = buf;
/* Skip over white space. */
while ((*p != '\0') &&
((*p == ' ') || (*p == '\t') || (*p == '\n'))) {
p++;
}
if ((*p != '\0') &&
(*p >= '0') && (*p <= '9')) {
*dev_num = atoi(p);
/* Skip over the number. */
while ((*p != '\0') &&
(*p != ' ') && (*p != '\t') && (*p != '\n')) {
p++;
}
/* Skip over white space. */
while ((*p != '\0') &&
((*p == ' ') || (*p == '\t') || (*p == '\n'))) {
p++;
}
if (*p != '\0') {
/* Copy string up to white space. */
while ((*p != '\0') &&
(*p != ' ') && (*p != '\t') && (*p != '\n')) {
*dev_name++ = *p++;
}
result = TRUE;
}
}
/*
* Terminate the name. If a name was not found, this will set the
* returned device name to "".
*/
*dev_name = '\0';
return result;
}
/*
* Check if /proc and /sys (on 2.6) are mounted. If they aren't, mount them.
*/
static int mounted_procfs = FALSE;
static int check_for_procfs(void) {
struct stat st;
int rc;
LOG_PROC_ENTRY();
rc = stat("/proc/filesystems", &st);
if (rc) {
LOG_WARNING("The /proc filesystem is not mounted. Attempting to mount now.\n");
rc = stat("/proc", &st);
if (rc) {
rc = make_directory("/proc", (S_IFDIR | S_IRWXU |
S_IRGRP | S_IXGRP |
S_IROTH | S_IXOTH));
}
if (!rc) {
rc = mount("none", "/proc", "proc", 0, NULL);
if (!rc) {
mounted_procfs = TRUE;
}
}
if (rc) {
LOG_ERROR("Unable to mount /proc.\n");
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static int mounted_sysfs = FALSE;
static int check_for_sysfs(void) {
FILE *fp;
char string[50];
struct stat st;
int sysfs = FALSE;
int rc = 0;
LOG_PROC_ENTRY();
/* See if sysfs is supported on this kernel. */
fp = fopen("/proc/filesystems", "r");
if (fp) {
while (fscanf(fp, "%s", string) != EOF) {
if (!strncmp(string, "sysfs", 50)) {
sysfs = TRUE;
}
}
fclose(fp);
}
if (sysfs) {
rc = stat("/sys/block", &st);
if (rc) {
LOG_WARNING("The /sys filesystem is not mounted. Attempting to mount now.\n");
rc = stat("/sys", &st);
if (rc) {
rc = make_directory("/sys", (S_IFDIR | S_IRWXU |
S_IRGRP | S_IXGRP |
S_IROTH | S_IXOTH));
}
if (!rc) {
rc = mount("none", "/sys", "sysfs", 0, NULL);
if (!rc) {
mounted_sysfs = TRUE;
}
}
if (rc) {
LOG_ERROR("Unable to mount /sys.\n");
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static int check_for_filesystems(void) {
int rc;
LOG_PROC_ENTRY();
rc = check_for_procfs();
if (!rc) {
rc = check_for_sysfs();
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static void unmount_filesystems(void) {
LOG_PROC_ENTRY();
if (mounted_procfs) {
umount("/proc");
}
if (mounted_sysfs) {
umount("/sys");
}
LOG_PROC_EXIT_VOID();
}
static int load_dm_module() {
int rc = 0;
pid_t pid;
int status;
char * argv[3] = {"modprobe", "dm-mod", NULL};
LOG_PROC_ENTRY();
pid = fork();
switch (pid) {
case -1:
rc = errno;
LOG_WARNING("fork() to run \"%s %s\" returned error %d: %s\n", argv[0], argv[1], rc, strerror(rc));
break;
case 0:
/* Child process */
execvp(argv[0], argv);
/* Should not get here unless execvp() fails. */
rc = errno;
LOG_WARNING("execvp() to run \"%s %s\" returned error %d: %s\n", argv[0], argv[1], rc, strerror(rc));
/* exit() kills the GUI. Use _exit() instead. */
_exit(rc);
break;
default:
/* Parent process */
waitpid(pid, &status, 0);
}
if (rc == 0) {
if (WIFSIGNALED(status)) {
LOG_WARNING("\"%s %s\" was terminated by signal %s\n", argv[0], argv[1], sys_siglist[WTERMSIG(status)]);
rc = EINTR;
} else {
rc = WEXITSTATUS(status);
LOG_DEBUG("\"%s %s\" exited with error code %d: %s\n", argv[0], argv[1], rc, strerror(rc));
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Setup a dev node for the Device Mapper control node.
* The Device Mapper control node is a character device.
* Its major number is the major number of "misc", found in /proc/devices.
* Its Minor number is listed in /proc/misc as "device"mapper".
*/
static int open_dm_control_node(void) {
int rc = 0;
FILE * file;
char work_buf[256];
char dev_name[64];
int dev_num;
int dm_control_major = 0;
int dm_control_minor = 0;
boolean found_major = FALSE;
boolean found_minor = FALSE;
LOG_PROC_ENTRY();
file = fopen("/proc/devices", "r");
if (file != NULL) {
while (fgets(work_buf,sizeof(work_buf),file) != NULL) {
if (scan_dev_info(work_buf, &dev_num, dev_name)) {
if (strcmp(dev_name, "misc") == 0) {
dm_control_major = dev_num;
found_major = TRUE;
break;
}
}
}
fclose(file);
if (found_major) {
boolean retry = TRUE;
retry:
file = fopen("/proc/misc", "r");
if (file != NULL) {
while (fgets(work_buf,sizeof(work_buf),file) != NULL) {
if (scan_dev_info(work_buf, &dev_num, dev_name)) {
if (strcmp(dev_name, "device-mapper") == 0) {
dm_control_minor = dev_num;
found_minor = TRUE;
break;
}
}
}
fclose(file);
if (found_minor) {
dev_t devt = makedev(dm_control_major, dm_control_minor);
make_directory(EVMS_DM_CONTROL_DIR, (S_IFDIR | S_IRWXU |
S_IRGRP | S_IXGRP |
S_IROTH | S_IXOTH));
unlink(EVMS_DM_CONTROL);
rc = mknod(EVMS_DM_CONTROL, (S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP), devt);
if (rc == 0) {
rc = open(EVMS_DM_CONTROL, O_RDWR);
if (rc > 0) {
dm_control_fd = rc;
rc = dm_check_version();
if (rc != 0) {
LOG_WARNING("Checking Device-Mapper interface version failed with error code %d: %s\n", rc, strerror(rc));
close(dm_control_fd);
dm_control_fd = 0;
} else {
/* Close this file for all exec'd processes. */
fcntl(dm_control_fd, F_SETFD, FD_CLOEXEC);
}
} else {
rc = errno;
LOG_WARNING("Open of " EVMS_DM_CONTROL " failed with error code %d: %s\n", rc, strerror(rc));
}
} else {
rc = errno;
LOG_WARNING("mknod of " EVMS_DM_CONTROL " (%d:%d) failed with error code %d: %s\n", dm_control_major, dm_control_minor, rc, strerror(rc));
}
} else {
if (retry) {
rc = load_dm_module();
/* Whether success or error, don't try again. */
retry = FALSE;
if (rc == 0) {
goto retry;
}
} else {
LOG_WARNING("Could not find an entry for \"device-mapper\" in /proc/misc.\n");
rc = ENOENT;
}
}
} else {
rc = errno;
LOG_WARNING("Open of /proc/misc failed with error code %d: %s\n", rc, strerror(rc));
}
} else {
LOG_WARNING("Could not find an entry for \"misc\" in /proc/devices.\n");
rc = ENOENT;
}
} else {
rc = errno;
LOG_WARNING("Open of /proc/devices failed with error code %d: %s\n", rc, strerror(rc));
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
void send_shutdown(pid_t pid) {
int rc = 0;
int seconds_to_wait = SHUTDOWN_TIMEOUT + 5;
LOG_PROC_ENTRY();
/* The Engine uses the SIGUSR1 signal to indicate a shutdown. */
LOG_DEBUG("Send SIGUSR1 to pid %d.\n", pid);
kill(pid, SIGUSR1);
/*
* Wait for the process to die by sending it a harmless signal.
* When the kill() fails we can know that the process has gone
* away.
*/
while ((rc == 0) && (seconds_to_wait > 0)) {
usleep(1000000);
LOG_DEBUG("Send SIGCONT to pid %d to check if is gone.\n", pid);
rc = kill(pid, SIGCONT);
seconds_to_wait--;
}
if (rc == 0) {
/*
* The process did not respond to the SIGUSR1 signal.
* Shut it down.
*/
/* Try to kill it nicely. */
LOG_DEBUG("Send SIGQUIT to pid %d to tell it to quit.\n", pid);
kill(pid, SIGQUIT);
usleep(3000000);
/* Just kill it. */
LOG_DEBUG("Send SIGKILL to pid %d to kill it.\n", pid);
kill(pid, SIGKILL);
}
LOG_PROC_EXIT_VOID();
}
static char lock_msg[MAX_LOCK_MESSAGE_LEN];
int lock_engine(engine_mode_t mode, const char * * msg) {
int rc = 0;
int status;
struct flock lockinfo = {0};
boolean retry = FALSE;
char * buf1 = NULL;
char * buf2;
struct stat statbuf = {0};
LOG_PROC_ENTRY();
lock_msg[0] = '\0';
status = stat(ENGINE_LOCK_FILE, &statbuf);
/*
* Get memory for the lock file contents.
* If the lock file doesn't exist, the stat() above failed and
* statbuf.st_size will be left at its initial value of 0.
*/
if (lock_file == NULL) {
lock_file_size = max(statbuf.st_size, sizeof(lock_file_t));
lock_file = engine_alloc(lock_file_size);
if (lock_file == NULL) {
LOG_CRITICAL("Error getting memory for the lock file.\n");
LOG_PROC_EXIT_INT(ENOMEM);
return ENOMEM;
}
} else {
/* Make sure the memory for the lock file is big enough. */
if (lock_file_size < statbuf.st_size) {
lock_file = engine_realloc(lock_file, statbuf.st_size);
if (lock_file != NULL) {
lock_file_size = statbuf.st_size;
} else {
LOG_CRITICAL("Error reallocating memory for the lock file.\n");
LOG_PROC_EXIT_INT(ENOMEM);
return ENOMEM;
}
}
}
if (status != 0) {
/*
* The lock file does not exist. Make sure the lock file
* directory exists so that we can create the lock file.
*/
char dir_name[] = ENGINE_LOCK_FILE_DIR;
rc = make_directory(dir_name, (S_IFDIR | S_IRWXU |
S_IRGRP | S_IXGRP |
S_IROTH | S_IXOTH));
if (rc != 0) {
LOG_SERIOUS("Unable to create the directory for the lock file.\n");
}
}
start:
if (rc == 0) {
lock_file_fd = open(ENGINE_LOCK_FILE, O_CREAT | O_RDWR, 0660);
if (lock_file_fd < 0) {
rc = errno;
}
}
if (rc == 0) {
/* Close this file for all exec'd processes. */
fcntl(lock_file_fd, F_SETFD, FD_CLOEXEC);
lseek(lock_file_fd, offsetof(lock_file_t, pid), SEEK_SET);
read(lock_file_fd, &lock_file->pid, lock_file_size - offsetof(lock_file_t, pid));
/*
* Lock our access to the Engine. Figure out whether to lock for
* reading or for writing based on the mode.
*/
if (mode & (ENGINE_WRITE | ENGINE_DAEMON)) {
lockinfo.l_type = F_WRLCK;
} else {
lockinfo.l_type = F_RDLCK;
}
lockinfo.l_whence = SEEK_SET;
if (mode & ENGINE_DAEMON) {
lockinfo.l_start = offsetof(lock_file_t, daemon_lock);
lockinfo.l_len = sizeof(lock_file->daemon_lock);
} else {
lockinfo.l_start = offsetof(lock_file_t, engine_lock);
lockinfo.l_len = sizeof(lock_file->engine_lock);
}
rc = fcntl(lock_file_fd, F_SETLK, &lockinfo);
if (rc == 0) {
/* Put our information in the lock file. */
if (mode & ENGINE_DAEMON) {
lock_file->daemon_lock = 1;
lseek(lock_file_fd, offsetof(lock_file_t, daemon_lock), SEEK_SET);
write(lock_file_fd, &lock_file->daemon_lock, sizeof(lock_file->daemon_lock));
} else {
lock_file->engine_lock = 1;
lock_file->pid = getpid();
lock_file->mode = mode;
/*
* Leave lock_file->node as an empty string. If
* the Engine is being opened on behalf of
* another node, the daemon will fill in the
* node field.
*/
lseek(lock_file_fd, offsetof(lock_file_t, engine_lock), SEEK_SET);
write(lock_file_fd, &lock_file->engine_lock, lock_file_size - offsetof(lock_file_t, engine_lock));
}
} else {
/*
* We could not lock the Engine. It must be in use by some
* other process. Try to find out what process it is and tell
* the user.
*/
rc = fcntl(lock_file_fd, F_GETLK, &lockinfo);
if (rc == 0) {
int bytes;
/*
* Check if the process is alive by sending it a harmless
* signal.
*/
rc = kill(lockinfo.l_pid, SIGCONT);
if (rc != 0) {
if ((errno == ESRCH) && !retry) {
/*
* The locking process is gone.
* Try deleting the lock file and starting again.
*/
close(lock_file_fd);
lock_file_fd = 0;
rc = unlink(ENGINE_LOCK_FILE);
if (rc == 0) {
retry = TRUE;
goto start;
}
}
}
if ((mode & ENGINE_CRITICAL) &&
(!(lock_file->mode & ENGINE_CRITICAL))) {
send_shutdown(lockinfo.l_pid);
close(lock_file_fd);
goto start;
}
buf1 = engine_alloc(PATH_MAX + 1);
if (buf1 == NULL) {
LOG_CRITICAL("Error getting memory for buffer 1.\n");
LOG_PROC_EXIT_INT(ENOMEM);
return ENOMEM;
}
buf2 = engine_alloc(PATH_MAX + 1);
if (buf2 == NULL) {
LOG_CRITICAL("Error getting memory for buffer 2.\n");
engine_free(buf1);
LOG_PROC_EXIT_INT(ENOMEM);
return ENOMEM;
}
/*
* The file name for the pid is symlinked at
* /proc/{pid}/exe
*/
sprintf(buf1, "/proc/%d/exe", lockinfo.l_pid);
bytes = readlink(buf1, buf2, PATH_MAX + 1);
if (bytes > 0) {
/*
* readlink() does not null terminate the returned
* file name.
*/
buf2[bytes] = '\0';
if (mode & ENGINE_DAEMON) {
sprintf(lock_msg, "The EVMS Daemon is already running in process %d (%s).\n",
lockinfo.l_pid, buf2);
} else {
sprintf(lock_msg, "The EVMS Engine is currently in use by process %d (%s).\n",
lockinfo.l_pid, buf2);
}
} else {
/*
* Couldn't get the name for the process ID.
* Log a message with just the PID.
*/
if (mode & ENGINE_DAEMON) {
sprintf(lock_msg, "The EVMS Daemon is already running in process %d.\n",
lockinfo.l_pid);
} else {
sprintf(lock_msg, "The EVMS Engine is currently in use by process %d.\n",
lockinfo.l_pid);
}
}
if ((!(mode & ENGINE_DAEMON)) &&
(lock_file->node[0] != '\0')) {
sprintf(lock_msg + strlen(lock_msg), "The process has locked the Engine on behalf of node %s.\n", lock_file->node);
}
engine_free(buf2);
} else {
/*
* Couldn't get the lockinfo of the locking process.
* Log a generic message.
*/
if (mode & ENGINE_DAEMON) {
sprintf(lock_msg, _("The EVMS Daemon is already running.\n"));
} else {
sprintf(lock_msg, _("The EVMS Engine is currently in use by another process.\n"));
}
}
engine_free(buf1);
if (!((engine_mode & ENGINE_DAEMON) &&
(!(mode & ENGINE_DAEMON))) ) {
engine_user_message(NULL, NULL, lock_msg);
}
close(lock_file_fd);
lock_file_fd = 0;
rc = EACCES;
}
} else {
sprintf(lock_msg, "Unable to open the Engine lock file %s: %s. The Engine is not protected against other instances of the Engine being opened at the same time.\n", ENGINE_LOCK_FILE, strerror(rc));
rc = 0;
engine_user_message(NULL, NULL, lock_msg);
lock_file_fd = 0;
}
if (msg != NULL) {
*msg = lock_msg;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
int unlock_engine(engine_mode_t mode) {
int rc = 0;
LOG_PROC_ENTRY();
if (lock_file_fd != 0) {
struct flock lockinfo = {0};
/* Clear the contents of the lock file. */
if (mode & ENGINE_DAEMON) {
lock_file->daemon_lock = 0;
lseek(lock_file_fd, offsetof(lock_file_t, daemon_lock), SEEK_SET);
write(lock_file_fd, &lock_file->daemon_lock, sizeof(lock_file->daemon_lock));
} else {
lock_file->engine_lock = 0;
lock_file->pid = 0;
lock_file->mode = ENGINE_CLOSED;
memset(lock_file->node, '\0', lock_file_size - offsetof(lock_file_t, node));
lseek(lock_file_fd, offsetof(lock_file_t, engine_lock), SEEK_SET);
write(lock_file_fd, &lock_file->engine_lock, lock_file_size - offsetof(lock_file_t, engine_lock));
}
lockinfo.l_type = F_UNLCK;
lockinfo.l_whence = SEEK_SET;
if (mode & ENGINE_DAEMON) {
lockinfo.l_start = offsetof(lock_file_t, daemon_lock);
lockinfo.l_len = sizeof(lock_file->daemon_lock);
} else {
lockinfo.l_start = offsetof(lock_file_t, engine_lock);
lockinfo.l_len = sizeof(lock_file->engine_lock);
}
rc = fcntl(lock_file_fd, F_SETLK, &lockinfo);
if (rc == 0) {
close(lock_file_fd);
lock_file_fd = 0;
} else {
rc = errno;
}
engine_free(lock_file);
lock_file = NULL;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static void free_list_items(list_anchor_t list,
object_type_t type) {
list_element_t iter1;
list_element_t iter2;
void * thing;
LIST_FOR_EACH_SAFE(list,iter1, iter2, thing) {
switch (type) {
case DISK:
{
storage_object_t * obj = (storage_object_t *) thing;
/*
* Mark the object inactive so that
* engine_free_logical_disk() doesn't put the
* object on the deactivate_list.
*/
obj->flags &= ~SOFLAG_ACTIVE;
engine_free_logical_disk(obj);
}
break;
case SEGMENT:
{
storage_object_t * obj = (storage_object_t *) thing;
/*
* Mark the object inactive so that
* engine_free_segment() doesn't put the
* object on the deactivate_list.
*/
obj->flags &= ~SOFLAG_ACTIVE;
engine_free_segment(obj);
}
break;
case REGION:
{
storage_object_t * obj = (storage_object_t *) thing;
/*
* Mark the object inactive so that
* engine_free_region() doesn't put the
* object on the deactivate_list.
*/
obj->flags &= ~SOFLAG_ACTIVE;
engine_free_region(obj);
}
break;
case EVMS_OBJECT:
{
storage_object_t * obj = (storage_object_t *) thing;
/*
* Mark the object inactive so that
* engine_free_evms_object() doesn't put the
* object on the deactivate_list.
*/
obj->flags &= ~SOFLAG_ACTIVE;
engine_free_evms_object(obj);
}
break;
case CONTAINER:
{
storage_container_t * con = (storage_container_t *) thing;
engine_free_container(con);
}
break;
case VOLUME:
{
logical_volume_t * vol = (logical_volume_t *) thing;
destroy_handle(vol->app_handle);
engine_unregister_name(vol->name);
/*
* The volume may also be on the the
* volume_delete_list. If we are processing
* the volumes_list, remove the volume from the
* volume_delete_list.
*/
if (list == &volumes_list) {
remove_thing(&volume_delete_list, thing);
}
}
/*
* Fall through to remove the logical_volume from
* the list and free its memory.
*/
default:
/*
* Don't know what the object is. Delete the item from the
* list and free its memory
*/
delete_element(iter1);
break;
}
}
}
static void cleanup_evms_lists(void) {
LOG_PROC_ENTRY();
delete_all_elements(&plugins_list);
free_list_items(&disks_list, DISK);
delete_all_elements(&disks_list);
free_list_items(&segments_list, SEGMENT);
delete_all_elements(&segments_list);
free_list_items(&containers_list, CONTAINER);
delete_all_elements(&containers_list);
free_list_items(®ions_list, REGION);
delete_all_elements(®ions_list);
free_list_items(&EVMS_objects_list, EVMS_OBJECT);
delete_all_elements(&EVMS_objects_list);
free_list_items(&volumes_list, VOLUME);
delete_all_elements(&volumes_list);
free_list_items(&kill_sectors_list, 0);
delete_all_elements(&kill_sectors_list);
free_list_items(&volume_delete_list, VOLUME);
delete_all_elements(&volume_delete_list);
free_list_items(&deactivate_list, 0);
delete_all_elements(&deactivate_list);
delete_all_elements(&rename_volume_list);
LOG_PROC_EXIT_VOID();
}
int evms_close_engine(void) {
int rc = 0;
LOG_PROC_ENTRY();
if (engine_mode != ENGINE_CLOSED) {
close(dm_control_fd);
dm_control_fd = 0;
evms_free_config();
unload_plugins();
unmount_filesystems();
clear_name_registry();
destroy_all_handles();
cleanup_evms_lists();
remove_signal_handlers();
unlock_engine(engine_mode);
engine_mode = ENGINE_CLOSED;
} else {
LOG_DEBUG("The Engine is already closed.\n");
rc = EPERM;
}
LOG_PROC_EXIT_INT(rc);
stop_logging();
return rc;
}
static void * thread_engine_user_message(void * arg) {
char * msg = (char *) arg;
engine_user_message(NULL, NULL, msg);
return NULL;
}
static char msg_buf[256];
static void shutdown_engine() {
int seconds_until_death = SHUTDOWN_TIMEOUT;
pthread_t msg_tid;
LOG_PROC_ENTRY();
if (engine_mode & ENGINE_WORKER) {
/*
* Hey, I'm not the one running the show. Send the shutdown
* on to the node that started me.
*/
remote_shutdown();
LOG_PROC_EXIT_VOID();
return;
}
while (seconds_until_death > 0) {
if (engine_mode & ENGINE_WRITE) {
sprintf(msg_buf,
"Another process urgently needs the Engine. "
"Please save your changes or quit now. "
"This process will self destruct in %d seconds.\n",
seconds_until_death);
} else {
sprintf(msg_buf,
"Another process urgently needs the Engine. "
"Please quit now. "
"This process will self destruct in %d seconds.\n",
seconds_until_death);
}
pthread_create(&msg_tid,
&pthread_attr_detached,
thread_engine_user_message,
msg_buf);
/* Warn every ten seconds and on the last five seconds. */
if (seconds_until_death >= 10) {
usleep(10000000);
seconds_until_death -= 10;
} else {
usleep(5000000);
seconds_until_death -= 5;
}
}
if (seconds_until_death <= 0) {
pthread_create(&msg_tid,
&pthread_attr_detached,
thread_engine_user_message,
_("Self destruct sequence initiated.\n"));
}
/* Don't self destruct in the middle of a commit. */
while (commit_in_progress) {
usleep(1000000);
}
/* Close the Engine nicely if the user/UI didn't do it. */
evms_close_engine();
/* Try to exit nicely. */
raise(SIGQUIT);
usleep(3000000);
/* Die, die, die. */
raise(SIGKILL);
/* We should never get here. But if we do, we'll see it in the log. */
LOG_PROC_EXIT_VOID();
}
/*
* Check if the old EVMS kernel is running on this system.
*/
static int check_for_evms_kernel(void) {
int rc = 0;
int status;
struct stat statbuf;
dev_t evms_devt = makedev(EVMS_MAJOR, 0);
int fd;
char temp_node_name[65];
LOG_PROC_ENTRY();
/*
* Simple check first. Is there a "/proc/evms" directory?
* If the EVMS kernel is running it will exist.
*/
status = stat("/proc/evms", &statbuf);
if (status == 0) {
if (S_ISDIR(statbuf.st_mode)) {
/*
* Make a dev node for EVMS_MAJOR:0 and see if it can
* be opened.
*/
/* Find a random file name. */
do {
sprintf(temp_node_name, "%x", rand());
status = stat(temp_node_name, &statbuf);
} while (status == 0);
status = mknod(temp_node_name, (S_IFBLK | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP), evms_devt);
if (status == 0) {
fd = open(temp_node_name, O_RDWR|O_NONBLOCK);
if (fd > 0) {
/* Open succeeded. EVMS kernel is running. */
close(fd);
rc = EEXIST;
}
unlink(temp_node_name);
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static void check_for_2_4_kernel(void)
{
int fd;
char needle[] = "version";
char haystack[256];
char *ver;
int major, minor, patch;
LOG_PROC_ENTRY();
/* Assume the worst. */
is_2_4_kernel = TRUE;
fd = open("/proc/version", O_RDONLY);
if (fd >= 0) {
read(fd, haystack, 256);
close(fd);
ver = strstr(haystack, needle);
if (ver) {
sscanf(ver, "%*s %d.%d.%d", &major, &minor, &patch);
LOG_DETAILS("Kernel version is: %d.%d.%d\n", major, minor, patch);
if ((major != 2) || (minor != 4)) {
is_2_4_kernel = FALSE;
}
} else {
LOG_WARNING("Could not find \"version\" in the version string in /proc/version.");
LOG_WARNING("Assuming kernel is version 2.4.\n");
}
} else {
LOG_WARNING("Open of /proc/version failed with error code %d: %s\n", errno, strerror(errno));
LOG_WARNING("Assuming kernel is version 2.4.\n");
}
LOG_PROC_EXIT_VOID()
return;
}
/*
* Check if the Engine is currently allowing read access. The Engine must be
* open and a commit must not be in progress.
*/
int check_engine_read_access() {
int rc = 0;
LOG_PROC_ENTRY();
if ((engine_mode == ENGINE_CLOSED) ||
commit_in_progress) {
if (engine_mode == ENGINE_CLOSED) {
LOG_ERROR("The Engine is not open.\n");
}
if (commit_in_progress) {
LOG_ERROR("The Engine is currently committing changes.\n");
}
rc = EACCES;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Check if the Engine is allowing write access, i.e., data structures, etc.
* can be updated. The Engine must be opened in a mode that allows writing
* and a commit must not be in progress.
*/
int check_engine_write_access() {
int rc = 0;
LOG_PROC_ENTRY();
if ((engine_mode == ENGINE_CLOSED) ||
(!(engine_mode & ENGINE_WRITE)) ||
commit_in_progress) {
if (engine_mode == ENGINE_CLOSED) {
LOG_ERROR("The Engine is not open.\n");
} else {
if (engine_mode & ENGINE_WRITE) {
LOG_ERROR("The Engine is not open for writing.\n");
}
}
if (commit_in_progress) {
LOG_ERROR("The Engine is currently committing changes.\n");
}
rc = EACCES;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
static void get_config_mode(char * key,
engine_mode_t * open_mode) {
int rc;
const char * config_string;
rc = evms_get_config_string(key, &config_string);
if (rc == 0) {
if (strcasecmp(config_string, "readonly") == 0) {
*open_mode = ENGINE_READONLY;
} else if (strcasecmp(config_string, "readwrite") == 0) {
*open_mode = ENGINE_READWRITE;
} else if (strcasecmp(config_string, "daemon") == 0) {
*open_mode = ENGINE_DAEMON;
}
}
}
static void get_config_debug_level(char * key,
debug_level_t * debug_level) {
int rc;
const char * config_string;
rc = evms_get_config_string(key, &config_string);
if (rc == 0) {
if (strcasecmp(config_string, "CRITICAL") == 0) {
*debug_level = CRITICAL;
} else if (strcasecmp(config_string, "SERIOUS") == 0) {
*debug_level = SERIOUS;
} else if (strcasecmp(config_string, "ERROR") == 0) {
*debug_level = ERROR;
} else if (strcasecmp(config_string, "WARNING") == 0) {
*debug_level = WARNING;
} else if (strcasecmp(config_string, "DEFAULT") == 0) {
*debug_level = DEFAULT;
} else if (strcasecmp(config_string, "DETAILS") == 0) {
*debug_level = DETAILS;
} else if (strcasecmp(config_string, "DEBUG") == 0) {
*debug_level = DEBUG;
} else if (strcasecmp(config_string, "EXTRA") == 0) {
*debug_level = EXTRA;
} else if (strcasecmp(config_string, "ENTRY_EXIT") == 0) {
*debug_level = ENTRY_EXIT;
} else if (strcasecmp(config_string, "EVERYTHING") == 0) {
*debug_level = EVERYTHING;
}
}
}
static void sigusr1_handler(int sig_no) {
LOG_CRITICAL("***\n");
LOG_CRITICAL("*** Received shutdown signal: %s.\n", sys_siglist[sig_no]);
LOG_CRITICAL("***\n");
sem_post(&shutdown_sem);
}
static void * shutdown_thread(void * arg) {
sem_t * shutdown_sem = (sem_t *) arg;
int rc;
LOG_PROC_ENTRY();
LOG_DEBUG("Register SIGUSR1 handler.\n");
signal(SIGUSR1, sigusr1_handler);
sem_init(shutdown_sem, 0, 0);
do {
LOG_DEBUG("Wait for SIGUSR1 shutdown signal.\n");
rc = sem_wait(shutdown_sem);
LOG_DEBUG("sem_wait returned %d.\n", rc);
if (rc != 0) {
LOG_DEBUG("errno is %d: %s\n", errno, strerror(errno));
}
} while ((rc != 0) && (errno == EINTR));
LOG_DEBUG("Shutdown signal received.\n");
if (rc == 0) {
shutdown_engine();
} else {
LOG_CRITICAL("sem_wait() failed with error code %d: %s\n", rc, strerror(rc));
LOG_CRITICAL("The shutdown thread is disabled.\n");
}
LOG_PROC_EXIT_VOID();
return NULL;
}
#define VERSION_FIELDS(ver) ver.major, ver.minor, ver.patchlevel
int evms_get_api_version(evms_version_t * version) {
*version = engine_api_version;
return 0;
}
int evms_open_engine(char * node_name,
engine_mode_t mode,
ui_callbacks_t * callbacks,
debug_level_t level,
char * log_name) {
int rc = 0;
engine_mode_t open_mode;
pthread_t shutdown_tid;
if (geteuid() != 0) {
if (callbacks != NULL) {
if (callbacks->user_message != NULL) {
callbacks->user_message(_("You must have root privilege to open the EVMS Engine."), NULL, NULL);
}
}
return EACCES;
}
/* Setup defaults. */
current_node_name = NULL;
open_mode = ENGINE_READWRITE;
debug_level = DEFAULT;
log_usec = FALSE;
log_pid = FALSE;
if ((mode != -1) && (mode & ENGINE_DAEMON)) {
log_file_name = DEFAULT_DAEMON_LOG_FILE;
} else {
log_file_name = DEFAULT_LOG_FILE;
}
ui_callbacks = callbacks;
/*
* Free any configuration that may have been read in and abandoned by
* an application outside of the Engine being open.
*/
evms_free_config();
/*
* Get settings from the evms.conf. They may override the default
* settings above.
*/
if (evms_get_config(NULL) == 0) {
if ((mode != -1) && (mode & ENGINE_DAEMON)) {
get_config_debug_level("daemon.debug_level", &debug_level);
evms_get_config_string("daemon.log_file", (const char * *) &log_file_name);
evms_get_config_bool("daemon.log_usec", &log_usec);
evms_get_config_bool("daemon.log_pid", &log_pid);
} else {
get_config_mode("engine.mode", &open_mode);
get_config_debug_level("engine.debug_level", &debug_level);
evms_get_config_string("engine.node", (const char * *) ¤t_node_name);
evms_get_config_string("engine.log_file", (const char * *) &log_file_name);
evms_get_config_bool("engine.log_usec", &log_usec);
evms_get_config_bool("engine.log_pid", &log_pid);
}
}
/*
* Get user supplied settings, which override both the defaults and the
* settings in evms.conf.
*/
if (node_name != NULL) {
current_node_name = node_name;
}
if (mode != -1) {
open_mode = mode;
}
if (level != -1) {
debug_level = level;
}
if (log_name != NULL) {
log_file_name = log_name;
}
start_logging(log_file_name);
LOG_PROC_ENTRY();
LOG_DEFAULT("Engine version: %2d.%d.%d\n", VERSION_FIELDS(engine_version));
LOG_DEFAULT("External API version: %2d.%d.%d\n", VERSION_FIELDS(engine_api_version));
LOG_DEFAULT("Engine services version: %2d.%d.%d\n", VERSION_FIELDS(engine_services_api_version));
LOG_DEFAULT("Plug-in API version: %2d.%d.%d\n", VERSION_FIELDS(engine_plugin_api_version));
LOG_DEFAULT("Container API version: %2d.%d.%d\n", VERSION_FIELDS(engine_container_api_version));
LOG_DEFAULT("FSIM API version: %2d.%d.%d\n", VERSION_FIELDS(engine_fsim_api_version));
LOG_DEFAULT("Cluster API version: %2d.%d.%d\n", VERSION_FIELDS(engine_cluster_api_version));
LOG_DEFAULT("Daemon protocol version: %2d.%d.%d\n", VERSION_FIELDS(engine_daemon_msg_version));
sprintf(message_buffer, "Requested open mode is %#x.", mode);
if (mode == -1) {
strcat(message_buffer, " (default)\n");
} else {
if (mode & ENGINE_READ) {
strcat(message_buffer, " ENGINE_READ");
}
if (mode & ENGINE_WRITE) {
strcat(message_buffer, " ENGINE_WRITE");
}
if (mode & ENGINE_CRITICAL) {
strcat(message_buffer, " ENGINE_CRITICAL");
}
if (mode & ENGINE_DAEMON) {
strcat(message_buffer, " ENGINE_DAEMON");
}
if (mode & ENGINE_WORKER) {
strcat(message_buffer, " ENGINE_WORKER");
}
strcat(message_buffer, "\n");
}
LOG_DEFAULT("%s", message_buffer);
if (!(open_mode & (ENGINE_READ | ENGINE_DAEMON))) {
LOG_ERROR("Open mode of %d is not valid.\n", open_mode);
evms_free_config();
LOG_PROC_EXIT_INT(EINVAL);
return EINVAL;
}
if (engine_mode != ENGINE_CLOSED) {
/* This Engine is already open. */
LOG_ERROR("The Engine is already opened.\n");
evms_free_config();
LOG_PROC_EXIT_INT(EINVAL);
return EINVAL;
}
/* Check for /proc and /sys. */
rc = check_for_filesystems();
if (rc != 0) {
evms_free_config();
LOG_PROC_EXIT_INT(EINVAL);
return EINVAL;
}
/* Check if we can access the EVMS kernel code. */
rc = check_for_evms_kernel();
if (rc != 0) {
engine_user_message(NULL, NULL,
_("This system is running the EVMS kernel. "
"EVMS Engine versions 1.9.0 and above do not run with the EVMS kernel. "
"Use EVMS Engine version 1.2 to configure with the EVMS kernel.\n"));
evms_free_config();
LOG_PROC_EXIT_INT(rc);
return rc;
}
engine_mode = open_mode;
sprintf(message_buffer, "Open mode is %#x.", engine_mode);
if (engine_mode & ENGINE_READ) {
strcat(message_buffer, " ENGINE_READ");
}
if (engine_mode & ENGINE_WRITE) {
strcat(message_buffer, " ENGINE_WRITE");
}
if (engine_mode & ENGINE_CRITICAL) {
strcat(message_buffer, " ENGINE_CRITICAL");
}
if (engine_mode & ENGINE_DAEMON) {
strcat(message_buffer, " ENGINE_DAEMON");
}
if (engine_mode & ENGINE_WORKER) {
strcat(message_buffer, " ENGINE_WORKER");
}
strcat(message_buffer, "\n");
LOG_DEFAULT("%s", message_buffer);
check_for_2_4_kernel();
/* Initialize the random number generator. */
srand(time(NULL) + getpid());
/* Install signal handlers. */
install_signal_handlers();
if (open_dm_control_node() != 0) {
engine_user_message(NULL, NULL,
_("Unable to open the control node for Device-Mapper. "
"The Engine will run without Device-Mapper support.\n"));
}
/* Setup the pthread attribute for starting threads detached. */
/* That is, no other thread will wait for the created thread to exit. */
pthread_attr_init(&pthread_attr_detached);
pthread_attr_setdetachstate(&pthread_attr_detached, PTHREAD_CREATE_DETACHED);
rc = lock_engine(engine_mode, NULL);
if (rc == 0) {
rc = load_plugins();
if (rc == 0) {
if (engine_mode & ENGINE_DAEMON) {
/* Daemon can't run without a cluster manager. */
if (cluster_manager == NULL) {
engine_user_message(NULL, NULL,
_("There is no cluster manager plug-in loaded on this system.\n"));
rc = ENODEV;
}
} else {
if (cluster_manager != NULL) {
if (!(engine_mode & ENGINE_WORKER)) {
/*
* Open the Engine on the other nodes
* in the cluster.
*/
rc = remote_open_engine(NULL, engine_mode, NULL, debug_level, log_file_name);
if (rc != 0) {
/*
* At least one of the Engine on
* another node failed to start.
* Release any Engines we may
* have already started on other
* nodes.
*/
remote_close_engine();
disconnect_from_ece();
local_focus = TRUE;
engine_user_message(NULL, NULL,
_("There was an error when starting EVMS on the other nodes in the cluster. "
"The error code was %d: %s. "
"EVMS will only manage local devices on this system.\n"),
rc, evms_strerror(rc));
rc = 0;
}
}
} else {
if (current_node_name != NULL) {
engine_user_message(NULL, NULL,
_("There is no cluster manager plug-in loaded on this system. "
"The node_name parameter \"%s\" is ignored.\n"),
current_node_name);
}
}
pthread_create(&shutdown_tid,
&pthread_attr_detached,
shutdown_thread,
&shutdown_sem);
/* Initialize the Handle Manager. */
if (initialize_handle_manager()) {
rc = initial_discovery();
if (rc != 0) {
destroy_all_handles();
}
} else {
LOG_CRITICAL("Handle Manager failed to initialize.\n");
rc = ENOMEM;
}
}
if (rc != 0) {
unload_plugins();
}
}
if (rc != 0) {
unlock_engine(engine_mode);
}
}
if (rc != 0) {
cleanup_evms_lists();
}
if (rc != 0) {
close(dm_control_fd);
evms_free_config();
engine_mode = ENGINE_CLOSED;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
void free_changes_pending_record_array_contents(void * thing) {
change_record_array_t * changes = (change_record_array_t *) thing;
int i;
for (i = 0; i < changes->count; i++) {
engine_free(changes->changes_pending[i].name);
}
}
int evms_changes_pending(boolean * result,
change_record_array_t * * p_changes) {
int rc = 0;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_changes_pending(result, p_changes);
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (p_changes == NULL) {
*result = are_changes_pending(NULL);
} else {
change_record_array_t * changes = NULL;
change_record_array_t * user_changes = NULL;
*result = are_changes_pending(&changes);
if (changes != NULL) {
user_changes = alloc_app_struct(sizeof(change_record_array_t) + sizeof(change_record_t) * changes->count,
free_changes_pending_record_array_contents);
if (user_changes != NULL) {
int i;
user_changes->count = changes->count;
for (i = 0; i < changes->count; i++) {
user_changes->changes_pending[i].name = engine_strdup(changes->changes_pending[i].name);
user_changes->changes_pending[i].type = changes->changes_pending[i].type;
user_changes->changes_pending[i].changes = changes->changes_pending[i].changes;
}
} else {
LOG_CRITICAL("Error allocating memory for a change_record_array_t.\n");
}
engine_free(changes);
}
*p_changes = user_changes;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Get the Engine's current setting of the debug level.
*/
int evms_get_debug_level(debug_level_t * level) {
int rc = 0;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
/*
* Debug level is the same across all nodes in the cluster,
* so we can just get the level from the local node.
*/
if (rc == 0) {
*level = debug_level;
}
LOG_PROC_EXIT_INT(0)
return 0;
}
/*
* Set the Engine's debug level.
*/
int evms_set_debug_level(debug_level_t level) {
int rc = 0;
int new_debug_level = debug_level;
/*
* Always log the activity for setting the debug level. If the debug
* level changes from below ENTRY_EXIT to ENTRY_EXIT or above the log
* will not contain a line for entering this function. Conversely,
* if the debug level changes from ENTRY_EXIT or above to below
* ENTRY_EXIT the log will not contain the line for exiting this
* function. Changing the log level in the middle of
* evms_set_debug_level() does funky things to the log.
*/
if (debug_level < DEBUG) {
debug_level = DEBUG;
}
LOG_PROC_ENTRY();
LOG_DEBUG("Request to set debug level to %d.\n", level);
/*
* People that opened the Engine for read-only are allowed to set their
* debug level.
*/
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc)
return(rc);
}
if ((level >= CRITICAL) &&
(level <= EVERYTHING)) {
/*
* If we are running in a cluster and this is not a
* worker, set the debug level on the other nodes in the
* cluster. (A worker must not forward the
* set_debug_level() on to other nodes. It would cause
* recursion as the worker(s) would then receive another
* set_debug_level() and attmpt to forward that one
* too...)
*/
if ((current_nodeid != NULL) && !(engine_mode & ENGINE_WORKER)) {
rc = remote_set_debug_level(level);
}
new_debug_level = level;
LOG_DEBUG("Debug level is set to %d.\n", new_debug_level);
} else {
LOG_ERROR("Debug level is out of range. It must be between %d and %d, inclusive.\n", CRITICAL, EVERYTHING);
rc = EINVAL;
}
LOG_PROC_EXIT_INT(rc)
debug_level = new_debug_level;
return(rc);
}
/*-----------------------------------------------------------------------------+
+ +
+ Logging Functions +
+ +
+-----------------------------------------------------------------------------*/
int evms_write_log_entry(debug_level_t level,
char * module_name,
char * fmt,
...) {
int rc = 0;
int len;
va_list args;
if (dm_device_suspended) {
return rc;
}
if (level <= debug_level) {
if (log_file_fd > 0) {
pthread_mutex_lock(&log_mutex);
timestamp(log_buf, LOG_BUF_SIZE, level);
strcat(log_buf, module_name);
strcat(log_buf, ": ");
len = strlen(log_buf);
va_start(args, fmt);
len += vsprintf(log_buf + strlen(log_buf), fmt, args);
va_end(args);
if (write(log_file_fd, log_buf, len) < 0) {
rc = errno;
}
pthread_mutex_unlock(&log_mutex);
} else {
rc = ENOENT;
}
}
return rc;
}
/*-----------------------------------------------------------------------------+
+ +
+ Some List Handlers +
+ +
+-----------------------------------------------------------------------------*/
/*
* Make sure this object has an app_handle.
*/
int ensure_app_handle(void * thing) {
int rc = 0;
/*
* All exportable Engine structures start with the common header.
*/
common_header_t * hdr = (common_header_t *) thing;
LOG_PROC_ENTRY();
if (hdr->app_handle == 0) {
LOG_DEBUG("Create a handle for a thing of type %d.\n", hdr->type);
rc = create_handle(thing,
hdr->type,
&hdr->app_handle);
if (rc == 0) {
LOG_DEBUG("Handle is %d.\n", hdr->app_handle);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Add the app_handle for a given object to a handle_array_t.
*/
int make_handle_entry(void * thing,
handle_array_t * ha) {
int rc = 0;
/*
* All exportable Engine structures start with the common header.
*/
common_header_t * hdr = (common_header_t *) thing;
LOG_PROC_ENTRY();
rc = ensure_app_handle(thing);
if (rc == 0) {
ha->handle[ha->count] = hdr->app_handle;
ha->count++;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Make a user (it has a Engine memory block header) array of handles
* (handle_array_t) for the objects in a list_anchor_t.
*/
int make_user_handle_array(list_anchor_t list,
handle_array_t * * ha) {
int rc = 0;
uint count;
uint size;
LOG_PROC_ENTRY();
count = list_count(list);
size = sizeof(handle_array_t) + (count * sizeof(object_handle_t));
*ha = alloc_app_struct(size, NULL);
if (*ha != NULL) {
list_element_t iter;
void * thing;
LIST_FOR_EACH(list, iter, thing) {
make_handle_entry(thing, *ha);
}
} else {
rc = ENOMEM;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Get a list of handles for plug-ins, optionally filtering by plug-in type.
*/
int evms_get_plugin_list(evms_plugin_code_t type,
plugin_search_flags_t flags,
handle_array_t * * plugin_handle_list) {
int rc = 0;
list_anchor_t plugins;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_get_plugin_list(type, flags, plugin_handle_list);
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (plugin_handle_list != NULL) {
rc = engine_get_plugin_list(type, flags, &plugins);
if (rc == 0) {
rc = make_user_handle_array(plugins, plugin_handle_list);
destroy_list(plugins);
}
} else {
LOG_DEBUG("User specified NULL pointer for plugin_handle_list. There is nowhere to put the results.\n");
rc = EINVAL;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Get the handle for a plug-in with a given ID.
*/
int evms_get_plugin_by_ID(plugin_id_t plugin_ID,
plugin_handle_t * plugin_handle) {
int rc = 0;
plugin_record_t * pPlugRec;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_get_plugin_by_ID(plugin_ID, plugin_handle);
LOG_PROC_EXIT_INT(rc);
return rc;
}
rc = engine_get_plugin_by_ID(plugin_ID, &pPlugRec);
if (rc == 0) {
rc = ensure_app_handle(pPlugRec);
if (rc == 0) {
*plugin_handle = pPlugRec->app_handle;
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Get the handle for a plug-in with a given short name.
*/
int evms_get_plugin_by_name(char * plugin_name,
plugin_handle_t * plugin_handle) {
int rc = 0;
plugin_record_t * pPlugRec;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_get_plugin_by_name(plugin_name, plugin_handle);
LOG_PROC_EXIT_INT(rc);
return rc;
}
rc = engine_get_plugin_by_name(plugin_name, &pPlugRec);
if (rc == 0) {
rc = ensure_app_handle(pPlugRec);
if (rc == 0) {
*plugin_handle = pPlugRec->app_handle;
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/********************************************/
/* Functions for updating the dev node tree */
/********************************************/
/*
* Make a directory in the EVMS dev node tree.
* This function is a utility function for make_evms_dev_node() below.
*/
int make_directory(char * dir_name, mode_t mode) {
int rc = 0;
int status;
char name_buf[EVMS_VOLUME_NAME_SIZE + 1];
char * tmp_ptr = name_buf;
struct stat statbuf;
LOG_PROC_ENTRY();
/* See if this directory exists */
status = stat(dir_name, &statbuf);
if (status != 0) {
if (errno == ENOENT) {
/* This directory doesn't exist. */
strcpy(name_buf, dir_name);
/* Strip of any trailing '/'. */
if (name_buf[strlen(name_buf) - 1] == '/') {
name_buf[strlen(name_buf) - 1] = '\0';
}
/* Find the parent directory of this one. */
tmp_ptr = strrchr(name_buf, '/');
if ((tmp_ptr != NULL) && (tmp_ptr != name_buf)) {
/*
* This directory has a parent directory.
* Peel off the directory name and call myself
* recursively to make the parent directory.
*/
*tmp_ptr = 0;
rc = make_directory(name_buf, mode);
}
if (rc == 0) {
LOG_DEBUG("Make directory \"%s\".\n", dir_name);
status = mkdir(dir_name, mode);
if (status != 0) {
if (errno == EEXIST) {
rc = 0;
} else {
rc = errno;
LOG_WARNING("mkdir(%s) failed with error code %d.\n", dir_name, rc);
}
}
}
} else {
rc = errno;
LOG_WARNING("stat(%s) failed with error code %d.\n", dir_name, rc);
}
} else {
/* Make sure this is a directory */
if (!(statbuf.st_mode & S_IFDIR)) {
LOG_ERROR("%s is not a directory.\n", dir_name);
rc = EINVAL;
} else {
LOG_DEBUG("Directory %s already exists.\n", dir_name);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
int evms_update_evms_dev_tree(void) {
int rc = 0;
LOG_PROC_ENTRY();
if (!local_focus) {
LOG_PROC_EXIT_INT(ENOSYS);
return ENOSYS;
}
/* Opening the Engine updates the /dev/evms tree. */
rc = evms_open_engine(NULL, ENGINE_READONLY, NULL, DEFAULT, NULL);
if (rc == 0) {
evms_close_engine();
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
const char * evms_strerror(int err_num) {
unsigned int err = abs(err_num);
if (err <= EMEDIUMTYPE) {
return strerror(err_num);
}
if (IS_HANDLE_MANAGER_ERROR(err)) {
return handlemgr_strerror(err);
}
if (err == E_CANCELED) {
return "Operation canceled";
}
if (err == E_NOLOAD) {
return "Plug-in did not want to load";
}
return "Unknown error code";
}
static int backup_fh(char * parent_name,
storage_object_t * child) {
int rc = 0;
LOG_PROC_ENTRY();
feature_header_cpu_to_disk(child->feature_header);
child->feature_header->crc = 0;
child->feature_header->crc = CPU_TO_DISK32(evms_calculate_crc(EVMS_INITIAL_CRC,
child->feature_header,
sizeof(evms_feature_header_t)));
rc = engine_save_metadata(parent_name,
child->name,
child->size - (EVMS_FEATURE_HEADER_SECTORS * 2),
EVMS_FEATURE_HEADER_SECTORS,
child->feature_header);
if (rc == 0) {
rc = engine_save_metadata(parent_name,
child->name,
child->size - EVMS_FEATURE_HEADER_SECTORS,
EVMS_FEATURE_HEADER_SECTORS,
child->feature_header);
}
if (rc != 0) {
LOG_SERIOUS("Error backing up feature header for %s. Error code is %d: %s\n",
parent_name, rc, evms_strerror(rc));
}
/* Convert the feature header back to CPU endian format. */
feature_header_disk_to_cpu(child->feature_header);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Backup the feature headers for an object. The feature headers reside on the
* object's child objects.
*/
static int backup_feature_headers(storage_object_t * obj,
char * * ancestors,
int depth) {
int rc = 0;
list_element_t iter;
storage_object_t * child;
int i;
LOG_PROC_ENTRY();
LIST_FOR_EACH(obj->child_objects, iter, child) {
if (child->feature_header != NULL) {
/* This child may have feature headers to build it. */
ancestors[depth] = obj->name;
rc = backup_feature_headers(child, ancestors, depth + 1);
if (rc == 0) {
if (obj->volume != NULL) {
rc = backup_fh(obj->volume->name, child);
}
}
for (i = 0; (rc == 0) && (i < depth); i++) {
rc = backup_fh(ancestors[i], child);
}
if (rc == 0) {
rc = backup_fh(obj->name, child);
}
if (rc != 0) {
break;
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
int evms_metadata_backup(const char * directory) {
int rc = 0;
int i;
change_record_array_t * changes;
time_t time_now;
struct tm * tm_now;
list_anchor_t object_lists[] = {&disks_list,
&segments_list,
®ions_list,
&EVMS_objects_list,
NULL};
list_element_t iter;
storage_object_t * obj;
storage_container_t * con;
logical_volume_t * vol;
list_anchor_t top_objects;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_metadata_backup(directory);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Make sure nothing is dirty. We can't do a backup of a system
* that is currently being configured. All changes must be on disk.
* Needing activation/deactivation is OK since it doesn't involve
* writing metadata.
*/
if (are_changes_pending(&changes)) {
int i;
boolean nothing_dirty = TRUE;
for (i = 0; nothing_dirty && (i < changes->count); i++) {
if (changes->changes_pending[i].changes & ~(CHANGE_ACTIVATE |
CHANGE_REACTIVATE |
CHANGE_DEACTIVATE)) {
nothing_dirty = FALSE;
}
}
engine_free(changes);
if (!nothing_dirty) {
engine_user_message(NULL,NULL,
_("EVMS cannot backup metadata while changes are pending.\n"));
LOG_PROC_EXIT_INT(EPERM);
return EPERM;
}
}
/* Build the metadata database file name. */
if (directory == NULL) {
directory = DEFAULT_METADATA_DIR;
evms_get_config_string("engine.metadata_backup_dir", &directory);
}
strcpy(metadata_db_name, directory);
if (metadata_db_name[strlen(metadata_db_name) -1] != '/') {
strcat(metadata_db_name, "/");
}
rc = make_directory(metadata_db_name, (S_IFDIR | S_IRWXU |
S_IRGRP | S_IXGRP |
S_IROTH | S_IXOTH));
if (rc != 0) {
engine_user_message(NULL, NULL,
"Error creating metadata backup directory %s. Error code is %d: %s\n",
metadata_db_name, rc, evms_strerror(rc));
LOG_PROC_EXIT_INT(rc);
return rc;
}
strcat(metadata_db_name, EVMS_METADATA_FILE_NAME_PREFIX);
time_now = time(NULL);
tm_now = localtime(&time_now);
sprintf(metadata_db_name + strlen(metadata_db_name), "%04u-%02u-%02u-%02u.%02u.%02u",
tm_now->tm_year + 1900,
tm_now->tm_mon + 1,
tm_now->tm_mday,
tm_now->tm_hour,
tm_now->tm_min,
tm_now->tm_sec);
LOG_DEBUG("Metadata database file name is %s.\n", metadata_db_name);
metadata_db_fd = open(metadata_db_name, O_CREAT | O_TRUNC | O_WRONLY, 0664);
if (metadata_db_fd < 0) {
rc = errno;
engine_user_message(NULL, NULL,
"Error opening metadata backup file %s. open() returned error %d: %s\n",
metadata_db_name, rc, strerror(rc));
LOG_PROC_EXIT_INT(rc);
return rc;
}
/* Call the plug-ins for all objects and have them save their metadata. */
for (i = 0; object_lists[i] != NULL; i++) {
LIST_FOR_EACH(object_lists[i], iter, obj) {
rc = obj->plugin->functions.plugin->backup_metadata(obj);
if (rc != 0) {
if (rc == ENOSYS) {
engine_user_message(NULL, NULL,
"Warning: The %s plug-in does not support backing up metadata for object %s. "
"The metadata backup may be incomplete.\n",
obj->plugin->short_name, obj->name);
rc = 0;
} else {
engine_user_message(NULL, NULL,
_("The %s plug-in returned error %d (%s) when asked to backup the metadata for object %s.\n"),
obj->plugin->short_name, rc, evms_strerror(rc), obj->name);
goto error_out;
}
}
}
}
/*
* Call the plug-ins for all containers and have them save their
* metadata.
*/
LIST_FOR_EACH(&containers_list, iter, con) {
rc = con->plugin->container_functions->backup_container_metadata(con);
if (rc != 0) {
if (rc == ENOSYS) {
LOG_WARNING("The %s plug-in does not support backing up metadata for container %s.\n",
con->plugin->short_name, con->name);
rc = 0;
} else {
engine_user_message(NULL, NULL,
_("The %s plug-in returned error %d (%s) when asked to backup the metadata for container %s.\n"),
con->plugin->short_name, rc, evms_strerror(rc), con->name);
goto error_out;
}
}
}
/*
* Save dummy entries for the parents of top objects.
* They need an entry in the metadata database in order to save
* the stop data that is put on the object.
*/
rc = engine_get_object_list(DISK | SEGMENT | REGION | EVMS_OBJECT,
DATA_TYPE,
NULL,
NULL,
TOPMOST,
&top_objects);
if (rc != 0) {
LOG_SERIOUS("Error getting a list of top objects. Return code is %d: %s\n",
rc, evms_strerror(rc));
goto error_out;
}
if (stop_data.crc == 0) {
feature_header_cpu_to_disk(&stop_data);
stop_data.crc = CPU_TO_DISK32(evms_calculate_crc(EVMS_INITIAL_CRC, &stop_data, sizeof(evms_feature_header_t)));
}
LIST_FOR_EACH(top_objects, iter, obj) {
if (obj->object_type == EVMS_OBJECT) {
char * ancestors[8];
rc = backup_feature_headers(obj, ancestors, 0);
if (rc != 0) {
goto error_out;
}
} else {
rc = engine_save_metadata(NULL,
obj->name,
obj->size - (EVMS_FEATURE_HEADER_SECTORS * 2),
EVMS_FEATURE_HEADER_SECTORS,
&stop_data);
if (rc != 0) {
goto error_out;
}
rc = engine_save_metadata(NULL,
obj->name,
obj->size - EVMS_FEATURE_HEADER_SECTORS,
EVMS_FEATURE_HEADER_SECTORS,
&stop_data);
if (rc != 0) {
goto error_out;
}
}
}
destroy_list(top_objects);
top_objects = NULL;
LIST_FOR_EACH(&volumes_list, iter, vol) {
if (vol->flags & VOLFLAG_HAS_OWN_DEVICE) {
/*
* Entries for EVMS volumes that have their own
* device contain the feature headers that go on
* the object.
*/
rc = backup_fh(vol->name, get_working_top_object(vol->object));
} else {
rc = engine_save_metadata(vol->name,
vol->object->name,
0,
0,
NULL);
if ((rc == 0) && !(vol->flags & VOLFLAG_COMPATIBILITY)){
char * ancestors[8];
rc = backup_feature_headers(vol->object, ancestors, 0);
}
}
if (rc != 0) {
break;
}
/*
* Save a dummy entry for a "parent" of the volume.
* The dummy parent is used for terminating a parent walk up the
* stack. It is also used as a starting point for a recursive
* "restore all children" walk down the stack.
*/
rc = engine_save_metadata(NULL,
vol->name,
0,
0,
NULL);
if (rc != 0){
break;
}
}
error_out:
close(metadata_db_fd);
metadata_db_fd = 0;
if (rc != 0) {
unlink(metadata_db_name);
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
int evms_engine_read(object_handle_t handle,
lsn_t lsn,
sector_count_t length,
void * buffer) {
int rc = 0;
object_type_t type;
storage_object_t * obj;
LOG_PROC_ENTRY();
rc = check_engine_read_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_engine_read(handle, lsn, length, buffer);
LOG_PROC_EXIT_INT(rc);
return rc;
}
rc = translate_handle(handle, &obj, &type);
if (rc == 0) {
switch (type) {
case DISK:
case SEGMENT:
case REGION:
case EVMS_OBJECT:
rc = obj->plugin->functions.plugin->read(obj, lsn, length, buffer);
break;
case CONTAINER:
LOG_ERROR("Cannot read from container %s.\n", ((storage_container_t *) obj)->name);
rc = EINVAL;
break;
case VOLUME:
LOG_ERROR("Cannot read from container %s.\n", ((logical_volume_t *) obj)->name);
rc = EINVAL;
break;
default:
LOG_ERROR("I don't know how to read from a thing of type %d (%#x).\n", type, type);
rc = EINVAL;
break;
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
int evms_engine_write(object_handle_t handle,
lsn_t lsn,
sector_count_t length,
void * buffer) {
int rc = 0;
object_type_t type;
storage_object_t * obj;
LOG_PROC_ENTRY();
rc = check_engine_write_access();
if (rc != 0) {
LOG_PROC_EXIT_INT(rc);
return rc;
}
if (!local_focus) {
rc = remote_engine_write(handle, lsn, length, buffer);
LOG_PROC_EXIT_INT(rc);
return rc;
}
rc = translate_handle(handle, &obj, &type);
if (rc == 0) {
switch (type) {
case DISK:
case SEGMENT:
case REGION:
case EVMS_OBJECT:
rc = obj->plugin->functions.plugin->write(obj, lsn, length, buffer);
break;
case CONTAINER:
LOG_ERROR("Cannot write to container %s.\n", ((storage_container_t *) obj)->name);
rc = EINVAL;
break;
case VOLUME:
LOG_ERROR("Cannot write to container %s.\n", ((logical_volume_t *) obj)->name);
rc = EINVAL;
break;
default:
LOG_ERROR("I don't know how to write to a thing of type %d (%#x).\n", type, type);
rc = EINVAL;
break;
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
|