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
|
/* mupdate.c -- cyrus murder database master
*
* Copyright (c) 1994-2008 Carnegie Mellon University. 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 "Carnegie Mellon University" 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
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY 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.
*/
#include <config.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <signal.h>
#include <stdlib.h>
#include <sysexits.h>
#include <syslog.h>
#include <errno.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#if !defined(SIOCGIFCONF) && defined(HAVE_SYS_SOCKIO_H)
# include <sys/sockio.h>
#endif
#include <net/if.h>
#include <pthread.h>
#include <sasl/sasl.h>
#include <sasl/saslutil.h>
#include "mupdate.h"
#include "mupdate-client.h"
#include "telemetry.h"
#include "strarray.h"
#include "assert.h"
#include "global.h"
#include "mailbox.h"
#include "mboxlist.h"
#include "mpool.h"
#include "nonblock.h"
#include "prot.h"
#include "tls.h"
#include "tls_th-lock.h"
#include "util.h"
#include "version.h"
#include "xmalloc.h"
#include "xstrlcpy.h"
/* generated headers are not necessarily in current directory */
#include "imap/imap_err.h"
/* Sent to clients that we can't accept a connection for. */
static const char SERVER_UNABLE_STRING[] = "* BYE \"Server Unable\"\r\n";
static const int NO_NEW_CONNECTION = -1;
static int masterp = 0;
typedef enum {
DOCMD_OK = 0,
DOCMD_CONN_FINISHED = 1
} mupdate_docmd_result_t;
enum {
poll_interval = 1,
update_wait = 5
};
struct pending {
struct pending *next;
char mailbox[MAX_MAILBOX_BUFFER];
};
struct conn {
int fd;
int logfd;
struct protstream *pin;
struct protstream *pout;
sasl_conn_t *saslconn;
char *userid;
#ifdef HAVE_SSL
SSL *tlsconn;
#else
void *tlsconn;
#endif
void *tls_comp; /* TLS compression method, if any */
int compress_done; /* have we done a successful compress? */
int idle;
char clienthost[NI_MAXHOST*2+1];
struct saslprops_t saslprops;
/* UPDATE command handling */
const char *streaming; /* tag */
strarray_t *streaming_hosts; /* partial updates */
/* pending changes to send, in reverse order */
pthread_mutex_t m;
struct pending *plist;
struct pending *ptail;
struct conn *updatelist_next;
struct prot_waitevent *ev; /* invoked every 'update_wait' seconds
to send out updates */
/* Prefix for list commands */
const char *list_prefix;
size_t list_prefix_len;
/* For parsing */
struct buf tag, cmd, arg1, arg2, arg3;
/* For connection list management */
struct conn *next;
struct conn *next_idle;
};
static int ready_for_connections = 0;
static pthread_cond_t ready_for_connections_cond = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t ready_for_connections_mutex = PTHREAD_MUTEX_INITIALIZER;
static int synced = 0;
static pthread_cond_t synced_cond = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t synced_mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t listener_mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t listener_cond = PTHREAD_COND_INITIALIZER;
static int listener_lock = 0;
/* if you want to lock both listener and either of these two, you
* must lock listener first. You must have both listener_mutex and
* idle_connlist_mutex locked to remove anything from the idle_connlist */
static pthread_mutex_t idle_connlist_mutex = PTHREAD_MUTEX_INITIALIZER;
static struct conn *idle_connlist = NULL; /* protected by listener_mutex */
static pthread_mutex_t connection_count_mutex = PTHREAD_MUTEX_INITIALIZER;
static int connection_count = 0;
static pthread_mutex_t idle_worker_mutex = PTHREAD_MUTEX_INITIALIZER;
static int idle_worker_count = 0;
static pthread_mutex_t worker_count_mutex = PTHREAD_MUTEX_INITIALIZER;
static int worker_count = 0;
static pthread_mutex_t connlist_mutex = PTHREAD_MUTEX_INITIALIZER;
static struct conn *connlist = NULL;
static pthread_mutex_t clienthost_mutex = PTHREAD_MUTEX_INITIALIZER;
/* ---- connection signaling pipe */
static int conn_pipe[2];
/* ---- database access ---- */
static pthread_mutex_t mailboxes_mutex = PTHREAD_MUTEX_INITIALIZER;
static struct conn *updatelist = NULL;
/* --- prototypes --- */
static void conn_free(struct conn *C);
static mupdate_docmd_result_t docmd(struct conn *c);
static void cmd_authenticate(struct conn *C,
const char *tag, const char *mech,
const char *clientstart);
static void cmd_set(struct conn *C,
const char *tag, const char *mailbox,
const char *location, const char *acl, enum settype t);
static void cmd_find(struct conn *C, const char *tag, const char *mailbox,
int send_ok, int send_delete);
static void cmd_list(struct conn *C, const char *tag, const char *host_prefix);
static void cmd_startupdate(struct conn *C, const char *tag,
strarray_t *partial);
static void cmd_starttls(struct conn *C, const char *tag);
#ifdef HAVE_ZLIB
static void cmd_compress(struct conn *C, const char *tag, const char *alg);
#endif
void shut_down(int code);
static int reset_saslconn(struct conn *c);
static void database_init(void);
static void sendupdates(struct conn *C, int flushnow);
extern int saslserver(sasl_conn_t *conn, const char *mech,
const char *init_resp, const char *resp_prefix,
const char *continuation, const char *empty_chal,
struct protstream *pin, struct protstream *pout,
int *sasl_result, char **success_data);
/* --- prototypes in mupdate-slave.c */
void *mupdate_client_start(void *rock);
void *mupdate_placebo_kick_start(void *rock);
/* --- main() for each thread */
static void *thread_main(void *rock);
/* --- for config.c */
const int config_need_data = 0;
static struct conn *conn_new(int fd)
{
struct conn *C = xzmalloc(sizeof(struct conn));
const char *clienthost, *localip, *remoteip;
int r;
C->fd = fd;
C->logfd = -1;
C->pin = prot_new(C->fd, 0);
C->pout = prot_new(C->fd, 1);
/* Allow LITERAL+ */
prot_setisclient(C->pin, 1);
prot_setflushonread(C->pin, C->pout);
prot_settimeout(C->pin, 180*60);
C->pin->userdata = C->pout->userdata = C;
pthread_mutex_lock(&connlist_mutex); /* LOCK */
C->next = connlist;
connlist = C;
pthread_mutex_unlock(&connlist_mutex); /* UNLOCK */
pthread_mutex_lock(&connection_count_mutex); /* LOCK */
connection_count++;
pthread_mutex_unlock(&connection_count_mutex); /* UNLOCK */
/* Find out name of client host
*
* MUST do this inside a mutex because the values returned
* from get_clienthost are all static to that function.
*/
pthread_mutex_lock(&clienthost_mutex); /* LOCK */
clienthost = get_clienthost(C->fd, &localip, &remoteip);
strlcpy(C->clienthost, clienthost, sizeof(C->clienthost));
if (localip && remoteip) {
buf_setcstr(&C->saslprops.ipremoteport, remoteip);
buf_setcstr(&C->saslprops.iplocalport, localip);
}
pthread_mutex_unlock(&clienthost_mutex); /* UNLOCK */
/* create sasl connection */
r = sasl_server_new("mupdate",
config_servername, NULL,
buf_cstringnull_ifempty(&C->saslprops.iplocalport),
buf_cstringnull_ifempty(&C->saslprops.ipremoteport),
NULL, 0,
&C->saslconn);
if (r != SASL_OK) {
syslog(LOG_ERR, "failed to start sasl for connection: %s",
sasl_errstring(r, NULL, NULL));
prot_printf(C->pout, SERVER_UNABLE_STRING);
C->idle = 0;
conn_free(C);
return NULL;
}
/* set my allowable security properties */
sasl_setprop(C->saslconn, SASL_SEC_PROPS, mysasl_secprops(SASL_SEC_NOANONYMOUS));
return C;
}
static void conn_free(struct conn *C)
{
assert(!C->idle); /* Not allowed to free idle connections */
if (C->streaming) { /* remove from updatelist */
struct conn *upc;
pthread_mutex_lock(&mailboxes_mutex);
if (C == updatelist) {
/* first thing in updatelist */
updatelist = C->updatelist_next;
} else {
/* find in update list */
for (upc = updatelist; upc->updatelist_next != NULL;
upc = upc->updatelist_next) {
if (upc->updatelist_next == C) break;
}
/* must find it ! */
assert(upc->updatelist_next == C);
upc->updatelist_next = C->updatelist_next;
}
pthread_mutex_unlock(&mailboxes_mutex);
}
/* decrease connection counter */
pthread_mutex_lock(&connection_count_mutex);
connection_count--;
pthread_mutex_unlock(&connection_count_mutex);
/* remove from connlist */
pthread_mutex_lock(&connlist_mutex); /* LOCK */
if (C == connlist) {
connlist = connlist->next;
} else {
struct conn *t;
for (t = connlist; t->next != NULL; t = t->next) {
if (t->next == C) break;
}
assert(t != NULL);
t->next = C->next;
}
pthread_mutex_unlock(&connlist_mutex); /* UNLOCK */
if (C->ev) prot_removewaitevent(C->pin, C->ev);
prot_flush(C->pout);
if (C->pin) prot_free(C->pin);
if (C->pout) prot_free(C->pout);
#ifdef HAVE_SSL
if (C->tlsconn) tls_reset_servertls(&C->tlsconn);
tls_shutdown_serverengine();
#endif
cyrus_close_sock(C->fd);
if (C->logfd != -1) close(C->logfd);
if (C->saslconn) sasl_dispose(&C->saslconn);
saslprops_free(&C->saslprops);
/* free struct bufs */
buf_free(&(C->tag));
buf_free(&(C->cmd));
buf_free(&(C->arg1));
buf_free(&(C->arg2));
buf_free(&(C->arg3));
if (C->streaming_hosts) strarray_free(C->streaming_hosts);
free(C);
}
/*
* The auth_*.c backends called by mysasl_proxy_policy()
* use static variables which we need to protect with a mutex.
*/
static pthread_mutex_t proxy_policy_mutex = PTHREAD_MUTEX_INITIALIZER;
static int mupdate_proxy_policy(sasl_conn_t *conn,
void *context,
const char *requested_user, unsigned rlen,
const char *auth_identity, unsigned alen,
const char *def_realm,
unsigned urlen,
struct propctx *propctx)
{
int r;
pthread_mutex_lock(&proxy_policy_mutex); /* LOCK */
r = mysasl_proxy_policy(conn, context, requested_user, rlen,
auth_identity, alen, def_realm, urlen, propctx);
pthread_mutex_unlock(&proxy_policy_mutex); /* UNLOCK */
return r;
}
static struct sasl_callback mysasl_cb[] = {
{ SASL_CB_GETOPT, (mysasl_cb_ft *) &mysasl_config, NULL },
{ SASL_CB_PROXY_POLICY, (mysasl_cb_ft *) &mupdate_proxy_policy, NULL },
{ SASL_CB_LIST_END, NULL, NULL }
};
/*
* Is the IP address of the given hostname local?
* Returns 1 if local, 0 otherwise.
*/
static int islocalip(const char *hostname)
{
struct hostent *hp;
struct in_addr *haddr, *iaddr;
struct ifconf ifc;
struct ifreq *ifr;
char buf[8192]; /* XXX this limits us to 256 interfaces */
int sock, islocal = 0;
if ((hp = gethostbyname(hostname)) == NULL) {
fprintf(stderr, "unknown host: %s\n", hostname);
return 0;
}
haddr = (struct in_addr *) hp->h_addr;
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
fprintf(stderr, "socket() failed\n");
return 0;
}
ifc.ifc_buf = buf;
ifc.ifc_len = sizeof(buf);
if (ioctl(sock, SIOCGIFCONF, &ifc) != 0) {
fprintf(stderr, "ioctl(SIOCGIFCONF) failed: %d\n", errno);
close(sock);
return 0;
}
for (ifr = ifc.ifc_req; ifr - ifc.ifc_req < ifc.ifc_len; ifr++) {
if (ioctl(sock, SIOCGIFADDR, ifr) != 0) continue;
if (ioctl(sock, SIOCGIFFLAGS, ifr) != 0) continue;
/* skip any inactive or loopback interfaces */
if (!(ifr->ifr_flags & IFF_UP) || (ifr->ifr_flags & IFF_LOOPBACK))
continue;
iaddr = &(((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr);
/* compare the host address to the interface address */
if (!memcmp(haddr, iaddr, sizeof(struct in_addr))) {
islocal = 1;
break;
}
}
close(sock);
return islocal;
}
/*
* run once when process is forked;
* MUST NOT exit directly; must return with non-zero error code
*/
int service_init(int argc, char **argv,
char **envp __attribute__((unused)))
{
int i, r, workers_to_start;
int opt, autoselect = 0;
pthread_t t;
if (geteuid() == 0) fatal("must run as the Cyrus user", EX_USAGE);
/* Do minor configuration checking */
workers_to_start = config_getint(IMAPOPT_MUPDATE_WORKERS_START);
if (config_getint(IMAPOPT_MUPDATE_WORKERS_MAX) < config_getint(IMAPOPT_MUPDATE_WORKERS_MINSPARE)) {
syslog(LOG_CRIT, "Maximum total worker threads is less than minimum spare worker threads");
return EX_SOFTWARE;
}
if (workers_to_start < config_getint(IMAPOPT_MUPDATE_WORKERS_MINSPARE)) {
syslog(LOG_CRIT, "Starting worker threads is less than minimum spare worker threads");
return EX_SOFTWARE;
}
if (config_getint(IMAPOPT_MUPDATE_WORKERS_MAXSPARE) < workers_to_start) {
syslog(LOG_CRIT, "Maximum spare worker threads is less than starting worker threads");
return EX_SOFTWARE;
}
if (config_getint(IMAPOPT_MUPDATE_WORKERS_MINSPARE) > workers_to_start) {
syslog(LOG_CRIT, "Minimum spare worker threads is greater than starting worker threads");
return EX_SOFTWARE;
}
if (config_getint(IMAPOPT_MUPDATE_WORKERS_MAX) < workers_to_start) {
syslog(LOG_CRIT, "Maximum total worker threads is less than starting worker threads");
return EX_SOFTWARE;
}
/* set signal handlers */
signals_set_shutdown(&shut_down);
signal(SIGPIPE, SIG_IGN);
global_sasl_init(1, 1, mysasl_cb);
/* see if we're the master or a slave */
while ((opt = getopt(argc, argv, "ma")) != EOF) {
switch (opt) {
case 'm':
masterp = 1;
break;
case 'a':
autoselect = 1;
break;
default:
break;
}
}
if (!masterp && autoselect) masterp = islocalip(config_mupdate_server);
if (masterp &&
config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_UNIFIED) {
/* XXX We currently prohibit this because mailboxes created
* on the master will cause local mailbox entries to be propagated
* to the slave. We can probably fix this by prepending
* config_servername onto the entries before updating the slaves.
*/
fatal("cannot run mupdate master on a unified server", EX_USAGE);
}
if (pipe(conn_pipe) == -1) {
syslog(LOG_ERR, "could not setup connection signaling pipe %m");
return EX_OSERR;
}
database_init();
#ifdef HAVE_SSL
#if OPENSSL_VERSION_NUMBER < 0x10100000L
CRYPTO_thread_setup();
#endif
#endif
if (!masterp) {
r = pthread_create(&t, NULL, &mupdate_client_start, NULL);
if (r == 0) {
pthread_detach(t);
} else {
syslog(LOG_ERR, "could not start client thread");
return EX_SOFTWARE;
}
/* Wait until they sync the database */
pthread_mutex_lock(&synced_mutex);
if (!synced)
pthread_cond_wait(&synced_cond, &synced_mutex);
pthread_mutex_unlock(&synced_mutex);
} else {
pthread_t t;
r = pthread_create(&t, NULL, &mupdate_placebo_kick_start, NULL);
if (r == 0) {
pthread_detach(t);
} else {
syslog(LOG_ERR, "could not start placebo kick thread");
return EX_SOFTWARE;
}
mupdate_ready();
}
/* Now create the worker thread pool */
for(i=0; i < workers_to_start; i++) {
r = pthread_create(&t, NULL, &thread_main, NULL);
if (r == 0) {
pthread_detach(t);
} else {
syslog(LOG_ERR, "could not start client thread");
return EX_SOFTWARE;
}
}
return 0;
}
/* Called by service API to shut down the service */
void service_abort(int error)
{
#ifdef HAVE_SSL
#if OPENSSL_VERSION_NUMBER < 0x10100000L
CRYPTO_thread_cleanup();
#endif
#endif
shut_down(error);
}
EXPORTED void fatal(const char *s, int code)
{
static int recurse_code = 0;
if (recurse_code) exit(code);
else recurse_code = code;
syslog(LOG_ERR, "%s", s);
shut_down(code);
/* NOTREACHED */
exit(code); /* shut up GCC */
}
#define CHECKNEWLINE(c, ch) do { if ((ch) == '\r') (ch)=prot_getc((c)->pin); \
if ((ch) != '\n') goto extraargs; } while (0)
static mupdate_docmd_result_t docmd(struct conn *c)
{
mupdate_docmd_result_t ret = DOCMD_OK;
int ch;
int was_blocking = prot_IS_BLOCKING(c->pin);
char *p;
/* We know we have input, so skip the check below.
* Note that we MUST skip this nonblocking check in order to properly
* catch connections that have timed out.
*/
goto cmd;
nextcmd:
/* First we do a check for input */
prot_NONBLOCK(c->pin);
ch = prot_getc(c->pin);
if (ch == EOF && errno == EAGAIN) {
/* no input from client */
goto done;
} else if (ch == EOF) {
goto lost_conn;
} else {
/* there's input waiting, put back our character */
prot_ungetc(ch, c->pin);
}
/* Set it back to blocking so we don't get half a word */
prot_BLOCK(c->pin);
cmd:
ch = getword(c->pin, &(c->tag));
if (ch == EOF) goto lost_conn;
if (ch != ' ') {
prot_printf(c->pout, "* BAD \"Need command\"\r\n");
eatline(c->pin, ch);
goto nextcmd;
}
/* parse command name */
ch = getword(c->pin, &(c->cmd));
if (ch == EOF) {
goto lost_conn;
} else if (!c->cmd.s[0]) {
prot_printf(c->pout, "%s BAD \"Null command\"\r\n", c->tag.s);
eatline(c->pin, ch);
goto nextcmd;
}
if (Uislower(c->cmd.s[0])) {
c->cmd.s[0] = toupper((unsigned char) c->cmd.s[0]);
}
for (p = &(c->cmd.s[1]); *p; p++) {
if (Uisupper(*p)) *p = tolower((unsigned char) *p);
}
switch (c->cmd.s[0]) {
case 'A':
if (!strcmp(c->cmd.s, "Authenticate")) {
int opt = 0;
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
if (ch == ' ') {
ch = getstring(c->pin, c->pout, &(c->arg2));
opt = 1;
}
CHECKNEWLINE(c, ch);
if (c->userid) {
prot_printf(c->pout,
"%s BAD \"already authenticated\"\r\n",
c->tag.s);
goto nextcmd;
}
cmd_authenticate(c, c->tag.s, c->arg1.s,
opt ? c->arg2.s : NULL);
}
else if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Activate")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg2));
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg3));
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
if (!masterp) goto masteronly;
cmd_set(c, c->tag.s, c->arg1.s, c->arg2.s,
c->arg3.s, SET_ACTIVE);
}
else goto badcmd;
break;
#ifdef HAVE_ZLIB
case 'C':
if (!strcmp(c->cmd.s, "Compress")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
CHECKNEWLINE(c, ch);
cmd_compress(c, c->tag.s, c->arg1.s);
}
else goto badcmd;
break;
#endif
case 'D':
if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Deactivate")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg2));
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
if (!masterp) goto masteronly;
cmd_set(c, c->tag.s, c->arg1.s, c->arg2.s,
NULL, SET_DEACTIVATE);
}
else if (!strcmp(c->cmd.s, "Delete")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
if (!masterp) goto masteronly;
cmd_set(c, c->tag.s, c->arg1.s, NULL, NULL, SET_DELETE);
}
else goto badcmd;
break;
case 'F':
if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Find")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
cmd_find(c, c->tag.s, c->arg1.s, 1, 0);
}
else goto badcmd;
break;
case 'L':
if (!strcmp(c->cmd.s, "Logout")) {
CHECKNEWLINE(c, ch);
prot_printf(c->pout, "%s OK \"bye-bye\"\r\n", c->tag.s);
ret = DOCMD_CONN_FINISHED;
goto done;
}
else if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "List")) {
int opt = 0;
if (ch == ' ') {
/* Optional partition/host prefix parameter */
ch = getstring(c->pin, c->pout, &(c->arg1));
opt = 1;
}
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
cmd_list(c, c->tag.s, opt ? c->arg1.s : NULL);
prot_printf(c->pout, "%s OK \"list complete\"\r\n", c->tag.s);
}
else goto badcmd;
break;
case 'N':
if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Noop")) {
CHECKNEWLINE(c, ch);
if (c->streaming) {
/* Make *very* sure we are up-to-date */
kick_mupdate();
sendupdates(c, 0); /* don't flush pout though */
}
prot_printf(c->pout, "%s OK \"Noop done\"\r\n", c->tag.s);
}
else goto badcmd;
break;
case 'R':
if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Reserve")) {
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg1));
if (ch != ' ') goto missingargs;
ch = getstring(c->pin, c->pout, &(c->arg2));
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
if (!masterp) goto masteronly;
cmd_set(c, c->tag.s, c->arg1.s, c->arg2.s, NULL, SET_RESERVE);
}
else goto badcmd;
break;
case 'S':
if (!strcmp(c->cmd.s, "Starttls")) {
CHECKNEWLINE(c, ch);
/* XXX discard any input pipelined after STARTTLS */
prot_flush(c->pin);
if (!tls_enabled()) {
/* we don't support starttls */
goto badcmd;
}
/* if we've already done SASL fail */
if (c->userid) {
prot_printf(c->pout,
"%s BAD Can't Starttls after authentication\r\n",
c->tag.s);
goto nextcmd;
}
/* if we've already done COMPRESS fail */
if (c->compress_done) {
prot_printf(c->pout,
"%s BAD Can't Starttls after Compress\r\n",
c->tag.s);
goto nextcmd;
}
/* check if already did a successful tls */
if (c->tlsconn) {
prot_printf(c->pout,
"%s BAD Already did a successful Starttls\r\n",
c->tag.s);
goto nextcmd;
}
cmd_starttls(c, c->tag.s);
}
else goto badcmd;
break;
case 'U':
if (!c->userid) goto nologin;
else if (!strcmp(c->cmd.s, "Update")) {
strarray_t *arg = NULL;
int counter = 30; /* limit on number of processed hosts */
while(ch == ' ') {
/* Hey, look, more bits of a PARTIAL-UPDATE command */
ch = getstring(c->pin, c->pout, &(c->arg1));
if (c->arg1.s[0] == '\0') {
strarray_free(arg);
goto badargs;
}
if (counter-- == 0) {
strarray_free(arg);
goto extraargs;
}
if (!arg) arg = strarray_new();
strarray_append(arg, c->arg1.s);
}
CHECKNEWLINE(c, ch);
if (c->streaming) goto notwhenstreaming;
cmd_startupdate(c, c->tag.s, arg);
}
else goto badcmd;
break;
default:
badcmd:
prot_printf(c->pout, "%s BAD \"Unrecognized command\"\r\n",
c->tag.s);
eatline(c->pin, ch);
break;
extraargs:
prot_printf(c->pout, "%s BAD \"Extra arguments\"\r\n",
c->tag.s);
eatline(c->pin, ch);
break;
badargs:
prot_printf(c->pout, "%s BAD \"Badly formed arguments\"\r\n",
c->tag.s);
eatline(c->pin, ch);
break;
missingargs:
prot_printf(c->pout, "%s BAD \"Missing arguments\"\r\n",
c->tag.s);
eatline(c->pin, ch);
break;
notwhenstreaming:
prot_printf(c->pout, "%s BAD \"not legal when streaming\"\r\n",
c->tag.s);
break;
masteronly:
prot_printf(c->pout,
"%s BAD \"read-only session\"\r\n",
c->tag.s);
break;
nologin:
prot_printf(c->pout, "%s BAD \"Please login first\"\r\n", c->tag.s);
eatline(c->pin, ch);
break;
}
/* Check for more input */
goto nextcmd;
lost_conn:
{
const char *err;
if ((err = prot_error(c->pin)) != NULL
&& strcmp(err, PROT_EOF_STRING)) {
syslog(LOG_WARNING, "%s, closing connection", err);
prot_printf(c->pout, "* BYE \"%s\"\r\n", err);
}
ret = DOCMD_CONN_FINISHED;
}
done:
/* Restore the state of the input stream */
if (was_blocking)
prot_BLOCK(c->pin);
else
prot_NONBLOCK(c->pin);
/* Necessary since we don't ever do a prot_read on an idle connection
* in mupdate */
prot_flush(c->pout);
return ret;
}
/*
* run for each accepted connection
*/
int service_main_fd(int fd,
int argc __attribute__((unused)),
char **argv __attribute__((unused)),
char **envp __attribute__((unused)))
{
int flag;
int r;
/* First check that we can handle the new connection. */
pthread_mutex_lock(&connection_count_mutex); /* LOCK */
flag =
(connection_count >= config_getint(IMAPOPT_MUPDATE_CONNECTIONS_MAX));
pthread_mutex_unlock(&connection_count_mutex); /* UNLOCK */
if (flag) {
/* Do the nonblocking write, if it fails, too bad for them. */
nonblock(fd, 1);
r = write(fd,SERVER_UNABLE_STRING,sizeof(SERVER_UNABLE_STRING));
close(fd);
syslog(LOG_ERR,
"Server too busy, dropping connection.");
if (r) return 0; /* filthy hack to avoid warning on 'r' */
} else if (write(conn_pipe[1], &fd, sizeof(fd)) == -1) {
/* signal that a new file descriptor is available.
* If it fails... */
syslog(LOG_CRIT,
"write to conn_pipe to signal new connection failed: %m");
return EX_TEMPFAIL;
}
return 0;
}
/*
* Issue the capability banner
*/
static void dobanner(struct conn *c)
{
char slavebuf[4096];
const char *mechs;
int mechcount;
int ret;
/* send initial the banner + flush pout */
ret = sasl_listmech(c->saslconn, NULL,
"* AUTH \"", "\" \"", "\"",
&mechs, NULL, &mechcount);
/* Add mupdate:// tag if necessary */
if (!masterp) {
if (!config_mupdate_server)
fatal("mupdate server was not specified for slave",
EX_TEMPFAIL);
snprintf(slavebuf, sizeof(slavebuf), "mupdate://%s",
config_mupdate_server);
}
prot_printf(c->pout, "%s\r\n",
(ret == SASL_OK && mechcount > 0) ? mechs : "* AUTH");
if (tls_enabled() && !c->tlsconn) {
prot_printf(c->pout, "* STARTTLS\r\n");
}
#ifdef HAVE_ZLIB
if (!c->compress_done && !c->tls_comp) {
prot_printf(c->pout, "* COMPRESS \"DEFLATE\"\r\n");
}
#endif
prot_printf(c->pout, "* PARTIAL-UPDATE\r\n");
prot_printf(c->pout,
"* OK MUPDATE \"%s\" \"Cyrus IMAP\" \"%s\" \"%s\"\r\n",
config_servername,
CYRUS_VERSION, masterp ? "(master)" : slavebuf);
prot_flush(c->pout);
}
/*
* The main thread loop
*/
/* Note that You Must Lock Listen mutex before idle worker mutex,
* though you can lock them individually too */
static void *thread_main(void *rock __attribute__((unused)))
{
struct conn *C; /* used for loops */
struct conn *currConn = NULL; /* the connection we care about currently */
struct protgroup *protin = protgroup_new(PROTGROUP_SIZE_DEFAULT);
struct protgroup *protout = NULL;
struct timeval now;
struct timespec timeout;
int need_workers, too_many;
int max_worker_flag;
int do_a_command;
int send_a_banner;
int connflag;
int new_fd;
int ret = 0;
struct conn *ni;
/* Lock Worker Count Mutex */
pthread_mutex_lock(&worker_count_mutex); /* LOCK */
/* Change total number of workers */
worker_count++;
syslog(LOG_DEBUG,
"New worker thread started, for a total of %d", worker_count);
/* Unlock Worker Count Mutex */
pthread_mutex_unlock(&worker_count_mutex); /* UNLOCK */
/* This is a big infinite loop */
while (1) {
send_a_banner = do_a_command = 0;
pthread_mutex_lock(&idle_worker_mutex);
/* If we are over the limit on idle threads, die. */
max_worker_flag = (idle_worker_count >=
config_getint(IMAPOPT_MUPDATE_WORKERS_MAXSPARE));
/* Increment Idle Workers */
if (!max_worker_flag) idle_worker_count++;
pthread_mutex_unlock(&idle_worker_mutex);
if (max_worker_flag) goto worker_thread_done;
retry_lock:
/* Lock Listen Mutex - If locking takes more than 60 seconds,
* kill off this thread. Ideally this is a FILO queue */
pthread_mutex_lock(&listener_mutex); /* LOCK */
ret = 0;
while (listener_lock && ret != ETIMEDOUT) {
gettimeofday(&now, NULL);
timeout.tv_sec = now.tv_sec + 60;
timeout.tv_nsec = now.tv_usec * 1000;
ret = pthread_cond_timedwait(&listener_cond,
&listener_mutex,
&timeout);
}
if (!ret) {
/* Set listener lock until we decide what to do */
listener_lock = 1;
}
pthread_mutex_unlock(&listener_mutex); /* UNLOCK */
if (ret == ETIMEDOUT) {
pthread_mutex_lock(&idle_worker_mutex); /* LOCK */
if (idle_worker_count <= config_getint(IMAPOPT_MUPDATE_WORKERS_MINSPARE)) {
pthread_mutex_unlock(&idle_worker_mutex); /* UNLOCK */
/* below number of spare workers, try to get the lock again */
goto retry_lock;
} else {
/* Decrement Idle Worker Count */
idle_worker_count--;
pthread_mutex_unlock(&idle_worker_mutex); /* UNLOCK */
syslog(LOG_DEBUG,
"Thread timed out waiting for listener_lock");
goto worker_thread_done;
}
}
signals_poll();
/* Check if we are ready for connections, if not, wait */
pthread_mutex_lock(&ready_for_connections_mutex); /* LOCK */
/* are we ready to take connections? */
while (!ready_for_connections) {
pthread_cond_wait(&ready_for_connections_cond,
&ready_for_connections_mutex);
}
pthread_mutex_unlock(&ready_for_connections_mutex); /* UNLOCK */
connflag = 0;
/* Reset protin to all zeros (to preserve memory allocation) */
protgroup_reset(protin);
/* Clear protout if needed */
protgroup_free(protout);
protout = NULL;
/* Build list of idle protstreams */
pthread_mutex_lock(&idle_connlist_mutex); /* LOCK */
for (C=idle_connlist; C; C=C->next_idle) {
assert(C->idle);
protgroup_insert(protin, C->pin);
}
pthread_mutex_unlock(&idle_connlist_mutex); /* UNLOCK */
/* Select on Idle Conns + conn_pipe */
if (prot_select(protin, conn_pipe[0],
&protout, &connflag, NULL) == -1) {
syslog(LOG_ERR, "prot_select() failed in thread_main: %m");
fatal("prot_select() failed in thread_main", EX_TEMPFAIL);
}
/* we've got work to do */
pthread_mutex_lock(&idle_worker_mutex); /* LOCK */
idle_worker_count--;
pthread_mutex_unlock(&idle_worker_mutex); /* UNLOCK */
/* If we've been signaled to be unready, drop all current connections
* in the idle list */
pthread_mutex_lock(&ready_for_connections_mutex); /* LOCK */
if (!ready_for_connections) {
pthread_mutex_unlock(&ready_for_connections_mutex); /* UNLOCK */
/* Free all connections on idle_connlist. Note that
* any connection not currently on the idle_connlist will
* instead be freed when they drop out of their docmd() below */
pthread_mutex_lock(&idle_connlist_mutex); /* LOCK */
for (C=idle_connlist; C; C = ni) {
ni = C->next_idle;
prot_printf(C->pout,
"* BYE \"no longer ready for connections\"\r\n");
C->idle = 0;
conn_free(C);
}
idle_connlist = NULL;
pthread_mutex_unlock(&idle_connlist_mutex); /* UNLOCK */
goto nextlistener;
}
pthread_mutex_unlock(&ready_for_connections_mutex); /* UNLOCK */
if (connflag) {
/* read the fd from the pipe, if needed */
if (read(conn_pipe[0], &new_fd, sizeof(new_fd)) == -1) {
syslog(LOG_CRIT,
"read from conn_pipe for new connection failed: %m");
fatal("conn_pipe read failed", EX_TEMPFAIL);
}
} else {
new_fd = NO_NEW_CONNECTION;
}
if (new_fd != NO_NEW_CONNECTION) {
/* new_fd indicates a new connection */
currConn = conn_new(new_fd);
if (currConn)
send_a_banner = 1;
} else if (protout) {
/* Handle existing connection, we'll need to pull it off
* the idle_connlist */
struct protstream *ptmp;
struct conn **prev;
pthread_mutex_lock(&idle_connlist_mutex); /* LOCK */
/* Grab the first connection out of the ready set, and use it */
ptmp = protgroup_getelement(protout, 0);
assert(ptmp);
currConn = ptmp->userdata;
assert(currConn);
assert(currConn->idle);
currConn->idle = 0;
for (C=idle_connlist, prev = &(idle_connlist); C;
prev = &(C->next_idle), C=C->next_idle) {
if (C == currConn) {
*prev = C->next_idle;
C->next_idle = NULL;
break;
}
}
pthread_mutex_unlock(&idle_connlist_mutex); /* UNLOCK */
do_a_command = 1;
}
/*
* If this worker will do any real work, we'll want to make sure
* there are sufficient additional workers while we're busy.
*/
if (send_a_banner || do_a_command) {
pthread_mutex_lock(&idle_worker_mutex); /* LOCK */
need_workers = config_getint(IMAPOPT_MUPDATE_WORKERS_MINSPARE)
- idle_worker_count;
pthread_mutex_unlock(&idle_worker_mutex); /* UNLOCK */
pthread_mutex_lock(&worker_count_mutex); /* LOCK */
if (need_workers > 0) {
too_many = (need_workers + worker_count) -
config_getint(IMAPOPT_MUPDATE_WORKERS_MAX);
if (too_many > 0) need_workers -= too_many;
}
pthread_mutex_unlock(&worker_count_mutex); /* UNLOCK */
/* Do we need a new worker (or two, or three...)?
* (are we allowed to create one?) */
while (need_workers > 0) {
pthread_t t;
int r = pthread_create(&t, NULL, &thread_main, NULL);
if (r == 0) {
pthread_detach(t);
} else {
syslog(LOG_ERR,
"could not start a new worker thread (not fatal)");
}
/* Even if we fail to create the new thread, keep going */
need_workers--;
}
}
nextlistener:
/* Let another listener in */
pthread_mutex_lock(&listener_mutex);
assert(listener_lock);
listener_lock = 0;
pthread_cond_signal(&listener_cond);
pthread_mutex_unlock(&listener_mutex);
/* Do work in this thread, if needed */
if (send_a_banner) {
dobanner(currConn);
} else if (do_a_command) {
assert(currConn);
if (docmd(currConn) == DOCMD_CONN_FINISHED) {
conn_free(currConn);
/* continue to top of loop here since we won't be adding
* this back to the idle list */
continue;
}
/* Are we allowed to continue serving data? */
pthread_mutex_lock(&ready_for_connections_mutex); /* LOCK */
if (!ready_for_connections) {
pthread_mutex_unlock(&ready_for_connections_mutex); /* UNLOCK */
prot_printf(C->pout,
"* BYE \"no longer ready for connections\"\r\n");
conn_free(currConn);
/* continue to top of loop here since we won't be adding
* this back to the idle list */
continue;
}
pthread_mutex_unlock(&ready_for_connections_mutex); /* UNLOCK */
} /* done handling command */
if (send_a_banner || do_a_command) {
/* We did work in this thread, so we need to [re-]add the
* connection to the idle list and signal the current listener */
pthread_mutex_lock(&idle_connlist_mutex); /* LOCK */
currConn->idle = 1;
currConn->next_idle = idle_connlist;
idle_connlist = currConn;
pthread_mutex_unlock(&idle_connlist_mutex); /* UNLOCK */
/* Signal to our caller that we should add something
* to select() on, since this connection is ready again */
if (write(conn_pipe[1], &NO_NEW_CONNECTION,
sizeof(NO_NEW_CONNECTION)) == -1) {
fatal("write to conn_pipe to signal docmd done failed",
EX_TEMPFAIL);
}
}
} /* while(1) */
worker_thread_done:
/* Remove this worker from the pool */
/* Note that workers exiting the loop above should NOT be counted
* in the idle_worker_count */
pthread_mutex_lock(&worker_count_mutex); /* LOCK */
worker_count--;
pthread_mutex_lock(&idle_worker_mutex); /* LOCK */
syslog(LOG_DEBUG,
"Worker thread finished, for a total of %d (%d spare)",
worker_count, idle_worker_count);
pthread_mutex_unlock(&idle_worker_mutex); /* UNLOCK */
pthread_mutex_unlock(&worker_count_mutex); /* UNLOCK */
protgroup_free(protin);
protgroup_free(protout);
return NULL;
}
/* read from disk database must be unlocked. */
static void database_init(void)
{
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
}
/* log change to database. database must be locked. */
static void database_log(const struct mbent *mb, struct txn **mytid)
{
char *c;
mbentry_t *mbentry = NULL;
mbentry = mboxlist_entry_create();
mbentry->name = xstrdupnull(mb->mailbox);
mbentry->server = xstrdupnull(mb->location);
c = strchr(mbentry->server, '!');
if (c) {
*c++ = '\0';
mbentry->partition = xstrdupnull(c);
}
mbentry->acl = xstrdupnull(mb->acl);
switch (mb->t) {
case SET_ACTIVE:
mbentry->mbtype = 0;
mboxlist_insertremote(mbentry, mytid);
break;
case SET_RESERVE:
mbentry->mbtype |= MBTYPE_RESERVE;
mboxlist_insertremote(mbentry, mytid);
break;
case SET_DELETE:
mboxlist_deleteremote(mb->mailbox, mytid);
break;
case SET_DEACTIVATE:
/* SET_DEACTIVATE is not a real value that an actual
mailbox can have! */
abort();
}
mboxlist_entry_free(&mbentry);
}
/* lookup in database. database must be locked */
/* This could probably be more efficient and avoid some copies */
/* passing in a NULL pool implies that we should use regular xmalloc,
* a non-null pool implies we should use the mpool functionality */
static struct mbent *database_lookup(const char *name, const mbentry_t *mbentry,
struct mpool *pool)
{
mbentry_t *my_mbentry = NULL;
struct mbent *out;
char *location = NULL;
int r;
if (!name) return NULL;
if (!mbentry) {
r = mboxlist_lookup_allow_all(name, &my_mbentry, NULL);
if (r) return NULL;
mbentry = my_mbentry;
}
/* XXX - if mbtype & MBTYPE_DELETED, maybe set a delete */
if (mbentry->mbtype & MBTYPE_RESERVE) {
if (!pool) out = xmalloc(sizeof(struct mbent) + 1);
else out = mpool_malloc(pool, sizeof(struct mbent) + 1);
out->t = SET_RESERVE;
out->acl[0] = '\0';
}
else {
if (!pool) out = xmalloc(sizeof(struct mbent) + strlen(mbentry->acl));
else out = mpool_malloc(pool, sizeof(struct mbent) + strlen(mbentry->acl));
out->t = SET_ACTIVE;
strcpy(out->acl, mbentry->acl);
}
if (mbentry->server && mbentry->partition)
location = strconcat(mbentry->server, "!", mbentry->partition, NULL);
else if (mbentry->server)
location = xstrdup(mbentry->server);
else if (mbentry->partition)
location = xstrdup(mbentry->partition);
else
location = xstrdup("");
if (pool) {
out->mailbox = mpool_strdup(pool, name);
out->location = mpool_strdup(pool, location);
free(location);
}
else {
out->mailbox = xstrdup(name);
out->location = location;
}
if (my_mbentry) mboxlist_entry_free(&my_mbentry);
return out;
}
static void cmd_authenticate(struct conn *C,
const char *tag, const char *mech,
const char *clientstart)
{
int r, sasl_result;
const void *val;
int failedloginpause;
r = saslserver(C->saslconn, mech, clientstart, "", "", "",
C->pin, C->pout, &sasl_result, NULL);
if (r) {
const char *errorstring = NULL;
const char *userid = "-notset-";
switch (r) {
case IMAP_SASL_CANCEL:
prot_printf(C->pout,
"%s NO Client canceled authentication\r\n", tag);
break;
case IMAP_SASL_PROTERR:
errorstring = prot_error(C->pin);
prot_printf(C->pout,
"%s NO Error reading client response: %s\r\n",
tag, errorstring ? errorstring : "");
break;
default:
failedloginpause = config_getduration(IMAPOPT_FAILEDLOGINPAUSE, 's');
if (failedloginpause != 0) {
sleep(failedloginpause);
}
if (r != SASL_NOUSER)
sasl_getprop(C->saslconn, SASL_USERNAME, (const void **) &userid);
syslog(LOG_ERR, "badlogin: %s %s (%s) [%s]",
C->clienthost,
mech, userid, sasl_errdetail(C->saslconn));
prot_printf(C->pout, "%s NO \"%s\"\r\n", tag,
sasl_errstring((r == SASL_NOUSER ? SASL_BADAUTH : r),
NULL, NULL));
}
reset_saslconn(C);
return;
}
/* Successful Authentication */
r = sasl_getprop(C->saslconn, SASL_USERNAME, &val);
if (r != SASL_OK) {
prot_printf(C->pout, "%s NO \"SASL Error\"\r\n", tag);
reset_saslconn(C);
return;
}
C->userid = (char *) val;
syslog(LOG_NOTICE, "login: %s %s %s%s %s", C->clienthost, C->userid,
mech, C->tlsconn ? "+TLS" : "", "User logged in");
prot_printf(C->pout, "%s OK \"Authenticated\"\r\n", tag);
prot_setsasl(C->pin, C->saslconn);
prot_setsasl(C->pout, C->saslconn);
C->logfd = telemetry_log(C->userid, C->pin, C->pout, 1);
return;
}
/* Log the update out to anyone who is in our updatelist */
/* INVARIANT: caller MUST hold mailboxes_mutex */
/* oldlocation is the previous value of the location in this update,
thislocation is the current value of the mailbox's location */
static void log_update(const char *mailbox,
const char *oldlocation,
const char *thislocation)
{
struct conn *upc;
for (upc = updatelist; upc != NULL; upc = upc->updatelist_next) {
/* for each connection, add to pending list */
struct pending *p = (struct pending *) xmalloc(sizeof(struct pending));
p->next = NULL;
strlcpy(p->mailbox, mailbox, sizeof(p->mailbox));
/* this might need to be inside the mutex, but I doubt it */
if (upc->streaming_hosts
&& (!oldlocation || strarray_find(upc->streaming_hosts,
oldlocation, 0) < 0)
&& (!thislocation || strarray_find(upc->streaming_hosts,
thislocation, 0) < 0)) {
/* No Match! Continue! */
continue;
}
pthread_mutex_lock(&upc->m);
if ( upc->plist == NULL ) {
upc->plist = upc->ptail = p;
} else {
upc->ptail->next = p;
upc->ptail = p;
}
pthread_mutex_unlock(&upc->m);
}
}
static void cmd_set(struct conn *C,
const char *tag, const char *mailbox,
const char *location, const char *acl, enum settype t)
{
struct mbent *m;
char *oldlocation = NULL;
char *thislocation = NULL;
char *tmp;
/* Hold any output that we need to do */
enum {
EXISTS, NOTACTIVE, DOESNTEXIST, ISOK, NOOUTPUT
} msg = NOOUTPUT;
syslog(LOG_DEBUG, "cmd_set(fd:%d, %s)", C->fd, mailbox);
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
m = database_lookup(mailbox, NULL, NULL);
if (m && t == SET_RESERVE) {
/* Check if we run in a discrete murder topology */
if (config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_STANDARD) {
/* Replicated backends with the same server name issue
* reservations twice. Suppress bailing out on the second one
* (the replica).
*/
if (strcmp(m->location, location)) {
/* failed; mailbox already exists */
msg = EXISTS;
goto done;
}
}
/* otherwise do nothing (local create on master) */
}
if ((!m || m->t != SET_ACTIVE) && t == SET_DEACTIVATE) {
/* Check if we run in a discrete murder topology */
if (config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_STANDARD) {
/* Replicated backends with the same server name issue
* deactivation twice. Suppress bailing out on the second one
* (the replica).
*/
if (strcmp(m->location, location)) {
/* failed; mailbox not currently active */
msg = NOTACTIVE;
goto done;
}
}
} else if (t == SET_DEACTIVATE) {
t = SET_RESERVE;
}
if (t == SET_DELETE) {
if (!m) {
/* Check if we run in a discrete murder topology */
if (config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_STANDARD) {
/* Replicated backends with the same server name issue
* deletion twice. Suppress bailing out on the second one
* (the replica).
*/
if (strcmp(m->location, location)) {
/* failed; mailbox doesn't exist */
msg = DOESNTEXIST;
goto done;
}
}
/* otherwise do nothing (local delete on master) */
} else {
oldlocation = xstrdup(m->location);
/* do the deletion */
m->t = SET_DELETE;
}
} else {
if (m)
oldlocation = m->location;
if (m && (!acl || strlen(acl) < strlen(m->acl))) {
/* change what's already there -- the acl is smaller */
m->location = xstrdup(location);
if (acl) strcpy(m->acl, acl);
else m->acl[0] = '\0';
m->t = t;
} else {
char *thismailbox = m ? m->mailbox : xstrdup(mailbox);
struct mbent *newm;
/* allocate new mailbox */
if (acl) {
newm = xrealloc(m, sizeof(struct mbent) + strlen(acl));
} else {
newm = xrealloc(m, sizeof(struct mbent) + 1);
}
newm->mailbox = thismailbox;
newm->location = xstrdup(location);
if (acl) {
strcpy(newm->acl, acl);
} else {
newm->acl[0] = '\0';
}
newm->t = t;
/* re-scope */
m = newm;
}
}
/* write to disk */
if (m) database_log(m, NULL);
if (oldlocation) {
tmp = strchr(oldlocation, '!');
if (tmp) *tmp = '\0';
}
if (location) {
thislocation = xstrdup(location);
tmp = strchr(thislocation, '!');
if (tmp) *tmp = '\0';
}
/* post pending changes */
log_update(mailbox, oldlocation, thislocation);
msg = ISOK;
done:
if (thislocation) free(thislocation);
if (oldlocation) free(oldlocation);
free_mbent(m);
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
/* Delay output until here to avoid blocking while holding
* mailboxes_mutex */
switch(msg) {
case EXISTS:
prot_printf(C->pout, "%s NO \"mailbox already exists\"\r\n", tag);
break;
case NOTACTIVE:
prot_printf(C->pout, "%s NO \"mailbox not currently active\"\r\n",
tag);
break;
case DOESNTEXIST:
prot_printf(C->pout, "%s NO \"mailbox doesn't exist\"\r\n", tag);
break;
case ISOK:
prot_printf(C->pout, "%s OK \"done\"\r\n", tag);
break;
default:
break;
}
}
static void cmd_find(struct conn *C, const char *tag, const char *mailbox,
int send_ok, int send_delete)
{
struct mbent *m;
syslog(LOG_DEBUG, "cmd_find(fd:%d, %s)", C->fd, mailbox);
/* Only hold the mutex around database_lookup,
* since the mbent stays valid even if the database changes,
* and we don't want to block on network I/O */
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
m = database_lookup(mailbox, NULL, NULL);
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
if (m && m->t == SET_ACTIVE) {
prot_printf(C->pout,
"%s MAILBOX "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s\r\n",
tag,
strlen(m->mailbox), m->mailbox,
strlen(m->location), m->location,
strlen(m->acl), m->acl
);
} else if (m && m->t == SET_RESERVE) {
prot_printf(C->pout,
"%s RESERVE "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s\r\n",
tag,
strlen(m->mailbox), m->mailbox,
strlen(m->location), m->location
);
} else if (send_delete) {
/* not found, if needed, send a delete */
prot_printf(C->pout,
"%s DELETE "
"{" SIZE_T_FMT "+}\r\n%s\r\n",
tag,
strlen(mailbox), mailbox
);
}
free_mbent(m);
if (send_ok) {
prot_printf(C->pout, "%s OK \"Search completed\"\r\n", tag);
}
}
/* Callback for cmd_startupdate to be passed to mboxlist_allmbox. */
/* Requires that C->streaming be set to the tag to respond with */
static int sendupdate(const mbentry_t *mbentry, void *rock)
{
struct conn *C = (struct conn *)rock;
struct mbent *m;
if (!C) return -1;
m = database_lookup(mbentry->name, mbentry, NULL);
if (!m) return -1;
if (!C->list_prefix ||
!strncmp(m->location, C->list_prefix, C->list_prefix_len)) {
/* Either there is not a prefix to test, or we matched it */
if (!C->streaming_hosts ||
strarray_find(C->streaming_hosts, mbentry->server, 0) >= 0) {
switch (m->t) {
case SET_ACTIVE:
prot_printf(C->pout,
"%s MAILBOX "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s\r\n",
C->streaming,
strlen(m->mailbox), m->mailbox,
strlen(m->location), m->location,
strlen(m->acl), m->acl
);
break;
case SET_RESERVE:
prot_printf(C->pout,
"%s RESERVE "
"{" SIZE_T_FMT "+}\r\n%s "
"{" SIZE_T_FMT "+}\r\n%s\r\n",
C->streaming,
strlen(m->mailbox), m->mailbox,
strlen(m->location), m->location
);
break;
case SET_DELETE:
/* deleted item in the list !?! */
case SET_DEACTIVATE:
/* SET_DEACTIVATE is not a real value! */
abort();
}
}
}
free_mbent(m);
return 0;
}
static void cmd_list(struct conn *C, const char *tag, const char *host_prefix)
{
/* List operations can result in a lot of output, let's do this
* with the prot layer nonblocking so we don't hold the mutex forever*/
prot_NONBLOCK(C->pout);
/* indicate interest in updates */
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
/* since this isn't valid when streaming, just use the same callback */
C->streaming = tag;
C->list_prefix = host_prefix;
if (C->list_prefix) C->list_prefix_len = strlen(C->list_prefix);
else C->list_prefix_len = 0;
mboxlist_allmbox("", sendupdate, (void*)C, /*flags*/0);
C->streaming = NULL;
C->list_prefix = NULL;
C->list_prefix_len = 0;
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
prot_BLOCK(C->pout);
prot_flush(C->pout);
}
/*
* we've registered this connection for streaming, and every X seconds
* this will be invoked. note that we always send out updates as soon
* as we get a noop: that resets this counter back */
static struct prot_waitevent *sendupdates_evt(struct protstream *s __attribute__((unused)),
struct prot_waitevent *ev,
void *rock)
{
struct conn *C = (struct conn *) rock;
sendupdates(C, 1);
/* 'sendupdates()' will update when we next trigger */
return ev;
}
static void cmd_startupdate(struct conn *C, const char *tag,
strarray_t *partial)
{
/* initialize my condition variable */
/* The inital dump of the database can result in a lot of data,
* let's do this nonblocking */
prot_NONBLOCK(C->pout);
/* indicate interest in updates */
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
C->updatelist_next = updatelist;
updatelist = C;
C->streaming = xstrdup(tag);
C->streaming_hosts = partial;
/* dump initial list */
mboxlist_allmbox("", sendupdate, (void*)C, /*flags*/0);
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
prot_printf(C->pout, "%s OK \"streaming starts\"\r\n", tag);
prot_BLOCK(C->pout);
prot_flush(C->pout);
/* schedule our first update */
C->ev = prot_addwaitevent(C->pin, time(NULL) + update_wait,
sendupdates_evt, C);
}
/* send out any pending updates.
if 'flushnow' is set, flush the output buffer */
static void sendupdates(struct conn *C, int flushnow)
{
struct pending *p, *q;
pthread_mutex_lock(&C->m);
/* just grab the update list and release the lock */
p = C->plist;
C->plist = NULL;
C->ptail = NULL;
pthread_mutex_unlock(&C->m);
while (p != NULL) {
/* send update */
q = p;
p = p->next;
/* notify just like a FIND - except enable sending of DELETE
* notifications */
cmd_find(C, C->streaming, q->mailbox, 0, 1);
free(q);
}
/* reschedule event for 'update_wait' seconds */
C->ev->mark = time(NULL) + update_wait;
if (flushnow) {
prot_flush(C->pout);
}
}
#ifdef HAVE_SSL
static void cmd_starttls(struct conn *C, const char *tag)
{
int result;
result=tls_init_serverengine("mupdate",
5, /* depth to verify */
1, /* can client auth? */
NULL);
if (result == -1) {
syslog(LOG_ERR, "error initializing TLS");
prot_printf(C->pout, "%s NO Error initializing TLS\r\n", tag);
return;
}
prot_printf(C->pout, "%s OK Begin TLS negotiation now\r\n", tag);
/* must flush our buffers before starting tls */
prot_flush(C->pout);
result=tls_start_servertls(C->pin->fd, /* read */
C->pout->fd, /* write */
180, /* 3 minutes */
&C->saslprops,
&C->tlsconn);
/* if error */
if (result==-1) {
prot_printf(C->pout, "%s NO Starttls negotiation failed\r\n",
tag);
syslog(LOG_NOTICE, "STARTTLS negotiation failed: %s",
C->clienthost);
return;
}
/* tell SASL about the negotiated layer */
result = saslprops_set_tls(&C->saslprops, C->saslconn);
if (result != SASL_OK) {
fatal("saslprops_set_tls() failed: cmd_starttls()", EX_TEMPFAIL);
}
/* tell the prot layer about our new layers */
prot_settls(C->pin, C->tlsconn);
prot_settls(C->pout, C->tlsconn);
#if (OPENSSL_VERSION_NUMBER >= 0x0090800fL)
C->tls_comp = (void *) SSL_get_current_compression(C->tlsconn);
#endif
/* Reissue capability banner */
dobanner(C);
}
#else
void cmd_starttls(struct conn *C __attribute__((unused)),
const char *tag __attribute__((unused)))
{
fatal("cmd_starttls() executed, but starttls isn't implemented!",
EX_SOFTWARE);
}
#endif /* HAVE_SSL */
#ifdef HAVE_ZLIB
static void cmd_compress(struct conn *C, const char *tag, const char *alg)
{
if (C->compress_done) {
prot_printf(C->pout,
"%s BAD DEFLATE active via COMPRESS\r\n", tag);
}
#if defined(HAVE_SSL) && (OPENSSL_VERSION_NUMBER >= 0x0090800fL)
else if (C->tls_comp) {
prot_printf(C->pout,
"%s NO %s active via TLS\r\n",
tag, SSL_COMP_get_name(C->tls_comp));
}
#endif
else if (strcasecmp(alg, "DEFLATE")) {
prot_printf(C->pout,
"%s NO Unknown COMPRESS algorithm: %s\r\n", tag, alg);
}
else if (ZLIB_VERSION[0] != zlibVersion()[0]) {
prot_printf(C->pout,
"%s NO Error initializing %s (incompatible zlib version)\r\n",
tag, alg);
}
else {
prot_printf(C->pout,
"%s OK %s active\r\n", tag, alg);
/* enable (de)compression for the prot layer */
prot_setcompress(C->pin);
prot_setcompress(C->pout);
C->compress_done = 1;
}
}
#else
void cmd_compress(struct conn *C __attribute__((unused)),
const char *tag __attribute__((unused)),
const char *alg __attribute__((unused)))
{
fatal("cmd_compress() executed, but COMPRESS isn't implemented!",
EX_SOFTWARE);
}
#endif /* HAVE_ZLIB */
void shut_down(int code) __attribute__((noreturn));
void shut_down(int code)
{
in_shutdown = 1;
cyrus_done();
exit(code);
}
/* Reset the given sasl_conn_t to a sane state */
static int reset_saslconn(struct conn *c)
{
int ret;
sasl_security_properties_t *secprops = NULL;
sasl_dispose(&c->saslconn);
/* do initialization typical of service_main */
ret = sasl_server_new("mupdate", config_servername, NULL,
buf_cstringnull_ifempty(&c->saslprops.iplocalport),
buf_cstringnull_ifempty(&c->saslprops.ipremoteport),
NULL, 0, &c->saslconn);
if (ret != SASL_OK) return ret;
secprops = mysasl_secprops(SASL_SEC_NOANONYMOUS);
ret = sasl_setprop(c->saslconn, SASL_SEC_PROPS, secprops);
if (ret != SASL_OK) return ret;
/* end of service_main initialization excepting SSF */
/* If we have TLS/SSL info, set it */
if (c->saslprops.ssf) {
ret = saslprops_set_tls(&c->saslprops, c->saslconn);
}
if (ret != SASL_OK) return ret;
/* End TLS/SSL Info */
return SASL_OK;
}
int cmd_change(struct mupdate_mailboxdata *mdata,
const char *rock, void *context __attribute__((unused)))
{
struct mbent *m = NULL;
char *oldlocation = NULL;
char *thislocation = NULL;
char *tmp;
enum settype t = -1;
int ret = 0;
if (!mdata || !rock || !mdata->mailbox) return 1;
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
if (!strncmp(rock, "DELETE", 6)) {
m = database_lookup(mdata->mailbox, NULL, NULL);
if (!m) {
syslog(LOG_DEBUG, "attempt to delete unknown mailbox %s",
mdata->mailbox);
/* Mailbox doesn't exist - this isn't as fatal as you might
* think. */
/* ret = -1; */
goto done;
}
m->t = t = SET_DELETE;
oldlocation = xstrdup(m->location);
} else {
m = database_lookup(mdata->mailbox, NULL, NULL);
if (m)
oldlocation = m->location;
if (m && (!mdata->acl || strlen(mdata->acl) < strlen(m->acl))) {
/* change what's already there */
/* old m->location freed when oldlocation is freed */
m->location = xstrdup(mdata->location);
if (mdata->acl) strcpy(m->acl, mdata->acl);
else m->acl[0] = '\0';
if (!strncmp(rock, "MAILBOX", 6)) {
m->t = t = SET_ACTIVE;
} else if (!strncmp(rock, "RESERVE", 7)) {
m->t = t = SET_RESERVE;
} else {
syslog(LOG_DEBUG,
"bad mupdate command in cmd_change: %s", rock);
ret = 1;
goto done;
}
} else {
struct mbent *newm;
if (m) {
free(m->mailbox);
/* m->location freed when oldlocation freed */
}
/* allocate new mailbox */
if (mdata->acl) {
newm = xrealloc(m, sizeof(struct mbent) + strlen(mdata->acl));
} else {
newm = xrealloc(m, sizeof(struct mbent) + 1);
}
newm->mailbox = xstrdup(mdata->mailbox);
newm->location = xstrdup(mdata->location);
if (mdata->acl) {
strcpy(newm->acl, mdata->acl);
} else {
newm->acl[0] = '\0';
}
if (!strncmp(rock, "MAILBOX", 6)) {
newm->t = t = SET_ACTIVE;
} else if (!strncmp(rock, "RESERVE", 7)) {
newm->t = t = SET_RESERVE;
} else {
syslog(LOG_DEBUG,
"bad mupdate command in cmd_change: %s", rock);
ret = 1;
goto done;
}
/* Bring it back into scope */
m = newm;
}
}
/* write to disk */
database_log(m, NULL);
if (oldlocation) {
tmp = strchr(oldlocation, '!');
if (tmp) *tmp = '\0';
}
if (mdata->location) {
thislocation = xstrdup(mdata->location);
tmp = strchr(thislocation, '!');
if (tmp) *tmp = '\0';
}
/* post pending changes to anyone we are talking to */
log_update(mdata->mailbox, oldlocation, thislocation);
done:
if (oldlocation) free(oldlocation);
if (thislocation) free(thislocation);
free_mbent(m);
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
return ret;
}
struct sync_rock
{
struct mpool *pool;
struct mbent_queue *boxes;
};
/* Read a series of MAILBOX and RESERVE commands and tack them onto a
* queue */
static int cmd_resync(struct mupdate_mailboxdata *mdata,
const char *rock, void *context)
{
struct sync_rock *r = (struct sync_rock *)context;
struct mbent_queue *remote_boxes = r->boxes;
struct mbent *newm = NULL;
if (!mdata || !rock || !mdata->mailbox || !remote_boxes) return 1;
/* allocate new mailbox */
if (mdata->acl) {
newm = mpool_malloc(r->pool,sizeof(struct mbent) + strlen(mdata->acl));
} else {
newm = mpool_malloc(r->pool,sizeof(struct mbent) + 1);
}
newm->mailbox = mpool_strdup(r->pool, mdata->mailbox);
newm->location = mpool_strdup(r->pool, mdata->location);
if (mdata->acl) {
strcpy(newm->acl, mdata->acl);
} else {
newm->acl[0] = '\0';
}
if (!strncmp(rock, "MAILBOX", 6)) {
newm->t = SET_ACTIVE;
} else if (!strncmp(rock, "RESERVE", 7)) {
newm->t = SET_RESERVE;
} else {
syslog(LOG_NOTICE,
"bad mupdate command in cmd_resync: %s", rock);
return 1;
}
/* Insert onto queue */
newm->next = NULL;
*(remote_boxes->tail) = newm;
remote_boxes->tail = &(newm->next);
return 0;
}
/* Callback for mupdate_synchronize to be passed to mboxlist_allmbox. */
static int sync_findall_cb(const mbentry_t *mbentry, void *rock)
{
struct sync_rock *r = (struct sync_rock *)rock;
struct mbent_queue *local_boxes = (struct mbent_queue *)r->boxes;
struct mbent *m;
if (!local_boxes) return 1;
m = database_lookup(mbentry->name, mbentry, r->pool);
/* If it doesn't exist, fine... */
if (!m) return 0;
m->next = NULL;
*(local_boxes->tail) = m;
local_boxes->tail = &(m->next);
return 0;
}
int mupdate_synchronize_remote(mupdate_handle *handle,
struct mbent_queue *remote_boxes,
struct mpool *pool)
{
struct sync_rock rock;
if (!handle || !handle->saslcompleted) return 1;
rock.pool = pool;
/* ask mupdate master for updates and set nonblocking */
prot_printf(handle->conn->out, "U01 UPDATE\r\n");
syslog(LOG_NOTICE,
"scarfing mailbox list from master mupdate server");
remote_boxes->head = NULL;
remote_boxes->tail = &(remote_boxes->head);
rock.boxes = remote_boxes;
/* If there is a fatal error, return, other errors ignore */
if (mupdate_scarf(handle, cmd_resync, &rock, 1, NULL) != 0) {
struct mbent *p=remote_boxes->head, *p_next=NULL;
while(p) {
p_next = p->next;
p = p_next;
}
return 1;
}
/* Make socket nonblocking now */
prot_NONBLOCK(handle->conn->in);
return 0;
}
int mupdate_synchronize(struct mbent_queue *remote_boxes, struct mpool *pool)
{
struct mbent_queue local_boxes;
struct mbent *l,*r;
struct sync_rock rock;
struct txn *tid = NULL;
int ret = 0;
int err = 0;
char *c;
rock.pool = pool;
/* Note that this prevents other people from running an UPDATE against
* us for the duration. this is a GOOD THING */
pthread_mutex_lock(&mailboxes_mutex); /* LOCK */
syslog(LOG_NOTICE,
"synchronizing mailbox list with master mupdate server");
local_boxes.head = NULL;
local_boxes.tail = &(local_boxes.head);
rock.boxes = &local_boxes;
mboxlist_allmbox("", sync_findall_cb, (void*)&rock, /*flags*/0);
/* Traverse both lists, compare the names */
/* If they match, ensure that location and acl are correct, if so,
move on, if not, fix them */
/* If the local is before the next remote, delete it */
/* If the next remote is before the local, insert it and try again */
for(l = local_boxes.head, r = remote_boxes->head; l && r;
l = local_boxes.head, r = remote_boxes->head)
{
int ret = strcmp(l->mailbox, r->mailbox);
if (!ret) {
/* Match */
if (l->t != r->t ||
strcmp(l->location, r->location) ||
strcmp(l->acl,r->acl)) {
/* Something didn't match, replace it */
/*
* If this is a locally hosted mailbox, don't make a
* change, just warn.
*/
if ((config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_UNIFIED) &&
(strchr( l->location, '!' ) == NULL )) {
syslog(LOG_ERR, "local mailbox %s wrong in mailbox list",
l->mailbox );
err++;
} else {
mbentry_t *mbentry = mboxlist_entry_create();
mbentry->name = xstrdupnull(r->mailbox);
mbentry->mbtype |= (r->t == SET_RESERVE ? MBTYPE_RESERVE : 0);
mbentry->server = xstrdupnull(r->location);
c = strchr(mbentry->server, '!');
if (c) {
*c++ = '\0';
mbentry->partition = xstrdupnull(c);
}
mbentry->acl = xstrdupnull(r->acl);
mboxlist_insertremote(mbentry, &tid);
mboxlist_entry_free(&mbentry);
}
}
/* Okay, dump these two */
local_boxes.head = l->next;
remote_boxes->head = r->next;
} else if (ret < 0) {
/* Local without corresponding remote, delete it */
/*
* In a unified murder, we don't want to delete locally
* hosted mailboxes during mupdate's resync process.
* If that sort of operation appears necessary, it
* probably requires an operator to review it --
* ctl_mboxlist is the right place to fix the kind
* of configuration error implied.
*
* A similar problem exists when the location thinks
* it is locally hosting a mailbox, but mupdate master
* thinks it's somewhere else.
*/
if ((config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_UNIFIED) &&
(strchr( l->location, '!' ) == NULL )) {
syslog(LOG_ERR, "local mailbox %s not in mailbox list",
l->mailbox );
err++;
} else {
mboxlist_deleteremote(l->mailbox, &tid);
}
local_boxes.head = l->next;
} else /* (ret > 0) */ {
/* Remote without corresponding local, insert it */
mbentry_t *mbentry = mboxlist_entry_create();
mbentry->name = xstrdupnull(r->mailbox);
mbentry->mbtype |= (r->t == SET_RESERVE ? MBTYPE_RESERVE : 0);
mbentry->server = xstrdupnull(r->location);
c = strchr(mbentry->server, '!');
if (c) {
*c++ = '\0';
mbentry->partition = xstrdupnull(c);
}
mbentry->acl = xstrdupnull(r->acl);
mboxlist_insertremote(mbentry, &tid);
mboxlist_entry_free(&mbentry);
remote_boxes->head = r->next;
}
}
if (l && !r) {
/* we have more deletes to do */
while(l) {
if ((config_mupdate_config == IMAP_ENUM_MUPDATE_CONFIG_UNIFIED) &&
(strchr( l->location, '!' ) == NULL )) {
syslog(LOG_ERR, "local mailbox %s not in mailbox list",
l->mailbox );
err++;
} else {
mboxlist_deleteremote(l->mailbox, &tid);
}
local_boxes.head = l->next;
l = local_boxes.head;
}
} else if (r && !l) {
/* we have more inserts to do */
while (r) {
mbentry_t *mbentry = mboxlist_entry_create();
mbentry->name = xstrdupnull(r->mailbox);
mbentry->mbtype |= (r->t == SET_RESERVE ? MBTYPE_RESERVE : 0);
mbentry->server = xstrdupnull(r->location);
c = strchr(mbentry->server, '!');
if (c) {
*c++ = '\0';
mbentry->partition = xstrdupnull(c);
}
mbentry->acl = xstrdupnull(r->acl);
mboxlist_insertremote(mbentry, &tid);
mboxlist_entry_free(&mbentry);
remote_boxes->head = r->next;
r = remote_boxes->head;
}
}
if (tid) mboxlist_commit(tid);
/* All up to date! */
if ( err ) {
syslog(LOG_ERR, "mailbox list synchronization NOT complete (%d) errors",
err);
} else {
syslog(LOG_NOTICE, "mailbox list synchronization complete");
}
pthread_mutex_unlock(&mailboxes_mutex); /* UNLOCK */
return ret;
}
void mupdate_signal_db_synced(void)
{
pthread_mutex_lock(&synced_mutex);
synced = 1;
pthread_cond_broadcast(&synced_cond);
pthread_mutex_unlock(&synced_mutex);
}
void mupdate_ready(void)
{
pthread_mutex_lock(&ready_for_connections_mutex);
if (ready_for_connections) {
syslog(LOG_CRIT, "mupdate_ready called when already ready");
fatal("mupdate_ready called when already ready", EX_TEMPFAIL);
}
ready_for_connections = 1;
pthread_cond_broadcast(&ready_for_connections_cond);
pthread_mutex_unlock(&ready_for_connections_mutex);
}
/* Signal unreadyness. Next active worker will kill off all idle connections.
* any non-idle connection will die off when it leaves docmd() */
void mupdate_unready(void)
{
pthread_mutex_lock(&ready_for_connections_mutex);
syslog(LOG_NOTICE, "unready for connections");
ready_for_connections = 0;
pthread_mutex_unlock(&ready_for_connections_mutex);
}
/* Used to free malloc'd mbent's (not for mpool'd mbents) */
void free_mbent(struct mbent *p)
{
if (!p) return;
free(p->location);
free(p->mailbox);
free(p);
}
|