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
|
#!/usr/bin/perl
#
# Copyright 2011-2012 SPARTA, Inc. All rights reserved. See the COPYING
# file distributed with this software for details.
#
#
# dtrealms
#
# This script manages the running DNSSEC-Tools realms.
#
# This daemon isn't necessary for running multiple realms.
# However, it does make it easier to manage multiple realms
# running consecutively.
#
#
# our $prefixdir = $ENV{'DT_PREFIX'} || "/usr/local";
# our $sysconfdir = $ENV{'DT_SYSCONFDIR'} || "/usr/local/etc";
# our $STATEDIR = $ENV{'DT_STATEDIR'} || "/usr/local/var";
#
# Configuration file.
# our $CONFFILE = "${sysconfdir}/dnssec-tools/dnssec-tools.conf";
#
use strict;
use Cwd;
use Getopt::Long qw(:config no_ignore_case_always);
use Net::DNS::SEC::Tools::dnssectools;
use Net::DNS::SEC::Tools::conf;
use Net::DNS::SEC::Tools::defaults;
use Net::DNS::SEC::Tools::realm;
use Net::DNS::SEC::Tools::realmmgr;
use POSIX ":sys_wait_h";
use POSIX "setsid";
#
# Despite its name, rolllog.pm is a general-purpose logging facility.
#
use Net::DNS::SEC::Tools::rolllog;
#
# Version information.
#
my $NAME = "dtrealms";
my $VERS = "$NAME version: 1.13.0";
my $DTVERS = "DNSSEC-Tools Version: 1.13";
#######################################################################
my %dtconf; # DNSSEC-Tools config file.
my $dtconfig; # DNSSEC-Tools configuration file.
my %opts = (); # Filled option array.
my @opts =
(
"directory=s", # Directory we'll run in.
"display", # Use output GUI.
"foreground", # Run in the foreground.
"logfile=s", # Log file.
"loglevel=s", # Logging level.
"logtz=s", # Logging timezone.
"help", # Give a usage message and exit.
"verbose", # Verbose output.
"Version", # Display the version number.
);
my $directory = ''; # Directory flag.
my $display = 0; # Display flag.
my $foreground = 0; # Foreground flag.
my $logfile; # Log file.
my $loglevel; # Logging level.
my $logtz; # Logging timezone.
my $username; # User to execute as.
#
# Keywords for configuration file values.
#
my $DT_DIR = 'realmd_directory';
my $DT_DISPLAY = 'realmd_display';
my $DT_LOGLEVEL = 'realmd_loglevel';
my $DT_LOGFILE = 'realmd_logfile';
my $DT_LOGTZ = 'realmd_logtz';
#######################################################################
my $xqtdir; # Directory we started in.
my $curdir; # Current directory.
my $realmfile = ''; # Current realm file.
my @realms = (); # List of names in realm file.
my %realms = (); # Hash of realm file.
my %inactives = (); # Hash of inactive realms.
my %actives = (); # Hash of actives realms.
my %children = (); # Realm/pid hash table.
my $numchildren = 0; # Count of actives children.
#######################################################################
my $LOG_DEFFILE = 'log.dtrealms'; # Default log file.
my $LOG_DEFLEVEL = LOG_INFO; # Default log level.
my $LOG_DEFTZ = 'gmt'; # Default timezone for log.
#######################################################################
my $MAXTRIES = 5; # Number of times to attempt a realm halt.
#######################################################################
#
# Do Everything.
#
main();
exit(0);
#------------------------------------------------------------------------
# Routine: main()
#
# Purpose: Get everything going.
#
sub main
{
#
# Check our args and options.
#
doopts();
#
# Move to our work directory.
#
chdir($directory);
#
# Daemonize ourself.
#
if(! $foreground)
{
exit(0) if(fork() != 0);
POSIX::setsid();
}
#
# Set up logging, user commands, and identify ourself.
#
housekeeping();
#
# Build our realm objects.
#
buildrealms(1);
#
# Turn on our signal handlers and start realm execution.
#
controllers(1);
runrealms();
#
# Turn on the display flag if user wants it.
#
displayer($display) if(defined($opts{'display'}));
#
# Wait for something to happen.
#
waiter();
}
#-----------------------------------------------------------------------------
# Routine: doopts()
#
# Purpose: This routine shakes and bakes our command line options.
# A bunch of option variables are set according to the specified
# options. Then a little massaging is done to make sure that
# the proper actions are taken.
#
sub doopts
{
#
# Get the base values.
#
$dtconfig = getconffile();
%dtconf = parseconfig();
#
# Parse the options.
#
GetOptions(\%opts,@opts) || usage();
#
# Check for a few easy options.
#
usage() if(defined($opts{'help'}));
version() if(defined($opts{'Version'}));
#
# Set our option variables based on the parsed options.
#
$directory = optcalc('directory', $DT_DIR, '.');
$display = defined($opts{'display'});
$foreground = defined($opts{'foreground'});
$loglevel = optcalc('loglevel', $DT_LOGLEVEL, $LOG_DEFLEVEL);
$logfile = optcalc('logfile', $DT_LOGFILE, $LOG_DEFFILE);
$logtz = optcalc('logtz', $DT_LOGTZ, $LOG_DEFTZ);
#
# Get the realm file.
#
usage() if(!defined($ARGV[0]));
$realmfile = $ARGV[0];
}
#-----------------------------------------------------------------------------
# Routine: housekeeping()
#
# Purpose: Do some basic initialization work.
# This is expected to only be called once.
#
sub housekeeping
{
my $ret; # General return code.
#
# Set up logging and write some initial boot messages.
#
loginit();
bootmsg(1);
#
# Ensure we're the only dtrealms running and drop a pid file.
#
if(realmmgr_dropid() == 0)
{
print STDERR "another dtrealms is already running\n";
rolllog_log(LOG_ALWAYS,"","another dtrealms tried to start");
cleanup();
}
#
# Set up the command channel.
#
if(($ret = realmmgr_channel(1)) != 1)
{
my @errs =
(
'Unable to connect to the server.',
'Unable to create a Unix socket.',
'Unable to bind to the Unix socket.',
'Unable to change the permissions on the Unix socket.',
'Unable to listen on the Unix socket.',
'Communications socket name was longer than allowed for a Unix socket.',
);
#
# Adjust for array index.
#
$ret *= -1;
rolllog_log(LOG_FATAL,"","unable to create control communications channel: $errs[$ret]");
exit(3);
}
#
# Save our current directory.
#
$curdir = getcwd();
$xqtdir = $curdir;
#
# Save our name.
#
$username = getpwuid($>);
}
#-----------------------------------------------------------------------------
# Routine: optcalc()
#
# Purpose: This routine figures out which version of a variable to use.
# It selects (in order) a command-line option, an option from
# the DNSSEC-Tools config file, or a program default.
#
sub optcalc
{
my $optskey = shift; # Key for %opts.
my $dtckey = shift; # Key for %dtconf.
my $default = shift; # Default value.
my $ret; # Return value.
#
# Look at the command line first...
#
if(defined($opts{$optskey}))
{
$ret = $opts{$optskey};
}
else
{
#
# Then look at the config file.
#
if(defined($dtconf{$dtckey}))
{
$ret = $dtconf{$dtckey};
}
else
{
#
# Then look at the defaults.
#
$ret = $default;
}
}
#
# And now we'll return the result.
#
return($ret);
}
#------------------------------------------------------------------------
# Routine: loginit()
#
# Purpose: Initialize our logging. The log file, the logging level
# and the log timezone are all set.
#
sub loginit
{
my $errs = 0; # Error count.
if(rolllog_file($logfile,0) eq '')
{
rolllog_log(LOG_FATAL,'',"started with invalid logging file - \"$logfile\"");
}
if(rolllog_level($loglevel) == -1)
{
rolllog_log(LOG_FATAL,'',"started with invalid logging level - \"$loglevel\"");
}
if(rolllog_settz($logtz) == undef)
{
rolllog_log(LOG_FATAL,'',"started with invalid logging timezone - \"$logtz\"");
}
exit(1) if($errs != 0);
}
#-----------------------------------------------------------------------------
# Routine: bootmsg()
#
# Purpose: Write a start-up message to the log.
#
sub bootmsg
{
my $bootflag = shift; # Boot flag.
if($bootflag)
{
rolllog_log(LOG_ALWAYS,'',"$NAME starting " . ("-" x 40));
}
else
{
rolllog_log(LOG_ALWAYS,'',"$NAME changing logfiles " . ("-" x 31));
}
rolllog_log(LOG_ALWAYS,'',"$NAME parameters:");
rolllog_log(LOG_ALWAYS,''," realm file \"$realmfile\"");
rolllog_log(LOG_ALWAYS,''," directory \"$directory\"");
rolllog_log(LOG_ALWAYS,''," config file \"$dtconfig\"");
rolllog_log(LOG_ALWAYS,''," logfile \"$logfile\"");
rolllog_log(LOG_ALWAYS,''," loglevel \"$loglevel\"");
rolllog_log(LOG_ALWAYS,''," logtz \"$logtz\"");
rolllog_log(LOG_ALWAYS,''," running as \"$username\"");
rolllog_log(LOG_ALWAYS,'',' ');
}
#------------------------------------------------------------------------
# Routine: buildrealms()
#
# Purpose: Read the specified realms file and put it in a hash table.
#
sub buildrealms
{
my $logflag = shift; # Flag for logging actions.
my $ret; # Return from realm_read().
my $fixed = 0; # Fixed-realm flag.
rolllog_log(LOG_PHASE,'',"creating realms list") if($logflag);
#
# Read the realms file.
#
readrealms(1);
#
# Get a list of the realms and zap the realms hash.
#
@realms = realm_names();
%realms = ();
#
# Copy each realm entry into our own realm storage.
#
foreach my $realm (@realms)
{
my $rr = realm_fullrec($realm);
rolllog_log(LOG_INFO,'',"adding realm \"$realm\" to list") if($logflag);
# $realms{$realm} = %$rr;
#
# Copy the fields one at a time into the %realms hash.
# If one of the directory fields is a relative path,
# convert it to absolute from the current directory.
#
foreach my $key (keys(%$rr))
{
$realms{$realm}{$key} = $rr->{$key};
if(($key eq 'configdir') ||
($key eq 'statedir') ||
($key eq 'realmdir'))
{
#
# Convert relative directories to absolute.
#
if($rr->{$key} !~ /^\//)
{
my $newval; # New value.
$newval = "$curdir/$rr->{$key}";
realm_setval($realm,$key,$newval);
$realms{$realm}{$key} = $newval;
$fixed = 1;
}
}
}
}
#
# If we absoluted any of the directories, we'll save the new
# file and reload it.
#
if($fixed)
{
realm_write();
buildrealms();
}
}
#------------------------------------------------------------------------
# Routine: readrealms()
#
# Purpose: Read the specified realms file and put it in a hash table.
#
sub readrealms
{
my $exitflag = shift; # Exit-on-error flag.
my $ret; # Return value.
#
# Read the realm file.
#
realm_lock();
$ret = realm_read($realmfile);
realm_unlock();
#
# Ensure the realm file exists and is okay.
#
if($ret < 0)
{
if($ret == -1)
{
print STDERR "realm file \"$realmfile\" does not exist\n";
}
elsif($ret == -2)
{
print STDERR "unable to open realm file \"$realmfile\"";
}
elsif($ret == -3)
{
print STDERR "duplicate names in realm file \"$realmfile\"";
}
exit(2) if($exitflag);
}
}
#-----------------------------------------------------------------------------
# Routine: runrealms()
#
# Purpose: This routine starts executing all the realms in the realms
# list. If the realm's state is set to "inactive", then that
# realm is added to the inactive list and it won't be started.
#
sub runrealms
{
rolllog_log(LOG_PHASE,"","starting realms");
#
# Start each realm.
#
foreach my $realm (keys(%realms))
{
#
# Don't start this realm if it should be inactive.
#
if($realms{$realm}->{'state'} eq 'inactive')
{
rolllog_log(LOG_INFO,$realm,"realm is inactive");
$inactives{$realm}++;
next;
}
#
# Get the realm going.
#
if(startrealm($realm) != 0)
{
rolllog_log(LOG_INFO,$realm,"unable to start realm");
$inactives{$realm}++;
}
#
# No log message on success, as it has been handled.
#
}
}
#------------------------------------------------------------------------
# Routine: waiter()
#
# Purpose: This is where we mostly live once things are running.
# We'll wait here in select() until something gets out
# attention. This will almost always be a child realm
# dying or the arrival of a user command.
#
# If a realm has died, we'll make sure we know which one
# it is.
#
sub waiter
{
#
# Wait while our children run.
#
while(42)
{
my $cpid; # Pid of dead child.
my $ret; # Child's return value.
my $found = 0; # Found flag.
#
# Wait here until a child process has died.
#
while(($cpid = wait()) != -1)
{
$ret = $? >> 8;
$numchildren--;
#
# Find which child has gone away.
#
foreach my $realm (sort(keys(%children)))
{
next if($children{$realm} != $cpid);
rolllog_log(LOG_INFO,$realm,"realm has exited; retcode - $ret");
$found++;
}
#
# Complain if we don't recognize the child's pid.
#
if(!$found)
{
rolllog_log(LOG_ERR,'???',"unknown realm has exited; pid - $cpid; retcode - $ret");
}
}
#
# Sleep until something happens.
#
select(undef,undef,undef,undef);
}
#
# We should never get here...
#
}
#------------------------------------------------------------------------
# Routine: deadcode_waiter()
#
# Purpose: This used to be part of waiter(). It would check to see
# which child process has died. This code has been replaced
# and it will (soon) go away. A bit more testing, and this
# routine will be deleted.
#
# DO NOT CALL!!!
#
sub deadcode_waiter
{
my $cpid; # Pid of dead child.
my $ret; # Child's return value.
my $found = 0; # Found flag.
$cpid = wait();
$ret = $? >> 8;
$numchildren--;
#
# Find which child has gone away.
#
foreach my $realm (sort(keys(%children)))
{
next if($children{$realm} != $cpid);
rolllog_log(LOG_INFO,$realm,"realm has exited; retcode - $ret");
$found++;
}
#
# Complain if we don't recognize the child's pid.
#
if(!$found)
{
rolllog_log(LOG_ERR,'???',"unknown realm has exited; pid - $cpid; retcode - $ret");
}
}
#------------------------------------------------------------------------
# Routine: realm_exec()
#
# Purpose: Run a command in a given realm and do not wait for it to
# complete. The child process is added to our list of children.
#
sub realm_exec
{
my $realm = shift; # Realm to start.
my $cmd = shift; # Command to execute.
my $child; # Procid for child realm.
#
# Create a child process for the rollover manager.
#
if(($child = fork()) == 0)
{
my $realmdir; # Realm's execution directory.
my $statedir; # Realm's state directory.
my $confdir; # Realm's config directory.
#
# Get the realm's directories.
#
$confdir = $realms{$realm}{'configdir'} || '.';
$realmdir = $realms{$realm}{'realmdir'} || '.';
$statedir = $realms{$realm}{'statedir'} || '.';
#
# Move into the realm's directory.
#
chdir($realmdir);
#
# Set the state directory and config file so the command
# will be run as in the proper realm.
#
$ENV{'DT_STATEDIR'} = $statedir;
$ENV{'DT_SYSCONFDIR'} = $confdir;
# DNSSEC-Tools config file is ${sysconfdir}/dnssec-tools/dnssec-tools.conf
rolllog_log(LOG_TMI,$realm,"executing \"$cmd\"");
exec $cmd;
#
# If the exec failed...
#
rolllog_log(LOG_TMI,$realm,"could not start \"$cmd\"; errno - $!");
exit(1);
}
#
# Add the child processes' info to the children hash.
#
$children{$realm} = $child;
$numchildren++;
}
#------------------------------------------------------------------------
# Routine: realm_system()
#
# Purpose: Run a command in a given realm and wait for it to complete.
# The child process is not added to our list of children.
#
sub realm_system
{
my $realm = shift; # Realms to start.
my $cmd = shift; # Command to execute.
my $confdir; # Realm's config directory.
my $statedir; # Realm's state directory.
my $realmdir; # Realm's directory.
my $rc = ''; # Return code.
my $out = ''; # Command's output.
#
# Get the realm directory, state directory, and configuration
# file for this realm.
#
$confdir = $realms{$realm}{'configdir'} || '.';
$statedir = $realms{$realm}{'statedir'} || '.';
$realmdir = $realms{$realm}{'realmdir'} || '.';
#
# Move into the realm's directory.
#
chdir($realmdir);
#
# Run the command with a timer.
#
eval
{
#
# Set a timer so we don't hang forever.
#
$SIG{'ALRM'} = sub { die 'command timeout' };
alarm(60);
#
# Execute the given command in the given realm.
#
rolllog_log(LOG_TMI,$realm,"executing \"$cmd\"");
$out = `DT_STATEDIR=$statedir DT_SYSCONFDIR=$confdir $cmd 2>&1`;
$rc = $? >> 8;
#
# Turn off the timer.
#
alarm(0);
$SIG{'ALRM'} = 'DEFAULT';
};
#
# Set an appropriate message for the caller. We will recognize
# if the timer failed or not, but that's the only success/failure
# indicator we'll give for the command.
#
if($@ && ($@ =~ /command timeout/))
{
rolllog_log(LOG_ALWAYS,$realm,'realm_system() command timed out');
$rc = -1;
$out = 'timeout';
}
else
{
rolllog_log(LOG_TMI,$realm,'realm_system() succeeded');
rolllog_log(LOG_TMI,$realm," rc - <$rc>");
rolllog_log(LOG_TMI,$realm," out - <$out>");
}
#
# Return to dtrealm's directory.
#
chdir($xqtdir);
#
# Return the command's output.
#
return($rc,$out);
}
#-----------------------------------------------------------------------------
# Routine: controllers()
#
# Purpose: Initialize handlers for our externally provided commands.
#
sub controllers
{
my $onflag = shift; # Handler on/off flag.
#
# Set the signal handlers that will manage incoming commands.
#
$SIG{'HUP'} = \&intcmd_handler;
$SIG{'INT'} = \&halt_handler;
}
#-----------------------------------------------------------------------------
# Routine: commander()
#
# Purpose: Handle any commands sent to dtrealms' command socket.
#
sub commander
{
my $cmd; # Client's command.
my $data; # Command's data.
rolllog_log(LOG_TMI,'<command>',"checking commands");
#
# Read and handle all the commands we've been sent.
#
while(42)
{
#
# Get the command, return if there wasn't one.
#
($cmd,$data) = realmmgr_getcmd(5);
return if(!defined($cmd));
rolllog_log(LOG_TMI,'<command>',"cmd - \"$cmd\"");
rolllog_log(LOG_TMI,'<command>',"data - \"$data\"") if($data ne "");
#
# Deal with the command.
#
if($cmd eq REALMCMD_COMMAND())
{
cmd_command($data);
}
elsif($cmd eq REALMCMD_DISPLAY())
{
cmd_display($data);
}
elsif($cmd eq REALMCMD_LOGFILE())
{
cmd_logfile($data);
}
elsif($cmd eq REALMCMD_LOGLEVEL())
{
cmd_loglevel($data);
}
elsif($cmd eq REALMCMD_LOGMSG())
{
cmd_logmsg($data);
}
elsif($cmd eq REALMCMD_LOGTZ())
{
cmd_logtz($data);
}
elsif($cmd eq REALMCMD_REALMSTATUS())
{
cmd_realmstatus($data);
}
elsif($cmd eq REALMCMD_SHUTDOWN())
{
cmd_shutdown($data);
}
elsif($cmd eq REALMCMD_STARTALL())
{
cmd_startall($data);
}
elsif($cmd eq REALMCMD_STARTREALM())
{
cmd_startrealm($data);
}
elsif($cmd eq REALMCMD_STATUS())
{
cmd_status($data);
}
elsif($cmd eq REALMCMD_STOPALL())
{
cmd_stopall($data);
}
elsif($cmd eq REALMCMD_STOPREALM())
{
cmd_stoprealm($data);
}
else
{
rolllog_log(LOG_ERR,'<command>',"invalid command - \"$cmd\"");
}
#
# Close the command channel.
#
realmmgr_closechan();
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_command()
#
# Purpose: Send user-specified commands to a zone.
#
sub cmd_command
{
my $cmd = shift; # Command data.
my $ret; # Return code.
my $resp; # Response data.
my @atoms; # Pieces of command string.
my $realm; # Target realm for command.
my $command; # Actual command to send.
rolllog_log(LOG_TMI,'<command>',"realm-command command received; cmd - \"$cmd\"");
#
# Build a response of the realms' status.
#
@atoms = split ' ', $cmd;
if(@atoms < 2)
{
rolllog_log(LOG_TMI,'<command>',"incomplete realm-command");
realmmgr_sendresp(REALMCMD_RC_BADREALMDATA,'incomplete realm-command; must have both realm and command arguments.');
return;
}
#
# Build the pieces of the command.
#
$realm = shift @atoms;
$command = join ' ', @atoms;
#
# Execute the command and wait for it to complete.
#
# There is a potential danger here. As of now, any command
# can be specified for execution. There should probably be
# restrictions.
#
rolllog_log(LOG_INFO,'<command>',"sending realm $realm command $command");
($ret, $resp) = realm_system($realm,$command);
#
# Send the appropriate message to the caller. We will recognize
# if the timer failed or not, but that's the only success/failure
# indicator we'll give for the command.
#
if(($ret == -1) && ($resp eq 'timeout'))
{
rolllog_log(LOG_TMI,'<command>','realm command timed out');
realmmgr_sendresp(REALMCMD_RC_BADEVENT,'realm command timed out');
}
else
{
rolllog_log(LOG_TMI,'<command>',"realm-command response - \"$resp\"");
rolllog_log(LOG_TMI,'<command>',"realm-command return code - \"$ret\"");
#
# A return code line will be added to the output.
#
$resp .= "\nreturn code - $ret\n";
realmmgr_sendresp(REALMCMD_RC_OKAY,$resp);
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_display()
#
# Purpose: Start or stop the realms display GUI.
#
sub cmd_display
{
my $onflag = shift; # Display-on flag.
rolllog_log(LOG_TMI,'<command>',"display command received; status flag - \"$onflag\"");
#
# Do nothing if the we're already doing what the user wants.
#
if($display == $onflag)
{
if($display == 1)
{
rolllog_log(LOG_INFO,'<command>',"graphical display is already on");
}
else
{
rolllog_log(LOG_INFO,'<command>',"graphical display is already off");
}
realmmgr_sendresp(REALMCMD_RC_DISPLAY,"display status already as requested");
return;
}
#
# Start or stop the display program and give an appropriate set of
# log messages.
#
if($onflag)
{
displayer(1);
rolllog_log(LOG_INFO,'<command>',"dtrealms display started");
realmmgr_sendresp(REALMCMD_RC_OKAY,"dtrealms display started");
}
else
{
displayer(0);
rolllog_log(LOG_INFO,'<command>',"dtrealms display stopped");
realmmgr_sendresp(REALMCMD_RC_OKAY,"dtrealms display stopped");
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_logfile()
#
# Purpose: Set the logfile to the user's specified file. Nothing is done
# if the user requests the same log file as is currently in use.
#
sub cmd_logfile
{
my $newlog = shift; # New log file.
my $oldlog; # Old log file.
rolllog_log(LOG_TMI,'<command>',"logfile command received; new log file - \"$newlog\"");
#
# Do nothing if the new logfile is the same as the current logfile.
#
$oldlog = rolllog_file();
if($oldlog eq $newlog)
{
rolllog_log(LOG_INFO,'<command>',"new logfile ($newlog) same as the old logfile");
return;
}
#
# Change the logfile and give an appropriate set of log messages.
#
rolllog_log(LOG_INFO,'<command>',"logfile changed from $oldlog to $newlog");
rolllog_log(LOG_INFO,'<command>',"closing logfile $oldlog");
$oldlog = rolllog_file($newlog,0);
if($oldlog ne "")
{
rolllog_log(LOG_INFO,'<command>',"logfile changed from $oldlog to $newlog");
bootmsg(0);
realmmgr_sendresp(REALMCMD_RC_OKAY,"logfile changed to \"$newlog\"");
$logfile = $newlog;
}
else
{
rolllog_log(LOG_ERR,'<command>',"unable to change logfile to $newlog");
realmmgr_sendresp(REALMCMD_RC_BADFILE,"unable to change logfile to \"$newlog\"");
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_loglevel()
#
# Purpose: Set the logging level to the user's specified level.
#
sub cmd_loglevel
{
my $newlvl = shift; # New level.
my $oldlvl; # Old level.
my $oldstr; # Old level's string.
my $newstr; # New level's string.
$newstr = rolllog_str($newlvl);
rolllog_log(LOG_TMI,'<command>',"loglevel command received; new logging level - \"$newstr\"");
$oldlvl = rolllog_level($newlvl,0);
if($oldlvl >= 0)
{
$oldstr = rolllog_str($oldlvl);
rolllog_log(LOG_INFO,'<command>',"loglevel changed from $oldstr to $newstr");
realmmgr_sendresp(REALMCMD_RC_OKAY,"loglevel changed from \"$oldstr\" to \"$newstr\"");
$loglevel = $newlvl;
}
else
{
rolllog_log(LOG_ERR,'<command>',"unable to change loglevel to $newlvl");
realmmgr_sendresp(REALMCMD_RC_BADLEVEL,"invalid loglevel \"$newlvl\"");
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_logmsg()
#
# Purpose: Write a log message to the log file.
#
# The way we check for a valid log level is only good in a
# single-threaded environment.
#
sub cmd_logmsg
{
my $logstr = shift; # Log level and message.
my $loglvl; # Logging level.
my $logmsg; # Log message.
my $oldlvl; # Real logging level.
my $goodlvl; # Real version of new level.
rolllog_log(LOG_TMI,'<command>',"logmsg command received");
#
# Dig the log level and message out of our argument.
#
$logstr =~ /^\((\w+)\)(.*)$/;
$loglvl = $1;
$logmsg = $2;
#
# Check the validity of the caller's log level. If it's invalid,
# rolllog_level() will return a failure and we'll return.
#
$oldlvl = rolllog_level($loglvl,0);
if($oldlvl < 0)
{
rolllog_log(LOG_INFO,'<command>',"invalid loglevel ($loglvl) specified for logmsg command");
realmmgr_sendresp(REALMCMD_RC_BADLEVEL,"invalid loglevel \"$loglvl\"");
return;
}
#
# Reset the logging level and write the caller's message.
#
$goodlvl = rolllog_level($oldlvl,0);
rolllog_log($goodlvl,"<user msg>",$logmsg);
realmmgr_sendresp(REALMCMD_RC_OKAY,"message written to log");
}
#-----------------------------------------------------------------------------
# Routine: cmd_logtz()
#
# Purpose: Set the timezone for log messages' timestamps.
#
sub cmd_logtz
{
my $newtz = shift; # New logging timezone.
my $oldtz; # Current logging timezone.
rolllog_log(LOG_TMI,'<command>',"logtz command received");
#
# Set the new timezone for log messages. If it's invalid, we'll
# return a failure and then return.
#
$oldtz = rolllog_settz($newtz);
if($oldtz eq '')
{
rolllog_log(LOG_INFO,'<command>',"invalid timezone ($newtz) specified for logtz command");
realmmgr_sendresp(REALMCMD_RC_BADTZ,"invalid logtz \"$newtz\"");
return;
}
#
# Save the new logging timezone.
#
$logtz = $newtz;
#
# Let the user know all's well.
#
rolllog_log(LOG_INFO,"<command>","logging timezone set to $newtz");
realmmgr_sendresp(REALMCMD_RC_OKAY,"new logging timezone set");
}
#-----------------------------------------------------------------------------
# Routine: cmd_realmstatus()
#
sub cmd_realmstatus
{
my $data = shift; # Command data.
my $resp = ''; # Response data.
my $statcmd = 'rollctl -zonestatus'; # Rollover status cmd.
rolllog_log(LOG_TMI,'<command>',"realmstatus command received; data - \"$data\"");
#
# Build a response of the realms' status. statusses? statii? statuses.
#
foreach my $realm (sort(keys(%realms)))
{
my $state = $realms{$realm}{'state'};
my $ret; # Return code.
my $statresp; # Command response.
#
# Handle inactive zones.
#
if($inactives{$realm})
{
$resp .= "$realms{$realm}{'realm_name'}\tinactive\n";
next;
}
#
# Execute the command.
#
rolllog_log(LOG_TMI,'<command>',"sending realm $realm command $statcmd");
($ret, $statresp) = realm_system($realm,$statcmd);
#
# Send the zonestatus message to the caller.
#
if(($ret == -1) && ($statresp eq 'timeout'))
{
rolllog_log(LOG_TMI,'<command>',"\"$statcmd\" timed out");
$statresp = '(no data available)';
}
else
{
my @lines; # Response lines.
my $norms = 0; # Normal zones.
my $ksks = 0; # Zones in KSK rollover.
my $ksk6s = 0; # Zones in KSK 6 wait.
my $zsks = 0; # Zones in ZSK rollover.
rolllog_log(LOG_TMI,'<command>',"$statcmd returned - <$resp>");
#
# Figure out how many zones are in normal state,
# how many are in KSK rollover, how many are in
# KSK phase 6, and how many are in ZSK rollover.
#
@lines = split /\n/, $statresp;
foreach my $line (@lines)
{
my @atoms = (); # Pieces of line.
#
# Split the line into pieces.
#
$line =~ s/\s+/ /g;
@atoms = split / /, $line;
#
# Bump the appropriate count.
#
if($atoms[3] == 0)
{
$norms++;
}
elsif($atoms[3] == 6)
{
$ksk6s++;
}
elsif($atoms[2] eq 'KSK')
{
$ksks++;
}
elsif($atoms[2] eq 'ZSK')
{
$zsks++;
}
}
#
# Build the zone status piece.
#
$statresp = "$norms/$zsks/$ksks/$ksk6s";
chomp $statresp;
}
#
# Add this realm's data to the response buffer.
#
$resp .= "$realms{$realm}{'realm_name'}\tactive\t$statresp\n";
}
#
# Wiggle the response buffer a little.
#
$resp = 'no managed realms' if($resp eq '');
#
# Send the response to the user.
#
rolllog_log(LOG_TMI,'<command>',"realmstatus resp - <$resp>");
realmmgr_sendresp(REALMCMD_RC_OKAY,$resp);
}
#-----------------------------------------------------------------------------
# Routine: cmd_shutdown()
#
# Purpose: Shut down all the realms and ourself.
#
sub cmd_shutdown
{
my $data = shift; # Command data.
rolllog_log(LOG_TMI,'<command>',"shutdown command received");
realmmgr_sendresp(REALMCMD_RC_OKAY,"dtrealms shutting down");
halt_handler();
}
#-----------------------------------------------------------------------------
# Routine: cmd_startall()
#
# Purpose: Start all inactive realms.
#
sub cmd_startall
{
my $data = shift; # Data.
my $rc = REALMCMD_RC_OKAY; # Return code.
my $resp = ''; # Response message.
rolllog_log(LOG_TMI,'<command>',"startall command received");
#
# If there are inactive zones, we'll get 'em started.
# If there aren't any inactive zones, we'll give a message saying so.
#
if(keys(%inactives) > 0)
{
#
# Loop through the inactive-realm list, starting the realms
# as we go.
foreach my $realm (sort(keys(%inactives)))
{
my $ret = startrealm($realm);
#
# Save an appropriate response for each attempt.
#
if($ret == 0)
{
rolllog_log(LOG_INFO,'<command>',"realm $realm started");
$resp .= "$realm started\n";
}
else
{
rolllog_log(LOG_INFO,'<command>',"unable to start realm $realm");
$resp .= "$realm not started\n";
$rc = REALMCMD_RC_BADREALM;
}
}
chomp($resp);
}
else
{
rolllog_log(LOG_INFO,'<command>',"no inactive realms");
$resp = "no inactive realms";
$rc = REALMCMD_RC_NOREALMS;
}
#
# Send the response message with the appropriate return code.
#
realmmgr_sendresp($rc,$resp);
}
#-----------------------------------------------------------------------------
# Routine: cmd_startrealm()
#
# Purpose: Start the specified inactive realm.
#
sub cmd_startrealm
{
my $realm = shift; # Command realm.
my $ret; # Return code.
rolllog_log(LOG_TMI,'<command>',"startrealm command received; realm - \"realm\"");
#
# Start the realm.
#
$ret = startrealm($realm);
#
# Send an appropriate message.
#
if($ret == 0)
{
rolllog_log(LOG_INFO,'<command>',"realm $realm started");
realmmgr_sendresp(REALMCMD_RC_OKAY,"realm \"$realm\" started");
}
else
{
rolllog_log(LOG_INFO,'<command>',"unable to start realm $realm");
realmmgr_sendresp(REALMCMD_RC_BADREALM,"unable to start realm \"$realm\"");
}
}
#-----------------------------------------------------------------------------
# Routine: cmd_status()
#
# Purpose: Build a status response for dtrealms.
#
sub cmd_status
{
my $data = shift; # Command data.
my $resp = ''; # Response data.
my $active = 0; # Active-realms count.
my $inactive = 0; # Inactive-realms count.
rolllog_log(LOG_TMI,'<command>',"status command received");
#
# Get some realm counts.
#
$active = keys(%actives);
$inactive = keys(%inactives);
#
# Build the response.
#
$resp .= "$NAME parameters:\n";
$resp .= " realm file \"$realmfile\"\n";
$resp .= " directory \"$directory\"\n";
$resp .= " config file \"$dtconfig\"\n";
$resp .= " logfile \"$logfile\"\n";
$resp .= " loglevel \"$loglevel\"\n";
$resp .= " logtz \"$logtz\"\n";
$resp .= " running as \"$username\"\n";
$resp .= " active realms $active\n";
$resp .= " inactive realms $inactive\n";
#
# Send the response to the user.
#
realmmgr_sendresp(REALMCMD_RC_OKAY,$resp);
}
#-----------------------------------------------------------------------------
# Routine: cmd_stopall()
#
# Purpose: Stop all active realms.
#
sub cmd_stopall
{
my $data = shift; # Data.
my $rc = REALMCMD_RC_OKAY; # Return code.
my $resp = ''; # Response message.
rolllog_log(LOG_TMI,'<command>',"stopall command received");
#
# If there are active zones, we'll stop their execution.
# If there aren't any active zones, we'll give a message saying so.
#
if(keys(%actives) > 0)
{
#
# Go through the active-realms list, stopping each realm
# we come to.
#
foreach my $realm (sort(keys(%actives)))
{
my $ret; # Return code.
#
# Stop the realm.
#
$ret = stoprealm($realm);
#
# Build the response based on whether or not the
# realm stopped.
#
if($ret == 0)
{
rolllog_log(LOG_INFO,'<command>',"realm $realm stopped");
$resp .= "$realm stopped\n";
}
else
{
rolllog_log(LOG_INFO,'<command>',"unable to stop realm $realm");
$resp .= "$realm not stopped\n";
$rc = REALMCMD_RC_BADREALM;
}
}
chomp($resp);
}
else
{
rolllog_log(LOG_INFO,'<command>',"no active realms");
$resp = "no active realms";
$rc = REALMCMD_RC_NOREALMS;
}
#
# Send the response message with the appropriate return code.
#
realmmgr_sendresp($rc,$resp);
}
#-----------------------------------------------------------------------------
# Routine: cmd_stoprealm()
#
# Purpose: Stop the specified realm.
#
sub cmd_stoprealm
{
my $realm = shift; # Realm to stop.
my $ret; # Return code from stop.
rolllog_log(LOG_TMI,'<command>',"stoprealm command received; realm - \"$realm\"");
#
# Stop the realm.
#
$ret = stoprealm($realm);
#
# Send an appropriate message to the caller.
#
if($ret == 0)
{
rolllog_log(LOG_INFO,'<command>',"realm $realm stopped");
realmmgr_sendresp(REALMCMD_RC_OKAY,"realm \"$realm\" stopped");
}
else
{
rolllog_log(LOG_INFO,'<command>',"unable to stop realm $realm");
realmmgr_sendresp(REALMCMD_RC_BADREALM,"unable to stop realm \"$realm\"");
}
}
#-----------------------------------------------------------------------------
# Routine: displayer()
#
# Purpose: Start or stop the display program.
#
sub displayer
{
#
# Set the global display flag to an argument -- iff we got one.
#
if(@_ == 1)
{
$display = shift;
}
#
# Turn on or off the graphical display, depending on the display flag.
#
if($display)
{
rolllog_log(LOG_INFO,'','starting grandvizier');
open(DISPLAY, "|grandvizier $realmfile");
}
else
{
rolllog_log(LOG_INFO,'','stopping grandvizier');
display('halt dtrealms 1');
close(DISPLAY);
}
}
#-----------------------------------------------------------------------------
# Routine: display()
#
# Purpose: Send a message to the display program.
#
sub display
{
my $dmsg = shift; # Message to send.
my $savedsel; # Saved descriptor.
my $ret; # Retcode from print.
#
# Don't try anything if we aren't connected to a display program.
#
# return if(!$display);
return if(fileno(DISPLAY) == -1);
#
# Force this message to be unbuffered.
#
$savedsel = select(DISPLAY);
$| = 1;
$ret = print DISPLAY "$dmsg\n";
select($savedsel);
if(!$ret)
{
rolllog_log(LOG_INFO,'<command>','unable to send message to grandvizier; turning off display');
$display = 0;
}
}
#-----------------------------------------------------------------------------
# Routine: startrealm()
#
# Purpose: Start a realm executing. The realm is checked for validity
# and that it isn't already active. The command line is built
# and then it's started running as its own process. It is
# then marked as active and moved from the inactive realms
# list to the active realms list.
#
sub startrealm
{
my $realm = shift; # Realm to start.
my $rcmd; # Realm's command.
my $rrf; # Realm's rollrec file.
my $args; # Arguments.
#
# Make sure this is a valid realm.
#
if(! defined($realms{$realm}))
{
rolllog_log(LOG_ERR,$realm,"attempt to start undefined realm");
return(1);
}
#
# Make sure we aren't starting an active realm.
#
if($actives{$realm})
{
rolllog_log(LOG_ERR,$realm,"realm already active");
return(2);
}
#
# Make sure we aren't starting an active realm.
#
if(! validrealm($realm))
{
rolllog_log(LOG_ERR,$realm,"invalid realm definition");
return(3);
}
#
# Get the realm's rollrec file. If it isn't an absolute
# path, we'll prepend the realm's directory.
#
$rrf = $realms{$realm}->{'rollrec'};
if($rrf !~ /^\//)
{
my $rdir = $realms{$realm}{'realmdir'} || '.';
$rrf = "$rdir/$realms{$realm}->{'rollrec'}";
}
#
# Get the arguments for the manager.
#
$args = "$realms{$realm}->{'args'}";
#
# Get the manager and build the command.
#
$rcmd = $realms{$realm}{'manager'} || 'rollerd';
$rcmd .= " -realm $realm -foreground $args -rrf $rrf";
#
# Start the realm off and running.
#
rolllog_log(LOG_INFO,$realm,"starting realm \"$rcmd\"");
realm_exec($realm,$rcmd);
#
# Move the realm to our table of active children.
#
changestate($realm,'active');
#
# Move the realm from the inactive list to the active list.
#
delete $inactives{$realm};
$actives{$realm}++;
#
# Return success.
#
return(0);
}
#-----------------------------------------------------------------------------
# Routine: stoprealm()
#
# Purpose: Stop a realm from executing. The realm is verified to be
# both valid and an active realm. Then the "rollctl -halt"
# command is executed within the realm. If the realm does
# not obey the halt command, after a brief wait, then we'll
# get increasingly more insistent about it shutting down.
# The realm will be marked as inactive and then it will be
# moved from the active-realms list to the inactive list.
#
sub stoprealm
{
my $realm = shift; # Realm to stop.
my $rpid; # Realm's procid.
rolllog_log(LOG_TMI,$realm," stopping");
#
# Make sure we aren't stopping a stopped realm.
#
if($inactives{$realm})
{
rolllog_log(LOG_ERR,$realm,"realm already stopped");
return(1);
}
#
# Return an error if no realm was specified.
#
if($realm eq '')
{
rolllog_log(LOG_ERR,'<command>',"no realm specified");
return(2);
}
#
# Return an error if no realm was specified.
#
if(! defined($realms{$realm}))
{
rolllog_log(LOG_ERR,'<command>',"invalid realm specified");
return(3);
}
#
# Return an error if the realm isn't running.
#
if(! running($realm))
{
rolllog_log(LOG_ERR,'<command>',"realm $realm not currently active");
return(4);
}
#
# Get the realm's process id.
#
$rpid = $children{$realm};
#
# Try a few times to get the realm to halt itself.
#
for(my $ind = 1; $ind <= $MAXTRIES; $ind++)
{
rolllog_log(LOG_ERR,'<command>',"\"stop $realm\" attempt $ind/$MAXTRIES");
realm_system($realm,"rollctl -halt");
waitpid($rpid, WNOHANG);
last if(! running($realm));
sleep(3);
}
#
# Get forceful if the realm is ignoring us.
#
if(running($realm))
{
foreach my $sig (2, 9)
{
rolllog_log(LOG_ERR,'<command>',"realm $realm still active, sending signal $sig");
kill $sig, $rpid;
last if(! running($realm));
sleep(3);
}
#
# Check once more; return an error if somehow it's survived.
#
if(running($realm))
{
rolllog_log(LOG_ERR,'<command>',"realm $realm must be a super-realm; giving up");
return(5);
}
}
#
# Remove the realm from our table of active children.
#
# delete($children{$realm});
#
# Remove the realm from our table of active children.
#
changestate($realm,'inactive');
#
# Move the realm from the active list to the inactive list.
#
delete $actives{$realm};
$inactives{$realm} = 1;
return(0);
}
#-----------------------------------------------------------------------------
# Routine: changestate()
#
# Purpose: Changes a realm's state in the realms file.
#
sub changestate
{
my $realm = shift; # Realm to change.
my $state = shift; # Realm's new state.
#
# Don't fool with anything if the realm is already in the
# requested state.
#
return if(realm_recval($realm,'state') eq $state);
#
# Reset the realm's state in the realms file.
#
realm_close();
realm_lock();
realm_read($realmfile);
realm_setval($realm,'state',$state);
realm_write();
realm_unlock();
buildrealms(0);
}
#-----------------------------------------------------------------------------
# Routine: validrealm()
#
# Purpose: Check if the specified realm has a valid definition.
# The following conditions are checked:
#
# - the state is either "active" or "inactive"
# - the config directory is a writable, searchable
# directory
# - the state directory is a writable, searchable
# directory. If this is not defined, the config
# directory will be used.
# - the realm directory is a writable, searchable
# directory
# - the rollrec file is a writable regular file
# - if the user is defined, it is a valid user
#
#
sub validrealm
{
my $realm = shift; # Realm to check.
my $errs = 0; # Error count.
my $rr; # Reference to realm data.
my $state; # Realm state.
my $cdir; # Config directory.
my $sdir; # Realm directory.
my $rdir; # Realm directory.
my $rollrec; # Realm's rollrec.
my $user; # Realm's execution user.
my $errstr; # Error phrase.
#
# Do a couple very quick error tests.
#
return(0) if(($realm eq '') || (! realm_exists($realm)));
#
# Get the realm record and set a few time-saving fields.
#
$rr = realm_fullrec($realm);
$state = $rr->{'state'};
$cdir = $rr->{'configdir'};
$sdir = $rr->{'statedir'};
$rdir = $rr->{'realmdir'};
$rollrec = $rr->{'rollrec'};
$rollrec = "$rdir/$rollrec" if($rollrec !~ /^\//);
$user = $rr->{'user'};
#
# Ensure the state is valid.
#
if(($state ne 'active') && ($state ne 'inactive'))
{
rolllog_log(LOG_TMI,$realm,"invalid state - \"$state\"\n");
$errs++;
}
#
# Ensure the configuration directory is valid.
#
if(!defined($cdir))
{
rolllog_log(LOG_TMI,$realm,"no config directory given\n");
$errs++;
}
else
{
if(! -d $cdir && ! -x $cdir && ! -w $cdir)
{
rolllog_log(LOG_TMI,$realm,"invalid config directory - \"$cdir\"\n");
$errs++;
}
}
#
# Ensure the state directory is valid. If a state directory wasn't
# defined, we'll use the configuration directory.
#
if(!defined($sdir))
{
$sdir = $cdir;
}
else
{
if(! -d $sdir && ! -x $sdir && ! -w $sdir)
{
rolllog_log(LOG_TMI,$realm,"invalid state directory - \"$sdir\"\n");
$errs++;
}
}
#
# Ensure the realm directory is valid.
#
if(!defined($rdir))
{
rolllog_log(LOG_TMI,$realm,"no realm directory given\n");
$errs++;
}
else
{
if(! -d $cdir && ! -x $cdir && ! -w $cdir)
{
rolllog_log(LOG_TMI,$realm,"invalid realm directory - \"$cdir\"\n");
$errs++;
}
}
#
# Ensure the realm's rollrec is valid.
#
if(!defined($rr->{'rollrec'}))
{
rolllog_log(LOG_TMI,$realm,"no rollrec given\n");
$errs++;
}
else
{
if(! -f $rollrec && ! -w $rollrec)
{
rolllog_log(LOG_TMI,$realm,"invalid rollrec - \"$cdir\"\n");
$errs++;
}
}
#
# Ensure the realm's user is valid.
#
if(defined($user))
{
if(getpwnam($user) == 0)
{
rolllog_log(LOG_TMI,$realm,"invalid user - \"$user\"\n");
$errs++;
}
}
#
# And now for the grand conclusion...
#
if($errs == 0)
{
rolllog_log(LOG_INFO,$realm,"realm definition is valid\n");
return(1);
}
$errstr = ($errs == 1) ? "1 error found" : "$errs errors found";
rolllog_log(LOG_INFO,$realm,"realm definition is invalid; $errstr\n");
return(0);
}
#-----------------------------------------------------------------------------
# Routine: running()
#
# Purpose: Check if the specified realm is running. If the realm is
# running, return 1. If the realm isn't running, return 0.
#
# Two error conditions will also give a return of 0: a realm
# wasn't specified or the realm isn't in the child-pid table.
#
sub running
{
my $realm = shift; # Realm to check.
my $rstat; # Running status.
return(0) if(($realm eq '') || (! defined($children{$realm})));
$rstat = kill 0, $children{$realm};
return($rstat);
}
#-----------------------------------------------------------------------------
# Routine: intcmd_handler()
#
# Purpose: Handle an interrupt and get a command.
#
sub intcmd_handler
{
rolllog_log(LOG_TMI,'<command>',"realms manager: got a command interrupt\n");
commander();
}
#------------------------------------------------------------------------
# Routine: halt_handler()
#
# Purpose: Deal with a halt command. Stop the realms GUI, stop the
# realms, zap our pid file, and finally exit.
#
sub halt_handler
{
rolllog_log(LOG_PHASE,"dtrealms","shutting down child realms");
#
# Turn off our GUI program.
#
display('halt dtrealms 0');
#
# Try for a polite shutdown of the realms.
#
foreach my $realm (sort(keys(%children)))
{
rolllog_log(LOG_INFO,$realm," halting");
realm_system($realm,"rollctl -halt");
}
sleep(3);
#
# Be more persuasive, in case the realms are ignoring us.
#
foreach my $realm (sort(keys(%children)))
{
kill 2, $children{$realm};
}
#
# Clean up our pid file.
#
realmmgr_rmid();
exit(0);
}
#-----------------------------------------------------------------------------
# Routine: timeout_command()
#
# Purpose: Log a message when we hit a user-requested command timeout.
#
sub timeout_command
{
rolllog_log(LOG_INFO,'<command>',"user-requested command timed out");
}
#----------------------------------------------------------------------
# Routine: version()
#
# Purpose: Print the version number(s) and exit.
#
sub version
{
print STDERR "$VERS\n";
print STDERR "$DTVERS\n";
exit(0);
}
#------------------------------------------------------------------------
# Routine: usage()
#
sub usage
{
print "usage: $NAME [options] realm-file\n";
print "\toptions:\n";
print STDERR "\t\t-directory\n";
print STDERR "\t\t-display\n";
print STDERR "\t\t-foreground\n";
print STDERR "\t\t-logfile\n";
print STDERR "\t\t-loglevel\n";
print STDERR "\t\t-logtz\n";
print STDERR "\t\t-Version\n";
print STDERR "\t\t-help\n";
exit(1);
}
#----------------------------------------------------------------------
# Routine: dumprealms()
#
# Purpose: Dump the realms info to a file. This is a debugging routine.
#
sub dumprealms
{
open(DUMP,">/tmp/z");
print DUMP "\nrealms:\n";
foreach my $realm (@realms)
{
my $rr = realm_fullrec($realm);
my %rr = %$rr;
print DUMP "\trealm <$realm>\n";
foreach my $k (sort(keys(%rr)))
{
print DUMP "\t\t$k -\t<$rr{$k}>\n";
}
print DUMP "\n";
}
}
##############################################################################
#
=pod
=head1 NAME
dtrealms - Displays defaults defined for DNSSEC-Tools
=head1 SYNOPSIS
dtrealms [options] <realm-file>
=head1 DESCRIPTION
B<dtrealms> manages multiple distinct DNSSEC-Tools rollover environments
running simultaneously. Each rollover environment, called a B<realm>, is
defined in a B<realms> file. B<dtrealms> uses this file to determine how the
rollover environment must be initialized such that it can run independently of
the other rollover environments on a particular system. This is useful for
such things as managing very large collections of zones, segregating customer
zones, and software tests.
The B<realms> file may be created with B<realminit>. Currently, the distinct
environment for each realm must be created manually. It is hoped that a tool
will soon be available to assist with creating each realm's environment.
B<dtrealms> isn't necessary for running multiple realms. However, it does
make it easier to manage multiple realms running consecutively.
=head1 REALM SETUP
A realm is primarily defined by its entry in a B<realms> file. Four fields
in particular describe where the realm's files are located and how it runs.
These are the realm's configuration directory, state directory, realm
directory, and B<rollrec> file. These directories are used to set the
B<DT_STATEDIR> and B<DT_SYSCONFDIR> environment variables, and the B<rollrec>
file defines which zones are managed by the realm's rollover manager.
I<https://www.dnssec-tools.org/wiki/index.php/Rollover_Realms:_Multiple,_Simultaneous,_Independent_Rollover_Environments> has more information on creating
realms.
=over 4
=item B<configdir>
The B<configdir> field of the B<realms> file contains the name of the realm's
configuration directory. This file gives command paths and configuration
values for running the DNSSEC-Tools. The DNSSEC-Tools modules expects this
directory hierarchy to contain a B<dnssec-tools> subdirectory, and a
B<dnssec-tools.conf> file within that subdirectory. The path fields in the
configuration file point to various things, such as commands and key archives.
It is recommended that these paths only point within the B<configdir>
hierarchy, other than for system utilities.
The B<DT_SYSCONFDIR> environment variable is set to the B<configdir> field.
This will tell the DNSSEC-Tools programs and modules where to find their
required data.
=item B<statedir>
The B<statedir> field of the B<realms> file contains the name of the realm's
state directory. This directory contains such files as the B<rollrec> lock
file and the B<rollerd> communications socket. If a realm definition does not
contain a B<statedir> field, then that realm will use the B<configdir> field
as its B<statedir> field.
The B<DT_STATEDIR> environment variable is set to the B<statedir> field. This
will tell the DNSSEC-Tools programs and modules where to find these files.
=item B<realmdir>
The B<realmdir> field of the B<realms> file contains the name of the directory
in which the realm executes. This is where the realm's zone, key, and other
files are located.
=item B<rollrec>
The B<rollrec> field of the B<realms> file is the name of the file that
controls zone rollover. This file points to the various B<keyrec> files that
define the locations of the zone files and their associated key files. A
realm's B<rollrec> file can locate these files anywhere on the system, but it
is I<strongly> recommended that they all remain within the realm's B<realmdir>
hierarchy.
=back
While the DNSSEC-Tools programs will work fine if a realm's configuration,
state, and realm directories are actually one directory, it is recommended
that at the least the B<realmdir> files be separated from the B<configdir>
and B<statedir> files.
It is further recommended that the files for the various realms be segregated
from each other.
=head1 OPTIONS
The following options are handled by B<dtrealms>.
=over 4
=item B<-directory>
Directory in which B<dtrealms> will be executed. Any relative paths given
in realms configuration files will use this directory as their base.
=item B<-display>
Start the B<grandvizier> display program to give a graphical indication of
realm status.
=item B<-foreground>
Run B<dtrealms> in the foreground instead of as a daemon.
=item B<-logfile>
Logging file to use.
=item B<-loglevel>
Logging level to use when writing to the log file. See B<rolllog(3)> for
more details.
=item B<-logtz>
Time zone to use with the log file. This must be either "gmt" or "local".
=item B<-Version>
Displays the version information for B<dtrealms> and the DNSSEC-Tools package.
=item B<-help>
Displays a help message and exits.
=back
=head1 WARNING
This is an early prototype. Consider it to be beta quality.
=head1 COPYRIGHT
Copyright 2011-2012 SPARTA, Inc. All rights reserved.
See the COPYING file included with the DNSSEC-Tools package for details.
=head1 AUTHOR
Wayne Morrison, tewok@tislabs.com
=head1 SEE ALSO
B<grandvizier(8)>,
B<lsrealm(8)>,
B<realminit(8)>,
B<realmset(8)>
B<Net::DNS::SEC::Tools::realm.pm(3)>,
B<Net::DNS::SEC::Tools::realmmgr.pm(3)>,
B<Net::DNS::SEC::Tools::rolllog.pm(3)>
=cut
|