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
|
# Copyright (C) 2001-2006 Tresys Technology, LLC
# see file 'COPYING' for use and warranty information
# TCL/TK GUI for SE Linux policy analysis
# Requires tcl and tk 8.3+, with BWidgets
##############################################################
# ::ApolTop
#
# The top level GUI
##############################################################
namespace eval ApolTop {
# All capital letters is the convention for variables defined via the Makefile.
variable bwidget_version ""
variable status ""
variable policy_version_string ""
variable policy_type ""
variable policy_mls_type ""
variable filename ""
# The following is used with opening a policy for loading all or pieces of a policy.
# The option defaults to 0 (or all portions of the policy).
variable policy_open_option 0
variable policyConf_lineno ""
variable polstats
variable policy_stats_summary ""
# The version number is defined as a magical string here. This is later configured in the make environment.
variable gui_ver APOL_GUI_VERSION
variable copyright_date "2001-2006"
# install_dir is a magical string to be defined via the makefile!
variable apol_install_dir APOL_INSTALL_DIR
variable recent_files
variable num_recent_files 0
variable most_recent_file -1
# The max # can be changed by the .apol file
variable max_recent_files 5
# env array element HOME is an environment variable
variable dot_apol_file "[file join "$::env(HOME)" ".apol"]"
variable goto_line_num
# Default GUI settings
variable prevCursor arrow
# store the default background color for use when diabling widgets
variable default_bg_color
set default_bg_color [. cget -background]
variable text_font ""
variable title_font ""
variable dialog_font ""
variable general_font ""
variable temp_recent_files ""
variable query_file_ext ".qf"
# Main window dimension defaults
variable top_width 1000
variable top_height 700
variable libsefs 0
# Top-level dialog widgets
variable helpDlg
set helpDlg .apol_helpDlg
variable searchDlg
set searchDlg .searchDlg
variable goto_Dialog
set goto_Dialog .goto_Dialog
variable options_Dialog
set options_Dialog .options_Dialog
######################
# Other global widgets
variable mainframe
variable textbox_policyConf
variable searchDlg_entryBox
variable gotoDlg_entryBox
# Main top-level notebook widget
variable notebook
# Subordinate notebook widgets
variable components_nb
variable rules_nb
variable mls_tabs {} ;# list of notebook tabs that are only for MLS
# Search-related variables
variable searchString ""
variable case_Insensitive 0
variable regExpr 0
variable srch_Direction "down"
variable policy_is_open 0
# Notebook tab IDENTIFIERS; NOTE: We name all tabs after their related namespace qualified names.
# We use the prefix 'Apol_' for all notebook tabnames. Note that the prefix must end with an
# underscore and that that tabnames may NOT have a colon.
variable tabName_prefix "Apol_"
variable components_tab "Apol_Components"
variable types_tab "Apol_Types"
variable class_perms_tab "Apol_Class_Perms"
variable roles_tab "Apol_Roles"
variable users_tab "Apol_Users"
variable cond_bools_tab "Apol_Cond_Bools"
variable mls_tab "Apol_MLS"
variable initial_sids_tab "Apol_Initial_SIDS"
variable net_contexts_tab "Apol_NetContexts"
variable fs_contexts_tab "Apol_FSContexts"
variable rules_tab "Apol_Rules"
variable terules_tab "Apol_TE"
variable cond_rules_tab "Apol_Cond_Rules"
variable rbac_tab "Apol_RBAC"
variable range_tab "Apol_Range"
variable file_contexts_tab "Apol_File_Contexts"
variable analysis_tab "Apol_Analysis"
variable policy_conf_tab "Apol_PolicyConf"
variable tab_names {
Types Class_Perms Roles Users Cond_Bools MLS Initial_SIDS NetContexts FSContexts
TE Cond_Rules RBAC Range
File_Contexts
Analysis
PolicyConf
}
variable tk_msgBox_Wait
# "contents" indicates which aspects of the policy are included in the current opened policy file
# indicies into this array are:
# classes
# perms (inlcudes common perms)
# types (include attribs)
# te_rules (all type enforcement rules)
# roles
# rbac (all role rules)
# users
variable contents
# Initialize the recent files list
for {set i 0} {$i<$max_recent_files} {incr i} {
set recent_files($i) ""
}
#show warning for loading policy with fake attribute names
variable show_fake_attrib_warning 1
}
proc ApolTop::is_policy_open {} {
return $ApolTop::policy_is_open
}
proc ApolTop::get_install_dir {} {
return $ApolTop::apol_install_dir
}
proc ApolTop::get_toplevel_dialog {} {
return $ApolTop::mainframe
}
proc ApolTop::is_binary_policy {} {
if {$ApolTop::policy_type == "binary"} {
return 1
}
return 0
}
proc ApolTop::is_mls_policy {} {
if {![is_policy_open] || $ApolTop::policy_mls_type == "mls"} {
return 1
}
return 0
}
proc ApolTop::load_fc_index_file {} {
set rt [Apol_File_Contexts::load_fc_db]
if {$rt == 1} {
ApolTop::configure_load_index_menu_item 1
}
return 0
}
proc ApolTop::create_fc_index_file {} {
Apol_File_Contexts::display_create_db_dlg
return 0
}
########################################################################
# ::load_perm_map_fileDlg --
# - Called from Advanced menu
proc ApolTop::load_perm_map_fileDlg {} {
variable mainframe
set rt [Apol_Perms_Map::load_perm_map_fileDlg $mainframe]
if {$rt == 0} {
ApolTop::configure_edit_pmap_menu_item 1
}
return 0
}
########################################################################
# ::load_perm_map_mlsDlg --
# - Called from Advanced menu
proc ApolTop::load_perm_map_mlsDlg {} {
variable mainframe
set rt [Apol_Perms_Map::load_perm_map_mlsDlg $mainframe]
if {$rt == 0} {
ApolTop::configure_edit_pmap_menu_item 1
}
return 0
}
########################################################################
# ::load_default_perm_map_Dlg --
# - Called from Advanced menu
proc ApolTop::load_default_perm_map_Dlg {} {
variable mainframe
set rt [Apol_Perms_Map::load_default_perm_map_Dlg $mainframe]
if {$rt == 0} {
ApolTop::configure_edit_pmap_menu_item 1
}
return 0
}
########################################################################
# ::configure_edit_pmap_menu_item --
# -
proc ApolTop::configure_edit_pmap_menu_item {enable} {
variable mainframe
if {$enable} {
[$mainframe getmenu pmap_menu] entryconfigure last -state normal -label "Edit perm map..."
} else {
[$mainframe getmenu pmap_menu] entryconfigure last -state disabled -label "Edit perm map... (Not loaded)"
}
return 0
}
proc ApolTop::configure_load_index_menu_item {enable} {
variable mainframe
if {$enable} {
[$mainframe getmenu fc_index_menu] entryconfigure last -label "Load Index..."
} else {
[$mainframe getmenu fc_index_menu] entryconfigure last -label "Load Index... (Not loaded)"
}
return 0
}
########################################################################
# ::strip_list_of_empty_items -- takes a tcl list and checks for empty
# list items. If empty list items are found, it will be removed
# from the list and a new formatted list will be returned.
#
proc ApolTop::strip_list_of_empty_items {list_1} {
global tcl_version
set len [llength $list_1]
set items ""
for {set i 0} {$i < $len} {incr i} {
if {[lindex $list_1 $i] != ""} {
set items [lappend items [lindex $list_1 $i]]
}
}
return $items
}
proc ApolTop::disable_tkListbox { my_list_box } {
global tk_version
if {$tk_version >= "8.4"} {
$my_list_box configure -state disabled
} else {
set class_name [winfo class $my_list_box]
# Insert for the class name in bindtags list
if {$class_name != ""} {
set idx [lsearch -exact [bindtags $my_list_box] $class_name]
if {$idx != -1} {
bindtags $my_list_box [lreplace [bindtags $my_list_box] $idx $idx]
} else {
# The default bindtag is already unavailable so just return
return
}
} else {
tk_messageBox -parent $ApolTop::mainframe -icon error -type ok -title "Error" -message \
"Could not determine the class name of the widget."
return -1
}
}
return
}
proc ApolTop::enable_tkListbox { my_list_box } {
global tk_version
if { $tk_version >= "8.4"} {
$my_list_box configure -state normal
} else {
set class_name [winfo class $my_list_box]
# Insert for the class name in the bindtags list
if {$class_name != ""} {
set idx [lsearch -exact [bindtags $my_list_box] $class_name]
if {$idx != -1} {
#default class bindtag already defined, so return
return
}
bindtags $my_list_box [linsert [bindtags $my_list_box] 1 $class_name]
} else {
tk_messageBox -parent $ApolTop::mainframe -icon error -type ok -titls "Error" -message \
"Could not determine the class name of the widget."
return -1
}
}
return
}
# ------------------------------------------------------------------------------
# Command ApolTop::change_comboBox_state
# ------------------------------------------------------------------------------
proc ApolTop::change_comboBox_state {cb_value combo_box} {
selection clear -displayof $combo_box
if {$cb_value} {
$combo_box configure -state normal -entrybg white
} else {
$combo_box configure -state disabled -entrybg $ApolTop::default_bg_color
}
return 0
}
# ------------------------------------------------------------------------------
# Command ApolTop::popup_listbox_Menu
# ------------------------------------------------------------------------------
proc ApolTop::popup_listbox_Menu { global x y popup callbacks list_box} {
focus -force $list_box
set selected_item [$list_box get active]
if {$selected_item == ""} {
return
}
# Getting global coordinates of the application window (of position 0, 0)
set gx [winfo rootx $global]
set gy [winfo rooty $global]
# Add the global coordinates for the application window to the current mouse coordinates
# of %x & %y
set cmx [expr $gx + $x]
set cmy [expr $gy + $y]
$popup delete 0 end
foreach callback $callbacks {
$popup add command -label "[lindex $callback 0]" -command "[lindex $callback 1] $selected_item"
}
# Posting the popup menu
tk_popup $popup $cmx $cmy
return 0
}
# ------------------------------------------------------------------------------
# Command ApolTop::popup_Tab_Menu
# ------------------------------------------------------------------------------
proc ApolTop::popup_Tab_Menu { window x y popupMenu callbacks page } {
if {$page == ""} {
return
}
# Getting global coordinates of the application window (of position 0, 0)
set gx [winfo rootx $window]
set gy [winfo rooty $window]
# Add the global coordinates for the application window to the current mouse coordinates
# of %x & %y
set cmx [expr $gx + $x]
set cmy [expr $gy + $y]
set page [ApolTop::get_tabname $page]
$popupMenu delete 0 end
foreach callback $callbacks {
$popupMenu add command -label "[lindex $callback 0]" -command "[lindex $callback 1] $page"
}
# Posting the popup menu
tk_popup $popupMenu $cmx $cmy
return 0
}
################################################################################
# ::get_tabname --
# args:
# - tabID - the tabID provided from the Notebook::bindtabs command
#
# Description: There is a bug with the BWidgets 1.7.0 Notebook widget where the
# tabname is stripped of its' first 2 characters AND an additional
# string, consisting of a colon followed by an embedded widget name
# from the tab, is appended. For example, the tab name will be
# 'sults1:text' instead of 'Results1".
#
proc ApolTop::get_tabname {tab} {
variable tabName_prefix
set idx [string last ":" $tab]
if {$idx != -1} {
# Strip off the last ':' and any following characters from the end of the string
set tab [string range $tab 0 [expr $idx - 1]]
}
set prefix_len [string length $tabName_prefix]
if {[string range $tab 0 $prefix_len] == $tabName_prefix} {
return $tab
}
set tmp $tabName_prefix
set idx [string first "_" $tab]
if {$idx == -1} {
return $tab
}
set tab_fixed [append tmp [string range $tab [expr $idx + 1] end]]
return $tab_fixed
}
proc ApolTop::set_Focus_to_Text { tab } {
variable components_nb
variable rules_nb
variable file_contexts_tab
$ApolTop::mainframe setmenustate Disable_SearchMenu_Tag normal
# The load query menu option should be enabled across all tabs.
# However, we disable the save query menu option if it this is not the Analysis or TE Rules tab.
# Currently, these are the only tabs providing the ability to save queries. It would be too trivial
# to allow saving queries for the other tabs.
$ApolTop::mainframe setmenustate Disable_LoadQuery_Tag normal
set ApolTop::policyConf_lineno ""
set tab [ApolTop::get_tabname $tab]
switch -exact -- $tab \
$ApolTop::components_tab {
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag disabled
ApolTop::set_Focus_to_Text [$components_nb raise]
} \
$ApolTop::rules_tab {
ApolTop::set_Focus_to_Text [$rules_nb raise]
} \
$ApolTop::terules_tab {
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag normal
set raisedPage [Apol_TE::get_results_raised_tab]
if {$raisedPage != ""} {
Apol_TE::set_Focus_to_Text $raisedPage
} else {
focus [$ApolTop::rules_nb getframe $ApolTop::terules_tab]
}
} \
$ApolTop::analysis_tab {
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag normal
$ApolTop::mainframe setmenustate Disable_SearchMenu_Tag disabled
set raisedPage [Apol_Analysis::get_results_raised_tab]
if {$raisedPage != ""} {
Apol_Analysis::set_Focus_to_Text $raisedPage
}
} \
default {
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag disabled
${tab}::set_Focus_to_Text
}
}
########################################################################
# ::textSearch --
# - Search for an instances of a given string in a text widget and
# - selects matching text..
#
# Arguments:
# w - The window in which to search. Must be a text widget.
# str - The string to search for. BUG NOTE: '-' as first character throws an error.
# case_Insensitive Whether to ignore case differences or not
# regExpr Whether to treat $str as a regular expression and match it against the text
# srch_Direction What direction to search in the text. (-forward or -backward)
#
proc ApolTop::textSearch { w str case_Insensitive regExpr srch_Direction } {
if {$str == ""} {
return 0
}
# Local variables to hold search options. Initialized to space characters.
set case_opt " "
set regExpr_opt " "
set direction_opt " "
# Setting search options.
if { $case_Insensitive } {
set case_opt "-nocase"
}
if { $regExpr } {
set regExpr_opt "-regexp"
}
if { $srch_Direction == "down" } {
set direction_opt "-forward"
# Get the current insert position.
set cur_srch_pos [$w index insert]
} else {
set direction_opt "-backward"
# Get the first character index of the current selection.
set cur_srch_pos [lindex [$w tag ranges sel] 0]
}
if { $cur_srch_pos == "" } {
set cur_srch_pos "1.0"
}
# Remove any selection tags.
$w tag remove sel 0.0 end
# Set the command string and strip out any space characters (meaning that an option was not selected).
# BUG NOTE: Currently, there is a bug with text widgets' search command. It does not
# handle a '-' as the first character in the string.
set cmd "$w search -count cur_srch_pos_length $case_opt $regExpr_opt $direction_opt"
set rt [catch {set cur_srch_pos [eval $cmd {"$str"} $cur_srch_pos] } err]
# Catch any error performing the search command and display error message to user.
if { $rt != 0 } {
tk_messageBox -parent $ApolTop::searchDlg -icon error -type ok -title "Search Error" -message \
"$err"
return -1
}
# Prompt the user if a match was not found.
if { $cur_srch_pos == "" } {
# NOTE: Use vwait command.to block the application if the event hasn't completed.
# This is because when Return button is hit multiple times a TCL/TK bug is being
# thrown:can't read "::tk::FocusGrab(...)
# The problem is that tkMessageBox summarily destroys the old window -
# which screws up SetFocusGrab's private variables because SetFocusGrab isn't reentrant.
set ApolTop::tk_msgBox_Wait \
[tk_messageBox -parent $ApolTop::searchDlg -icon warning -type ok -title "Search Failed" -message \
"Search string not found!"]
vwait ApolTop::tk_msgBox_Wait
} else {
# Set the insert position in the text widget.
# If the direction is down, set the mark to index of the END character in the match.
# If the direction is up, set the mark to the index of the FIRST character in the match.
$w mark set insert "$cur_srch_pos + $cur_srch_pos_length char"
$w tag add sel $cur_srch_pos "$cur_srch_pos + $cur_srch_pos_length char"
# Adjust the view in the window.
$w see $cur_srch_pos
}
return 0
}
##############################################################
# ::search
# - Search raised text widget for a string
#
proc ApolTop::search {} {
variable searchString
variable case_Insensitive
variable regExpr
variable srch_Direction
variable notebook
variable components_nb
variable rules_nb
variable components_tab
variable rules_tab
variable policy_conf_tab
variable analysis_tab
variable file_contexts_tab
set raised_tab [$notebook raise]
switch -- $raised_tab \
$policy_conf_tab {
${policy_conf_tab}::search $searchString $case_Insensitive $regExpr $srch_Direction
} \
$analysis_tab {
${analysis_tab}::search $searchString $case_Insensitive $regExpr $srch_Direction
} \
$rules_tab {
[$rules_nb raise]::search $searchString $case_Insensitive $regExpr $srch_Direction
} \
$components_tab {
[$components_nb raise]::search $searchString $case_Insensitive $regExpr $srch_Direction
} \
$file_contexts_tab {
${file_contexts_tab}::search $searchString $case_Insensitive $regExpr $srch_Direction
} \
default {
puts "Invalid raised tab!"
}
return 0
}
# ------------------------------------------------------------------------------
# Command ApolTop::_getIndexValue
# ------------------------------------------------------------------------------
proc ApolTop::getIndexValue { path value } {
set listValues [Widget::getMegawidgetOption $path -values]
return [lsearch -glob $listValues "$value*"]
}
# ------------------------------------------------------------------------------
# Command ApolTop::_mapliste
# ------------------------------------------------------------------------------
proc ApolTop::_mapliste { path } {
set listb $path.shell.listb
if { [Widget::cget $path -state] == "disabled" } {
return
}
if { [set cmd [Widget::getMegawidgetOption $path -postcommand]] != "" } {
uplevel \#0 $cmd
}
if { ![llength [Widget::getMegawidgetOption $path -values]] } {
return
}
ComboBox::_create_popup $path
ArrowButton::configure $path.a -relief sunken
update
$listb selection clear 0 end
BWidget::place $path.shell [winfo width $path] 0 below $path
wm deiconify $path.shell
raise $path.shell
BWidget::grab local $path
return $listb
}
# ------------------------------------------------------------------------------
# Command ApolTop::_create_popup
# ------------------------------------------------------------------------------
proc ApolTop::_create_popup { path entryBox key } {
# Getting value from the entry subwidget of the combobox
# and then checking its' length
set value [Entry::cget $path.e -text]
set len [string length $value]
# Key must be an alphanumeric ASCII character.
if { [string is alpha $key] } {
#ComboBox::_unmapliste $path
set idx [ ApolTop::getIndexValue $path $value ]
if { $idx != -1 } {
# Calling setSelection function to set the selection to the index value
ApolTop::setSelection $idx $path $entryBox $key
}
}
if { $key == "Return" } {
# If the dropdown box visible, then we just select the value and unmap the list.
if {[winfo exists $path.shell.listb] && [winfo viewable $path.shell.listb]} {
set index [$path.shell.listb curselection]
if { $index != -1 } {
if { [ComboBox::setvalue $path @$index] } {
set cmd [Widget::getMegawidgetOption $path -modifycmd]
if { $cmd != "" } {
uplevel \#0 $cmd
}
}
}
ComboBox::_unmapliste $path
focus -force .
}
}
return 0
}
######################################################################
# Command: ApolTop::tklistbox_select_on_key_callback
# Arguments: Takes a tk listbox widget,
# the variable name of the associated global list, and
# the key pressed. Handles lowercase and uppercase key
# values.
# NOTE: This proc expects the associated list to be globally defined.
proc ApolTop::tklistbox_select_on_key_callback { path list_items_1 key } {
upvar #0 $list_items_1 list_items
if {$path == ""} {
tk_messageBox \
-icon error \
-type ok \
-title "Error" \
-message "No listbox pathname provided." \
-parent $mainframe
}
if {[string is alpha $key]} {
set low_key_str [string tolower $key]
set matches [lsearch -regexp $list_items "^\[$key$low_key_str\]"]
if {$matches != -1} {
$path selection clear 0 end
$path selection set [lindex $matches 0]
$path see [lindex $matches 0]
}
}
return 0
}
# ------------------------------------------------------------------------------
# Command ApolTop::setSelection
# ------------------------------------------------------------------------------
proc ApolTop::setSelection { idx path entryBox key } {
if {$idx != -1} {
set listb [ApolTop::_mapliste $path]
$listb selection set $idx
$listb activate $idx
$listb see $idx
}
return 0
}
##############################################################
# ::load_query_info
# - Call load_query proc for valid tab
#
proc ApolTop::load_query_info {} {
variable notebook
variable rules_tab
variable terules_tab
variable analysis_tab
variable rules_nb
variable mainframe
set query_file ""
set types {
{"Query files" {$ApolTop::query_file_ext}}
}
set query_file [tk_getOpenFile -filetypes $types -title "Select Query to Load..." \
-defaultextension $ApolTop::query_file_ext -parent $mainframe]
if {$query_file != ""} {
if {[file exists $query_file] == 0 } {
tk_messageBox -icon error -type ok -title "Error" \
-message "File $query_file does not exist." -parent $mainframe
return -1
}
set rt [catch {set f [::open $query_file]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "Cannot open $query_file: $err"
return -1
}
# Search for the analysis type line
gets $f line
set query_id [string trim $line]
while {[eof $f] != 1} {
# Skip empty lines and comments
if {$query_id == "" || [string compare -length 1 $query_id "#"] == 0} {
gets $f line
set query_id [string trim $line]
continue
}
break
}
switch -- $query_id \
$analysis_tab {
set rt [catch {${analysis_tab}::load_query_options $f $mainframe} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "$err"
return -1
}
$notebook raise $analysis_tab
} \
$terules_tab {
if {[string equal [$rules_nb raise] $ApolTop::terules_tab]} {
set rt [catch {${ApolTop::terules_tab}::load_query_options $f $mainframe} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "$err"
return -1
}
$notebook raise $rules_tab
$rules_nb raise $ApolTop::terules_tab
}
} \
default {
tk_messageBox -icon error -type ok -title "Error" \
-message "Invalid query ID."
}
ApolTop::set_Focus_to_Text [$notebook raise]
::close $f
}
return 0
}
##############################################################
# ::save_query_info
# - Call save_query proc for valid tab
#
proc ApolTop::save_query_info {} {
variable notebook
variable rules_tab
variable terules_tab
variable analysis_tab
variable rules_nb
variable mainframe
# Make sure we only allow saving from the Analysis and TERules tabs
set raised_tab [$notebook raise]
if {![string equal $raised_tab $analysis_tab] && ![string equal $raised_tab $rules_tab]} {
tk_messageBox -icon error -type ok -title "Save Query Error" \
-message "You cannot save a query from this tab! \
You can only save from the Policy Rules->TE Rules tab and the Analysis tab."
return -1
}
if {[string equal $raised_tab $rules_tab] && ![string equal [$rules_nb raise] $terules_tab]} {
tk_messageBox -icon error -type ok -title "Save Query Error" \
-message "You cannot save a query from this tab! \
You can only save from the Policy Rules->TE Rules tab and the Analysis tab."
return -1
}
set query_file ""
set types {
{"Query files" {$ApolTop::query_file_ext}}
}
set query_file [tk_getSaveFile -title "Save Query As?" \
-defaultextension $ApolTop::query_file_ext \
-filetypes $types -parent $mainframe]
if {$query_file != ""} {
set rt [catch {set f [::open $query_file w+]} err]
if {$rt != 0} {
return -code error $err
}
switch -- $raised_tab \
$analysis_tab {
puts $f "$analysis_tab"
set rt [catch {${analysis_tab}::save_query_options $f $query_file} err]
if {$rt != 0} {
::close $f
tk_messageBox -icon error -type ok -title "Save Query Error" \
-message "$err"
return -1
}
} \
$rules_tab {
if {[string equal [$rules_nb raise] $terules_tab]} {
puts $f "$terules_tab"
set rt [catch {${terules_tab}::save_query_options $f $query_file} err]
if {$rt != 0} {
::close $f
tk_messageBox -icon error -type ok -title "Save Query Error" \
-message "$err"
return -1
}
}
} \
default {
::close $f
tk_messageBox -icon error -type ok -title "Save Query Error" \
-message "You cannot save a query from this tab!"
return -1
}
::close $f
}
return 0
}
##############################################################
# ::display_searchDlg
# - Display the search dialog
#
proc ApolTop::display_searchDlg {} {
variable searchDlg
variable searchDlg_entryBox
global tcl_platform
if { [$ApolTop::notebook raise] == $ApolTop::analysis_tab } {
return
}
# Checking to see if window already exists. If so, it is destroyed.
if { [winfo exists $searchDlg] } {
raise $searchDlg
focus $searchDlg_entryBox
$searchDlg_entryBox selection range 0 end
return
}
# Create the toplevel dialog window and set its' properties.
toplevel $searchDlg
wm protocol $searchDlg WM_DELETE_WINDOW " "
wm withdraw $searchDlg
wm title $searchDlg "Find"
if {$tcl_platform(platform) == "windows"} {
wm resizable $ApolTop::searchDlg 0 0
} else {
bind $ApolTop::searchDlg <Configure> { wm geometry $ApolTop::searchDlg {} }
}
# Display results window
set sbox [frame $searchDlg.sbox]
set lframe [frame $searchDlg.lframe]
set rframe [frame $searchDlg.rframe]
set lframe_top [frame $lframe.lframe_top]
set lframe_bot [frame $lframe.lframe_bot]
set lframe_bot_left [frame $lframe_bot.lframe_bot_left]
set lframe_bot_right [frame $lframe_bot.lframe_bot_right]
set lbl_entry [label $lframe_top.lbl_entry -text "Find What:"]
set searchDlg_entryBox [entry $lframe_top.searchDlg_entryBox -bg white -textvariable ApolTop::searchString ]
set b_findNext [button $rframe.b_findNext -text "Find Next" \
-command { ApolTop::search }]
set b_cancel [button $rframe.b_cancel -text "Cancel" \
-command "destroy $searchDlg"]
set cb_case [checkbutton $lframe_bot_left.cb_case -text "Case Insensitive" -variable ApolTop::case_Insensitive]
set cb_regExpr [checkbutton $lframe_bot_left.cb_regExpr -text "Regular Expressions" -variable ApolTop::regExpr]
set directionBox [TitleFrame $lframe_bot_right.directionBox -text "Direction" ]
set dir_up [radiobutton [$directionBox getframe].dir_up -text "Up" -variable ApolTop::srch_Direction \
-value up ]
set dir_down [radiobutton [$directionBox getframe].dir_down -text "Down" -variable ApolTop::srch_Direction \
-value down ]
# Placing display widgets
pack $sbox -expand yes -fill both -padx 5 -pady 5
pack $lframe -expand yes -fill both -padx 5 -pady 5 -side left
pack $rframe -expand yes -fill both -padx 5 -pady 5 -side right
pack $lframe_top -expand yes -fill both -padx 5 -pady 5 -side top
pack $lframe_bot -expand yes -fill both -padx 5 -pady 5 -side bottom
pack $lframe_bot_left -expand yes -fill both -padx 5 -pady 5 -side left
pack $lframe_bot_right -expand yes -fill both -padx 5 -pady 5 -side right
pack $lbl_entry -expand yes -fill both -side left
pack $searchDlg_entryBox -expand yes -fill both -side right
pack $b_findNext $b_cancel -side top -expand yes -fill x
pack $cb_case $cb_regExpr -expand yes -side top -anchor nw
pack $directionBox -side left -expand yes -fill both
pack $dir_up $dir_down -side left -anchor center
# Place a toplevel at a particular position
#::tk::PlaceWindow $searchDlg widget center
wm deiconify $searchDlg
focus $searchDlg_entryBox
$searchDlg_entryBox selection range 0 end
bind $ApolTop::searchDlg <Return> { ApolTop::search }
wm protocol $searchDlg WM_DELETE_WINDOW "destroy $searchDlg"
return 0
}
########################################################################
# ::goto_line
# - goes to indicated line in text box
#
proc ApolTop::goto_line { line_num textBox } {
variable notebook
if {[string is integer -strict $line_num] != 1} {
tk_messageBox -icon error \
-type ok \
-title "Invalid line number" \
-message "$line_num is not a valid line number"
return 0
}
# Remove any selection tags.
$textBox tag remove sel 0.0 end
$textBox mark set insert ${line_num}.0
$textBox see ${line_num}.0
$textBox tag add sel $line_num.0 $line_num.end
focus -force $textBox
return 0
}
##############################################################
# ::call_tabs_goto_line_cmd
# -
proc ApolTop::call_tabs_goto_line_cmd { } {
variable goto_line_num
variable notebook
variable components_nb
variable rules_nb
variable components_tab
variable rules_tab
variable policy_conf_tab
variable analysis_tab
variable file_contexts_tab
set raised_tab [$notebook raise]
switch -- $raised_tab \
$policy_conf_tab {
${policy_conf_tab}::goto_line $goto_line_num
} \
$analysis_tab {
${analysis_tab}::goto_line $goto_line_num
} \
$rules_tab {
[$rules_nb raise]::goto_line $goto_line_num
} \
$components_tab {
[$components_nb raise]::goto_line $goto_line_num
} \
$file_contexts_tab {
${file_contexts_tab}::goto_line $goto_line_num
} \
default {
return -code error
}
return 0
}
##############################################################
# ::display_options_Dlg
# -
proc ApolTop::display_options_Dlg { } {
variable options_Dialog
global tcl_platform
# create dialog
if { [winfo exists $options_Dialog] } {
raise $options_Dialog
return 0
}
toplevel $options_Dialog
wm protocol $options_Dialog WM_DELETE_WINDOW " "
wm withdraw $options_Dialog
wm title $options_Dialog "Open Options"
set open_opts_f [TitleFrame $options_Dialog.open_opts_f -text "Open policy options"]
set t_frame [frame [$open_opts_f getframe].t_frame]
set b_frame [frame [$open_opts_f getframe].b_frame]
set lframe [frame $b_frame.lframe]
set rframe [frame $b_frame.rframe]
set lb_textInfo [label $t_frame.lb_textInfo -justify left \
-text "The following are policy options used for opening\
a policy in order to control which parts of the policy are\
loaded.\nPlease note: Conditional booleans and expressions\
will always be loaded. Also, attributes do not apply to a binary\npolicy file.\n"]
set cb_all [radiobutton $lframe.cb_all -text "All" \
-variable ApolTop::policy_open_option -value 0 \
-justify left]
set cb_users [radiobutton $lframe.cb_users -text "Users (includes roles, types and attributes)" \
-variable ApolTop::policy_open_option -value 1 \
-justify left]
set cb_roles [radiobutton $lframe.cb_roles -text "Roles (types and attributes included)" \
-variable ApolTop::policy_open_option -value 2 \
-justify left]
set cb_ta [radiobutton $lframe.cb_ta -text "Types and attributes" \
-variable ApolTop::policy_open_option -value 3 \
-justify left]
set cb_bools [radiobutton $lframe.cb_bools -text "Booleans" \
-variable ApolTop::policy_open_option -value 4 \
-justify left]
set cb_classes_perms [radiobutton $rframe.cb_classes_perms \
-text "Classes and permissions only" \
-variable ApolTop::policy_open_option -value 5 \
-justify left]
set cb_rbac [radiobutton $rframe.cb_rbac -text "RBAC policy (includes roles, role rules,\n\
types, attributes, classes, permissions)" \
-variable ApolTop::policy_open_option -value 6 \
-justify left]
set cb_te [radiobutton $rframe.cb_te -text "TE policy (includes classes, permissions, types,\n\
attributes and TE rules)" \
-variable ApolTop::policy_open_option -value 7 \
-justify left]
set cb_cond [radiobutton $rframe.cb_cond -text "Conditionals (includes conditional TE rules,\
types,\nattributes, classes and permissions)" \
-variable ApolTop::policy_open_option -value 8 \
-justify left]
set cb_sids [radiobutton $rframe.cb_sids -text "Initial SIDs (includes types, attributes, roles, and\n\
users)" \
-variable ApolTop::policy_open_option -value 9 \
-justify left]
set b_ok [button $options_Dialog.b_ok -text "OK" -width 6 -command { destroy $ApolTop::options_Dialog }]
pack $b_ok -side bottom -padx 5 -pady 5 -anchor center
pack $open_opts_f -side left -anchor nw -fill both -expand yes -padx 5 -pady 5
pack $t_frame $b_frame -side top -anchor nw -fill both
pack $lframe $rframe -side left -anchor nw -fill both -expand yes
pack $cb_all $cb_users $cb_roles $cb_ta $cb_classes_perms -side top -anchor nw -expand yes
pack $cb_bools $cb_cond $cb_sids $cb_rbac $cb_te -side top -anchor nw -expand yes
pack $lb_textInfo -side top -anchor nw -fill x
# Place a toplevel at a particular position
#::tk::PlaceWindow $options_Dialog widget center
wm deiconify $options_Dialog
wm protocol $options_Dialog WM_DELETE_WINDOW "destroy $options_Dialog"
return 0
}
##############################################################
# ::display_goto_line_Dlg
# -
proc ApolTop::display_goto_line_Dlg { } {
variable notebook
variable goto_Dialog
variable gotoDlg_entryBox
global tcl_platform
if { [$ApolTop::notebook raise] == $ApolTop::analysis_tab } {
return
}
# create dialog
if { [winfo exists $goto_Dialog] } {
raise $goto_Dialog
focus $gotoDlg_entryBox
return 0
}
toplevel $goto_Dialog
wm protocol $goto_Dialog WM_DELETE_WINDOW " "
wm withdraw $goto_Dialog
wm title $goto_Dialog "Goto"
if {$tcl_platform(platform) == "windows"} {
wm resizable $ApolTop::goto_Dialog 0 0
} else {
bind $ApolTop::goto_Dialog <Configure> { wm geometry $ApolTop::goto_Dialog {} }
}
# Clear the previous line number
set ApolTop::goto_line_num ""
set gotoDlg_entryBox [entry $goto_Dialog.gotoDlg_entryBox -textvariable ApolTop::goto_line_num -width 10 ]
set lbl_goto [label $goto_Dialog.lbl_goto -text "Goto:"]
set b_ok [button $goto_Dialog.ok -text "OK" -width 6 -command { ApolTop::call_tabs_goto_line_cmd; destroy $ApolTop::goto_Dialog}]
set b_cancel [button $goto_Dialog.cancel -text "Cancel" -width 6 -command { destroy $ApolTop::goto_Dialog }]
pack $lbl_goto $gotoDlg_entryBox -side left -padx 5 -pady 5 -anchor nw
pack $b_ok $b_cancel -side left -padx 5 -pady 5 -anchor ne
# Place a toplevel at a particular position
#::tk::PlaceWindow $goto_Dialog widget center
wm deiconify $goto_Dialog
focus $gotoDlg_entryBox
bind $ApolTop::goto_Dialog <Return> { ApolTop::call_tabs_goto_line_cmd; destroy $ApolTop::goto_Dialog }
wm protocol $goto_Dialog WM_DELETE_WINDOW "destroy $goto_Dialog"
return 0
}
proc ApolTop::check_libsefs {} {
set rt [catch {set ret [apol_IsLibsefs_BuiltIn]} err]
if {$rt != 0} {
return -code error $err
}
set ApolTop::libsefs $ret
return 0
}
proc ApolTop::create { } {
variable notebook
variable mainframe
variable components_nb
variable rules_nb
variable bwidget_version
# Menu description
set descmenu {
"&File" {} file 0 {
{command "&Open..." {} "Open a new policy" {} -command ApolTop::openPolicy}
{command "&Close" {} "Close an opened polocy" {} -command ApolTop::closePolicy}
{separator}
{command "E&xit" {} "Exit policy analysis tool" {} -command ApolTop::apolExit}
{separator}
{cascad "&Recent files" {} recent 0 {}}
}
"&Search" {} search 0 {
{command "&Find... (C-s)" {Disable_SearchMenu_Tag} "Find" \
{} -command ApolTop::display_searchDlg }
{command "&Goto Line... (C-g)" {Disable_SearchMenu_Tag} "Goto Line" \
{} -command ApolTop::display_goto_line_Dlg }
}
"&Query" {} query 0 {
{command "&Load query..." {Disable_LoadQuery_Tag} "Load query" \
{} -command "ApolTop::load_query_info" }
{command "&Save query..." {Disable_SaveQuery_Tag} "Save query" \
{} -command "ApolTop::save_query_info" }
{separator}
{command "&Policy Summary" {Disable_Summary} "Display summary statics" {} -command ApolTop::popupPolicyStats }
}
"&Advanced" all options 0 {
{cascad "&Permission Mappings" {Perm_Map_Tag} pmap_menu 0 {}}
#{command "Open O&ptions..." {} "Open options" \
# {} -command "ApolTop::display_options_Dlg" }
#{cascad "&File Context Indexing" {FC_Index_Tag} fc_index_menu 0 {}}
}
"&Help" {} helpmenu 0 {
{command "&General Help" {all option} "Show help" {} -command {ApolTop::helpDlg "Help" "apol_help.txt"}}
{command "&Domain Transition Analysis" {all option} "Show help" {} -command {ApolTop::helpDlg "Domain Transition Analysis Help" "dta_help.txt"}}
{command "&Information Flow Analysis" {all option} "Show help" {} -command {ApolTop::helpDlg "Information Flow Analysis Help" "iflow_help.txt"}}
#{command "&Information Flow Assertion Analysis" {all option} "Show help" {} -command {ApolTop::helpDlg "Information Flow Assertion Analysis Help" "flow_assertion_help.txt"}}
{command "&Relabel Analysis" {all option} "Show help" {} -command {ApolTop::helpDlg "Relabel Analysis Help" "file_relabel_help.txt"}}
{command "&Types Relationship Summary Analysis" {all option} "Show help" {} -command {ApolTop::helpDlg "Types Relationship Summary Analysis Help" "types_relation_help.txt"}}
{separator}
{command "&About" {all option} "Show about box" {} -command ApolTop::aboutBox}
}
}
set mainframe [MainFrame .mainframe -menu $descmenu -textvariable ApolTop::status]
[$mainframe getmenu pmap_menu] insert 0 command -label "Edit perm map... (Not loaded)" -command "Apol_Perms_Map::display_perm_mappings_Dlg"
[$mainframe getmenu pmap_menu] insert 0 separator
[$mainframe getmenu pmap_menu] insert 0 command -label "Load Perm Map from MLS file..." -command "ApolTop::load_perm_map_mlsDlg"
[$mainframe getmenu pmap_menu] insert 0 command -label "Load Perm Map from file..." -command "ApolTop::load_perm_map_fileDlg"
[$mainframe getmenu pmap_menu] insert 0 separator
[$mainframe getmenu pmap_menu] insert 0 command -label "Load Default Perm Map" -command "ApolTop::load_default_perm_map_Dlg"
#[$mainframe getmenu fc_index_menu] insert 0 command -label "Load Index... (Not loaded)" -command "ApolTop::load_fc_index_file"
#[$mainframe getmenu fc_index_menu] insert 0 command -label "Create Index" -command "ApolTop::create_fc_index_file"
$mainframe addindicator -textvariable ApolTop::policyConf_lineno -width 14
$mainframe addindicator -textvariable ApolTop::policy_stats_summary -width 88
$mainframe addindicator -textvariable ApolTop::policy_version_string -width 28
# Disable menu items since a policy is not yet loaded.
$ApolTop::mainframe setmenustate Disable_SearchMenu_Tag disabled
$ApolTop::mainframe setmenustate Perm_Map_Tag disabled
$ApolTop::mainframe setmenustate FC_Index_Tag normal
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag disabled
$ApolTop::mainframe setmenustate Disable_LoadQuery_Tag disabled
$ApolTop::mainframe setmenustate Disable_Summary disabled
# NoteBook creation
set frame [$mainframe getframe]
set notebook [NoteBook $frame.nb]
# Create Top-level tab frames
set components_frame [$notebook insert end $ApolTop::components_tab -text "Policy Components"]
set rules_frame [$notebook insert end $ApolTop::rules_tab -text "Policy Rules"]
if {$ApolTop::libsefs == 1} {
Apol_File_Contexts::create $notebook
}
Apol_Analysis::create $notebook
Apol_PolicyConf::create $notebook
# Create subordinate tab frames
set components_nb [NoteBook $components_frame.components_nb]
set rules_nb [NoteBook $rules_frame.rules_nb]
variable mls_tabs
# Subtabs for the main policy components tab.
Apol_Types::create $components_nb
Apol_Class_Perms::create $components_nb
Apol_Roles::create $components_nb
Apol_Users::create $components_nb
Apol_Cond_Bools::create $components_nb
Apol_MLS::create $components_nb
lappend mls_tabs [list $components_nb [$components_nb pages end]]
Apol_Initial_SIDS::create $components_nb
Apol_NetContexts::create $components_nb
Apol_FSContexts::create $components_nb
# Subtabs for the main policy rules tab
Apol_TE::create $rules_nb
Apol_Cond_Rules::create $rules_nb
Apol_RBAC::create $rules_nb
Apol_Range::create $rules_nb
lappend mls_tabs [list $rules_nb [$rules_nb pages end]]
$components_nb compute_size
pack $components_nb -fill both -expand yes -padx 4 -pady 4
$components_nb raise [$components_nb page 0]
$components_nb bindtabs <Button-1> { ApolTop::set_Focus_to_Text }
$rules_nb compute_size
pack $rules_nb -fill both -expand yes -padx 4 -pady 4
$rules_nb raise [$rules_nb page 0]
$rules_nb bindtabs <Button-1> { ApolTop::set_Focus_to_Text }
bind . <Control-s> {ApolTop::display_searchDlg}
bind . <Control-g> {ApolTop::display_goto_line_Dlg}
$notebook compute_size
pack $notebook -fill both -expand yes -padx 4 -pady 4
$notebook raise [$notebook page 0]
$notebook bindtabs <Button-1> { ApolTop::set_Focus_to_Text }
pack $mainframe -fill both -expand yes
return 0
}
# Saves user data in their $HOME/.apol file
proc ApolTop::writeInitFile { } {
variable dot_apol_file
variable num_recent_files
variable recent_files
variable text_font
variable title_font
variable dialog_font
variable general_font
variable policy_open_option
set rt [catch {set f [open $dot_apol_file w+]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "$err"
return
}
puts $f "recent_files"
puts $f $num_recent_files
for {set i 0} {$i < $num_recent_files} {incr i} {
puts $f $recent_files($i)
}
# free the recent files array
array unset recent_files
puts $f "\n"
puts $f "# Font format: family ?size? ?style? ?style ...?"
puts $f "# Possible values for the style arguments are as follows:"
puts $f "# normal bold roman italic underline overstrike\n#\n#"
puts $f "# NOTE: When configuring fonts, remember to remove the following "
puts $f "# \[window height\] and \[window width\] entries before starting apol. "
puts $f "# Not doing this may cause widgets to be obscured when running apol."
puts $f "\[general_font\]"
if {$general_font == ""} {
puts $f "Helvetica 10"
} else {
puts $f "$general_font"
}
puts $f "\[title_font\]"
if {$title_font == ""} {
puts $f "Helvetica 10 bold italic"
} else {
puts $f "$title_font"
}
puts $f "\[dialog_font\]"
if {$dialog_font == ""} {
puts $f "Helvetica 10"
} else {
puts $f "$dialog_font"
}
puts $f "\[text_font\]"
if {$text_font == ""} {
puts $f "fixed"
} else {
puts $f "$text_font"
}
puts $f "\[window_height\]"
puts $f [winfo height .]
puts $f "\[window_width\]"
puts $f [winfo width .]
puts $f "\[policy_open_option\]"
puts $f $policy_open_option
puts $f "\[show_fake_attrib_warning\]"
puts $f $ApolTop::show_fake_attrib_warning
close $f
return 0
}
# Reads in user data from their $HOME/.apol file
proc ApolTop::readInitFile { } {
variable dot_apol_file
variable max_recent_files
variable recent_files
variable text_font
variable title_font
variable dialog_font
variable general_font
variable temp_recent_files
variable top_height
variable top_width
variable policy_open_option
# if it doesn't exist, we'll create later
if {[file exists $dot_apol_file] == 0 } {
return
}
set rt [catch {set f [open $dot_apol_file]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" \
-message "Cannot open .apol file ($rt: $err)"
return
}
# Flags for key words
set max_recent_flag 0
set recent_files_flag 0
gets $f line
set tline [string trim $line]
while {1} {
if {[eof $f] && $tline == ""} {
break
}
if {[string compare -length 1 $tline "#"] == 0 || [string is space $tline]} {
gets $f line
set tline [string trim $line]
continue
}
switch $tline {
"\[window_height\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read window_height."
continue
}
if {[string is integer $tline] != 1} {
puts "window_height was not given as an integer ($line) and is ignored"
break
}
set top_height $tline
}
"\[window_width\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read window_width."
continue
}
if {[string is integer $tline] != 1} {
puts "window_width was not given as an integer ($line) and is ignored"
break
}
set top_width $tline
}
"\[title_font\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read title font."
continue
}
set title_font $tline
}
"\[dialog_font\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read dialog font."
continue
}
set dialog_font $tline
}
"\[text_font\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read text font."
continue
}
set text_font $tline
}
"\[general_font\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read general font."
continue
}
set general_font $tline
}
"\[policy_open_option\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read open policy option."
continue
}
set policy_open_option $tline
}
"\[show_fake_attrib_warning\]" {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read show_fake_attrib_warning"
continue
}
set ApolTop::show_fake_attrib_warning $tline
}
# The form of [max_recent_file] is a single line that follows
# containing an integer with the max number of recent files to
# keep. The default is 5 if this is not specified. A number larger
# than 10 will be set to 10. A number of less than 2 is set to 2.
"max_recent_files" {
# we shouldn't be getting the max number after reading in the file names
if {$recent_files_flag == 1} {
puts "Key word max_recent_files found after recent file names read; ignored"
# read next line which should be max num
gets $ line
continue
}
if {$max_recent_flag == 1} {
puts "Key word max_recent_flag found twice in file!"
continue
}
set max_recent_flag 1
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read max_recent_file."
continue
}
if {[string is integer $tline] != 1} {
puts "max_recent_files was not given as an integer ($line) and is ignored"
} else {
if {$tline>10} {
set max_recent_files 10
} elseif {$tline < 2} {
set max_recent_files 2
}
else {
set max_recent_files $tline
}
}
}
# The form of this key in the .apol file is as such
#
# [recent_files]
# 5 (# indicating how many file names follows)
# filename1
# filename2
# ...
"recent_files" {
if {$recent_files_flag == 1} {
puts "Key word recent_files found twice in file!"
continue
}
set recent_files_flag 1
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read num of recent files."
continue
}
if {[string is integer $tline] != 1} {
puts "number of recent files was not given as an integer ($line) and is ignored"
# at this point we don't support anything else so just break from loop
break
} elseif {$tline < 0} {
puts "number of recent was less than 0 and is ignored"
# at this point we don't support anything else so just break from loop
break
}
set num $tline
# read in the lines with the files
for {set i 0} {$i<$num} {incr i} {
gets $f line
set tline [string trim $line]
if {[eof $f] == 1 && $tline == ""} {
puts "EOF reached trying to read recent file name $num."
break
}
if {[string is space $tline]} {
continue
}
# check if stored num is greater than max; if so just ignore the rest
if {$i >= $max_recent_files} {
continue
}
# Add to recent files list.
set temp_recent_files [lappend temp_recent_files $tline]
}
}
default {
puts "Unrecognized line in .apol: $line"
}
}
gets $f line
set tline [string trim $line]
}
close $f
return 0
}
# Add a policy file to the recently opened
proc ApolTop::addRecent {file} {
variable mainframe
variable recent_files
variable num_recent_files
variable max_recent_files
variable most_recent_file
if {$num_recent_files < $max_recent_files} {
set x $num_recent_files
set less_than_max 1
} else {
set x $max_recent_files
set less_than_max 0
}
# First check if already in recent file list
for {set i 0} {$i < $x } {incr i} {
if {[string equal $file $recent_files($i)]} {
return
}
}
if {![file exists $file]} {
return
}
if {$num_recent_files < $max_recent_files} {
# list not full, just add to list and insert into menu
set recent_files($num_recent_files) $file
[$mainframe getmenu recent] insert $num_recent_files command -label "$recent_files($num_recent_files)" -command "ApolTop::openPolicyFile $recent_files($num_recent_files) 0"
incr num_recent_files
} else {
[$mainframe getmenu recent] delete 0 end
# list is full, need to replace the last entry, which is the oldest.
set oldest [expr $max_recent_files - 1]
# Replace the first elements value with the new file. We have now popped the oldest menu item off the bottom of
# the list and stacked the new opened file to the top of the list. The most recent file should be the top-most.
set recent_files_tmp($most_recent_file) $file
[$mainframe getmenu recent] insert $most_recent_file command -label "$recent_files_tmp($most_recent_file)" -command "ApolTop::openPolicyFile $recent_files_tmp($most_recent_file) 0"
for {set i 0} {$i < [expr $max_recent_files - 1]} {incr i} {
set next [expr $i + 1]
# Replace the next elements value to the current index value.
set recent_files_tmp($next) $recent_files($i)
[$mainframe getmenu recent] insert $next command -label "$recent_files_tmp($next)" -command "ApolTop::openPolicyFile $recent_files_tmp($next) 0"
}
array set recent_files [array get recent_files_tmp]
array unset recent_files_tmp
set most_recent_file 0
}
return 0
}
proc ApolTop::helpDlg {title file_name} {
variable contents
variable helpDlg
set helpDlg .apol_helpDlg
# Checking to see if output window already exists. If so, it is destroyed.
if { [winfo exists $helpDlg] } {
destroy $helpDlg
}
toplevel $helpDlg
wm protocol $helpDlg WM_DELETE_WINDOW " "
wm withdraw $helpDlg
wm title $helpDlg "$title"
set hbox [frame $helpDlg.hbox ]
# Display results window
set sw [ScrolledWindow $hbox.sw -auto none]
set resultsbox [text [$sw getframe].text -bg white -wrap none -font $ApolTop::text_font]
$sw setwidget $resultsbox
set okButton [Button $hbox.okButton -text "Close" \
-command "destroy $helpDlg"]
# go to the script dir to find the help file
set help_dir [apol_GetHelpDir "$file_name"]
set helpfile "$help_dir/$file_name"
# Placing display widgets
pack $hbox -expand yes -fill both -padx 5 -pady 5
pack $okButton -side bottom
pack $sw -side left -expand yes -fill both
# Place a toplevel at a particular position
#::tk::PlaceWindow $helpDlg widget center
wm deiconify $helpDlg
$resultsbox delete 1.0 end
set rt [catch {set f [open $helpfile]} err]
if {$rt != 0} {
$resultsbox insert end $err
} else {
$resultsbox insert end [read $f]
close $f
}
ApolTop::makeTextBoxReadOnly $resultsbox
wm protocol $helpDlg WM_DELETE_WINDOW "destroy $helpDlg"
return
}
proc ApolTop::makeTextBoxReadOnly {w} {
$w mark set insert 0.0
$w mark set anchor insert
$w configure -state disabled
focus -force $w
return 0
}
proc ApolTop::setBusyCursor {} {
variable prevCursor
set prevCursor [. cget -cursor]
. configure -cursor watch
update idletasks
return
}
proc ApolTop::resetBusyCursor {} {
variable prevCursor
. configure -cursor $prevCursor
update idletasks
return
}
proc ApolTop::popupPolicyStats {} {
variable polstats
set classes $polstats(classes)
set common_perms $polstats(common_perms)
set perms $polstats(perms)
if {![regexp -- {^([^\(]+) \(([^,]+), ([^\)]+)} $ApolTop::policy_version_string -> policy_version policy_type policy_mls_type]} {
set policy_version $ApolTop::policy_version_string
set policy_type "unknown"
set policy_mls_type "unknown"
}
set policy_version [string trim $policy_version]
destroy .polstatsbox
set dialog [Dialog .polstatsbox -separator 1 -title "Policy Summary" \
-modal none -parent .]
$dialog add -text Close -command [list destroy $dialog]
set w [$dialog getframe]
label $w.title -text "Policy Summary Statistics"
set f [frame $w.summary]
label $f.l -justify left -text " Policy Version:\n Policy Type:\n MLS Status:"
label $f.r -justify left -text "$policy_version\n$policy_type\n$policy_mls_type"
grid $f.l $f.r -sticky w
grid configure $f.r -padx 30
grid $w.title - -sticky w -padx 8
grid $f - -sticky w -padx 8
grid [Separator $w.sep] - -sticky ew -pady 5
set f [frame $w.left]
set i 0
foreach {title block} {
"Number of Classes and Permissions" {
"Object Classes" classes
"Common Perms" common_perms
"Permissions" perms
}
"Number of Types and Attributes" {
"Types" types
"Attributes" attribs
}
"Number of Type Enforcement Rules" {
"allow" teallow
"neverallow" neverallow
"clone (pre v.11)" clone
"type_transition" tetrans
"type_change" techange
"type_member" temember
"auditallow" auditallow
"auditdeny" auditdeny
"dontaudit" dontaudit
}
"Number of Roles" {
"Roles" roles
}
"Number of RBAC Rules" {
"allow" roleallow
"role_transition" roletrans
}
} {
set ltext "$title:"
set rtext {}
foreach {l r} $block {
append ltext "\n $l:"
append rtext "\n$polstats($r)"
}
label $f.l$i -justify left -text $ltext
label $f.r$i -justify left -text $rtext
grid $f.l$i $f.r$i -sticky w -padx 4 -pady 2
incr i
}
set i 0
set g [frame $w.right]
foreach {title block} {
"Number of Users" {
"Users" users
}
"Number of Booleans" {
"Bools" cond_bools
}
"Number of MLS Components" {
"Sensitivities" sens
"Categories" cats
}
"Number of MLS Rules" {
"range_transition" rangetrans
}
"Number of Initial SIDs" {
"SIDs" sids
}
"Number of OContexts" {
"PortCons" portcons
"NetIfCons" netifcons
"NodeCons" nodecons
"GenFSCons" genfscons
"fs_use statements" fs_uses
}
} {
set ltext "$title:"
set rtext {}
foreach {l r} $block {
append ltext "\n $l:"
append rtext "\n$polstats($r)"
}
label $g.l$i -justify left -text $ltext
label $g.r$i -justify left -text $rtext
grid $g.l$i $g.r$i -sticky w -padx 4 -pady 2
incr i
}
grid $f $g -sticky nw -padx 4
$dialog draw
}
proc ApolTop::showPolicyStats {} {
variable polstats
variable policy_stats_summary
if {[catch {apol_GetStats} pstats]} {
tk_messageBox -icon error -type ok -title "Error" -message $pstats
return
}
array unset polstats
array set polstats $pstats
set policy_stats_summary ""
append policy_stats_summary "Classes: $polstats(classes) "
append policy_stats_summary "Perms: $polstats(perms) "
append policy_stats_summary "Types: $polstats(types) "
append policy_stats_summary "Attribs: $polstats(attribs) "
set num_te_rules [expr {$polstats(teallow) + $polstats(neverallow) +
$polstats(auditallow) + $polstats(auditdeny) +
$polstats(clone) + $polstats(dontaudit) +
$polstats(tetrans) + $polstats(temember) +
$polstats(techange)}]
append policy_stats_summary "TE rules: $num_te_rules "
append policy_stats_summary "Roles: $polstats(roles) "
append policy_stats_summary "Users: $polstats(users)"
}
proc ApolTop::aboutBox {} {
variable gui_ver
variable copyright_date
set lib_ver [apol_GetVersion]
tk_messageBox -icon info -type ok -title "About SELinux Policy Analysis Tool" -message \
"Security Policy Analysis Tool for Security Enhanced Linux \n\nCopyright (c) $copyright_date\nTresys Technology, LLC\nwww.tresys.com/selinux\n\nGUI Version ($gui_ver)\nLib Version ($lib_ver)"
return
}
proc ApolTop::unimplemented {} {
tk_messageBox -icon warning \
-type ok \
-title "Unimplemented" \
-message \
"This command is not currently implemented."
return
}
proc ApolTop::closePolicy {} {
variable contents
variable filename
variable policy_version_string {}
variable policy_is_open
variable policy_stats_summary {}
set filename ""
set contents(classes) 0
set contents(perms) 0
set contents(types) 0
set contents(te_tules) 0
set contents(roles) 0
set contents(rbac) 0
set contents(users) 0
variable policy_mls_type ""
array unset contents
wm title . "SE Linux Policy Analysis"
variable tab_names
foreach tab $tab_names {
if {$tab == "Perms_Map"} {
Apol_Perms_Map::close $ApolTop::mainframe
} else {
Apol_${tab}::close
}
}
ApolTop::set_Focus_to_Text [$ApolTop::notebook raise]
set rt [catch {apol_ClosePolicy} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error closing policy" \
-message "There was an error closing the policy: $err."
}
set policy_is_open 0
$ApolTop::mainframe setmenustate Disable_SearchMenu_Tag disabled
# Disable Edit perm map menu item since a perm map is not yet sloaded.
$ApolTop::mainframe setmenustate Perm_Map_Tag disabled
$ApolTop::mainframe setmenustate Disable_SaveQuery_Tag disabled
$ApolTop::mainframe setmenustate Disable_LoadQuery_Tag disabled
$ApolTop::mainframe setmenustate Disable_Summary disabled
ApolTop::enable_non_binary_tabs
ApolTop::enable_disable_conditional_widgets 1
set_mls_tabs_state normal
ApolTop::configure_edit_pmap_menu_item 0
#ApolTop::configure_load_index_menu_item 0
return 0
}
proc ApolTop::open_apol_modules {file} {
variable tab_names
foreach tab $tab_names {
if {$tab == "PolicyConf"} {
Apol_PolicyConf::open $file
} else {
Apol_${tab}::open
}
}
}
proc ApolTop::enable_disable_conditional_widgets {enable} {
set tab [$ApolTop::notebook raise]
switch -exact -- [ApolTop::get_tabname $tab] \
$ApolTop::components_tab {
if {[ApolTop::get_tabname [$ApolTop::components_nb raise]] == $ApolTop::cond_bools_tab} {
if {$enable} {
$ApolTop::components_nb raise $ApolTop::cond_bools_tab
} else {
set name [ApolTop::get_tabname [$ApolTop::components_nb pages 0]]
$ApolTop::components_nb raise $name
}
}
} \
$ApolTop::rules_tab {
if {[ApolTop::get_tabname [$ApolTop::rules_nb raise]] == $ApolTop::cond_rules_tab} {
if {$enable} {
$ApolTop::rules_nb raise $ApolTop::cond_rules_tab
} else {
set name [ApolTop::get_tabname [$ApolTop::rules_nb pages 0]]
$ApolTop::rules_nb raise $name
}
}
} \
default {
}
if {$enable} {
$ApolTop::components_nb itemconfigure $ApolTop::cond_bools_tab -state normal
$ApolTop::rules_nb itemconfigure $ApolTop::cond_rules_tab -state normal
} else {
$ApolTop::components_nb itemconfigure $ApolTop::cond_bools_tab -state disabled
$ApolTop::rules_nb itemconfigure $ApolTop::cond_rules_tab -state disabled
}
Apol_TE::enable_disable_conditional_widgets $enable
return 0
}
proc ApolTop::enable_non_binary_tabs {} {
# We make sure tabs that were disabled are re-enabled
$ApolTop::components_nb itemconfigure $ApolTop::initial_sids_tab -state normal
$ApolTop::notebook itemconfigure $ApolTop::policy_conf_tab -state normal
}
proc ApolTop::disable_non_binary_tabs {} {
if {[ApolTop::get_tabname [$ApolTop::notebook raise]] == $ApolTop::policy_conf_tab} {
set name [ApolTop::get_tabname [$ApolTop::notebook pages 0]]
$ApolTop::notebook raise $name
}
$ApolTop::components_nb itemconfigure $ApolTop::initial_sids_tab -state disabled
$ApolTop::notebook itemconfigure $ApolTop::policy_conf_tab -state disabled
return 0
}
# Enable/disable all of apol's tabs that deal exclusively with MLS
# components. If the currently raised page is one of those tabs then
# raise the first page (which hopefully is not MLS specific).
proc ApolTop::set_mls_tabs_state {new_state} {
variable mls_tabs
foreach tab $mls_tabs {
foreach {notebook page} $tab break
set current_tab [$notebook raise]
$notebook itemconfigure $page -state $new_state
if {$current_tab == $page && $new_state == "disabled"} {
$notebook raise [$notebook pages 0]
}
}
}
proc ApolTop::set_initial_open_policy_state {} {
set rt [catch {set version_num [apol_GetPolicyVersionNumber]} err]
if {$rt != 0} {
return -code error $err
}
if {$version_num < 16} {
ApolTop::enable_disable_conditional_widgets 0
}
if {[ApolTop::is_binary_policy]} {
if {$version_num >= 20 } {
if {$ApolTop::show_fake_attrib_warning != 0} {
set fake_attrib_warn .fakeattribDlg
Dialog $fake_attrib_warn -modal local -parent . \
-title "Warning - Attribute Names"
set message_text "Warning: Apol has created fake attribute names because
the names are not preserved in the binary policy format."
set fake_attrib_label [label $fake_attrib_warn.l -text $message_text]
set fake_attrib_ok [button $fake_attrib_warn.b_ok -text "OK" \
-command "destroy $fake_attrib_warn"]
set fake_attrib_show [checkbutton $fake_attrib_warn.show_cb \
-text "Show this message again next time." \
-variable ApolTop::show_fake_attrib_warning]
$fake_attrib_show select
pack $fake_attrib_label -side top -padx 10 -pady 10
pack $fake_attrib_show -side top -pady 10
pack $fake_attrib_ok -side top -padx 10 -pady 10
$fake_attrib_warn draw
}
}
ApolTop::disable_non_binary_tabs
}
if {![is_mls_policy]} {
set_mls_tabs_state disabled
}
ApolTop::set_Focus_to_Text [$ApolTop::notebook raise]
# Enable perm map menu items since a policy is now open.
$ApolTop::mainframe setmenustate Perm_Map_Tag normal
$ApolTop::mainframe setmenustate Disable_Summary normal
$ApolTop::mainframe setmenustate Disable_SearchMenu_Tag normal
return 0
}
# Do the work to open a policy file:
# file is file name, and recent_flag indicates whether to add this file to list of
# recently opened files (set to 1 if you want to do this). You would NOT set this
# to 1 if a recently file is being opened with this proc
proc ApolTop::openPolicyFile {file recent_flag} {
variable contents
variable policy_version_string
variable policy_type
variable policy_mls_type
variable policy_is_open
variable filename
variable policy_open_option
ApolTop::closePolicy
set file [file nativename $file]
if {![file exists $file]} {
tk_messageBox -icon error \
-type ok \
-title "File Does Not Exist" \
-message "File ($file) does not exist."
return -1
}
if { ![file readable $file] } {
tk_messageBox -icon error \
-type ok \
-title "Permission Problem" \
-message \
"You do not have permission to read $file."
return -1
}
if {[file isdirectory $file]} {
tk_messageBox -icon error \
-type ok \
-title "File is Directory" \
-message \
"$file is a directory."
return -1
}
# Change the cursor
set orig_Cursor [. cget -cursor]
. configure -cursor watch
update idletasks
set rt [catch {apol_OpenPolicy $file $policy_open_option} err]
if {$rt == 0} {
#set filename [file tail $file]
set filename $file
} elseif {$rt == -6} {
tk_messageBox -icon error -type ok -title "Error with policy file" \
-message "Pre-version 19 MLS is not supported.\n\n$err"
. configure -cursor $orig_Cursor
focus -force .
return -1
} else {
tk_messageBox -icon error -type ok -title "Error with policy file" \
-message "The selected file does not appear to be a valid SE Linux Policy.\n\n$err"
. configure -cursor $orig_Cursor
focus -force .
return -1
}
if {[catch {apol_GetPolicyVersionString} policy_version_string]} {
tk_messageBox -icon error -type ok -title "Error" -message "apol_GetPolicyVersionString: $policy_version_string"
return 0
}
foreach {policy_type policy_mls_type} [apol_GetPolicyType] break;
# Set the contents flags to indicate what the opened policy contains
set rt [catch {set con [apol_GetPolicyContents]} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return 0
}
foreach item $con {
set rt [scan $item "%s %d" key val]
if {$rt != 2} {
tk_messageBox -icon error -type ok -title "Error" -message "openPolicy (getting contents): $rt"
return
}
set contents($key) $val
}
ApolTop::showPolicyStats
set policy_is_open 1
set rt [catch {ApolTop::open_apol_modules $file} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
set policy_is_open 0
return $rt
}
set rt [catch {ApolTop::set_initial_open_policy_state} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
set policy_is_open 0
return $rt
}
if {$recent_flag == 1} {
ApolTop::addRecent $file
}
# Change the cursor back to the original and then set the focus to the toplevel.
. configure -cursor $orig_Cursor
focus -force .
wm title . "SE Linux Policy Analysis - $file"
return 0
}
proc ApolTop::openPolicy {} {
variable filename
set progressval 0
set file ""
set types {
{"All files" *}
{"Policy conf files" {.conf}}
}
if {$filename != ""} {
catch [set file [tk_getOpenFile -filetypes $types -initialdir [file dirname $filename]]]
} else {
catch [set file [tk_getOpenFile -filetypes $types]]
}
if {$file != ""} {
ApolTop::openPolicyFile $file 1
}
return
}
proc ApolTop::free_call_back_procs { } {
Apol_Class_Perms::free_call_back_procs
Apol_Types::free_call_back_procs
Apol_TE::free_call_back_procs
Apol_Roles::free_call_back_procs
Apol_RBAC::free_call_back_procs
Apol_Users::free_call_back_procs
Apol_Initial_SIDS::free_call_back_procs
Apol_Analysis::free_call_back_procs
Apol_PolicyConf::free_call_back_procs
Apol_Cond_Bools::free_call_back_procs
Apol_Cond_Rules::free_call_back_procs
return 0
}
proc ApolTop::apolExit { } {
variable policy_is_open
if {$policy_is_open} {
ApolTop::closePolicy
}
if {$ApolTop::libsefs == 1} {
Apol_File_Contexts::close
}
ApolTop::free_call_back_procs
ApolTop::writeInitFile
exit
}
proc ApolTop::load_recent_files { } {
variable temp_recent_files
variable most_recent_file
variable max_recent_files
set most_recent_file 0
set length [llength $temp_recent_files]
for {set i 0} {$i < $length} {incr i} {
ApolTop::addRecent [lindex $temp_recent_files $i]
}
# No longer need this variable; so, delete.
unset temp_recent_files
return 0
}
proc ApolTop::load_fonts { } {
variable title_font
variable dialog_font
variable general_font
variable text_font
tk scaling -displayof . 1.0
# First set all fonts in general; then change specific fonts
if {$general_font == ""} {
option add *Font "Helvetica 10"
set general_font "Helvetica 10"
} else {
option add *Font $general_font
}
if {$title_font == ""} {
option add *TitleFrame.l.font "Helvetica 10 bold italic"
set title_font "Helvetica 10 bold italic"
} else {
option add *TitleFrame.l.font $title_font
}
if {$dialog_font == ""} {
option add *Dialog*font "Helvetica 10"
set dialog_font "Helvetica 10"
} else {
option add *Dialog*font $dialog_font
}
if {$text_font == ""} {
option add *text*font "fixed"
set text_font "fixed"
} else {
option add *text*font $text_font
}
return 0
}
proc ApolTop::disable_DeleteWindow_event {} {
wm protocol . WM_DELETE_WINDOW { }
}
proc ApolTop::enable_DeleteWindow_event {} {
wm protocol . WM_DELETE_WINDOW "ApolTop::apolExit"
}
proc ApolTop::main {} {
global tk_version
global tk_patchLevel
variable top_width
variable top_height
variable bwidget_version
variable notebook
# Prevent the application from responding to incoming send requests and sending
# outgoing requests. This way any other applications that can connect to our X
# server cannot send harmful scripts to our application.
rename send {}
# Load BWidget package into the interpreter
set rt [catch {set bwidget_version [package require BWidget]} err]
if {$rt != 0 } {
tk_messageBox -icon error -type ok -title "Missing BWidgets package" -message \
"Missing BWidgets package. Ensure that your installed version of \n\
TCL/TK includes BWidgets, which can be found at\n\n\
http://sourceforge.net/projects/tcllib"
exit
}
if {[package vcompare $bwidget_version "1.4.1"] == -1} {
tk_messageBox -icon warning -type ok -title "Package Version" -message \
"This tool requires BWidgets 1.4.1 or later. You may experience problems\
while running the application. It is recommended that you upgrade your BWidgets\
package to version 1.4.1 or greater. See 'Help' for more information."
}
# Provide the user with a warning if incompatible Tk and BWidget libraries are being used.
if {[package vcompare $bwidget_version "1.4.1"] && $tk_version == "8.3"} {
tk_messageBox -icon error -type ok -title "Error" -message \
"Your installed Tk version $tk_version includes an incompatible BWidgets $bwidget_version package version. \
This has been known to cause a tk application to crash.\n\nIt is recommended that you either upgrade your \
Tk library to version 8.4 or greater or use BWidgets 1.4.1 instead. See the README for more information."
exit
}
# Load the apol package into the interpreter
set rt [catch {package require apol} err]
if {$rt != 0 } {
tk_messageBox -icon error -type ok -title "Missing SE Linux package" -message \
"Missing the SE Linux package. This script will not\n\
work correctly using the generic TK wish program. You\n\
must either use the apol executable or the awish\n\
interpreter."
exit
}
wm withdraw .
wm title . "SE Linux Policy Analysis"
ApolTop::enable_DeleteWindow_event
set rt [catch {ApolTop::check_libsefs} err]
if {$rt != 0} {
tk_messageBox -icon error -type ok -title "Error" -message "$err"
return
}
# Read apols' default settings file, gather all font information, create the gui and then load recent files into the menu.
ApolTop::readInitFile
ApolTop::load_fonts
ApolTop::create
ApolTop::load_recent_files
# # Configure the geometry for the window manager
# set x [winfo screenwidth .]
# set y [winfo screenheight .]
# set width [ expr $x - ($x/10) ]
# set height [ expr $y - ($y/4) ]
# BWidget::place . $width $height center
# BWidgets packages 1.6+ correctly computes the size of the largest Notebook
# page when calling its' compute_size command. So, we can use our main notebook
# widgets dimensions to set our default size. This should make the widgets display
# without obscuring widgets.
if {[package vcompare $bwidget_version "1.6"] >= 0} {
set ApolTop::top_width [$notebook cget -width]
set ApolTop::top_height [$notebook cget -height]
}
wm geom . ${top_width}x${top_height}
update idletasks
wm deiconify .
raise .
focus -force .
return 0
}
#######################################################
# Start script here
ApolTop::main
|