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
|
#############################################################
# fulflow_module.tcl
# -----------------------------------------------------------
# Copyright (C) 2003-2006 Tresys Technology, LLC
# see file 'COPYING' for use and warranty information
#
# Requires tcl and tk 8.3+, with BWidgets
# Author: <don.patterson@tresys.com, mayerf@tresys.com, kcarr@tresys>
# -----------------------------------------------------------
#
# This is the implementation of the interface for Information
# Flow analysis.
##############################################################
# ::Apol_Analysis_fulflow module namespace
##############################################################
namespace eval Apol_Analysis_fulflow {
# widget variables
variable comment_text
variable combo_attribute
variable combo_start
variable info_button_text "\n\nThis analysis generates the results of a Transitive Information Flow \
analysis beginning from the starting type selected. The results of the \
analysis are presented in tree form with the root of the tree being the \
start point for the analysis.\n\nEach child node in the tree represents \
a type in the current policy for which there is a transitive information \
flow to or from its parent node. If 'flow to' is selected the information \
flows from the child to the parent. If 'flow from' is selected then \
information flows from the parent to the child.\n\nThe results of the \
analysis may be optionally filtered by object classes and/or permissions, \
intermediate types, or an end type regular expression.\n\nNOTE: For any \
given generation, if the parent and the child are the same, you cannot \
open the child. This avoids cyclic analyses.\n\nFor additional help on \
this topic select \"Information Flow Analysis\" from the help menu."
variable root_text "\n\nThis tab provides the results of a Transitive Information Flow analysis \
beginning from the starting type selected above. The results of the analysis \
are presented in tree form with the root of the tree (this node) being the \
start point for the analysis.\n\nEach child node in the tree represents a type \
in the current policy for which there is a transitive information flow to or \
from (depending on your selection above) its parent node.\n\nNOTE: For any \
given generation, if the parent and the child are the same, you cannot open \
the child. This avoids cyclic analyses.\n\n"
variable in_button
variable out_button
variable entry_end
variable cb_attrib
variable find_flows_Dlg
set find_flows_Dlg .find_flows_Dlg
variable find_flows_results_Dlg
set find_flows_results_Dlg .find_flows_results_Dlg
variable progressDlg
set progressDlg .progress
# Array to hold multiple instances of the advanced filters dialog
variable f_opts
# Advanced filter dialog widget
variable advanced_filter_Dlg
set advanced_filter_Dlg .apol_fulflow_advanced_filter_Dlg
# Find more paths variables
variable time_limit_hr "0"
variable time_limit_min "0"
variable time_limit_sec "30"
variable flow_limit_num "20"
variable time_exp_lbl
variable num_found_lbl
variable find_flows_start 0
# button variables
variable endtype_sel 0
variable in_button_sel 0
variable out_button_sel 0
variable display_attrib_sel 0
# tree variables
variable fulflow_tree ""
variable fulflow_info_text ""
# display variables
variable start_type ""
variable end_type ""
variable display_attribute ""
variable flow_direction ""
# defined tag names for output
variable title_tag TITLE
variable title_type_tag TITLE_TYPE
variable subtitle_tag SUBTITLES
variable rules_tag RULES
variable counters_tag COUNTERS
variable types_tag TYPE
variable find_flows_tag FLOWS
variable disabled_rule_tag DISABLE_RULE
variable abort_trans_analysis 0
variable orig_cursor ""
variable excluded_tag " (Excluded)"
variable progressmsg ""
variable progress_indicator -1
variable start_time
## Within the namespace command for the module, you must call Apol_Analysis::register_analysis_modules,
## the first argument is the namespace name of the module, and the second is the
## descriptive display name you want to be displayed in the GUI selection box.
Apol_Analysis::register_analysis_modules "Apol_Analysis_fulflow" "Transitive Information Flow"
}
proc Apol_Analysis_fulflow::get_short_name {} {
return "Trans Flow"
}
## Apol_Analysis_fulflow::initialize is called when the tool first starts up. The
## analysis has the opportunity to do any additional initialization it must do
## that wasn't done in the initial namespace eval command.
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::initialize
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::initialize { } {
Apol_Analysis_fulflow::reset_variables
if {[ApolTop::is_policy_open]} {
# Have the attributes checkbutton OFF by default
set Apol_Analysis_fulflow::display_attrib_sel 0
Apol_Analysis_fulflow::config_attrib_comboBox_state
Apol_Analysis_fulflow::change_types_list
# By default have the in button pressed
set Apol_Analysis_fulflow::in_button_sel 1
$Apol_Analysis_fulflow::in_button select
Apol_Analysis_fulflow::in_button_press
set Apol_Analysis_fulflow::endtype_sel 0
Apol_Analysis_fulflow::config_endtype_state
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::get_analysis_info
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::get_analysis_info {} {
return $Apol_Analysis_fulflow::info_button_text
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::get_results_raised_tab
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::get_results_raised_tab {} {
return $Apol_Analysis_fulflow::fulflow_info_text
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::verify_options
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::verify_options {} {
variable start_type
variable end_type
variable endtype_sel
variable fulflow_tree
variable fulflow_info_text
variable flow_direction
variable advanced_filter_Dlg
variable f_opts
if {![info exists f_opts]} { return 0 }
if {$f_opts($advanced_filter_Dlg,filtered_excl_types) != "" && $start_type != ""} {
if {[lsearch $f_opts($advanced_filter_Dlg,filtered_excl_types) $start_type] != -1} {
set err "Advanced filter cannot exclude start type ($start_type) from analysis"
tk_messageBox -icon error -type ok -title "Error" -message $err
return -code error $err
}
} else { return 0 }
}
## Command Apol_Analysis_fulflow::do_analysis is the principal interface command.
## The GUI will call this when the module is to perform it's analysis. The
## module should know how to get its own option information (the options
## are displayed via ::display_mod_options
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::do_analysis
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::do_analysis { results_frame } {
variable start_type
variable end_type
variable endtype_sel
variable fulflow_tree
variable fulflow_info_text
variable flow_direction
variable advanced_filter_Dlg
variable f_opts
# if a permap is not loaded then load the default permap
# if an error occurs on open, then skip analysis
set rt [catch {Apol_Analysis_fulflow::load_default_perm_map} err]
if {$rt != 0} {
return -code error $err
}
# If the advanced options object doesn't exist, then create it.
if {![array exists f_opts] || [array names f_opts "$advanced_filter_Dlg,name"] == ""} {
Apol_Analysis_fulflow::advanced_filters_create_object $advanced_filter_Dlg
}
# Initialize local variables
set num_object_classes 0
set perm_options ""
set objects_sel "0"
set filter_types "0"
foreach class $f_opts($advanced_filter_Dlg,class_list) {
set perms ""
# Make sure to strip out just the class name, as this may be an
# excluded class, which has the " (Excluded)" tag appended to its' name.
set idx [string first $Apol_Analysis_fulflow::excluded_tag $class]
if {$idx == -1} {
set class_elements [array names f_opts "$advanced_filter_Dlg,perm_status_array,$class,*"]
set exclude_perm_added 0
foreach element $class_elements {
set perm [lindex [split $element ","] 3]
# These are manually set to be included, so skip.
if {![string equal $f_opts($element) "exclude"]} {
continue
}
# If we get to this point, then the permission was either manually excluded,
# excluded because it's weight falls below the threshhold value, or both.
if {$exclude_perm_added == 0} {
incr num_object_classes
set perm_options [lappend perm_options $class]
set exclude_perm_added 1
}
set perms [lappend perms $perm]
}
if {$perms != ""} {
set perm_options [lappend perm_options [llength $perms]]
foreach perm $perms {
set perm_options [lappend perm_options $perm]
}
}
} else {
set class [string range $class 0 [expr $idx - 1]]
set perm_options [lappend perm_options $class]
# Appending 0 for the number of permissions indicates to the
# lower-level code to exclude the entire object class from the
# results
set perm_options [lappend perm_options 0]
incr num_object_classes
}
}
if {$num_object_classes} {
set objects_sel "1"
}
if {$f_opts($advanced_filter_Dlg,filtered_excl_types) != ""} {
set filter_types "1"
}
Apol_Analysis_fulflow::display_progressDlg
set rt [catch {set results [apol_TransitiveFlowAnalysis \
$start_type \
$flow_direction \
$objects_sel \
$num_object_classes \
$endtype_sel \
$end_type \
$perm_options \
$filter_types \
$f_opts($advanced_filter_Dlg,filtered_excl_types) \
$f_opts($advanced_filter_Dlg,threshhold_cb_value) \
$f_opts($advanced_filter_Dlg,threshhold_value)]} err]
if {$rt != 0} {
Apol_Analysis_fulflow::destroy_progressDlg
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -code error $err
}
set query_args [list \
$start_type \
$flow_direction \
$objects_sel \
$num_object_classes \
$endtype_sel \
$end_type \
$perm_options \
$filter_types \
$f_opts($advanced_filter_Dlg,filtered_excl_types) \
$f_opts($advanced_filter_Dlg,threshhold_cb_value) \
$f_opts($advanced_filter_Dlg,threshhold_value)]
set fulflow_tree [Apol_Analysis_fulflow::create_resultsDisplay $results_frame]
set rt [catch {Apol_Analysis_fulflow::create_result_tree_structure $fulflow_tree $results $query_args} err]
if {$rt != 0} {
Apol_Analysis_fulflow::destroy_progressDlg
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -code error $err
}
Apol_Analysis_fulflow::destroy_progressDlg
set Apol_Analysis_fulflow::progress_indicator -1
return 0
}
## Apol_Analysis_fulflow::close must exist; it is called when a policy is closed.
## Typically you should reset any context or option variables you have.
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::close
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::close { } {
Apol_Analysis_fulflow::reset_variables
$Apol_Analysis_fulflow::comment_text delete 1.0 end
$Apol_Analysis_fulflow::combo_attribute configure -state disabled \
-entrybg $ApolTop::default_bg_color
$Apol_Analysis_fulflow::combo_attribute configure -values ""
set Apol_Analysis_fulflow::endtype_sel 0
Apol_Analysis_fulflow::config_endtype_state
Apol_Analysis_fulflow::advanced_filters_destroy_dialog $Apol_Analysis_fulflow::advanced_filter_Dlg
Apol_Analysis_fulflow::advanced_filters_destroy_object $Apol_Analysis_fulflow::advanced_filter_Dlg
return 0
}
## Apol_Analysis_fulflow::open must exist; it is called when a policy is opened.
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::open
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::open { } {
variable in_button
variable cb_attrib
Apol_Analysis_fulflow::advanced_filters_destroy_all_dialogs_on_open
Apol_Analysis_fulflow::populate_ta_list
set in_button_sel 1
$in_button select
Apol_Analysis_fulflow::in_button_press
Apol_Analysis_fulflow::config_attrib_comboBox_state
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::load_advanced_filters_options
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::load_advanced_filters_options {query_options curr_idx path_name parentDlg} {
variable f_opts
# Destroy the current advanced options object
Apol_Analysis_fulflow::advanced_filters_destroy_object $path_name
# Create a new advanced options object
Apol_Analysis_fulflow::advanced_filters_create_object $path_name
# Set our counter variable to the next element in the query options list, which is now the 8th element
# We need a counter variable at this point because we start to parse list elements.
set i $curr_idx
# ignore an empty list, which is indicated by '{}'
if {[lindex $query_options $i] != "\{\}"} {
# we have to pretend to parse a list here since this is a string and not a TCL list.
# First, filter out the open bracket
set split_list [split [lindex $query_options $i] "\{"]
# An empty list element will be generated because the first character '{' of string
# is in splitChars, so we ignore the first element of the split list.
set perm_status_list [lappend perm_status_list [lindex $split_list 1]]
# Update our counter variable to the next element in the query options list
set i [expr $i + 1]
# Loop through the query list, trying to split each element by a close bracket, in order to see
# if this is the last element of the permission status list. If the '}' delimter is found in the
# element, then the length of the list returned by the TCL split command is greater than 1. At
# this point, we then break out of the while loop and then parse this last element of the query
# options list.
while {[llength [split [lindex $query_options $i] "\}"]] == 1} {
set perm_status_list [lappend perm_status_list [lindex $query_options $i]]
# Increment to the next element in the query options list
incr i
}
# This is the end of the list, so grab the first element of the split list, since the last
# element of split list is an empty list element because the last char of the element is a '}'.
set perm_status_list [lappend perm_status_list [lindex [split [lindex $query_options $i] "\}"] 0]]
# OK, now that we have list of class,permission and perm status,
# filter out permissions that do not exist in the policy.
for {set j 0} {$j < [llength $perm_status_list]} {incr j} {
set elements [split [lindex $perm_status_list $j] ","]
set class_name [lindex $elements 0]
if {[lsearch -exact $f_opts($path_name,class_list) $class_name] == -1} {
puts "Invalid class: $class_name.....ignoring."
continue
}
set perm [lindex $elements 1]
set rt [catch {set perms_list [apol_GetPermsByClass $class_name 1]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message $err \
-parent $parentDlg
}
if {[lsearch -exact $perms_list $perm] == -1} {
puts "Invalid permission: $perm.....ignoring."
continue
}
# This is a valid class and permission for the currently loaded policy.
# Get the element name to the perm array list
set element [lindex $perm_status_list $j]
incr j
# Get the perm status value from the list
set val [lindex $perm_status_list $j]
set str "$path_name,perm_status_array,$element"
set f_opts($str) $val
}
}
# Now we're ready to parse the excluded intermediate types list
incr i
set invalid_types ""
# ignore an empty list, which is indicated by '{}'
if {[lindex $query_options $i] != "\{\}"} {
# we have to pretend to parse a list here since this is a string and not a TCL list.
# First, filter out the open bracket
set split_list [split [lindex $query_options $i] "\{"]
if {[llength $split_list] == 1} {
# Validate that the type exists in the loaded policy.
if {[lsearch -exact $Apol_Types::typelist [lindex $query_options $i]] != -1} {
set f_opts($path_name,master_excl_types_list) [lindex $query_options $i]
} else {
set invalid_types [lappend invalid_types [lindex $query_options $i]]
}
} else {
# An empty list element will be generated because the first character '{' of string
# is in splitChars, so we ignore the first element of the split list.
# Validate that the type exists in the loaded policy.
if {[lsearch -exact $Apol_Types::typelist [lindex $split_list 1]] != -1} {
set f_opts($path_name,master_excl_types_list) [lappend f_opts($path_name,master_excl_types_list) \
[lindex $split_list 1]]
} else {
set invalid_types [lappend invalid_types [lindex $split_list 1]]
}
# Update our counter variable to the next element in the query options list
set i [expr $i + 1]
# Loop through the query list, trying to split each element by a close bracket, in order to see
# if this is the last element of the permission status list. If the '}' delimter is found in the
# element, then the length of the list returned by the TCL split command is greater than 1. At
# this point, we then break out of the while loop and then parse this last element of the query
# options list.
while {[llength [split [lindex $query_options $i] "\}"]] == 1} {
# Validate that the type exists in the loaded policy.
if {[lsearch -exact $Apol_Types::typelist [lindex $query_options $i]] != -1} {
set f_opts($path_name,master_excl_types_list) [lappend f_opts($path_name,master_excl_types_list) \
[lindex $query_options $i]]
} else {
set invalid_types [lappend invalid_types [lindex $query_options $i]]
}
# Increment to the next element in the query options list
incr i
}
# This is the end of the list, so grab the first element of the split list, since the last
# element of split list is an empty list element because the last char of the element is a '}'.
set end_element [lindex [split [lindex $query_options $i] "\}"] 0]
# Validate that the type exists in the loaded policy.
if {[lsearch -exact $Apol_Types::typelist $end_element] != -1} {
set f_opts($path_name,master_excl_types_list) [lappend f_opts($path_name,master_excl_types_list) \
$end_element]
} else {
set invalid_types [lappend invalid_types $end_element]
}
set idx [lsearch -exact $f_opts($path_name,master_excl_types_list) "self"]
if {$idx != -1} {
set f_opts($path_name,master_excl_types_list) [lreplace $f_opts($path_name,master_excl_types_list) \
$idx $idx]
}
}
}
# Display a popup with a list of invalid types
if {$invalid_types != ""} {
puts "The following types do not exist in the currently \
loaded policy and were ignored:\n\n"
foreach type $invalid_types {
puts "$type\n"
}
}
# We now have populated both master types list. We now need to remove
# items from the included list that exist in the excluded list.
# The master include intermeditate types list has already been initialized
# when we created the object.
set tmp_list $f_opts($path_name,master_incl_types_list)
foreach type $tmp_list {
if {$type != "self"} {
# Search the master excluded inter types list to see if we need
# to remove this type from the master included inter types list.
set idx [lsearch -exact $f_opts($path_name,master_excl_types_list) $type]
if {$idx != -1} {
# Type was found in the excluded list, so remove from master included list
set idx [lsearch -exact $f_opts($path_name,master_incl_types_list) $type]
# We don't check if the idx is -1 because we know it exists in the list
set f_opts($path_name,master_incl_types_list) \
[lreplace $f_opts($path_name,master_incl_types_list) \
$idx $idx]
}
}
}
# We will filter the list that is displayed later based upon the attribute settings when we update the dialog.
set f_opts($path_name,filtered_incl_types) $f_opts($path_name,master_incl_types_list)
set f_opts($path_name,filtered_excl_types) $f_opts($path_name,master_excl_types_list)
# Update our counter variable to the next element in the query options list
incr i
if {[lindex $query_options $i] != "\{\}"} {
set tmp [string trim [lindex $query_options $i] "\{\}"]
if {[lsearch -exact $Apol_Types::attriblist $tmp] != -1} {
set f_opts($path_name,incl_attrib_combo_value) $tmp
} else {
tk_messageBox -icon warning -type ok -title "Warning" \
-message "The specified attribute $tmp does not exist in the currently \
loaded policy. It will be ignored." \
-parent $parentDlg
}
}
incr i
if {[lindex $query_options $i] != "\{\}"} {
set tmp [string trim [lindex $query_options $i] "\{\}"]
if {[lsearch -exact $Apol_Types::attriblist $tmp] != -1} {
set f_opts($path_name,excl_attrib_combo_value) $tmp
} else {
tk_messageBox -icon warning -type ok -title "Warning" \
-message "The specified attribute $tmp does not exist in the currently \
loaded policy. It will be ignored." \
-parent $parentDlg
}
}
incr i
set f_opts($path_name,incl_attrib_cb_sel) [lindex $query_options $i]
incr i
set f_opts($path_name,excl_attrib_cb_sel) [lindex $query_options $i]
incr i
# This means that there are more saved options to parse. As of apol version 1.3, all newly
# added options are name:value pairs. This will make this proc more readable and easier to
# extend should we add additional query options in future releases.
if {[string equal [lindex $query_options $i] "threshhold_cb_value"]} {
incr i
set f_opts($path_name,threshhold_cb_value) [lindex $query_options $i]
incr i
}
if {[string equal [lindex $query_options $i] "threshhold_value"]} {
incr i
set f_opts($path_name,threshhold_value) [lindex $query_options $i]
}
Apol_Analysis_fulflow::advanced_filters_update_dialog $path_name
return $i
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::load_query_options
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::load_query_options { file_channel parentDlg } {
variable endtype_sel
variable in_button_sel
variable out_button_sel
variable display_attrib_sel
variable start_type
variable end_type
variable display_attribute
variable flow_direction
variable comment_text
variable advanced_filter_Dlg
variable f_opts
set query_options ""
set query_options_tmp ""
set path_name $advanced_filter_Dlg
$comment_text delete 1.0 end
while {[eof $file_channel] != 1} {
gets $file_channel line
set tline [string trim $line]
# Skip empty lines
if {$tline == ""} {
continue
} elseif {[string compare -length 1 $tline "#"] == 0} {
$comment_text insert end "[string range $tline 1 end]\n"
continue
}
set query_options_tmp [lappend query_options_tmp $tline]
}
if {$query_options_tmp == ""} {
return -code error "No query parameters were found."
}
# Re-format the query options list into a string where all elements are seperated
# by a single space. Then split this string into a list using space and colon characters
# as the delimeters.
set query_options_tmp [split [join $query_options_tmp " "] " :"]
set query_options [ApolTop::strip_list_of_empty_items $query_options_tmp]
if {$query_options == ""} {
return -code error "No query parameters were found."
}
# Query options variables
set endtype_sel [lindex $query_options 0]
set in_button_sel [lindex $query_options 1]
set out_button_sel [lindex $query_options 2]
if {[lindex $query_options 5] != "\{\}"} {
set end_type [string trim [lindex $query_options 5] "\{\}"]
}
if {[lindex $query_options 6] != "\{\}"} {
set tmp [string trim [lindex $query_options 6] "\{\}"]
if {[lsearch -exact $Apol_Types::attriblist $tmp] != -1} {
set display_attribute $tmp
set display_attrib_sel [lindex $query_options 3]
} else {
tk_messageBox -icon warning -type ok -title "Warning" \
-message "The specified attribute $tmp does not exist in the currently\
loaded policy. It will be ignored." \
-parent $parentDlg
}
}
set flow_direction [string trim [lindex $query_options 7] "\{\}"]
set i 8
set i [Apol_Analysis_fulflow::load_advanced_filters_options $query_options \
$i $path_name $parentDlg]
Apol_Analysis_fulflow::config_endtype_state
Apol_Analysis_fulflow::config_attrib_comboBox_state
# We set the start type parameter here because Apol_Analysis_fulflow::config_attrib_comboBox_state
# clears the start type before changing the start types list.
if {[lindex $query_options 4] != "\{\}"} {
set tmp [string trim [lindex $query_options 4] "\{\}"]
# Validate that the type exists in the loaded policy.
if {[lsearch -exact $Apol_Types::typelist $tmp] != -1} {
set start_type $tmp
} else {
tk_messageBox -icon warning -type ok -title "Warning" \
-message "The specified type starting source domain type $tmp does not exist in the currently \
loaded policy. It will be ignored." \
-parent $parentDlg
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::save_query_options
# - module_name - name of the analysis module
# - file_channel - file channel identifier of the query file to write to.
# - file_name - name of the query file
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::save_query_options {module_name file_channel file_name} {
variable endtype_sel
variable in_button_sel
variable out_button_sel
variable display_attrib_sel
variable start_type
variable end_type
variable display_attribute
variable flow_direction
variable comment_text
variable combo_start
variable combo_attribute
variable entry_end
variable advanced_filter_Dlg
variable f_opts
# If the advanced options object has not been created, then create
if {![array exists f_opts] || [array names f_opts "$advanced_filter_Dlg,name"] == ""} {
Apol_Analysis_fulflow::advanced_filters_create_object $advanced_filter_Dlg
}
set start_type [$combo_start cget -text]
set display_attribute [$combo_attribute cget -text]
set end_type [$entry_end cget -text]
set class_perms_list_tmp [array get f_opts "$advanced_filter_Dlg,perm_status_array,*"]
set class_perms_list ""
set len [llength $class_perms_list_tmp]
set idx [string length "$advanced_filter_Dlg,perm_status_array,"]
for {set i 0} {$i < $len} {incr i} {
set str [string range [lindex $class_perms_list_tmp $i] $idx end]
incr i
set class_perms_list [lappend class_perms_list $str [lindex $class_perms_list_tmp $i]]
}
set options [list \
$endtype_sel \
$in_button_sel \
$out_button_sel \
$display_attrib_sel \
$start_type \
$end_type \
$display_attribute \
$flow_direction \
$class_perms_list \
$f_opts($advanced_filter_Dlg,master_excl_types_list) \
$f_opts($advanced_filter_Dlg,incl_attrib_combo_value) \
$f_opts($advanced_filter_Dlg,excl_attrib_combo_value) \
$f_opts($advanced_filter_Dlg,incl_attrib_cb_sel) \
$f_opts($advanced_filter_Dlg,excl_attrib_cb_sel) \
"threshhold_cb_value:$f_opts($advanced_filter_Dlg,threshhold_cb_value)" \
"threshhold_value:$f_opts($advanced_filter_Dlg,threshhold_value)"]
puts $file_channel "$module_name"
# Dump the query comments text out to the file
set comments [string trim [$comment_text get 1.0 end]]
foreach comment [split $comments "\n\r"] {
puts $file_channel "#$comment"
}
puts $file_channel "$options"
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::get_current_results_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::get_current_results_state { } {
variable endtype_sel
variable in_button_sel
variable out_button_sel
variable display_attrib_sel
variable start_type
variable end_type
variable display_attribute
variable flow_direction
# widget variables
variable comment_text
variable fulflow_tree
variable fulflow_info_text
variable advanced_filter_Dlg
variable f_opts
# If the advanced options object has not been created, then create
if {![array exists f_opts] || [array names f_opts "$advanced_filter_Dlg,name"] == ""} {
Apol_Analysis_fulflow::advanced_filters_create_object $advanced_filter_Dlg
}
set comments "[string trim [$comment_text get 1.0 end]]"
set class_perms_list [array get f_opts "$advanced_filter_Dlg,perm_status_array,*"]
set options [list \
$fulflow_tree \
$fulflow_info_text \
$endtype_sel \
$in_button_sel \
$out_button_sel \
$display_attrib_sel \
$start_type \
$end_type \
$display_attribute \
$flow_direction \
$class_perms_list \
$f_opts($advanced_filter_Dlg,filtered_incl_types) \
$f_opts($advanced_filter_Dlg,filtered_excl_types) \
$f_opts($advanced_filter_Dlg,master_incl_types_list) \
$f_opts($advanced_filter_Dlg,master_excl_types_list) \
$f_opts($advanced_filter_Dlg,incl_attrib_combo_value) \
$f_opts($advanced_filter_Dlg,excl_attrib_combo_value) \
$f_opts($advanced_filter_Dlg,incl_attrib_cb_sel) \
$f_opts($advanced_filter_Dlg,excl_attrib_cb_sel) \
$comments]
return $options
}
## Apol_Analysis_fulflow::set_display_to_results_state is called to reset the options
## or any other context that analysis needs when the GUI switches back to an
## existing analysis. options is a list that we created in a previous
## get_current_results_state() call.
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::set_display_to_results_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::set_display_to_results_state { query_options } {
variable fulflow_tree
variable fulflow_info_text
variable endtype_sel
variable in_button_sel
variable out_button_sel
variable display_attrib_sel
variable start_type
variable end_type
variable display_attribute
variable flow_direction
variable comment_text
variable advanced_filter_Dlg
variable f_opts
# widget variables
set fulflow_tree [lindex $query_options 0]
set fulflow_info_text [lindex $query_options 1]
# Query options variables
set endtype_sel [lindex $query_options 2]
set in_button_sel [lindex $query_options 3]
set out_button_sel [lindex $query_options 4]
set display_attrib_sel [lindex $query_options 5]
# We set start type (6) below; so skip for now.
set end_type [lindex $query_options 7]
set display_attribute [lindex $query_options 8]
set flow_direction [lindex $query_options 9]
# At this point we need to handle the data used by the advanced foward DTA options dialog.
# If the advanced options object doesn't exist, then create it.
if {![array exists f_opts] || [array names f_opts "$advanced_filter_Dlg,name"] == ""} {
Apol_Analysis_fulflow::advanced_filters_create_object $advanced_filter_Dlg
}
set obj_perms_list [lindex $query_options 10]
set len [llength $obj_perms_list]
if {$len > 0} {
array unset f_opts "$advanced_filter_Dlg,perm_status_array,*"
}
for {set i 0} {$i < $len} {incr i} {
set element [lindex $obj_perms_list $i]
incr i
set val [lindex $obj_perms_list $i]
set f_opts($element) $val
}
set f_opts($advanced_filter_Dlg,filtered_incl_types) [lindex $query_options 11]
set f_opts($advanced_filter_Dlg,filtered_excl_types) [lindex $query_options 12]
set f_opts($advanced_filter_Dlg,master_incl_types_list) [lindex $query_options 13]
set f_opts($advanced_filter_Dlg,master_excl_types_list) [lindex $query_options 14]
set f_opts($advanced_filter_Dlg,incl_attrib_combo_value) [lindex $query_options 15]
set f_opts($advanced_filter_Dlg,excl_attrib_combo_value) [lindex $query_options 16]
set f_opts($advanced_filter_Dlg,incl_attrib_cb_sel) [lindex $query_options 17]
set f_opts($advanced_filter_Dlg,excl_attrib_cb_sel) [lindex $query_options 18]
# Fill in the query comments text widget
$comment_text delete 1.0 end
$comment_text insert end [lindex $query_options 19]
Apol_Analysis_fulflow::config_endtype_state
Apol_Analysis_fulflow::config_attrib_comboBox_state
# We set the start type parameter here because Apol_Analysis_fulflow::config_attrib_comboBox_state
# clears the start type before changing the start types list.
set start_type [lindex $query_options 6]
set f_opts($advanced_filter_Dlg,filter_vars_init) 1
if {[winfo exists $advanced_filter_Dlg]} {
set rt [catch {Apol_Analysis_fulflow::advanced_filters_update_dialog $advanced_filter_Dlg} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
raise $advanced_filter_Dlg
focus $advanced_filter_Dlg
}
return 0
}
## Apol_Analysis_fulflow::free_results_data is called to destroy subwidgets
# under a results frame as well as free any data associated with them.
# results_widgets is a list that we created in a previous get_current_results_state() call,
# from which we extract the subwidget pathnames for the results frame.
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::free_results_data
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::free_results_data {query_options} {
set fulflow_tree [lindex $query_options 10]
set fulflow_info_text [lindex $query_options 11]
if {[winfo exists $fulflow_tree]} {
$fulflow_tree delete [$fulflow_tree nodes root]
if {[$fulflow_tree nodes root] != ""} {
return -1
}
destroy $fulflow_tree
}
if {[winfo exists $fulflow_info_text]} {
$fulflow_info_text delete 0.0 end
destroy $fulflow_info_text
}
return 0
}
#################################################################################
#################################################################################
##
## The rest of these procs are not interface procedures, but rather internal
## functions to this analysis.
##
#################################################################################
#################################################################################
proc Apol_Analysis_fulflow::display_progressDlg {} {
variable progressDlg
set Apol_Analysis_fulflow::progressmsg "Performing transitive information flow analysis..."
set progressBar [ProgressDlg $progressDlg \
-parent $ApolTop::mainframe \
-textvariable Apol_Analysis_fulflow::progressmsg \
-variable Apol_Analysis_fulflow::progress_indicator \
-maximum 3 \
-width 45]
update
bind $progressBar <<AnalysisStarted>> {
set Apol_Analysis_fulflow::progress_indicator [expr $Apol_Analysis_fulflow::progress_indicator + 1]
}
# TODO: generate virtual events to place onto Tcl's event queue, to capture progress.
#event generate $Apol_Analysis_fulflow::progressDlg <<AnalysisStarted>> -when head
return 0
}
proc Apol_Analysis_fulflow::destroy_progressDlg {} {
variable progressDlg
if {[winfo exists $progressDlg]} {
destroy $progressDlg
}
return 0
}
proc Apol_Analysis_fulflow::treeSelect {fulflow_tree fulflow_info_text node} {
# Set the tree selection to the current node.
$fulflow_tree selection set $node
if {$node == [$fulflow_tree nodes root]} {
Apol_Analysis_fulflow::display_root_type_info $node $fulflow_info_text $fulflow_tree
Apol_Analysis_fulflow::formatInfoText $fulflow_info_text
} else {
Apol_Analysis_fulflow::insert_transitive_flows_header $fulflow_info_text $fulflow_tree $node
Apol_Analysis_fulflow::render_information_flows $fulflow_info_text $fulflow_tree $node
Apol_Analysis_fulflow::formatInfoText $fulflow_info_text
}
ApolTop::makeTextBoxReadOnly $fulflow_info_text
return 0
}
# Procedure to do elapsed time formatting
proc Apol_Analysis_fulflow::convert_seconds {sec} {
set hours [expr {$sec / 3600}]
set minutes [expr {$sec / 60 - $hours * 60}]
set seconds [expr {$sec - $minutes * 60 - $hours * 3600}]
return [format "%02s:%02s:%02s" $hours $minutes $seconds]
}
###########################################################################
# ::display_find_more_flows_Dlg
#
proc Apol_Analysis_fulflow::display_find_more_flows_Dlg {} {
variable find_flows_Dlg
variable fulflow_tree
variable find_flows_start
variable find_flows_results_Dlg
if {$find_flows_start} {
tk_messageBox -icon error -type ok -title "Error" -message "You must first abort the current search."
raise $find_flows_results_Dlg
return -1
}
if {[winfo exists $find_flows_Dlg]} {
destroy $find_flows_Dlg
}
set src_node [$fulflow_tree parent [$fulflow_tree selection get]]
set tgt_node [$fulflow_tree selection get]
set Apol_Analysis_fulflow::abort_trans_analysis 0
# Create the top-level dialog and subordinate widgets
toplevel $find_flows_Dlg
wm withdraw $find_flows_Dlg
wm title $find_flows_Dlg "Find more flows"
wm protocol $find_flows_Dlg WM_DELETE_WINDOW " "
# Create frames
set topf [frame $find_flows_Dlg.topf]
set nodes_f [frame $topf.nodes_f]
set time_f [frame $topf.time_f]
set path_limit_f [frame $topf.path_limit_f]
set button_f [frame $topf.button_f]
set src_lbl [label $nodes_f.src_lbl -text "Source: [$fulflow_tree itemcget $src_node -text]"]
set tgt_lbl [label $nodes_f.tgt_lbl -text "Target: [$fulflow_tree itemcget $tgt_node -text]"]
# Create time limit widgets
set time_lbl [label $time_f.time_lbl -text "Time Limit:"]
set hrs_lbl [label $time_f.hrs_lbl -text "Hour(s)"]
set min_lbl [label $time_f.min_lbl -text "Minute(s)"]
set sec_lbl [label $time_f.sec_lbl -text "Second(s)"]
set time_entry_hour [Entry $time_f.time_entry_hour -editable 1 -width 5 \
-textvariable Apol_Analysis_fulflow::time_limit_hr -bg white]
set time_entry_min [Entry $time_f.time_entry_min -editable 1 -width 5 \
-textvariable Apol_Analysis_fulflow::time_limit_min -bg white]
set time_entry_sec [Entry $time_f.time_entry_sec -editable 1 -width 5 \
-textvariable Apol_Analysis_fulflow::time_limit_sec -bg white]
# Create path limit widgets
set path_limit_lbl [label $path_limit_f.path_limit_lbl -text "Limit by these number of flows:"]
set path_limit_entry [Entry $path_limit_f.path_limit_entry -editable 1 -width 5 \
-textvariable Apol_Analysis_fulflow::flow_limit_num -bg white]
# Create button widgets
set b_find [button $button_f.b_find -text "Find" -width 6 \
-command "Apol_Analysis_fulflow::find_more_flows $src_node $tgt_node"]
set b_cancel [button $button_f.b_cancel -text "Cancel" -width 6 \
-command "destroy $find_flows_Dlg"]
# Place widgets
pack $topf -fill both -expand yes -padx 10 -pady 10
pack $nodes_f $time_f $path_limit_f -side top -fill x -padx 2 -pady 2
pack $button_f -side bottom -padx 2 -pady 2 -anchor center
pack $src_lbl $tgt_lbl -side top -padx 2 -pady 2 -anchor nw
pack $time_lbl $time_entry_hour $hrs_lbl $time_entry_min $min_lbl $time_entry_sec $sec_lbl -side left -padx 1 -anchor nw
pack $path_limit_lbl $path_limit_entry -side left -padx 2 -anchor nw
pack $b_find $b_cancel -side left -padx 4 -anchor center
wm deiconify $find_flows_Dlg
focus $find_flows_Dlg
wm protocol $find_flows_Dlg WM_DELETE_WINDOW "destroy $find_flows_Dlg"
return 0
}
###########################################################################
# ::display_find_flows_results_Dlg
#
proc Apol_Analysis_fulflow::display_find_flows_results_Dlg {time_limit_str flow_limit_num} {
variable find_flows_results_Dlg
variable time_exp_lbl
variable num_found_lbl
if {[winfo exists $find_flows_results_Dlg]} {
destroy $find_flows_results_Dlg
}
# Create the top-level dialog and subordinate widgets
toplevel $find_flows_results_Dlg
wm withdraw $find_flows_results_Dlg
wm title $find_flows_results_Dlg "Flow results"
# Create frames
set topf [frame $find_flows_results_Dlg.topf]
set time_f [frame $topf.time_f]
set button_f [frame $topf.button_f]
set num_flows_f [frame $topf.num_flows_f]
set main_lbl [label $topf.time_lbl1 -text "Finding more flows:"]
set time_lbl1 [label $time_f.time_lbl1 -text "Time: "]
set time_exp_lbl [label $time_f.time_exp_lbl]
set time_lbl2 [label $time_f.time_lbl2 -text " elapsed out of $time_limit_str"]
set num_lbl1 [label $num_flows_f.num_lbl1 -text "Flows: found "]
set num_found_lbl [label $num_flows_f.num_found_lbl]
set num_lbl2 [label $num_flows_f.num_lbl2 -text " out of $flow_limit_num"]
set b_abort_transitive [button $button_f.b_abort_transitive -text "Stop" -width 6 \
-command "set Apol_Analysis_fulflow::abort_trans_analysis 1"]
pack $button_f -side bottom -padx 2 -pady 2 -anchor center
pack $topf -fill both -expand yes -padx 10 -pady 10
pack $main_lbl -side top -anchor nw -pady 2
pack $time_f $num_flows_f -side top -padx 15 -pady 2 -anchor nw
pack $b_abort_transitive -side left -fill both -expand yes -anchor center
pack $time_lbl1 $time_exp_lbl $time_lbl2 -side left -expand yes -anchor nw
pack $num_lbl1 $num_found_lbl $num_lbl2 -side left -expand yes -anchor nw
wm deiconify $find_flows_results_Dlg
wm transient $find_flows_results_Dlg $ApolTop::mainframe
catch {grab $find_flows_results_Dlg}
if {[winfo exists $find_flows_results_Dlg]} {
focus $find_flows_results_Dlg
}
update
return 0
}
###########################################################################
# ::find_more_flows_generate_virtual_events
#
proc Apol_Analysis_fulflow::find_more_flows_generate_virtual_events {} {
variable find_flows_results_Dlg
bind $find_flows_results_Dlg <<FindMoreFlowsStarted>> {
set elapsed_time [Apol_Analysis_fulflow::convert_seconds \
[expr [clock seconds] - $Apol_Analysis_fulflow::start_time]]
$Apol_Analysis_fulflow::time_exp_lbl configure -text $elapsed_time
}
# TODO: generate virtual events to place onto Tcl's event queue, to capture progress.
#event generate $find_flows_results_Dlg <<FindMoreFlowsStarted>> -when head
return 0
}
###########################################################################
# ::find_more_flows
#
proc Apol_Analysis_fulflow::find_more_flows {src_node tgt_node} {
variable fulflow_tree
variable time_limit_hr
variable time_limit_min
variable time_limit_sec
variable flow_limit_num
variable progressBar
variable fulflow_info_text
variable time_exp_lbl
variable num_found_lbl
variable find_flows_Dlg
variable find_flows_results_Dlg
variable find_flows_start
variable start_time
set time_limit_str [format "%02s:%02s:%02s" $time_limit_hr $time_limit_min $time_limit_sec]
if {$flow_limit_num == "" && $time_limit_str == "00:00:00"} {
tk_messageBox -icon error -type ok -title "Error" -message "You must specify a time limit."
raise $find_flows_Dlg
focus $find_flows_Dlg
return -1
} elseif {$flow_limit_num < 1} {
tk_messageBox -icon error -type ok -title "Error" -message "Number of flows cannot be less than 1."
raise $find_flows_Dlg
focus $find_flows_Dlg
return -1
}
if {$time_limit_hr != "" && [expr ($time_limit_hr > 24 || $time_limit_hr < 0)]} {
tk_messageBox -icon error -type ok -title "Error" -message "Invalid hours limit input. Must be between 0 and 24 inclusive."
raise $find_flows_Dlg
focus $find_flows_Dlg
return -1
}
if {$time_limit_min != "" && [expr ($time_limit_min > 59 || $time_limit_min < 0)]} {
tk_messageBox -icon error -type ok -title "Error" -message "Invalid minutes limit input. Must between 0-59 inclusive."
raise $find_flows_Dlg
focus $find_flows_Dlg
return -1
}
if {$time_limit_sec != "" && [expr ($time_limit_sec > 59 || $time_limit_sec < 0)]} {
tk_messageBox -icon error -type ok -title "Error" -message "Invalid seconds limit input. Must be between 0-59 inclusive."
raise $find_flows_Dlg
focus $find_flows_Dlg
return -1
}
if {[winfo exists $find_flows_Dlg]} {
destroy $find_flows_Dlg
}
set old_focus [focus]
Apol_Analysis_fulflow::display_find_flows_results_Dlg $time_limit_str $flow_limit_num
set Apol_Analysis_fulflow::abort_trans_analysis 0
set src_data [$fulflow_tree itemcget [$fulflow_tree nodes root] -data]
set src [$fulflow_tree itemcget $src_node -text]
wm protocol $find_flows_results_Dlg WM_DELETE_WINDOW "raise $find_flows_results_Dlg; focus $find_flows_results_Dlg"
set start_time [clock seconds]
set curr_flows_num 0
set find_flows_start 1
# Current time - start time = elapsed time
$time_exp_lbl configure -text [Apol_Analysis_fulflow::convert_seconds [expr [clock seconds] - $start_time]]
#Apol_Analysis_fulflow::find_more_flows_generate_virtual_events
$num_found_lbl configure -text $curr_flows_num
update
# The last query arguments were stored in the data for the root node
set rt [catch {apol_TransitiveFindPathsStart \
$src \
[lindex $src_data 1] \
[lindex $src_data 2] \
[lindex $src_data 3] \
1 \
"^[$fulflow_tree itemcget $tgt_node -text]$" \
[lindex $src_data 6] \
[lindex $src_data 7] \
[lindex $src_data 8] \
[lindex $src_data 9] \
[lindex $src_data 10]} err]
if {$rt != 0} {
if {[winfo exists $find_flows_results_Dlg]} {
destroy $find_flows_results_Dlg
}
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
while {1} {
# TODO: generate virtual events to place onto Tcl's event queue, to capture progress.
#event generate $find_flows_results_Dlg <<FindMoreFlowsStarted>> -when head
# Current time - start time = elapsed time
set elapsed_time [Apol_Analysis_fulflow::convert_seconds [expr [clock seconds] - $start_time]]
$time_exp_lbl configure -text $elapsed_time
if {$time_limit_str != "00:00:00" && [string equal $time_limit_str $elapsed_time]} {
break
}
# apol_TransitiveFindPathsNext will always stay the same or return a value greater
# than the current curr_flows_num value
set rt [catch {set curr_flows_num [apol_TransitiveFindPathsNext]} err]
if {$rt == -1} {
tk_messageBox -icon error -type ok -title "Error" -message $err
return -1
}
$num_found_lbl configure -text $curr_flows_num
if {$flow_limit_num != "" && $curr_flows_num >= $flow_limit_num} {
break
}
update
# Check to see if the user has pressed the abort button
if {$Apol_Analysis_fulflow::abort_trans_analysis} {
set find_flows_start 0
# Destroy the dialog and release the grab
if {[winfo exists $find_flows_results_Dlg]} {
grab release $find_flows_results_Dlg
destroy $find_flows_results_Dlg
catch {focus $old_focus}
}
# If there were flows found, then break out of loop so we can display
if {$curr_flows_num > 0} {break}
set rt [catch {apol_TransitiveFindPathsAbort} err]
if {$rt != 0} {
tk_messageBox -icon info -type ok -title "Abort Error" -message $err
return -1
}
return -1
}
}
set rt [catch {set results [apol_TransitiveFindPathsGetResults]} err]
if {$rt != 0} {
set find_flows_start 0
if {[winfo exists $find_flows_results_Dlg]} {
destroy $find_flows_results_Dlg
}
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
# Get # of target types (if none, then just draw the tree without child nodes)
# We skip index 0 b/c it is the starting type, which we already have.
set num_target_types [lindex $results 0]
if {$num_target_types} {
# Start form index 1. This should be the first target node if there were any target nodes returned.
set nextIdx [Apol_Analysis_fulflow::parseList_get_index_next_node 1 $results]
set data [lrange $results 1 [expr $nextIdx-1]]
$fulflow_tree itemconfigure $tgt_node -data $data
Apol_Analysis_fulflow::insert_more_flows_header $fulflow_info_text $fulflow_tree \
$src_node $tgt_node \
$time_limit_str $elapsed_time \
$flow_limit_num $curr_flows_num
Apol_Analysis_fulflow::render_information_flows $fulflow_info_text $fulflow_tree $tgt_node
Apol_Analysis_fulflow::formatInfoText $fulflow_info_text
}
set find_flows_start 0
if {[winfo exists $find_flows_results_Dlg]} {
grab release $find_flows_results_Dlg
destroy $find_flows_results_Dlg
catch {focus $old_focus}
}
return 0
}
###########################################################################
# ::display_root_type_info
#
proc Apol_Analysis_fulflow::display_root_type_info { source_type fulflow_info_text fulflow_tree } {
$fulflow_info_text configure -state normal
$fulflow_info_text delete 0.0 end
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "Transitive Information Flow Analysis: Starting type: "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end $source_type
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx $endIdx
# now add the standard text
$fulflow_info_text configure -wrap word
set start_idx [$fulflow_info_text index insert]
$fulflow_info_text insert end $Apol_Analysis_fulflow::root_text
$fulflow_info_text tag add ROOT_TEXT $start_idx end
$fulflow_info_text tag configure ROOT_TEXT -font $ApolTop::text_font
$fulflow_info_text see 1.0
$fulflow_info_text configure -state disabled
return 0
}
###########################################################################
# ::insert_more_flows_header
# - Called to insert the header text when displaying results from
# a find more flows search.
proc Apol_Analysis_fulflow::insert_more_flows_header {fulflow_info_text fulflow_tree src_node tgt_node time_limit_str elapsed_time flow_limit_num curr_flows_num} {
$fulflow_info_text configure -state normal
$fulflow_info_text delete 0.0 end
$fulflow_info_text mark set insert 1.0
$fulflow_info_text configure -wrap none
set data [$fulflow_tree itemcget $tgt_node -data]
if {$data == ""} {
$fulflow_info_text configure -state disabled
return ""
}
# The flow direction is embedded in the data store of the root node at index 1.
set query_args [$fulflow_tree itemcget [$fulflow_tree nodes root] -data]
set flow_direction [lindex $query_args 1]
if {$flow_direction == "in"} {
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "More Information Flows to "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " [$fulflow_tree itemcget $src_node -text]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " from "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "[$fulflow_tree itemcget $tgt_node -text]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
} elseif {$flow_direction == "out"} {
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "More Information Flows from "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "[$fulflow_tree itemcget $src_node -text]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " to "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "[$fulflow_tree itemcget $tgt_node -text]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
} else {
puts "Invalid flow direction ($flow_direction) specified!"
return
}
# Insert find more flows link
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " ("
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "Find more flows"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::find_flows_tag $startIdx $endIdx
$fulflow_info_text insert end ")"
# Insert time/flows limit strings
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "\n\nTime: $elapsed_time out of $time_limit_str"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "\n\nApol found the following number of information flows: "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end "$curr_flows_num"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end " out of "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end "$flow_limit_num"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
$fulflow_info_text configure -state disabled
return 0
}
###########################################################################
# ::insert_transitive_flows_header
# - Called to insert the header text when displaying results from
# a transitive flows search.
proc Apol_Analysis_fulflow::insert_transitive_flows_header {fulflow_info_text fulflow_tree node} {
$fulflow_info_text configure -state normal
$fulflow_info_text delete 0.0 end
$fulflow_info_text mark set insert 1.0
$fulflow_info_text configure -wrap none
set data [$fulflow_tree itemcget $node -data]
if {$data == ""} {
$fulflow_info_text configure -state disabled
return
}
set start_type [$fulflow_tree itemcget [$fulflow_tree parent $node] -text]
set startIdx [$fulflow_info_text index insert]
# Index 0 will be the end type
set currentIdx 0
set end_type [lindex $data $currentIdx]
# The flow direction is embedded in the data store of the root node at index 1.
set query_args [$fulflow_tree itemcget [$fulflow_tree nodes root] -data]
set flow_direction [lindex $query_args 1]
if {$flow_direction == "in"} {
$fulflow_info_text insert end "Information flows to "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end $start_type
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " from "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end $end_type
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx $endIdx
} elseif {$flow_direction == "out"} {
$fulflow_info_text insert end "Information flows from "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end $start_type
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " to "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_tag $startIdx $endIdx
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end $end_type
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::title_type_tag $startIdx $endIdx
set startIdx $endIdx
} else {
puts "Invalid flow direction ($flow_direction) specified!"
return
}
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " ("
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "Find more flows"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::find_flows_tag $startIdx $endIdx
$fulflow_info_text insert end ")"
# Index 1 will be the number of paths
set currentIdx 1
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "\n\nApol found the following number of information flows: "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
set num_paths [lindex $data $currentIdx]
$fulflow_info_text insert end $num_paths
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
$fulflow_info_text configure -state disabled
return 0
}
###########################################################################
# ::render_information_flows
# - This proc will insert any information flows found into the textbox.
# - NOTE: This procedure should be called after the header has been
# inserted using one of the two procs above. If these header procs
# are not called, the caller needs to first delete and configure
# the textbox.
proc Apol_Analysis_fulflow::render_information_flows {fulflow_info_text fulflow_tree node} {
$fulflow_info_text configure -state normal
set data [$fulflow_tree itemcget $node -data]
if {$data == ""} {
$fulflow_info_text configure -state disabled
return
}
# Index 1 will be the number of paths
set currentIdx 1
set num_paths [lindex $data $currentIdx]
for {set i 0} {$i<$num_paths} {incr i} {
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "\n\nFlow"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end " [expr $i+1] "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end "requires "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
# Increment to the number of flows
incr currentIdx
set num_flows [lindex $data $currentIdx]
$fulflow_info_text insert end $num_flows
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end " step(s)."
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
for {set j 0} {$j<$num_flows} {incr j} {
# First print the flow number
$fulflow_info_text insert end "\n\n\tStep "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end [expr $j + 1]
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::counters_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end ": "
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
$fulflow_info_text insert end "from "
# increment to the start type for the flow
incr currentIdx
$fulflow_info_text insert end [lindex $data $currentIdx]
$fulflow_info_text insert end " to "
# Increment to the end type for the flow
incr currentIdx
$fulflow_info_text insert end [lindex $data $currentIdx]
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
# Increment to the # of object classes
incr currentIdx
set num_classes [lindex $data $currentIdx]
for {set k 0} {$k<$num_classes} {incr k} {
# Increment to the first object class
incr currentIdx
$fulflow_info_text insert end "\n\t[lindex $data $currentIdx]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::subtitle_tag $startIdx $endIdx
set startIdx $endIdx
# Increment to the # of object class rules
incr currentIdx
set num_rules [lindex $data $currentIdx]
for {set l 0} {$l<$num_rules} {incr l} {
# Increment to the next rule for the object
incr currentIdx
set rule [lindex $data $currentIdx]
$fulflow_info_text insert end "\n\t"
set startIdx [$fulflow_info_text index insert]
# Get the line number only
set end_link_idx [string first "\]" [string trim $rule] 0]
set lineno [string range [string trim [string range $rule 0 $end_link_idx]] 1 end-1]
set lineno [string trim $lineno]
set rule [string range $rule [expr $end_link_idx + 1] end]
# Only display line number hyperlink if this is not a binary policy.
if {![ApolTop::is_binary_policy]} {
$fulflow_info_text insert end "\[$lineno\]"
Apol_PolicyConf::insertHyperLink $fulflow_info_text "$startIdx wordstart + 1c" "$startIdx wordstart + [expr [string length $lineno] + 1]c"
}
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end " $rule"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::rules_tag $startIdx $endIdx
incr currentIdx
# The next element should be the enabled boolean flag.
if {[lindex $data $currentIdx] == 0} {
$fulflow_info_text insert end " "
set startIdx [$fulflow_info_text index insert]
$fulflow_info_text insert end "\[Disabled\]"
set endIdx [$fulflow_info_text index insert]
$fulflow_info_text tag add $Apol_Analysis_fulflow::disabled_rule_tag $startIdx $endIdx
}
set startIdx [$fulflow_info_text index insert]
}
}
}
}
$fulflow_info_text see 1.0
$fulflow_info_text configure -state disabled
return 0
}
###########################################################################
# ::formatInfoText
#
proc Apol_Analysis_fulflow::formatInfoText { tb } {
$tb tag configure $Apol_Analysis_fulflow::title_tag -font {Helvetica 14 bold}
$tb tag configure $Apol_Analysis_fulflow::title_type_tag -foreground blue -font {Helvetica 14 bold}
$tb tag configure $Apol_Analysis_fulflow::subtitle_tag -font {Helvetica 11 bold}
$tb tag configure $Apol_Analysis_fulflow::rules_tag -font $ApolTop::text_font
$tb tag configure $Apol_Analysis_fulflow::counters_tag -foreground blue -font {Helvetica 11 bold}
$tb tag configure $Apol_Analysis_fulflow::types_tag -font $ApolTop::text_font
$tb tag configure $Apol_Analysis_fulflow::find_flows_tag -font {Helvetica 14 bold} -foreground blue -underline 1
$tb tag configure $Apol_Analysis_fulflow::disabled_rule_tag -foreground red
$tb tag bind $Apol_Analysis_fulflow::find_flows_tag <Button-1> "Apol_Analysis_fulflow::display_find_more_flows_Dlg"
$tb tag bind $Apol_Analysis_fulflow::find_flows_tag <Enter> { set Apol_Analysis_fulflow::orig_cursor [%W cget -cursor]; %W configure -cursor hand2 }
$tb tag bind $Apol_Analysis_fulflow::find_flows_tag <Leave> { %W configure -cursor $Apol_Analysis_fulflow::orig_cursor }
# Configure hyperlinking to policy.conf file
Apol_PolicyConf::configure_HyperLinks $tb
}
proc Apol_Analysis_fulflow::insert_src_type_node { fulflow_tree query_args} {
variable start_type
$fulflow_tree insert end root $start_type \
-text $start_type \
-open 1 \
-drawcross auto \
-data $query_args
return [$fulflow_tree nodes root]
}
proc Apol_Analysis_fulflow::create_target_type_nodes { parent fulflow_tree results_list } {
if { [file tail [$fulflow_tree parent $parent]] == [file tail $parent] } {
return
}
if { [$fulflow_tree nodes $parent] == "" } {
# Get # of target types (if none, then just draw the tree without child nodes)
# We skip index 0 b/c it is the starting type, which we already have.
set num_target_types [lindex $results_list 1]
# Set the index to 2. This should be the first target node if there were any target nodes returned.
set curentIdx 2
for { set x 0 } {$x < $num_target_types} { incr x } {
# if there are any target types, the next list element will be the first target node from the results list.
set target_name [lindex $results_list $curentIdx]
set nextIdx [Apol_Analysis_fulflow::parseList_get_index_next_node $curentIdx $results_list]
if {$nextIdx == -1} {
return -code error "Error parsing results. See stdout for more information."
}
set target_node "${parent}/${target_name}/"
$fulflow_tree insert end $parent $target_node \
-text $target_name \
-open 0 \
-drawcross allways \
-data [lrange $results_list $curentIdx [expr $nextIdx-1]]
set curentIdx $nextIdx
}
set nodes [lsort [$fulflow_tree nodes $parent]]
$fulflow_tree reorder $parent $nodes
$fulflow_tree configure -redraw 1
}
return 0
}
proc Apol_Analysis_fulflow::parseList_get_index_next_node { currentIdx results_list } {
# Increment to # paths
incr currentIdx
set num_paths [lindex $results_list $currentIdx]
if {![string is integer $num_paths]} {
return -1;
}
# for each flow in each path parse by all the types, objects, and rules
for {set i 0} {$i < $num_paths} {incr i} {
incr currentIdx
set num_flows [lindex $results_list $currentIdx]
if {![string is integer $num_flows]} {
return -1;
}
for {set j 0} {$j < $num_flows} {incr j} {
incr currentIdx 3
set num_objs [lindex $results_list $currentIdx]
if {![string is integer $num_objs]} {
return -1;
}
for {set k 0} {$k < $num_objs} {incr k} {
incr currentIdx 2
set num_rules [lindex $results_list $currentIdx]
if {![string is integer $num_rules]} {
return -1;
}
# We multiply the number of rules by 2 because each rule consists of:
# 1. rule string (includes line number)
# 2. enabled flag
incr currentIdx [expr $num_rules * 2]
}
}
}
incr currentIdx
return $currentIdx
}
proc Apol_Analysis_fulflow::create_result_tree_structure { fulflow_tree results_list query_args} {
set home_node [Apol_Analysis_fulflow::insert_src_type_node $fulflow_tree $query_args]
set rt [catch {Apol_Analysis_fulflow::create_target_type_nodes $home_node $fulflow_tree $results_list} err]
if {$rt != 0} {
return -code error $err
}
Apol_Analysis_fulflow::treeSelect \
$Apol_Analysis_fulflow::fulflow_tree $Apol_Analysis_fulflow::fulflow_info_text $home_node
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::do_child_analysis
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::do_child_analysis { fulflow_tree selected_node } {
ApolTop::setBusyCursor
Apol_Analysis_fulflow::display_progressDlg
if { [$fulflow_tree nodes $selected_node] == "" } {
# The last query arguments were stored in the data for the root node
set query_args [$fulflow_tree itemcget [$fulflow_tree nodes root] -data]
set start_t [file tail $selected_node]
set rt [catch {set results [apol_TransitiveFlowAnalysis \
$start_t \
[lindex $query_args 1] \
[lindex $query_args 2] \
[lindex $query_args 3] \
[lindex $query_args 4] \
[lindex $query_args 5] \
[lindex $query_args 6] \
[lindex $query_args 7] \
[lindex $query_args 8] \
[lindex $query_args 9] \
[lindex $query_args 10]]} err]
if {$rt != 0} {
Apol_Analysis_fulflow::destroy_progressDlg
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -code error
}
Apol_Analysis_fulflow::create_target_type_nodes $selected_node $fulflow_tree $results
}
Apol_Analysis_fulflow::destroy_progressDlg
ApolTop::resetBusyCursor
return 0
}
proc Apol_Analysis_fulflow::create_resultsDisplay { results_frame } {
variable fulflow_tree
variable fulflow_info_text
# set up paned window
set pw [PanedWindow $results_frame.pw -side top]
set pw_tree [$pw add]
set pw_info [$pw add -weight 5]
# title frames
set frm_tree [TitleFrame [$pw getframe 0].frm_tree -text "Transitive Information Flow Tree"]
set frm_info [TitleFrame [$pw getframe 1].frm_info -text "Transitive Information Flow Data"]
set sw_tree [ScrolledWindow [$frm_tree getframe].sw_tree -auto none]
set sw_info [ScrolledWindow [$frm_info getframe].sw_info -auto none]
# tree window
set fulflow_tree [Tree [$sw_tree getframe].fulflow_tree \
-relief flat -borderwidth 0 -highlightthickness 0 \
-redraw 0 -bg white -showlines 1 -padx 0 \
-opencmd {Apol_Analysis_fulflow::do_child_analysis $Apol_Analysis_fulflow::fulflow_tree}]
$sw_tree setwidget $fulflow_tree
# info window
set fulflow_info_text [text [$sw_info getframe].fulflow_info_text -wrap none -bg white -font $ApolTop::text_font]
$sw_info setwidget $fulflow_info_text
bind $fulflow_info_text <Enter> {focus %W}
pack $pw -fill both -expand yes -anchor nw
pack $frm_tree -fill both -expand yes -anchor nw
pack $frm_info -fill both -expand yes
pack $sw_tree -fill both -expand yes
pack $sw_info -fill both -expand yes
$fulflow_tree bindText <ButtonPress-1> {Apol_Analysis_fulflow::treeSelect \
$Apol_Analysis_fulflow::fulflow_tree $Apol_Analysis_fulflow::fulflow_info_text}
$fulflow_tree bindText <Double-ButtonPress-1> {Apol_Analysis_fulflow::treeSelect \
$Apol_Analysis_fulflow::fulflow_tree $Apol_Analysis_fulflow::fulflow_info_text}
return $fulflow_tree
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::reset_variables
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::reset_variables { } {
set Apol_Analysis_fulflow::start_type ""
set Apol_Analysis_fulflow::end_type ""
set Apol_Analysis_fulflow::flow_direction ""
set Apol_Analysis_fulflow::fulflow_tree ""
set Apol_Analysis_fulflow::fulflow_info_text ""
set Apol_Analysis_fulflow::in_button_sel 0
set Apol_Analysis_fulflow::out_button_sel 0
set Apol_Analysis_fulflow::endtype_sel 0
set Apol_Analysis_fulflow::display_attrib_sel 0
set Apol_Analysis_fulflow::display_attribute ""
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::update_display_variables
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::update_display_variables { } {
variable start_type
set start_type $Apol_Analysis_fulflow::start_type
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::config_attrib_comboBox_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::config_attrib_comboBox_state { } {
variable combo_attribute
variable display_attrib_sel
variable combo_start
if { $display_attrib_sel } {
$combo_attribute configure -state normal -entrybg white
# Clear the starting type value
set Apol_Analysis_fulflow::start_type ""
Apol_Analysis_fulflow::change_types_list
} else {
$combo_attribute configure -state disabled -entrybg $ApolTop::default_bg_color
set attrib_typesList $Apol_Types::typelist
set idx [lsearch -exact $attrib_typesList "self"]
if {$idx != -1} {
set attrib_typesList [lreplace $attrib_typesList $idx $idx]
}
$combo_start configure -values $attrib_typesList
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::config_endtype_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::config_endtype_state { } {
variable entry_end
variable endtype_sel
if { $endtype_sel } {
$entry_end configure -state normal -background white
} else {
$entry_end configure -state disabled -background $ApolTop::default_bg_color
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::in_button_press
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::in_button_press { } {
variable out_button
variable in_button
variable flow_direction
set flow_direction "in"
$out_button deselect
$in_button select
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::out_button_press
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::out_button_press { } {
variable in_button
variable out_button
variable flow_direction
set flow_direction "out"
$in_button deselect
$out_button select
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::select_all_lbox_items
# - Takes a Tk listbox widget as an argument.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::select_all_lbox_items {lbox} {
$lbox selection set 0 end
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::clear_all_lbox_items
# - Takes a Tk listbox widget as an argument.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::clear_all_lbox_items {lbox} {
$lbox selection clear 0 end
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::change_types_list
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::change_types_list { } {
variable combo_start
variable display_attribute
if { $display_attribute != "" } {
$combo_start configure -text ""
set rt [catch {set attrib_typesList [apol_GetAttribTypesList $display_attribute]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return
}
set attrib_typesList [lsort $attrib_typesList]
set idx [lsearch -exact $attrib_typesList "self"]
if {$idx != -1} {
set attrib_typesList [lreplace $attrib_typesList $idx $idx]
}
$combo_start configure -values $attrib_typesList
} else {
set attrib_typesList $Apol_Types::typelist
set idx [lsearch -exact $attrib_typesList "self"]
if {$idx != -1} {
set attrib_typesList [lreplace $attrib_typesList $idx $idx]
}
$combo_start configure -values $attrib_typesList
}
return 0
}
## Apol_Analysis_fulflow::display_mod_options is called by the GUI to display the
## analysis options interface the analysis needs. Each module must know how
## to display their own options, as well bind appropriate commands and variables
## with the options GUI. opts_frame is the name of a frame in which the options
## GUI interface is to be packed.
# -----------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::display_mod_options
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::display_mod_options { opts_frame } {
Apol_Analysis_fulflow::reset_variables
Apol_Analysis_fulflow::advanced_filters_refresh_dialog \
$Apol_Analysis_fulflow::advanced_filter_Dlg
Apol_Analysis_fulflow::create_options $opts_frame
Apol_Analysis_fulflow::populate_ta_list
if {[ApolTop::is_policy_open]} {
# Have the attributes checkbutton OFF by default
set Apol_Analysis_fulflow::display_attrib_sel 0
Apol_Analysis_fulflow::config_attrib_comboBox_state
Apol_Analysis_fulflow::change_types_list
# By default have the in button pressed
set Apol_Analysis_fulflow::in_button_sel 1
$Apol_Analysis_fulflow::in_button select
Apol_Analysis_fulflow::in_button_press
} else {
Apol_Analysis_fulflow::config_attrib_comboBox_state
}
Apol_Analysis_fulflow::config_endtype_state
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::populate_ta_list
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::populate_ta_list { } {
variable combo_start
variable combo_attribute
set attrib_typesList $Apol_Types::typelist
set idx [lsearch -exact $attrib_typesList "self"]
if {$idx != -1} {
set attrib_typesList [lreplace $attrib_typesList $idx $idx]
}
$combo_start configure -values $attrib_typesList
$combo_attribute configure -values $Apol_Types::attriblist
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::load_default_perm_map
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::load_default_perm_map {} {
# if a permap is not loaded then load the default permap
set rt [catch {set map_loaded [Apol_Perms_Map::is_pmap_loaded]} err]
if { $rt != 0 } {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -code error
}
if {!$map_loaded} {
set rt [catch {Apol_Perms_Map::load_default_perm_map} err]
if { $rt != 0 } {
if {$rt == $Apol_Perms_Map::warning_return_val} {
tk_messageBox -icon warning -type ok -title "Warning" -message "$err"
} else {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -code error
}
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_refresh_dialog
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_refresh_dialog {path_name} {
if {[array exists f_opts] && \
[array names f_opts "$path_name,name"] != ""} {
Apol_Analysis_fulflow::advanced_filters_destroy_object $path_name
Apol_Analysis_fulflow::advanced_filters_create_object $path_name
Apol_Analysis_fulflow::advanced_filters_update_dialog $path_name
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_update_dialog
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_update_dialog {path_name} {
variable f_opts
# If the advanced filters dialog is displayed, then we need to update its' state.
if {[array exists f_opts] && \
[array names f_opts "$path_name,name"] != "" &&
[winfo exists $f_opts($path_name,name)]} {
set rt [catch {Apol_Analysis_fulflow::advanced_filters_set_widgets_to_default_state \
$path_name} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
raise $f_opts($path_name,name)
focus -force $f_opts($path_name,name)
# Reset the selection in the listbox
if {$f_opts($path_name,class_selected_idx) != "-1"} {
$f_opts($path_name,class_listbox) selection set \
[$f_opts($path_name,class_listbox) index \
$f_opts($path_name,class_selected_idx)]
Apol_Analysis_fulflow::advanced_filters_display_permissions $path_name
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_include_types
# - remove_list - the list displayed inside the listbox from which the
# type is being removed.
# - add_list - the list displayed inside the listbox to which the type
# being added.
# - remove_lbox - listbox widget from which the type is being removed.
# - add_lbox - listbox widget to which the type is being added.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_include_types {remove_list_1 \
add_list_1 \
remove_lbox \
add_lbox \
master_incl_types_list_1 \
master_excl_types_list_1} {
upvar #0 $remove_list_1 remove_list
upvar #0 $add_list_1 add_list
upvar #0 $master_incl_types_list_1 master_incl_types_list
upvar #0 $master_excl_types_list_1 master_excl_types_list
set type_indices [$remove_lbox curselection]
if {$type_indices != ""} {
set tmp_list ""
foreach idx $type_indices {
set tmp_list [lappend tmp_list [$remove_lbox get $idx]]
}
foreach type $tmp_list {
set idx [lsearch -exact $remove_list $type]
if {$idx != -1} {
set remove_list [lreplace $remove_list $idx $idx]
# put in add list
set add_list [lappend add_list $type]
set add_list [lsort $add_list]
}
# Update the non-filtered list variables (i.e. types not filtered by attribute)
set master_incl_types_list [lappend master_incl_types_list $type]
set idx [lsearch -exact $master_excl_types_list $type]
if {$idx != -1} {
set master_excl_types_list [lreplace $master_excl_types_list $idx $idx]
}
}
$remove_lbox selection clear 0 end
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_exclude_types
# - remove_list - the list displayed inside the listbox from which the
# type is being removed.
# - add_list - the list displayed inside the listbox to which the type
# being added.
# - remove_lbox - listbox widget from which the type is being removed.
# - add_lbox - listbox widget to which the type is being added.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_exclude_types {remove_list_1 \
add_list_1 \
remove_lbox \
add_lbox \
master_incl_types_list_1 \
master_excl_types_list_1} {
upvar #0 $remove_list_1 remove_list
upvar #0 $add_list_1 add_list
upvar #0 $master_incl_types_list_1 master_incl_types_list
upvar #0 $master_excl_types_list_1 master_excl_types_list
set type_indices [$remove_lbox curselection]
if {$type_indices != ""} {
set tmp_list ""
foreach idx $type_indices {
set tmp_list [lappend tmp_list [$remove_lbox get $idx]]
}
foreach type $tmp_list {
set idx [lsearch -exact $remove_list $type]
if {$idx != -1} {
set remove_list [lreplace $remove_list $idx $idx]
# put in add list
set add_list [lappend add_list $type]
set add_list [lsort $add_list]
}
# Update the non-filtered list variables (i.e. types not filtered by attribute)
set master_excl_types_list [lappend master_excl_types_list $type]
set idx [lsearch -exact $master_incl_types_list $type]
if {$idx != -1} {
set master_incl_types_list [lreplace $master_incl_types_list $idx $idx]
}
}
$remove_lbox selection clear 0 end
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state {cb_selected_1 \
combo_box \
lbox \
which_list \
path_name} {
variable f_opts
upvar #0 $cb_selected_1 cb_selected
if {$cb_selected} {
$combo_box configure -state normal -entrybg white
if {$which_list == "incl"} {
Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib \
Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_combo_value) \
$lbox \
Apol_Analysis_fulflow::f_opts($path_name,master_incl_types_list)
} else {
Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib \
Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_combo_value) \
$lbox \
Apol_Analysis_fulflow::f_opts($path_name,master_excl_types_list)
}
} else {
$combo_box configure -state disabled -entrybg $ApolTop::default_bg_color
if {$which_list == "incl"} {
set [$lbox cget -listvar] \
[lsort $f_opts($path_name,master_incl_types_list)]
} elseif {$which_list == "excl"} {
set [$lbox cget -listvar] \
[lsort $f_opts($path_name,master_excl_types_list)]
} else {
tk_messageBox -icon error -type ok -title "Error" \
-message "Invalid paremeter ($which_list) to \
Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state. \
Must be either 'incl' or 'excl'"
return -1
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib
# - attribute - the specified attribute
# - lbox - the listbox in which to perform the selection
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib {attribute_1 lbox non_filtered_types_1} {
upvar #0 $attribute_1 attribute
upvar #0 $non_filtered_types_1 non_filtered_types
if {$attribute != ""} {
$lbox delete 0 end
# Get a list of types for the specified attribute
set rt [catch {set attrib_types [apol_GetAttribTypesList $attribute]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
if {$non_filtered_types != ""} {
set len [llength $non_filtered_types]
for {set i 0} {$i < $len} {incr i} {
# Check if this is a filtered type
set idx [lsearch -exact $attrib_types [lindex $non_filtered_types $i]]
if {$idx != -1} {
$lbox insert end [lindex $non_filtered_types $i]
}
}
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_include_exclude_permissions
# - perms_box - the specified attribute
# - which - include or exclude
#
# - This proc will change a list item in the class listbox. When all perms
# are excluded, the object class is grayed out in the listbox and the
# class label is changed to "object_class (Exluded)". This is a visual
# representation to the user that the object class itself is being
# implicitly excluded from the query as a result of all of its'
# permissions being excluded. When any or all permissions are included,
# the class label is reset to the class name itself and is then un-grayed.
# Any other functions that then take a selected listbox element as an
# argument MUST first search the class string for the sequence " (Excluded)"
# before processing the class name.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_include_exclude_permissions {which path_name} {
variable f_opts
if {[ApolTop::is_policy_open]} {
if {[string equal $which "include"] == 0 && [string equal $which "exclude"] == 0} {
puts "Tcl error: wrong 'which' argument sent to Apol_Analysis_fulflow::advanced_filters_include_exclude_permissions. Must be either 'include' or 'exclude'."
return -1
}
set objs [$f_opts($path_name,class_listbox) curselection]
foreach object_class_idx $objs {
set object_class [$f_opts($path_name,class_listbox) get $object_class_idx]
set idx [string first $Apol_Analysis_fulflow::excluded_tag $object_class]
if {$idx != -1} {
set object_class [string range $object_class 0 [expr $idx - 1]]
}
set rt [catch {set perms_list [apol_GetPermsByClass $object_class 1]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
foreach perm $perms_list {
set f_opts($path_name,perm_status_array,$object_class,$perm) $which
}
if {$object_class_idx != ""} {
set items [$f_opts($path_name,class_listbox) get 0 end]
if {[string equal $which "exclude"]} {
$f_opts($path_name,class_listbox) itemconfigure $object_class_idx \
-foreground gray
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $items $object_class_idx $object_class_idx \
"$object_class$Apol_Analysis_fulflow::excluded_tag"]
} else {
$f_opts($path_name,class_listbox) itemconfigure $object_class_idx \
-foreground $f_opts($path_name,select_fg_orig)
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $items $object_class_idx $object_class_idx \
"$object_class"]
}
}
if {$f_opts($path_name,class_selected_idx) == $object_class_idx} {
$f_opts($path_name,permissions_title_frame) configure \
-text "Permissions for [$f_opts($path_name,class_listbox) get \
$object_class_idx]:"
}
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_change_obj_state_on_perm_select
#` - This proc also searches a class string for the sequence " (Excluded)"
# in order to process the class name only.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_change_obj_state_on_perm_select {path_name} {
variable f_opts
set num_excluded 0
# There may be multiple selected items, but we need the object class that is
# currently displayed in the text box. We have this index stored in our global
# class_selected_idx variable.
if {$f_opts($path_name,class_selected_idx) != "-1"} {
set class_sel [$f_opts($path_name,class_listbox) get \
$f_opts($path_name,class_selected_idx)]
set idx [string first $Apol_Analysis_fulflow::excluded_tag $class_sel]
if {$idx != -1} {
set class_sel [string range $class_sel 0 [expr $idx - 1]]
}
set class_elements [array get f_opts "$path_name,perm_status_array,$class_sel,*"]
if {$class_elements != ""} {
set num_perms_for_class [expr {[llength $class_elements] / 2}]
set len [llength $class_elements]
for {set i 0} {$i < $len} {incr i} {
incr i
if {[string equal [lindex $class_elements $i] "exclude"]} {
incr num_excluded
}
}
set items [$f_opts($path_name,class_listbox) get 0 end]
# If the total all permissions for the object have been
# excluded then inform the user.
if {$num_excluded == $num_perms_for_class} {
$f_opts($path_name,class_listbox) itemconfigure \
$f_opts($path_name,class_selected_idx) \
-foreground gray
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $items $f_opts($path_name,class_selected_idx) \
$f_opts($path_name,class_selected_idx) \
"$class_sel$Apol_Analysis_fulflow::excluded_tag"]
} else {
$f_opts($path_name,class_listbox) itemconfigure \
$f_opts($path_name,class_selected_idx) \
-foreground $f_opts($path_name,select_fg_orig)
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $items $f_opts($path_name,class_selected_idx) \
$f_opts($path_name,class_selected_idx) \
"$class_sel"]
}
$f_opts($path_name,permissions_title_frame) configure \
-text "Permissions for [$f_opts($path_name,class_listbox) get \
$f_opts($path_name,class_selected_idx)]:"
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_embed_perm_buttons
# - Embeds include/exclude radiobuttons in the permissions textbox next to
# each permission label.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_embed_perm_buttons {list_b class perm path_name} {
variable f_opts
# Frames
set frame [frame $list_b.f:$class:$perm -bd 0 -bg white]
set lbl_frame [frame $frame.lbl_frame:$class:$perm -width 20 -bd 1 -bg white]
set cb_frame [frame $frame.cb_frame:$class:$perm -width 10 -bd 0 -bg white]
# Label
set lbl1 [label $lbl_frame.lbl1:$class:$perm -bg white -justify left -width 20 \
-anchor nw -text $perm]
set lbl2 [label $lbl_frame.lbl2:$class:$perm -bg white -justify left -width 5 -text "--->"]
# Radiobuttons. Here we are embedding selinux and mls permissions into the pathname
# in order to make them unique radiobuttons.
set cb_include [radiobutton $cb_frame.cb_include:$class:$perm -bg white \
-value include -text "Include" \
-highlightthickness 0 \
-variable Apol_Analysis_fulflow::f_opts($path_name,perm_status_array,$class,$perm) \
-command "Apol_Analysis_fulflow::advanced_filters_change_obj_state_on_perm_select \
$path_name"]
set cb_exclude [radiobutton $cb_frame.cb_exclude:$class:$perm -bg white \
-value exclude -text "Exclude" \
-highlightthickness 0 \
-variable Apol_Analysis_fulflow::f_opts($path_name,perm_status_array,$class,$perm) \
-command "Apol_Analysis_fulflow::advanced_filters_change_obj_state_on_perm_select \
$path_name"]
set lbl_weight [Label $cb_frame.lbl_weight:$class:$perm -bg white \
-text "Perm map weight: [Apol_Perms_Map::get_weight_for_class_perm $class $perm]" \
-padx 10]
# Placing widgets
pack $frame -side left -anchor nw -expand yes -pady 10
pack $lbl_frame $cb_frame -side left -anchor nw -expand yes
pack $lbl1 $lbl2 -side left -anchor nw
pack $cb_include $cb_exclude $lbl_weight -side left -anchor nw
# Return the pathname of the frame to embed.
return $frame
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_clear_perms_text
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_clear_perms_text {path_name} {
variable f_opts
# Enable the text widget.
$f_opts($path_name,perms_box) configure -state normal
# Clear the text widget and any embedded windows
set names [$f_opts($path_name,perms_box) window names]
foreach emb_win $names {
if { [winfo exists $emb_win] } {
set rt [catch {destroy $emb_win} err]
if {$rt != 0} {
tk_messageBox \
-icon error \
-type ok \
-title "Error" \
-message "$err"
return -1
}
}
}
$f_opts($path_name,perms_box) delete 1.0 end
$f_opts($path_name,perms_box) configure -state disabled
}
proc Apol_Analysis_fulflow::render_permissions {path_name} {
variable f_opts
set class_idx [$f_opts($path_name,class_listbox) curselection]
if {$class_idx == ""} {
# Something was simply deselected.
return 0
}
focus -force $f_opts($path_name,class_listbox)
set class_name [$f_opts($path_name,class_listbox) get $class_idx]
$f_opts($path_name,permissions_title_frame) configure -text "Permissions for $class_name:"
Apol_Analysis_fulflow::advanced_filters_clear_perms_text $path_name
update
# Make sure to strip out just the class name, as this may be an excluded class.
set idx [string first $Apol_Analysis_fulflow::excluded_tag $class_name]
if {$idx != -1} {
set class_name [string range $class_name 0 [expr $idx - 1]]
}
# Get all valid permissions for the selected class from the policy database.
set rt [catch {set perms_list [apol_GetPermsByClass $class_name 1]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "$err"
return -1
}
set perms_list [lsort $perms_list]
$f_opts($path_name,perms_box) configure -state normal
foreach perm $perms_list {
# If this permission does not exist in our perm status array, this means
# that a saved query was loaded and the permission defined in the policy
# is not defined in the saved query. So we default this to be included.
if {[array names f_opts "$path_name,perm_status_array,$class_name,$perm"] == ""} {
set f_opts($path_name,perm_status_array,$class_name,$perm) include
}
$f_opts($path_name,perms_box) window create end -window \
[Apol_Analysis_fulflow::advanced_filters_embed_perm_buttons \
$f_opts($path_name,perms_box) $class_name $perm $path_name]
$f_opts($path_name,perms_box) insert end "\n"
}
# Disable the text widget.
$f_opts($path_name,perms_box) configure -state disabled
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_display_permissions
# - Displays permissions for the selected object class in the permissions
# text box.
# - Takes the selected object class index as the only argument.
# This proc also searches the class string for the sequence " (Excluded)"
# in order to process the class name only. This is because a Tk listbox
# is being used and does not provide a -text option for items in the
# listbox.
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_display_permissions {path_name} {
variable f_opts
if {[$f_opts($path_name,class_listbox) get 0 end] == "" || \
[llength [$f_opts($path_name,class_listbox) curselection]] > 1} {
# Nothing in the listbox; return
return 0
}
set bind_tag_id [string trim $path_name "."]
bind ${bind_tag_id}_fulflow_object_list_Tag <<ListboxSelect>> ""
set f_opts($path_name,class_selected_idx) [$f_opts($path_name,class_listbox) curselection]
Apol_Analysis_fulflow::render_permissions $path_name
update idletasks
bind ${bind_tag_id}_fulflow_object_list_Tag <<ListboxSelect>> \
"Apol_Analysis_fulflow::advanced_filters_display_permissions $path_name"
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_initialize_objs_and_perm_filters
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_initialize_objs_and_perm_filters {path_name} {
variable f_opts
set f_opts($path_name,class_list) $Apol_Class_Perms::class_list
# Initialization for object classes section
foreach class $f_opts($path_name,class_list) {
set rt [catch {set perms_list [apol_GetPermsByClass $class 1]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return -1
}
foreach perm $perms_list {
set f_opts($path_name,perm_status_array,$class,$perm) include
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_initialize_vars
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_initialize_vars {path_name} {
variable f_opts
if {$f_opts($path_name,filter_vars_init) == 0} {
# Initialize all object classes/permissions and related information to default values
Apol_Analysis_fulflow::advanced_filters_initialize_objs_and_perm_filters $path_name
# Initialize included/excluded intermediate types section to default values
set f_opts($path_name,master_incl_types_list) $Apol_Types::typelist
set idx [lsearch -exact $f_opts($path_name,master_incl_types_list) "self"]
if {$idx != -1} {
set f_opts($path_name,master_incl_types_list) \
[lreplace $f_opts($path_name,master_incl_types_list) \
$idx $idx]
}
set f_opts($path_name,master_excl_types_list) $f_opts($path_name,filtered_excl_types)
set f_opts($path_name,filtered_incl_types) $f_opts($path_name,master_incl_types_list)
set f_opts($path_name,filtered_excl_types) $f_opts($path_name,master_excl_types_list)
set f_opts($path_name,filter_vars_init) 1
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_set_widgets_to_default_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_set_widgets_to_default_state {path_name} {
variable f_opts
$f_opts($path_name,combo_incl) configure -values $Apol_Types::attriblist
$f_opts($path_name,combo_excl) configure -values $Apol_Types::attriblist
$f_opts($path_name,combo_excl) configure -text $f_opts($path_name,excl_attrib_combo_value)
$f_opts($path_name,combo_incl) configure -text $f_opts($path_name,incl_attrib_combo_value)
set f_opts($path_name,select_fg_orig) [$f_opts($path_name,class_listbox) cget -foreground]
# Configure the class listbox items to indicate excluded/included object classes.
set class_lbox_idx 0
foreach class $f_opts($path_name,class_list) {
# Make sure to strip out just the class name, as this may be an excluded class.
set idx [string first $Apol_Analysis_fulflow::excluded_tag $class]
if {$idx != -1} {
set class [string range $class 0 [expr $idx - 1]]
}
set num_excluded 0
set class_perms [array names f_opts "$path_name,perm_status_array,$class,*"]
foreach element $class_perms {
if {[string equal $f_opts($element) "exclude"]} {
incr num_excluded
}
}
if {$num_excluded == [llength $class_perms]} {
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $f_opts($path_name,class_list) $class_lbox_idx \
$class_lbox_idx "$class$Apol_Analysis_fulflow::excluded_tag"]
$f_opts($path_name,class_listbox) itemconfigure $class_lbox_idx \
-foreground gray
} else {
set [$f_opts($path_name,class_listbox) cget -listvar] \
[lreplace $f_opts($path_name,class_list) $class_lbox_idx \
$class_lbox_idx "$class"]
$f_opts($path_name,class_listbox) itemconfigure $class_lbox_idx \
-foreground $f_opts($path_name,select_fg_orig)
}
incr class_lbox_idx
}
Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state \
Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_cb_sel) \
$f_opts($path_name,combo_incl) \
$f_opts($path_name,lbox_incl) \
incl \
$path_name
Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state \
Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_cb_sel) \
$f_opts($path_name,combo_excl) \
$f_opts($path_name,lbox_excl) \
excl \
$path_name
set val [expr $f_opts($path_name,threshhold_value) - 1]
$f_opts($path_name,spinbox_threshhold) setvalue @$val
Apol_Analysis_fulflow::advanced_filters_change_spinbox_state \
$path_name
# Select the top most item by default
$f_opts($path_name,class_listbox) selection set 0
Apol_Analysis_fulflow::advanced_filters_display_permissions $path_name
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_destroy_all_dialogs_on_open
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_destroy_all_dialogs_on_open {} {
variable f_opts
set dlgs [array names f_opts "*,name"]
set length [llength $dlgs]
for {set i 0} {$i < $length} {incr i} {
# Skip the name of the element to the actual value of the element
incr i
Apol_Analysis_fulflow::advanced_filters_destroy_dialog [lindex $dlgs $i]
Apol_Analysis_fulflow::advanced_filters_destroy_object [lindex $dlgs $i]
}
array unset f_opts
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_destroy_dialog
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_destroy_dialog {path_name} {
variable f_opts
if {[winfo exists $path_name]} {
destroy $path_name
unset f_opts($path_name,lbox_incl)
unset f_opts($path_name,lbox_excl)
unset f_opts($path_name,combo_incl)
unset f_opts($path_name,combo_excl)
unset f_opts($path_name,class_listbox)
unset f_opts($path_name,perms_box)
unset f_opts($path_name,permissions_title_frame)
unset f_opts($path_name,spinbox_threshhold)
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_create_object
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_create_object {path_name} {
variable f_opts
set f_opts($path_name,name) $path_name
set f_opts($path_name,filtered_incl_types) ""
set f_opts($path_name,filtered_excl_types) ""
set f_opts($path_name,master_incl_types_list) ""
set f_opts($path_name,master_excl_types_list) ""
set f_opts($path_name,class_list) ""
set f_opts($path_name,incl_attrib_combo_value) ""
set f_opts($path_name,excl_attrib_combo_value) ""
set f_opts($path_name,incl_attrib_cb_sel) 0
set f_opts($path_name,excl_attrib_cb_sel) 0
set f_opts($path_name,threshhold_cb_value) 0
set f_opts($path_name,threshhold_value) 1
set f_opts($path_name,filter_vars_init) 0
set f_opts($path_name,class_selected_idx) -1
# Initialize list and permission mapping data
set rt [catch {Apol_Analysis_fulflow::advanced_filters_initialize_vars $path_name} err]
if {$rt != 0} {
puts "Error: $err"
return -1
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_copy_object
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_copy_object {path_name new_object} {
variable f_opts
upvar 1 $new_object object
if {![array exists f_opts] || [array names f_opts "$path_name,name"] == ""} {
Apol_Analysis_fulflow::advanced_filters_create_object $path_name
}
array set object [array get f_opts "$path_name,*"]
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_destroy_object
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_destroy_object {path_name} {
variable f_opts
if {[array exists f_opts] && [array names f_opts "$path_name,name"] != ""} {
array unset f_opts "$path_name,perm_status_array,*"
unset f_opts($path_name,filtered_incl_types)
unset f_opts($path_name,filtered_excl_types)
unset f_opts($path_name,master_incl_types_list)
unset f_opts($path_name,master_excl_types_list)
unset f_opts($path_name,class_list)
unset f_opts($path_name,incl_attrib_combo_value)
unset f_opts($path_name,excl_attrib_combo_value)
unset f_opts($path_name,incl_attrib_cb_sel)
unset f_opts($path_name,excl_attrib_cb_sel)
unset f_opts($path_name,threshhold_cb_value)
unset f_opts($path_name,threshhold_value)
unset f_opts($path_name,filter_vars_init)
unset f_opts($path_name,class_selected_idx)
unset f_opts($path_name,name)
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_change_spinbox_state
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_change_spinbox_state {path_name} {
variable f_opts
if {$f_opts($path_name,threshhold_cb_value)} {
$f_opts($path_name,spinbox_threshhold) configure -state normal -entrybg white
} else {
$f_opts($path_name,spinbox_threshhold) configure -state disabled -entrybg $ApolTop::default_bg_color
}
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_change_threshhold_value
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_change_threshhold_value {path_name} {
variable f_opts
set f_opts($path_name,threshhold_value) \
[expr [$f_opts($path_name,spinbox_threshhold) getvalue] + 1]
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::advanced_filters_create_dialog
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::advanced_filters_create_dialog {path_name title_txt} {
variable f_opts
if {![ApolTop::is_policy_open]} {
tk_messageBox -icon error -type ok -title "Error" -message "No current policy file is opened!"
return -1
}
set rt [catch {Apol_Analysis_fulflow::load_default_perm_map} err]
if {$rt != 0} {
return -1
}
# Check to see if object already exists.
if {[array exists f_opts] && \
[array names f_opts "$path_name,name"] != ""} {
# Check to see if the dialog already exists.
if {[winfo exists $f_opts($path_name,name)]} {
raise $f_opts($path_name,name)
focus $f_opts($path_name,name)
return 0
}
# else we need to display the dialog with the correct object settings
} else {
# Create a new options dialog object
Apol_Analysis_fulflow::advanced_filters_create_object $path_name
}
# Create the top-level dialog and subordinate widgets
toplevel $f_opts($path_name,name)
wm withdraw $f_opts($path_name,name)
wm title $f_opts($path_name,name) $title_txt
wm protocol $f_opts($path_name,name) WM_DELETE_WINDOW " "
set close_frame [frame $f_opts($path_name,name).close_frame -relief sunken -bd 1]
set topf [frame $f_opts($path_name,name).topf]
set pw1 [PanedWindow $topf.pw1 -side left -weights available]
$pw1 add -weight 2 -minsize 225
$pw1 add -weight 2 -minsize 225
pack $close_frame -side bottom -anchor center -pady 2
pack $pw1 -fill both -expand yes
pack $topf -fill both -expand yes -padx 10 -pady 10
# Main Titleframes
set objs_frame [TitleFrame [$pw1 getframe 0].objs_frame -text "Filter by object class permissions:"]
set types_frame [TitleFrame [$pw1 getframe 1].types_frame -text "Filter by intermediate types:"]
# Widgets for object classes frame
set pw1 [PanedWindow [$objs_frame getframe].pw -side top -weights available]
set pane [$pw1 add]
set search_pane [$pw1 add]
set pw2 [PanedWindow $pane.pw -side left -weights available]
set class_pane [$pw2 add]
set f_opts($path_name,classes_box) [TitleFrame $class_pane.tbox -text "Object Classes:" -bd 0]
set f_opts($path_name,permissions_title_frame) [TitleFrame $search_pane.rbox \
-text "Permissions:" -bd 0]
set sw_class [ScrolledWindow [$f_opts($path_name,classes_box) getframe].sw -auto none]
set f_opts($path_name,class_listbox) [listbox [$sw_class getframe].lb \
-height 10 -highlightthickness 0 \
-bg white -selectmode extended \
-listvar Apol_Analysis_fulflow::f_opts($path_name,class_list) \
-exportselection 0]
$sw_class setwidget $f_opts($path_name,class_listbox)
set sw_list [ScrolledWindow [$f_opts($path_name,permissions_title_frame) getframe].sw_c -auto none]
set f_opts($path_name,perms_box) [text [$f_opts($path_name,permissions_title_frame) getframe].perms_box \
-cursor $ApolTop::prevCursor \
-bg white -font $ApolTop::text_font]
$sw_list setwidget $f_opts($path_name,perms_box)
set threshhold_frame [frame [$f_opts($path_name,permissions_title_frame) getframe].threshhold_frame]
set f_opts($path_name,spinbox_threshhold) [SpinBox $threshhold_frame.spinbox_threshhold \
-bg white \
-range [list 1 10 1] \
-editable 0 -entrybg white -width 6 \
-helptext "Specify a weight threshhold" \
-modifycmd "Apol_Analysis_fulflow::advanced_filters_change_threshhold_value $path_name"]
set cbutton_threshhold [checkbutton $threshhold_frame.cbutton_threshhold \
-text "Exclude permissions that have weights below this threshold:" \
-variable Apol_Analysis_fulflow::f_opts($path_name,threshhold_cb_value) \
-offvalue 0 -onvalue 1 \
-command "Apol_Analysis_fulflow::advanced_filters_change_spinbox_state \
$path_name"]
set bframe [frame [$f_opts($path_name,permissions_title_frame) getframe].bframe]
set b_incl_all_perms [Button $bframe.b_incl_all_perms -text "Include All Perms" \
-helptext "Select this to include all permissions for the selected object in the query." \
-command "Apol_Analysis_fulflow::advanced_filters_include_exclude_permissions \
include $path_name"]
set b_excl_all_perms [Button $bframe.b_excl_all_perms -text "Exclude All Perms" \
-helptext "Select this to exclude all permissions for the selected object from the query." \
-command "Apol_Analysis_fulflow::advanced_filters_include_exclude_permissions \
exclude $path_name"]
# Bindings
set bind_tag_id [string trim $path_name "."]
bindtags $f_opts($path_name,class_listbox) \
[linsert [bindtags $f_opts($path_name,class_listbox)] 3 \
${bind_tag_id}_fulflow_object_list_Tag]
bind ${bind_tag_id}_fulflow_object_list_Tag \
<<ListboxSelect>> "Apol_Analysis_fulflow::advanced_filters_display_permissions $path_name"
pack $cbutton_threshhold $f_opts($path_name,spinbox_threshhold) -side left -anchor nw -padx 2
pack $threshhold_frame -fill x -anchor nw -side bottom -pady 2
pack $b_excl_all_perms -side right -anchor nw -pady 2 -expand yes -fill x -ipadx 1
pack $b_incl_all_perms -side left -anchor nw -pady 2 -expand yes -fill x -ipadx 2
pack $bframe -side bottom -fill both -anchor sw -pady 2
pack $f_opts($path_name,permissions_title_frame) -pady 2 -padx 2 -fill both -expand yes
pack $f_opts($path_name,classes_box) -padx 2 -side left -fill both -expand yes
pack $sw_class -fill both -expand yes -side top
pack $sw_list -fill both -expand yes -side top
pack $pw2 -fill both -expand yes
pack $pw1 -fill both -expand yes
# Widgets for types frame
set include_f [TitleFrame [$types_frame getframe].include_f \
-text "Include these types:" -bd 0]
set middle_f [frame [$types_frame getframe].middle_f]
set exclude_f [TitleFrame [$types_frame getframe].exclude_f \
-text "Exclude these types:" -bd 0]
set b_incl_f [frame [$include_f getframe].b_incl_f]
set b_excl_f [frame [$exclude_f getframe].b_excl_f]
set buttons_incl_f [frame $b_incl_f.buttons_incl_f]
set buttons_excl_f [frame $b_excl_f.buttons_excl_f]
set sw_incl [ScrolledWindow [$include_f getframe].sw_incl]
set sw_excl [ScrolledWindow [$exclude_f getframe].sw_excl]
set f_opts($path_name,lbox_incl) [listbox [$sw_incl getframe].lbox_incl \
-height 6 \
-highlightthickness 0 \
-listvar Apol_Analysis_fulflow::f_opts($path_name,filtered_incl_types) \
-selectmode extended -bg white -exportselection 0]
set f_opts($path_name,lbox_excl) [listbox [$sw_excl getframe].lbox_excl \
-height 6 \
-highlightthickness 0 \
-listvar Apol_Analysis_fulflow::f_opts($path_name,filtered_excl_types) \
-selectmode extended -bg white -exportselection 0]
$sw_incl setwidget $f_opts($path_name,lbox_incl)
$sw_excl setwidget $f_opts($path_name,lbox_excl)
bindtags $f_opts($path_name,lbox_incl) \
[linsert [bindtags $Apol_Analysis_fulflow::f_opts($path_name,lbox_incl)] 3 \
${bind_tag_id}_lbox_incl_Tag]
bindtags $f_opts($path_name,lbox_excl) \
[linsert [bindtags $Apol_Analysis_fulflow::f_opts($path_name,lbox_excl)] 3 \
${bind_tag_id}_lbox_excl_Tag]
bind ${bind_tag_id}_lbox_incl_Tag <<ListboxSelect>> "focus -force $f_opts($path_name,lbox_incl)"
bind ${bind_tag_id}_lbox_excl_Tag <<ListboxSelect>> "focus -force $f_opts($path_name,lbox_excl)"
bind ${bind_tag_id}_lbox_incl_Tag <KeyPress> "ApolTop::tklistbox_select_on_key_callback \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl) \
Apol_Analysis_fulflow::f_opts($path_name,filtered_incl_types) \
%K"
bind ${bind_tag_id}_lbox_excl_Tag <KeyPress> "ApolTop::tklistbox_select_on_key_callback \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl) \
Apol_Analysis_fulflow::f_opts($path_name,filtered_excl_types) \
%K"
set include_bttn [Button $middle_f.include_bttn -text "<--" \
-command "Apol_Analysis_fulflow::advanced_filters_include_types \
Apol_Analysis_fulflow::f_opts($path_name,filtered_excl_types) \
Apol_Analysis_fulflow::f_opts($path_name,filtered_incl_types) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl) \
Apol_Analysis_fulflow::f_opts($path_name,master_incl_types_list) \
Apol_Analysis_fulflow::f_opts($path_name,master_excl_types_list)" \
-helptext "Include this type in the query" -width 8]
set exclude_bttn [Button $middle_f.exclude_bttn -text "-->" \
-command "Apol_Analysis_fulflow::advanced_filters_exclude_types \
Apol_Analysis_fulflow::f_opts($path_name,filtered_incl_types) \
Apol_Analysis_fulflow::f_opts($path_name,filtered_excl_types) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl) \
Apol_Analysis_fulflow::f_opts($path_name,master_incl_types_list) \
Apol_Analysis_fulflow::f_opts($path_name,master_excl_types_list)" \
-helptext "Exclude this type from the query" -width 8]
set b_incl_all_sel [Button $buttons_incl_f.b_incl_all_sel -text "Select All" \
-command "Apol_Analysis_fulflow::select_all_lbox_items \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl)"]
set b_incl_all_clear [Button $buttons_incl_f.b_incl_all_clear -text "Unselect" \
-command "Apol_Analysis_fulflow::clear_all_lbox_items \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl)"]
set b_excl_all_sel [Button $buttons_excl_f.b_excl_all_sel -text "Select All" \
-command "Apol_Analysis_fulflow::select_all_lbox_items \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl)"]
set b_excl_all_clear [Button $buttons_excl_f.b_excl_all_clear -text "Unselect" \
-command "Apol_Analysis_fulflow::clear_all_lbox_items \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl)"]
set f_opts($path_name,combo_incl) [ComboBox $b_incl_f.combo_incl \
-editable 0 \
-textvariable Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_combo_value) \
-entrybg $ApolTop::default_bg_color \
-modifycmd "Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib \
Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_combo_value) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl) \
Apol_Analysis_fulflow::f_opts($path_name,master_incl_types_list)"]
set f_opts($path_name,combo_excl) [ComboBox [$exclude_f getframe].combo_excl \
-editable 0 \
-textvariable Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_combo_value) \
-entrybg $ApolTop::default_bg_color \
-modifycmd "Apol_Analysis_fulflow::advanced_filters_filter_types_using_attrib \
Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_combo_value) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl) \
Apol_Analysis_fulflow::f_opts($path_name,master_excl_types_list)"]
set cb_incl_attrib [checkbutton $b_incl_f.cb_incl_attrib \
-text "Filter included type(s) by attribute:" \
-variable Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_cb_sel) \
-offvalue 0 -onvalue 1 \
-command "Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state \
Apol_Analysis_fulflow::f_opts($path_name,incl_attrib_cb_sel) \
$Apol_Analysis_fulflow::f_opts($path_name,combo_incl) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_incl) \
incl \
$path_name"]
set cb_excl_attrib [checkbutton [$exclude_f getframe].cb_excl_attrib \
-text "Filter excluded type(s) by attribute:" \
-variable Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_cb_sel) \
-offvalue 0 -onvalue 1 \
-command "Apol_Analysis_fulflow::advanced_filters_configure_adv_combo_state \
Apol_Analysis_fulflow::f_opts($path_name,excl_attrib_cb_sel) \
$Apol_Analysis_fulflow::f_opts($path_name,combo_excl) \
$Apol_Analysis_fulflow::f_opts($path_name,lbox_excl) \
excl \
$path_name"]
# Create and pack close button for the dialog
set close_bttn [Button $close_frame.close_bttn -text "Close" -width 8 \
-command "Apol_Analysis_fulflow::advanced_filters_destroy_dialog $path_name"]
pack $close_bttn -side left -anchor center
# pack all subframes and widgets for the types frame
pack $b_excl_f -side bottom -anchor center -pady 2
pack $b_incl_f -side bottom -anchor center -pady 2
pack $buttons_excl_f -side bottom -anchor center -pady 2
pack $buttons_incl_f -side bottom -anchor center -pady 2
pack $b_excl_all_sel $b_excl_all_clear -side left -anchor center -expand yes -pady 2
pack $sw_excl -side top -anchor nw -fill both -expand yes -pady 2 -padx 6
pack $cb_excl_attrib -side top -anchor center -padx 6
pack $f_opts($path_name,combo_excl) -side top -anchor center -pady 2 -padx 15
pack $b_incl_all_sel $b_incl_all_clear -side left -anchor center -expand yes -pady 2
pack $sw_incl -side top -anchor nw -fill both -expand yes -pady 2 -padx 6
pack $cb_incl_attrib -side top -anchor center -padx 6
pack $f_opts($path_name,combo_incl) -side top -anchor center -pady 2 -padx 15
pack $include_bttn $exclude_bttn -side top -pady 2 -anchor center
pack $include_f $exclude_f -side left -anchor nw -fill both -expand yes
pack $middle_f -side left -anchor center -after $include_f -padx 5 -expand yes
pack $types_frame $objs_frame -side top -anchor nw -padx 5 -pady 2 -expand yes -fill both
# Configure top-level dialog specifications
set width 780
set height 750
wm geom $f_opts($path_name,name) ${width}x${height}
wm deiconify $f_opts($path_name,name)
focus $f_opts($path_name,name)
Apol_Analysis_fulflow::advanced_filters_set_widgets_to_default_state $path_name
wm protocol $f_opts($path_name,name) WM_DELETE_WINDOW \
"Apol_Analysis_fulflow::advanced_filters_destroy_dialog $path_name"
return 0
}
# ------------------------------------------------------------------------------
# Command Apol_Analysis_fulflow::create_options
# ------------------------------------------------------------------------------
proc Apol_Analysis_fulflow::create_options { options_frame } {
variable combo_attribute
variable combo_start
variable display_attrib_sel
variable display_attribute
variable start_type
variable end_type
variable endtype_sel
variable entry_end
variable in_button_sel
variable out_button_sel
variable in_button
variable out_button
variable cb_attrib
variable comment_text
set entry_frame [frame $options_frame.entry_frame]
set left_frame [TitleFrame $entry_frame.left_frame -text "Required parameters"]
set right_frame [frame $entry_frame.right_frame]
set f_frame [TitleFrame $right_frame.f_frame -text "Optional result filters"]
set c_frame [TitleFrame $right_frame.c_frame -text "Query Comments"]
set start_attrib_frame [frame [$left_frame getframe].start_attrib_frame]
set start_frame [frame $start_attrib_frame.start_frame]
set attrib_frame [frame $start_attrib_frame.attrib_frame]
set advanced_f [frame [$f_frame getframe].advanced_f]
set flowtype_frame [frame [$left_frame getframe].flowtype_frame]
set ckbttn_frame [frame $flowtype_frame.ckbttn_frame]
set endtype_frame [frame [$f_frame getframe].endtype_frame]
# Information Flow Entry frames
set lbl_start_type [Label $start_frame.lbl_start_type -text "Starting type:"]
set combo_start [ComboBox $start_frame.combo_start \
-helptext "You must choose a starting type for information flow" \
-editable 1 \
-textvariable Apol_Analysis_fulflow::start_type \
-entrybg white]
set lbl_flowtype [Label $flowtype_frame.lbl_flowtype -text "Flow direction:"]
set in_button [checkbutton $ckbttn_frame.in_button -text "Flow to" \
-variable Apol_Analysis_fulflow::in_button_sel \
-offvalue 0 -onvalue 1 \
-command { Apol_Analysis_fulflow::in_button_press }]
set out_button [checkbutton $ckbttn_frame.out_button -text "Flow from" \
-variable Apol_Analysis_fulflow::out_button_sel \
-offvalue 0 -onvalue 1 \
-command { Apol_Analysis_fulflow::out_button_press }]
set cb_attrib [checkbutton $attrib_frame.cb_attrib -text "Filter starting types to select using attribute:" \
-variable Apol_Analysis_fulflow::display_attrib_sel \
-offvalue 0 -onvalue 1 \
-command { Apol_Analysis_fulflow::config_attrib_comboBox_state }]
set combo_attribute [ComboBox $attrib_frame.combo_attribute \
-textvariable Apol_Analysis_fulflow::display_attribute \
-modifycmd { Apol_Analysis_fulflow::change_types_list}]
set b_advanced_filters [button $advanced_f.b_advanced_filters -text "Advanced Filters" \
-command {Apol_Analysis_fulflow::advanced_filters_create_dialog \
$Apol_Analysis_fulflow::advanced_filter_Dlg \
"Transitive Information Flow Advanced Filters"}]
set cb_endtype [checkbutton $endtype_frame.cb_endtype -text "Find end types using regular expression:" \
-variable Apol_Analysis_fulflow::endtype_sel \
-offvalue 0 -onvalue 1 \
-command {Apol_Analysis_fulflow::config_endtype_state}]
set entry_end [Entry $endtype_frame.entry_end \
-helptext "You may enter a regular expression" \
-editable 1 \
-textvariable Apol_Analysis_fulflow::end_type]
set sw_info [ScrolledWindow [$c_frame getframe].sw_info -auto none]
set comment_text [text [$c_frame getframe].c_text -wrap none -bg white -font $ApolTop::text_font]
$sw_info setwidget $comment_text
# pack all the widgets
pack $entry_frame -side left -anchor nw -fill y -padx 5 -expand yes -fill both
pack $left_frame -side left -anchor nw -padx 5 -expand yes -fill both
pack $right_frame -side left -anchor nw -padx 5 -fill both
pack $f_frame -side top -anchor nw -pady 1 -fill x
pack $c_frame -side bottom -anchor nw -pady 1 -fill both -expand yes
pack $start_attrib_frame $flowtype_frame -side top -anchor nw -fill both -pady 5 -expand yes
pack $start_frame $attrib_frame -side top -anchor nw -fill both -expand yes
pack $lbl_flowtype -side top -anchor nw
pack $ckbttn_frame -side left -anchor nw -expand yes -fill both
pack $endtype_frame -side top -fill x -anchor nw -expand yes
pack $advanced_f -side top -anchor nw
pack $lbl_start_type -side top -anchor nw
pack $combo_start -side left -anchor nw -fill x -expand yes
pack $cb_attrib -side top -anchor nw
pack $combo_attribute -side top -anchor nw -padx 15 -fill x -expand yes
pack $in_button $out_button -side left -anchor nw -expand yes -fill x
pack $cb_endtype -side top -anchor nw -expand yes
pack $entry_end -side left -anchor nw -expand yes -fill x -padx 2
pack $b_advanced_filters -side left -anchor nw -expand yes -pady 5
pack $sw_info -side left -anchor nw -expand yes -fill both
# ComboBox is not a simple widget, it is a mega-widget, and bindings for mega-widgets are non-trivial.
# If bindtags is invoked with only one argument, then the current set of binding tags for window is
# returned as a list.
bindtags $combo_start.e [linsert [bindtags $combo_start.e] 3 start_list_Tag]
bind start_list_Tag <KeyPress> {ApolTop::_create_popup $Apol_Analysis_fulflow::combo_start %W %K}
bindtags $combo_attribute.e [linsert [bindtags $combo_attribute.e] 3 attribs_list_Tag]
bind attribs_list_Tag <KeyPress> { ApolTop::_create_popup $Apol_Analysis_fulflow::combo_attribute %W %K }
return 0
}
|