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
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 of the
# License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA
import re
import time
import getpass
import threading
import functools
import random
import string
import os
import mforms
from mforms import newBox, newLabel, newButton, newTextEntry, newTreeNodeView, newTable, newRadioButton, newSelector, newPanel, newTabView, Utilities, newCheckBox, newImageBox, App
from wb_admin_utils import not_running_warning_label, make_panel_header
from wb_admin_security_be import AdminSecurity, PrivilegeInfo, PrivilegeReverseDict, SecurityAdminRoles, WBSecurityValidationError
from wb_common import PermissionDeniedError
from workbench.log import log_error, log_debug3
import grt
from workbench import db_utils
SCHEMA_OBJECT_RIGHTS = [
"Select_priv",
"Insert_priv",
"Update_priv",
"Delete_priv",
"Execute_priv",
"Show_view_priv",
]
SCHEMA_DDL_RIGHTS = [
"Create_priv",
"Alter_priv",
"References_priv",
"Index_priv",
"Create_view_priv",
"Create_routine_priv",
"Alter_routine_priv",
"Event_priv",
"Drop_priv",
"Trigger_priv"
]
SCHEMA_OTHER_RIGHTS = [
"Grant_priv",
"Create_tmp_table_priv",
"Lock_tables_priv",
]
DEFAULT_AUTH_PLUGIN = "mysql_native_password"
AUTHENTICATION_PLUGIN_TYPES = {
"mysql_native_password" : {"name" : "Standard",
"auth_string_label": "",
"enable_host": True,
"enable_password" : True,
},
None : {"name" : "Standard",
"auth_string_label": "",
"enable_host": True,
"enable_password" : True,
},
"mysql_old_password" : {"name" : "Standard (old)",
"auth_string_label": "",
"enable_host": True,
"enable_password" : True,
},
"authentication_windows" : { "name": "Windows Native",
"auth_string_label": "Supply the Windows username and/or group names that are allowed to use this account, separated by a comma (,)\nThis account will be usable by these users whenever they are logged into Windows, without additional passwords.\nExample: Administrator, %s" % (getpass.getuser() or "joe"),
"enable_host": True,
"enable_password" : False
},
"authentication_pam" : {"name": "PAM",
"auth_string_label": "Syntax: <pam_service_name>[,<group_name1>=<sql_user_name1> [,<group_name2>=<sql_user_name2> ...]]\nSee documentation for details.",
"enable_host": True,
"enable_password" : False
},
"sha256_password" : {"name": "SHA256 Password",
"auth_string_label": "",
"enable_host": True,
"enable_password" : True
},
"*" : {"name": None,
"auth_string_label": "See the plugin documentation for valid values and details.",
"enable_host": True,
"enable_password" : True
}
}
def rLabel(text):
l = newLabel(text)
l.set_text_align(mforms.MiddleRight)
return l
def dLabel(text):
l = newLabel(text)
l.set_style(mforms.SmallHelpTextStyle)
return l
class ThreadedInputValidator(object):
"""This class validates the changes in the associated text entry widget displaying the result in a validation label
Usage:
Instantiate this class and set is callback method to be the callback of the associated text entry.
"""
def __init__(self, owner, text_entry, validation_label, ctrl_be, delay=1, colors=('#33aa33', '#aa3333')):
self.owner = owner
self.text_entry = text_entry
self.validation_label = validation_label
self.ctrl_be = ctrl_be
self.delay = delay
self.colors = colors
self.last_keypress_time = None
self.text_to_validate = None
self.lock = threading.Lock()
self.timer = None
self.strength = ['Blank','Weak', 'Medium strength', 'Strong']
self.message = '%s password.'
def update_validation_label(self, estimate): # Call this from the main thread
color = self.colors[0 if estimate > 1 else 1]
message = self.strength[0] if estimate == 0 else (self.message % self.strength[estimate])
self.validation_label.set_color(color)
self.validation_label.set_text(message)
self.owner.set_dirty()
def callback(self):
with self.lock:
self.last_keypress_time = time.time()
self.text_to_validate = self.text_entry.get_string_value()
if not self.timer or not self.timer.is_alive():
self.timer = threading.Timer(self.delay, self.validate)
self.timer.start()
def shutdown(self):
if self.timer:
self.timer.cancel()
def validate(self):
def compute_password_strength(passwd):
if passwd == '':
return 0
if len(passwd) < 8:
return 1
estimate = 1
if len(passwd) >= 12:
estimate += 1
if re.search('\d+', passwd):
estimate += 1
if re.search('[a-z]', passwd) and re.search('[A-Z]', passwd):
estimate += 1
if re.search('(\W|_)+', passwd):
estimate += 1
return 1 if estimate < 3 else (
2 if estimate < 5 else
3 )
def query_password_strength(passwd):
if passwd == '':
return 0
result = self.ctrl_be.exec_query("SELECT VALIDATE_PASSWORD_STRENGTH('%s')" % db_utils.escape_sql_string(passwd))
if result and result.nextRow():
estimate = result.intByIndex(1)
else:
return compute_password_strength(passwd)
return 1 if estimate < 50 else (
2 if estimate < 75 else
3 )
query_strength = self.ctrl_be.is_sql_connected() and ('validate_password', 'VALIDATE PASSWORD') in self.ctrl_be.server_active_plugins
strength_function = query_password_strength if query_strength else compute_password_strength
while True: # If after processing the current text a new text to validate is present, then process it
with self.lock:
last_keypress_time = self.last_keypress_time
text_to_validate = self.text_to_validate
if time.time() - last_keypress_time >= self.delay:
if text_to_validate is None: # delay have passed and there is no text to validate
break # Leave this function thus stopping this thread
with self.lock:
self.text_to_validate = None
estimate = strength_function(text_to_validate)
mforms.Utilities.perform_from_main_thread(functools.partial(self.update_validation_label, estimate=estimate),
False)
time.sleep(0.2)
mforms.Utilities.driver_shutdown()
class AddSchemaPrivilegeForm(mforms.Form):
def __init__(self, secman, user=""):
mforms.Form.__init__(self, None, mforms.FormResizable | mforms.FormMinimizable)
self.set_title("New Schema Privilege Definition")
self.secman = secman
box = newBox(False)
box.set_padding(12)
box.set_spacing(8)
self.set_content(box)
label = newLabel(("Select the Schema for which the user '%s' will have the privileges you want to define." % user).encode('utf-8'))
box.add(label, False, True)
panel = newPanel(mforms.TitledBoxPanel)
panel.set_title("Schema")
box.add(panel, True, True)
table = newTable()
panel.add(table)
table.set_padding(8)
table.set_row_count(3)
table.set_column_count(3)
table.set_row_spacing(8)
table.set_column_spacing(4)
self.schema1 = newRadioButton(mforms.RadioButton.new_id())
self.schema1.set_active(True)
self.schema1.add_clicked_callback(self.schema_radio_changed)
self.schema1.set_text("All Schema (%)")
table.add(self.schema1, 0, 1, 0, 1, mforms.HFillFlag)
table.add(dLabel("This rule will apply to any schema name."), 2, 3, 0, 1, mforms.HFillFlag)
self.schema2 = newRadioButton(self.schema1.group_id())
self.schema2.add_clicked_callback(self.schema_radio_changed)
self.schema2.set_text("Schemas matching pattern:")
table.add(self.schema2, 0, 1, 1, 2, mforms.HFillFlag)
table.add(dLabel("This rule will apply to schemas that match the given name or pattern.\nYou may use _ and % as wildcards in a pattern.\nEscape these characters with \\ in case you want their literal value."), 2, 3, 1, 2, mforms.HFillFlag)
self.schema2entry = newTextEntry()
table.add(self.schema2entry, 1, 2, 1, 2, mforms.HFillFlag|mforms.HExpandFlag)
self.schema3 = newRadioButton(self.schema1.group_id())
self.schema3.add_clicked_callback(self.schema_radio_changed)
self.schema3.set_text("Selected schema:")
alignbox = mforms.newBox(False)
alignbox.add(self.schema3, False, False)
table.add(alignbox, 0, 1, 2, 3, mforms.HFillFlag)
label = dLabel("Select a specific schema name for the rule to apply to.")
label.set_text_align(mforms.TopLeft)
table.add(label, 2, 3, 2, 3, mforms.HFillFlag)
self.schema3sel = newSelector()
table.add(self.schema3sel, 1, 2, 2, 3, mforms.HFillFlag|mforms.HExpandFlag)
for item in self.secman.schema_names:
self.schema3sel.add_item(item)
bbox = newBox(True)
box.add(bbox, False, True)
bbox.set_spacing(8)
self.ok = newButton()
self.ok.set_text("OK")
bbox.add_end(self.ok, False, True)
self.cancel = newButton()
self.cancel.set_text("Cancel")
bbox.add_end(self.cancel, False, True)
self.set_size(850, 500)
self.schema_radio_changed()
self.center()
def schema_radio_changed(self):
self.schema2entry.set_enabled(self.schema2.get_active())
self.schema3sel.set_enabled(self.schema3.get_active())
def run(self):
if self.run_modal(self.ok, self.cancel):
if self.schema1.get_active():
schema = "%"
elif self.schema2.get_active():
schema = self.schema2entry.get_string_value()
else:
schema = self.schema3sel.get_string_value()
return schema
return None
##############################
class SecuritySchemaPrivileges(mforms.Box):
def __init__(self, owner):
mforms.Box.__init__(self, False)
self.set_managed()
self.set_release_on_add()
self._owner = owner
self.dirty = False
self.suspend_layout()
self.set_spacing(8)
self.set_padding(8)
self.schema_rights_checks = {}
self.privs_list = newTreeNodeView(mforms.TreeFlatList)
self.privs_list.add_column(mforms.StringColumnType, "Schema", 150, True)
self.privs_list.add_column(mforms.StringColumnType, "Privileges", 800, False)
self.privs_list.end_columns()
self.privs_list.add_changed_callback(self.schema_priv_selected)
self.add(self.privs_list, True, True)
bbox = newBox(True)
bbox.set_spacing(8)
bbox.add(dLabel("Schema and Host fields may use % and _ wildcards.\nThe server will match specific entries before wildcarded ones."), False, True)
self.add_entry_button = newButton()
self.add_entry_button.set_text("Add Entry...")
bbox.add_end(self.add_entry_button, False, True)
self.add_entry_button.add_clicked_callback(self.add_entry)
self.del_entry_button = newButton()
self.del_entry_button.set_text("Delete Entry")
bbox.add_end(self.del_entry_button, False, True)
self.del_entry_button.add_clicked_callback(self.del_entry)
self.revoke_all_button = newButton()
self.revoke_all_button.set_text("Revoke All Privileges")
bbox.add_end(self.revoke_all_button, False, True)
self.revoke_all_button.add_clicked_callback(self._owner.revoke_all)
self.revoke_all_button.set_tooltip("Immediately remove all privileges from the account, from every object at all levels.\nThe account itself will be left untouched and logins will still be possible.")
self.add(bbox, False, True)
self.schema_priv_label = newLabel("")
self.add(self.schema_priv_label, False, True)
hbox = newBox(True)
hbox.set_spacing(8)
hbox.set_homogeneous(True)
self.schema_object_privs_panel = panel = newPanel(mforms.TitledBoxPanel)
panel.set_title("Object Rights")
box = newBox(False)
box.set_padding(8)
self.object_rights_box = box
panel.add(box)
hbox.add(panel, True, True)
self.schema_ddl_privs_panel = panel = newPanel(mforms.TitledBoxPanel)
panel.set_title("DDL Rights")
box = newBox(False)
box.set_padding(8)
self.ddl_rights_box = box
panel.add(box)
hbox.add(panel, True, True)
self.schema_other_privs_panel = panel = newPanel(mforms.TitledBoxPanel)
panel.set_title("Other Rights")
box = newBox(False)
box.set_padding(8)
self.other_rights_box = box
panel.add(box)
hbox.add(panel, False, True)
self.add(hbox, False, True)
bottom_box = newBox(True)
bottom_box.set_spacing(8)
if 0:
img = newImageBox()
if App.get().get_resource_path("task_warning_mac.png"):
img.set_image("task_warning_mac.png")
else:
img.set_image("task_warning.png")
bottom_box.add(img, False, True)
bottom_box.add(dLabel("There are %i schema privilege entries for accounts that don't exist"), False, True)
purge = newButton()
purge.set_text("Purge")
bottom_box.add(purge, False, True)
self.grant_all = newButton()
self.grant_all.set_text('Select "ALL"')
bottom_box.add_end(self.grant_all, False, True)
self.grant_all.add_clicked_callback(self.grant_all_schema_privs)
self.revoke_all = newButton()
self.revoke_all.set_text("Unselect All")
bottom_box.add_end(self.revoke_all, False, True)
self.revoke_all.add_clicked_callback(self.revoke_all_schema_privs)
self.add(bottom_box, False, True)
self.resume_layout()
####
def update(self):
if self.schema_rights_checks:
return
global_privilege_names = self._owner.owner.secman.global_privilege_names
for name in SCHEMA_OBJECT_RIGHTS:
if name not in global_privilege_names:
continue
cb = newCheckBox()
label, desc = PrivilegeInfo.get(name, ("", None))
cb.set_text(label)
if desc:
cb.set_tooltip(desc)
cb.add_clicked_callback(self.schema_priv_checked)
self.object_rights_box.add(cb, False, False)
self.schema_rights_checks[name] = cb
for name in SCHEMA_DDL_RIGHTS:
if name not in global_privilege_names:
continue
cb = newCheckBox()
label, desc = PrivilegeInfo.get(name, ("", None))
cb.set_text(label)
if desc:
cb.set_tooltip(desc)
cb.add_clicked_callback(self.schema_priv_checked)
self.ddl_rights_box.add(cb, False, False)
self.schema_rights_checks[name] = cb
for name in SCHEMA_OTHER_RIGHTS:
if name not in global_privilege_names:
continue
cb = newCheckBox()
label, desc = PrivilegeInfo.get(name, ("", None))
cb.set_text(label)
if desc:
cb.set_tooltip(desc)
cb.add_clicked_callback(self.schema_priv_checked)
self.other_rights_box.add(cb, False, False)
self.schema_rights_checks[name] = cb
def schema_priv_checked(self):
privs = []
for name, cb in self.schema_rights_checks.iteritems():
if cb.get_active():
privs.append(name)
sel = self.privs_list.get_selected_row()
if sel >= 0:
self._owner._selected_user.schema_privs.entries[sel].privileges = set(privs)
plist = [PrivilegeInfo.get(p, " ")[0] for p in privs]
plist.sort()
self.privs_list.node_at_row(sel).set_string(1, ", ".join(plist) or "none")
self._owner.set_dirty()
def add_entry(self):
addform = AddSchemaPrivilegeForm(self._owner.owner.secman, self._owner._selected_user.username)
schema = addform.run()
if schema is not None:
entry = self._owner._selected_user.schema_privs.add_entry(schema, set())
self.refresh_entry_list(self._owner._selected_user.schema_privs)
self.show_privileges(entry)
self.privs_list.select_node(self.privs_list.node_at_row(len(self._owner._selected_user.schema_privs.entries)-1))
self.schema_priv_selected()
self._owner.set_dirty()
def del_entry(self):
sel = self.privs_list.get_selected_node()
if not sel:
return
self._owner._selected_user.schema_privs.del_entry(self.privs_list.row_for_node(sel))
sel.remove_from_parent()
self.schema_priv_selected()
self._owner.set_dirty()
self.add_entry_button.set_enabled(True)
self.del_entry_button.set_enabled(True)
self._owner.refresh_button.set_enabled(True)
def schema_priv_selected(self):
sel = self.privs_list.get_selected_node()
if not sel or not self._owner._selected_user:
self.show_privileges(None)
else:
entry = self._owner._selected_user.schema_privs.entries[self.privs_list.row_for_node(sel)]
self.show_privileges(entry)
def grant_all_schema_privs(self):
for name, cb in self.schema_rights_checks.iteritems():
if name != "Grant_priv":
cb.set_active(True)
else:
cb.set_active(False)
self.schema_priv_checked()
self._owner.set_dirty()
def revoke_all_schema_privs(self):
for cb in self.schema_rights_checks.itervalues():
cb.set_active(False)
self.schema_priv_checked()
self._owner.set_dirty()
def show_user(self, user):
# make sure that the info is not outdated
self.set_enabled(user != None)
self._owner.unset_dirty()
self.refresh_entry_list(user)
if user is not None:
self.add_entry_button.set_enabled(True)
self.del_entry_button.set_enabled(False)
self.show_privileges(None)
def refresh_entry_list(self, user):
self.privs_list.clear()
for entry in user and user.entries or []:
row = self.privs_list.add_node()
row.set_string(0, entry.db)
plist = [PrivilegeInfo.get(p, " ")[0] for p in entry.privileges]
plist.sort()
row.set_string(1, ", ".join(plist) or "none")
def show_privileges(self, entry):
self.schema_object_privs_panel.set_enabled(entry != None)
self.schema_ddl_privs_panel.set_enabled(entry != None)
self.schema_other_privs_panel.set_enabled(entry != None)
if entry:
db, privs = entry.db, entry.privileges
text = "The user '%s'@'%s' " % (self._owner._selected_user.username, self._owner._selected_user.host)
if '_' in db or '%' in db:
if db == '%':
text += "will have the following access rights to any schema:"
else:
text += "will have the following access rights to schemas matching '%s':" % db
else:
text += "will have the following access rights to the schema '%s':" % db
self.schema_priv_label.set_text(text)
self.del_entry_button.set_enabled(True)
self.grant_all.set_enabled(True)
self.revoke_all.set_enabled(True)
for priv, check in self.schema_rights_checks.iteritems():
check.set_active(priv in privs)
else:
self.schema_priv_label.set_text("")
self.del_entry_button.set_enabled(False)
self.grant_all.set_enabled(False)
self.revoke_all.set_enabled(False)
for priv, check in self.schema_rights_checks.iteritems():
check.set_active(False)
def refresh(self):
self.show_user(None)
class FirewallCommands:
def __init__(self, owner):
self.owner = owner
self.ctrl_be = owner.ctrl_be
class CommandType:
simple_result = 0
simple_result_with_count = 1
multi_result = 2
def execute_command(self, command):
affcted_record_count = 0
if not self.ctrl_be.sql_ping():
log_error("Executing firewall command. The connection is down.\n")
Utilities.show_error("Execute firewall command", "The connection is down. Please check if you have connection to the server.", "Ok", "", "")
return False, 0
result, affcted_record_count = self.ctrl_be.exec_sql(command)
return result, affcted_record_count
def execute_result_command(self, command):
if not self.ctrl_be.sql_ping():
log_error("Executing firewall command. The connection is down.\n")
Utilities.show_error("Execute firewall command", "The connection is down. Please check if you have connection to the server.", "Ok", "", "")
return False
result = self.ctrl_be.exec_query(command)
if result == False:
return False
if result is None:
log_error("Executing firewall command. There was no resultset from the command.\n")
Utilities.show_error("Execute firewall command", "There was a problem executing a Firewall command.", "Ok", "", "")
return False
return result
def execute_multiresult_command(self, command):
if not self.ctrl_be.sql_ping():
log_error("Executing firewall command. The connection is down.\n")
Utilities.show_error("Execute firewall command", "The connection is down. Please check if you have connection to the server.", "Ok", "", "")
return False
multi_result = self.ctrl_be.exec_query_multi_result(command)
if multi_result == False:
return False
if not multi_result:
log_error("Executing firewall command. There was no resultset from the command.\n")
Utilities.show_error("Execute firewall command", "There was a problem executing a Firewall command.", "Ok", "", "")
return False
for result in multi_result:
if not result:
log_error("Executing firewall command with multiple resultsets. Resultset is 'None'.\n")
Utilities.show_error("Execute firewall command", "Resultset is 'None'.", "Ok", "", "")
return False
return multi_result
def get_user_rules(self, userhost):
result = []
query_result = self.execute_result_command("SELECT RULE FROM mysql.firewall_whitelist WHERE USERHOST='%s'" % (userhost))
if not query_result:
return result
while query_result.nextRow():
result.append(query_result.stringByIndex(1))
return result
def get_cached_user_rules(self, userhost):
result = []
query_result = self.execute_result_command("SELECT RULE FROM information_schema.mysql_firewall_whitelist WHERE USERHOST='%s'" % (userhost))
if not query_result:
return result
while query_result.nextRow():
result.append(query_result.stringByIndex(1))
return result
def get_rule_count(self, userhost):
result = self.execute_result_command("SELECT COUNT(*) CNT FROM mysql.firewall_whitelist WHERE USERHOST='%s'" % (userhost))
if not result:
return 0
result.nextRow()
return result.stringByIndex(1)
def get_cached_rule_count(self, userhost):
result = self.execute_result_command("SELECT COUNT(*) CNT FROM information_schema.mysql_firewall_whitelist WHERE USERHOST='%s'" % (userhost))
result.nextRow()
return result.stringByIndex(1)
def reload_rules(self, userhost):
self.execute_multiresult_command("CALL mysql.sp_reload_firewall_rules('%s')" % userhost)
def delete_user_rule(self, userhost, rule):
result, cnt = self.execute_command("DELETE FROM mysql.firewall_whitelist WHERE USERHOST='%s' AND RULE='%s'" % (userhost, db_utils.escape_sql_string(rule)))
deleted_something = cnt > 0
if deleted_something:
self.reload_rules(userhost)
return deleted_something
def add_user_rule(self, userhost, rule, normalized = False):
if not normalized:
firewall_rule = self.normalize_query(rule)
else:
firewall_rule = rule
if firewall_rule:
result = self.execute_command("INSERT INTO mysql.firewall_whitelist (USERHOST, RULE) VALUES ('%s', '%s')" % (userhost, db_utils.escape_sql_string(firewall_rule)))
if result:
self.reload_rules(userhost)
return True
log_error("Adding a firewall user rule failed to normalize the query. Probably, the inserted query does not translate to a firewall rule.\n")
return False
def normalize_query(self, query):
query_result = self.execute_result_command("SELECT normalize_statement('%s')" % db_utils.escape_sql_string(query))
if not query_result:
return False
query_result.nextRow()
result = query_result.stringByIndex(1)
if result == "":
return False
return result
def get_user_mode(self, userhost):
result = self.execute_result_command("SELECT mode FROM mysql.firewall_users WHERE userhost='%s'" % userhost)
if not result:
return False
if result.nextRow():
return result.stringByName("mode")
return "OFF"
def set_user_mode(self, userhost, mode):
multi_result = self.execute_multiresult_command("CALL mysql.sp_set_firewall_mode('%s', '%s')" % (userhost, mode))
if not multi_result:
return False
result = multi_result[len(multi_result) - 1]
try:
if result.nextRow():
if result.stringByIndex(1).startswith("ERROR"):
log_error("Firewall: Failed to set user mode (user=%s, mode=%s): %s\n" % (userhost, mode, result.stringByIndex(1)))
return False
log_debug3("Firewall: Returning 'True' due to lack of 'ERROR' records\n")
return True
except SystemError, err: # sp_set_firewall_mode return resultset only on error, but nextRow will throw exception if result is missing resultset.
if self.owner.ctrl_be.target_version and self.owner.ctrl_be.target_version.is_supported_mysql_version_at_least(5, 6, 27):
log_debug3("Firewall: Returning 'True' due to server ('%s') not responding with the 'OK' record any more\n" % self.owner.ctrl_be.target_version)
return True
import traceback
log_error("Exception while setting firewall user mode: Expecting 'OK' record for this version ('%s')\n" % str(self.owner.ctrl_be.target_version))
except Exception, exc:
import traceback
log_error("Exception while setting firewall user mode: %s\n" % (traceback.format_exc()))
log_error("Firewall: Failed to set user mode (user=%s, mode=%s): Unknow error\n" % (userhost, mode))
return False
def reset_user(self, userhost):
return self.set_user_mode(userhost, 'RESET')
def is_enabled(self):
result = self.execute_result_command("SELECT @@mysql_firewall_mode")
if not result:
return False
if result.nextRow():
return result.intByIndex(1) == 1
return False
class FirewallUserInterfaceBase(mforms.Box):
def __init__(self, owner):
mforms.Box.__init__(self, False)
self.rule_count = 0
self.owner = owner
self.ctrl_be = owner.owner.ctrl_be
def show_user(self, user, host, new_user):
return
def update_rules(self, user, host):
return
def get_rule_count(self):
return self.rule_count
def refresh_users(self, users):
return
def change_state(self):
return
def refresh_row(self, current_row, user, host):
return
def change_layout(self):
return
def tweak_user_list(self):
return
def tweak_tabs(self, tabView):
return
def save(self):
return
class FirewallUserInterfaceDummy(FirewallUserInterfaceBase):
def __init__(self, owner):
return
class FirewallAddRuleDialog(mforms.Form):
def __init__(self, owner):
mforms.Form.__init__(self, None, mforms.FormResizable | mforms.FormMinimizable)
self.set_title("Add new rule or SQL statement")
self.set_size(400, 300)
self.center()
self.content = mforms.newBox(False)
self.set_content(self.content)
self.content.add(mforms.newLabel("\nType the rule you want to add for this user.\n"), False, True)
self.query_box = mforms.newTextBox(mforms.SmallScrollBars)
self.query_box.set_size(400, 200)
self.content.add(self.query_box, True, True)
self.normalized = False
self.normalized_checkbox = mforms.newCheckBox(False)
self.normalized_checkbox.set_text("This is a normalized rule")
self.normalized_checkbox.add_clicked_callback(self.normalized_clicked)
self.content.add(self.normalized_checkbox, True, True)
button_box = mforms.newBox(True)
self.content.add(button_box, False, True)
button_box.set_spacing(8)
self.ok_button = mforms.newButton()
self.ok_button.set_text("OK")
self.ok_button.add_clicked_callback(self.ok_button_pressed)
button_box.add_end(self.ok_button, False, True)
self.cancel_button = mforms.newButton()
self.cancel_button.set_text("Cancel")
self.cancel_button.add_clicked_callback(self.cancel_button_pressed)
button_box.add_end(self.cancel_button, False, True)
def normalized_clicked(self):
self.normalized = self.normalized_checkbox.get_active()
def ok_button_pressed(self):
self.end_modal(True)
def cancel_button_pressed(self):
self.end_modal(False)
def run(self):
return self.run_modal(None, None)
class FirewallUserInterface(FirewallUserInterfaceBase):
def __init__(self, owner):
FirewallUserInterfaceBase.__init__(self, owner)
self.set_managed()
self.set_release_on_add()
self.set_spacing(8)
self.set_padding(8)
self.commands = FirewallCommands(self)
self.new_user = False
# Firewall rules panel
firewall_rules_main_box = mforms.newBox(False)
firewall_rules_main_box.set_padding(12)
firewall_rules_main_box.set_spacing(8)
self.note = mforms.newLabel("")
self.build_note()
firewall_rules_main_box.add(self.note, False, True)
info_box = mforms.newBox(True)
info_label = mforms.newLabel("Manage the rules for the current user. Changing the mode to RECORDING will start collecting the SQL commands used by your application.\nWhen all the necessary rules were collected, you should set the mode to PROTECTING. You can then fine-tune the set of rules by adding or deleting them.")
info_box.add(info_label, True, True)
self.add(info_box, False, False)
state_box = mforms.newBox(True)
self.state = mforms.newSelector()
self.state.add_item("OFF")
self.state.add_item("PROTECTING")
self.state.add_item("RECORDING")
self.state.add_item("DETECTING")
self.state.set_size(120, -1)
self.state.add_changed_callback(self.change_state)
state_box.add(mforms.newLabel("Mode:"), False, True)
state_box.add(self.state, False, True)
firewall_rules_main_box.add(state_box, False, True)
# White list section
white_list_box = mforms.newBox(True)
white_list_box.set_spacing(8)
self.white_list = mforms.newListBox(True)
self.white_list.set_size(500, -1)
white_list_button_box = mforms.newBox(False)
self.white_list_add_button = mforms.newButton()
self.white_list_add_button.set_text("Add")
self.white_list_add_button.add_clicked_callback(self.add_button_click)
self.white_list_add_from_file_button = mforms.newButton()
self.white_list_add_from_file_button.set_text("Add From File")
self.white_list_add_from_file_button.add_clicked_callback(self.add_from_file_button_click)
self.white_list_save_to_file_button = mforms.newButton()
self.white_list_save_to_file_button.set_text("Save To File")
self.white_list_save_to_file_button.add_clicked_callback(self.save_to_file_button_click)
self.white_list_delete_button = mforms.newButton()
self.white_list_delete_button.set_text("Delete")
self.white_list_delete_button.add_clicked_callback(self.delete_button_click)
self.white_list_clear_button = mforms.newButton()
self.white_list_clear_button.set_text("Reset")
self.white_list_clear_button.add_clicked_callback(self.reset_button_click)
white_list_button_box.add(self.white_list_add_button, False, True)
white_list_button_box.add(self.white_list_delete_button, False, True)
white_list_button_box.add(self.white_list_add_from_file_button, False, True)
white_list_button_box.add(self.white_list_save_to_file_button, False, True)
white_list_button_box.add(self.white_list_clear_button, False, True)
white_list_box.add(self.white_list, True, True)
white_list_box.add(white_list_button_box, False, True)
self.available_rules_label = mforms.newLabel("Active rules:")
firewall_rules_main_box.add(self.available_rules_label, False, True)
firewall_rules_main_box.add(white_list_box, True, True)
cache_list_box = mforms.newBox(True)
self.cache_list = mforms.newListBox(True)
self.cache_list.set_size(500, 200)
cache_list_box.add(self.cache_list, True, True)
self.cached_rules_label = mforms.newLabel("Rules being recorded:")
firewall_rules_main_box.add(self.cached_rules_label, False, True)
firewall_rules_main_box.add(cache_list_box, True, True)
self.add(firewall_rules_main_box, True, True)
def build_note(self):
text = ""
self.note.show(False)
if self.commands.is_enabled() == False:
text = "The firewall is currently disabled. You can still manage user rules and modes, but changes will not have any effect until the firewall is enabled again."
self.note.show(True)
if self.new_user:
text = "The user is not created yet. Please finish creating the user to makes changes here."
self.note.show(True)
text = "%s\n\n" % text
self.note.set_text(text)
def refresh_row(self, current_row, user, host):
userhost = "%s@%s" % (db_utils.escape_sql_string(user), host)
current_row.set_string(2, str(self.commands.get_user_mode(userhost)))
current_row.set_string(3, str(self.commands.get_rule_count(userhost)))
current_row.set_string(4, str(self.commands.get_cached_rule_count(userhost)))
def show_user(self, user, host, new_user):
self.current_user = user
self.current_host = host
self.current_userhost = "%s@%s" % (db_utils.escape_sql_string(user), host)
self.new_user = new_user
self.set_enabled(not new_user)
self.update_rules()
return self.state.set_value(self.commands.get_user_mode(self.current_userhost))
def update_rules(self):
self.white_list.clear()
self.cache_list.clear()
self.available_rules_label.set_text("Active rules (%s) - These are the rules used in PROTECTED mode for this user" % str(self.commands.get_rule_count(self.current_userhost)))
for rule in self.commands.get_user_rules(self.current_userhost):
self.white_list.add_item(rule)
self.cached_rules_label.set_text("Rules being recorded (%s) - These are the rules gathered while in RECORDING mode" % str(self.commands.get_cached_rule_count(self.current_userhost)))
for rule in self.commands.get_cached_user_rules(self.current_userhost):
self.cache_list.add_item(rule)
self.build_note()
def tweak_user_list(self):
self.owner.user_list.add_column(mforms.StringColumnType, "FW State", 80, False)
self.owner.user_list.add_column(mforms.StringColumnType, "# FW Rules", 80, False)
self.owner.user_list.add_column(mforms.StringColumnType, "# FW Recorded", 80, False)
def tweak_tabs(self, tabView):
tabView.add_page(self, "Firewall Rules")
def refresh_users(self, users):
return
#for user, host in users:
#self.users.add_item(user)
def change_state(self):
self.owner.set_dirty()
def add_button_click(self):
dialog = FirewallAddRuleDialog(self)
if dialog.run():
rule = dialog.query_box.get_string_value()
result = self.commands.add_user_rule(self.current_userhost, rule, dialog.normalized)
if not result:
Utilities.show_error("Add user rule", "Add a new rule for this user failed to be inserted. Please check the log for more information.", "OK", "", "")
self.owner.refresh()
return
def add_from_file_button_click(self):
dialog = mforms.FileChooser(mforms.OpenFile)
dialog.set_title("Load firewall rules")
dialog.set_extensions("Firewall Rules (*.fwr)|*.fwr|SQL Statements (*.sql)|*.sql", ".fwr")
if dialog.run_modal():
path = dialog.get_path()
is_rules_file = True if path.endswith(".fwr") else False
with open(path) as f:
content = [x.strip('\n') for x in f.readlines()]
if not self.commands.set_user_mode(self.current_userhost, "OFF"):
return
added_rules = []
for rule in content:
if not self.commands.add_user_rule(self.current_userhost, rule, is_rules_file):
break
added_rules.append(rule)
self.commands.set_user_mode(self.current_userhost, "RECORDING")
self.white_list.add_items(added_rules)
def save_to_file_button_click(self):
dialog = mforms.FileChooser(mforms.SaveFile)
dialog.set_title("Save firewall rules")
dialog.set_extensions("Firewall Rules (*.fwr)|*.fwr", ".fwr")
if dialog.run_modal():
f = open(dialog.get_path(), "w")
for index in range(0, self.white_list.get_count()):
rule = self.white_list.get_string_value_from_index(index)
f.write("%s\n" % rule)
f.close()
def delete_button_click(self):
indexes = self.white_list.get_selected_indices()
deleted_indexes = []
for index in indexes:
rule = self.white_list.get_string_value_from_index(index)
result = self.commands.delete_user_rule(self.current_userhost, rule)
if result:
deleted_indexes.append(index)
self.white_list.remove_indexes(deleted_indexes)
def reset_button_click(self):
result = Utilities.show_warning("Reset user rules", "Reseting the user rules will delete all rules that were collected", "Yes", "No", "")
if result:
if self.commands.reset_user(self.current_userhost):
self.owner.refresh()
def save(self):
if not self.commands.set_user_mode(self.current_userhost, self.state.get_string_value()):
Utilities.show_error("Setting user mode", "There was a problem setting the user mode. Please check the log for more details.", "OK", "", "")
#############################
class SecurityAccount(mforms.Box):
def __init__(self, owner):
mforms.Box.__init__(self, False)
self.set_managed()
self.set_release_on_add()
self.set_name("SecurityAccount")
self.owner = owner
self.dirty = False
self._selected_user = None
self._selected_user_original = None
self.suspend_layout()
self.set_padding(8)
self.set_spacing(8)
if self.owner.ctrl_be.server_variables.get('mysql_firewall_mode') and not grt.root.wb.info.edition == "Community":
self.firewall_rules = FirewallUserInterface(self)
else:
self.firewall_rules = FirewallUserInterfaceDummy(self)
self.splitter = mforms.newSplitter(True)
bottom_box = newBox(True)
bottom_box.set_spacing(8)
self.add_button = newButton()
self.add_button.set_text("Add Account")
bottom_box.add(self.add_button, False, True)
self.add_button.add_clicked_callback(self.add_account)
#self.dup_button = newButton()
#self.dup_button.set_text("Duplicate")
#bottom_box.add(self.dup_button, False, True)
#self.dup_button.add_clicked_callback(self.dup_account)
self.del_button = newButton()
self.del_button.set_text("Delete")
bottom_box.add(self.del_button, False, True)
self.del_button.add_clicked_callback(self.del_account)
self.refresh_button = newButton()
self.refresh_button.set_text("Refresh")
self.refresh_button.add_clicked_callback(self.owner.refresh)
bottom_box.add(self.refresh_button, False, True)
self.save_button = newButton()
self.save_button.set_text("Apply")
bottom_box.add_end(self.save_button, False, True)
self.save_button.add_clicked_callback(self.commit)
self.revert_button = newButton()
self.revert_button.set_text("Revert")
bottom_box.add_end(self.revert_button, False, True)
self.revert_button.add_clicked_callback(self.revert)
account_list_box = newBox(False)
account_list_box.set_spacing(8)
account_list_box.set_size(220, -1)
label = newLabel("User Accounts")
account_list_box.add(label, False, True)
#searchbox = TextEntry(SearchEntry)
#account_list_box.add(searchbox, False, True)
self.user_list = newTreeNodeView(mforms.TreeFlatList)
self.user_list.add_column(mforms.StringColumnType, "User", 120, False)
self.user_list.add_column(mforms.StringColumnType, "From Host", 100, False)
self.firewall_rules.tweak_user_list()
self.user_list.end_columns()
self.user_list.add_changed_callback(self.user_selected)
self.user_list.set_allow_sorting(True)
account_list_box.add(self.user_list, True, True)
self.splitter.add(account_list_box, 200, True)
# Right part
self.content_box = abox = newBox(False)
abox.set_spacing(8)
self.account_label = newLabel("Select an account to edit or click Add Account to create a new one")
self.account_label.set_style(mforms.BoldStyle)
abox.add(self.account_label, False, True)
tabView = newTabView(False)
self.inner_tabview = tabView
# Login Tab
vbox = newBox(False)
vbox.set_spacing(12)
vbox.set_padding(12)
table = newTable()
vbox.add(table, False, True)
table.set_row_count(9)
table.set_column_count(3)
table.set_row_spacing(8)
table.set_column_spacing(8)
self.username = newTextEntry()
self.username.set_size(180, -1)
self.username.add_changed_callback(self.set_dirty)
if self.owner.ctrl_be.target_version and self.owner.ctrl_be.target_version.is_supported_mysql_version_at_least(5, 7, 8):
self.username.set_max_length(32) # max username length for mysql since 5.7.8
else:
self.username.set_max_length(16) # max username length for mysql before 5.7.8
self.password = newTextEntry(mforms.PasswordEntry)
self.password.set_size(180, -1)
self.password_advice = 'Consider using a password with 8 or more characters with\nmixed case letters, numbers and punctuation marks.'
self.password_label = dLabel(self.password_advice)
self.password_validator = ThreadedInputValidator(self, self.password, self.password_label, self.owner.ctrl_be)
self.password.add_changed_callback(self.password_validator.callback)
self.confirm = newTextEntry(mforms.PasswordEntry)
self.confirm.set_size(180, -1)
self.confirm.add_changed_callback(self.set_dirty)
self.hostlimithost = newTextEntry()
self.hostlimithost.set_size(180, -1)
self.hostlimithost.add_changed_callback(self.hostlimithost_changed)
table.add(rLabel("Login Name:"), 0, 1, 0, 1, mforms.HFillFlag)
table.add(self.username, 1, 2, 0, 1, mforms.HFillFlag)
table.add(dLabel("You may create multiple accounts with the same name\nto connect from different hosts."), 2, 3, 0, 1, mforms.HFillFlag|mforms.HExpandFlag)
self.has_extra_plugins = len([p for p in self.active_plugins]) > 0
if self.has_extra_plugins:
self.auth_type_label = rLabel("Authentication Type:")
table.add(self.auth_type_label, 0, 1, 1, 2, mforms.HFillFlag)
self.auth_type_sel = newSelector()
self.auth_type_sel.set_size(180, -1)
table.add(self.auth_type_sel, 1, 2, 1, 2, mforms.HFillFlag)
table.add(dLabel("\nFor the standard password and/or host based authentication,\nselect 'Standard'.\n"), 2, 3, 1, 2, mforms.HFillFlag)
self.auth_type_sel.add_changed_callback(self.auth_type_changed)
self.auth_type_list = []
for plugin in self.active_plugins:
if AUTHENTICATION_PLUGIN_TYPES.has_key(plugin):
self.auth_type_sel.add_item(AUTHENTICATION_PLUGIN_TYPES[plugin]["name"])
else:
self.auth_type_sel.add_item(plugin)
self.auth_type_list.append(plugin)
else:
self.auth_type_list = None
self.auth_string_param = None
self.hostlimithost_caption = rLabel("Limit to Hosts Matching:")
table.add(self.hostlimithost_caption, 0, 1, 2, 3, mforms.HFillFlag)
table.add(self.hostlimithost, 1, 2, 2, 3, mforms.HFillFlag)
self.hostlimit_box = newBox(True)
self.hostlimithost_valid_icon = newImageBox()
self.hostlimit_box.add(self.hostlimithost_valid_icon, False, False)
self.password_caption2 = dLabel("% and _ wildcards may be used")
self.hostlimit_box.add(self.password_caption2, True, True)
table.add(self.hostlimit_box, 2, 3, 2, 3, mforms.HFillFlag|mforms.HExpandFlag)
self.password_caption = rLabel("Password:")
table.add(self.password_caption, 0, 1, 3, 4, mforms.HFillFlag)
table.add(self.password, 1, 2, 3, 4, mforms.HFillFlag)
self.password_caption2 = dLabel("Type a password to reset it.")
table.add(self.password_caption2, 2, 3, 3, 4, mforms.HFillFlag|mforms.HExpandFlag)
table.add(self.password_label, 1, 3, 4, 5, mforms.HFillFlag)
self.confirm_caption = rLabel("Confirm Password:")
table.add(self.confirm_caption, 0, 1, 5, 6, mforms.HFillFlag)
table.add(self.confirm, 1, 2, 5, 6, mforms.HFillFlag)
self.confirm_caption2 = dLabel("Enter password again to confirm.")
table.add(self.confirm_caption2, 2, 3, 5, 6, mforms.HFillFlag|mforms.HExpandFlag)
if self.owner.ctrl_be.target_version and self.owner.ctrl_be.target_version.is_supported_mysql_version_at_least(5, 6, 7):
self.expire_button = newButton()
self.expire_button.set_text("Expire Password")
self.expire_button.set_tooltip("Force user to change password after next login. The user will be unable to issue any command other than SET PASSWORD.")
#bottom_box.add_end(self.expire_button, False, True)
table.add(self.expire_button, 1, 2, 6, 7, mforms.HFillFlag)
self.expire_button.add_clicked_callback(self.expire)
else:
self.expire_button = None
table.add(newLabel(""), 1, 2, 7, 8, mforms.HFillFlag)
if self.has_extra_plugins:
self.auth_string_param = newTextEntry()
self.auth_string_param.add_changed_callback(self.set_dirty)
self.auth_string_label = rLabel("Authentication String:")
self.auth_string_desc = dLabel("Authentication plugin specific parameters.")
table.add(self.auth_string_label, 0, 1, 8, 9, mforms.HFillFlag)
table.add(self.auth_string_param, 1, 2, 8, 9, mforms.HFillFlag)
table.add(self.auth_string_desc, 2, 3, 8, 9, mforms.HFillFlag|mforms.HExpandFlag)
self.auth_string_help = newLabel("")
vbox.add(self.auth_string_help, False, True)
self.bottom_message_hbox = newBox(True)
self.bottom_message_hbox.set_spacing(8)
self.bottom_message_caption = newLabel('')
self.bottom_message_caption.set_color('#aa3333')
self.upgrade_account_button = newButton()
self.upgrade_account_button.set_text("Upgrade")
self.upgrade_account_button.set_tooltip("Upgrade the authentication type of the account, from the obsolete format to the newer, safer one. You must set the password for the account before clicking this button.")
self.upgrade_account_button.add_clicked_callback(self.upgrade_account)
self.bottom_message_hbox.add(self.bottom_message_caption, True, True)
self.bottom_message_hbox.add(self.upgrade_account_button, False, True)
vbox.add_end(self.bottom_message_hbox, False)
self.bottom_message_hbox.show(False)
tabView.add_page(vbox, "Login")
# Account Limits Tab
table = newTable()
table.set_padding(12)
table.set_column_spacing(8)
table.set_row_spacing(8)
table.set_row_count(4)
table.set_column_count(3)
table.add(rLabel("Max. Queries:"), 0, 1, 0, 1, mforms.HFillFlag)
self.max_questions = newTextEntry()
self.max_questions.set_size(60, -1)
self.max_questions.add_changed_callback(self.set_dirty)
table.add(self.max_questions, 1, 2, 0, 1, mforms.HFillFlag)
table.add(dLabel("Number of queries the account can execute within one hour."), 2, 3, 0, 1, mforms.HFillFlag|mforms.HExpandFlag)
table.add(rLabel("Max. Updates:"), 0, 1, 1, 2, mforms.HFillFlag)
self.max_updates = newTextEntry()
self.max_updates.set_size(60, -1)
self.max_updates.add_changed_callback(self.set_dirty)
table.add(self.max_updates, 1, 2, 1, 2, mforms.HFillFlag)
table.add(dLabel("Number of updates the account can execute within one hour."), 2, 3, 1, 2, mforms.HFillFlag|mforms.HExpandFlag)
table.add(rLabel("Max. Connections:"), 0, 1, 2, 3, mforms.HFillFlag)
self.max_connections = newTextEntry()
self.max_connections.set_size(60, -1)
self.max_connections.add_changed_callback(self.set_dirty)
table.add(self.max_connections, 1, 2, 2, 3, mforms.HFillFlag)
table.add(dLabel("The number of times the account can connect to the server per hour."), 2, 3, 2, 3, mforms.HFillFlag|mforms.HExpandFlag)
table.add(rLabel("Concurrent Connections:"), 0, 1, 3, 4, mforms.HFillFlag)
self.max_uconnections = newTextEntry()
self.max_uconnections.set_size(60, -1)
self.max_uconnections.add_changed_callback(self.set_dirty)
table.add(self.max_uconnections, 1, 2, 3, 4, mforms.HFillFlag)
table.add(dLabel("The number of simultaneous connections to the server the account can have."), 2, 3, 3, 4, mforms.HFillFlag|mforms.HExpandFlag)
tabView.add_page(table, "Account Limits")
# Administrative Roles Tab
box = newBox(False)
lbox = newBox(True)
box.add(lbox, True, True)
lbox.set_spacing(12)
lbox.set_padding(12)
self.revoke_all_button = newButton()
self.revoke_all_button.set_text("Revoke All Privileges")
box.add(self.revoke_all_button, False, True)
self.revoke_all_button.add_clicked_callback(self.revoke_all)
self.revoke_all_button.set_tooltip("Immediately remove all privileges from the account, from every object at all levels.\nThe account itself will be left untouched and logins will still be possible.")
self.role_list = newTreeNodeView(mforms.TreeFlatList)
self.role_list.add_column(mforms.CheckColumnType, "", 30, True)
self.role_list.add_column(mforms.StringColumnType, "Role", 150, False)
self.role_list.add_column(mforms.StringColumnType, "Description", 300, False)
self.role_list.end_columns()
lbox.add(self.role_list, True, True)
self.role_list.set_cell_edited_callback(self.role_list_toggled)
self.role_priv_list = newTreeNodeView(mforms.TreeFlatList)
self.role_priv_list.add_column(mforms.CheckColumnType, '', 30, True)
self.role_priv_list.add_column(mforms.StringColumnType, "Global Privileges", 180, False)
self.role_priv_list.end_columns()
self.role_priv_list.set_size(220, -1)
self.role_priv_list.set_cell_edited_callback(self.role_priv_list_toggled)
lbox.add(self.role_priv_list, False, True)
tabView.add_page(box, "Administrative Roles")
self.schema_privs = SecuritySchemaPrivileges(self)
tabView.add_page(self.schema_privs, "Schema Privileges")
self.firewall_rules.tweak_tabs(tabView)
abox.add(tabView, True, True)
self.splitter.add(abox, 200)
self.add(self.splitter, True, True)
self.add(bottom_box, False, True)
self.resume_layout()
mforms.Utilities.add_timeout(0.1, lambda self=self: self.splitter.set_position(240))
self.user_selected()
def shutdown(self):
self.password_validator.shutdown()
@property
def active_plugins(self):
return [name for name, ptype in self.owner.ctrl_be.server_active_plugins if ptype == "AUTHENTICATION"]
def selected_plugin_type(self):
if self.auth_type_list:
return self.auth_type_list[max(self.auth_type_sel.get_selected_index(), 0)]
return None
def update_enable_state_for_auth_type(self, auth_type, is_new_user):
info = AUTHENTICATION_PLUGIN_TYPES.get(auth_type)
if not info:
info = AUTHENTICATION_PLUGIN_TYPES["*"]
if info:
self.password_caption.set_enabled(bool(info["enable_password"]))
self.password_caption2.set_enabled(bool(info["enable_password"]))
self.password_label.set_enabled(bool(info["enable_password"]))
self.password.set_enabled(bool(info["enable_password"]))
self.confirm.set_enabled(bool(info["enable_password"]))
self.confirm_caption.set_enabled(bool(info["enable_password"]))
self.confirm_caption2.set_enabled(bool(info["enable_password"]))
self.hostlimithost.set_enabled(bool(info["enable_host"]))
self.hostlimithost_caption.set_enabled(bool(info["enable_host"]))
if self.auth_string_param:
if info["auth_string_label"]:
self.auth_string_help.show(True)
self.auth_string_help.set_text(info["auth_string_label"])
self.auth_string_label.show(True)
self.auth_string_param.show(True)
self.auth_string_desc.show(True)
if is_new_user:
self.auth_string_label.set_enabled(True)
self.auth_string_param.set_enabled(True)
else:
self.auth_string_label.set_enabled(False)
self.auth_string_param.set_enabled(False)
else:
self.auth_string_help.show(False)
self.auth_string_label.show(False)
self.auth_string_param.show(False)
self.auth_string_desc.show(False)
def set_hostlimithost(self, value):
self.hostlimithost.set_value(value)
self.validate_hostlimithost()
def hostlimithost_changed(self):
self.validate_hostlimithost()
self.set_dirty()
def auth_type_changed(self):
if not self.has_extra_plugins:
return
auth_type = self.selected_plugin_type()
# this method is only called for new users (because auth-type can't be changed for existing users)
self.update_enable_state_for_auth_type(auth_type, True)
info = AUTHENTICATION_PLUGIN_TYPES.get(auth_type)
if not info:
info = AUTHENTICATION_PLUGIN_TYPES["*"]
if info:
if not info["enable_password"]:
self.password.set_value("")
self.confirm.set_value("")
if not info["enable_host"]:
self.set_hostlimithost("%")
self.set_dirty()
def refresh_role_list(self):
if self._selected_user:
self.role_list.clear()
roles = self._selected_user.admin_roles
TheRoles = SecurityAdminRoles if not self._selected_user.is_custom_role_needed else SecurityAdminRoles + [ ('Custom', 'custom role', []) ]
for name, desc, privs in TheRoles:
row = self.role_list.add_node()
row.set_bool(0, name in roles)
row.set_string(1, name)
row.set_string(2, desc)
def role_priv_list_toggled(self, node, col, value):
if self._selected_user:
node.set_bool(col, value == '1')
priv = node.get_string(1)
self._selected_user.toggle_priv(PrivilegeReverseDict[priv], value == '1')
self.refresh_role_list()
self.set_dirty()
def role_list_toggled(self, node, col, value):
if self._selected_user:
node.set_int(col, int(value))
role = node.get_string(1)
self._selected_user.toggle_role(role, value == "1")
self.refresh_role_list()
self.set_dirty()
self.refresh_priv_list()
def host_limit_clicked(self):
self.hostlimithost.set_enabled(self.hostlimit.get_active())
self.set_dirty()
def user_selected(self):
sel = self.user_list.get_selected_node()
self._selected_user = None
self._selected_user_original = None
self.show_user(None)
#self.dup_button.set_enabled(False)
self.del_button.set_enabled(False)
if sel:
user, host = eval(sel.get_tag())
self.account_label.set_text("Details for account %s@%s" % (user, host))
if self.owner.secman.is_zombie(user, host):
self.show_zombie_user(user, host)
else:
self.owner.secman.async_get_account(self.show_user, user, host)
else:
self.account_label.set_text("Select an account to edit or click [Add Account] to create a new one")
def show_zombie_user(self, user, host):
self.content_box.set_enabled(True)
self.inner_tabview.show(False)
if self.expire_button:
self.expire_button.set_enabled(False)
#self.dup_button.set_enabled(False)
self.del_button.set_enabled(True)
privs = self.owner.secman.get_zombie_privs(user, host)
self.account_label.set_text("Account %s@%s does not exist but it still has privileges defined for the following objects:\n %s\n\nClick the [Delete] button to completely remove the account." % (user, host, "\n ".join(privs)))
def show_user(self, user):
self.inner_tabview.show(True)
sel = self.user_list.get_selected_node()
if not sel and user:
return
if user and eval(sel.get_tag())[0] != user.username:
return
self.content_box.set_enabled(user != None)
self.revoke_all_button.set_enabled(bool(user != None and user.is_commited))
self.unset_dirty()
self._selected_user = user
self._selected_user_original = user and user.snapshot_for_revert()
if user:
#self.dup_button.set_enabled(True)
self.del_button.set_enabled(True)
if self.expire_button:
self.expire_button.set_enabled(bool(user.is_commited and not user.password_expired))
self.username.set_value(user.username)
self.password.set_value(user.password or "")
self.confirm.set_value(user.password or "")
self.set_hostlimithost(user.host)
if self.auth_type_list:
try:
index = self.auth_type_list.index(user.auth_plugin or DEFAULT_AUTH_PLUGIN)
except ValueError:
mforms.Utilities.show_warning("Invalid Authentication Plugin",
"User %s has plugin type %s, which is not listed as a known authentication plugin by the server." % (user.formatted_name(), user.auth_plugin),
"OK", "", "")
return
self.auth_type_sel.set_selected(index)
# changing auth type not supported atm
self.auth_type_sel.set_enabled(not user.is_commited)
self.auth_string_param.set_value(user.auth_string or "")
self.update_enable_state_for_auth_type(user.auth_plugin or None, not user.is_commited)
self.max_questions.set_value(str(user.max_questions))
self.max_updates.set_value(str(user.max_updates))
self.max_connections.set_value(str(user.max_connections))
self.max_uconnections.set_value(str(user.max_user_connections))
self.refresh_priv_list()
self.refresh_role_list()
self.schema_privs.show_user(user.schema_privs)
self.firewall_rules.show_user(user.username, user.host, False if self._selected_user and self._selected_user.is_commited else True)
else:
self.username.set_value("")
self.password.set_value("")
self.confirm.set_value("")
if self.expire_button:
self.expire_button.set_enabled(False)
self.set_hostlimithost("")
if self.auth_string_param:
self.auth_string_param.set_value("")
self.max_questions.set_value("")
self.max_updates.set_value("")
self.max_connections.set_value("")
self.max_uconnections.set_value("")
for i in range(self.role_list.count()):
role_list_node = self.role_list.node_at_row(i)
if role_list_node:
self.role_list.node_at_row(i).set_bool(0, False)
self.schema_privs.show_user(None)
self.password_label.set_text(self.password_advice)
self.password_label.set_color('#000000')
self.setup_bottom_message_box(user)
def _find_user_position(self, user, host):
users_count = len(self.owner.secman.account_names)
for row in range(users_count):
node = self.user_list.node_at_row(row)
if (user, host) == ( node.get_string(0), node.get_string(1) ):
return row
return users_count - 1 # Control shouldn't get here
def add_account(self):
account = self.owner.secman.create_account()
self.refresh()
self.inner_tabview.set_active_tab(0)
pos = self._find_user_position(account.username, account.host)
if pos is not None and pos >= 0:
self.user_list.select_node(self.user_list.node_at_row(pos))
self.user_selected()
self.set_dirty()
self.add_button.set_enabled(False)
self.del_button.set_enabled(False)
self.refresh_button.set_enabled(False)
def upgrade_account(self):
def generate_password(length = 8):
chars = string.ascii_letters + string.digits + '!@#$%^&*()'
random.seed = (os.urandom(1024))
return ''.join(random.choice(chars) for i in range(length))
def change_password(password, confirm_password):
self._selected_user.password = password
self._selected_user.confirm_password = confirm_password
try:
self._selected_user.upgrade_password_format()
except WBSecurityValidationError, exc:
Utilities.show_error("Upgrade", str(exc), "OK", "", "")
return
except Exception, exc:
import traceback
log_error("Exception while upgrading account auth type: %s\n" % traceback.format_exc())
Utilities.show_error("Error Upgrading Authentication Method", str(exc), "OK", "", "")
return
if self.password.get_string_value() == self._selected_user._orig_password:
upgrade_account_msg = ["A password must be provided for the account (either the original or a new one) before it can be upgraded."]
reset_to_expire_caption = ""
if self.owner.ctrl_be.target_version and self.owner.ctrl_be.target_version.is_supported_mysql_version_at_least(5, 6, 0):
upgrade_account_msg.append("Click [Reset to Expired] to set a random password and expire it, so the user will have to reset it next time they login.")
reset_to_expire_caption = "Reset to Expired"
result = Utilities.show_warning("Upgrade Authentication Method", "\n".join(upgrade_account_msg), "OK", "", reset_to_expire_caption)
if result == mforms.ResultOther:
gen_password = generate_password()
change_password(gen_password, gen_password)
Utilities.show_message("Random Generated Password", 'Password changed to: %s' % gen_password, "OK", "", "")
self.expire()
else:
return
else:
change_password(self.password.get_string_value(), self.confirm.get_string_value())
self.reload_user(False)
def dup_account(self):
if self._selected_user:
account = self.owner.secman.copy_account(self._selected_user)
self.refresh()
pos = self._find_user_position(account.username, account.host)
if pos and pos >= 0:
self.user_list.select_node(self.user_list.node_at_row(pos))
self.user_selected()
def del_account(self):
if self._selected_user:
if not self._selected_user.is_commited or Utilities.show_message("Delete Account",
"The account '%s' will be permanently removed. Please confirm."%(self._selected_user.formatted_name()),
"Delete", "Cancel", "") == mforms.ResultOk:
the_name = self._selected_user.formatted_name()
try:
self.owner.secman.delete_account(self._selected_user)
except Exception, e:
log_error("Exception while removing account: %s\n" % str(e))
title, message = e.args[:2] if len(e.args) > 1 else ('Error:', str(e))
Utilities.show_error("Delete account", '%s\n%s' % (title, message), 'OK', '', '')
return
self._selected_user = None
self._selected_user_original = None
self.owner.do_refresh()
self.user_selected()
mforms.App.get().set_status_text("Account '%s' was deleted" % the_name)
else:
user = self.user_list.get_selected_node()
if user:
username, host = eval(user.get_tag())
try:
self.owner.secman.do_delete_account(username, host)
except Exception, e:
log_error("Exception while removing zombi account: %s\n" % str(e))
title, message = e.args[:2] if len(e.args) > 1 else ('Error:', str(e))
Utilities.show_error("Delete account", '%s\n%s' % (title, message), 'OK', '', '')
return
user.remove_from_parent()
self.add_button.set_enabled(True)
self.del_button.set_enabled(True)
self.refresh_button.set_enabled(True)
def refresh(self):
selected_row = None
su = self._selected_user
suo = self._selected_user_original
self.user_list.freeze_refresh()
self.user_list.clear()
self.firewall_rules.refresh_users(self.owner.secman.account_names)
for user, host in self.owner.secman.account_names:
row = self.user_list.add_node()
if self.owner.secman.is_zombie(user, host):
row.set_string(0, "(!) "+(user or "<anonymous>"))
else:
row.set_string(0, user or "<anonymous>")
row.set_string(1, host)
row.set_tag(repr((user, host)))
# Change row with firewall values
self.firewall_rules.refresh_row(row, user, host)
if su and (user == su.username and host == su.host):
selected_row = row
self.user_list.thaw_refresh()
self._selected_user = su
self._selected_user_original = suo
if selected_row is not None:
self.user_list.select_node(selected_row)
self.user_selected()
self.password_label.set_text(self.password_advice)
self.password_label.set_color('#000000')
self.setup_bottom_message_box(su)
def refresh_priv_list(self):
self.role_priv_list.clear()
if self._selected_user:
all_supported_privs = sorted( [val[0] for key, val in PrivilegeInfo.iteritems() if key in self.owner.secman.global_privilege_names] )
privs = self._selected_user.raw_privilege_names
for priv in all_supported_privs:
row = self.role_priv_list.add_node()
row.set_bool(0, priv in privs)
row.set_string(1, priv)
def validate_hostlimithost(self):
host = self.hostlimithost.get_string_value()
self.valid_name = True
self.valid_ipv6 = False
if len(host) > 255:
self.valid_name = False
subnet_mask = ''
if '/' in host:
host, _, subnet_mask = host.rpartition('/')
if not subnet_mask:
self.valid_name = False
if self.valid_name:
allowed = re.compile(r"([a-z]|([%_]\.))(([\-_\.]?[a-z0-9]+)*)[a-z0-9]$", re.IGNORECASE)
allowed_ipv4 = re.compile(r"^(((%|_)?|25[0-5%_]|(%|_)?|2[0-4%_][0-9%_]|[01%_]?[0-9%_][0-9%_]?)\.){0,3}((%|_)?|25[0-5%_]|2[0-4%_][0-9%_]|[01%_]?[0-9%_][0-9%_]?)$")
allowed_ipv6 = re.compile(r"^\s*(?!.*::.*::)(?:(?!:)|:(?=:))(?:[0-9a-f%_]{0,4}(?:(?<=::)|(?<!::):)){6}(?:[0-9a-f%_]{0,4}(?:(?<=::)|(?<!::):)[0-9a-f%_]{0,4}(?:(?<=::)|(?<!:)|(?<=:)(?<!::):)|(?:25[0-4%_]|2[0-4%_]\d|1\d\d|[1-9%_]?\d)(?:\.(?:25[0-4%_]|2[0-4%_]\d|1\d\d|[1-9%_]?\d)){3})\s*$"
, re.IGNORECASE)
self.valid_ipv6 = allowed_ipv6.match(host)
self.valid_name = allowed.match(host) or allowed_ipv4.match(host) or self.valid_ipv6
if self.valid_name and subnet_mask:
self.valid_name = ( (subnet_mask.isdigit() and 0 <= int(subnet_mask) <= 32) or
(subnet_mask.isdigit() and 0 <= int(subnet_mask) <= 128 and self.valid_ipv6) or
(re.match(r'\d{1,3}(\.\d{1,3}){3}', subnet_mask) and # 255.255.254.0 is a valid netmask
all( int(item) <= 255 for item in subnet_mask.split('.') ) )
)
if self.valid_name:
self.hostlimithost_valid_icon.show(False)
else:
#self.unset_dirty()
self.hostlimithost_valid_icon.set_image("mini_error.png")
self.hostlimithost_valid_icon.show()
self.hostlimithost_valid_icon.set_tooltip("Host name contains incorrect characters")
def set_dirty(self):
self.save_button.set_enabled(True)
self.revert_button.set_enabled(True)
self.user_list.set_enabled(False)
self.dirty = True
def unset_dirty(self):
self.save_button.set_enabled(False)
self.revert_button.set_enabled(False)
self.user_list.set_enabled(True)
self.dirty = False
def expire(self):
if self._selected_user:
try:
self._selected_user.expire_password()
except Exception, e:
title, message = e.args[:2] if len(e.args) > 1 else ('Error:', str(e))
Utilities.show_error(title, message, 'OK', '', '')
self.refresh()
def revoke_all(self):
if self._selected_user:
if Utilities.show_message("Revoke All Privileges",
"Please confirm revocation of all privileges for the account '%s'@'%s'.\nNote: the account itself will be maintained.\n\nAdd new privileges afterwards or the user will not be able to access any schema object."%(self._selected_user.username, self._selected_user.host),
"Revoke", "Cancel", "") == mforms.ResultOk:
try:
self._selected_user.revoke_all()
self._selected_user.load(self._selected_user.username, self._selected_user.host)
self.show_user(self._selected_user)
except Exception, e:
title, message = e.args[:2] if len(e.args) > 1 else ('Error:', str(e))
Utilities.show_error(title, message, 'OK', '', '')
def revert(self):
if self._selected_user_original:
self.show_user(self.owner.secman.revert_account(self._selected_user, self._selected_user_original))
if not self._selected_user.is_commited:
self.owner.secman.delete_account(self._selected_user)
self.refresh()
if not self.user_list.get_selected_node():
self.user_selected()
self.add_button.set_enabled(True)
self.del_button.set_enabled(True)
self.refresh_button.set_enabled(True)
def commit(self):
if self._selected_user:
username = self.username.get_string_value()
host = self.hostlimithost.get_string_value()
if not self.valid_name:
Utilities.show_error('Invalid host specification',
'The host specification "%s" is not valid. Please correct it and try again.' % host,
'OK', '', '' )
is_new_user = not self._selected_user.is_commited
password_unneeded = False
self.password_label.set_text("Password has expired. User must change password to use the account." if self._selected_user.password_expired else self.password_advice)
plugin_info = AUTHENTICATION_PLUGIN_TYPES.get(self.selected_plugin_type(), {})
if self.has_extra_plugins and not plugin_info.get("enable_password", True):
password_unneeded = True
if is_new_user and not self.password.get_string_value() and not password_unneeded:
if Utilities.show_warning("Save Account Changes",
"It is a security hazard to create an account with no password.\nPlease confirm creation of '%s'@'%s' with no password."%(username, host),
"Create", "Cancel", "") != mforms.ResultOk:
return
lcase_host = host.lower()
if lcase_host != host:
if Utilities.show_message_and_remember("Save Account Changes",
"MySQL only allows lowercase characters for hostnames, the account host will be updated accordingly.",
"Ok", "", "","wb.admin.warn_ucase_hostnames", "Don't show this message again"):
self.hostlimithost.set_value(lcase_host)
self._selected_user.username = self.username.get_string_value()
self._selected_user.password = self.password.get_string_value()
self._selected_user.confirm_password = self.confirm.get_string_value()
#if self.hostlimit.get_active():
self._selected_user.host = self.hostlimithost.get_string_value()
# else:
# self._selected_user.host = "%"
try:
self._selected_user.max_questions = int(self.max_questions.get_string_value())
if self._selected_user.max_questions < 0: raise ValueError
except ValueError:
Utilities.show_error('Wrong Value for Max. Queries',
'Cannot convert "%s" to a valid non-negative integer.\nPlease correct this value and try again.' % self.max_questions.get_string_value(),
'OK', '', '')
return
try:
self._selected_user.max_updates = int(self.max_updates.get_string_value())
if self._selected_user.max_updates < 0: raise ValueError
except ValueError:
Utilities.show_error('Wrong Value for Max. Updates',
'Cannot convert "%s" to a valid non-negative integer.\nPlease correct this value and try again.' % self.max_updates.get_string_value(),
'OK', '', '')
return
try:
self._selected_user.max_connections = int(self.max_connections.get_string_value())
if self._selected_user.max_connections < 0: raise ValueError
except ValueError:
Utilities.show_error('Wrong Value for Max. Connections',
'Cannot convert "%s" to a valid non-negative integer.\nPlease correct this value and try again.' % self.max_connections.get_string_value(),
'OK', '', '')
return
try:
self._selected_user.max_user_connections = int(self.max_uconnections.get_string_value())
if self._selected_user.max_user_connections < 0: raise ValueError
except ValueError:
Utilities.show_error('Wrong Value for Concurrent Connections',
'Cannot convert "%s" to a valid non-negative integer.\nPlease correct this value and try again.' % self.max_uconnections.get_string_value(),
'OK', '', '')
return
if is_new_user and self.has_extra_plugins:
self._selected_user.auth_plugin = self.selected_plugin_type()
self._selected_user.auth_string = None
if self._selected_user.auth_plugin and AUTHENTICATION_PLUGIN_TYPES[self._selected_user.auth_plugin]["auth_string_label"]:
self._selected_user.auth_string = self.auth_string_param.get_string_value()
try:
self._selected_user.save()
except WBSecurityValidationError, exc:
Utilities.show_error("Save Account Changes",
str(exc), "OK", "", "")
return
except PermissionDeniedError, exc:
Utilities.show_error("Permission Errors",
str(exc), "OK", "", "")
return
except Exception, exc:
import traceback
log_error("Exception while saving account: %s\n" % traceback.format_exc())
Utilities.show_error("Error Saving Account",
str(exc), "OK", "", "")
return
try:
self.firewall_rules.save()
except Exception, exc:
import traceback
log_error("Exception while saving account: %s\n" % traceback.format_exc())
Utilities.show_error("Error Saving Account",
str(exc), "OK", "", "")
return
self.reload_user(is_new_user)
self.add_button.set_enabled(True)
self.del_button.set_enabled(True)
self.refresh_button.set_enabled(True)
def update(self):
self.schema_privs.update()
def setup_bottom_message_box(self, user):
if not user:
return
caption = ''
if user.old_authentication:
caption = '''This account is using the pre-mysql-4.1.1 password hashing type.
The user will not be able to login if the secure_auth option is enabled.
Please click [Upgrade Account] to fix that.
Either the account password must be provided to reset it
or a new password must be supplied.'''
elif user.password_expired:
caption = 'Password has expired. User must change password to use the account.'
elif not user.username:
caption = 'This is an anonymous account. It is usually advisable to delete this account.'
elif user.blank_password :
caption = 'No password is set for this account.'
self.bottom_message_caption.set_text(caption)
self.bottom_message_hbox.show(bool(user.old_authentication or user.password_expired or user.blank_password or not user.username))
self.upgrade_account_button.show(bool(user.old_authentication))
def reload_user(self, is_new_user):
the_name = self._selected_user.formatted_name()
self._selected_user.load(self._selected_user.username, self._selected_user.host)
self.unset_dirty()
self.owner.refresh()
if is_new_user:
mforms.App.get().set_status_text("Created account '%s'" % the_name)
else:
mforms.App.get().set_status_text("Updated account '%s'" % the_name)
#############################
class WbAdminSecurity(mforms.Box):
_schema_priv_entries = []
ui_created = False
@classmethod
def wba_register(cls, admin_context):
admin_context.register_page(cls, "wba_management", "Users and Privileges")
@classmethod
def identifier(cls):
return "admin_manage_privs"
def shutdown(self):
self.account_tab.shutdown()
def __init__(self, ctrl_be, server_profile, main_view):
mforms.Box.__init__(self, False)
self.set_managed()
self.set_release_on_add()
self.ctrl_be = ctrl_be
self.secman = None
self.server_profile = server_profile
self.main_view = main_view
self.firewall_enabled = False
self.heading = None
self.warning = None
self.account_tab = None
def firewall_status_changed(self):
current_status = self.ctrl_be.server_variables.get('mysql_firewall_mode')
changed = current_status != self.firewall_enabled
self.firewall_enabled = current_status
return changed
def create_ui(self):
self.suspend_layout()
self.set_padding(12)
self.set_spacing(8)
if self.heading:
self.remove(self.heading)
self.heading = None
self.heading = make_panel_header("title_users.png", self.server_profile.name, "Users and Privileges")
self.add(self.heading, False, True)
if self.warning:
self.remove(self.warning)
self.warning = None
self.warning = not_running_warning_label()
self.add(self.warning, False, True)
if self.account_tab:
self.remove(self.account_tab)
self.account_tab = None
self.account_tab = SecurityAccount(self)
self.add(self.account_tab, True, True)
self.resume_layout()
def show_no_permission(self):
self.warning.set_text("\n\n\n\nThe account you are currently using does not have sufficient privileges to make changes to MySQL users and privileges.")
self.warning.show(True)
self.account_tab.show(False)
def update_ui(self):
if self.ctrl_be.is_sql_connected():
self.secman = AdminSecurity(self.ctrl_be)
self.warning.show(False)
self.account_tab.show(True)
else:
self.secman = None
self.warning.show(True)
self.account_tab.show(False)
def page_activated(self):
if (not self.ui_created) or self.firewall_status_changed():
self.create_ui()
self.ui_created = True
self.update_ui()
self.refresh()
# Ask the user to remove anonymous accounts if present
if self.ctrl_be.is_sql_connected():
try:
anon_accounts = [ (user, host) for user, host in self.secman.account_names if user=='']
if anon_accounts and not self.__dict__.get('already_asked_for_anon_accounts', False):
logged_username = self.ctrl_be.server_profile.db_connection_params.parameterValues['userName']
logged_servername = self.ctrl_be.server_profile.db_connection_params.hostIdentifier
privs = self.secman.get_valid_privileges()
except:
privs = []
if 'DELETE' in privs or 'CREATE USER' in privs:
if Utilities.show_message_and_remember('Anonymous accounts detected',
'Anonymous accounts were detected in the server %s.\nAnonymous accounts can cause great confusion and are also a potential security issue and are advised to be removed. Would you like Workbench to delete them now?.' % logged_servername,
'Delete', 'Leave Accounts', '',
'wb.admin.delete_anonymous_accounts:' + logged_username + '@' + logged_servername,
"Don't show this message again") == mforms.ResultOk:
for name, host in anon_accounts:
self.secman.async_get_account(self.secman.delete_account, name, host)
else:
Utilities.show_message_and_remember('Anonymous accounts detected',
'Anonymous accounts were detected in the server %s.\nAnonymous accounts can cause great confusion and are also a potential security issue and are advised to be removed. Please ask a DBA to delete them.' % logged_servername,
'OK', '', '',
'wb.admin.delete_anonymous_accounts:' + logged_username + '|no_privileges|' + '@' + logged_servername,
"Don't show this message again")
self.already_asked_for_anon_accounts = True
def refresh(self):
if self.ctrl_be.is_sql_connected():
try:
self.secman.async_refresh(self.do_refresh)
except PermissionDeniedError:
self.show_no_permission()
mforms.Utilities.driver_shutdown()
def do_refresh(self):
if not self.account_tab.dirty:
self.account_tab.refresh()
self.account_tab.update()
|