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
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Portions of this software are Copyright (c) 2011 Univa Corporation
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "uti/sge_rmon.h"
#include "uti/sge_time.h"
#include "uti/sge_profiling.h"
#include "uti/sge_spool.h"
#include "uti/sge_thread_ctrl.h"
#include "uti/sge_log.h"
#include "uti/sge_prog.h"
#include "uti/sge_hostname.h"
#include "uti/sge_mtutil.h"
#include "uti/sge_lock.h"
#include "cull/cull.h"
#include "comm/lists/cl_thread.h"
#include "comm/lists/cl_errors.h"
#include "comm/cl_commlib.h"
#include "gdi/sge_gdi_ctx.h"
#include "gdi/sge_gdi2.h"
#include "sgeobj/sge_feature.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_event.h"
#include "sgeobj/sge_all_listsL.h"
#include "sgeobj/sge_conf.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_ckpt.h"
#include "sgeobj/sge_pe.h"
#include "sgeobj/sge_userprj.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_userset.h"
#include "sgeobj/sge_manop.h"
#include "sgeobj/sge_calendar.h"
#include "sgeobj/sge_sharetree.h"
#include "sgeobj/sge_hgroup.h"
#include "sgeobj/sge_cuser.h"
#include "sgeobj/sge_centry.h"
#include "sgeobj/sge_cqueue.h"
#include "sgeobj/sge_object.h"
#include "sgeobj/sge_range.h"
#include "sgeobj/sge_schedd_conf.h"
#include "sgeobj/sge_event_request_EVR_L.h"
#include "sgeobj/msg_sgeobjlib.h"
#include "configuration_qmaster.h" /* TODO: bad dependency!! */
#include "sge_event_master.h"
#include "sge.h"
#include "msg_common.h"
#include "msg_evmlib.h"
#include "msg_qmaster.h"
/*
***** transaction handling implementation ************
*
* Well, one cannot really call the transaction implementation
* transaction handling. First of all, there is no role
* back. Second, there is only one transaction in the
* whole system, one no way to distinguish between the
* events added by the thread, which opend the transaction,
* and other threads just adding events.
*
* We need the current implementation for the scheduler
* protocol. All gdi requets have to be atomic from the
* scheduler point of view. Therefore we have a second
* (the transaction) list to add events, and put them
* into the send queue, when the gdi request has been
* handled.
*
* Important variables:
* pthread_mutex_t transaction_mutex;
* lList *transaction_events;
* pthread_mutex_t t_add_event_mutex;
* bool is_transaction;
*
* related methods:
* sge_set_commit_required()
* sge_commit()
*
******************************************************
*/
/*
***** subscription_t definition **********************
*
* This is a subscription entry in a two dimensional
* definition. The first dimension is for the event
* clients and changes when the event client subscription
* changes. The second dimension is of fixed size and
* contains one element for each posible event.
*
******************************************************
*/
typedef struct {
bool subscription; /* true -> the event is subscribed */
bool blocked; /* true -> no events will be accepted before */
/* the total update is issued */
bool flush; /* true -> flush is set */
u_long32 flush_time; /* seconds how much the event can be delayed */
lCondition *where; /* where filter */
lDescr *descr; /* target list descriptor */
lEnumeration *what; /* limits the target element */
} subscription_t;
/****** Eventclient/Server/-Event_Client_Server_Defines ************************
* NAME
* Defines -- Constants used in the module
*
* SYNOPSIS
* #define EVENT_DELIVERY_INTERVAL_S 1
* #define EVENT_DELIVERY_INTERVAL_N 0
* #define EVENT_ACK_MIN_TIMEOUT 600
* #define EVENT_ACK_MAX_TIMEOUT 1200
*
* FUNCTION
* EVENT_DELIVERY_INTERVAL_S is the event delivery interval. It is set in seconds.
* EVENT_DELIVERY_INTERVAL_N same thing but in nano seconds.
*
* EVENT_ACK_MIN/MAX_TIMEOUT is the minimum/maximum timeout value for an event
* client sending the acknowledge for the delivery of events.
* The real timeout value depends on the event delivery interval for the
* event client (10 * event delivery interval).
*******************************************************************************/
#define EVENT_DELIVERY_INTERVAL_S 1
#define EVENT_DELIVERY_INTERVAL_N 0
#define EVENT_ACK_MIN_TIMEOUT 600
#define EVENT_ACK_MAX_TIMEOUT 1200
/*
*******************************************************************
*
* The next three array are important for lists, which can be
* subscribed by the event client and which contain a sub-list
* that can be subscribed by itself again (such as the: job list
* with the JAT_Task sub list, or the cluster queue list with the
* queue instances sub-list)
* All lists, which follow the same structure have to be defined
* in the special construct.
*
* EVENT_LIST:
* Contains all events for the main list, which delivers also
* the sub-list.
*
* FIELD_LIST:
* Contains all attributes in the main list, which contain the
* sub-list in question.
*
* SOURCE_LIST:
* Contains the sub-scription events for the sub-list, which also
* contains the filter for the sub-list.
*
*
* This construct and its functions are limited to one sub-scribable
* sub-list per main list. If multiple sub-lists can be subsribed, the
* construct has to be extended.
*
* ISSUES:
* 1416: the sgeE_PETASK_* list events are not handled correctly during
* total update. It works fine with all other events. The problem
* is, that an update of the jobs filters for job and ja_task, but
* not for PE tasks.
*
* SEE ALSO:
* evm/sge_event_master/list_select()
* evm/sge_event_master/elem_select()
* and
* evm/sge_event_master/add_list_event
* evm/sge_event_master/add_event
*
********************************************************************
*/
#define LIST_MAX 3
const int EVENT_LIST[LIST_MAX][6] = {
{sgeE_JOB_LIST, sgeE_JOB_ADD, sgeE_JOB_DEL, sgeE_JOB_MOD, sgeE_JOB_MOD_SCHED_PRIORITY, -1},
{sgeE_CQUEUE_LIST, sgeE_CQUEUE_ADD, sgeE_CQUEUE_DEL, sgeE_CQUEUE_MOD, -1, -1},
{sgeE_JATASK_ADD, sgeE_JATASK_DEL, sgeE_JATASK_MOD, -1, -1, -1 }
};
const int FIELD_LIST[LIST_MAX][3] = {
{JB_ja_tasks, JB_ja_template, -1},
{CQ_qinstances, -1, -1},
{JAT_task_list, -1, -1}
};
const int SOURCE_LIST[LIST_MAX][3] = {
{sgeE_JATASK_MOD, sgeE_JATASK_ADD, -1},
{sgeE_QINSTANCE_ADD, sgeE_QINSTANCE_MOD, -1},
{sgeE_PETASK_ADD, -1, -1}
};
/*
*****************************************************
*
* The next two array are needed for blocking events
* for a given client, when a total update is pending
* for it.
*
* The total_update_events array defines all list events,
* which are used during a total update.
*
* The block_events contain all events, which are blocked
* during a total update.
*
* SEE ALSO:
* blockEvents
* total_update
* add_list_event_direct
*****************************************************
*/
#ifndef __SGE_NO_USERMAPPING__
#define total_update_eventsMAX 22
#else
#define total_update_eventsMAX 21
#endif
const int total_update_events[total_update_eventsMAX + 1] = {sgeE_ADMINHOST_LIST,
sgeE_CALENDAR_LIST,
sgeE_CKPT_LIST,
sgeE_CENTRY_LIST,
sgeE_CONFIG_LIST,
sgeE_EXECHOST_LIST,
sgeE_JOB_LIST,
sgeE_JOB_SCHEDD_INFO_LIST,
sgeE_MANAGER_LIST,
sgeE_OPERATOR_LIST,
sgeE_PE_LIST,
sgeE_CQUEUE_LIST,
sgeE_SCHED_CONF,
sgeE_SUBMITHOST_LIST,
sgeE_USERSET_LIST,
sgeE_NEW_SHARETREE,
sgeE_PROJECT_LIST,
sgeE_USER_LIST,
sgeE_HGROUP_LIST,
sgeE_RQS_LIST,
sgeE_AR_LIST,
#ifndef __SGE_NO_USERMAPPING__
sgeE_CUSER_LIST,
#endif
-1};
const int block_events[total_update_eventsMAX][9] = {
{sgeE_ADMINHOST_ADD, sgeE_ADMINHOST_DEL, sgeE_ADMINHOST_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_CALENDAR_ADD, sgeE_CALENDAR_DEL, sgeE_CALENDAR_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_CKPT_ADD, sgeE_CKPT_DEL, sgeE_CKPT_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_CENTRY_ADD, sgeE_CENTRY_DEL, sgeE_CENTRY_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_CONFIG_ADD, sgeE_CONFIG_DEL, sgeE_CONFIG_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_EXECHOST_ADD, sgeE_EXECHOST_DEL, sgeE_EXECHOST_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_JOB_ADD, sgeE_JOB_DEL, sgeE_JOB_MOD, sgeE_JOB_MOD_SCHED_PRIORITY, sgeE_JOB_USAGE, sgeE_JOB_FINAL_USAGE, sgeE_JOB_FINISH, -1, -1},
{sgeE_JOB_SCHEDD_INFO_ADD, sgeE_JOB_SCHEDD_INFO_DEL, sgeE_JOB_SCHEDD_INFO_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_MANAGER_ADD, sgeE_MANAGER_DEL, sgeE_MANAGER_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_OPERATOR_ADD, sgeE_OPERATOR_DEL, sgeE_OPERATOR_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_PE_ADD, sgeE_PE_DEL, sgeE_PE_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_CQUEUE_ADD, sgeE_CQUEUE_DEL, sgeE_CQUEUE_MOD, sgeE_QINSTANCE_ADD, sgeE_QINSTANCE_DEL, sgeE_QINSTANCE_MOD, sgeE_QINSTANCE_SOS, sgeE_QINSTANCE_USOS, -1},
{-1, -1, -1, -1, -1, -1, -1, -1},
{sgeE_SUBMITHOST_ADD, sgeE_SUBMITHOST_DEL, sgeE_SUBMITHOST_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_USERSET_ADD, sgeE_USERSET_DEL, sgeE_USERSET_MOD, -1, -1, -1, -1, -1, -1},
{-1, -1, -1, -1, -1, -1, -1, -1},
{sgeE_PROJECT_ADD, sgeE_PROJECT_DEL, sgeE_PROJECT_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_USER_ADD, sgeE_USER_DEL, sgeE_USER_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_HGROUP_ADD, sgeE_HGROUP_DEL, sgeE_HGROUP_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_RQS_ADD, sgeE_RQS_DEL, sgeE_RQS_MOD, -1, -1, -1, -1, -1, -1},
{sgeE_AR_ADD, sgeE_AR_DEL, sgeE_AR_MOD, -1, -1, -1, -1, -1, -1}
#ifndef __SGE_NO_USERMAPPING__
,{sgeE_CUSER_ADD, sgeE_CUSER_DEL, sgeE_CUSER_MOD, -1, -1, -1, -1, -1, -1}
#endif
};
/*
*******************************************************************
*
* Some events have to be delivered even so they have no data left
* after filtering for them. These are for example all update list
* events.
* The ensure, that is is done as fast as posible, we define an
* array of the size of the number of events, we have a init function
* which sets the events which will be updated. To add a new event
* one has only to update that function.
* Events which do not contain any data are not affected. They are
* always delivered.
*
* SEE ALSO:
* - Array:
* SEND_EVENTS
*
* - Init function:
* evm/sge_event_master/sge_init_send_events()
*
******************************************************************
*/
static bool SEND_EVENTS[sgeE_EVENTSIZE];
event_master_control_t Event_Master_Control = {
PTHREAD_MUTEX_INITIALIZER, /* mutex */
PTHREAD_COND_INITIALIZER, /* cond_var */
PTHREAD_MUTEX_INITIALIZER, /* cond_mutex */
false, /* delivery_signaled */
0, /* max_event_clients */
false, /* is_prepare_shutdown */
NULL, /* clients */
NULL, /* client_ids */
NULL, /* requests */
PTHREAD_MUTEX_INITIALIZER, /* request_mutex */
0 /* transaction_key */
};
static void init_send_events(void);
static void flush_events(lListElem*, int);
static void total_update(lListElem*, monitoring_t *monitor);
static void build_subscription(lListElem*);
static void remove_event_client(lListElem **client, int event_client_id, bool lock_event_master);
static void check_send_new_subscribed_list(const subscription_t*,
const subscription_t*, lListElem*,
ev_event event, object_description *master_table);
static int eventclient_subscribed(const lListElem *, ev_event, const char*);
static int purge_event_list(lList* aList, u_long32 event_number);
static lListElem* sge_create_event(u_long32, u_long32, u_long32, ev_event, u_long32, u_long32, const char*, const char*, const char*, lList*);
static bool add_list_event_for_client(u_long32, u_long32, ev_event, u_long32, u_long32, const char*, const char*, const char*, lList*);
static void add_list_event_direct(lListElem *event_client, lListElem *event, bool copy_event);
static void total_update_event(lListElem*, ev_event, object_description *master_table, bool new_subscription);
static bool list_select(subscription_t*, int, lList**, lList*, const lCondition*, const lEnumeration*, const lDescr*, bool);
static lListElem* elem_select(subscription_t*, lListElem*, const int[], const lCondition*, const lEnumeration*, const lDescr*, int);
static lListElem* eventclient_list_locate_by_adress(const char*, const char*, u_long32);
static const lDescr* getDescriptorL(subscription_t*, const lList*, int);
static lListElem* get_event_client(u_long32 id);
static u_long32 allocate_new_dynamic_id(lList **answer_list);
static void free_dynamic_id(lList **answer_list, u_long32 id);
static void set_flush(void);
static void blockEvents(lListElem *event_client, ev_event ev_type, bool isBlock);
static void
sge_event_master_destroy_transaction_store(void *transaction_store)
{
event_master_transaction_t *t_store = (event_master_transaction_t *)transaction_store;
lFreeList(&(t_store->transaction_requests));
}
static void
sge_event_master_init_transaction_store(event_master_transaction_t *t_store)
{
t_store->is_transaction = false;
t_store->transaction_requests = lCreateListHash("Event Master Requests", EVR_Type, false);
}
/****** Eventclient/Server/sge_add_event_client() ******************************
* NAME
* sge_add_event_client() -- register a new event client
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* int
* sge_add_event_client(lListElem *clio, lList **alpp, lList **eclpp,
* char *ruser, char *rhost)
*
* FUNCTION
* Registeres a new event client.
* If it requested a dynamic id, a new id is created and assigned.
* If it is a special client(with fixed id) and an event client
* with this id already exists, the old instance is deleted and the
* new one registered.
* If the registration succeeds, the event client is sent all data
* (sgeE*_LIST events) according to its subscription.
*
* INPUTS
* lListElem *clio - the event client object used as registration data
* lList **alpp - answer list pointer for answer to event client
* lList **eclpp - list pointer to return new event client object
* char *ruser - user that tries to register an event client
* char *rhost - host on which the event client runs
* event_client_update_func_t update_func - for internal event clients
* monitoring_t monitor - monitoring handle
*
* RESULT
* int - AN_status value. STATUS_OK on success, else error code
*
* NOTES
* MT-NOTE: sge_add_event_client() is MT safe, it uses the global lock and
* internal ones.
*
*******************************************************************************/
static void sge_event_master_process_add_event_client(lListElem *request, monitoring_t *monitor)
{
/* to be implemented later on - handling the internal event clients could become a little bit tricky */
}
int sge_add_event_client(lListElem *clio, lList **alpp, lList **eclpp, char *ruser,
char *rhost, event_client_update_func_t update_func, monitoring_t *monitor)
{
lListElem *ep = NULL;
u_long32 now;
u_long32 id;
u_long32 ed_time;
const char *name;
const char *host;
const char *commproc;
u_long32 commproc_id;
DENTER(TOP_LAYER, "sge_add_event_client");
id = lGetUlong(clio, EV_id);
name = lGetString(clio, EV_name);
ed_time = lGetUlong(clio, EV_d_time);
host = lGetHost(clio, EV_host);
commproc = lGetString(clio, EV_commproc);
commproc_id = lGetUlong(clio, EV_commid);
/* an event client must have a name */
if (name == NULL) {
name = "unnamed";
lSetString(clio, EV_name, name);
}
/* check event client object structure */
if (lCompListDescr(lGetElemDescr(clio), EV_Type) != 0) {
ERROR((SGE_EVENT, SFNMAX, MSG_EVE_INCOMPLETEEVENTCLIENT));
answer_list_add(alpp, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DRETURN(STATUS_DENIED);
}
/* EV_ID_ANY is 0, therefore the compare is always true (Irix complained) */
if (id >= EV_ID_FIRST_DYNAMIC) { /* invalid request */
ERROR((SGE_EVENT, MSG_EVE_ILLEGALIDREGISTERED_U, sge_u32c(id)));
answer_list_add(alpp, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DRETURN(STATUS_ESEMANTIC);
}
if (lGetBool(clio, EV_changed) && lGetList(clio, EV_subscribed) == NULL) {
ERROR((SGE_EVENT, SFNMAX, MSG_EVE_INVALIDSUBSCRIPTION));
answer_list_add(alpp, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DRETURN(STATUS_ESEMANTIC);
}
/* Acquire the event master mutex - we access the event client list */
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
if (Event_Master_Control.is_prepare_shutdown) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
ERROR((SGE_EVENT, SFNMAX, MSG_EVE_QMASTERISGOINGDOWN));
answer_list_add(alpp, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DRETURN(STATUS_ESEMANTIC);
}
if (id == EV_ID_ANY) { /* qmaster shall give id dynamically */
/* Try to find an event client with the very same commd
address triplet. If it exists the "new" event client must
be the result of a reconnect after a timeout that happend at
client side. We delete the old event client. */
ep = eventclient_list_locate_by_adress(host, commproc, commproc_id);
if (ep != NULL) {
ERROR((SGE_EVENT, MSG_EVE_CLIENTREREGISTERED_SSSU, name, host,
commproc, sge_u32c(commproc_id)));
/* delete old event client entry, and we already hold the lock! */
remove_event_client(&ep, id, false);
}
/* Otherwise, get a new dynamic event client id */
id = allocate_new_dynamic_id(alpp);
if (id == 0) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(STATUS_ESEMANTIC);
}
INFO((SGE_EVENT, MSG_EVE_REG_SUU, name, sge_u32c(id), sge_u32c(ed_time)));
/* Set the new id for this client. */
lSetUlong(clio, EV_id, id);
}
/* special event clients: we allow only one instance */
/* if it already exists, delete the old one and register the new one */
if (id > EV_ID_ANY && id < EV_ID_FIRST_DYNAMIC) {
/*
** we allow addition of a priviledged event client
** for internal clients (==> update_func != NULL)
** and manager/operator
*/
if (update_func == NULL && !manop_is_manager(ruser)) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
ERROR((SGE_EVENT, SFNMAX, MSG_WRONG_USER_FORFIXEDID));
answer_list_add(alpp, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
DRETURN(STATUS_ESEMANTIC);
}
if ((ep = get_event_client(id)) != NULL) {
/* we already have this special client */
ERROR((SGE_EVENT, MSG_EVE_CLIENTREREGISTERED_SSSU, name, host,
commproc, sge_u32c(commproc_id)));
/* delete old event client entry, and we already have the mutex! */
remove_event_client(&ep, id, false);
} else {
INFO((SGE_EVENT, MSG_EVE_REG_SUU, name, sge_u32c(id), sge_u32c(ed_time)));
}
}
ep = lCopyElem(clio);
lSetRef(ep, EV_update_function, (void*) update_func);
lSetBool(clio, EV_changed, false);
lAppendElem(Event_Master_Control.clients, ep);
lSetUlong(ep, EV_next_number, 1);
/* register this contact */
now = sge_get_gmt();
lSetUlong(ep, EV_last_send_time, 0);
lSetUlong(ep, EV_next_send_time, now + lGetUlong(ep, EV_d_time));
lSetUlong(ep, EV_last_heard_from, now);
lSetUlong(ep, EV_state, EV_connected);
/* return new event client object to internal event client */
if (eclpp != NULL) {
lListElem *ret_el = lCopyElem(ep);
if (*eclpp == NULL) {
*eclpp = lCreateListHash("new event client", EV_Type, true);
}
lSetBool(ret_el, EV_changed, false);
lAppendElem(*eclpp, ret_el);
}
/* Start with no pending events. */
build_subscription(ep);
/* build events for total update */
total_update(ep, monitor);
/* flush initial list events */
flush_events(ep, 0);
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
INFO((SGE_EVENT, MSG_SGETEXT_ADDEDTOLIST_SSSS,
ruser, rhost, name, MSG_EVE_EVENTCLIENT));
answer_list_add(alpp, SGE_EVENT, STATUS_OK, ANSWER_QUALITY_INFO);
DRETURN(STATUS_OK);
} /* sge_event_master_process_add_event_client() */
/****** Eventclient/Server/sge_mod_event_client() ******************************
* NAME
* sge_mod_event_client() -- modify event client
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* int
* sge_mod_event_client(lListElem *clio, lList **alpp, lList **eclpp,
* char *ruser, char *rhost)
*
* FUNCTION
* An event client object is modified.
* It is possible to modify the event delivery time and
* the subscription.
* If the subscription is changed, and new sgeE*_LIST events are subscribed,
* these lists are sent to the event client.
*
* INPUTS
* lListElem *clio - object containing the data to change
* lList **alpp - answer list pointer
* char *ruser - user that triggered the modify action
* char *rhost - host that triggered the modify action
*
* RESULT
* int - AN_status code. STATUS_OK on success, else error code
*
* NOTES
* MT-NOTE: sge_mod_event_client() is MT safe, uses internal locks
*
* SEE ALSO
* evm_mod_func_t
*
*******************************************************************************/
int
sge_mod_event_client(lListElem *clio, lList **alpp, char *ruser, char *rhost)
{
lListElem *evr = NULL;
DENTER(TOP_LAYER,"sge_mod_event_client");
if (clio == NULL) {
ERROR((SGE_EVENT, "NULL element passed to sge_mod_event_client"));
abort();
DRETURN(STATUS_ESEMANTIC);
}
evr = lCreateElem(EVR_Type);
lSetUlong(evr, EVR_operation, EVR_MOD_EVC);
lSetUlong(evr, EVR_timestamp, sge_get_gmt());
lSetObject(evr, EVR_event_client, lCopyElem(clio));
sge_mutex_lock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
lAppendElem(Event_Master_Control.requests, evr);
sge_mutex_unlock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
DEBUG((SGE_EVENT, MSG_SGETEXT_MODIFIEDINLIST_SSSS,
ruser, rhost, lGetString(clio, EV_name), MSG_EVE_EVENTCLIENT));
answer_list_add(alpp, SGE_EVENT, STATUS_OK, ANSWER_QUALITY_INFO);
set_flush();
DRETURN(STATUS_OK);
}
/****** Eventclient/Server/sge_event_master_process_mod_event_client() ********
* NAME
* sge_mod_event_client() -- modify event client
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* int
* sge_event_master_process_mod_event_client(lListElem *clio, lList **alpp,
* lList **eclpp, char *ruser,
* char *rhost)
*
* FUNCTION
* An event client object is modified.
* It is possible to modify the event delivery time and
* the subscription.
* If the subscription is changed, and new sgeE*_LIST events are subscribed,
* these lists are sent to the event client.
*
* INPUTS
* lListElem *clio - object containing the data to change
* lList **alpp - answer list pointer
* char *ruser - user that triggered the modify action
* char *rhost - host that triggered the modify action
*
* RESULT
* int - AN_status code. STATUS_OK on success, else error code
*
* NOTES
* MT-NOTE: sge_mod_event_client() is NOT MT safe.
*
*******************************************************************************/
void
sge_event_master_process_mod_event_client(lListElem *request, monitoring_t *monitor)
{
lListElem *event_client = NULL;
u_long32 id;
u_long32 busy;
u_long32 busy_handling;
u_long32 ev_d_time;
lListElem *clio = NULL;
cl_thread_settings_t *thread_config = NULL;
DENTER(TOP_LAYER, "sge_event_master_process_mod_event_client");
MONITOR_WAIT_TIME(SGE_LOCK(LOCK_GLOBAL, LOCK_READ), monitor);
clio = lGetObject(request, EVR_event_client);
/* try to find event_client */
id = lGetUlong(clio, EV_id);
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
event_client = get_event_client(id);
if (event_client == NULL) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
SGE_UNLOCK(LOCK_GLOBAL, LOCK_READ);
ERROR((SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(id), "modify"));
DRETURN_VOID;
}
/* these parameters can be changed */
busy = lGetUlong(clio, EV_busy);
ev_d_time = lGetUlong(clio, EV_d_time);
busy_handling = lGetUlong(clio, EV_busy_handling);
/* check for validity */
if (ev_d_time < 1) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
SGE_UNLOCK(LOCK_GLOBAL, LOCK_READ);
ERROR((SGE_EVENT, MSG_EVE_INVALIDINTERVAL_U, sge_u32c(ev_d_time)));
DRETURN_VOID;
}
if (lGetBool(clio, EV_changed) && lGetList(clio, EV_subscribed) == NULL) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
SGE_UNLOCK(LOCK_GLOBAL, LOCK_READ);
ERROR((SGE_EVENT, SFNMAX, MSG_EVE_INVALIDSUBSCRIPTION));
DRETURN_VOID;
}
/* event delivery interval changed.
* We have to update the next delivery time to
* next_delivery_time - old_interval + new_interval
*/
if (ev_d_time != lGetUlong(event_client, EV_d_time)) {
lSetUlong(event_client, EV_next_send_time,
lGetUlong(event_client, EV_next_send_time) -
lGetUlong(event_client, EV_d_time) + ev_d_time);
lSetUlong(event_client, EV_d_time, ev_d_time);
}
/* subscription changed */
if (lGetBool(clio, EV_changed)) {
subscription_t *new_sub = NULL;
subscription_t *old_sub = NULL;
object_description *master_table = object_type_get_object_description();
build_subscription(clio);
new_sub = lGetRef(clio, EV_sub_array);
old_sub = lGetRef(event_client, EV_sub_array);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_ADMINHOST_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CALENDAR_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CKPT_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CENTRY_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CONFIG_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_EXECHOST_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_JOB_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_JOB_SCHEDD_INFO_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_MANAGER_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_OPERATOR_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_NEW_SHARETREE, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_PE_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_PROJECT_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CQUEUE_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_SCHED_CONF, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_SUBMITHOST_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_USER_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_USERSET_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_HGROUP_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_RQS_LIST, master_table);
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_AR_LIST, master_table);
#ifndef __SGE_NO_USERMAPPING__
check_send_new_subscribed_list(old_sub, new_sub, event_client, sgeE_CUSER_LIST, master_table);
#endif
#if 0
/* JG: TODO: better use lXchgList? */
{
lList *tmp_list = NULL;
lXchgList(clio, EV_subscribed, &tmp_list);
lXchgList(event_client, EV_subscribed, &tmp_list);
lXchgList(clio, EV_subscribed, &tmp_list);
}
#else
lSetList(event_client, EV_subscribed, lCopyList("", lGetList(clio, EV_subscribed)));
#endif
lSetRef(event_client, EV_sub_array, new_sub);
lSetRef(clio, EV_sub_array, NULL);
if (old_sub) {
int i;
for (i=0; i<sgeE_EVENTSIZE; i++){
lFreeWhere(&(old_sub[i].where));
lFreeWhat(&(old_sub[i].what));
if (old_sub[i].descr){
cull_hash_free_descr(old_sub[i].descr);
sge_free(&(old_sub[i].descr));
}
}
sge_free(&old_sub);
}
}
/* busy state changed */
if (busy != lGetUlong(event_client, EV_busy)) {
lSetUlong(event_client, EV_busy, busy);
}
/* busy_handling changed */
if (busy_handling != lGetUlong(event_client, EV_busy_handling)) {
DPRINTF(("EVM: event client %s changes to "sge_u32"\n",
lGetString(event_client, EV_name),
lGetUlong(event_client, EV_busy_handling)));
lSetUlong(event_client, EV_busy_handling, busy_handling);
}
MONITOR_EDT_MOD(monitor);
thread_config = cl_thread_get_thread_config();
DEBUG((SGE_EVENT, MSG_SGETEXT_MODIFIEDINLIST_SSSS, thread_config ? thread_config->thread_name : "-NA-",
"master host", lGetString(event_client, EV_name), MSG_EVE_EVENTCLIENT));
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
SGE_UNLOCK(LOCK_GLOBAL, LOCK_READ);
DRETURN_VOID;
} /* sge_event_master_process_mod_event_client() */
/****** evm/sge_event_master/sge_remove_event_client() *************************
* NAME
* sge_remove_event_client() -- remove event client
*
* SYNOPSIS
* void sge_remove_event_client(u_long32 event_client_id)
*
* FUNCTION
* Remove event client. Fetch event client from event client list.
* Only sets status to "terminated",
* it will be removed later on in ......................
*
* INPUTS
* u_long32 event_client_id - event client id
*
* RESULT
* void - none
*
* NOTES
* MT-NOTE: sge_remove_event_client() is MT safe, uses internal locks
*
* SEE ALSO
* evm_remove_func_t
*
*******************************************************************************/
void sge_remove_event_client(u_long32 event_client_id)
{
lListElem *client;
DENTER(TOP_LAYER, "sge_remove_event_client");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DPRINTF(("sge_remove_event_client id = %d\n", (int) event_client_id));
client = get_event_client(event_client_id);
if (client == NULL) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
ERROR((SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(event_client_id), "remove"));
DRETURN_VOID;
}
lSetUlong(client, EV_state, EV_terminated);
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN_VOID;
} /* sge_remove_event_client() */
/****** sge_event_master/sge_set_max_dynamic_event_clients() *******************
* NAME
* sge_set_max_dynamic_event_clients() -- set max number of dyn. event clients
*
* SYNOPSIS
* void sge_set_max_dynamic_event_clients(u_long32 max)
*
* FUNCTION
* Sets max number of dynamic event clients. If the new value is larger than
* the maximum number of used file descriptors for communication this value
* is set to the max. number of file descriptors minus some reserved file
* descriptors. (10 for static event clients, 9 for execd, 10 for file
* descriptors used by application (to write files, etc.) ).
*
* At least one dynamic event client is allowed.
*
* INPUTS
* u_long32 max - number of dynamic event clients
*
* NOTES
* MT-NOTE: sge_set_max_dynamic_event_clients() is MT safe
*
*******************************************************************************/
u_long32 sge_set_max_dynamic_event_clients(u_long32 new_value)
{
u_long32 max = new_value;
DENTER(TOP_LAYER, "sge_set_max_dynamic_event_clients");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
/* Set the max event clients if it changed. */
if (max != Event_Master_Control.max_event_clients) {
/* check max. file descriptors of qmaster communication handle */
cl_com_handle_t *handle = cl_com_get_handle("qmaster", 1);
if (handle != NULL) {
u_long32 max_allowed_value = 0;
unsigned long max_file_handles = 0;
cl_com_get_max_connections(handle, &max_file_handles);
if (max_file_handles >= EVENT_MASTER_MIN_FREE_DESCRIPTORS) {
max_allowed_value = (u_long32)max_file_handles - EVENT_MASTER_MIN_FREE_DESCRIPTORS;
} else {
max_allowed_value = 1;
}
if (max > max_allowed_value) {
max = max_allowed_value;
WARNING((SGE_EVENT, MSG_CONF_NR_DYNAMIC_EVENT_CLIENT_EXCEEDS_MAX_FILEDESCR_U, sge_u32c(max)));
}
}
}
/* check max again - it might have changed due to commlib max_file_handles restrictions */
if (max != Event_Master_Control.max_event_clients) {
lList *answer_list = NULL;
lListElem *new_range;
lListElem *event_client;
/* If the new max is lower than the old max, then lowering the maximum
* prevents new event clients, but allows the old ones there to drain off naturally.
*/
Event_Master_Control.max_event_clients = max;
INFO((SGE_EVENT, MSG_SET_MAXDYNEVENTCLIENT_U, sge_u32c(max)));
/* we have to rebuild the event client id range list */
lFreeList(&Event_Master_Control.client_ids);
range_list_initialize(&Event_Master_Control.client_ids, &answer_list);
new_range = lCreateElem(RN_Type);
range_set_all_ids(new_range, EV_ID_FIRST_DYNAMIC, max - 1 + EV_ID_FIRST_DYNAMIC, 1);
lAppendElem(Event_Master_Control.client_ids, new_range);
/* and we have to remove the ids of our existing event clients from the range */
for_each(event_client, Event_Master_Control.clients) {
u_long32 event_client_id = lGetUlong(event_client, EV_id);
/* only for dynamic event clients */
if (event_client_id >= EV_ID_FIRST_DYNAMIC) {
/*
* the event clients id might not be in the new range,
* if the number of dynamic event clients has been reduced
*/
if (range_list_is_id_within(Event_Master_Control.client_ids, event_client_id)) {
range_list_remove_id(&Event_Master_Control.client_ids, &answer_list, event_client_id);
}
}
}
/* compress the range list to reduce fragmentation */
range_list_compress(Event_Master_Control.client_ids);
/* output any errors that might have occured */
answer_list_output(&answer_list);
} /* if */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(max);
}
/****** sge_event_master/sge_get_max_dynamic_event_clients() *******************
* NAME
* sge_get_max_dynamic_event_clients() -- get max dynamic event clients nr
*
* SYNOPSIS
* u_long32 sge_get_max_dynamic_event_clients(u_long32 max)
*
* FUNCTION
* Returns the actual value of max. dynamic event clients allowed.
*
* RESULT
* u_long32 - max value
*
* NOTES
* MT-NOTE: sge_get_max_dynamic_event_clients() is MT save
*
*******************************************************************************/
u_long32 sge_get_max_dynamic_event_clients(void)
{
u_long32 actual_value = 0;
DENTER(TOP_LAYER, "sge_get_max_dynamic_event_clients");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
actual_value = Event_Master_Control.max_event_clients;
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(actual_value);
}
/****** Eventclient/Server/sge_has_event_client() ******************************
* NAME
* sge_has_event_client() -- Is a event client registered
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* bool sge_has_event_client(u_long32 event_client_id)
*
* FUNCTION
* Searches if the event client list, if a client
* with this id is available
*
* INPUTS
* u_long32 event_client_id - id of the event client
*
* RESULT
* bool - TRUE if client is in the event client list
*
* NOTES
* MT-NOTE: sge_has_event_client() is MT safe, it uses the internal locks
*
*******************************************************************************/
bool sge_has_event_client(u_long32 event_client_id) {
bool ret;
DENTER(TOP_LAYER, "sge_has_event_client");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
ret = (get_event_client(event_client_id) != NULL) ? true : false;
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(ret);
}
/****** evm/sge_event_master/sge_select_event_clients() ************************
* NAME
* sge_select_event_clients() -- select event clients
*
* SYNOPSIS
* lList* sge_select_event_clients(const char *list_name, const lCondition
* *where, const lEnumeration *what)
*
* FUNCTION
* Select event clients.
*
* INPUTS
* const char *list_name - name of the result list returned.
* const lCondition *where - where condition
* const lEnumeration *what - what enumeration
*
* RESULT
* lList* - list with elements of type 'EV_Type'.
*
* NOTES
* MT-NOTE: sge_select_event_clients() is MT safe
* MT-NOTE:
* MT-NOTE: The elements contained in the result list are copies of the
* MT-NOTE: respective event client list elements.
*
*******************************************************************************/
lList* sge_select_event_clients(const char *list_name, const lCondition *where, const lEnumeration *what)
{
lList *lst = NULL;
DENTER(TOP_LAYER, "sge_select_event_clients");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
if (Event_Master_Control.clients != NULL) {
lst = lSelect(list_name, Event_Master_Control.clients, where, what);
}
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(lst);
} /* sge_select_event_clients() */
/****** evm/sge_event_master/sge_shutdown_event_client() ***********************
* NAME
* sge_shutdown_event_client() -- shutdown an event client
*
* SYNOPSIS
* int sge_shutdown_event_client(u_long32 event_client_id, const char* anUser,
* uid_t anUID)
*
* FUNCTION
* Shutdown an event client. Send the event client denoted by 'event_client_id'
* a shutdown event.
*
* Shutting down an event client is only permitted if 'anUser' does have
* manager privileges OR is the owner of event client 'event_client_id'.
*
* INPUTS
* u_long32 event_client_id - event client ID
* const char* anUser - user which did request this operation
* uid_t anUID - user id of request user
* lList **alpp - answer list for info and errors
*
* RESULT
* EPERM - operation not permitted
* ESRCH - client with given client id is unknown
* 0 - otherwise
*
* NOTES
* MT-NOTE: sge_shutdown_event_client() is MT safe, it uses the global lock
* and internal ones.
*
*******************************************************************************/
int sge_shutdown_event_client(u_long32 event_client_id, const char* anUser,
uid_t anUID, lList **alpp, monitoring_t *monitor)
{
lListElem *client = NULL;
int ret = 0;
DENTER(TOP_LAYER, "sge_shutdown_event_client");
if (event_client_id <= EV_ID_ANY) {
SGE_ADD_MSG_ID(sprintf(SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(event_client_id), "shutdown"));
answer_list_add(alpp, SGE_EVENT, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR);
DRETURN(EINVAL);
}
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
client = get_event_client(event_client_id);
if (client != NULL) {
if (!manop_is_manager(anUser) && (anUID != lGetUlong(client, EV_uid))) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
answer_list_add(alpp, MSG_COM_NOSHUTDOWNPERMS, STATUS_DENIED,
ANSWER_QUALITY_ERROR);
DRETURN(EPERM);
}
add_list_event_for_client(event_client_id, 0, sgeE_SHUTDOWN, 0, 0, NULL, NULL, NULL, NULL);
/* Print out a message about the event. */
if (event_client_id == EV_ID_SCHEDD) {
SGE_ADD_MSG_ID(sprintf(SGE_EVENT, SFNMAX, MSG_COM_KILLED_SCHEDULER));
} else {
SGE_ADD_MSG_ID(sprintf(SGE_EVENT, MSG_COM_SHUTDOWNNOTIFICATION_SUS,
lGetString(client, EV_name),
sge_u32c(lGetUlong(client, EV_id)),
lGetHost(client, EV_host)));
}
answer_list_add(alpp, SGE_EVENT, STATUS_OK, ANSWER_QUALITY_INFO);
} else {
SGE_ADD_MSG_ID(sprintf(SGE_EVENT,
MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(event_client_id), "shutdown"));
answer_list_add(alpp, SGE_EVENT, STATUS_ESYNTAX, ANSWER_QUALITY_ERROR);
ret = EINVAL;
}
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(ret);
} /* sge_shutdown_event_client */
/****** evm/sge_event_master/sge_shutdown_dynamic_event_clients() **************
* NAME
* sge_shutdown_dynamic_event_clients() -- shutdown all dynamic event clients
*
* SYNOPSIS
* int sge_shutdown_dynamic_event_clients(const char *anUser)
*
* FUNCTION
* Shutdown all dynamic event clients. Each dynamic event client known will
* be send a shutdown event.
*
* An event client is a dynamic event client if it's client id is greater
* than or equal to 'EV_ID_FIRST_DYNAMIC'.
*
* Shutting down all dynamic event clients is only permitted if 'anUser' does
* have manager privileges.
*
* INPUTS
* const char *anUser - user which did request this operation
* lList **alpp - answer list for info and errors
*
* RESULT
* EPERM - operation not permitted
* 0 - otherwise
*
* NOTES
* MT-NOTES: sge_shutdown_dynamic_event_clients() is MT safe, it uses the
* global_lock and internal ones.
*
*******************************************************************************/
int sge_shutdown_dynamic_event_clients(const char *anUser, lList **alpp, monitoring_t *monitor)
{
lListElem *client;
int id = 0;
DENTER(TOP_LAYER, "sge_shutdown_dynamic_event_clients");
if (!manop_is_manager(anUser)) {
answer_list_add(alpp, MSG_COM_NOSHUTDOWNPERMS, STATUS_DENIED, ANSWER_QUALITY_ERROR);
DRETURN(EPERM);
}
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
for_each (client, Event_Master_Control.clients) {
id = lGetUlong(client, EV_id);
/* Ignore clients with static ids. */
if (id < EV_ID_FIRST_DYNAMIC) {
continue;
}
sge_add_event_for_client(id, 0, sgeE_SHUTDOWN, 0, 0, NULL, NULL, NULL, NULL);
SGE_ADD_MSG_ID(sprintf(SGE_EVENT, MSG_COM_SHUTDOWNNOTIFICATION_SUS,
lGetString(client, EV_name),
sge_u32c(id), lGetHost(client, EV_host)));
answer_list_add(alpp, SGE_EVENT, STATUS_OK, ANSWER_QUALITY_INFO);
} /* for_each */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(0);
} /* sge_shutdown_dynamic_event_clients() */
/****** Eventclient/Server/sge_add_event() *************************************
* NAME
* sge_add_event() -- add an object as event
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* void
* sge_add_event(u_long32 timestamp, ev_event type,
* u_long32 intkey, u_long32 intkey2,
* const char *strkey, const char *strkey2,
* const char *session, lListElem *element)
*
* FUNCTION
* Adds an object to the list of events to deliver. Called, if an event
* occurs to that object, e.g. it was added to Grid Engine, modified or
* deleted.
*
* Internally, a list with that single object is created and passed to
* sge_add_list_event().
*
* INPUTS
* u_long32 timestamp - event creation time, 0 -> use current time
* ev_event type - the event id
* u_long32 intkey - additional data
* u_long32 intkey2 - additional data
* const char *strkey - additional data
* const char *strkey2 - additional data
* const char *session - events session key
* lListElem *element - the object to deliver as event
*
* NOTES
* MT-NOTE: sge_add_event() is NOT MT safe.
*
*******************************************************************************/
bool
sge_add_event(u_long32 timestamp, ev_event type,
u_long32 intkey, u_long32 intkey2,
const char *strkey, const char *strkey2,
const char *session, lListElem *element)
{
return sge_add_event_for_client(EV_ID_ANY, timestamp, type, intkey, intkey2, strkey, strkey2, session, element);
}
/****** sge_event_master/sge_add_event_for_client() ****************************
* NAME
* sge_add_event_for_client() -- add an event for a given object
*
* SYNOPSIS
* bool
* sge_add_event_for_client(u_long32 event_client_id, u_long32 timestamp, ev_event type,
* u_long32 intkey, u_long32 intkey2,
* const char *strkey, const char *strkey2,
* const char *session, lListElem *element)
*
* FUNCTION
* Add an event for a given event client.
*
* INPUTS
* u_long32 event_client_id - event client id
* u_long32 timestamp - event creation time, 0 -> use current time
* ev_event type - event id
* u_long32 intkey - 1st numeric key
* u_long32 intkey2 - 2nd numeric key
* const char *strkey - 1st alphanumeric key
* const char *strkey2 - 2nd alphanumeric key
* const char *session - event session
* lListElem *element - object to be delivered with the event
*
* NOTES
* MT-NOTE: sge_add_event_for_client() is MT safe
*
*******************************************************************************/
bool sge_add_event_for_client(u_long32 event_client_id, u_long32 timestamp, ev_event type,
u_long32 intkey, u_long32 intkey2,
const char *strkey, const char *strkey2,
const char *session, lListElem *element)
{
lList *lp = NULL;
bool ret = false;
DENTER(TOP_LAYER, "sge_add_event_for_client");
if (element != NULL) {
lList *temp_sub_lp = NULL;
int sub_list_elem = 0;
/* ignore the sublist in case of the following events. We have
* extra events to handle the sub-lists
*/
if (type == sgeE_JOB_MOD) {
sub_list_elem = JB_ja_tasks;
lXchgList(element, sub_list_elem, &temp_sub_lp);
} else if (type == sgeE_CQUEUE_MOD) {
sub_list_elem = CQ_qinstances;
lXchgList(element, sub_list_elem, &temp_sub_lp);
} else if (type == sgeE_JATASK_MOD) {
sub_list_elem = JAT_task_list;
lXchgList(element, sub_list_elem, &temp_sub_lp);
}
lp = lCreateListHash("Events", lGetElemDescr(element), false);
lAppendElem(lp, lCopyElemHash(element, false));
/* restore the original event object */
if (temp_sub_lp != NULL) {
lXchgList(element, sub_list_elem, &temp_sub_lp);
}
}
ret = add_list_event_for_client(event_client_id, timestamp, type, intkey, intkey2,
strkey, strkey2, session, lp);
DRETURN(ret);
}
/****** Eventclient/Server/sge_add_list_event() ********************************
* NAME
* sge_add_list_event() -- add a list as event
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* void
* sge_add_list_event(u_long32 timestamp, ev_event type,
* u_long32 intkey, u_long32 intkey2,
* const char *strkey, const char *strkey2,
* const char *session, lList *list)
*
* FUNCTION
* Adds a list of objects to the list of events to deliver, e.g. the
* sgeE*_LIST events.
*
* INPUTS
* u_long32 timestamp - event creation time, 0 -> use current time
* ev_event type - the event id
* u_long32 intkey - additional data
* u_long32 intkey2 - additional data
* const char *strkey - additional data
* const char *strkey2 - additional data
* const char *session - events session key
* lList *list - the list to deliver as event
*
* NOTES
* MT-NOTE: sge_add_list_event() is MT safe.
*
*******************************************************************************/
bool sge_add_list_event(u_long32 timestamp, ev_event type,
u_long32 intkey, u_long32 intkey2,
const char *strkey, const char *strkey2,
const char *session, lList *list)
{
bool ret;
lList *lp = NULL;
if (list != NULL) {
lListElem *element = NULL;
lp = lCreateListHash("Events", lGetListDescr(list), false);
if (lp == NULL) {
return false;
}
for_each(element, list) {
lList *temp_sub_lp = NULL;
int sub_list_elem = 0;
/* ignore the sublist in case of the following events. We have
* extra events to handle the sub-lists
*/
if (type == sgeE_JOB_MOD) {
sub_list_elem = JB_ja_tasks;
lXchgList(element, sub_list_elem, &temp_sub_lp);
} else if (type == sgeE_CQUEUE_MOD) {
sub_list_elem = CQ_qinstances;
lXchgList(element, sub_list_elem, &temp_sub_lp);
} else if (type == sgeE_JATASK_MOD) {
sub_list_elem = JAT_task_list;
lXchgList(element, sub_list_elem, &temp_sub_lp);
}
lAppendElem(lp, lCopyElemHash(element, false));
/* restore the original event object */
if (temp_sub_lp != NULL) {
lXchgList(element, sub_list_elem, &temp_sub_lp);
}
}
}
ret = add_list_event_for_client(EV_ID_ANY, timestamp, type, intkey, intkey2,
strkey, strkey2, session, lp);
return ret;
}
/****** Eventclient/Server/sge_create_event() ********************************
* NAME
* sge_add_list_event() -- add a list as event
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* static lListElem* sge_create_event(u_long32 event_client_id,
* u_long32 number,
* u_long32 timestamp,
* ev_event type,
* u_long32 intkey,
* u_long32 intkey2,
* const char *strkey,
* const char *strkey2,
* const char *session,
* lList *list)
*
* FUNCTION
* Create ET_Type element and fill in the specified parameters.
* The caller is responsible for freeing the memory again.
*
* INPUTS
* u_long32 event_client_id - event client id
* u_long32 number - the event number
* u_long32 timestamp - event creation time, 0 -> use current time
* ev_event type - the event id
* u_long32 intkey - additional data
* u_long32 intkey2 - additional data
* const char *strkey - additional data
* const char *strkey2 - additional data
* const char *session - events session key
* lList *list - the list to deliver as event
*
* NOTES
* MT-NOTE: sge_add_list_event() is MT safe.
*
*******************************************************************************/
static lListElem* sge_create_event(u_long32 event_client_id,
u_long32 number,
u_long32 timestamp,
ev_event type,
u_long32 intkey,
u_long32 intkey2,
const char *strkey,
const char *strkey2,
const char *session,
lList *list)
{
lListElem *etp = NULL; /* event object */
DENTER(TOP_LAYER, "sge_create_event");
/* an event needs a timestamp */
if (timestamp == 0) {
timestamp = sge_get_gmt();
}
etp = lCreateElem(ET_Type);
lSetUlong(etp, ET_number, number);
lSetUlong(etp, ET_type, type);
lSetUlong(etp, ET_timestamp, timestamp);
lSetUlong(etp, ET_intkey, intkey);
lSetUlong(etp, ET_intkey2, intkey2);
lSetString(etp, ET_strkey, strkey);
lSetString(etp, ET_strkey2, strkey2);
lSetList(etp, ET_new_version, list);
DRETURN(etp);
}
/****** Eventclient/Server/add_list_event_for_client() *************************
* NAME
* add_list_event_for_client() -- add a list as event
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* void
* add_list_event_for_client(u_long32 event_client_id, u_long32 timestamp,
* ev_event type, u_long32 intkey,
* u_long32 intkey2, const char *strkey,
* const char *session, lList *list)
*
* FUNCTION
* Adds a list of objects to the list of events to deliver, e.g. the
* sgeE*_LIST events, to a specific client. No checking is done to make
* sure that the client id is valid. That is the responsibility of the
* calling function.
*
* INPUTS
* u_long32 event_client_id - the id of the recipient
* u_long32 timestamp - time stamp in gmt for the even; if 0 is passed,
* sge_add_list_event will insert the actual time
* ev_event type - the event id
* u_long32 intkey - additional data
* u_long32 intkey2 - additional data
* const char *strkey - additional data
* const char *session - events session key
* lList *list - the list to deliver as event
*
* RESULTS
* Whether the event was added successfully.
*
* NOTES
* MT-NOTE: add_list_event_for_client() is MT safe.
*
*******************************************************************************/
static bool add_list_event_for_client(u_long32 event_client_id,
u_long32 timestamp,
ev_event type,
u_long32 intkey,
u_long32 intkey2,
const char *strkey,
const char *strkey2,
const char *session,
lList *list)
{
lListElem *evr = NULL; /* event request object */
lList *etlp = NULL; /* event list */
lListElem *etp = NULL; /* event object */
DENTER(TOP_LAYER, "add_list_event_for_client");
/* an event needs a timestamp */
if (timestamp == 0) {
timestamp = sge_get_gmt();
}
evr = lCreateElem(EVR_Type);
lSetUlong(evr, EVR_operation, EVR_ADD_EVENT);
lSetUlong(evr, EVR_timestamp, timestamp);
lSetUlong(evr, EVR_event_client_id, event_client_id);
lSetString(evr, EVR_session, session);
etlp = lCreateListHash("Event_List", ET_Type, false);
lSetList(evr, EVR_event_list, etlp);
/*
* Create a new event elem (The event number is added when
* qmaster adds the event to the event client data structure)
*/
etp = sge_create_event(event_client_id, 0, timestamp, type, intkey, intkey2,
strkey, strkey2, session, list);
lAppendElem(etlp, etp);
/*
* if we have a transaction open, add to the transaction
* otherwise into the event master request list
* need a new C block, as the GET_SPECIFIC macro declares new variables
*/
{
GET_SPECIFIC(event_master_transaction_t, t_store, sge_event_master_init_transaction_store, Event_Master_Control.transaction_key, "t_store");
if (t_store->is_transaction) {
lAppendElem(t_store->transaction_requests, evr);
} else {
sge_mutex_lock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
lAppendElem(Event_Master_Control.requests, evr);
sge_mutex_unlock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
set_flush();
}
}
DRETURN(true);
}
/* add an event from the request list to the event clients which subscribed it */
static void sge_event_master_process_send(lListElem *request, monitoring_t *monitor)
{
lListElem *event_client = NULL;
lListElem *event = NULL;
lList *event_list = NULL;
u_long32 ec_id = 0;
const char *session = NULL;
ev_event type = sgeE_ALL_EVENTS;
DENTER(TOP_LAYER, "sge_event_master_process_send");
ec_id = lGetUlong(request, EVR_event_client_id);
session = lGetString(request, EVR_session);
event_list = lGetList(request, EVR_event_list);
MONITOR_EDT_NEW(monitor);
if (ec_id == EV_ID_ANY) {
DPRINTF(("Processing event for all clients\n"));
event = lFirst(event_list);
while (event != NULL) {
bool added = false;
event = lDechainElem(event_list, event);
type = (ev_event)lGetUlong(event, ET_type);
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
for_each (event_client, Event_Master_Control.clients) {
ec_id = lGetUlong(event_client, EV_id);
DPRINTF(("Preparing event for client %ld\n", (long) ec_id));
if (eventclient_subscribed(event_client, type, session)) {
added = true;
add_list_event_direct(event_client, event, true);
MONITOR_EDT_ADDED(monitor);
}
} /* for_each */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
if (!added) {
MONITOR_EDT_SKIP(monitor);
}
lFreeElem(&event);
event = lFirst(event_list);
} /* while */
} else {
DPRINTF(("Processing event for client "sge_u32".\n", ec_id));
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
event_client = get_event_client(ec_id);
/* Skip bad client ids. Events with bad client ids will be freed
* when send is freed since we don't dechain them. */
if (event_client != NULL) {
event = lFirst(event_list);
while (event != NULL) {
event = lDechainElem(event_list, event);
type = (ev_event)lGetUlong(event, ET_type);
if (eventclient_subscribed(event_client, type, session)) {
add_list_event_direct(event_client, event, false);
MONITOR_EDT_ADDED(monitor);
/* We can't free the event when we're done because it now belongs
* to send_events(). */
} else {
MONITOR_EDT_SKIP(monitor);
lFreeElem(&event);
}
event = lFirst(event_list);
} /* while */
} /* if */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
} /* else */
DRETURN_VOID;
} /* process_sends() */
/****** Eventclient/Server/sge_handle_event_ack() ******************************
* NAME
* sge_handle_event_ack() -- acknowledge event delivery
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* void
* sge_handle_event_ack(u_long32 event_client_id, ev_event event_number)
*
* FUNCTION
* After the server sent events to an event client, it has to acknowledge
* their receipt.
* Acknowledged events are deleted from the list of events to deliver,
* otherwise they will be resent after the next event delivery interval.
* If the handling of a busy state of the event client is enabled and set to
* EV_BUSY_UNTIL_ACK, the event client will be set to "not busy".
*
* INPUTS
* u_long32 event_client_id - event client sending acknowledge
* ev_event event_number - serial number of the last event to acknowledge
*
* RESULT
* bool - true on success, false on error
*
* NOTES
* MT-NOTE: sge_handle_event_ack() is MT safe.
*
*
*******************************************************************************/
bool sge_handle_event_ack(u_long32 event_client_id, u_long32 event_number)
{
lListElem *evr = NULL;
DENTER(TOP_LAYER, "sge_handle_event_ack");
evr = lCreateElem(EVR_Type);
lSetUlong(evr, EVR_operation, EVR_ACK_EVENT);
lSetUlong(evr, EVR_timestamp, sge_get_gmt());
lSetUlong(evr, EVR_event_client_id, event_client_id);
lSetUlong(evr, EVR_event_number, event_number);
sge_mutex_lock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
lAppendElem(Event_Master_Control.requests, evr);
sge_mutex_unlock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
set_flush();
DRETURN(true);
}
static void sge_event_master_process_ack(lListElem *request, monitoring_t *monitor)
{
lListElem *client;
u_long32 event_client_id;
DENTER(TOP_LAYER, "sge_event_master_process_ack");
event_client_id = lGetUlong(request, EVR_event_client_id);
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
client = get_event_client(event_client_id);
if (client == NULL) {
ERROR((SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(event_client_id), "process acknowledgements"));
} else {
u_long32 event_number = lGetUlong(request, EVR_event_number);
u_long32 timestamp = lGetUlong(request, EVR_timestamp);
int res = 0;
lList *list = lGetList(client, EV_events);
res = purge_event_list(list, event_number);
MONITOR_EDT_ACK(monitor);
if (res > 0) {
DPRINTF(("%s: purged %d acknowledged events\n", SGE_FUNC, res));
}
lSetUlong(client, EV_last_heard_from, timestamp); /* note time of ack */
switch (lGetUlong(client, EV_busy_handling)) {
case EV_BUSY_UNTIL_ACK:
lSetUlong(client, EV_busy, 0); /* clear busy state */
break;
default:
break;
}
} /* else */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN_VOID;
} /* sge_handle_event_ack() */
/****** evm/sge_event_master/sge_deliver_events_immediately() ******************
* NAME
* sge_deliver_events_immediately() -- deliver events immediately
*
* SYNOPSIS
* void sge_deliver_events_immediately(u_long32 event_client_id)
*
* FUNCTION
* Deliver all events for the event client denoted by 'event_client_id'
* immediately.
*
* INPUTS
* u_long32 event_client_id - event client id
*
* RESULT
* void - none
*
* NOTES
* MT-NOTE: sge_deliver_events_immediately() is NOT MT safe.
*
*******************************************************************************/
void sge_deliver_events_immediately(u_long32 event_client_id)
{
lListElem *client = NULL;
DENTER(TOP_LAYER, "sge_event_immediate_delivery");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
if ((client = get_event_client(event_client_id)) == NULL) {
ERROR((SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(event_client_id), "deliver events immediately"));
} else {
flush_events(client, 0);
sge_mutex_lock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
Event_Master_Control.delivery_signaled = true;
pthread_cond_signal(&Event_Master_Control.cond_var);
sge_mutex_unlock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
}
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN_VOID;
} /* sge_deliver_event_immediately() */
/****** evm/sge_event_master/sge_resync_schedd() *******************************
* NAME
* sge_resync_schedd() -- resync schedd
*
* SYNOPSIS
* int sge_resync_schedd(void)
*
* FUNCTION
* Does a total update (send all lists) to schedd and outputs an error
* message.
*
* INPUTS
* void - none
*
* RESULT
* 0 - resync successful
* -1 - otherwise
*
* NOTES
* MT-NOTE: sge_resync_schedd() in NOT MT safe.
*
*******************************************************************************/
int sge_resync_schedd(monitoring_t *monitor)
{
lListElem *client;
int ret = -1;
DENTER(TOP_LAYER, "sge_sync_schedd");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
if ((client = get_event_client(EV_ID_SCHEDD)) != NULL) {
ERROR((SGE_EVENT, MSG_EVE_REINITEVENTCLIENT_S,
lGetString(client, EV_name)));
total_update(client, monitor);
ret = 0;
} else {
ERROR((SGE_EVENT, MSG_EVE_UNKNOWNEVCLIENT_US, sge_u32c(EV_ID_SCHEDD), "resynchronize"));
ret = -1;
}
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN(ret);
} /* sge_resync_schedd() */
/****** evm/sge_event_master/sge_event_master_init() **************************
* NAME
* sge_event_master_init() -- event master initialization
*
* SYNOPSIS
* static void sge_event_master_init(void)
*
* FUNCTION
* Initialize the event master control structure. Initialize permanent
* event array.
*
* INPUTS
* void - none
*
* RESULT
* void - none
*
* NOTES
* MT-NOTE: sge_event_master_init() is not MT safe
*
*******************************************************************************/
void sge_event_master_init(void)
{
DENTER(TOP_LAYER, "sge_event_master_init");
Event_Master_Control.clients = lCreateListHash("EV_Clients", EV_Type, true);
Event_Master_Control.requests = lCreateListHash("Event Master Requests", EVR_Type, false);
pthread_key_create(&(Event_Master_Control.transaction_key), sge_event_master_destroy_transaction_store);
init_send_events();
/* Initialize the range list for event client ids */
{
lList *answer_list = NULL;
range_list_initialize(&Event_Master_Control.client_ids, &answer_list);
answer_list_output(&answer_list);
}
DRETURN_VOID;
}
/****** evm/sge_event_master/init_send_events() ********************************
* NAME
* init_send_events() -- sets the events, that should allways be delivered
*
* SYNOPSIS
* void init_send_events()
*
* FUNCTION
* sets the events, that should allways be delivered
*
* NOTES
* MT-NOTE: init_send_events() is not MT safe
*
*******************************************************************************/
static void init_send_events(void)
{
DENTER(TOP_LAYER, "init_send_events");
memset(SEND_EVENTS, false, sizeof(bool) * sgeE_EVENTSIZE);
SEND_EVENTS[sgeE_ADMINHOST_LIST] = true;
SEND_EVENTS[sgeE_CALENDAR_LIST] = true;
SEND_EVENTS[sgeE_CKPT_LIST] = true;
SEND_EVENTS[sgeE_CENTRY_LIST] = true;
SEND_EVENTS[sgeE_CONFIG_LIST] = true;
SEND_EVENTS[sgeE_EXECHOST_LIST] = true;
SEND_EVENTS[sgeE_JOB_LIST] = true;
SEND_EVENTS[sgeE_JOB_SCHEDD_INFO_LIST] = true;
SEND_EVENTS[sgeE_MANAGER_LIST] = true;
SEND_EVENTS[sgeE_OPERATOR_LIST] = true;
SEND_EVENTS[sgeE_PE_LIST] = true;
SEND_EVENTS[sgeE_PROJECT_LIST] = true;
SEND_EVENTS[sgeE_QMASTER_GOES_DOWN] = true;
SEND_EVENTS[sgeE_ACK_TIMEOUT] = true;
SEND_EVENTS[sgeE_CQUEUE_LIST] = true;
SEND_EVENTS[sgeE_SUBMITHOST_LIST] = true;
SEND_EVENTS[sgeE_USER_LIST] = true;
SEND_EVENTS[sgeE_USERSET_LIST] = true;
SEND_EVENTS[sgeE_HGROUP_LIST] = true;
SEND_EVENTS[sgeE_RQS_LIST] = true;
SEND_EVENTS[sgeE_AR_LIST] = true;
#ifndef __SGE_NO_USERMAPPING__
SEND_EVENTS[sgeE_CUSER_LIST] = true;
#endif
DRETURN_VOID;
} /* init_send_events() */
/****** sge_event_master/sge_event_master_wait_next() ******************************
* NAME
* sge_event_master_wait_next() -- waits for a weakup
*
* SYNOPSIS
* void sge_event_master_wait_next(void)
*
* FUNCTION
* waits for a weakup
*
* NOTES
* MT-NOTE: is MT safe
*
*******************************************************************************/
void sge_event_master_wait_next(void)
{
DENTER(TOP_LAYER, "sge_event_master_wait_next");
sge_mutex_lock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
if (!Event_Master_Control.delivery_signaled) {
u_long32 current_time = sge_get_gmt();
struct timespec ts;
ts.tv_sec = (time_t)(current_time + EVENT_DELIVERY_INTERVAL_S);
ts.tv_nsec = EVENT_DELIVERY_INTERVAL_N;
pthread_cond_timedwait(&Event_Master_Control.cond_var, &Event_Master_Control.cond_mutex, &ts);
}
Event_Master_Control.delivery_signaled = false;
sge_mutex_unlock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
DRETURN_VOID;
}
/****** sge_event_master/remove_event_client() *********************************
* NAME
* remove_event_client() -- removes an event client
*
* SYNOPSIS
* static void
* remove_event_client(lListElem **client, int event_client_id, bool lock_event_master)
*
* FUNCTION
* removes an event client, marks the index as dirty and frees the memory
*
* INPUTS
* lListElem **client - event client to remove
* int event_client_id - event client id to remove
* bool lock_event_master - shall the function aquire the event_master mutex
*
* NOTES
* MT-NOTE: remove_event_client() is not MT safe
* - it locks the event master mutex to modify the event client list
* - it assums that the event client is locked before this method is called
*
*******************************************************************************/
static void remove_event_client(lListElem **client, int event_client_id, bool lock_event_master) {
subscription_t *old_sub = NULL;
int i;
DENTER(TOP_LAYER, "remove_event_client");
INFO((SGE_EVENT, MSG_EVE_UNREG_SU, lGetString(*client, EV_name),
sge_u32c(lGetUlong(*client, EV_id))));
old_sub = lGetRef(*client, EV_sub_array);
if (old_sub) {
/* now free event client subscription data */
for (i = 0; i < sgeE_EVENTSIZE; i++) {
lFreeWhere(&old_sub[i].where);
lFreeWhat(&old_sub[i].what);
if (old_sub[i].descr) {
cull_hash_free_descr(old_sub[i].descr);
sge_free(&(old_sub[i].descr));
}
}
sge_free(&old_sub);
lSetRef(*client, EV_sub_array, NULL);
}
if (lock_event_master) {
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
}
lRemoveElem(Event_Master_Control.clients, client);
if (event_client_id >= EV_ID_FIRST_DYNAMIC) {
lList *answer_list = NULL;
free_dynamic_id(&answer_list, event_client_id);
answer_list_output(&answer_list);
}
if (lock_event_master) {
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
}
DRETURN_VOID;
}
/****** evm/sge_event_master/sge_event_master_send_events() ******************
* NAME
* sge_event_master_send_events() -- send events to event clients
*
* SYNOPSIS
* static void send_events(void)
*
* FUNCTION
* Loop over all event clients and send events due. If an event client did
* time out, it will be removed from the list of registered event clients.
*
* Events will be delivered only, if the so called 'busy handling' of a
* client does allow it. Events will be delivered as a report (REP_Type)
* with a report list of type ET_Type.
*
* INPUTS
* lListElem *report - a report, has to be part of the report list. All
* fields have to be init, except for REP_list element.
* lList *report_list - a pre-init report list
*
* RESULT
* void - none
*
* NOTES
* MT-NOTE: send_events() is MT safe
* MT-NOTE:
* MT-NOTE: After all events for all clients have been sent. This function
* MT-NOTE: will wait on the condition variable 'Event_Master_Control.cond_var'
*
*******************************************************************************/
void sge_event_master_send_events(sge_gdi_ctx_class_t *ctx, lListElem *report, lList *report_list,
monitoring_t *monitor)
{
u_long32 timeout;
u_long32 busy_handling;
u_long32 scheduler_timeout = mconf_get_scheduler_timeout();
lListElem *event_client, *next_event_client;
int ret;
int commid;
int deliver_interval;
u_long32 now;
u_long32 ec_id = 0;
event_client_update_func_t update_func = NULL;
DENTER(TOP_LAYER, "sge_event_master_send_events");
sge_mutex_lock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
now = sge_get_gmt();
event_client = lFirst(Event_Master_Control.clients);
while (event_client != NULL) {
const char *host = NULL;
const char *commproc = NULL;
bool do_remove = false;
next_event_client = lNext(event_client);
ec_id = lGetUlong(event_client, EV_id);
/* is the event client in state terminated? remove it */
if (lGetUlong(event_client, EV_state) == EV_terminated) {
remove_event_client(&event_client, ec_id, false);
/* we removed a client, continue with the next one */
event_client = next_event_client;
continue;
}
/* extract address of event client */
/* Important: */
/* host and commproc have to be freed */
update_func = (event_client_update_func_t) lGetRef(event_client, EV_update_function);
host = lGetHost(event_client, EV_host);
commproc = lGetString(event_client, EV_commproc);
commid = lGetUlong(event_client, EV_commid);
deliver_interval = lGetUlong(event_client, EV_d_time);
busy_handling = lGetUlong(event_client, EV_busy_handling);
/* someone turned the clock back */
if (lGetUlong(event_client, EV_last_heard_from) > now) {
WARNING((SGE_EVENT, MSG_SYSTEM_SYSTEMHASBEENMODIFIEDXSECONDS_I, (int)(now - lGetUlong(event_client, EV_last_heard_from))));
lSetUlong(event_client, EV_last_heard_from, now);
lSetUlong(event_client, EV_next_send_time, now + deliver_interval);
} else if (lGetUlong(event_client, EV_last_send_time) > now) {
lSetUlong(event_client, EV_last_send_time, now);
}
/* if set, use qmaster_params SCHEDULER_TIMEOUT */
if (ec_id == EV_ID_SCHEDD && scheduler_timeout > 0) {
timeout = scheduler_timeout;
} else {
/* is the ack timeout expired ? */
timeout = 10 * deliver_interval;
if (timeout < EVENT_ACK_MIN_TIMEOUT) {
timeout = EVENT_ACK_MIN_TIMEOUT;
} else if (timeout > EVENT_ACK_MAX_TIMEOUT) {
timeout = EVENT_ACK_MAX_TIMEOUT;
}
}
/*
* Remove timed-out clients after flushing events for the targeted client.
* Flush event sgeE_ACK_TIMEOUT for out-timed clients. Clients might re-connect
* when getting sgeE_ACK_TIMEOUT event.
*/
if (now > (lGetUlong(event_client, EV_last_heard_from) + timeout)) {
lListElem *new_event = NULL;
lList* tmp_event_list = NULL;
lUlong tmp_cur_event_nr = 0;
dstring buffer_wrapper;
char buffer[256];
DPRINTF(("EVC timeout ("sge_u32" s) (part 1/2)\n", timeout));
WARNING((SGE_EVENT, MSG_COM_ACKTIMEOUT4EV_ISIS, (int) timeout, commproc, (int) commid, host));
/* yes, we have to remove this client after sending the sgeE_ACK_TIMEOUT event */
do_remove = true;
/* Create new ACK_TIMEOUT event and add it directly to the client event list */
tmp_cur_event_nr = lGetUlong(event_client, EV_next_number);
new_event = sge_create_event(ec_id, tmp_cur_event_nr, now, sgeE_ACK_TIMEOUT, 0, 0, NULL, NULL, NULL, NULL);
tmp_event_list = lGetList(event_client, EV_events);
if (tmp_event_list != NULL) {
lAppendElem(tmp_event_list, new_event);
DPRINTF(("Added sgeE_ACK_TIMEOUT to already existing event report list\n"));
} else {
tmp_event_list = lCreateListHash("Events", ET_Type, false);
lAppendElem(tmp_event_list, new_event);
lSetList(event_client, EV_events, tmp_event_list);
DPRINTF(("Created new Events list with sgeE_ACK_TIMEOUT event\n"));
}
/* We have to set the correct next event number */
lSetUlong(event_client, EV_next_number, tmp_cur_event_nr + 1);
/* We log the new added sgeE_ACK_TIMEOUT event */
sge_dstring_init(&buffer_wrapper, buffer, sizeof(buffer));
DPRINTF((sge_u32" %s\n", ec_id, event_text(new_event, &buffer_wrapper)));
/* Set next send time to now, we want to deliver it */
lSetUlong(event_client, EV_next_send_time, (lUlong) now);
}
/* do we have to deliver events ? */
if (now >= lGetUlong(event_client, EV_next_send_time)) {
if (!lGetUlong(event_client, EV_busy) || do_remove == true) {
lList *lp = NULL;
/* put only pointer in report - dont copy */
lXchgList(event_client, EV_events, &lp);
lXchgList(report, REP_list, &lp);
if (update_func != NULL) {
update_func(ec_id, NULL, report_list);
ret = CL_RETVAL_OK;
} else {
ret = report_list_send(ctx, report_list, host, commproc, commid, 0);
MONITOR_MESSAGES_OUT(monitor);
}
/* on failure retry is triggered automatically */
if (ret == CL_RETVAL_OK) {
now = (time_t)sge_get_gmt();
switch (busy_handling) {
case EV_BUSY_UNTIL_RELEASED:
case EV_BUSY_UNTIL_ACK:
lSetUlong(event_client, EV_busy, 1);
break;
default:
/* EV_BUSY_NO_HANDLING */
break;
}
lSetUlong(event_client, EV_last_send_time, now);
}
/* We reset this time even if the report list send failed because we
* want to give failed clients a break before trying them again. */
lSetUlong(event_client, EV_next_send_time, now + deliver_interval);
/* don't delete sent events - deletion is triggerd by ack's */
lXchgList(report, REP_list, &lp);
lXchgList(event_client, EV_events, &lp);
} else {
MONITOR_EDT_BUSY(monitor);
}
} /*if */
/*
* if we have to remove the event client because of timeout we do it now, because
* sgeE_ACK_TIMEOUT event was delivered.
*/
if (do_remove == true) {
DPRINTF(("REMOVE EVC because of timeout ("sge_u32" s) (part 2/2)\n", timeout));
ERROR((SGE_EVENT, MSG_COM_ACKTIMEOUT4EV_SIS, commproc, (int) commid, host));
remove_event_client(&event_client, ec_id, false);
}
event_client = next_event_client;
} /* while */
sge_mutex_unlock("event_master_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.mutex);
DRETURN_VOID;
} /* send_events() */
static void flush_events(lListElem *event_client, int interval)
{
u_long32 next_send = 0;
int now = sge_get_gmt();
DENTER(TOP_LAYER, "flush_events");
SGE_ASSERT(event_client != NULL);
next_send = lGetUlong(event_client, EV_next_send_time);
next_send = MIN(next_send, now + interval);
lSetUlong(event_client, EV_next_send_time, next_send);
if (now >= next_send) {
set_flush();
}
DPRINTF(("%s: %s "sge_u32"\tNOW: %d NEXT FLUSH: "sge_u32" (%s,%s,"sge_u32")\n",
SGE_FUNC,
((lGetString(event_client, EV_name) != NULL) ? lGetString(event_client, EV_name) : "<null>"),
lGetUlong(event_client, EV_id),
now,
next_send,
((lGetHost(event_client, EV_host) != NULL) ? lGetHost(event_client, EV_host) : "<null>"),
((lGetString(event_client, EV_commproc) != NULL) ? lGetString(event_client, EV_commproc) : "<null>"),
lGetUlong(event_client, EV_commid)));
DRETURN_VOID;
} /* flush_events() */
/****** Eventclient/Server/total_update() **************************************
* NAME
* total_update() -- send all data to eventclient
*
* SYNOPSIS
* static void
* total_update(lListElem *event_client)
*
* FUNCTION
* Sends all complete lists it subscribed to an eventclient.
* If the event client receives a complete list instead of single events,
* it should completely update it's database.
*
* INPUTS
* lListElem *event_client - the event client to update
*
* NOTES
* MT-NOTE: total_update() is MT safe, IF the function is invoked with
* MT-NOTE: 'LOCK_EVENT_CLIENT_LST' locked! This is in accordance with
* MT-NOTE: the acquire/release protocol as defined by the Grid Engine
* MT-NOTE: Locking API.
* MT-NOTE: the method also locks the global lock. One has to make sure,
* MT-NOTE: that no calling method has that lock already.
*
* SEE ALSO
* libs/lck/sge_lock.h
* libs/lck/sge_lock.c
*
*******************************************************************************/
static void total_update(lListElem *event_client, monitoring_t *monitor)
{
object_description *master_table = NULL;
DENTER(TOP_LAYER, "total_update");
master_table = object_type_get_global_object_description();
blockEvents(event_client, sgeE_ALL_EVENTS, true);
sge_set_commit_required();
total_update_event(event_client, sgeE_ADMINHOST_LIST, master_table, false);
total_update_event(event_client, sgeE_CALENDAR_LIST, master_table, false);
total_update_event(event_client, sgeE_CKPT_LIST, master_table, false);
total_update_event(event_client, sgeE_CENTRY_LIST, master_table, false);
total_update_event(event_client, sgeE_CONFIG_LIST, master_table, false);
total_update_event(event_client, sgeE_EXECHOST_LIST, master_table, false);
total_update_event(event_client, sgeE_JOB_LIST, master_table, false);
total_update_event(event_client, sgeE_JOB_SCHEDD_INFO_LIST, master_table, false);
total_update_event(event_client, sgeE_MANAGER_LIST, master_table, false);
total_update_event(event_client, sgeE_OPERATOR_LIST, master_table, false);
total_update_event(event_client, sgeE_PE_LIST, master_table, false);
total_update_event(event_client, sgeE_CQUEUE_LIST, master_table, false);
total_update_event(event_client, sgeE_SCHED_CONF, master_table, false);
total_update_event(event_client, sgeE_SUBMITHOST_LIST, master_table, false);
total_update_event(event_client, sgeE_USERSET_LIST, master_table, false);
total_update_event(event_client, sgeE_NEW_SHARETREE, master_table, false);
total_update_event(event_client, sgeE_PROJECT_LIST, master_table, false);
total_update_event(event_client, sgeE_USER_LIST, master_table, false);
total_update_event(event_client, sgeE_HGROUP_LIST, master_table, false);
total_update_event(event_client, sgeE_RQS_LIST, master_table, false);
total_update_event(event_client, sgeE_AR_LIST, master_table, false);
#ifndef __SGE_NO_USERMAPPING__
total_update_event(event_client, sgeE_CUSER_LIST, master_table, false);
#endif
sge_commit();
DRETURN_VOID;
} /* total_update() */
/****** evm/sge_event_master/build_subscription() ******************************
* NAME
* build_subscription() -- generates an array out of the cull registration
* structure
*
* SYNOPSIS
* static void build_subscription(lListElem *event_el)
*
* FUNCTION
* generates an array out of the cull registration
* structure. The array contains all event elements and each of them
* has an identifier, if it is subscribed or not. Before that is done, it is
* tested, the EV_changed flag is set. If not, the function simply returns.
*
*
* INPUTS
* lListElem *event_el - the event element, which event structure will be transformed
*
*******************************************************************************/
static void build_subscription(lListElem *event_el)
{
lList *subscription = lGetList(event_el, EV_subscribed);
lListElem *sub_el = NULL;
subscription_t *sub_array = NULL;
subscription_t *old_sub_array = NULL;
int i = 0;
DENTER(TOP_LAYER, "build_subscription");
if (!lGetBool(event_el, EV_changed)) {
DRETURN_VOID;
}
DPRINTF(("rebuild event mask for client(id): %s("sge_u32")\n", lGetString(event_el, EV_name), lGetUlong(event_el, EV_id)));
sub_array = sge_malloc(sizeof(subscription_t) * sgeE_EVENTSIZE);
memset(sub_array, 0, sizeof(subscription_t) * sgeE_EVENTSIZE);
for (i = 0; i < sgeE_EVENTSIZE; i++) {
sub_array[i].subscription = EV_NOT_SUBSCRIBED;
sub_array[i].blocked = false;
}
for_each(sub_el, subscription) {
const lListElem *temp = NULL;
u_long32 event = lGetUlong(sub_el, EVS_id);
sub_array[event].subscription = EV_SUBSCRIBED;
sub_array[event].flush = lGetBool(sub_el, EVS_flush) ? true : false;
sub_array[event].flush_time = lGetUlong(sub_el, EVS_interval);
if ((temp = lGetObject(sub_el, EVS_where))) {
sub_array[event].where = lWhereFromElem(temp);
}
if ((temp = lGetObject(sub_el, EVS_what))) {
sub_array[event].what = lWhatFromElem(temp);
}
}
old_sub_array = lGetRef(event_el, EV_sub_array);
if (old_sub_array) {
int i;
for (i = 0; i < sgeE_EVENTSIZE; i++) {
lFreeWhere(&(old_sub_array[i].where));
lFreeWhat(&(old_sub_array[i].what));
if (old_sub_array[i].descr){
cull_hash_free_descr(old_sub_array[i].descr);
sge_free(&(old_sub_array[i].descr));
}
}
sge_free(&old_sub_array);
}
lSetRef(event_el, EV_sub_array, sub_array);
lSetBool(event_el, EV_changed, false);
DRETURN_VOID;
} /* build_subscription() */
/****** Eventclient/Server/check_send_new_subscribed_list() ********************
* NAME
* check_send_new_subscribed_list() -- check suscription for new list events
*
* SYNOPSIS
* static void
* check_send_new_subscribed_list(const subscription_t *old_subscription,
* const subscription_t *new_subscription,
* lListElem *event_client,
* ev_event event)
*
* FUNCTION
* Checks, if sgeE*_LIST events have been added to the subscription of a
* certain event client. If yes, send these lists to the event client.
*
* INPUTS
* const subscription_t *old_subscription - former subscription
* const subscription_t *new_subscription - new subscription
* lListElem *event_client - the event client object
* ev_event event - the event to check
* object_description *master_table - master list table
*
* SEE ALSO
* Eventclient/Server/total_update_event()
*
*******************************************************************************/
static void
check_send_new_subscribed_list(const subscription_t *old_subscription,
const subscription_t *new_subscription,
lListElem *event_client, ev_event event,
object_description *master_table)
{
if ((new_subscription[event].subscription == EV_SUBSCRIBED) &&
(old_subscription[event].subscription == EV_NOT_SUBSCRIBED)) {
total_update_event(event_client, event, master_table, true);
}
}
/****** Eventclient/Server/eventclient_subscribed() ************************
* NAME
* eventclient_subscribed() -- has event client subscribed an event?
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* int
* eventclient_subscribed(const lListElem *event_client, ev_event event)
*
* FUNCTION
* Checks if the given event client has a certain event subscribed.
* For event clients that use session filtering additional conditions
* must be fulfilled otherwise the event counts not as subscribed.
*
* INPUTS
* const lListElem *event_client - event client to check
* ev_event event - event to check
* const char *session - session key of this event
*
* RESULT
* int - 0 = not subscribed, 1 = subscribed
*
* SEE ALSO
* Eventclient/-Session filtering
*******************************************************************************/
static int eventclient_subscribed(const lListElem *event_client, ev_event event,
const char *session)
{
const subscription_t *subscription = NULL;
const char *ec_session = NULL;
DENTER(TOP_LAYER, "eventclient_subscribed");
SGE_ASSERT(event_client != NULL);
if (event_client == NULL) {
DRETURN(0);
}
subscription = lGetRef(event_client, EV_sub_array);
ec_session = lGetString(event_client, EV_session);
if (subscription == NULL) {
DPRINTF(("No subscription!\n"));
DRETURN(0);
}
if (ec_session) {
if (session) {
/* events that belong to a specific session are not subscribed
in case the event client is not interested in that session */
if (strcmp(session, ec_session)) {
DPRINTF(("Event session does not match client session\n"));
DRETURN(0);
}
} else {
/* events that do not belong to a specific session are not
subscribed if the event client is interested in events of a
specific session.
The only exception are list events, because list events do not
belong to a specific session. These events require filtering on
a more fine grained level */
if (!IS_TOTAL_UPDATE_EVENT(event)) {
DRETURN(0);
}
}
}
if ((subscription[event].subscription == EV_SUBSCRIBED) &&
(subscription[event].blocked == false)) {
DRETURN(1);
}
DRETURN(0);
}
/****** evm/sge_event_master/purge_event_list() ********************************
* NAME
* purge_event_list() -- purge event list
*
* SYNOPSIS
* static int purge_event_list(lList* aList, ev_event event_number)
*
* FUNCTION
* Remove all events from 'aList' which do have an event id less than or
* equal to 'event_number'.
*
* INPUTS
* lList* aList - event list
* ev_event event_number - event
*
* RESULT
* int - number of events purged.
*
* NOTES
* MT-NOTE: purge_event_list() is NOT MT safe.
* MT-NOTE:
* MT-NOTE: Do not call this function without having 'aList' locked!
*
* BUGS
* BUGBUG-AD: If 'event_number' == 0, not events will be purged. However zero is
* BUGBUG-AD: also the id of 'sgeE_ALL_EVENTS'. Is this behaviour correct?
*
*******************************************************************************/
static int purge_event_list(lList *event_list, u_long32 event_number)
{
int purged = 0, pos = 0;
lListElem *ev = NULL;
DENTER(TOP_LAYER, "purge_event_list");
if (event_number == 0) {
DRETURN(0);
}
pos = lGetPosInDescr(ET_Type, ET_number);
ev = lFirst(event_list);
while (ev != NULL) {
lListElem *tmp = ev;
ev = lNext(ev); /* fetch next event, before the old one will be deleted */
if (lGetPosUlong(tmp, pos) > event_number) {
break;
}
lRemoveElem(event_list, &tmp);
purged++;
}
DRETURN(purged);
} /* remove_events_from_client() */
static void add_list_event_direct(lListElem *event_client, lListElem *event,
bool copy_event)
{
lList *lp = NULL;
lList *clp = NULL;
lListElem *ep = NULL;
ev_event type = (ev_event)lGetUlong(event, ET_type);
subscription_t *subscription = NULL;
char buffer[1024];
dstring buffer_wrapper;
u_long32 i = 0;
const lCondition *selection = NULL;
const lEnumeration *fields = NULL;
const lDescr *descr = NULL;
bool internal_client = false;
DENTER(TOP_LAYER, "add_list_event_direct");
SGE_ASSERT(event_client != NULL);
if (lGetUlong(event_client, EV_state) != EV_connected) {
/* the event client is not connected anymore, so we are not
adding new events to it*/
if (!copy_event) {
lFreeElem(&event);
}
DRETURN_VOID;
}
/* detect internal event clients */
if (lGetRef(event_client, EV_update_function) != NULL) {
internal_client = true;
}
/* if the total updates blocked the client, we have to unblock this list */
blockEvents(event_client, type, false);
sge_dstring_init(&buffer_wrapper, buffer, sizeof(buffer));
/* Pull out payload for selecting */
lXchgList(event, ET_new_version, &lp);
/* If the list is NULL, no need to bother with any of this. Plus, if we
* did do this part with a NULL list, the check for a clp with no
* elements would kick us out. */
if (lp != NULL) {
subscription = lGetRef(event_client, EV_sub_array);
selection = subscription[type].where;
fields = subscription[type].what;
#if 1
DPRINTF(("deliver event: %d with where filter=%s and what filter=%s\n",
type, selection?"true":"false", fields?"true":"false"));
#endif
if (fields) {
descr = getDescriptorL(subscription, lp, type);
DPRINTF(("Reducing event data\n"));
if (!list_select(subscription, type, &clp, lp, selection, fields,
descr, internal_client)) {
clp = lSelectDPack("updating list", lp, selection, descr,
fields, internal_client, NULL, NULL);
}
/* no elements in the event list, no need for an event */
if (!SEND_EVENTS[type] && lGetNumberOfElem(clp) == 0) {
if (clp != NULL) {
lFreeList(&clp);
}
/* we are not making a copy, so we have to restore the old element */
lXchgList(event, ET_new_version, &lp);
if (!copy_event) {
lFreeElem(&event);
}
DPRINTF(("Skipping event because it has no content for this client.\n"));
DRETURN_VOID;
}
/* If we're not making a copy, we have to free the original list. If
* we are making a copy, freeing the list is the responsibility of the
* calling function. */
if (!copy_event) {
lFreeList(&lp);
}
} else if (copy_event) {
/* If there's no what clause, and we want a copy, we copy the list */
DPRINTF(("Copying event data\n"));
clp = lCopyListHash(lGetListName(lp), lp, internal_client);
} else {
/* If there's no what clause, and we don't want to copy, we just reuse
* the original list. */
clp = lp;
if (internal_client) {
cull_hash_create_hashtables(clp);
}
/* Make sure lp is clear for the next part. */
lp = NULL;
}
} /* if */
/* If we're making a copy, copy the event and swap the orignial list
* back into the original event */
if (copy_event) {
DPRINTF(("Copying event\n"));
ep = lCopyElemHash(event, false);
lXchgList(event, ET_new_version, &lp);
} else {
/* If we're not making a copy, reuse the original event. */
ep = event;
}
/* Swap the new list into the working event. */
lXchgList(ep, ET_new_version, &clp);
/* fill in event number and increment
EV_next_number of event recipient */
i = lGetUlong(event_client, EV_next_number);
lSetUlong(event_client, EV_next_number, (i + 1));
lSetUlong(ep, ET_number, i);
/* build a new event list if not exists */
lp = lGetList(event_client, EV_events);
if (lp == NULL) {
lp=lCreateListHash("Events", ET_Type, false);
lSetList(event_client, EV_events, lp);
}
/* chain in new event */
lAppendElem(lp, ep);
DPRINTF((sge_u32" %s\n", lGetUlong(event_client, EV_id),
event_text(ep, &buffer_wrapper)));
/* check if event clients wants flushing */
subscription = lGetRef(event_client, EV_sub_array);
if (type == sgeE_QMASTER_GOES_DOWN) {
Event_Master_Control.is_prepare_shutdown = true;
lSetUlong(event_client, EV_busy, 0); /* can't be too busy for shutdown */
flush_events(event_client, 0);
} else if (type == sgeE_SHUTDOWN) {
flush_events(event_client, 0);
/* the event client should be shutdown, so we do not add any events to it, after
the shutdown event */
lSetUlong(event_client, EV_state, EV_closing);
} else if (subscription[type].flush) {
DPRINTF(("flushing event client\n"));
flush_events(event_client, subscription[type].flush_time);
}
DRETURN_VOID;
}
/****** Eventclient/Server/total_update_event() *******************************
* NAME
* total_update_event() -- create a total update event
*
* SYNOPSIS
* static void
* total_update_event(lListElem *event_client, ev_event type)
*
* FUNCTION
* Creates an event delivering a certain list of objects for an event client.
* For event clients that have subscribed a session list filtering can be done
* here.
*
* INPUTS
* lListElem *event_client - event client to receive the list
* ev_event type - event describing the list to update
* object_description *object_base - master list table
*
*******************************************************************************/
static void total_update_event(lListElem *event_client, ev_event type, object_description *object_base,
bool new_subscription)
{
lList *lp = NULL; /* lp should be set, if we have to make a copy */
lList *copy_lp = NULL; /* copy_lp should be used for a copy of the org. list */
char buffer[1024];
dstring buffer_wrapper;
u_long32 id;
DENTER(TOP_LAYER, "total_update_event");
SGE_ASSERT(event_client != NULL);
sge_dstring_init(&buffer_wrapper, buffer, sizeof(buffer));
id = lGetUlong(event_client, EV_id);
/* This test bothers me. Technically, the GDI thread should just drop the
* event in the send queue and forget about it. However, doing this test
* here could prevent the queuing of events that will later be determined
* to be useless. */
if (new_subscription || eventclient_subscribed(event_client, type, NULL)) {
switch (type) {
case sgeE_ADMINHOST_LIST:
lp = *object_base[SGE_TYPE_ADMINHOST].list;
break;
case sgeE_CALENDAR_LIST:
lp = *object_base[SGE_TYPE_CALENDAR].list;
break;
case sgeE_CKPT_LIST:
lp = *object_base[SGE_TYPE_CKPT].list;
break;
case sgeE_CENTRY_LIST:
lp = *object_base[SGE_TYPE_CENTRY].list;
break;
case sgeE_CONFIG_LIST:
/* sge_get_configuration() returns a copy already, we do not need to make
one later */
lp = *object_base[SGE_TYPE_CONFIG].list;
break;
case sgeE_EXECHOST_LIST:
lp = *object_base[SGE_TYPE_EXECHOST].list;
break;
case sgeE_JOB_LIST:
lp = *object_base[SGE_TYPE_JOB].list;
break;
case sgeE_JOB_SCHEDD_INFO_LIST:
lp = *object_base[SGE_TYPE_JOB_SCHEDD_INFO].list;
break;
case sgeE_MANAGER_LIST:
lp = *object_base[SGE_TYPE_MANAGER].list;
break;
case sgeE_NEW_SHARETREE:
lp = *object_base[SGE_TYPE_SHARETREE].list;
break;
case sgeE_OPERATOR_LIST:
lp = *object_base[SGE_TYPE_OPERATOR].list;
break;
case sgeE_PE_LIST:
lp = *object_base[SGE_TYPE_PE].list;
break;
case sgeE_PROJECT_LIST:
lp = *object_base[SGE_TYPE_PROJECT].list;
break;
case sgeE_CQUEUE_LIST:
lp = *object_base[SGE_TYPE_CQUEUE].list;
break;
case sgeE_SCHED_CONF:
copy_lp = sconf_get_config_list();
break;
case sgeE_SUBMITHOST_LIST:
lp = *object_base[SGE_TYPE_SUBMITHOST].list;
break;
case sgeE_USER_LIST:
lp = *object_base[SGE_TYPE_USER].list;
break;
case sgeE_USERSET_LIST:
lp = *object_base[SGE_TYPE_USERSET].list;
break;
case sgeE_HGROUP_LIST:
lp = *object_base[SGE_TYPE_HGROUP].list;
break;
case sgeE_RQS_LIST:
lp = *object_base[SGE_TYPE_RQS].list;
break;
case sgeE_AR_LIST:
lp = *object_base[SGE_TYPE_AR].list;
break;
#ifndef __SGE_NO_USERMAPPING__
case sgeE_CUSER_LIST:
lp = *object_base[SGE_TYPE_CUSER].list;
break;
#endif
default:
WARNING((SGE_EVENT, MSG_EVE_TOTALUPDATENOTHANDLINGEVENT_I, type));
DRETURN_VOID;
} /* switch */
if (lp != NULL) {
copy_lp = lCopyListHash(lGetListName(lp), lp, false);
}
/* 'send_events()' will free the copy of 'lp' */
add_list_event_for_client(id, 0, type, 0, 0, NULL, NULL, NULL, copy_lp);
} /* if */
DRETURN_VOID;
} /* total_update_event() */
/****** evm/sge_event_master/list_select() *************************************
* NAME
* list_select() -- makes a reduced job list duplication
*
* SYNOPSIS
* static bool list_select(subscription_t *subscription, int type, lList
* **reduced_lp, lList *lp, const lCondition *selection, const lEnumeration
* *fields, const lDescr *descr, bool do_hash)
*
* FUNCTION
* Only works on job events. All others are ignored. The job events
* need some special handling and this is done in this function. The
* JAT_Type list can be subscribed by its self and it is also part
* of the JB_Type. If a JAT_Type filter is set, this function also
* filters the JAT_Type lists in the JB_Type lists.
*
* INPUTS
* subscription_t *subscription - subscription array
* int type - event type
* lList **reduced_lp - target list (has to be an empty list)
* lList *lp - source list (will be modified)
* const lCondition *selection - where filter
* const lEnumeration *fields - what filter
* const lDescr *descr - reduced descriptor
* bool do_hash - create hash tables in the target list
*
* RESULT
* static bool - true, if it was a job event
*******************************************************************************/
static bool list_select(subscription_t *subscription, int type,
lList **reduced_lp, lList *lp,
const lCondition *selection, const lEnumeration *fields,
const lDescr *descr, bool do_hash)
{
bool ret = false;
int entry_counter;
int event_counter;
DENTER(TOP_LAYER, "list_select");
for (entry_counter = 0; entry_counter < LIST_MAX; entry_counter++) {
event_counter = -1;
while (EVENT_LIST[entry_counter][++event_counter] != -1) {
if (type == EVENT_LIST[entry_counter][event_counter]) {
int sub_type = -1;
int i = -1;
while (SOURCE_LIST[entry_counter][++i] != -1) {
if (subscription[SOURCE_LIST[entry_counter][i]].what) {
sub_type = SOURCE_LIST[entry_counter][i];
break;
}
}
if (sub_type != -1) {
lListElem *element = NULL;
lListElem *reduced_el = NULL;
ret = true;
*reduced_lp = lCreateListHash("update", descr, do_hash);
for_each(element, lp) {
reduced_el = elem_select(subscription, element,
FIELD_LIST[entry_counter], selection,
fields, descr, sub_type);
lAppendElem(*reduced_lp, reduced_el);
}
} else {
DPRINTF(("no sub type filter specified\n"));
}
goto end;
} /* end if */
} /* end while */
} /* end for */
end:
DRETURN(ret);
}
/****** sge_event_master/elem_select() ******************************************
* NAME
* elem_select() -- makes a reduced copy of an element with reducing sublists
* as well
*
* SYNOPSIS
* static lListElem *elem_select(subscription_t *subscription, lListElem *element,
* const int ids[], const lCondition *selection,
* const lEnumeration *fields, const lDescr *dp, int sub_type)
*
* FUNCTION
* The function will apply the given filters for the element. Before the element
* is reduced, all attribute sub lists named in "ids" will be removed from the list and
* reduced. The reduced sub lists will be added the the reduced element and the original
* element will be restored. The sub-lists will only be reduced, if the reduced element
* still contains their attributes.
*
* INPUTS
* subscription_t *subscription - subscription array
* lListElem *element - the element to reduce
* const int ids[] - attribute with sublists to be reduced as well
* const lCondition *selection - where filter
* const lEnumeration *fields - what filter
* const lDescr *descr - reduced descriptor
* int sub_type - list type of the sublists.
*
* RESULT
* bool - the reduced element, or NULL if something went wrong
*
* NOTE:
* MT-NOTE: works only on the variables -> thread save
*
*******************************************************************************/
static lListElem *elem_select(subscription_t *subscription, lListElem *element,
const int ids[], const lCondition *selection,
const lEnumeration *fields, const lDescr *dp, int sub_type)
{
const lCondition *sub_selection = NULL;
const lEnumeration *sub_fields = NULL;
const lDescr *sub_descr = NULL;
lList **sub_list;
lListElem *el = NULL;
int counter;
DENTER(TOP_LAYER, "elem_select");
if (element == NULL) {
DRETURN(NULL);
}
if (sub_type <= sgeE_ALL_EVENTS || sub_type >= sgeE_EVENTSIZE) {
/* TODO: SG: add error message */
DPRINTF(("wrong event sub type\n"));
DRETURN(NULL);
}
/* get the filters for the sub lists */
if (sub_type >= 0) {
sub_selection = subscription[sub_type].where;
sub_fields = subscription[sub_type].what;
}
if (sub_fields) { /* do we have a sub list filter, otherwise ... */
int ids_size = 0;
/* allocate memory to store the sub-lists, which should be handeled special */
while (ids[ids_size] != -1) {
ids_size++;
}
sub_list = sge_malloc(ids_size * sizeof(lList*));
memset(sub_list, 0 , ids_size * sizeof(lList*));
/* remove the sub-lists from the main element */
for (counter = 0; counter < ids_size; counter ++) {
lXchgList(element, ids[counter], &(sub_list[counter]));
}
/* get descriptor for reduced sub-lists */
if (!sub_descr) {
for (counter = 0; counter < ids_size; counter ++) {
if (sub_list[counter]) {
sub_descr = getDescriptorL(subscription, sub_list[counter], sub_type);
break;
}
}
}
/* copy the main list */
if (!fields) {
/* there might be no filter for the main element, but for the sub-lists */
el = lCopyElemHash(element, false);
} else if (!dp) {
/* for some reason, we did not get a descriptor for the target element */
el = lSelectElemPack(element, selection, fields, false, NULL);
} else {
el = lSelectElemDPack(element, selection, dp, fields, false, NULL, NULL);
}
/* if we have a new reduced main element */
if (el) {
/* copy the sub-lists, if they are still part of the reduced main element */
for (counter = 0; counter < ids_size; counter ++) {
if (sub_list[counter] && (lGetPosViaElem(el, ids[counter], SGE_NO_ABORT) != -1)) {
lSetList(el, ids[counter],
lSelectDPack("", sub_list[counter], sub_selection,
sub_descr, sub_fields, false, NULL, NULL));
}
}
}
/* restore the old sub_list */
for (counter = 0; counter < ids_size; counter ++) {
lXchgList(element, ids[counter], &(sub_list[counter]));
}
sge_free(&sub_list);
} else {
DPRINTF(("no sub filter specified\n"));
el = lSelectElemDPack(element, selection, dp, fields, false, NULL, NULL);
}
DRETURN(el);
}
/****** Eventclient/Server/eventclient_list_locate() **************************
* NAME
* eventclient_list_locate_by_adress() -- search event client by adress
*
* SYNOPSIS
* #include "sge_event_master.h"
*
* lListElem *
* eventclient_list_locate_by_adress(const char *host,
* const char *commproc, u_long32 id)
*
* FUNCTION
* Searches the event client list for an event client with the
* specified commlib adress.
* Returns a pointer to the event client object or
* NULL, if no such event client is registered.
*
* INPUTS
* const char *host - hostname of the event client to search
* const char *commproc - commproc of the event client to search
* u_long32 id - id of the event client to search
*
* RESULT
* lListElem* - event client object or NULL.
*
* NOTES
*
*******************************************************************************/
static lListElem *
eventclient_list_locate_by_adress(const char *host, const char *commproc,
u_long32 id)
{
lListElem *ep;
DENTER(TOP_LAYER, "eventclient_list_locate_by_adress");
for_each(ep, Event_Master_Control.clients) {
if (lGetUlong(ep, EV_commid) == id &&
!sge_hostcmp(lGetHost(ep, EV_host), host) &&
!strcmp(lGetString(ep, EV_commproc), commproc)) {
break;
}
}
DRETURN(ep);
}
/****** sge_event_master/getDescriptorL() **************************************
* NAME
* getDescriptorL() -- returns a reduced desciptor
*
* SYNOPSIS
* static const lDescr* getDescriptorL(subscription_t *subscription, const
* lList* list, int type)
*
* FUNCTION
* ???
*
* INPUTS
* subscription_t *subscription - subscription array
* const lList* list - source list
* int type - event type
*
* RESULT
* static const lDescr* - reduced descriptor or NULL, if no what exists
*
* NOTE
* MT-NOTE: thread save, works only on the submitted variables.
*******************************************************************************/
static const lDescr* getDescriptorL(subscription_t *subscription,
const lList* list, int type)
{
const lDescr *dp = NULL;
if (subscription[type].what) {
if (!(dp = subscription[type].descr)) {
subscription[type].descr = lGetReducedDescr(lGetListDescr(list),
subscription[type].what);
dp = subscription[type].descr;
}
}
return dp;
}
/****** sge_event_master/get_event_client() ************************************
* NAME
* get_event_client() -- gets the event client from the list
*
* SYNOPSIS
* static lListElem *get_event_client(u_long32 id)
*
* FUNCTION
* Returns the event client with the given id, or NULL if no such event
* client exists.
*
* INPUTS
* u_long32 id - the client id
*
* RESULT
* The event client with the given id, or NULL if no such event client
* exists.
*
* NOTE
* MT-NOTE: NOT thread safe. Requires caller to hold Event_Master_Control.mutex.
*******************************************************************************/
static lListElem *get_event_client(u_long32 id)
{
lListElem *client = NULL;
client = lGetElemUlong(Event_Master_Control.clients, EV_id, id);
return client;
}
/****** sge_event_master/allocate_new_dynamic_id() *******************************
* NAME
* allocate_new_dynamic_id() -- gets a new dynamic id
*
* SYNOPSIS
* static u_long32 allocate_new_dynamic_id(void)
*
* FUNCTION
* Returns the next available dynamic event client id. The id returned will
* be between EV_ID_FIRST_DYNAMIC and Event_Master_Control.max_event_clients +
* EV_ID_FIRST_DYNAMIC.
*
* RESULTS
* The next available dynamic event client id.
*
* NOTE
* MT-NOTE: allocate_new_dynamic_id() is thread safe,
* when the caller holds Event_Master_Control.mutex.
*******************************************************************************/
static u_long32
allocate_new_dynamic_id(lList **answer_list)
{
u_long32 id = 0;
DENTER(TOP_LAYER, "allocate_new_dynamic_id");
if (range_list_is_empty(Event_Master_Control.client_ids)) {
ERROR((SGE_EVENT, MSG_TO_MANY_DYNAMIC_EC_U, sge_u32c(Event_Master_Control.max_event_clients)));
answer_list_add(answer_list, SGE_EVENT, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
} else {
id = range_list_get_first_id(Event_Master_Control.client_ids, answer_list);
if (id != 0) {
range_list_remove_id(&Event_Master_Control.client_ids, answer_list, id);
/* compress the range list to reduce fragmentation
* JG: TODO: do we need to compress here?
*/
range_list_compress(Event_Master_Control.client_ids);
}
}
DRETURN(id);
}
static void
free_dynamic_id(lList **answer_list, u_long32 id)
{
if (id < Event_Master_Control.max_event_clients + EV_ID_FIRST_DYNAMIC) {
range_list_insert_id(&Event_Master_Control.client_ids, answer_list, id);
/* compress the range list to reduce fragmentation */
range_list_compress(Event_Master_Control.client_ids);
}
}
/****** sge_event_master/sge_commit() ****************************************
* NAME
* sge_commit() -- Commit the queued events
*
* SYNOPSIS
* bool sge_commit(void)
*
* FUNCTION
* Sends any events that this thread currently has queued and clears the
* queue.
*
* RESULTS
* Whether the call succeeded.
*
* NOTE
* MT-NOTE: sge_commit is thread safe.
*******************************************************************************/
bool sge_commit(void)
{
bool ret = true;
DENTER(TOP_LAYER, "sge_commit");
/* need a new C block, as the GET_SPECIFIC macro declares new variables */
{
GET_SPECIFIC(event_master_transaction_t, t_store, sge_event_master_init_transaction_store, Event_Master_Control.transaction_key, "t_store");
if (t_store->is_transaction) {
t_store->is_transaction = false;
if (lGetNumberOfElem(t_store->transaction_requests) > 0) {
sge_mutex_lock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
lAppendList(Event_Master_Control.requests, t_store->transaction_requests);
sge_mutex_unlock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
set_flush();
}
} else {
WARNING((SGE_EVENT, "attempting to commit an event master transaction, but no transaction is open"));
ret = false;
}
}
DRETURN(ret);
}
/****** sge_event_master/blockEvents() ****************************************
* NAME
* blockEvents() -- blocks or unblocks events
*
* SYNOPSIS
* void blockEvents(lListElem *event_client, int ev_type, bool isBlock)
*
* FUNCTION
* In case that global update events have to be send, this function
* blocks all events for that list, or unblocks it.
*
* INPUT
* lListElem *event_client : event client to modify
* ev_event ev_type : the event_lists to unblock or -1
* bool isBlock : true: block events, false: unblock
*
* NOTE
* MT-NOTE: sge_commit is thread safe.
*******************************************************************************/
static void blockEvents(lListElem *event_client, ev_event ev_type, bool isBlock) {
subscription_t *sub_array = lGetRef(event_client, EV_sub_array);
if (sub_array != NULL) {
int i = -1;
if (ev_type == sgeE_ALL_EVENTS) { /* block all subscribed events, for which are list events subscribed */
while (total_update_events[++i] != -1) {
if (sub_array[total_update_events[i]].subscription == EV_SUBSCRIBED) {
int y = -1;
while (block_events[i][++y] != -1) {
sub_array[block_events[i][y]].blocked = isBlock;
}
}
}
} else {
while (total_update_events[++i] != -1) {
if (total_update_events[i] == ev_type) {
int y = -1;
while (block_events[i][++y] != -1) {
sub_array[block_events[i][y]].blocked = isBlock;
}
break;
}
}
}
}
}
/****** sge_event_master/set_flush() *******************************************
* NAME
* set_flush() -- Flush all events
*
* SYNOPSIS
* void set_flush(void)
*
* FUNCTION
* Flushes all pending events
*
* NOTE
* MT-NOTE: set_flush is thread safe.
*******************************************************************************/
static void set_flush(void)
{
DENTER(TOP_LAYER, "set_flush");
sge_mutex_lock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
if (!Event_Master_Control.delivery_signaled) {
Event_Master_Control.delivery_signaled = true;
pthread_cond_signal(&Event_Master_Control.cond_var);
}
sge_mutex_unlock("event_master_cond_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.cond_mutex);
DRETURN_VOID;
}
/****** sge_event_master/sge_set_commit_required() *****************************
* NAME
* sge_set_commit_required() -- Require commits (make multipe object changes atomic)
*
* SYNOPSIS
* void sge_set_commit_required()
*
* FUNCTION
* Enables transactions on events. So far a rollback is not supported. It allows to accumulate
* events, while multiple objects are modified and events are issued and to submit them as
* one event package. There can only be one event session open at a time. The transaction_mutex
* will block multiple calles to this method.
* The method cannot be called recursivly, and sge_commit has to be called to close the transaction.
*
*
* NOTE
* MT-NOTE: sge_set_commit_required is thread safe. Transactional event
* processing is handled for each thread individually.
*******************************************************************************/
void sge_set_commit_required(void)
{
DENTER(TOP_LAYER,"sge_set_commit_required");
/* need a new C block, as the GET_SPECIFIC macro declares new variables */
{
GET_SPECIFIC(event_master_transaction_t, t_store, sge_event_master_init_transaction_store, Event_Master_Control.transaction_key, "t_store");
if (t_store->is_transaction) {
WARNING((SGE_EVENT, "attempting to open a new event master transaction, but we already have a transaction open"));
} else {
t_store->is_transaction = true;
}
}
DRETURN_VOID;
}
void sge_event_master_process_requests(monitoring_t *monitor)
{
lList *requests = NULL;
DENTER(TOP_LAYER, "sge_event_master_process_requests");
/*
* get the request list
* put a new empty list in place to allow new requests while we process the old ones
*/
sge_mutex_lock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
if (lGetNumberOfElem(Event_Master_Control.requests) > 0) {
requests = Event_Master_Control.requests;
Event_Master_Control.requests = lCreateListHash("Event Master Requests", EVR_Type, false);
}
sge_mutex_unlock("event_master_request_mutex", SGE_FUNC, __LINE__, &Event_Master_Control.request_mutex);
/* if there have been any requests - process them */
if (requests != NULL) {
lListElem *request = NULL;
while ((request = lFirst(requests)) != NULL) {
DPRINTF(("processing event master request: "sge_u32"\n", lGetUlong(request, EVR_operation)));
switch (lGetUlong(request, EVR_operation)) {
case EVR_ADD_EVC:
sge_event_master_process_add_event_client(request, monitor);
break;
case EVR_MOD_EVC:
sge_event_master_process_mod_event_client(request, monitor);
break;
case EVR_DEL_EVC:
break;
case EVR_ADD_EVENT:
sge_event_master_process_send(request, monitor);
break;
case EVR_ACK_EVENT:
sge_event_master_process_ack(request, monitor);
break;
}
lRemoveElem(requests, &request);
}
lFreeList(&requests);
}
}
|