1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684
|
#!/usr/bin/perl
#
# Copyright (c) 2011-2017 FastMail Pty Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# 3. The name "Fastmail Pty Ltd" must not be used to
# endorse or promote products derived from this software without
# prior written permission. For permission or any legal
# details, please contact
# FastMail Pty Ltd
# PO Box 234
# Collins St West 8007
# Victoria
# Australia
#
# 4. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by Fastmail Pty. Ltd."
#
# FASTMAIL PTY LTD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL OPERA SOFTWARE AUSTRALIA BE LIABLE FOR ANY SPECIAL, INDIRECT
# OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
# OF THIS SOFTWARE.
#
package Cassandane::Instance;
use strict;
use warnings;
use Config;
use Data::Dumper;
use Errno qw(ENOENT);
use File::Copy;
use File::Path qw(mkpath rmtree);
use File::Find qw(find);
use File::Basename;
use File::stat;
use JSON;
use POSIX qw(geteuid :signal_h :sys_wait_h :errno_h);
use DateTime;
use BSD::Resource;
use Cwd qw(abs_path getcwd);
use AnyEvent;
use AnyEvent::Handle;
use AnyEvent::Socket;
use AnyEvent::Util;
use JSON;
use HTTP::Daemon;
use DBI;
use Time::HiRes qw(usleep);
use List::Util qw(uniqstr);
use lib '.';
use Cassandane::Util::DateTime qw(to_iso8601);
use Cassandane::Util::Log;
use Cassandane::Util::Wait;
use Cassandane::Mboxname;
use Cassandane::Config;
use Cassandane::Service;
use Cassandane::ServiceFactory;
use Cassandane::GenericDaemon;
use Cassandane::MasterStart;
use Cassandane::MasterEvent;
use Cassandane::Cassini;
use Cassandane::PortManager;
use Cassandane::Net::SMTPServer;
use Cassandane::BuildInfo;
use lib '../perl/imap';
require Cyrus::DList;
my $__cached_rootdir;
my $stamp;
my $next_unique = 1;
sub new
{
my $class = shift;
my %params = @_;
my $cassini = Cassandane::Cassini->instance();
my $self = {
name => undef,
buildinfo => undef,
basedir => undef,
installation => 'default',
cyrus_prefix => undef,
cyrus_destdir => undef,
config => Cassandane::Config->default()->clone(),
starts => [],
services => {},
events => [],
generic_daemons => {},
re_use_dir => 0,
setup_mailbox => 1,
persistent => 0,
authdaemon => 1,
_children => {},
_stopped => 0,
description => 'unknown',
_shutdowncallbacks => [],
_started => 0,
_pwcheck => $cassini->val('cassandane', 'pwcheck', 'alwaystrue'),
install_certificates => 0,
_pid => $$,
};
$self->{name} = $params{name}
if defined $params{name};
$self->{basedir} = $params{basedir}
if defined $params{basedir};
$self->{installation} = $params{installation}
if defined $params{installation};
$self->{cyrus_prefix} = $cassini->val("cyrus $self->{installation}",
'prefix', '/usr/cyrus');
$self->{cyrus_prefix} = $params{cyrus_prefix}
if defined $params{cyrus_prefix};
$self->{cyrus_destdir} = $cassini->val("cyrus $self->{installation}",
'destdir', '');
$self->{cyrus_destdir} = $params{cyrus_destdir}
if defined $params{cyrus_destdir};
$self->{config} = $params{config}->clone()
if defined $params{config};
$self->{re_use_dir} = $params{re_use_dir}
if defined $params{re_use_dir};
$self->{setup_mailbox} = $params{setup_mailbox}
if defined $params{setup_mailbox};
$self->{persistent} = $params{persistent}
if defined $params{persistent};
$self->{authdaemon} = $params{authdaemon}
if defined $params{authdaemon};
$self->{description} = $params{description}
if defined $params{description};
$self->{pwcheck} = $params{pwcheck}
if defined $params{pwcheck};
$self->{install_certificates} = $params{install_certificates}
if defined $params{install_certificates};
# XXX - get testcase name from caller, to apply even finer
# configuration from cassini ?
return bless $self, $class;
}
# Class method! Need to be able to interrogate the Cyrus version
# being tested without actually instantiating a Cassandane::Instance.
# This also means we have to do a few things here the direct way,
# rather than using helper methods...
my %cached_version = ();
my %cached_sversion = ();
sub get_version
{
my ($class, $installation) = @_;
$installation = 'default' if not defined $installation;
if (exists $cached_version{$installation}) {
return @{$cached_version{$installation}} if wantarray;
return $cached_sversion{$installation};
}
my $cassini = Cassandane::Cassini->instance();
# Need to check the named-installation directory AND the
# default installation directory, before falling back to the
# default-default
# Usually Cassandane::Cyrus::TestCase only initialises an Instance
# object with a non-default installation if that installation actually
# exists, but this is a class method, not an object method, so we
# don't have that protection and have to DIY.
my ($cyrus_prefix, $cyrus_destdir, $cyrus_master);
INSTALLATION: foreach my $i (uniqstr($installation, 'default')) {
$cyrus_prefix = $cassini->val("cyrus $i", 'prefix',
$i eq 'default' ? '/usr/cyrus' : undef);
# no prefix? non-default installation isn't configured, skip it
next INSTALLATION if not defined $cyrus_prefix;
$cyrus_destdir = $cassini->val("cyrus $i", 'destdir', q{});
foreach my $d (qw( bin sbin libexec libexec/cyrus-imapd lib cyrus/bin ))
{
my $try = "$cyrus_destdir$cyrus_prefix/$d/master";
if (-x $try) {
$cyrus_master = $try;
last INSTALLATION;
}
}
}
die "unable to locate master binary" if not defined $cyrus_master;
my $version;
{
open my $fh, '-|', "$cyrus_master -V"
or die "unable to execute '$cyrus_master -V': $!";
local $/;
$version = <$fh>;
close $fh;
}
if (not $version) {
# Cyrus version might be too old for 'master -V'
# Try to squirrel a version out of libcyrus pkgconfig file
open my $fh, '<', "$cyrus_destdir$cyrus_prefix/lib/pkgconfig/libcyrus.pc";
while (<$fh>) {
$version = $_ if m/^Version:/;
}
close $fh;
}
#cyrus-imapd 3.0.0-beta3-114-g5fa1dbc-dirty
if ($version =~ m/^cyrus-imapd (\d+)\.(\d+).(\d+)(?:-(.*))?$/) {
my ($maj, $min, $rev, $extra) = ($1, $2, $3, $4);
my $pluscommits = 0;
if (defined $extra && $extra =~ m/(\d+)-g[a-fA-F0-9]+(?:-dirty)?$/) {
$pluscommits = $1;
}
$cached_version{$installation} = [ 0 + $maj,
0 + $min,
0 + $rev,
0 + $pluscommits,
$extra ];
}
elsif ($version =~ m/^Version: (\d+)\.(\d+).(\d+)(?:-(.*))?$/) {
my ($maj, $min, $rev, $extra) = ($1, $2, $3, $4);
my $pluscommits;
if ($extra =~ m/(\d+)-g[a-fA-F0-9]+(?:-dirty)?$/) {
$pluscommits = $1;
}
$cached_version{$installation} = [ 0 + $maj,
0 + $min,
0 + $rev,
0 + $pluscommits,
$extra ];
}
else {
$cached_version{$installation} = [0, 0, 0, 0, q{}];
}
$cached_sversion{$installation} = join q{.},
@{$cached_version{$installation}}[0..2];
$cached_sversion{$installation} .= "-$cached_version{$installation}->[4]"
if $cached_version{$installation}->[4];
return @{$cached_version{$installation}} if wantarray;
return $cached_sversion{$installation};
}
sub _rootdir
{
if (!defined $__cached_rootdir)
{
my $cassini = Cassandane::Cassini->instance();
$__cached_rootdir =
$cassini->val('cassandane', 'rootdir', '/var/tmp/cass');
}
return $__cached_rootdir;
}
sub _make_instance_info
{
my ($name, $basedir) = @_;
die "Need either a name or a basename"
if !defined $name && !defined $basedir;
$name ||= basename($basedir);
$basedir ||= _rootdir() . '/' . $name;
my $sb = stat($basedir);
die "Cannot stat $basedir: $!" if !defined $sb && $! != ENOENT;
return {
name => $name,
basedir => $basedir,
ctime => ($sb ? $sb->ctime : undef),
};
}
sub _make_unique_instance_info
{
# This must be kept in sync with cleanup_leftovers, which expects
# to be able to recognise instance directories by name for cleanup.
if (!defined $stamp)
{
$stamp = to_iso8601(DateTime->now);
$stamp =~ s/.*T(\d+)Z/$1/;
my $workerid = $ENV{TEST_UNIT_WORKER_ID};
die "Invalid TEST_UNIT_WORKER_ID - code not run in Worker context"
if (defined($workerid) && $workerid eq 'invalid');
$stamp .= sprintf("%02X", $workerid) if defined $workerid;
}
my $rootdir = _rootdir();
my $name;
my $basedir;
for (;;)
{
$name = sprintf("%s%02X", $stamp, $next_unique);
$next_unique++;
$basedir = "$rootdir/$name";
last if mkdir($basedir);
die "Cannot create $basedir: $!" if ($! != EEXIST);
}
return _make_instance_info($name, $basedir);
}
sub list
{
my $rootdir = _rootdir();
opendir ROOT, $rootdir
or die "Cannot open $rootdir for reading: $!";
my @instances;
while ($_ = readdir(ROOT))
{
next unless m/^[0-9]+[A-Z]?$/;
push(@instances, _make_instance_info($_));
}
closedir ROOT;
return @instances;
}
sub exists
{
my ($name) = @_;
return if ( ! -d _rootdir() . '/' . $name );
return _make_instance_info($name);
}
sub _init_basedir_and_name
{
my ($self) = @_;
my $info;
my $which = (defined $self->{name} ? 1 : 0) |
(defined $self->{basedir} ? 2 : 0);
if ($which == 0)
{
# have neither name nor basedir
# usual first time case for test instances
$info = _make_unique_instance_info();
}
else
{
# have name but not basedir
# usual first time case for start-instance.pl
# or basedir but not name, which doesn't happen
$info = _make_instance_info($self->{name}, $self->{basedir});
}
$self->{name} = $info->{name};
$self->{basedir} = $info->{basedir};
}
sub get_basedir
{
my ($self) = @_;
return $self->{basedir} if $self->{basedir};
$self->_init_basedir_and_name();
return $self->{basedir};
}
# Remove on-disk traces of any previous instances
sub cleanup_leftovers
{
my $rootdir = _rootdir();
return if (!-d $rootdir);
opendir ROOT, $rootdir
or die "Cannot open directory $rootdir for reading: $!";
my @dirs;
while (my $e = readdir(ROOT))
{
# This must be kept in sync with _make_unique_instance_info,
# which is what names and creates these directories.
my $basedirpat = qr{
\d{6} # UTC timestamp as HHMMSS
(?:[0-9A-F]{2,})? # optional worker ID as 2+ hex digits
[0-9A-F]{2,} # unique number as 2+ hex digits
}ax;
push(@dirs, $e) if $e =~ m/$basedirpat/;
}
closedir ROOT;
map
{
if (get_verbose) {
xlog "Cleaning up old basedir $rootdir/$_";
}
rmtree "$rootdir/$_";
} @dirs;
}
sub add_service
{
my ($self, %params) = @_;
my $name = $params{name};
die "Missing parameter 'name'"
unless defined $name;
die "Already have a service named \"$name\""
if defined $self->{services}->{$name};
# Add a hardcoded recover START if we're doing an actual IMAP test.
if ($name =~ m/imap/)
{
if (!grep { $_->{name} eq 'recover'; } @{$self->{starts}})
{
$self->add_start(name => 'recover',
argv => [ qw(ctl_cyrusdb -r) ]);
}
}
my $srv = Cassandane::ServiceFactory->create(%params);
$self->{services}->{$name} = $srv;
$srv->set_config($self->{config});
return $srv;
}
sub add_services
{
my ($self, @names) = @_;
map { $self->add_service(name => $_); } @names;
}
sub get_service
{
my ($self, $name) = @_;
return $self->{services}->{$name};
}
sub remove_service
{
my ($self, $name) = @_;
delete $self->{services}->{$name};
}
sub add_start
{
my ($self, %params) = @_;
push(@{$self->{starts}}, Cassandane::MasterStart->new(%params));
}
sub add_event
{
my ($self, %params) = @_;
push(@{$self->{events}}, Cassandane::MasterEvent->new(%params));
}
sub add_generic_daemon
{
my ($self, %params) = @_;
my $name = delete $params{name};
die "Missing parameter 'name'"
unless defined $name;
die "Already have a generic daemon named \"$name\""
if defined $self->{generic_daemons}->{$name};
my $daemon = Cassandane::GenericDaemon->new(
name => $name,
config => $self->{config},
%params
);
$self->{generic_daemons}->{$name} = $daemon;
return $daemon;
}
sub set_config
{
my ($self, $conf) = @_;
$self->{config} = $conf;
map { $_->set_config($conf); } (values %{$self->{services}},
values %{$self->{generic_daemons}});
}
sub _find_binary
{
my ($self, $name) = @_;
my $cassini = Cassandane::Cassini->instance();
my $name_override = $cassini->val("cyrus $self->{installation}", $name);
$name = $name_override if defined $name_override;
return $name if $name =~ m/^\//;
my $base = $self->{cyrus_destdir} . $self->{cyrus_prefix};
if ($name eq 'delve') {
my $lib = `ldd $base/libexec/imapd` || die "can't ldd imapd";
$lib =~ m{(/\S+)/lib/libxapian-([0-9.]+)\.so};
return "$1/bin/xapian-delve-$2";
}
foreach (qw( bin sbin libexec libexec/cyrus-imapd lib cyrus/bin ))
{
my $dir = "$base/$_";
if (opendir my $dh, $dir)
{
if (grep { $_ eq $name } readdir $dh) {
xlog "Found binary $name in $dir";
closedir $dh;
return "$dir/$name";
}
closedir $dh;
}
else
{
xlog "Couldn't opendir $dir: $!" if $! != ENOENT;
next;
}
}
die "Couldn't locate $name under $base";
}
sub _binary
{
my ($self, $name) = @_;
my @cmd;
my $valground = 0;
my $cassini = Cassandane::Cassini->instance();
if ($cassini->bool_val('valgrind', 'enabled') &&
!($name =~ m/delve$/) &&
!($name =~ m/\.pl$/) &&
!($name =~ m/^\//))
{
my $arguments = '-q --tool=memcheck --leak-check=full --run-libc-freeres=no';
my $valgrind_logdir = $self->{basedir} . '/vglogs';
my $valgrind_suppressions =
abs_path($cassini->val('valgrind', 'suppression', 'vg.supp'));
mkpath $valgrind_logdir
unless ( -d $valgrind_logdir );
push(@cmd,
$cassini->val('valgrind', 'binary', '/usr/bin/valgrind'),
"--log-file=$valgrind_logdir/$name.%p",
"--suppressions=$valgrind_suppressions",
"--gen-suppressions=all",
split(/\s+/, $cassini->val('valgrind', 'arguments', $arguments))
);
$valground = 1;
}
my $bin = $self->_find_binary($name);
push(@cmd, $bin);
if (!$valground && $cassini->bool_val('gdb', $name))
{
xlog "Will run binary $name under gdb due to cassandane.ini";
xlog "Look in syslog for helpful instructions from gdbtramp";
push(@cmd, '-D');
}
return @cmd;
}
sub _imapd_conf
{
my ($self) = @_;
return $self->{basedir} . '/conf/imapd.conf';
}
sub _master_conf
{
my ($self) = @_;
return $self->{basedir} . '/conf/cyrus.conf';
}
sub _pid_file
{
my ($self, $name) = @_;
$name ||= 'master';
return $self->{basedir} . "/run/$name.pid";
}
sub _list_pid_files
{
my ($self) = @_;
my $rundir = $self->{basedir} . "/run";
if (!opendir(RUNDIR, $rundir)) {
return if $!{ENOENT}; # no run dir? never started
die "Cannot open run directory $rundir: $!";
}
my @pidfiles;
while ($_ = readdir(RUNDIR))
{
my ($name) = m/^([^.].*)\.pid$/;
push(@pidfiles, $name) if defined $name;
}
closedir(RUNDIR);
@pidfiles = sort { $a cmp $b } @pidfiles;
@pidfiles = ( 'master', grep { $_ ne 'master' } @pidfiles );
return @pidfiles;
}
sub _build_skeleton
{
my ($self) = @_;
my @subdirs =
(
'conf',
'conf/certs',
'conf/cores',
'conf/db',
'conf/sieve',
'conf/socket',
'conf/proc',
'conf/log',
'conf/log/admin',
'conf/log/cassandane',
'conf/log/user2',
'conf/log/foo',
'conf/log/mailproxy',
'conf/log/mupduser',
'conf/log/postman',
'conf/log/repluser',
'conf/log/smtpclient.sendmail',
'conf/log/smtpclient.host',
'lock',
'data',
'meta',
'run',
'tmp',
);
foreach my $sd (@subdirs)
{
my $d = $self->{basedir} . '/' . $sd;
mkpath $d
or die "Cannot make path $d: $!";
}
}
sub _generate_imapd_conf
{
my ($self) = @_;
my ($cyrus_major_version, $cyrus_minor_version) =
Cassandane::Instance->get_version($self->{installation});
$self->{config}->set_variables(
name => $self->{name},
basedir => $self->{basedir},
cyrus_prefix => $self->{cyrus_prefix},
prefix => getcwd(),
);
$self->{config}->set(
sasl_pwcheck_method => 'saslauthd',
sasl_saslauthd_path => "$self->{basedir}/run/mux",
notifysocket => "dlist:$self->{basedir}/run/notify",
event_notifier => 'pusher',
);
if ($cyrus_major_version >= 3) {
$self->{config}->set(imipnotifier => 'imip');
$self->{config}->set_bits('event_groups',
'mailbox message flags calendar');
if ($cyrus_major_version > 3 || $cyrus_minor_version >= 1) {
$self->{config}->set(
smtp_backend => 'host',
smtp_host => $self->{smtphost},
);
}
}
else {
$self->{config}->set_bits('event_groups', 'mailbox message flags');
}
if ($self->{buildinfo}->get('search', 'xapian')) {
my %xapian_defaults = (
search_engine => 'xapian',
search_index_headers => 'no',
search_batchsize => '8192',
defaultsearchtier => 't1',
't1searchpartition-default' => "$self->{basedir}/search",
't2searchpartition-default' => "$self->{basedir}/search2",
't3searchpartition-default' => "$self->{basedir}/search3",
);
while (my ($k, $v) = each %xapian_defaults) {
if (not defined $self->{config}->get($k)) {
$self->{config}->set($k => $v);
}
}
}
$self->{config}->generate($self->_imapd_conf());
}
sub _emit_master_entry
{
my ($self, $entry) = @_;
my $params = $entry->master_params();
my $name = delete $params->{name};
# Convert ->{argv} to ->{cmd}
my $argv = delete $params->{argv};
die "No argv argument"
unless defined $argv;
# do not alter original argv
my @args = @$argv;
my $bin = shift @args;
$params->{cmd} = join(' ',
$self->_binary($bin),
'-C', $self->_imapd_conf(),
@args
);
print MASTER " $name";
while (my ($k, $v) = each %$params)
{
$v = "\"$v\""
if ($v =~ m/\s/);
print MASTER " $k=$v";
}
print MASTER "\n";
}
sub _generate_master_conf
{
my ($self) = @_;
my $filename = $self->_master_conf();
my $conf = $self->_imapd_conf();
open MASTER,'>',$filename
or die "Cannot open $filename for writing: $!";
if (scalar @{$self->{starts}})
{
print MASTER "START {\n";
map { $self->_emit_master_entry($_); } @{$self->{starts}};
print MASTER "}\n";
}
if (scalar %{$self->{services}})
{
print MASTER "SERVICES {\n";
map { $self->_emit_master_entry($_); } values %{$self->{services}};
print MASTER "}\n";
}
if (scalar @{$self->{events}})
{
print MASTER "EVENTS {\n";
map { $self->_emit_master_entry($_); } @{$self->{events}};
print MASTER "}\n";
}
# $self->{generic_daemons} is daemons *not* managed by master
close MASTER;
}
sub _add_services_from_cyrus_conf
{
my ($self) = @_;
my $filename = $self->_master_conf();
open MASTER,'<',$filename
or die "Cannot open $filename for reading: $!";
my $in;
while (<MASTER>)
{
chomp;
s/\s*#.*//; # strip comments
next if m/^\s*$/; # skip empty lines
my ($m) = m/^(START|SERVICES|EVENTS)\s*{/;
if ($m)
{
$in = $m;
next;
}
if ($in && m/^\s*}\s*$/)
{
$in = undef;
next;
}
next if !defined $in;
my ($name, $rem) = m/^\s*([a-zA-Z0-9]+)\s+(.*)$/;
$_ = $rem;
my %params;
while (length $_)
{
my ($k, $rem2) = m/^([a-zA-Z0-9]+)=(.*)/;
die "Bad parameter name" if !defined $k;
$_ = $rem2;
my ($v, $rem3) = m/^"([^"]*)"(.*)/;
if (!defined $v)
{
($v, $rem3) = m/^(\S*)(.*)/;
}
die "Bad parameter value" if !defined $v;
$_ = $rem3;
if ($k eq 'listen')
{
my $aa = Cassandane::GenericDaemon::parse_address($v);
$params{host} = $aa->{host};
$params{port} = $aa->{port};
}
elsif ($k eq 'cmd')
{
$params{argv} = [ split(/\s+/, $v) ];
}
else
{
$params{$k} = $v;
}
s/^\s+//;
}
if ($in eq 'SERVICES')
{
$self->add_service(name => $name, %params);
}
}
close MASTER;
}
sub _fix_ownership
{
my ($self, $path) = @_;
$path ||= $self->{basedir};
return if geteuid() != 0;
my $uid = getpwnam('cyrus');
my $gid = getgrnam('root');
find(sub { chown($uid, $gid, $File::Find::name) }, $path);
}
sub _read_pid_file
{
my ($self, $name) = @_;
my $file = $self->_pid_file($name);
my $pid;
return undef if ( ! -f $file );
open PID,'<',$file
or return undef;
while(<PID>)
{
chomp;
($pid) = m/^(\d+)$/;
last;
}
close PID;
return undef unless defined $pid;
return undef unless $pid > 1;
return undef unless kill(0, $pid) > 0;
return $pid;
}
sub _start_master
{
my ($self) = @_;
# First check that nothing is listening on any of the ports
# we expect to be able to use. That would indicate a failure
# of test containment - i.e. we failed to shut something down
# earlier. Or it might indicate that someone is trying to run
# a second set of Cassandane tests on this machine, which is
# also going to fail miserably. In any case we want to know.
foreach my $srv (values %{$self->{services}},
values %{$self->{generic_daemons}})
{
die "Some process is already listening on " . $srv->address()
if $srv->is_listening();
}
# Now start the master process.
my @cmd =
(
'master',
# The following is added automatically by _fork_command:
# '-C', $self->_imapd_conf(),
'-l', '255',
'-p', $self->_pid_file(),
'-d',
'-M', $self->_master_conf(),
);
if (get_verbose) {
my $logfile = $self->{basedir} . '/conf/master.log';
xlog "_start_master: logging to $logfile";
push(@cmd, '-L', $logfile);
}
unlink $self->_pid_file();
# Start master daemon
$self->run_command({ cyrus => 1 }, @cmd);
# wait until the pidfile exists and contains a PID
# that we can verify is still alive.
xlog "_start_master: waiting for PID file";
timed_wait(sub { $self->_read_pid_file() },
description => "the master PID file to exist");
xlog "_start_master: PID file present and correct";
# Start any other defined daemons
foreach my $daemon (values %{$self->{generic_daemons}})
{
$self->run_command({ cyrus => 0 }, $daemon->get_argv());
}
# Wait until all the defined services are reported as listening.
# That doesn't mean they're ready to use but it means that at least
# a client will be able to connect(), although the first response
# might be a bit slow.
xlog "_start_master: PID waiting for services";
foreach my $srv (values %{$self->{services}},
values %{$self->{generic_daemons}})
{
timed_wait(sub
{
$self->is_running()
or die "Master no longer running";
$srv->is_listening();
},
description => $srv->address() . " to be in LISTEN state");
}
xlog "_start_master: all services listening";
}
sub _start_notifyd
{
my ($self) = @_;
my $basedir = $self->{basedir};
my $notifypid = fork();
unless ($notifypid) {
$SIG{TERM} = sub { POSIX::_exit(0) };
POSIX::close( $_ ) for 3 .. 1024; ## Arbitrary upper bound
# child;
$0 = "cassandane notifyd: $basedir";
notifyd("$basedir/run");
POSIX::_exit(0);
}
xlog "started notifyd for $basedir as $notifypid";
push @{$self->{_shutdowncallbacks}}, sub {
local *__ANON__ = "kill_notifyd";
my $self = shift;
xlog "killing notifyd $notifypid";
kill(15, $notifypid);
waitpid($notifypid, 0);
};
}
#
# Create a user, with a home folder
#
# Argument 'user' may be of the form 'user' or 'user@domain'.
# Following that are optional named parameters
#
# subdirs array of strings, lists folders
# to be created, relative to the new
# home folder
#
# Returns void, or dies if something went wrong
#
sub create_user
{
my ($self, $user, %params) = @_;
my $mb = Cassandane::Mboxname->new(config => $self->{config}, username => $user);
xlog "create user $user";
my $srv = $self->get_service('imap');
return
unless defined $srv;
my $adminstore = $srv->create_store(username => 'admin');
my $adminclient = $adminstore->get_client();
my @mboxes = ( $mb->to_external() );
map { push(@mboxes, $mb->make_child($_)->to_external()); } @{$params{subdirs}}
if ($params{subdirs});
foreach my $mb (@mboxes)
{
$adminclient->create($mb)
or die "Cannot create $mb: $@";
$adminclient->setacl($mb, admin => 'lrswipkxtecdan')
or die "Cannot setacl for $mb: $@";
$adminclient->setacl($mb, $user => 'lrswipkxtecdn')
or die "Cannot setacl for $mb: $@";
$adminclient->setacl($mb, anyone => 'p')
or die "Cannot setacl for $mb: $@";
}
}
sub set_smtpd {
my ($self, $data) = @_;
my $basedir = $self->{basedir};
if ($data) {
open(FH, ">$basedir/conf/smtpd.json");
print FH encode_json($data);
close(FH);
}
else {
unlink("$basedir/conf/smtpd.json");
}
}
sub _start_smtpd
{
my ($self) = @_;
my $basedir = $self->{basedir};
my $host = 'localhost';
my $port = Cassandane::PortManager::alloc();
my $smtppid = fork();
unless ($smtppid) {
# Child process.
# XXX This child still has the whole test's process space
# XXX still mapped, and when it exits, all our destructors
# XXX will be called, leaving the test in who knows what
# XXX state...
$SIG{TERM} = sub { die "killed" };
POSIX::close( $_ ) for 3 .. 1024; ## Arbitrary upper bound
$0 = "cassandane smtpd: $basedir";
my $smtpd = Cassandane::Net::SMTPServer->new({
cass_verbose => 1,
xmtp_personality => 'smtp',
host => $host,
port => $port,
max_servers => 3, # default is 50, yikes
control_file => "$basedir/conf/smtpd.json",
});
$smtpd->run() or die;
exit 0; # Never reached
}
# Parent process.
# give the child a moment to actually start up
sleep 1;
# and then make sure it did!
my $waitstatus = waitpid($smtppid, WNOHANG);
if ($waitstatus == 0) {
$self->{smtphost} = $host . ':' . $port;
xlog "started smtpd as $smtppid";
push @{$self->{_shutdowncallbacks}}, sub {
local *__ANON__ = "kill_smtpd";
my $self = shift;
xlog "killing smtpd $smtppid";
kill(15, $smtppid);
waitpid($smtppid, 0);
};
}
else {
# child process already exited, something has gone wrong
Cassandane::PortManager::free($port);
die "smtpd with pid=$smtppid failed to start";
}
}
sub start_httpd {
my ($self, $handler, $port) = @_;
my $basedir = $self->{basedir};
my $host = 'localhost';
$port ||= Cassandane::PortManager::alloc();
my $httpdpid = fork();
unless ($httpdpid) {
# Child process.
# XXX This child still has the whole test's process space
# XXX still mapped, and when it exits, all our destructors
# XXX will be called, leaving the test in who knows what
# XXX state...
$SIG{TERM} = sub { exit 0; };
POSIX::close( $_ ) for 3 .. 1024; ## Arbitrary upper bound
$0 = "cassandane httpd: $basedir";
my $httpd = HTTP::Daemon->new(
LocalAddr => $host,
LocalPort => $port,
ReuseAddr => 1, # Reuse ports left in TIME_WAIT
) || die;
while (my $conn = $httpd->accept) {
while (my $req = $conn->get_request) {
$handler->($conn, $req);
}
$conn->close;
undef($conn);
}
exit 0; # Never reached
}
# Parent process.
$self->{httpdhost} = $host . ':' . $port;
xlog "started httpd as $httpdpid";
push @{$self->{_shutdowncallbacks}}, sub {
local *__ANON__ = "kill_httpd";
my $self = shift;
xlog "killing httpd $httpdpid";
kill(15, $httpdpid);
waitpid($httpdpid, 0);
};
return $port;
}
sub start
{
my ($self) = @_;
my $created = 0;
$self->_init_basedir_and_name();
xlog "start $self->{description}: basedir $self->{basedir}";
if ($self->{description} =~ m/^main instance for test /) {
# Start SMTP server before generating imapd config, we need to
# to set smtp_host to the auto-assigned TCP port it listens on.
$self->_start_smtpd();
}
# arrange for fakesaslauthd to be started by master
# XXX make this run as a DAEMON rather than a START
my $fakesaslauthd_socket = "$self->{basedir}/run/mux";
if ($self->{authdaemon}) {
$self->add_start(
name => 'fakesaslauthd',
argv => [
abs_path('utils/fakesaslauthd'),
'-p', $fakesaslauthd_socket,
],
);
}
if (!$self->{re_use_dir} || ! -d $self->{basedir})
{
$created = 1;
rmtree $self->{basedir};
$self->_build_skeleton();
# TODO: system("echo 1 >/proc/sys/kernel/core_uses_pid");
# TODO: system("echo 1 >/proc/sys/fs/suid_dumpable");
$self->{buildinfo} = Cassandane::BuildInfo->new($self->{cyrus_destdir},
$self->{cyrus_prefix});
$self->_generate_imapd_conf();
$self->_generate_master_conf();
$self->install_certificates() if $self->{install_certificates};
$self->_fix_ownership();
}
elsif (!scalar $self->{services})
{
$self->_add_services_from_cyrus_conf();
}
$self->setup_syslog_replacement();
$self->_start_notifyd();
$self->_uncompress_berkeley_crud();
$self->_start_master();
$self->{_stopped} = 0;
$self->{_started} = 1;
# give fakesaslauthd a moment (but not more than 2s) to set up its
# socket before anything starts trying to connect to services
if ($self->{authdaemon}) {
my $tries = 0;
while (not -S $fakesaslauthd_socket && $tries < 2_000_000) {
$tries += usleep(10_000); # 10ms as us
}
die "fakesaslauthd socket $fakesaslauthd_socket not ready after 2s!"
if not -S $fakesaslauthd_socket;
}
if ($created && $self->{setup_mailbox})
{
$self->create_user("cassandane");
}
xlog "started $self->{description}: cyrus version "
. Cassandane::Instance->get_version($self->{installation});
}
sub _compress_berkeley_crud
{
my ($self) = @_;
my @files;
my $dbdir = $self->{basedir} . "/conf/db";
if ( -d $dbdir )
{
opendir DBDIR, $dbdir
or return "Cannot open directory $dbdir: $!";
while (my $e = readdir DBDIR)
{
push(@files, "$dbdir/$e")
if ($e =~ m/^__db\.\d+$/);
}
closedir DBDIR;
}
if (scalar @files)
{
xlog "Compressing Berkeley environment files: " . join(' ', @files);
system('/bin/bzip2', @files);
}
return;
}
sub _uncompress_berkeley_crud
{
my ($self) = @_;
my @files;
my $dbdir = $self->{basedir} . "/conf/db";
if ( -d $dbdir )
{
opendir DBDIR, $dbdir
or die "Cannot open directory $dbdir: $!";
while (my $e = readdir DBDIR)
{
push(@files, "$dbdir/$e")
if ($e =~ m/^__db\.\d+\.bz2$/);
}
closedir DBDIR;
}
if (scalar @files)
{
xlog "Uncompressing Berkeley environment files: " . join(' ', @files);
system('/bin/bunzip2', @files);
}
}
sub _check_valgrind_logs
{
my ($self) = @_;
return unless Cassandane::Cassini->instance()->bool_val('valgrind', 'enabled');
my $valgrind_logdir = $self->{basedir} . '/vglogs';
return unless -d $valgrind_logdir;
opendir VGLOGS, $valgrind_logdir
or return "Cannot open directory $valgrind_logdir for reading: $!";
my @nzlogs;
while ($_ = readdir VGLOGS)
{
next if m/^\./;
next if m/\.core\./;
my $log = "$valgrind_logdir/$_";
next if -z $log;
push(@nzlogs, $_);
if (open VG, "<$log") {
xlog "Valgrind errors from file $log";
while (<VG>) {
chomp;
xlog "$_";
}
close VG;
}
else {
xlog "Cannot open Valgrind log $log for reading: $!";
}
}
closedir VGLOGS;
return "Found Valgrind errors, see log for details"
if scalar @nzlogs;
return;
}
# The 'file' program seems to consistently misreport cores
# so we apply a heuristic that seems to work
sub _detect_core_program
{
my ($core) = @_;
my $lines = 0;
my $prog;
open STRINGS, '-|', ('strings', '-a', $core)
or die "Cannot run strings on $core: $!";
while (<STRINGS>)
{
chomp;
if (m/\/bin\//)
{
$prog = $_;
last;
}
$lines++;
last if ($lines > 10);
}
close STRINGS;
return $prog;
}
sub _check_cores
{
my ($self) = @_;
my $coredir = $self->{basedir} . '/conf/cores';
my $ncores = 0;
return unless -d $coredir;
opendir CORES, $coredir
or return "Cannot open directory $coredir for reading: $!";
while ($_ = readdir CORES)
{
next if m/^\./;
next unless m/^core(\.\d+)?$/;
my $core = "$coredir/$_";
next if -z $core;
chmod(0644, $core);
$ncores++;
my $prog = _detect_core_program($core);
xlog "Found core file $core";
xlog " from program $prog" if defined $prog;
}
closedir CORES;
return "Core files found in $coredir" if $ncores;
return;
}
sub _check_mupdate
{
my ($self) = @_;
my $mupdate_server = $self->{config}->get('mupdate_server');
return if not $mupdate_server; # not in a murder
my $serverlist = $self->{config}->get('serverlist');
return if $serverlist; # don't sync mboxlist on frontends
# Run ctl_mboxlist -m to sync backend mailboxes with mupdate.
#
# You typically run this from START, and we do, but at test start
# there's no mailboxes yet, so there's nothing to sync, and if
# something is broken it probably won't be detected.
my $basedir = $self->{basedir};
eval {
$self->run_command({
redirects => { stdout => "$basedir/ctl_mboxlist.out",
stderr => "$basedir/ctl_mboxlist.err",
},
cyrus => 1,
}, 'ctl_mboxlist', '-m');
};
if ($@) {
my @err = slurp_file("$basedir/ctl_mboxlist.err");
chomp for @err;
xlog "ctl_mboxlist -m failed: " . Dumper \@err;
return "unable to sync local mailboxes with mupdate";
}
}
sub _check_sanity
{
my ($self) = @_;
# We added this check during 3.5 development... older versions
# probably fail these checks. If we backport fixes we can decrement
# this version check.
my ($maj, $min) = Cassandane::Instance->get_version($self->{installation});
if ($maj < 3 || ($maj == 3 && $min < 5)) {
return;
}
my $basedir = $self->{basedir};
my $found = 0;
eval {
$self->run_command({redirects => {stdout => "$basedir/quota.out", stderr => "$basedir/quota.err"}, cyrus => 1}, 'quota', '-f', '-q');
};
if ($@) {
xlog "quota -f failed, $@";
$found = 1;
}
eval {
$self->run_command({redirects => {stdout => "$basedir/reconstruct.out", stderr => "$basedir/reconstruct.err"}, cyrus => 1}, 'reconstruct', '-q', '-G');
};
if ($@) {
xlog "reconstruct failed, $@";
$found = 1;
}
for my $file ("quota.out", "quota.err", "reconstruct.out", "reconstruct.err") {
next unless open(FH, "<$basedir/$file");
while (<FH>) {
next unless $_;
$found = 1;
xlog "INCONSISTENCY FOUND: $file $_";
}
}
return "INCONSISTENCIES FOUND IN SPOOL" if $found;
return;
}
sub _check_syslog
{
my ($self) = @_;
my @lines = $self->getsyslog();
my @errors = grep { m/ERROR|TRACELOG|Unknown code ____/ } @lines;
@errors = grep { not m/DBERROR.*skipstamp/ } @errors;
$self->xlog("syslog error: $_") for @errors;
return "Errors found in syslog" if @errors;
return;
}
# Stop a given PID. Returns 1 if the process died
# gracefully (i.e. soon after receiving SIGTERM)
# or wasn't even running beforehand.
sub _stop_pid
{
my ($pid, $reaper) = @_;
# Try to be nice, but leave open the option of not being nice should
# that be necessary. The signals we send are:
#
# SIGTERM - The standard Cyrus graceful shutdown signal, should
# be handled and propagated by master.
# SIGILL - Not handled by master; kernel's default action is to
# dump a core. We use this to try to get a core when
# something is wrong with master.
# SIGKILL - Hmm, something went wrong with our cunning SIGILL plan,
# let's take off and nuke it from orbit. We just don't
# want to leave processes around cluttering up the place.
#
my @sigs = ( SIGTERM, SIGILL, SIGKILL );
my %signame = (
SIGTERM, "TERM",
SIGILL, "ILL",
SIGKILL, "KILL",
);
my $r = 1;
foreach my $sig (@sigs)
{
xlog "_stop_pid: sending signal $signame{$sig} to $pid";
kill($sig, $pid) or xlog "Can't send signal $signame{$sig} to pid $pid: $!";
eval {
timed_wait(sub {
eval { $reaper->() if (defined $reaper) };
return (kill(0, $pid) == 0);
});
};
last unless $@;
# Timed out -- No More Mr Nice Guy
xlog "_stop_pid: failed to shut down pid $pid with signal $signame{$sig}";
$r = 0;
}
return $r;
}
sub send_sighup
{
my ($self) = @_;
return if (!$self->{_started});
return if ($self->{_stopped});
xlog "sighup";
my $pid = $self->_read_pid_file('master') or return;
kill(SIGHUP, $pid) or die "Can't send signal SIGHUP to pid $pid: $!";
return 1;
}
#
# n.b. If you are stopping the instance intending to restart it again later,
# you must set:
# $instance->{'re_use_dir'} => 1
# before restarting, otherwise it will wipe and re-initialise its basedir
# during startup, probably ruining whatever you were trying to do. It
# will still use the same directory name though, so it won't be obvious
# from the logs that this is happening!
#
sub stop
{
my ($self) = @_;
$self->_init_basedir_and_name();
return if ($self->{_stopped} || !$self->{_started});
$self->{_stopped} = 1;
my @errors;
push @errors, $self->_check_sanity();
push @errors, $self->_check_mupdate();
xlog "stop $self->{description}: basedir $self->{basedir}";
foreach my $name ($self->_list_pid_files())
{
my $pid = $self->_read_pid_file($name);
next if (!defined $pid);
_stop_pid($pid)
or push @errors, "Cannot shut down $name pid $pid";
}
# Note: no need to reap this daemon which is not our child anymore
foreach my $item (@{$self->{_shutdowncallbacks}}) {
eval {
$item->($self);
};
if ($@) {
push @errors, "some shutdown callback died: $@";
}
}
$self->{_shutdowncallbacks} = [];
# n.b. still need this for testing 2.5
push @errors, $self->_compress_berkeley_crud();
push @errors, $self->_check_valgrind_logs();
push @errors, $self->_check_cores();
push @errors, $self->_check_syslog();
# filter out empty errors (shouldn't be any, but just in case)
@errors = grep { $_ } @errors;
foreach my $e (@errors) {
xlog "$self->{description}: $e";
}
return @errors;
}
sub DESTROY
{
my ($self) = @_;
if ($$ != $self->{_pid}) {
xlog "ignoring DESTROY from bad caller: $$";
return;
}
if (defined $self->{basedir} &&
!$self->{persistent} &&
!$self->{_stopped})
{
# clean up any dangling master and daemon process
foreach my $name ($self->_list_pid_files())
{
my $pid = $self->_read_pid_file($name);
next if (!defined $pid);
_stop_pid($pid);
}
foreach my $item (@{$self->{_shutdowncallbacks}}) {
$item->($self);
}
$self->{_shutdowncallbacks} = [];
}
}
sub is_running
{
my ($self) = @_;
my $pid = $self->_read_pid_file();
return 0 unless defined $pid;
return kill(0, $pid);
}
sub _setup_for_deliver
{
my ($self) = @_;
$self->add_service(name => 'lmtp',
argv => ['lmtpd', '-a'],
port => '@basedir@/conf/socket/lmtp');
}
sub deliver
{
my ($self, $msg, %params) = @_;
my $str = $msg->as_string();
my @cmd = ( 'deliver' );
my $folder = $params{folder};
if (defined $folder)
{
$folder =~ s/^inbox.//i;
push(@cmd, '-m', $folder);
}
my @users;
if (defined $params{users})
{
push(@users, @{$params{users}});
}
elsif (defined $params{user})
{
push(@users, $params{user})
}
else
{
push(@users, 'cassandane');
}
push(@cmd, @users);
my $ret = 0;
$self->run_command({
cyrus => 1,
redirects => {
stdin => \$str
},
handlers => {
exited_abnormally => sub { (undef, $ret) = @_; },
},
}, @cmd);
return $ret;
}
# Runs a command with the given arguments. The first argument is an
# options hash:
#
# background whether to start the command in the background; you need
# to give returned arguments to reap_command afterwards
#
# cyrus whether it is a cyrus utility; if so, instance path is
# automatically prepended to the given command name
#
# handlers hash of coderefs to be called when various events
# are detected. Default is to 'die' on any event
# except exiting with code 0. The events are:
#
# exited_normally($child)
# exited_abnormally($child, $code)
# signaled($child, $sig)
#
# redirects hash for I/O redirections
# stdin feed stdin from; handles SCALAR data or filename,
# /dev/null by default
# stdout feed stdout to; /dev/null by default (or is unmolested
# if xlog is in verbose mode)
# stderr feed stderr to; /dev/null by default (or is unmolested
# if xlog is in verbose mode)
#
# workingdir path to launch the command from
#
sub run_command
{
my ($self, @args) = @_;
my $options = {};
if (ref($args[0]) eq 'HASH') {
$options = shift(@args);
}
my ($pid, $got_exit) = $self->_fork_command($options, @args);
return $pid
if ($options->{background});
if (defined $got_exit) {
# Child already reaped, pass it on
$? = $got_exit;
return $self->_handle_wait_status($pid);
}
return $self->reap_command($pid);
}
sub reap_command
{
my ($self, $pid) = @_;
# parent process...wait for child
my $child = waitpid($pid, 0);
# and deal with it's exit status
return $self->_handle_wait_status($pid)
if $child == $pid;
return undef;
}
# returns the command's exit status, or -1 if something went wrong
sub stop_command
{
my ($self, $pid) = @_;
my $child;
# it's our child, so we must reap it, otherwise it'll never
# completely exit. but if it ignores the first sigterm, a normal
# waitpid will block forever, so we need to be WNOHANG here
my $r = _stop_pid($pid, sub { $child = waitpid($pid, WNOHANG); });
return -1 if $r != 1;
if ($child == $pid) {
return $self->_handle_wait_status($pid)
}
else {
return -1;
}
}
my %default_command_handlers = (
signaled => sub
{
my ($child, $sig) = @_;
my $desc = _describe_child($child);
die "child process $desc terminated by signal $sig";
},
exited_normally => sub
{
my ($child) = @_;
return 0;
},
exited_abnormally => sub
{
my ($child, $code) = @_;
my $desc = _describe_child($child);
die "child process $desc exited with code $code";
},
);
sub _add_child
{
my ($self, $binary, $pid, $handlers) = @_;
my $key = $pid;
$handlers ||= \%default_command_handlers;
my $child = {
binary => $binary,
pid => $pid,
handlers => { %default_command_handlers, %$handlers },
};
$self->{_children}->{$key} = $child;
return $child;
}
sub _describe_child
{
my ($child) = @_;
return "unknown" unless $child;
return "(binary $child->{binary} pid $child->{pid})";
}
sub _cyrus_perl_search_path
{
my ($self) = @_;
my @inc = (
substr($Config{installvendorlib}, length($Config{vendorprefix})),
substr($Config{installvendorarch}, length($Config{vendorprefix})),
substr($Config{installsitelib}, length($Config{siteprefix})),
substr($Config{installsitearch}, length($Config{siteprefix}))
);
return map { $self->{cyrus_destdir} . $self->{cyrus_prefix} . $_; } @inc;
}
#
# Starts a new process to run a program.
#
# Returns launched $pid; you must call _handle_wait_status() to
# decode $?. Dies on errors.
#
sub _fork_command
{
my ($self, $options, $binary, @argv) = @_;
die "No binary specified"
unless defined $binary;
my %redirects;
if (defined($options->{redirects})) {
%redirects = %{$options->{redirects}};
}
# stdin is null, stdout is null or unmolested
$redirects{stdin} = '/dev/null'
unless(defined($redirects{stdin}));
$redirects{stdout} = '/dev/null'
unless(get_verbose || defined($redirects{stdout}));
$redirects{stderr} = '/dev/null'
unless(get_verbose || defined($redirects{stderr}));
my @cmd = ();
if ($options->{cyrus})
{
push(@cmd, $self->_binary($binary), '-C', $self->_imapd_conf());
}
elsif ($binary eq 'delve') {
push(@cmd, $self->_binary($binary));
}
else {
push(@cmd, $binary);
}
push(@cmd, @argv);
xlog "Running: " . join(' ', map { "\"$_\"" } @cmd);
if (defined($redirects{stdin}) && (ref($redirects{stdin}) eq 'SCALAR'))
{
my $fh;
my $data = $redirects{stdin};
$redirects{stdin} = undef;
# Use the fork()ing form of open()
my $pid = open $fh,'|-';
die "Cannot fork: $!"
if !defined $pid;
if ($pid)
{
xlog "child pid=$pid";
# parent process
$self->_add_child($binary, $pid, $options->{handlers});
print $fh ${$data};
close ($fh);
return ($pid, $?);
}
}
else
{
# No capturing - just plain fork()
my $pid = fork();
die "Cannot fork: $!"
if !defined $pid;
if ($pid)
{
# parent process
xlog "child pid=$pid";
$self->_add_child($binary, $pid, $options->{handlers});
return ($pid, undef);
}
}
# child process
my $cassroot = getcwd();
$ENV{CASSANDANE_CYRUS_DESTDIR} = $self->{cyrus_destdir};
$ENV{CASSANDANE_CYRUS_PREFIX} = $self->{cyrus_prefix};
$ENV{CASSANDANE_PREFIX} = $cassroot;
$ENV{CASSANDANE_BASEDIR} = $self->{basedir};
$ENV{CASSANDANE_VERBOSE} = 1 if get_verbose();
$ENV{PERL5LIB} = join(':', ($cassroot, $self->_cyrus_perl_search_path()));
if ($self->{have_syslog_replacement}) {
$ENV{CASSANDANE_SYSLOG_FNAME} = abs_path($self->{syslog_fname});
$ENV{LD_PRELOAD} = abs_path('utils/syslog.so')
}
# xlog "\$PERL5LIB is"; map { xlog " $_"; } split(/:/, $ENV{PERL5LIB});
# Set up the runtime linker path to find the Cyrus shared libraries
#
# TODO: on some platforms we need lib64/ not lib/ but it's not
# entirely clear how to detect that - we could use readelf -d
# on an executable to discover what it thinks it's RPATH ought
# to be, then prepend destdir to that.
if ($self->{cyrus_destdir} ne "")
{
$ENV{LD_LIBRARY_PATH} = join(':', (
$self->{cyrus_destdir} . $self->{cyrus_prefix} . "/lib",
split(/:/, $ENV{LD_LIBRARY_PATH} || "")
));
}
# xlog "\$LD_LIBRARY_PATH is"; map { xlog " $_"; } split(/:/, $ENV{LD_LIBRARY_PATH});
my $cd = $options->{workingdir};
$cd = $self->{basedir} . '/conf/cores'
unless defined($cd);
chdir($cd)
or die "Cannot cd to $cd: $!";
# ulimit -c ...
my $cassini = Cassandane::Cassini->instance();
my $coresizelimit = 0 + $cassini->val("cyrus $self->{installation}",
'coresizelimit', '100');
if ($coresizelimit <= 0) {
$coresizelimit = RLIM_INFINITY;
}
else {
# convert megabytes to bytes
$coresizelimit *= (1024 * 1024);
}
xlog "setting core size limit to $coresizelimit";
setrlimit(RLIMIT_CORE, $coresizelimit, $coresizelimit);
# let's log our rlimits, might be useful for diagnosing weirdnesses
if (get_verbose() >= 4) {
my $limits = get_rlimits();
foreach my $name (keys %{$limits}) {
$limits->{$name} = [ getrlimit($limits->{$name}) ];
}
xlog "rlimits: " . Dumper $limits;
}
# TODO: do any setuid, umask, or environment futzing here
# implement redirects
if (defined $redirects{stdin})
{
open STDIN,'<',$redirects{stdin}
or die "Cannot redirect STDIN from $redirects{stdin}: $!";
}
if (defined $redirects{stdout})
{
open STDOUT,'>',$redirects{stdout}
or die "Cannot redirect STDOUT to $redirects{stdout}: $!";
}
if (defined $redirects{stderr})
{
open STDERR,'>',$redirects{stderr}
or die "Cannot redirect STDERR to $redirects{stderr}: $!";
}
exec @cmd;
die "Cannot run $binary: $!";
}
sub _handle_wait_status
{
my ($self, $key) = @_;
my $status = $?;
my $child = delete $self->{_children}->{$key};
if (WIFSIGNALED($status))
{
my $sig = WTERMSIG($status);
return $child->{handlers}->{signaled}->($child, $sig);
}
elsif (WIFEXITED($status))
{
my $code = WEXITSTATUS($status);
return $child->{handlers}->{exited_abnormally}->($child, $code)
if $code != 0;
}
else
{
die "WTF? Cannot decode wait status $status";
}
return $child->{handlers}->{exited_normally}->($child);
}
sub describe
{
my ($self) = @_;
print "Cyrus instance\n";
printf " name: %s\n", $self->{name};
printf " imapd.conf: %s\n", $self->_imapd_conf();
printf " services:\n";
foreach my $srv (values %{$self->{services}})
{
printf " ";
$srv->describe();
}
printf " generic daemons:\n";
foreach my $daemon (values %{$self->{generic_daemons}})
{
printf " ";
$daemon->describe();
}
}
sub _quota_Z_file
{
my ($self, $mboxname) = @_;
return $self->{basedir} . '/conf/quota-sync/' . $mboxname;
}
sub quota_Z_go
{
my ($self, $mboxname) = @_;
my $filename = $self->_quota_Z_file($mboxname);
xlog "Allowing quota -Z to proceed for $mboxname";
my $dir = dirname($filename);
mkpath $dir
unless ( -d $dir );
my $fd = POSIX::creat($filename, 0600);
POSIX::close($fd);
}
sub quota_Z_wait
{
my ($self, $mboxname) = @_;
my $filename = $self->_quota_Z_file($mboxname);
timed_wait(sub { return (! -f $filename); },
description => "quota -Z to be finished with $mboxname");
}
#
# Unpacks file. Handles tar, gz, and bz2.
#
sub unpackfile
{
my ($self, $src, $dst) = @_;
if (!defined($dst)) {
# unpack in base directory
$dst = $self->{basedir};
}
elsif ($dst !~ /^\//) {
# unpack relatively to base directory
$dst = $self->{basedir} . '/' . $dst;
}
# else: absolute path given
my $options = {};
my @cmd = ();
my $file = [split(/\./, (split(/\//, $src))[-1])];
if (grep { $_ eq 'tar' } @$file) {
push(@cmd, 'tar', '-x', '-f', $src, '-C', $dst);
}
elsif ($file->[-1] eq 'gz') {
$options->{redirects} = {
stdout => "$dst/" . join('.', splice(@$file, 0, -1))
};
push(@cmd, 'gunzip', '-c', $src);
}
elsif ($file->[-1] eq 'bz2') {
$options->{redirects} = {
stdout => "$dst/" . join('.', splice(@$file, 0, -1))
};
push(@cmd, 'bunzip2', '-c', $src);
}
else {
# we don't handle this combination
die "Unhandled packed file $src";
}
return $self->run_command($options, @cmd);
}
sub folder_to_directory
{
my ($self, $folder) = @_;
$folder =~ s/^inbox\./user.cassandane./i;
$folder =~ s/^inbox$/user.cassandane/i;
my $data = eval { $self->run_mbpath($folder) };
return unless $data;
my $dir = $data->{data};
return undef unless -d $dir;
return $dir;
}
sub folder_to_deleted_directories
{
my ($self, $folder) = @_;
$folder =~ s/^inbox\./user.cassandane./i;
$folder =~ s/^inbox$/user.cassandane/i;
# ideally we'd have a command-line way to do this, but imap works too
my $srv = $self->get_service('imap');
my $adminstore = $srv->create_store(username => 'admin');
my $adminclient = $adminstore->get_client();
my @folders = $adminclient->list('', "DELETED.$folder.%");
my @res;
for my $item (@folders) {
next if grep { lc $_ eq '\\noselect' } @{$item->[0]};
my $mailbox = $item->[2];
my $data = eval { $self->run_mbpath($mailbox) };
my $dir = $data->{data};
next unless -d $dir;
push @res, $dir;
}
return @res;
}
sub notifyd
{
my $dir = shift;
$0 = "cassandane notifyd $dir";
my @EVENTS;
tcp_server("unix/", "$dir/notify", sub {
my $fh = shift;
my $Handle = AnyEvent::Handle->new(
fh => $fh,
);
$Handle->push_read('Cyrus::DList' => 1, sub {
my $dlist = $_[1];
my $event = $dlist->as_perl();
#xlog "GOT EVENT: " . encode_json($event);
push @EVENTS, $event;
$Handle->push_write('Cyrus::DList' => scalar(Cyrus::DList->new_kvlist("OK")), 1);
$Handle->push_shutdown();
});
});
tcp_server("unix/", "$dir/getnotify", sub {
my $fh = shift;
my $Handle = AnyEvent::Handle->new(
fh => $fh,
);
#xlog "REPLYING EVENTS: " . scalar(@EVENTS);
$Handle->push_write(json => \@EVENTS);
$Handle->push_shutdown();
@EVENTS = ();
});
my $cv = AnyEvent->condvar();
$SIG{TERM} = sub { $cv->send() };
$cv->recv();
}
sub getnotify
{
my ($self) = @_;
my $basedir = $self->{basedir};
my $path = "$basedir/run/getnotify";
my $data = eval {
my $sock = IO::Socket::UNIX->new(
Type => SOCK_STREAM(),
Peer => $path,
) || die "Connection failed $!";
my $line = $sock->getline();
my $json = decode_json($line);
if (get_verbose) {
use Data::Dumper;
warn "NOTIFY " . Dumper($json);
}
return $json;
};
if ($@) {
my $data = `ls -la $basedir/run; whoami; lsof -n | grep notify`;
xlog "Failed $@ ($data)";
}
return $data;
}
sub setup_syslog_replacement
{
my ($self) = @_;
if (not(-e 'utils/syslog.so') || not(-e 'utils/syslog_probe')) {
xlog "utils/syslog.so not found (do you need to run 'make'?)";
xlog "tests will not examine syslog output";
$self->{have_syslog_replacement} = 0;
return;
}
$self->{syslog_fname} = "$self->{basedir}/conf/log/syslog";
$self->{have_syslog_replacement} = 1;
# if the syslog file already exists, remember how large it is
# so we can seek past existing content without missing the
# startup content!
my $syslog_start = 0;
$syslog_start = -s $self->{syslog_fname} if -e $self->{syslog_fname};
# check that we can syslog a message and find it again
my $syslog_probe = abs_path('utils/syslog_probe');
$self->run_command($syslog_probe, $self->{name});
$self->{_syslogfh} = IO::File->new($self->{syslog_fname}, 'r');
my @lines;
if ($self->{_syslogfh}) {
$self->{_syslogfh}->seek($syslog_start, 0);
$self->{_syslogfh}->blocking(0);
@lines = $self->getsyslog();
if (not scalar grep { m/\bthe magic word\b/ } @lines) {
xlog "didn't find the magic word when probing syslog";
xlog "tests will not examine syslog output";
$self->{have_syslog_replacement} = 0;
undef $self->{_syslogfh};
}
}
else {
xlog "couldn't read $self->{syslog_fname} when probing syslog";
xlog "tests will not examine syslog output";
$self->{have_syslog_replacement} = 0;
}
}
# n.b. This only gives you syslog lines if we were able to successfully
# inject our syslog replacement.
# If you need to make sure an error WASN'T logged, it'll do approximately
# the right thing.
# But if you need to make sure an error WAS logged, first make sure that
# $instance->{have_syslog_replacement} is true, otherwise you will always
# fail on systems where the syslog replacement doesn't work.
sub getsyslog
{
my ($self) = @_;
my $logname = $self->{name};
if ($self->{have_syslog_replacement} && $self->{_syslogfh}) {
# hopefully unobtrusively, let busy log finish writing
usleep(100_000); # 100ms (0.1s) as us
my @lines = grep { m/$logname/ } $self->{_syslogfh}->getlines();
chomp for @lines;
return @lines;
}
return ();
}
sub _get_sqldb
{
my $dbfile = shift;
my $dbh = DBI->connect("dbi:SQLite:$dbfile", undef, undef);
my @tables = map { s/"//gs; s/^main\.//; $_ } $dbh->tables();
my %res;
foreach my $table (@tables) {
$res{$table} = $dbh->selectall_arrayref("SELECT * FROM $table", { Slice => {} });
}
return \%res;
}
sub getalarmdb
{
my $self = shift;
my $file = "$self->{basedir}/conf/caldav_alarm.sqlite3";
return [] unless -e $file;
my $data = _get_sqldb($file);
return $data->{events} || die "NO EVENTS IN CALDAV ALARM DB";
}
sub getdavdb
{
my $self = shift;
my $user = shift;
my $file = $self->get_conf_user_file($user, 'dav');
return unless -e $file;
return _get_sqldb($file);
}
sub get_sieve_script_dir
{
my ($self, $cyrusname) = @_;
if ($cyrusname) {
my $data = eval { $self->run_mbpath('-u', $cyrusname) };
return $data->{user}{sieve} if $data;
}
$cyrusname //= '';
my $sieved = "$self->{basedir}/conf/sieve";
my ($user, $domain) = split '@', $cyrusname;
if ($domain) {
my $dhash = substr($domain, 0, 1);
$sieved .= "/domain/$dhash/$domain";
}
if ($user ne '')
{
my $uhash = substr($user, 0, 1);
$sieved .= "/$uhash/$user/";
}
else
{
# shared folder
$sieved .= '/global/';
}
return $sieved;
}
sub get_conf_user_file
{
my ($self, $cyrusname, $ext) = @_;
my $data = eval { $self->run_mbpath('-u', $cyrusname) };
return $data->{user}{$ext} if $data;
}
sub install_sieve_script
{
my ($self, $script, %params) = @_;
my $user = (exists $params{username} ? $params{username} : 'cassandane');
my $name = $params{name} || 'test1';
my $sieved = $self->get_sieve_script_dir($user);
xlog "Installing sieve script $name in $sieved";
-d $sieved or mkpath $sieved
or die "Cannot make path $sieved: $!";
die "Path does not exist: $sieved" if not -d $sieved;
open(FH, '>', "$sieved/$name.script")
or die "Cannot open $sieved/$name.script for writing: $!";
print FH $script;
close(FH);
$self->run_command({ cyrus => 1 },
"sievec",
"$sieved/$name.script",
"$sieved/$name.bc");
die "File does not exist: $sieved/$name.bc" if not -f "$sieved/$name.bc";
-e "$sieved/defaultbc" || symlink("$name.bc", "$sieved/defaultbc")
or die "Cannot symlink $name.bc to $sieved/defaultbc";
die "Symlink does not exist: $sieved/defaultbc" if not -l "$sieved/defaultbc";
xlog "Sieve script installed successfully";
}
sub install_old_mailbox
{
my ($self, $user, $version) = @_;
my $data_file = abs_path("data/old-mailboxes/version$version.tar.gz");
die "Old mailbox data does not exist: $data_file" if not -f $data_file;
xlog "installing version $version mailbox for user $user";
my $dest_dir = "data/user/$user";
$self->unpackfile($data_file, $dest_dir);
$self->run_command({ cyrus => 1 }, 'reconstruct', '-f', "user.$user");
xlog "installed version $version mailbox for user $user: user.$user.version$version";
return "user.$user.version$version";
}
sub install_certificates
{
my ($self) = @_;
my $cert_file = abs_path("data/certs/cert.pem");
my $key_file = abs_path("data/certs/key.pem");
my $cacert_file = abs_path("data/certs/cacert.pem");
my $destdir = $self->get_basedir() . "/conf/certs";
xlog "installing certificate files to $destdir ...";
foreach my $f ($cert_file, $key_file, $cacert_file) {
copy($f, $destdir)
or die "cannot install $f to $destdir: $!";
}
$destdir = $self->get_basedir() . "/conf/certs/http_jwt";
my $jwt_file = abs_path("data/certs/http_jwt/jwt.pem");
xlog "installing JSON Web Token key file ...";
copy($jwt_file, $destdir)
or die "cannot install $jwt_file to $destdir: $!";
}
sub get_servername
{
my ($self) = @_;
return $self->{config}->get('servername');
}
sub run_mbpath
{
my ($self, @args) = @_;
my ($maj, $min) = Cassandane::Instance->get_version($self->{installation});
my $basedir = $self->get_basedir();
if ($maj < 3 || $maj == 3 && $min <= 4) {
my $folder = pop @args;
my $domain = '';
if ($folder =~ s/\@([^@]+)$//) {
$domain = $1;
}
# support -u $user, including users with dots
if (@args and $args[0] eq '-u') {
$folder =~ s/\./\^/g;
$folder = "user.$folder";
}
# translate to path
$folder =~ s/\./\//g;
my $user = '';
if ($folder =~ m{user/([^/]+)}) {
$user = $1;
}
my $dhash = substr($domain, 0, 1);
my $uhash = substr($user, 0, 1);
my $dotuser = $user;
$dotuser =~ s/\^/\./g;
# XXX - hashing smarts?
my $upath = '';
$upath .= "domain/$dhash/$domain/" if $domain;
$upath .= "user/$uhash/$dotuser";
my $spath = '';
# fricking sieve, always different
$spath .= "domain/$dhash/$domain/" if $domain;
$spath .= "$uhash/$dotuser";
my $xpath = '';
# et tu xapian
$xpath .= "domain/$dhash/$domain/" if $domain;
$xpath .= "$uhash/user/$dotuser";
my $res = {
data => "$basedir/data/$folder",
archive => "$basedir/archive/$folder",
meta => "$basedir/meta/$folder",
# skip mbname, we're not using it
user => {
(map { $_ => "$basedir/conf/$upath.$_" } qw(conversations counters dav seen sub xapianactive)),
sieve => "$basedir/conf/sieve/$spath",
},
xapian => {
t1 => "$basedir/search/$xpath",
t2 => "$basedir/search2/$xpath",
t3 => "$basedir/search3/$xpath",
},
};
return $res;
}
my $filename = "$basedir/cyr_info.out";
$self->run_command({
cyrus => 1,
redirects => {
stdout => $filename,
},
}, 'mbpath', '-j', @args);
open(FH, "<$filename") || return;
local $/ = undef;
my $str = <FH>;
close(FH);
return decode_json($str);
}
sub _mkastring
{
my $string = shift;
return '{' . length($string) . '+}' . "\r\n" . $string;
}
sub run_dbcommand_cb
{
my ($self, $linecb, $dbname, $engine, @items) = @_;
if (@items > 1) {
unshift @items, ['BEGIN'];
push @items, ['COMMIT'];
}
my $input = '';
foreach my $item (@items) {
$input .= $item->[0];
for (1..2) {
$input .= ' ' . _mkastring($item->[$_]) if defined $item->[$_];
}
$input .= "\r\n";
}
my $basedir = $self->{basedir};
my $res = $self->run_command({
redirects => {
stdin => \$input,
stdout => "$basedir/run_dbcommand.out",
},
cyrus => 1,
handlers => {
exited_normally => sub { return 'ok'; },
exited_abnormally => sub { return 'failure'; },
},
}, 'cyr_dbtool', $dbname, $engine, 'batch');
return $res unless $res eq 'ok';
my $needbytes = 0;
my $buf = '';
# The output of `cyr_dbtool` is in theory one logical line at a time.
# However each logical line can have IMAP literals in them. In that
# case, you get a real line that ends with "{nbytes+}\r\n" and you then
# have to read that many bytes of data (including possibly \r's and
# \n's as well). This function potentially reads multiple real lines
# in $line to gather up a single logical line in $buf, and then parses
# that.
# It could be made simpler and more efficient by tokenising the line as
# it goes, but it was extracted from an original codebase which processed
# the entire response buffer from `cyr_dbtool` as a single giant string.
open(FH, "<$basedir/run_dbcommand.out");
LINE: while (defined(my $line = <FH>)) {
$buf .= $line;
# inside a literal, that's all we need
if ($needbytes) {
my $len = length($line);
if ($len <= $needbytes) {
$needbytes -= $len;
next LINE;
}
substr($line, 0, $needbytes, '');
$needbytes = 0;
}
# does this line include a literal, process it now
if ($line =~ m/\{(\d+)\+?\}\r?\n$/s) {
$needbytes = $1;
next LINE;
}
# we have a line!
my @array;
my $pos = 0;
my $length = length($buf);
while ($pos < $length) {
my $chr = substr($buf, $pos, 1);
if ($chr eq ' ') {
$pos++;
next;
}
if ($chr eq "\n") {
$pos++;
next;
}
if ($chr eq '{') {
my $end = index($buf, '}', $pos);
die "Missing }" if $end < 0;
my $len = substr($buf, $pos + 1, $end - $pos - 1);
$len =~ s/\+//;
$pos = $end+1;
my $chr = substr($buf, $pos++, 1);
$chr = substr($buf, $pos++, 1) if $chr eq "\r";
die "BOGUS LITERAL" unless $chr eq "\n";
push @array, substr($buf, $pos, $len);
$pos += $len;
next;
}
if ($chr eq '"') {
my $end = index($buf, '"', $pos+1);
die "Missing quote" if $end < 0;
push @array, substr($buf, $pos + 1, $end - $pos - 1);
$pos = $end + 1;
next;
}
my $space = index($buf, ' ', $pos);
my $endline = index($buf, "\n", $pos);
if ($space < 0) {
push @array, substr($buf, $pos, $endline - $pos);
$pos = $endline;
next;
}
if ($endline < 0) {
push @array, substr($buf, $pos, $space - $pos);
$pos = $space;
next;
}
if ($endline < $space) {
push @array, substr($buf, $pos, $endline - $pos);
$pos = $endline;
next;
}
if ($space < $endline) {
push @array, substr($buf, $pos, $space - $pos);
$pos = $space;
next;
}
die "shouldn't get here";
}
$linecb->(@array);
$buf = '';
}
close(FH);
return 'ok';
}
sub run_dbcommand
{
my ($self, $dbname, $engine, @items) = @_;
my @array;
$self->run_dbcommand_cb(sub { push @array, @_ }, $dbname, $engine, @items);
return @array;
}
sub read_mailboxes_db
{
my ($self, $params) = @_;
# run ctl_mboxlist -d to dump mailboxes.db to a file
my $outfile = $params->{outfile}
|| $self->get_basedir() . "/$$-ctl_mboxlist.out";
$self->run_command({
cyrus => 1,
redirects => {
stdout => $outfile,
},
}, 'ctl_mboxlist', '-d');
local $/;
open my $fh, '<', $outfile or die "$outfile: $!";
my $json_data = <$fh>;
close $fh;
return JSON::decode_json($json_data);
}
1;
|