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 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811
|
/*
* server.c -- nsd(8) network input/output
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
*
* See LICENSE for the license.
*
*/
#include "config.h"
#include <sys/types.h>
#include <sys/param.h>
#include <limits.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <netinet/in.h>
#ifdef USE_TCP_FASTOPEN
#include <netinet/tcp.h>
#endif
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <netdb.h>
#include <poll.h>
#ifdef HAVE_SYS_RANDOM_H
#include <sys/random.h>
#endif
#ifndef SHUT_WR
#define SHUT_WR 1
#endif
#ifdef HAVE_MMAP
#include <sys/mman.h>
#endif /* HAVE_MMAP */
#ifdef HAVE_OPENSSL_RAND_H
#include <openssl/rand.h>
#endif
#ifdef HAVE_OPENSSL_SSL_H
#include <openssl/ssl.h>
#endif
#ifdef HAVE_OPENSSL_ERR_H
#include <openssl/err.h>
#endif
#ifdef HAVE_OPENSSL_OCSP_H
#include <openssl/ocsp.h>
#endif
#ifndef USE_MINI_EVENT
# ifdef HAVE_EVENT_H
# include <event.h>
# else
# include <event2/event.h>
# include "event2/event_struct.h"
# include "event2/event_compat.h"
# endif
#else
# include "mini_event.h"
#endif
#include "axfr.h"
#include "namedb.h"
#include "netio.h"
#include "xfrd.h"
#include "xfrd-tcp.h"
#include "xfrd-disk.h"
#include "difffile.h"
#include "nsec3.h"
#include "ipc.h"
#include "udb.h"
#include "remote.h"
#include "lookup3.h"
#include "rrl.h"
#include "ixfr.h"
#ifdef USE_DNSTAP
#include "dnstap/dnstap_collector.h"
#endif
#include "verify.h"
#include "util/proxy_protocol.h"
#ifdef USE_XDP
#include "xdp-server.h"
#endif
#ifdef USE_METRICS
#include "metrics.h"
#endif /* USE_METRICS */
#define RELOAD_SYNC_TIMEOUT 25 /* seconds */
#ifdef USE_DNSTAP
/*
* log_addr() - the function to print sockaddr_in/sockaddr_in6 structures content
* just like its done in Unbound via the same log_addr(VERB_LEVEL, const char*, sockaddr_storage*)
*/
static void
log_addr(const char* descr,
#ifdef INET6
struct sockaddr_storage* addr
#else
struct sockaddr_in* addr
#endif
)
{
char str_buf[64];
if(verbosity < 6)
return;
if(
#ifdef INET6
addr->ss_family == AF_INET
#else
addr->sin_family == AF_INET
#endif
) {
struct sockaddr_in* s = (struct sockaddr_in*)addr;
inet_ntop(AF_INET, &s->sin_addr.s_addr, str_buf, sizeof(str_buf));
VERBOSITY(6, (LOG_INFO, "%s: address is: %s, port is: %d", descr, str_buf, ntohs(s->sin_port)));
#ifdef INET6
} else {
struct sockaddr_in6* s6 = (struct sockaddr_in6*)addr;
inet_ntop(AF_INET6, &s6->sin6_addr.s6_addr, str_buf, sizeof(str_buf));
VERBOSITY(6, (LOG_INFO, "%s: address is: %s, port is: %d", descr, str_buf, ntohs(s6->sin6_port)));
#endif
}
}
#endif /* USE_DNSTAP */
#ifdef USE_TCP_FASTOPEN
#define TCP_FASTOPEN_FILE "/proc/sys/net/ipv4/tcp_fastopen"
#define TCP_FASTOPEN_SERVER_BIT_MASK 0x2
#endif
/* header state for the PROXYv2 header (for TCP) */
enum pp2_header_state {
/* no header encounter yet */
pp2_header_none = 0,
/* read the static part of the header */
pp2_header_init,
/* read the full header */
pp2_header_done
};
/*
* Data for the UDP handlers.
*/
struct udp_handler_data
{
struct nsd *nsd;
struct nsd_socket *socket;
struct event event;
/* if set, PROXYv2 is expected on this connection */
int pp2_enabled;
};
struct tcp_accept_handler_data {
struct nsd *nsd;
struct nsd_socket *socket;
int event_added;
struct event event;
#ifdef HAVE_SSL
/* handler accepts TLS connections on the dedicated port */
int tls_accept;
int tls_auth_accept;
#endif
/* if set, PROXYv2 is expected on this connection */
int pp2_enabled;
};
#ifdef USE_XDP
struct xdp_handler_data {
struct nsd *nsd;
struct xdp_server *server;
struct event event;
};
#endif
/*
* These globals are used to enable the TCP accept handlers
* when the number of TCP connection drops below the maximum
* number of TCP connections.
*/
static size_t tcp_accept_handler_count;
static struct tcp_accept_handler_data *tcp_accept_handlers;
static struct event slowaccept_event;
static int slowaccept;
#ifdef HAVE_SSL
static unsigned char *ocspdata = NULL;
static long ocspdata_len = 0;
#endif
#ifdef NONBLOCKING_IS_BROKEN
/* Define NUM_RECV_PER_SELECT to 1 (one) to avoid opportunistically trying to
read multiple times from a socket when reported ready by select. */
# define NUM_RECV_PER_SELECT (1)
#else /* !NONBLOCKING_IS_BROKEN */
# define NUM_RECV_PER_SELECT (100)
#endif /* NONBLOCKING_IS_BROKEN */
#ifndef HAVE_MMSGHDR
struct mmsghdr {
struct msghdr msg_hdr;
unsigned int msg_len;
};
#endif
static struct mmsghdr msgs[NUM_RECV_PER_SELECT];
static struct iovec iovecs[NUM_RECV_PER_SELECT];
static struct query *queries[NUM_RECV_PER_SELECT];
#ifdef USE_XDP
static struct query *xdp_queries[XDP_RX_BATCH_SIZE];
#endif
/*
* Data for the TCP connection handlers.
*
* The TCP handlers use non-blocking I/O. This is necessary to avoid
* blocking the entire server on a slow TCP connection, but does make
* reading from and writing to the socket more complicated.
*
* Basically, whenever a read/write would block (indicated by the
* EAGAIN errno variable) we remember the position we were reading
* from/writing to and return from the TCP reading/writing event
* handler. When the socket becomes readable/writable again we
* continue from the same position.
*/
struct tcp_handler_data
{
/*
* The region used to allocate all TCP connection related
* data, including this structure. This region is destroyed
* when the connection is closed.
*/
region_type* region;
/*
* The global nsd structure.
*/
struct nsd* nsd;
/*
* The current query data for this TCP connection.
*/
query_type* query;
/*
* The query_state is used to remember if we are performing an
* AXFR, if we're done processing, or if we should discard the
* query and connection.
*/
query_state_type query_state;
/*
* The event for the file descriptor and tcp timeout
*/
struct event event;
/*
* The bytes_transmitted field is used to remember the number
* of bytes transmitted when receiving or sending a DNS
* packet. The count includes the two additional bytes used
* to specify the packet length on a TCP connection.
*/
size_t bytes_transmitted;
/* If the query is restarted and needs a reset */
int query_needs_reset;
/*
* The number of queries handled by this specific TCP connection.
*/
int query_count;
/*
* The timeout in msec for this tcp connection
*/
int tcp_timeout;
/*
* If the connection is allowed to have further queries on it.
*/
int tcp_no_more_queries;
#ifdef USE_DNSTAP
/* the socket of the accept socket to find proper service (local) address the socket is bound to. */
struct nsd_socket *socket;
#endif /* USE_DNSTAP */
/* if set, PROXYv2 is expected on this connection */
int pp2_enabled;
/* header state for the PROXYv2 header (for TCP) */
enum pp2_header_state pp2_header_state;
#ifdef HAVE_SSL
/*
* TLS objects.
*/
SSL* tls;
SSL* tls_auth;
/*
* TLS handshake state.
*/
enum { tls_hs_none, tls_hs_read, tls_hs_write,
tls_hs_read_event, tls_hs_write_event } shake_state;
#endif
/* list of connections, for service of remaining tcp channels */
struct tcp_handler_data *prev, *next;
};
/* global that is the list of active tcp channels */
static struct tcp_handler_data *tcp_active_list = NULL;
/*
* Handle incoming queries on the UDP server sockets.
*/
static void handle_udp(int fd, short event, void* arg);
/*
* Handle incoming connections on the TCP sockets. These handlers
* usually wait for the NETIO_EVENT_READ event (indicating an incoming
* connection) but are disabled when the number of current TCP
* connections is equal to the maximum number of TCP connections.
* Disabling is done by changing the handler to wait for the
* NETIO_EVENT_NONE type. This is done using the function
* configure_tcp_accept_handlers.
*/
static void handle_tcp_accept(int fd, short event, void* arg);
/*
* Handle incoming queries on a TCP connection. The TCP connections
* are configured to be non-blocking and the handler may be called
* multiple times before a complete query is received.
*/
static void handle_tcp_reading(int fd, short event, void* arg);
/*
* Handle outgoing responses on a TCP connection. The TCP connections
* are configured to be non-blocking and the handler may be called
* multiple times before a complete response is sent.
*/
static void handle_tcp_writing(int fd, short event, void* arg);
#ifdef HAVE_SSL
/* Create SSL object and associate fd */
static SSL* incoming_ssl_fd(SSL_CTX* ctx, int fd);
/*
* Handle TLS handshake. May be called multiple times if incomplete.
*/
static int tls_handshake(struct tcp_handler_data* data, int fd, int writing);
/*
* Handle incoming queries on a TLS over TCP connection. The TLS
* connections are configured to be non-blocking and the handler may
* be called multiple times before a complete query is received.
*/
static void handle_tls_reading(int fd, short event, void* arg);
/*
* Handle outgoing responses on a TLS over TCP connection. The TLS
* connections are configured to be non-blocking and the handler may
* be called multiple times before a complete response is sent.
*/
static void handle_tls_writing(int fd, short event, void* arg);
#endif
#ifdef USE_XDP
static void handle_xdp(int fd, short event, void* arg);
#endif
/*
* Send all children the quit nonblocking, then close pipe.
*/
static void send_children_quit(struct nsd* nsd);
/* same, for shutdown time, waits for child to exit to avoid restart issues */
static void send_children_quit_and_wait(struct nsd* nsd);
/* set childrens flags to send NSD_STATS to them */
#ifdef BIND8_STATS
static void set_children_stats(struct nsd* nsd);
#endif /* BIND8_STATS */
/*
* Change the event types the HANDLERS are interested in to EVENT_TYPES.
*/
static void configure_handler_event_types(short event_types);
static uint16_t *compressed_dname_offsets = 0;
static uint32_t compression_table_capacity = 0;
static uint32_t compression_table_size = 0;
static domain_type* compressed_dnames[MAXRRSPP];
#ifdef USE_TCP_FASTOPEN
/* Checks to see if the kernel value must be manually changed in order for
TCP Fast Open to support server mode */
static void report_tcp_fastopen_config() {
int tcp_fastopen_fp;
uint8_t tcp_fastopen_value;
if ( (tcp_fastopen_fp = open(TCP_FASTOPEN_FILE, O_RDONLY)) == -1 ) {
log_msg(LOG_INFO,"Error opening " TCP_FASTOPEN_FILE ": %s\n", strerror(errno));
}
if (read(tcp_fastopen_fp, &tcp_fastopen_value, 1) == -1 ) {
log_msg(LOG_INFO,"Error reading " TCP_FASTOPEN_FILE ": %s\n", strerror(errno));
close(tcp_fastopen_fp);
}
if (!(tcp_fastopen_value & TCP_FASTOPEN_SERVER_BIT_MASK)) {
log_msg(LOG_WARNING, "Error: TCP Fast Open support is available and configured in NSD by default.\n");
log_msg(LOG_WARNING, "However the kernel parameters are not configured to support TCP_FASTOPEN in server mode.\n");
log_msg(LOG_WARNING, "To enable TFO use the command:");
log_msg(LOG_WARNING, " 'sudo sysctl -w net.ipv4.tcp_fastopen=2' for pure server mode or\n");
log_msg(LOG_WARNING, " 'sudo sysctl -w net.ipv4.tcp_fastopen=3' for both client and server mode\n");
log_msg(LOG_WARNING, "NSD will not have TCP Fast Open available until this change is made.\n");
close(tcp_fastopen_fp);
}
close(tcp_fastopen_fp);
}
#endif
/*
* Remove the specified pid from the list of child pids. Returns -1 if
* the pid is not in the list, child_num otherwise. The field is set to 0.
*/
static int
delete_child_pid(struct nsd *nsd, pid_t pid)
{
size_t i;
for (i = 0; i < nsd->child_count; ++i) {
if (nsd->children[i].pid == pid) {
nsd->children[i].pid = 0;
if(!nsd->children[i].need_to_exit) {
if(nsd->children[i].child_fd != -1)
close(nsd->children[i].child_fd);
nsd->children[i].child_fd = -1;
if(nsd->children[i].handler)
nsd->children[i].handler->fd = -1;
}
return i;
}
}
return -1;
}
/*
* Restart child servers if necessary.
*/
static int
restart_child_servers(struct nsd *nsd, region_type* region, netio_type* netio,
int* xfrd_sock_p)
{
size_t i;
int sv[2];
/* Fork the child processes... */
for (i = 0; i < nsd->child_count; ++i) {
if (nsd->children[i].pid <= 0) {
if (nsd->children[i].child_fd != -1)
close(nsd->children[i].child_fd);
if (socketpair(AF_UNIX, SOCK_STREAM, 0, sv) == -1) {
log_msg(LOG_ERR, "socketpair: %s",
strerror(errno));
return -1;
}
nsd->children[i].child_fd = sv[0];
nsd->children[i].parent_fd = sv[1];
nsd->children[i].pid = fork();
switch (nsd->children[i].pid) {
default: /* SERVER MAIN */
close(nsd->children[i].parent_fd);
nsd->children[i].parent_fd = -1;
if (fcntl(nsd->children[i].child_fd, F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "cannot fcntl pipe: %s", strerror(errno));
}
if(!nsd->children[i].handler)
{
struct main_ipc_handler_data *ipc_data;
ipc_data = (struct main_ipc_handler_data*) region_alloc(
region, sizeof(struct main_ipc_handler_data));
ipc_data->nsd = nsd;
ipc_data->child = &nsd->children[i];
nsd->children[i].handler = (struct netio_handler*) region_alloc(
region, sizeof(struct netio_handler));
nsd->children[i].handler->fd = nsd->children[i].child_fd;
nsd->children[i].handler->timeout = NULL;
nsd->children[i].handler->user_data = ipc_data;
nsd->children[i].handler->event_types = NETIO_EVENT_READ;
nsd->children[i].handler->event_handler = parent_handle_child_command;
netio_add_handler(netio, nsd->children[i].handler);
}
/* restart - update fd */
nsd->children[i].handler->fd = nsd->children[i].child_fd;
break;
case 0: /* CHILD */
#ifdef MEMCLEAN /* OS collects memory pages */
region_destroy(region);
#endif
nsd->pid = 0;
nsd->child_count = 0;
nsd->server_kind = nsd->children[i].kind;
nsd->this_child = &nsd->children[i];
nsd->this_child->child_num = i;
/* remove signal flags inherited from parent
the parent will handle them. */
nsd->signal_hint_reload_hup = 0;
nsd->signal_hint_reload = 0;
nsd->signal_hint_child = 0;
nsd->signal_hint_quit = 0;
nsd->signal_hint_shutdown = 0;
nsd->signal_hint_stats = 0;
nsd->signal_hint_statsusr = 0;
close(*xfrd_sock_p);
close(nsd->this_child->child_fd);
nsd->this_child->child_fd = -1;
if (fcntl(nsd->this_child->parent_fd, F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "cannot fcntl pipe: %s", strerror(errno));
}
server_child(nsd);
/* NOTREACH */
exit(0);
case -1:
log_msg(LOG_ERR, "fork failed: %s",
strerror(errno));
return -1;
}
}
}
return 0;
}
#ifdef BIND8_STATS
static void set_bind8_alarm(struct nsd* nsd)
{
/* resync so that the next alarm is on the next whole minute */
if(nsd->st_period > 0) /* % by 0 gives divbyzero error */
alarm(nsd->st_period - (time(NULL) % nsd->st_period));
}
#endif
/* set zone stat ids for zones initially read in */
static void
zonestatid_tree_set(struct nsd* nsd)
{
struct radnode* n;
for(n=radix_first(nsd->db->zonetree); n; n=radix_next(n)) {
zone_type* zone = (zone_type*)n->elem;
zone->zonestatid = getzonestatid(nsd->options, zone->opts);
}
}
#ifdef USE_ZONE_STATS
void
server_zonestat_alloc(struct nsd* nsd)
{
size_t num = (nsd->options->zonestatnames->count==0?1:
nsd->options->zonestatnames->count);
size_t sz = sizeof(struct nsdst)*num;
char tmpfile[256];
uint8_t z = 0;
/* file names */
nsd->zonestatfname[0] = 0;
nsd->zonestatfname[1] = 0;
snprintf(tmpfile, sizeof(tmpfile), "%snsd-xfr-%d/nsd.%u.zstat.0",
nsd->options->xfrdir, (int)getpid(), (unsigned)getpid());
nsd->zonestatfname[0] = region_strdup(nsd->region, tmpfile);
snprintf(tmpfile, sizeof(tmpfile), "%snsd-xfr-%d/nsd.%u.zstat.1",
nsd->options->xfrdir, (int)getpid(), (unsigned)getpid());
nsd->zonestatfname[1] = region_strdup(nsd->region, tmpfile);
/* file descriptors */
nsd->zonestatfd[0] = open(nsd->zonestatfname[0], O_CREAT|O_RDWR, 0600);
if(nsd->zonestatfd[0] == -1) {
log_msg(LOG_ERR, "cannot create %s: %s", nsd->zonestatfname[0],
strerror(errno));
exit(1);
}
nsd->zonestatfd[1] = open(nsd->zonestatfname[1], O_CREAT|O_RDWR, 0600);
if(nsd->zonestatfd[1] == -1) {
log_msg(LOG_ERR, "cannot create %s: %s", nsd->zonestatfname[1],
strerror(errno));
close(nsd->zonestatfd[0]);
unlink(nsd->zonestatfname[0]);
exit(1);
}
#ifdef HAVE_MMAP
if(lseek(nsd->zonestatfd[0], (off_t)sz-1, SEEK_SET) == -1) {
log_msg(LOG_ERR, "lseek %s: %s", nsd->zonestatfname[0],
strerror(errno));
exit(1);
}
if(write(nsd->zonestatfd[0], &z, 1) == -1) {
log_msg(LOG_ERR, "cannot extend stat file %s (%s)",
nsd->zonestatfname[0], strerror(errno));
exit(1);
}
if(lseek(nsd->zonestatfd[1], (off_t)sz-1, SEEK_SET) == -1) {
log_msg(LOG_ERR, "lseek %s: %s", nsd->zonestatfname[1],
strerror(errno));
exit(1);
}
if(write(nsd->zonestatfd[1], &z, 1) == -1) {
log_msg(LOG_ERR, "cannot extend stat file %s (%s)",
nsd->zonestatfname[1], strerror(errno));
exit(1);
}
nsd->zonestat[0] = (struct nsdst*)mmap(NULL, sz, PROT_READ|PROT_WRITE,
MAP_SHARED, nsd->zonestatfd[0], 0);
if(nsd->zonestat[0] == MAP_FAILED) {
log_msg(LOG_ERR, "mmap failed: %s", strerror(errno));
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
exit(1);
}
nsd->zonestat[1] = (struct nsdst*)mmap(NULL, sz, PROT_READ|PROT_WRITE,
MAP_SHARED, nsd->zonestatfd[1], 0);
if(nsd->zonestat[1] == MAP_FAILED) {
log_msg(LOG_ERR, "mmap failed: %s", strerror(errno));
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
exit(1);
}
memset(nsd->zonestat[0], 0, sz);
memset(nsd->zonestat[1], 0, sz);
nsd->zonestatsize[0] = num;
nsd->zonestatsize[1] = num;
nsd->zonestatdesired = num;
nsd->zonestatsizenow = num;
nsd->zonestatnow = nsd->zonestat[0];
#endif /* HAVE_MMAP */
}
void
zonestat_remap(struct nsd* nsd, int idx, size_t sz)
{
#ifdef HAVE_MMAP
#ifdef MREMAP_MAYMOVE
nsd->zonestat[idx] = (struct nsdst*)mremap(nsd->zonestat[idx],
sizeof(struct nsdst)*nsd->zonestatsize[idx], sz,
MREMAP_MAYMOVE);
if(nsd->zonestat[idx] == MAP_FAILED) {
log_msg(LOG_ERR, "mremap failed: %s", strerror(errno));
exit(1);
}
#else /* !HAVE MREMAP */
if(msync(nsd->zonestat[idx],
sizeof(struct nsdst)*nsd->zonestatsize[idx], MS_ASYNC) != 0)
log_msg(LOG_ERR, "msync failed: %s", strerror(errno));
if(munmap(nsd->zonestat[idx],
sizeof(struct nsdst)*nsd->zonestatsize[idx]) != 0)
log_msg(LOG_ERR, "munmap failed: %s", strerror(errno));
nsd->zonestat[idx] = (struct nsdst*)mmap(NULL, sz,
PROT_READ|PROT_WRITE, MAP_SHARED, nsd->zonestatfd[idx], 0);
if(nsd->zonestat[idx] == MAP_FAILED) {
log_msg(LOG_ERR, "mmap failed: %s", strerror(errno));
exit(1);
}
#endif /* MREMAP */
#endif /* HAVE_MMAP */
}
/* realloc the zonestat array for the one that is not currently in use,
* to match the desired new size of the array (if applicable) */
void
server_zonestat_realloc(struct nsd* nsd)
{
#ifdef HAVE_MMAP
uint8_t z = 0;
size_t sz;
int idx = 0; /* index of the zonestat array that is not in use */
if(nsd->zonestatnow == nsd->zonestat[0])
idx = 1;
if(nsd->zonestatsize[idx] == nsd->zonestatdesired)
return;
sz = sizeof(struct nsdst)*nsd->zonestatdesired;
if(lseek(nsd->zonestatfd[idx], (off_t)sz-1, SEEK_SET) == -1) {
log_msg(LOG_ERR, "lseek %s: %s", nsd->zonestatfname[idx],
strerror(errno));
exit(1);
}
if(write(nsd->zonestatfd[idx], &z, 1) == -1) {
log_msg(LOG_ERR, "cannot extend stat file %s (%s)",
nsd->zonestatfname[idx], strerror(errno));
exit(1);
}
zonestat_remap(nsd, idx, sz);
/* zero the newly allocated region */
if(nsd->zonestatdesired > nsd->zonestatsize[idx]) {
memset(((char*)nsd->zonestat[idx])+sizeof(struct nsdst) *
nsd->zonestatsize[idx], 0, sizeof(struct nsdst) *
(nsd->zonestatdesired - nsd->zonestatsize[idx]));
}
nsd->zonestatsize[idx] = nsd->zonestatdesired;
#endif /* HAVE_MMAP */
}
/* switchover to use the other array for the new children, that
* briefly coexist with the old children. And we want to avoid them
* both writing to the same statistics arrays. */
void
server_zonestat_switch(struct nsd* nsd)
{
if(nsd->zonestatnow == nsd->zonestat[0]) {
nsd->zonestatnow = nsd->zonestat[1];
nsd->zonestatsizenow = nsd->zonestatsize[1];
} else {
nsd->zonestatnow = nsd->zonestat[0];
nsd->zonestatsizenow = nsd->zonestatsize[0];
}
}
#endif /* USE_ZONE_STATS */
#ifdef BIND8_STATS
void
server_stat_alloc(struct nsd* nsd)
{
char tmpfile[256];
size_t sz = sizeof(struct nsdst) * nsd->child_count * 2;
uint8_t z = 0;
/* file name */
nsd->statfname = 0;
snprintf(tmpfile, sizeof(tmpfile), "%snsd-xfr-%d/nsd.%u.stat",
nsd->options->xfrdir, (int)getpid(), (unsigned)getpid());
nsd->statfname = region_strdup(nsd->region, tmpfile);
/* file descriptor */
nsd->statfd = open(nsd->statfname, O_CREAT|O_RDWR, 0600);
if(nsd->statfd == -1) {
log_msg(LOG_ERR, "cannot create %s: %s", nsd->statfname,
strerror(errno));
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
exit(1);
}
#ifdef HAVE_MMAP
if(lseek(nsd->statfd, (off_t)sz-1, SEEK_SET) == -1) {
log_msg(LOG_ERR, "lseek %s: %s", nsd->statfname,
strerror(errno));
goto fail_exit;
}
if(write(nsd->statfd, &z, 1) == -1) {
log_msg(LOG_ERR, "cannot extend stat file %s (%s)",
nsd->statfname, strerror(errno));
goto fail_exit;
}
nsd->stat_map = (struct nsdst*)mmap(NULL, sz, PROT_READ|PROT_WRITE,
MAP_SHARED, nsd->statfd, 0);
if(nsd->stat_map == MAP_FAILED) {
log_msg(LOG_ERR, "mmap failed: %s", strerror(errno));
fail_exit:
close(nsd->statfd);
unlink(nsd->statfname);
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
exit(1);
}
memset(nsd->stat_map, 0, sz);
nsd->stats_per_child[0] = nsd->stat_map;
nsd->stats_per_child[1] = &nsd->stat_map[nsd->child_count];
nsd->stat_current = 0;
nsd->st = &nsd->stats_per_child[nsd->stat_current][0];
#endif /* HAVE_MMAP */
}
#endif /* BIND8_STATS */
#ifdef BIND8_STATS
void
server_stat_free(struct nsd* nsd)
{
unlink(nsd->statfname);
}
#endif /* BIND8_STATS */
static void
cleanup_dname_compression_tables(void *ptr)
{
free(ptr);
compressed_dname_offsets = NULL;
compression_table_capacity = 0;
}
static void
initialize_dname_compression_tables(struct nsd *nsd)
{
size_t needed = domain_table_count(nsd->db->domains) + 1;
needed += EXTRA_DOMAIN_NUMBERS;
if(compression_table_capacity < needed) {
if(compressed_dname_offsets) {
region_remove_cleanup(nsd->db->region,
cleanup_dname_compression_tables,
compressed_dname_offsets);
free(compressed_dname_offsets);
}
compressed_dname_offsets = (uint16_t *) xmallocarray(
needed, sizeof(uint16_t));
region_add_cleanup(nsd->db->region, cleanup_dname_compression_tables,
compressed_dname_offsets);
compression_table_capacity = needed;
compression_table_size=domain_table_count(nsd->db->domains)+1;
}
memset(compressed_dname_offsets, 0, needed * sizeof(uint16_t));
compressed_dname_offsets[0] = QHEADERSZ; /* The original query name */
}
static int
set_cloexec(struct nsd_socket *sock)
{
assert(sock != NULL);
if(fcntl(sock->s, F_SETFD, FD_CLOEXEC) == -1) {
const char *socktype =
sock->addr.ai_family == SOCK_DGRAM ? "udp" : "tcp";
log_msg(LOG_ERR, "fcntl(..., O_CLOEXEC) failed for %s: %s",
socktype, strerror(errno));
return -1;
}
return 1;
}
static int
set_reuseport(struct nsd_socket *sock)
{
#ifdef SO_REUSEPORT
int on = 1;
#ifdef SO_REUSEPORT_LB
/* FreeBSD 12 has SO_REUSEPORT_LB that does load balancing like
* SO_REUSEPORT on Linux. This is what the users want with the config
* option in nsd.conf; if we actually need local address and port reuse
* they'll also need to have SO_REUSEPORT set for them, assume it was
* _LB they want.
*/
int opt = SO_REUSEPORT_LB;
static const char optname[] = "SO_REUSEPORT_LB";
#else /* !SO_REUSEPORT_LB */
int opt = SO_REUSEPORT;
static const char optname[] = "SO_REUSEPORT";
#endif /* SO_REUSEPORT_LB */
if (0 == setsockopt(sock->s, SOL_SOCKET, opt, &on, sizeof(on))) {
return 1;
} else if(verbosity >= 3 || errno != ENOPROTOOPT) {
log_msg(LOG_ERR, "setsockopt(..., %s, ...) failed: %s",
optname, strerror(errno));
}
return -1;
#else
(void)sock;
#endif /* SO_REUSEPORT */
return 0;
}
static int
set_reuseaddr(struct nsd_socket *sock)
{
#ifdef SO_REUSEADDR
int on = 1;
if(setsockopt(sock->s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == 0) {
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., SO_REUSEADDR, ...) failed: %s",
strerror(errno));
return -1;
#endif /* SO_REUSEADDR */
return 0;
}
static int
set_rcvbuf(struct nsd_socket *sock, int rcv)
{
#ifdef SO_RCVBUF
#ifdef SO_RCVBUFFORCE
if(0 == setsockopt(
sock->s, SOL_SOCKET, SO_RCVBUFFORCE, &rcv, sizeof(rcv)))
{
return 1;
}
if(errno == EPERM || errno == ENOBUFS) {
if(errno == ENOBUFS) {
VERBOSITY(2, (LOG_INFO, "setsockopt(..., SO_RCVBUFFORCE, %d) was not granted: %s",
rcv, strerror(errno)));
}
return 0;
}
log_msg(LOG_ERR, "setsockopt(..., SO_RCVBUFFORCE, %d) failed: %s",
rcv, strerror(errno));
return -1;
#else /* !SO_RCVBUFFORCE */
if (0 == setsockopt(
sock->s, SOL_SOCKET, SO_RCVBUF, &rcv, sizeof(rcv)))
{
return 1;
}
if(errno == ENOSYS || errno == ENOBUFS) {
if(errno == ENOBUFS) {
VERBOSITY(2, (LOG_INFO, "setsockopt(..., SO_RCVBUF, %d) was not granted: %s",
rcv, strerror(errno)));
}
return 0;
}
log_msg(LOG_ERR, "setsockopt(..., SO_RCVBUF, %d) failed: %s",
rcv, strerror(errno));
return -1;
#endif /* SO_RCVBUFFORCE */
#endif /* SO_RCVBUF */
return 0;
}
static int
set_sndbuf(struct nsd_socket *sock, int snd)
{
#ifdef SO_SNDBUF
#ifdef SO_SNDBUFFORCE
if(0 == setsockopt(
sock->s, SOL_SOCKET, SO_SNDBUFFORCE, &snd, sizeof(snd)))
{
return 1;
}
if(errno == EPERM || errno == ENOBUFS) {
if(errno == ENOBUFS) {
VERBOSITY(2, (LOG_INFO, "setsockopt(..., SO_SNDBUFFORCE, %d) was not granted: %s",
snd, strerror(errno)));
}
return 0;
}
log_msg(LOG_ERR, "setsockopt(..., SO_SNDBUFFORCE, %d) failed: %s",
snd, strerror(errno));
return -1;
#else /* !SO_SNDBUFFORCE */
if(0 == setsockopt(
sock->s, SOL_SOCKET, SO_SNDBUF, &snd, sizeof(snd)))
{
return 1;
}
if(errno == ENOSYS || errno == ENOBUFS) {
if(errno == ENOBUFS) {
VERBOSITY(2, (LOG_INFO, "setsockopt(..., SO_SNDBUF, %d) was not granted: %s",
snd, strerror(errno)));
}
return 0;
}
log_msg(LOG_ERR, "setsockopt(..., SO_SNDBUF, %d) failed: %s",
snd, strerror(errno));
return -1;
#endif /* SO_SNDBUFFORCE */
#endif /* SO_SNDBUF */
return 0;
}
static int
set_nonblock(struct nsd_socket *sock)
{
const char *socktype =
sock->addr.ai_socktype == SOCK_DGRAM ? "udp" : "tcp";
if(fcntl(sock->s, F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "fctnl(..., O_NONBLOCK) failed for %s: %s",
socktype, strerror(errno));
return -1;
}
return 1;
}
#ifdef INET6
static int
set_ipv6_v6only(struct nsd_socket *sock)
{
#ifdef IPV6_V6ONLY
int on = 1;
const char *socktype =
sock->addr.ai_socktype == SOCK_DGRAM ? "udp" : "tcp";
if(0 == setsockopt(
sock->s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., IPV6_V6ONLY, ...) failed for %s: %s",
socktype, strerror(errno));
return -1;
#else
(void)sock;
#endif /* IPV6_V6ONLY */
return 0;
}
#endif /* INET6 */
#ifdef INET6
static int
set_ipv6_use_min_mtu(struct nsd_socket *sock)
{
#if defined(IPV6_USE_MIN_MTU) || defined(IPV6_MTU)
#if defined(IPV6_USE_MIN_MTU)
/* There is no fragmentation of IPv6 datagrams during forwarding in the
* network. Therefore we do not send UDP datagrams larger than the
* minimum IPv6 MTU of 1280 octets. The EDNS0 message length can be
* larger if the network stack supports IPV6_USE_MIN_MTU.
*/
int opt = IPV6_USE_MIN_MTU;
int optval = 1;
static const char optname[] = "IPV6_USE_MIN_MTU";
#elif defined(IPV6_MTU)
/* On Linux, PMTUD is disabled by default for datagrams so set the MTU
* to the MIN MTU to get the same.
*/
int opt = IPV6_MTU;
int optval = IPV6_MIN_MTU;
static const char optname[] = "IPV6_MTU";
#endif
if(0 == setsockopt(
sock->s, IPPROTO_IPV6, opt, &optval, sizeof(optval)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., %s, ...) failed: %s",
optname, strerror(errno));
return -1;
#else
(void)sock;
#endif /* INET6 */
return 0;
}
#endif /* INET6 */
static int
set_ipv4_no_pmtu_disc(struct nsd_socket *sock)
{
int ret = 0;
#if defined(IP_MTU_DISCOVER)
int opt = IP_MTU_DISCOVER;
int optval;
# if defined(IP_PMTUDISC_OMIT)
/* Linux 3.15 has IP_PMTUDISC_OMIT which makes sockets ignore PMTU
* information and send packets with DF=0. Fragmentation is allowed if
* and only if the packet size exceeds the outgoing interface MTU or
* the packet encounters smaller MTU link in network. This mitigates
* DNS fragmentation attacks by preventing forged PMTU information.
* FreeBSD already has same semantics without setting the option.
*/
optval = IP_PMTUDISC_OMIT;
if(0 == setsockopt(
sock->s, IPPROTO_IP, opt, &optval, sizeof(optval)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., %s, %s, ...) failed: %s",
"IP_MTU_DISCOVER", "IP_PMTUDISC_OMIT", strerror(errno));
# endif /* IP_PMTUDISC_OMIT */
# if defined(IP_PMTUDISC_DONT)
/* Use IP_PMTUDISC_DONT if IP_PMTUDISC_OMIT failed / undefined. */
optval = IP_PMTUDISC_DONT;
if(0 == setsockopt(
sock->s, IPPROTO_IP, opt, &optval, sizeof(optval)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., %s, %s, ...) failed: %s",
"IP_MTU_DISCOVER", "IP_PMTUDISC_DONT", strerror(errno));
# endif
ret = -1;
#elif defined(IP_DONTFRAG)
int off = 0;
if (0 == setsockopt(
sock->s, IPPROTO_IP, IP_DONTFRAG, &off, sizeof(off)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., IP_DONTFRAG, ...) failed: %s",
strerror(errno));
ret = -1;
#else
(void)sock;
#endif
return ret;
}
static int
set_ip_freebind(struct nsd_socket *sock)
{
#ifdef IP_FREEBIND
int on = 1;
const char *socktype =
sock->addr.ai_socktype == SOCK_DGRAM ? "udp" : "tcp";
if(setsockopt(sock->s, IPPROTO_IP, IP_FREEBIND, &on, sizeof(on)) == 0)
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., IP_FREEBIND, ...) failed for %s: %s",
socktype, strerror(errno));
return -1;
#else
(void)sock;
#endif /* IP_FREEBIND */
return 0;
}
static int
set_ip_transparent(struct nsd_socket *sock)
{
/*
The scandalous preprocessor blob here calls for some explanation :)
POSIX does not specify an option to bind non-local IPs, so
platforms developed several implementation-specific options,
all set in the same way, but with different names.
For additional complexity, some platform manage this setting
differently for different address families (IPv4 vs IPv6).
This scandalous preprocessor blob below abstracts such variability
in the way which leaves the C code as lean and clear as possible.
*/
#if defined(IP_TRANSPARENT)
# define NSD_SOCKET_OPTION_TRANSPARENT IP_TRANSPARENT
# define NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL IPPROTO_IP
# define NSD_SOCKET_OPTION_TRANSPARENT_NAME "IP_TRANSPARENT"
// as of 2020-01, Linux does not support this on IPv6 programmatically
#elif defined(SO_BINDANY)
# define NSD_SOCKET_OPTION_TRANSPARENT SO_BINDANY
# define NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL SOL_SOCKET
# define NSD_SOCKET_OPTION_TRANSPARENT_NAME "SO_BINDANY"
#elif defined(IP_BINDANY)
# define NSD_SOCKET_OPTION_TRANSPARENT IP_BINDANY
# define NSD_SOCKET_OPTION_TRANSPARENT6 IPV6_BINDANY
# define NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL IPPROTO_IP
# define NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL6 IPPROTO_IPV6
# define NSD_SOCKET_OPTION_TRANSPARENT_NAME "IP_BINDANY"
#endif
#ifndef NSD_SOCKET_OPTION_TRANSPARENT
(void)sock;
#else
# ifndef NSD_SOCKET_OPTION_TRANSPARENT6
# define NSD_SOCKET_OPTION_TRANSPARENT6 NSD_SOCKET_OPTION_TRANSPARENT
# endif
# ifndef NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL6
# define NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL6 NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL
# endif
# ifndef NSD_SOCKET_OPTION_TRANSPARENT_NAME6
# define NSD_SOCKET_OPTION_TRANSPARENT_NAME6 NSD_SOCKET_OPTION_TRANSPARENT_NAME
# endif
int on = 1;
const char *socktype =
sock->addr.ai_socktype == SOCK_DGRAM ? "udp" : "tcp";
const int is_ip6 = (sock->addr.ai_family == AF_INET6);
if(0 == setsockopt(
sock->s,
is_ip6 ? NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL6 : NSD_SOCKET_OPTION_TRANSPARENT_OPTLEVEL,
is_ip6 ? NSD_SOCKET_OPTION_TRANSPARENT6 : NSD_SOCKET_OPTION_TRANSPARENT,
&on, sizeof(on)))
{
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., %s, ...) failed for %s: %s",
is_ip6 ? NSD_SOCKET_OPTION_TRANSPARENT_NAME6 : NSD_SOCKET_OPTION_TRANSPARENT_NAME, socktype, strerror(errno));
return -1;
#endif
return 0;
}
static int
set_tcp_maxseg(struct nsd_socket *sock, int mss)
{
#if defined(IPPROTO_TCP) && defined(TCP_MAXSEG)
if(setsockopt(sock->s, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss)) == 0) {
return 1;
}
log_msg(LOG_ERR, "setsockopt(..., TCP_MAXSEG, ...) failed for tcp: %s",
strerror(errno));
return -1;
#else
log_msg(LOG_ERR, "setsockopt(TCP_MAXSEG) unsupported");
#endif
return 0;
}
#ifdef USE_TCP_FASTOPEN
static int
set_tcp_fastopen(struct nsd_socket *sock)
{
/* qlen specifies how many outstanding TFO requests to allow. Limit is
* a defense against IP spoofing attacks as suggested in RFC7413.
*/
int qlen;
#ifdef __APPLE__
/* macOS X implementation only supports qlen of 1 via this call. The
* actual value is configured by the net.inet.tcp.fastopen_backlog
* kernel parameter.
*/
qlen = 1;
#else
/* 5 is recommended on Linux. */
qlen = 5;
#endif
if (0 == setsockopt(
sock->s, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)))
{
return 1;
}
if (errno == EPERM) {
log_msg(LOG_ERR, "Setting TCP Fast Open as server failed: %s "
"; this could likely be because sysctl "
"net.inet.tcp.fastopen.enabled, "
"net.inet.tcp.fastopen.server_enable, or "
"net.ipv4.tcp_fastopen is disabled",
strerror(errno));
/* Squelch ENOPROTOOPT: FreeBSD server mode with kernel support
* disabled, except when verbosity enabled for debugging
*/
} else if(errno != ENOPROTOOPT || verbosity >= 3) {
log_msg(LOG_ERR, "Setting TCP Fast Open as server failed: %s",
strerror(errno));
}
return (errno == ENOPROTOOPT ? 0 : -1);
}
#endif /* USE_TCP_FASTOPEN */
static int
set_bindtodevice(struct nsd_socket *sock)
{
#if defined(SO_BINDTODEVICE)
if(setsockopt(sock->s, SOL_SOCKET, SO_BINDTODEVICE,
sock->device, strlen(sock->device)) == -1)
{
log_msg(LOG_ERR, "setsockopt(..., %s, %s, ...) failed: %s",
"SO_BINDTODEVICE", sock->device, strerror(errno));
return -1;
}
return 1;
#else
(void)sock;
return 0;
#endif
}
static int
set_setfib(struct nsd_socket *sock)
{
#if defined(SO_SETFIB)
if(setsockopt(sock->s, SOL_SOCKET, SO_SETFIB,
(const void *)&sock->fib, sizeof(sock->fib)) == -1)
{
log_msg(LOG_ERR, "setsockopt(..., %s, %d, ...) failed: %s",
"SO_SETFIB", sock->fib, strerror(errno));
return -1;
}
return 1;
#else
(void)sock;
return 0;
#endif
}
static int
open_udp_socket(struct nsd *nsd, struct nsd_socket *sock, int *reuseport_works)
{
int rcv = nsd->options->receive_buffer_size;
int snd = nsd->options->send_buffer_size;
if(-1 == (sock->s = socket(
sock->addr.ai_family, sock->addr.ai_socktype, 0)))
{
#ifdef INET6
if((sock->flags & NSD_SOCKET_IS_OPTIONAL) &&
(sock->addr.ai_family == AF_INET6) &&
(errno == EAFNOSUPPORT))
{
log_msg(LOG_WARNING, "fallback to UDP4, no IPv6: "
"not supported");
return 0;
}
#endif
log_msg(LOG_ERR, "can't create a socket: %s", strerror(errno));
return -1;
}
set_cloexec(sock);
if(nsd->reuseport && reuseport_works && *reuseport_works)
*reuseport_works = (set_reuseport(sock) == 1);
if(set_rcvbuf(sock, rcv) == -1)
return -1;
if(set_sndbuf(sock, snd) == -1)
return -1;
#ifdef INET6
if(sock->addr.ai_family == AF_INET6) {
if(set_ipv6_v6only(sock) == -1 ||
set_ipv6_use_min_mtu(sock) == -1)
return -1;
} else
#endif /* INET6 */
if(sock->addr.ai_family == AF_INET) {
if(set_ipv4_no_pmtu_disc(sock) == -1)
return -1;
}
/* Set socket to non-blocking. Otherwise, on operating systems
* with thundering herd problems, the UDP recv could block
* after select returns readable.
*/
set_nonblock(sock);
if(nsd->options->ip_freebind)
(void)set_ip_freebind(sock);
if(nsd->options->ip_transparent)
(void)set_ip_transparent(sock);
if((sock->flags & NSD_BIND_DEVICE) && set_bindtodevice(sock) == -1)
return -1;
if(sock->fib != -1 && set_setfib(sock) == -1)
return -1;
if(bind(sock->s, (struct sockaddr *)&sock->addr.ai_addr, sock->addr.ai_addrlen) == -1) {
char buf[256];
addrport2str((void*)&sock->addr.ai_addr, buf, sizeof(buf));
log_msg(LOG_ERR, "can't bind udp socket %s: %s",
buf, strerror(errno));
return -1;
}
return 1;
}
static int
open_tcp_socket(struct nsd *nsd, struct nsd_socket *sock, int *reuseport_works)
{
#ifdef USE_TCP_FASTOPEN
report_tcp_fastopen_config();
#endif
(void)reuseport_works;
if(-1 == (sock->s = socket(
sock->addr.ai_family, sock->addr.ai_socktype, 0)))
{
#ifdef INET6
if((sock->flags & NSD_SOCKET_IS_OPTIONAL) &&
(sock->addr.ai_family == AF_INET6) &&
(errno == EAFNOSUPPORT))
{
log_msg(LOG_WARNING, "fallback to TCP4, no IPv6: "
"not supported");
return 0;
}
#endif /* INET6 */
log_msg(LOG_ERR, "can't create a socket: %s", strerror(errno));
return -1;
}
set_cloexec(sock);
if(nsd->reuseport && reuseport_works && *reuseport_works)
*reuseport_works = (set_reuseport(sock) == 1);
(void)set_reuseaddr(sock);
#ifdef INET6
if(sock->addr.ai_family == AF_INET6) {
if (set_ipv6_v6only(sock) == -1 ||
set_ipv6_use_min_mtu(sock) == -1)
return -1;
}
#endif
if(nsd->tcp_mss > 0)
set_tcp_maxseg(sock, nsd->tcp_mss);
/* (StevensUNP p463), if TCP listening socket is blocking, then
it may block in accept, even if select() says readable. */
(void)set_nonblock(sock);
if(nsd->options->ip_freebind)
(void)set_ip_freebind(sock);
if(nsd->options->ip_transparent)
(void)set_ip_transparent(sock);
if((sock->flags & NSD_BIND_DEVICE) && set_bindtodevice(sock) == -1)
return -1;
if(sock->fib != -1 && set_setfib(sock) == -1)
return -1;
if(bind(sock->s, (struct sockaddr *)&sock->addr.ai_addr, sock->addr.ai_addrlen) == -1) {
char buf[256];
addrport2str((void*)&sock->addr.ai_addr, buf, sizeof(buf));
log_msg(LOG_ERR, "can't bind tcp socket %s: %s",
buf, strerror(errno));
return -1;
}
#ifdef USE_TCP_FASTOPEN
(void)set_tcp_fastopen(sock);
#endif
if(listen(sock->s, nsd->options->tcp_listen_queue) == -1) {
log_msg(LOG_ERR, "can't listen: %s", strerror(errno));
return -1;
}
return 1;
}
/*
* Initialize the server, reuseport, create and bind the sockets.
*/
int
server_init(struct nsd *nsd)
{
size_t i;
int reuseport = 1; /* Determine if REUSEPORT works. */
/* open server interface ports */
for(i = 0; i < nsd->ifs; i++) {
if(open_udp_socket(nsd, &nsd->udp[i], &reuseport) == -1 ||
open_tcp_socket(nsd, &nsd->tcp[i], &reuseport) == -1)
{
return -1;
}
}
if(nsd->reuseport && reuseport) {
size_t ifs = nsd->ifs * nsd->reuseport;
/* increase the size of the interface arrays, there are going
* to be separate interface file descriptors for every server
* instance */
region_remove_cleanup(nsd->region, free, nsd->udp);
region_remove_cleanup(nsd->region, free, nsd->tcp);
nsd->udp = xrealloc(nsd->udp, ifs * sizeof(*nsd->udp));
nsd->tcp = xrealloc(nsd->tcp, ifs * sizeof(*nsd->tcp));
region_add_cleanup(nsd->region, free, nsd->udp);
region_add_cleanup(nsd->region, free, nsd->tcp);
if(ifs > nsd->ifs) {
memset(&nsd->udp[nsd->ifs], 0,
(ifs-nsd->ifs)*sizeof(*nsd->udp));
memset(&nsd->tcp[nsd->ifs], 0,
(ifs-nsd->ifs)*sizeof(*nsd->tcp));
}
for(i = nsd->ifs; i < ifs; i++) {
nsd->udp[i] = nsd->udp[i%nsd->ifs];
nsd->udp[i].s = -1;
if(open_udp_socket(nsd, &nsd->udp[i], &reuseport) == -1) {
return -1;
}
nsd->tcp[i] = nsd->tcp[i%nsd->ifs];
nsd->tcp[i].s = -1;
if(open_tcp_socket(nsd, &nsd->tcp[i], &reuseport) == -1) {
return -1;
}
}
nsd->ifs = ifs;
} else {
nsd->reuseport = 0;
}
/* open server interface ports for verifiers */
for(i = 0; i < nsd->verify_ifs; i++) {
if(open_udp_socket(nsd, &nsd->verify_udp[i], NULL) == -1 ||
open_tcp_socket(nsd, &nsd->verify_tcp[i], NULL) == -1)
{
return -1;
}
}
return 0;
}
/*
* Prepare the server for take off.
*
*/
int
server_prepare(struct nsd *nsd)
{
#ifdef RATELIMIT
/* set secret modifier for hashing (rate limits) */
#ifdef HAVE_GETRANDOM
uint32_t v;
if(getrandom(&v, sizeof(v), 0) == -1) {
log_msg(LOG_ERR, "getrandom failed: %s", strerror(errno));
exit(1);
}
hash_set_raninit(v);
#elif defined(HAVE_ARC4RANDOM)
hash_set_raninit(arc4random());
#else
uint32_t v = getpid() ^ time(NULL);
srandom((unsigned long)v);
# ifdef HAVE_SSL
if(RAND_status() && RAND_bytes((unsigned char*)&v, sizeof(v)) > 0)
hash_set_raninit(v);
else
# endif
hash_set_raninit(random());
#endif
rrl_mmap_init(nsd->child_count, nsd->options->rrl_size,
nsd->options->rrl_ratelimit,
nsd->options->rrl_whitelist_ratelimit,
nsd->options->rrl_slip,
nsd->options->rrl_ipv4_prefix_length,
nsd->options->rrl_ipv6_prefix_length);
#endif /* RATELIMIT */
/* Open the database... */
if ((nsd->db = namedb_open(nsd->options)) == NULL) {
log_msg(LOG_ERR, "unable to open the database: %s", strerror(errno));
unlink(nsd->task[0]->fname);
unlink(nsd->task[1]->fname);
#ifdef USE_ZONE_STATS
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
#endif
#ifdef BIND8_STATS
server_stat_free(nsd);
#endif
xfrd_del_tempdir(nsd);
return -1;
}
/* check if zone files can be read */
/* NULL for taskudb because we send soainfo in a moment, batched up,
* for all zones */
namedb_check_zonefiles(nsd, nsd->options, NULL, NULL);
zonestatid_tree_set(nsd);
compression_table_capacity = 0;
initialize_dname_compression_tables(nsd);
#ifdef BIND8_STATS
/* Initialize times... */
time(&nsd->st->boot);
nsd->st->reloadcount = 0;
set_bind8_alarm(nsd);
#endif /* BIND8_STATS */
return 0;
}
/*
* Fork the required number of servers.
*/
static int
server_start_children(struct nsd *nsd, region_type* region, netio_type* netio,
int* xfrd_sock_p)
{
size_t i;
/* Start all child servers initially. */
for (i = 0; i < nsd->child_count; ++i) {
nsd->children[i].pid = 0;
}
return restart_child_servers(nsd, region, netio, xfrd_sock_p);
}
static void
server_close_socket(struct nsd_socket *sock)
{
if(sock->s != -1) {
close(sock->s);
sock->s = -1;
}
}
void
server_close_all_sockets(struct nsd_socket sockets[], size_t n)
{
size_t i;
/* Close all the sockets... */
for (i = 0; i < n; ++i) {
server_close_socket(&sockets[i]);
}
}
/*
* Close the sockets, shutdown the server and exit.
* Does not return.
*/
void
server_shutdown(struct nsd *nsd)
{
size_t i;
server_close_all_sockets(nsd->udp, nsd->ifs);
server_close_all_sockets(nsd->tcp, nsd->ifs);
/* CHILD: close command channel to parent */
if(nsd->this_child && nsd->this_child->parent_fd != -1)
{
close(nsd->this_child->parent_fd);
nsd->this_child->parent_fd = -1;
}
/* SERVER: close command channels to children */
if(!nsd->this_child)
{
for(i=0; i < nsd->child_count; ++i)
if(nsd->children[i].child_fd != -1)
{
close(nsd->children[i].child_fd);
nsd->children[i].child_fd = -1;
}
}
tsig_finalize();
daemon_remote_delete(nsd->rc); /* ssl-delete secret keys */
#ifdef USE_METRICS
daemon_metrics_delete(nsd->metrics);
#endif /* USE_METRICS */
#ifdef HAVE_SSL
if (nsd->tls_ctx)
SSL_CTX_free(nsd->tls_ctx);
if (nsd->tls_auth_ctx)
SSL_CTX_free(nsd->tls_auth_ctx);
#endif
#ifdef MEMCLEAN /* OS collects memory pages */
#ifdef RATELIMIT
rrl_mmap_deinit_keep_mmap();
#endif
#ifdef USE_DNSTAP
dt_collector_destroy(nsd->dt_collector, nsd);
#endif
udb_base_free_keep_mmap(nsd->task[0]);
udb_base_free_keep_mmap(nsd->task[1]);
namedb_free_ixfr(nsd->db);
namedb_close(nsd->db);
nsd_options_destroy(nsd->options);
region_destroy(nsd->region);
#endif
log_finalize();
exit(0);
}
void
server_prepare_xfrd(struct nsd* nsd)
{
char tmpfile[256];
size_t i;
/* create task mmaps */
nsd->mytask = 0;
snprintf(tmpfile, sizeof(tmpfile), "%snsd-xfr-%d/nsd.%u.task.0",
nsd->options->xfrdir, (int)getpid(), (unsigned)getpid());
nsd->task[0] = task_file_create(tmpfile);
if(!nsd->task[0]) {
#ifdef USE_ZONE_STATS
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
#endif
#ifdef BIND8_STATS
server_stat_free(nsd);
#endif
xfrd_del_tempdir(nsd);
exit(1);
}
snprintf(tmpfile, sizeof(tmpfile), "%snsd-xfr-%d/nsd.%u.task.1",
nsd->options->xfrdir, (int)getpid(), (unsigned)getpid());
nsd->task[1] = task_file_create(tmpfile);
if(!nsd->task[1]) {
unlink(nsd->task[0]->fname);
#ifdef USE_ZONE_STATS
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
#endif
#ifdef BIND8_STATS
server_stat_free(nsd);
#endif
xfrd_del_tempdir(nsd);
exit(1);
}
assert(udb_base_get_userdata(nsd->task[0])->data == 0);
assert(udb_base_get_userdata(nsd->task[1])->data == 0);
/* create xfrd listener structure */
nsd->xfrd_listener = region_alloc(nsd->region,
sizeof(netio_handler_type));
nsd->xfrd_listener->user_data = (struct ipc_handler_conn_data*)
region_alloc(nsd->region, sizeof(struct ipc_handler_conn_data));
nsd->xfrd_listener->fd = -1;
((struct ipc_handler_conn_data*)nsd->xfrd_listener->user_data)->nsd =
nsd;
((struct ipc_handler_conn_data*)nsd->xfrd_listener->user_data)->conn =
xfrd_tcp_create(nsd->region, QIOBUFSZ);
/* setup sockets to pass NOTIFY messages from the serve processes */
nsd->serve2xfrd_fd_send = region_alloc_array(
nsd->region, 2 * nsd->child_count, sizeof(int));
nsd->serve2xfrd_fd_recv= region_alloc_array(
nsd->region, 2 * nsd->child_count, sizeof(int));
for(i=0; i < 2 * nsd->child_count; i++) {
int pipefd[2];
pipefd[0] = -1; /* For receiving by parent (xfrd) */
pipefd[1] = -1; /* For sending by child (server childs) */
if(pipe(pipefd) < 0) {
log_msg(LOG_ERR, "fatal error: cannot create NOTIFY "
"communication channel: %s", strerror(errno));
exit(1);
}
nsd->serve2xfrd_fd_recv[i] = pipefd[0];
nsd->serve2xfrd_fd_send[i] = pipefd[1];
}
nsd->serve2xfrd_fd_swap = nsd->serve2xfrd_fd_send + nsd->child_count;
}
void
server_start_xfrd(struct nsd *nsd, int del_db, int reload_active)
{
pid_t pid;
int sockets[2] = {0,0};
struct ipc_handler_conn_data *data;
size_t i;
if(nsd->xfrd_listener->fd != -1)
close(nsd->xfrd_listener->fd);
if(del_db) {
/* recreate taskdb that xfrd was using, it may be corrupt */
/* we (or reload) use nsd->mytask, and xfrd uses the other */
char* tmpfile = nsd->task[1-nsd->mytask]->fname;
nsd->task[1-nsd->mytask]->fname = NULL;
/* free alloc already, so udb does not shrink itself */
udb_alloc_delete(nsd->task[1-nsd->mytask]->alloc);
nsd->task[1-nsd->mytask]->alloc = NULL;
udb_base_free(nsd->task[1-nsd->mytask]);
/* create new file, overwrite the old one */
nsd->task[1-nsd->mytask] = task_file_create(tmpfile);
free(tmpfile);
}
if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1) {
log_msg(LOG_ERR, "startxfrd failed on socketpair: %s", strerror(errno));
return;
}
pid = fork();
switch (pid) {
case -1:
log_msg(LOG_ERR, "fork xfrd failed: %s", strerror(errno));
break;
default:
/* PARENT: close first socket, use second one */
close(sockets[0]);
if (fcntl(sockets[1], F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "cannot fcntl pipe: %s", strerror(errno));
}
if(del_db) xfrd_free_namedb(nsd);
/* use other task than I am using, since if xfrd died and is
* restarted, the reload is using nsd->mytask */
nsd->mytask = 1 - nsd->mytask;
/* close the send site of the serve2xfrd fds */
assert(nsd->serve2xfrd_fd_send < nsd->serve2xfrd_fd_swap);
for(i = 0; i < 2 * nsd->child_count; i++) {
if(nsd->serve2xfrd_fd_send[i] != -1) {
close(nsd->serve2xfrd_fd_send[i]);
nsd->serve2xfrd_fd_send[i] = -1;
}
}
#ifdef HAVE_SETPROCTITLE
setproctitle("xfrd");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("xfrd");
#endif
#ifdef HAVE_CPUSET_T
if(nsd->use_cpu_affinity) {
set_cpu_affinity(nsd->xfrd_cpuset);
}
#endif
xfrd_init(sockets[1], nsd, del_db, reload_active, pid);
/* ENOTREACH */
break;
case 0:
/* CHILD: close second socket, use first one */
close(sockets[1]);
if (fcntl(sockets[0], F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "cannot fcntl pipe: %s", strerror(errno));
}
nsd->xfrd_listener->fd = sockets[0];
/* close the receive site of the serve2xfrd fds */
for(i = 0; i < 2 * nsd->child_count; i++) {
if(nsd->serve2xfrd_fd_recv[i] != -1) {
close(nsd->serve2xfrd_fd_recv[i]);
nsd->serve2xfrd_fd_recv[i] = -1;
}
}
#ifdef HAVE_SETPROCTITLE
setproctitle("main");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("main");
#endif
break;
}
/* server-parent only */
nsd->xfrd_listener->timeout = NULL;
nsd->xfrd_listener->event_types = NETIO_EVENT_READ;
nsd->xfrd_listener->event_handler = parent_handle_xfrd_command;
/* clear ongoing ipc reads */
data = (struct ipc_handler_conn_data *) nsd->xfrd_listener->user_data;
data->conn->is_reading = 0;
}
/** add all soainfo to taskdb */
static void
add_all_soa_to_task(struct nsd* nsd, struct udb_base* taskudb)
{
struct radnode* n;
udb_ptr task_last; /* last task, mytask is empty so NULL */
/* add all SOA INFO to mytask */
udb_ptr_init(&task_last, taskudb);
for(n=radix_first(nsd->db->zonetree); n; n=radix_next(n)) {
task_new_soainfo(taskudb, &task_last, (zone_type*)n->elem, 0);
}
udb_ptr_unlink(&task_last, taskudb);
}
void
server_send_soa_xfrd(struct nsd* nsd, int shortsoa)
{
/* normally this exchanges the SOA from nsd->xfrd and the expire back.
* parent fills one taskdb with soas, xfrd fills other with expires.
* then they exchange and process.
* shortsoa: xfrd crashes and needs to be restarted and one taskdb
* may be in use by reload. Fill SOA in taskdb and give to xfrd.
* expire notifications can be sent back via a normal reload later
* (xfrd will wait for current running reload to finish if any).
*/
sig_atomic_t cmd = 0;
pid_t mypid;
int xfrd_sock = nsd->xfrd_listener->fd;
struct udb_base* taskudb = nsd->task[nsd->mytask];
udb_ptr t;
if(!shortsoa) {
if(nsd->signal_hint_shutdown) {
shutdown:
log_msg(LOG_WARNING, "signal received, shutting down...");
server_close_all_sockets(nsd->udp, nsd->ifs);
server_close_all_sockets(nsd->tcp, nsd->ifs);
daemon_remote_close(nsd->rc);
/* Unlink it if possible... */
unlinkpid(nsd->pidfile, nsd->username);
unlink(nsd->task[0]->fname);
unlink(nsd->task[1]->fname);
#ifdef USE_ZONE_STATS
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
#endif
#ifdef BIND8_STATS
server_stat_free(nsd);
#endif
server_shutdown(nsd);
/* ENOTREACH */
exit(0);
}
}
if(shortsoa) {
/* put SOA in xfrd task because mytask may be in use */
taskudb = nsd->task[1-nsd->mytask];
}
add_all_soa_to_task(nsd, taskudb);
if(!shortsoa) {
/* wait for xfrd to signal task is ready, RELOAD signal */
if(block_read(nsd, xfrd_sock, &cmd, sizeof(cmd), -1) != sizeof(cmd) ||
cmd != NSD_RELOAD) {
log_msg(LOG_ERR, "did not get start signal from xfrd");
exit(1);
}
if(nsd->signal_hint_shutdown) {
goto shutdown;
}
}
/* give xfrd our task, signal it with RELOAD_DONE */
task_process_sync(taskudb);
cmd = NSD_RELOAD_DONE;
if(!write_socket(xfrd_sock, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems sending soa end from reload %d to xfrd: %s",
(int)nsd->pid, strerror(errno));
}
mypid = getpid();
if(!write_socket(nsd->xfrd_listener->fd, &mypid, sizeof(mypid))) {
log_msg(LOG_ERR, "problems sending reloadpid to xfrd: %s",
strerror(errno));
}
if(!shortsoa) {
/* process the xfrd task works (expiry data) */
nsd->mytask = 1 - nsd->mytask;
taskudb = nsd->task[nsd->mytask];
task_remap(taskudb);
udb_ptr_new(&t, taskudb, udb_base_get_userdata(taskudb));
while(!udb_ptr_is_null(&t)) {
task_process_expire(nsd->db, TASKLIST(&t));
udb_ptr_set_rptr(&t, taskudb, &TASKLIST(&t)->next);
}
udb_ptr_unlink(&t, taskudb);
task_clear(taskudb);
/* tell xfrd that the task is emptied, signal with RELOAD_DONE */
cmd = NSD_RELOAD_DONE;
if(!write_socket(xfrd_sock, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems sending soa end from reload %d to xfrd: %s",
(int)nsd->pid, strerror(errno));
}
}
}
#ifdef HAVE_SSL
static void
log_crypto_from_err(int level, const char* str, unsigned long err)
{
/* error:[error code]:[library name]:[function name]:[reason string] */
char buf[128];
unsigned long e;
ERR_error_string_n(err, buf, sizeof(buf));
log_msg(level, "%s crypto %s", str, buf);
while( (e=ERR_get_error()) ) {
ERR_error_string_n(e, buf, sizeof(buf));
log_msg(level, "and additionally crypto %s", buf);
}
}
void
log_crypto_err(const char* str)
{
log_crypto_from_err(LOG_ERR, str, ERR_get_error());
}
void
log_crypto_warning(const char* str)
{
log_crypto_from_err(LOG_WARNING, str, ERR_get_error());
}
/** true if the ssl handshake error has to be squelched from the logs */
static int
squelch_err_ssl_handshake(unsigned long err)
{
if(verbosity >= 3)
return 0; /* only squelch on low verbosity */
/* this is very specific, we could filter on ERR_GET_REASON()
* (the third element in ERR_PACK) */
if(err == ERR_PACK(ERR_LIB_SSL, SSL_F_SSL3_GET_RECORD, SSL_R_HTTPS_PROXY_REQUEST) ||
err == ERR_PACK(ERR_LIB_SSL, SSL_F_SSL3_GET_RECORD, SSL_R_HTTP_REQUEST) ||
err == ERR_PACK(ERR_LIB_SSL, SSL_F_SSL3_GET_RECORD, SSL_R_WRONG_VERSION_NUMBER) ||
err == ERR_PACK(ERR_LIB_SSL, SSL_F_SSL3_READ_BYTES, SSL_R_SSLV3_ALERT_BAD_CERTIFICATE)
#ifdef SSL_F_TLS_POST_PROCESS_CLIENT_HELLO
|| err == ERR_PACK(ERR_LIB_SSL, SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER)
#endif
#ifdef SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO
|| err == ERR_PACK(ERR_LIB_SSL, SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL)
|| err == ERR_PACK(ERR_LIB_SSL, SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_UNSUPPORTED_PROTOCOL)
# ifdef SSL_R_VERSION_TOO_LOW
|| err == ERR_PACK(ERR_LIB_SSL, SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_VERSION_TOO_LOW)
# endif
#endif
)
return 1;
return 0;
}
void
perform_openssl_init(void)
{
/* init SSL library */
#ifdef HAVE_ERR_LOAD_CRYPTO_STRINGS
ERR_load_crypto_strings();
#endif
#if defined(HAVE_ERR_LOAD_SSL_STRINGS) && !defined(DEPRECATED_ERR_LOAD_SSL_STRINGS)
ERR_load_SSL_strings();
#endif
#if OPENSSL_VERSION_NUMBER < 0x10100000 || !defined(HAVE_OPENSSL_INIT_CRYPTO)
OpenSSL_add_all_algorithms();
#else
OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS
| OPENSSL_INIT_ADD_ALL_DIGESTS
| OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
#endif
#if OPENSSL_VERSION_NUMBER < 0x10100000 || !defined(HAVE_OPENSSL_INIT_SSL)
(void)SSL_library_init();
#else
OPENSSL_init_ssl(0, NULL);
#endif
if(!RAND_status()) {
/* try to seed it */
unsigned char buf[256];
unsigned int v, seed=(unsigned)time(NULL) ^ (unsigned)getpid();
size_t i;
v = seed;
for(i=0; i<256/sizeof(v); i++) {
memmove(buf+i*sizeof(v), &v, sizeof(v));
v = v*seed + (unsigned int)i;
}
RAND_seed(buf, 256);
log_msg(LOG_WARNING, "warning: no entropy, seeding openssl PRNG with time");
}
}
static int
get_ocsp(char *filename, unsigned char **ocsp)
{
BIO *bio;
OCSP_RESPONSE *response;
int len = -1;
unsigned char *p, *buf;
assert(filename);
if ((bio = BIO_new_file(filename, "r")) == NULL) {
log_crypto_err("get_ocsp: BIO_new_file failed");
return -1;
}
if ((response = d2i_OCSP_RESPONSE_bio(bio, NULL)) == NULL) {
log_crypto_err("get_ocsp: d2i_OCSP_RESPONSE_bio failed");
BIO_free(bio);
return -1;
}
if ((len = i2d_OCSP_RESPONSE(response, NULL)) <= 0) {
log_crypto_err("get_ocsp: i2d_OCSP_RESPONSE #1 failed");
OCSP_RESPONSE_free(response);
BIO_free(bio);
return -1;
}
if ((buf = malloc((size_t) len)) == NULL) {
log_msg(LOG_ERR, "get_ocsp: malloc failed");
OCSP_RESPONSE_free(response);
BIO_free(bio);
return -1;
}
p = buf;
if ((len = i2d_OCSP_RESPONSE(response, &p)) <= 0) {
log_crypto_err("get_ocsp: i2d_OCSP_RESPONSE #2 failed");
free(buf);
OCSP_RESPONSE_free(response);
BIO_free(bio);
return -1;
}
OCSP_RESPONSE_free(response);
BIO_free(bio);
*ocsp = buf;
return len;
}
/* further setup ssl ctx after the keys are loaded */
static void
listen_sslctx_setup_2(void* ctxt)
{
SSL_CTX* ctx = (SSL_CTX*)ctxt;
(void)ctx;
#if HAVE_DECL_SSL_CTX_SET_ECDH_AUTO
if(!SSL_CTX_set_ecdh_auto(ctx,1)) {
/* ENOTREACH */
log_crypto_err("Error in SSL_CTX_ecdh_auto, not enabling ECDHE");
}
#elif defined(HAVE_DECL_SSL_CTX_SET_TMP_ECDH) && defined(NID_X9_62_prime256v1) && defined(HAVE_EC_KEY_NEW_BY_CURVE_NAME)
if(1) {
EC_KEY *ecdh = EC_KEY_new_by_curve_name (NID_X9_62_prime256v1);
if (!ecdh) {
log_crypto_err("could not find p256, not enabling ECDHE");
} else {
if (1 != SSL_CTX_set_tmp_ecdh (ctx, ecdh)) {
log_crypto_err("Error in SSL_CTX_set_tmp_ecdh, not enabling ECDHE");
}
EC_KEY_free (ecdh);
}
}
#endif
}
static int
add_ocsp_data_cb(SSL *s, void* ATTR_UNUSED(arg))
{
if(ocspdata) {
unsigned char *p;
if ((p=malloc(ocspdata_len)) == NULL) {
log_msg(LOG_ERR, "add_ocsp_data_cb: malloc failure");
return SSL_TLSEXT_ERR_NOACK;
}
memcpy(p, ocspdata, ocspdata_len);
if ((SSL_set_tlsext_status_ocsp_resp(s, p, ocspdata_len)) != 1) {
log_crypto_err("Error in SSL_set_tlsext_status_ocsp_resp");
free(p);
return SSL_TLSEXT_ERR_NOACK;
}
return SSL_TLSEXT_ERR_OK;
} else {
return SSL_TLSEXT_ERR_NOACK;
}
}
static int
server_alpn_cb(SSL* ATTR_UNUSED(s),
const unsigned char** out, unsigned char* outlen,
const unsigned char* in, unsigned int inlen,
void* ATTR_UNUSED(arg))
{
static const unsigned char alpns[] = { 3, 'd', 'o', 't' };
unsigned char* tmp_out;
SSL_select_next_proto(&tmp_out, outlen, alpns, sizeof(alpns), in, inlen);
*out = tmp_out;
return SSL_TLSEXT_ERR_OK;
}
SSL_CTX*
server_tls_ctx_setup(char* key, char* pem, char* verifypem)
{
SSL_CTX *ctx = SSL_CTX_new(SSLv23_server_method());
if(!ctx) {
log_crypto_err("could not SSL_CTX_new");
return NULL;
}
/* no SSLv2, SSLv3 because has defects */
#if SSL_OP_NO_SSLv2 != 0
if((SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2) & SSL_OP_NO_SSLv2) != SSL_OP_NO_SSLv2){
log_crypto_err("could not set SSL_OP_NO_SSLv2");
SSL_CTX_free(ctx);
return NULL;
}
#endif
if((SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv3) & SSL_OP_NO_SSLv3)
!= SSL_OP_NO_SSLv3){
log_crypto_err("could not set SSL_OP_NO_SSLv3");
SSL_CTX_free(ctx);
return 0;
}
#if defined(SSL_OP_NO_TLSv1) && defined(SSL_OP_NO_TLSv1_1)
/* if we have tls 1.1 disable 1.0 */
if((SSL_CTX_set_options(ctx, SSL_OP_NO_TLSv1) & SSL_OP_NO_TLSv1)
!= SSL_OP_NO_TLSv1){
log_crypto_err("could not set SSL_OP_NO_TLSv1");
SSL_CTX_free(ctx);
return 0;
}
#endif
#if defined(SSL_OP_NO_TLSv1_1) && defined(SSL_OP_NO_TLSv1_2)
/* if we have tls 1.2 disable 1.1 */
if((SSL_CTX_set_options(ctx, SSL_OP_NO_TLSv1_1) & SSL_OP_NO_TLSv1_1)
!= SSL_OP_NO_TLSv1_1){
log_crypto_err("could not set SSL_OP_NO_TLSv1_1");
SSL_CTX_free(ctx);
return 0;
}
#endif
#if defined(SSL_OP_NO_TLSv1_2) && defined(SSL_OP_NO_TLSv1_3)
/* if we have tls 1.3 disable 1.2 */
if((SSL_CTX_set_options(ctx, SSL_OP_NO_TLSv1_2) & SSL_OP_NO_TLSv1_2)
!= SSL_OP_NO_TLSv1_2){
log_crypto_err("could not set SSL_OP_NO_TLSv1_2");
SSL_CTX_free(ctx);
return 0;
}
#endif
#if defined(SSL_OP_NO_RENEGOTIATION)
/* disable client renegotiation */
if((SSL_CTX_set_options(ctx, SSL_OP_NO_RENEGOTIATION) &
SSL_OP_NO_RENEGOTIATION) != SSL_OP_NO_RENEGOTIATION) {
log_crypto_err("could not set SSL_OP_NO_RENEGOTIATION");
SSL_CTX_free(ctx);
return 0;
}
#endif
#if defined(SSL_OP_IGNORE_UNEXPECTED_EOF)
/* disable client renegotiation */
if((SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF) &
SSL_OP_IGNORE_UNEXPECTED_EOF) != SSL_OP_IGNORE_UNEXPECTED_EOF) {
log_crypto_warning("could not set SSL_OP_IGNORE_UNEXPECTED_EOF");
}
#endif
#if defined(SHA256_DIGEST_LENGTH) && defined(SSL_TXT_CHACHA20)
/* if we detect system-wide crypto policies, use those */
if (access( "/etc/crypto-policies/config", F_OK ) != 0 ) {
/* if we have sha256, set the cipher list to have no known vulns */
if(!SSL_CTX_set_cipher_list(ctx, "ECDHE+AESGCM:ECDHE+CHACHA20"))
log_crypto_err("could not set cipher list with SSL_CTX_set_cipher_list");
}
#endif
if((SSL_CTX_set_options(ctx, SSL_OP_CIPHER_SERVER_PREFERENCE) &
SSL_OP_CIPHER_SERVER_PREFERENCE) !=
SSL_OP_CIPHER_SERVER_PREFERENCE) {
log_crypto_err("could not set SSL_OP_CIPHER_SERVER_PREFERENCE");
SSL_CTX_free(ctx);
return 0;
}
#ifdef HAVE_SSL_CTX_SET_SECURITY_LEVEL
SSL_CTX_set_security_level(ctx, 0);
#endif
if(!SSL_CTX_use_certificate_chain_file(ctx, pem)) {
log_msg(LOG_ERR, "error for cert file: %s", pem);
log_crypto_err("error in SSL_CTX use_certificate_chain_file");
SSL_CTX_free(ctx);
return NULL;
}
if(!SSL_CTX_use_PrivateKey_file(ctx, key, SSL_FILETYPE_PEM)) {
log_msg(LOG_ERR, "error for private key file: %s", key);
log_crypto_err("Error in SSL_CTX use_PrivateKey_file");
SSL_CTX_free(ctx);
return NULL;
}
if(!SSL_CTX_check_private_key(ctx)) {
log_msg(LOG_ERR, "error for key file: %s", key);
log_crypto_err("Error in SSL_CTX check_private_key");
SSL_CTX_free(ctx);
return NULL;
}
listen_sslctx_setup_2(ctx);
if(verifypem && verifypem[0]) {
if(!SSL_CTX_load_verify_locations(ctx, verifypem, NULL)) {
log_crypto_err("Error in SSL_CTX verify locations");
SSL_CTX_free(ctx);
return NULL;
}
SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(verifypem));
SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, NULL);
}
SSL_CTX_set_alpn_select_cb(ctx, server_alpn_cb, NULL);
return ctx;
}
SSL_CTX*
server_tls_ctx_create(struct nsd* nsd, char* verifypem, char* ocspfile)
{
char *key, *pem;
SSL_CTX *ctx;
key = nsd->options->tls_service_key;
pem = nsd->options->tls_service_pem;
if(!key || key[0] == 0) {
log_msg(LOG_ERR, "error: no tls-service-key file specified");
return NULL;
}
if(!pem || pem[0] == 0) {
log_msg(LOG_ERR, "error: no tls-service-pem file specified");
return NULL;
}
/* NOTE:This mimics the existing code in Unbound 1.5.1 by supporting SSL but
* raft-ietf-uta-tls-bcp-08 recommends only using TLSv1.2*/
ctx = server_tls_ctx_setup(key, pem, verifypem);
if(!ctx) {
log_msg(LOG_ERR, "could not setup server TLS context");
return NULL;
}
if(ocspfile && ocspfile[0]) {
if ((ocspdata_len = get_ocsp(ocspfile, &ocspdata)) < 0) {
log_crypto_err("Error reading OCSPfile");
SSL_CTX_free(ctx);
return NULL;
} else {
VERBOSITY(2, (LOG_INFO, "ocspfile %s loaded", ocspfile));
if(!SSL_CTX_set_tlsext_status_cb(ctx, add_ocsp_data_cb)) {
log_crypto_err("Error in SSL_CTX_set_tlsext_status_cb");
SSL_CTX_free(ctx);
return NULL;
}
}
}
return ctx;
}
/* check if tcp_handler_accept_data created for TLS dedicated port */
int
using_tls_port(struct sockaddr* addr, const char* tls_port)
{
in_port_t port = 0;
if (addr->sa_family == AF_INET)
port = ((struct sockaddr_in*)addr)->sin_port;
#ifndef HAVE_STRUCT_SOCKADDR_IN6
else
port = ((struct sockaddr_in6*)addr)->sin6_port;
#endif /* HAVE_STRUCT_SOCKADDR_IN6 */
if (atoi(tls_port) == ntohs(port))
return 1;
return 0;
}
#endif
/* pass timeout=-1 for blocking. Returns size, 0, -1(err), or -2(timeout) */
ssize_t
block_read(struct nsd* nsd, int s, void* p, ssize_t sz, int timeout)
{
uint8_t* buf = (uint8_t*) p;
ssize_t total = 0;
struct pollfd fd;
memset(&fd, 0, sizeof(fd));
fd.fd = s;
fd.events = POLLIN;
while( total < sz) {
ssize_t ret;
ret = poll(&fd, 1, (timeout==-1)?-1:timeout*1000);
if(ret == -1) {
if(errno == EAGAIN)
/* blocking read */
continue;
if(errno == EINTR) {
if(nsd && (nsd->signal_hint_quit || nsd->signal_hint_shutdown))
return -1;
/* other signals can be handled later */
continue;
}
/* some error */
return -1;
}
if(ret == 0) {
/* operation timed out */
return -2;
}
ret = read(s, buf+total, sz-total);
if(ret == -1) {
if(errno == EAGAIN)
/* blocking read */
continue;
if(errno == EINTR) {
if(nsd && (nsd->signal_hint_quit || nsd->signal_hint_shutdown))
return -1;
/* other signals can be handled later */
continue;
}
/* some error */
return -1;
}
if(ret == 0) {
/* closed connection! */
return 0;
}
total += ret;
}
return total;
}
static void
reload_process_non_xfr_tasks(struct nsd* nsd, udb_ptr* xfrs2process,
udb_ptr* last_task)
{
udb_ptr t, next, xfr_tail;
udb_base* u = nsd->task[nsd->mytask];
udb_ptr_init(&next, u);
udb_ptr_init(&xfr_tail, u);
udb_ptr_new(&t, u, udb_base_get_userdata(u));
udb_base_set_userdata(u, 0);
/* Execute all tasks except of type "task_apply_xfr". */
while(!udb_ptr_is_null(&t)) {
/* store next in list so this one can be deleted or reused */
udb_ptr_set_rptr(&next, u, &TASKLIST(&t)->next);
udb_rptr_zero(&TASKLIST(&t)->next, u);
if(TASKLIST(&t)->task_type != task_apply_xfr) {
/* process task t */
/* append results for task t and update last_task */
task_process_in_reload(nsd, u, last_task, &t);
} else if(udb_ptr_is_null(xfrs2process)) {
udb_ptr_set_ptr( xfrs2process, u, &t);
udb_ptr_set_ptr(&xfr_tail, u, &t);
} else {
udb_rptr_set_ptr(&TASKLIST(&xfr_tail)->next, u, &t);
udb_ptr_set_ptr(&xfr_tail, u, &t);
}
/* go to next */
udb_ptr_set_ptr(&t, u, &next);
}
/* t and next are already unlinked (because they are null) */
udb_ptr_unlink(&xfr_tail, u);
}
static size_t
reload_process_xfr_tasks(struct nsd* nsd, int cmdsocket, udb_ptr* xfrs2process)
{
sig_atomic_t cmd = NSD_QUIT_SYNC;
udb_ptr next;
udb_base* u = nsd->task[nsd->mytask];
size_t xfrs_processed = 0;
udb_ptr_init(&next, u);
while(!udb_ptr_is_null(xfrs2process)) {
/* store next in list so this one can be deleted or reused */
udb_ptr_set_rptr(&next, u, &TASKLIST(xfrs2process)->next);
udb_rptr_zero(&TASKLIST(xfrs2process)->next, u);
/* process xfr task at xfrs2process */
assert(TASKLIST(xfrs2process)->task_type == task_apply_xfr);
task_process_apply_xfr(nsd, u, xfrs2process);
xfrs_processed += 1;
/* go to next */
udb_ptr_set_ptr(xfrs2process, u, &next);
/* if the "old-main" has quit, we must quit too, poll the fd for cmds */
if(block_read(nsd, cmdsocket, &cmd, sizeof(cmd), 0) != sizeof(cmd))
; /* pass */
else if (cmd != NSD_QUIT)
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: ipc command from old-main %d", (int)cmd));
else {
udb_ptr_unlink(&next, u);
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: quit to follow nsd"));
/* unlink files of remainder of tasks */
while(!udb_ptr_is_null(xfrs2process)) {
assert(TASKLIST(xfrs2process)->task_type == task_apply_xfr);
xfrd_unlink_xfrfile(nsd, TASKLIST(xfrs2process)->yesno);
udb_ptr_set_rptr(xfrs2process, u, &TASKLIST(xfrs2process)->next);
}
exit(0);
}
}
/* xfrs2process and next are already unlinked (because they are null) */
return xfrs_processed;
}
static void server_verify(struct nsd *nsd, int cmdsocket,
struct sigaction* old_sigchld);
struct quit_sync_event_data {
struct event_base* base;
size_t read;
union {
uint8_t buf[sizeof(sig_atomic_t)];
sig_atomic_t cmd;
} to_read;
};
static void server_reload_handle_sigchld(int sig, short event,
void* ATTR_UNUSED(arg))
{
assert(sig == SIGCHLD);
assert((event & EV_SIGNAL));
/* reap the exited old-serve child(s) */
while(waitpid(-1, NULL, WNOHANG) > 0) {
/* pass */
}
}
static void server_reload_handle_quit_sync_ack(int cmdsocket, short event,
void* arg)
{
struct quit_sync_event_data* cb_data =
(struct quit_sync_event_data*)arg;
ssize_t r;
if((event & EV_TIMEOUT)) {
sig_atomic_t cmd = NSD_QUIT_SYNC;
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: ipc send quit to main"));
if (!write_socket(cmdsocket, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems sending command from "
"reload to old-main: %s", strerror(errno));
}
/* Wait for cmdsocket to become readable or for next timeout,
* (this works because event is added EV_TIMEOUT|EV_PERSIST).
*/
return;
}
assert((event & EV_READ));
assert(cb_data->read < sizeof(cb_data->to_read.cmd));
r = read(cmdsocket, cb_data->to_read.buf + cb_data->read,
sizeof(cb_data->to_read.cmd) - cb_data->read);
if(r == 0) {
DEBUG(DEBUG_IPC, 1, (LOG_WARNING,
"reload: old-main quit during quit sync"));
cb_data->to_read.cmd = NSD_RELOAD;
} else if(r == -1) {
if(errno == EAGAIN || errno == EINTR)
return;
log_msg(LOG_ERR, "reload: could not wait for parent to quit: "
"%s", strerror(errno));
cb_data->to_read.cmd = NSD_RELOAD;
} else if (cb_data->read + r < sizeof(cb_data->to_read.cmd)) {
/* More to read */
cb_data->read += r;
return;
} else {
assert(cb_data->read + r == sizeof(cb_data->to_read.cmd));
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: ipc reply main %d",
(int)cb_data->to_read.cmd));
}
/* Done */
event_base_loopexit(cb_data->base, NULL);
}
/*
* Reload the database, stop parent, re-fork children and continue.
* as server_main.
*/
static void
server_reload(struct nsd *nsd, region_type* server_region, netio_type* netio,
int cmdsocket, udb_ptr* xfrs2process, udb_ptr* last_task)
{
pid_t mypid;
sig_atomic_t cmd;
struct sigaction old_sigchld, ign_sigchld;
struct radnode* node;
zone_type* zone;
enum soainfo_hint hint;
struct quit_sync_event_data cb_data;
struct event signal_event, cmd_event;
struct timeval reload_sync_timeout;
size_t xfrs_processed = 0;
/* For swapping filedescriptors from the serve childs to the xfrd
* and/or the dnstap collector */
int *swap_fd_send;
/* ignore SIGCHLD from the previous server_main that used this pid */
memset(&ign_sigchld, 0, sizeof(ign_sigchld));
ign_sigchld.sa_handler = SIG_IGN;
sigaction(SIGCHLD, &ign_sigchld, &old_sigchld);
#ifdef HAVE_CPUSET_T
if(nsd->use_cpu_affinity) {
set_cpu_affinity(nsd->cpuset);
}
#endif
/* see what tasks we got from xfrd */
xfrs_processed = reload_process_xfr_tasks(nsd, cmdsocket, xfrs2process);
#ifndef NDEBUG
if(nsd_debug_level >= 1)
region_log_stats(nsd->db->region);
#endif /* NDEBUG */
initialize_dname_compression_tables(nsd);
#ifdef BIND8_STATS
/* Restart dumping stats if required. */
time(&nsd->st->boot);
set_bind8_alarm(nsd);
/* Switch to a different set of stat array for new server processes,
* because they can briefly coexist with the old processes. They
* have their own stat structure. */
nsd->stat_current = (nsd->stat_current==0?1:0);
#endif
#ifdef USE_ZONE_STATS
server_zonestat_realloc(nsd); /* realloc for new children */
server_zonestat_switch(nsd);
#endif
if(nsd->options->verify_enable) {
#ifdef RATELIMIT
/* allocate resources for rate limiting. use a slot that is guaranteed
not mapped to a file so no persistent data is overwritten */
rrl_init(nsd->child_count + 1);
#endif
/* spin-up server and execute verifiers for each zone */
server_verify(nsd, cmdsocket, &old_sigchld);
#ifdef RATELIMIT
/* deallocate rate limiting resources */
rrl_deinit(nsd->child_count + 1);
#endif
}
if(xfrs_processed) for( node = radix_first(nsd->db->zonetree)
; node != NULL; node = radix_next(node)) {
zone = (zone_type *)node->elem;
if(zone->is_updated) {
if(zone->is_bad) {
nsd->mode = NSD_RELOAD_FAILED;
hint = soainfo_bad;
} else {
hint = soainfo_ok;
}
/* update(s), verified or not, possibly with subsequent
skipped update(s). skipped update(s) are picked up
by failed update check in xfrd */
task_new_soainfo(nsd->task[nsd->mytask], last_task,
zone, hint);
} else if(zone->is_skipped) {
/* corrupt or inconsistent update without preceding
update(s), communicate soainfo_gone */
task_new_soainfo(nsd->task[nsd->mytask], last_task,
zone, soainfo_gone);
}
zone->is_updated = 0;
zone->is_skipped = 0;
}
if(nsd->mode == NSD_RELOAD_FAILED) {
exit(NSD_RELOAD_FAILED);
}
#ifdef BIND8_STATS
nsd->stats_per_child[nsd->stat_current][0].reloadcount =
nsd->stats_per_child[(nsd->stat_current==0?1:0)][0].reloadcount+1;
nsd->stats_per_child[nsd->stat_current][0].db_mem =
region_get_mem(nsd->db->region);
#endif
/* listen for the signals of failed children again */
sigaction(SIGCHLD, &old_sigchld, NULL);
#ifdef USE_DNSTAP
if (nsd->dt_collector) {
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: swap dnstap collector pipes"));
/* Swap fd_send with fd_swap so old serve child and new serve
* childs will not write to the same pipe ends simultaneously */
swap_fd_send = nsd->dt_collector_fd_send;
nsd->dt_collector_fd_send = nsd->dt_collector_fd_swap;
nsd->dt_collector_fd_swap = swap_fd_send;
}
#endif
swap_fd_send = nsd->serve2xfrd_fd_send;
nsd->serve2xfrd_fd_send = nsd->serve2xfrd_fd_swap;
nsd->serve2xfrd_fd_swap = swap_fd_send;
/* Start new child processes */
if (server_start_children(nsd, server_region, netio, &nsd->
xfrd_listener->fd) != 0) {
send_children_quit(nsd);
exit(1);
}
/* if the old-main has quit, we must quit too, poll the fd for cmds */
if(block_read(nsd, cmdsocket, &cmd, sizeof(cmd), 0) == sizeof(cmd)) {
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: ipc command from main %d", (int)cmd));
if(cmd == NSD_QUIT) {
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: quit to follow nsd"));
send_children_quit(nsd);
exit(0);
}
}
/* Send quit command to old-main: blocking, wait for receipt.
* The old-main process asks the old-serve processes to quit, however
* if a reload succeeded before, this process is the parent of the
* old-serve processes, so we need to reap the children for it.
*/
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reload: ipc send quit to main"));
cmd = NSD_QUIT_SYNC;
if (!write_socket(cmdsocket, &cmd, sizeof(cmd)))
{
log_msg(LOG_ERR, "problems sending command from reload to oldnsd: %s",
strerror(errno));
}
reload_sync_timeout.tv_sec = RELOAD_SYNC_TIMEOUT;
reload_sync_timeout.tv_usec = 0;
cb_data.base = nsd_child_event_base();
cb_data.to_read.cmd = cmd;
cb_data.read = 0;
event_set(&signal_event, SIGCHLD, EV_SIGNAL|EV_PERSIST,
server_reload_handle_sigchld, NULL);
if(event_base_set(cb_data.base, &signal_event) != 0
|| signal_add(&signal_event, NULL) != 0) {
log_msg(LOG_ERR, "NSD quit sync: could not add signal event");
}
event_set(&cmd_event, cmdsocket, EV_READ|EV_TIMEOUT|EV_PERSIST,
server_reload_handle_quit_sync_ack, &cb_data);
if(event_base_set(cb_data.base, &cmd_event) != 0
|| event_add(&cmd_event, &reload_sync_timeout) != 0) {
log_msg(LOG_ERR, "NSD quit sync: could not add command event");
}
/* short-lived main loop */
event_base_dispatch(cb_data.base);
/* remove command and signal event handlers */
event_del(&cmd_event);
signal_del(&signal_event);
/* restore the ordinary signal handler for SIGCHLD */
sigaction(SIGCHLD, &old_sigchld, NULL);
event_base_free(cb_data.base);
cmd = cb_data.to_read.cmd;
if(cmd == NSD_QUIT) {
/* small race condition possible here, parent got quit cmd. */
send_children_quit(nsd);
exit(1);
}
assert(cmd == NSD_RELOAD);
udb_ptr_set(last_task, nsd->task[nsd->mytask], 0);
task_process_sync(nsd->task[nsd->mytask]);
#ifdef USE_ZONE_STATS
server_zonestat_realloc(nsd); /* realloc for next children */
#endif
/* send soainfo to the xfrd process, signal it that reload is done,
* it picks up the taskudb */
cmd = NSD_RELOAD_DONE;
if(!write_socket(nsd->xfrd_listener->fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems sending reload_done xfrd: %s",
strerror(errno));
}
mypid = getpid();
if(!write_socket(nsd->xfrd_listener->fd, &mypid, sizeof(mypid))) {
log_msg(LOG_ERR, "problems sending reloadpid to xfrd: %s",
strerror(errno));
}
/* try to reopen file */
if (nsd->file_rotation_ok)
log_reopen(nsd->log_filename, 1);
/* exit reload, continue as new server_main */
}
/*
* Get the mode depending on the signal hints that have been received.
* Multiple signal hints can be received and will be handled in turn.
*/
static sig_atomic_t
server_signal_mode(struct nsd *nsd)
{
if(nsd->signal_hint_quit) {
nsd->signal_hint_quit = 0;
return NSD_QUIT;
}
else if(nsd->signal_hint_shutdown) {
nsd->signal_hint_shutdown = 0;
return NSD_SHUTDOWN;
}
else if(nsd->signal_hint_child) {
nsd->signal_hint_child = 0;
return NSD_REAP_CHILDREN;
}
else if(nsd->signal_hint_reload) {
nsd->signal_hint_reload = 0;
return NSD_RELOAD;
}
else if(nsd->signal_hint_reload_hup) {
nsd->signal_hint_reload_hup = 0;
return NSD_RELOAD_REQ;
}
else if(nsd->signal_hint_stats) {
nsd->signal_hint_stats = 0;
#ifdef BIND8_STATS
set_bind8_alarm(nsd);
#endif
return NSD_STATS;
}
else if(nsd->signal_hint_statsusr) {
nsd->signal_hint_statsusr = 0;
return NSD_STATS;
}
return NSD_RUN;
}
/*
* The main server simply waits for signals and child processes to
* terminate. Child processes are restarted as necessary.
*/
void
server_main(struct nsd *nsd)
{
region_type *server_region = region_create(xalloc, free);
netio_type *netio = netio_create(server_region);
netio_handler_type reload_listener;
int reload_sockets[2] = {-1, -1};
/* pointer to the xfr tasks that will be processed in a second pass */
udb_ptr xfrs2process;
/* pointer to results of task processing */
udb_ptr last_task;
struct timespec timeout_spec;
int status;
pid_t child_pid;
pid_t reload_pid = -1;
sig_atomic_t mode;
/* Ensure we are the main process */
assert(nsd->server_kind == NSD_SERVER_MAIN);
/* Add listener for the XFRD process */
netio_add_handler(netio, nsd->xfrd_listener);
#ifdef BIND8_STATS
nsd->st = &nsd->stat_map[0];
nsd->st->db_disk = 0;
nsd->st->db_mem = region_get_mem(nsd->db->region);
#endif
memset(&xfrs2process, 0, sizeof(xfrs2process));
memset(&last_task, 0, sizeof(last_task));
/* Start the child processes that handle incoming queries */
if (server_start_children(nsd, server_region, netio,
&nsd->xfrd_listener->fd) != 0) {
send_children_quit(nsd);
exit(1);
}
reload_listener.fd = -1;
/* This_child MUST be 0, because this is the parent process */
assert(nsd->this_child == 0);
/* Run the server until we get a shutdown signal */
while ((mode = nsd->mode) != NSD_SHUTDOWN) {
/* Did we receive a signal that changes our mode? */
if(mode == NSD_RUN) {
nsd->mode = mode = server_signal_mode(nsd);
}
switch (mode) {
case NSD_RUN:
/* see if any child processes terminated */
while((child_pid = waitpid(-1, &status, WNOHANG)) != -1 && child_pid != 0) {
int is_child = delete_child_pid(nsd, child_pid);
if (is_child != -1 && nsd->children[is_child].need_to_exit) {
if(nsd->children[is_child].child_fd == -1)
nsd->children[is_child].has_exited = 1;
parent_check_all_children_exited(nsd);
} else if(is_child != -1) {
log_msg(LOG_WARNING,
"server %d died unexpectedly with status %d, restarting",
(int) child_pid, status);
restart_child_servers(nsd, server_region, netio,
&nsd->xfrd_listener->fd);
} else if (child_pid == reload_pid) {
sig_atomic_t cmd = NSD_RELOAD_FAILED;
pid_t mypid;
log_msg(LOG_WARNING,
"Reload process %d failed with status %d, continuing with old database",
(int) child_pid, status);
#ifdef HAVE_SETPROCTITLE
setproctitle("main");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("main");
#endif
reload_pid = -1;
if(reload_listener.fd != -1) close(reload_listener.fd);
netio_remove_handler(netio, &reload_listener);
reload_listener.fd = -1;
reload_listener.event_types = NETIO_EVENT_NONE;
task_process_sync(nsd->task[nsd->mytask]);
/* inform xfrd reload attempt ended */
if(!write_socket(nsd->xfrd_listener->fd,
&cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems "
"sending SOAEND to xfrd: %s",
strerror(errno));
}
mypid = getpid();
if(!write_socket(nsd->xfrd_listener->fd, &mypid, sizeof(mypid))) {
log_msg(LOG_ERR, "problems sending reloadpid to xfrd: %s",
strerror(errno));
}
#ifdef USE_DNSTAP
} else if(nsd->dt_collector && child_pid == nsd->dt_collector->dt_pid) {
log_msg(LOG_WARNING,
"dnstap-collector %d terminated with status %d",
(int) child_pid, status);
if(nsd->dt_collector) {
dt_collector_close(nsd->dt_collector, nsd);
dt_collector_destroy(nsd->dt_collector, nsd);
nsd->dt_collector = NULL;
}
/* Only respawn a crashed (or exited)
* dnstap-collector when not reloading,
* to not induce a reload during a
* reload (which would seriously
* disrupt nsd procedures and lead to
* unpredictable results)!
*
* This will *leave* a dnstap-collector
* process terminated, but because
* signalling of the reload process to
* the main process to respawn in this
* situation will be cumbersome, and
* because this situation is so
* specific (and therefore hopefully
* extremely rare or non-existing at
* all), plus the fact that we are left
* with a perfectly function NSD
* (besides not logging dnstap
* messages), I consider it acceptable
* to leave this unresolved.
*/
if(reload_pid == -1 && nsd->options->dnstap_enable) {
nsd->dt_collector = dt_collector_create(nsd);
dt_collector_start(nsd->dt_collector, nsd);
nsd->mode = NSD_RELOAD_REQ;
}
#endif
} else if(status != 0) {
/* check for status, because we get
* the old-servermain because reload
* is the process-parent of old-main,
* and we get older server-processes
* that are exiting after a reload */
log_msg(LOG_WARNING,
"process %d terminated with status %d",
(int) child_pid, status);
}
}
if (child_pid == -1) {
if (errno == EINTR) {
continue;
}
if (errno != ECHILD)
log_msg(LOG_WARNING, "wait failed: %s", strerror(errno));
}
if (nsd->mode != NSD_RUN)
break;
/* timeout to collect processes. In case no sigchild happens. */
timeout_spec.tv_sec = 1;
timeout_spec.tv_nsec = 0;
/* listen on ports, timeout for collecting terminated children */
if(netio_dispatch(netio, &timeout_spec, 0) == -1) {
if (errno != EINTR) {
log_msg(LOG_ERR, "netio_dispatch failed: %s", strerror(errno));
}
}
if(nsd->restart_children) {
restart_child_servers(nsd, server_region, netio,
&nsd->xfrd_listener->fd);
nsd->restart_children = 0;
}
if(nsd->reload_failed) {
sig_atomic_t cmd = NSD_RELOAD_FAILED;
pid_t mypid;
nsd->reload_failed = 0;
log_msg(LOG_WARNING,
"Reload process %d failed, continuing with old database",
(int) reload_pid);
#ifdef HAVE_SETPROCTITLE
setproctitle("main");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("main");
#endif
reload_pid = -1;
if(reload_listener.fd != -1) close(reload_listener.fd);
netio_remove_handler(netio, &reload_listener);
reload_listener.fd = -1;
reload_listener.event_types = NETIO_EVENT_NONE;
task_process_sync(nsd->task[nsd->mytask]);
/* inform xfrd reload attempt ended */
if(!write_socket(nsd->xfrd_listener->fd,
&cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "problems "
"sending SOAEND to xfrd: %s",
strerror(errno));
}
mypid = getpid();
if(!write_socket(nsd->xfrd_listener->fd, &mypid, sizeof(mypid))) {
log_msg(LOG_ERR, "problems sending reloadpid to xfrd: %s",
strerror(errno));
}
}
break;
case NSD_RELOAD_REQ: {
sig_atomic_t cmd = NSD_RELOAD_REQ;
log_msg(LOG_WARNING, "SIGHUP received, reloading...");
DEBUG(DEBUG_IPC,1, (LOG_INFO,
"main: ipc send reload_req to xfrd"));
if(!write_socket(nsd->xfrd_listener->fd,
&cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "server_main: could not send "
"reload_req to xfrd: %s", strerror(errno));
}
nsd->mode = NSD_RUN;
} break;
case NSD_RELOAD:
/* Continue to run nsd after reload */
nsd->mode = NSD_RUN;
DEBUG(DEBUG_IPC,1, (LOG_INFO, "reloading..."));
if (reload_pid != -1) {
log_msg(LOG_WARNING, "Reload already in progress (pid = %d)",
(int) reload_pid);
break;
}
/* switch the mytask to keep track of who owns task*/
nsd->mytask = 1 - nsd->mytask;
if (socketpair(AF_UNIX, SOCK_STREAM, 0, reload_sockets) == -1) {
log_msg(LOG_ERR, "reload failed on socketpair: %s", strerror(errno));
reload_pid = -1;
break;
}
/* Execute the tasks that cannot fail */
#ifdef HAVE_SETPROCTITLE
setproctitle("load");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("load");
#endif
/* Already process the non xfr tasks, so that a failed
* transfer (which can exit) will not nullify the
* effects of the other tasks that will not exit.
*/
task_remap(nsd->task[nsd->mytask]);
udb_ptr_init(&xfrs2process, nsd->task[nsd->mytask]);
udb_ptr_init(&last_task , nsd->task[nsd->mytask]);
/* last_task and xfrs2process MUST be unlinked in all
* possible branches of the fork() below.
* server_reload() will unlink them, but for failed
* fork and for the "old-main" (child) process, we MUST
* unlink them in the case statement below.
* Unlink by setting the value to 0, because
* reload_process_non_xfr_tasks() may clear (and
* implicitly unlink) xfrs2process.
*/
reload_process_non_xfr_tasks(nsd, &xfrs2process
, &last_task);
/* Do actual reload */
reload_pid = fork();
switch (reload_pid) {
case -1:
log_msg(LOG_ERR, "fork failed: %s", strerror(errno));
udb_ptr_set(&last_task, nsd->task[nsd->mytask], 0);
udb_ptr_set(&xfrs2process, nsd->task[nsd->mytask], 0);
break;
default:
/* PARENT */
close(reload_sockets[0]);
server_reload(nsd, server_region, netio
, reload_sockets[1]
, &xfrs2process
, &last_task);
DEBUG(DEBUG_IPC,2, (LOG_INFO, "Reload exited to become new main"));
close(reload_sockets[1]);
DEBUG(DEBUG_IPC,2, (LOG_INFO, "Reload closed"));
/* drop stale xfrd ipc data */
((struct ipc_handler_conn_data*)nsd->
xfrd_listener->user_data)
->conn->is_reading = 0;
reload_pid = -1;
reload_listener.fd = -1;
reload_listener.event_types = NETIO_EVENT_NONE;
DEBUG(DEBUG_IPC,2, (LOG_INFO, "Reload resetup; run"));
break;
case 0:
/* CHILD */
/* server_main keep running until NSD_QUIT_SYNC
* received from reload. */
close(reload_sockets[1]);
#ifdef HAVE_SETPROCTITLE
setproctitle("old-main");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("old-main");
#endif
udb_ptr_set(&last_task, nsd->task[nsd->mytask], 0);
udb_ptr_set(&xfrs2process, nsd->task[nsd->mytask], 0);
reload_listener.fd = reload_sockets[0];
reload_listener.timeout = NULL;
reload_listener.user_data = nsd;
reload_listener.event_types = NETIO_EVENT_READ;
reload_listener.event_handler = parent_handle_reload_command; /* listens to Quit */
netio_add_handler(netio, &reload_listener);
reload_pid = getppid();
break;
}
if(reload_pid == -1) {
/* Reset proctitle after "load" process exited
* or when fork() failed
*/
#ifdef HAVE_SETPROCTITLE
setproctitle("main");
#endif
#ifdef USE_LOG_PROCESS_ROLE
log_set_process_role("main");
#endif
}
break;
case NSD_QUIT_SYNC:
/* synchronisation of xfrd, parent and reload */
if(!nsd->quit_sync_done && reload_listener.fd != -1) {
sig_atomic_t cmd = NSD_RELOAD;
/* stop xfrd ipc writes in progress */
DEBUG(DEBUG_IPC,1, (LOG_INFO,
"main: ipc send indication reload"));
if(!write_socket(nsd->xfrd_listener->fd,
&cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "server_main: could not send reload "
"indication to xfrd: %s", strerror(errno));
}
/* wait for ACK from xfrd */
DEBUG(DEBUG_IPC,1, (LOG_INFO, "main: wait ipc reply xfrd"));
nsd->quit_sync_done = 1;
}
nsd->mode = NSD_RUN;
break;
case NSD_QUIT:
/* silent shutdown during reload */
if(reload_listener.fd != -1) {
/* acknowledge the quit, to sync reload that we will really quit now */
sig_atomic_t cmd = NSD_RELOAD;
DEBUG(DEBUG_IPC,1, (LOG_INFO, "main: ipc ack reload"));
if(!write_socket(reload_listener.fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "server_main: "
"could not ack quit: %s", strerror(errno));
}
close(reload_listener.fd);
}
DEBUG(DEBUG_IPC,1, (LOG_INFO, "server_main: shutdown sequence"));
/* only quit children after xfrd has acked */
send_children_quit(nsd);
#ifdef MEMCLEAN /* OS collects memory pages */
region_destroy(server_region);
#endif
server_shutdown(nsd);
/* ENOTREACH */
break;
case NSD_SHUTDOWN:
break;
case NSD_REAP_CHILDREN:
/* continue; wait for child in run loop */
nsd->mode = NSD_RUN;
break;
case NSD_STATS:
#ifdef BIND8_STATS
set_children_stats(nsd);
#endif
nsd->mode = NSD_RUN;
break;
default:
log_msg(LOG_WARNING, "NSD main server mode invalid: %d", (int)nsd->mode);
nsd->mode = NSD_RUN;
break;
}
}
log_msg(LOG_WARNING, "signal received, shutting down...");
/* close opened ports to avoid race with restart of nsd */
server_close_all_sockets(nsd->udp, nsd->ifs);
server_close_all_sockets(nsd->tcp, nsd->ifs);
daemon_remote_close(nsd->rc);
send_children_quit_and_wait(nsd);
/* Unlink it if possible... */
unlinkpid(nsd->pidfile, nsd->username);
unlink(nsd->task[0]->fname);
unlink(nsd->task[1]->fname);
#ifdef USE_ZONE_STATS
unlink(nsd->zonestatfname[0]);
unlink(nsd->zonestatfname[1]);
#endif
#ifdef BIND8_STATS
server_stat_free(nsd);
#endif
#ifdef USE_DNSTAP
dt_collector_close(nsd->dt_collector, nsd);
#endif
if(reload_listener.fd != -1) {
sig_atomic_t cmd = NSD_QUIT;
DEBUG(DEBUG_IPC,1, (LOG_INFO,
"main: ipc send quit to reload-process"));
if(!write_socket(reload_listener.fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "server_main: could not send quit to reload: %s",
strerror(errno));
}
fsync(reload_listener.fd);
close(reload_listener.fd);
/* wait for reload to finish processing */
while(1) {
if(waitpid(reload_pid, NULL, 0) == -1) {
if(errno == EINTR) continue;
if(errno == ECHILD) break;
log_msg(LOG_ERR, "waitpid(reload %d): %s",
(int)reload_pid, strerror(errno));
}
break;
}
}
if(nsd->xfrd_listener->fd != -1) {
/* complete quit, stop xfrd */
sig_atomic_t cmd = NSD_QUIT;
DEBUG(DEBUG_IPC,1, (LOG_INFO,
"main: ipc send quit to xfrd"));
if(!write_socket(nsd->xfrd_listener->fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "server_main: could not send quit to xfrd: %s",
strerror(errno));
}
fsync(nsd->xfrd_listener->fd);
close(nsd->xfrd_listener->fd);
(void)kill(nsd->pid, SIGTERM);
}
#ifdef USE_XDP
xdp_server_cleanup(&nsd->xdp.xdp_server);
#endif
#ifdef MEMCLEAN /* OS collects memory pages */
region_destroy(server_region);
#endif
server_shutdown(nsd);
}
static query_state_type
server_process_query(struct nsd *nsd, struct query *query, uint32_t *now_p)
{
return query_process(query, nsd, now_p);
}
static query_state_type
server_process_query_udp(struct nsd *nsd, struct query *query, uint32_t *now_p)
{
#ifdef RATELIMIT
if(query_process(query, nsd, now_p) != QUERY_DISCARDED) {
if(query->edns.cookie_status != COOKIE_VALID
&& query->edns.cookie_status != COOKIE_VALID_REUSE
&& rrl_process_query(query))
return rrl_slip(query);
else return QUERY_PROCESSED;
}
return QUERY_DISCARDED;
#else
return query_process(query, nsd, now_p);
#endif
}
const char*
nsd_event_vs(void)
{
#ifdef USE_MINI_EVENT
return "";
#else
return event_get_version();
#endif
}
#if !defined(USE_MINI_EVENT) && defined(EV_FEATURE_BACKENDS)
static const char* ub_ev_backend2str(int b)
{
switch(b) {
case EVBACKEND_SELECT: return "select";
case EVBACKEND_POLL: return "poll";
case EVBACKEND_EPOLL: return "epoll";
case EVBACKEND_KQUEUE: return "kqueue";
case EVBACKEND_DEVPOLL: return "devpoll";
case EVBACKEND_PORT: return "evport";
}
return "unknown";
}
#endif
const char*
nsd_event_method(void)
{
#ifdef USE_MINI_EVENT
return "select";
#else
struct event_base* b = nsd_child_event_base();
const char* m;
# ifdef EV_FEATURE_BACKENDS
m = ub_ev_backend2str(ev_backend((struct ev_loop*)b));
# elif defined(HAVE_EVENT_BASE_GET_METHOD)
m = event_base_get_method(b);
# else
m = "?";
# endif
# ifdef MEMCLEAN
event_base_free(b);
# endif
return m;
#endif
}
struct event_base*
nsd_child_event_base(void)
{
struct event_base* base;
#ifdef USE_MINI_EVENT
static time_t secs;
static struct timeval now;
base = event_init(&secs, &now);
#else
# if defined(HAVE_EV_LOOP) || defined(HAVE_EV_DEFAULT_LOOP)
/* libev */
base = (struct event_base *)ev_default_loop(EVFLAG_AUTO);
# else
/* libevent */
# ifdef HAVE_EVENT_BASE_NEW
base = event_base_new();
# else
base = event_init();
# endif
# endif
#endif
return base;
}
static void
add_udp_handler(
struct nsd *nsd,
struct nsd_socket *sock,
struct udp_handler_data *data)
{
struct event *handler = &data->event;
data->nsd = nsd;
data->socket = sock;
if(nsd->options->proxy_protocol_port &&
sockaddr_uses_proxy_protocol_port(nsd->options,
(struct sockaddr *)&sock->addr.ai_addr)) {
data->pp2_enabled = 1;
}
memset(handler, 0, sizeof(*handler));
event_set(handler, sock->s, EV_PERSIST|EV_READ, handle_udp, data);
if(event_base_set(nsd->event_base, handler) != 0)
log_msg(LOG_ERR, "nsd udp: event_base_set failed");
if(event_add(handler, NULL) != 0)
log_msg(LOG_ERR, "nsd udp: event_add failed");
}
void
add_tcp_handler(
struct nsd *nsd,
struct nsd_socket *sock,
struct tcp_accept_handler_data *data)
{
struct event *handler = &data->event;
data->nsd = nsd;
data->socket = sock;
if(nsd->options->proxy_protocol_port &&
sockaddr_uses_proxy_protocol_port(nsd->options,
(struct sockaddr *)&sock->addr.ai_addr)) {
data->pp2_enabled = 1;
}
#ifdef HAVE_SSL
if (nsd->tls_ctx &&
nsd->options->tls_port &&
using_tls_port((struct sockaddr *)&sock->addr.ai_addr, nsd->options->tls_port))
{
data->tls_accept = 1;
if(verbosity >= 2) {
char buf[48];
addrport2str((void*)(struct sockaddr_storage*)&sock->addr.ai_addr, buf, sizeof(buf));
VERBOSITY(5, (LOG_NOTICE, "setup TCP for TLS service on interface %s", buf));
}
} else {
data->tls_accept = 0;
}
if (nsd->tls_auth_ctx &&
nsd->options->tls_auth_port &&
using_tls_port((struct sockaddr *)&sock->addr.ai_addr, nsd->options->tls_auth_port))
{
data->tls_auth_accept = 1;
if(verbosity >= 2) {
char buf[48];
addrport2str((void*)(struct sockaddr_storage*)&sock->addr.ai_addr, buf, sizeof(buf));
VERBOSITY(4, (LOG_NOTICE, "setup TCP for TLS-AUTH service on interface %s", buf));
}
} else {
data->tls_auth_accept = 0;
}
#endif
memset(handler, 0, sizeof(*handler));
event_set(handler, sock->s, EV_PERSIST|EV_READ, handle_tcp_accept, data);
if(event_base_set(nsd->event_base, handler) != 0)
log_msg(LOG_ERR, "nsd tcp: event_base_set failed");
if(event_add(handler, NULL) != 0)
log_msg(LOG_ERR, "nsd tcp: event_add failed");
data->event_added = 1;
}
#ifdef USE_XDP
static void
add_xdp_handler(struct nsd *nsd,
struct xdp_server *xdp,
struct xdp_handler_data *data) {
int sock;
struct event *handler = &data->event;
data->nsd = nsd;
data->server = xdp;
memset(handler, 0, sizeof(*handler));
sock = xsk_socket__fd(xdp->xsks[xdp->queue_index].xsk);
if (sock < 0) {
log_msg(LOG_ERR, "xdp: xsk socket file descriptor is invalid: %s",
strerror(errno));
return;
}
// TODO: check which EV_flags are needed
event_set(handler, sock, EV_PERSIST|EV_READ, handle_xdp, data);
if (event_base_set(nsd->event_base, handler) != 0)
log_msg(LOG_ERR, "nsd xdp: event_base_set failed");
if (event_add(handler, NULL) != 0)
log_msg(LOG_ERR, "nsd xdp: event_add failed");
}
#endif
/*
* Serve DNS request to verifiers (short-lived)
*/
static void server_verify(struct nsd *nsd, int cmdsocket,
struct sigaction* old_sigchld)
{
size_t size = 0;
struct event cmd_event, signal_event, exit_event;
struct zone *zone;
assert(nsd != NULL);
zone = verify_next_zone(nsd, NULL);
if(zone == NULL)
return;
nsd->server_region = region_create(xalloc, free);
nsd->event_base = nsd_child_event_base();
nsd->next_zone_to_verify = zone;
nsd->verifier_count = 0;
nsd->verifier_limit = nsd->options->verifier_count;
size = sizeof(struct verifier) * nsd->verifier_limit;
if(pipe(nsd->verifier_pipe) == -1) {
log_msg(LOG_ERR, "verify: could not create pipe: %s",
strerror(errno));
goto fail_pipe;
}
fcntl(nsd->verifier_pipe[0], F_SETFD, FD_CLOEXEC);
fcntl(nsd->verifier_pipe[1], F_SETFD, FD_CLOEXEC);
nsd->verifiers = region_alloc_zero(nsd->server_region, size);
for(size_t i = 0; i < nsd->verifier_limit; i++) {
nsd->verifiers[i].nsd = nsd;
nsd->verifiers[i].zone = NULL;
nsd->verifiers[i].pid = -1;
nsd->verifiers[i].output_stream.fd = -1;
nsd->verifiers[i].output_stream.priority = LOG_INFO;
nsd->verifiers[i].error_stream.fd = -1;
nsd->verifiers[i].error_stream.priority = LOG_ERR;
}
event_set(&cmd_event, cmdsocket, EV_READ|EV_PERSIST, verify_handle_command, nsd);
if(event_base_set(nsd->event_base, &cmd_event) != 0 ||
event_add(&cmd_event, NULL) != 0)
{
log_msg(LOG_ERR, "verify: could not add command event");
goto fail;
}
event_set(&signal_event, SIGCHLD, EV_SIGNAL|EV_PERSIST, verify_handle_signal, nsd);
if(event_base_set(nsd->event_base, &signal_event) != 0 ||
signal_add(&signal_event, NULL) != 0)
{
log_msg(LOG_ERR, "verify: could not add signal event");
goto fail;
}
event_set(&exit_event, nsd->verifier_pipe[0], EV_READ|EV_PERSIST, verify_handle_exit, nsd);
if(event_base_set(nsd->event_base, &exit_event) != 0 ||
event_add(&exit_event, NULL) != 0)
{
log_msg(LOG_ERR, "verify: could not add exit event");
goto fail;
}
memset(msgs, 0, sizeof(msgs));
for (int i = 0; i < NUM_RECV_PER_SELECT; i++) {
queries[i] = query_create(nsd->server_region,
compressed_dname_offsets,
compression_table_size, compressed_dnames);
query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0);
iovecs[i].iov_base = buffer_begin(queries[i]->packet);
iovecs[i].iov_len = buffer_remaining(queries[i]->packet);
msgs[i].msg_hdr.msg_iov = &iovecs[i];
msgs[i].msg_hdr.msg_iovlen = 1;
msgs[i].msg_hdr.msg_name = &queries[i]->remote_addr;
msgs[i].msg_hdr.msg_namelen = queries[i]->remote_addrlen;
}
for (size_t i = 0; i < nsd->verify_ifs; i++) {
struct udp_handler_data *data;
data = region_alloc_zero(
nsd->server_region, sizeof(*data));
add_udp_handler(nsd, &nsd->verify_udp[i], data);
}
tcp_accept_handler_count = nsd->verify_ifs;
tcp_accept_handlers = region_alloc_array(nsd->server_region,
nsd->verify_ifs, sizeof(*tcp_accept_handlers));
for (size_t i = 0; i < nsd->verify_ifs; i++) {
struct tcp_accept_handler_data *data;
data = &tcp_accept_handlers[i];
memset(data, 0, sizeof(*data));
add_tcp_handler(nsd, &nsd->verify_tcp[i], data);
}
while(nsd->next_zone_to_verify != NULL &&
nsd->verifier_count < nsd->verifier_limit)
{
verify_zone(nsd, nsd->next_zone_to_verify);
nsd->next_zone_to_verify
= verify_next_zone(nsd, nsd->next_zone_to_verify);
}
/* short-lived main loop */
event_base_dispatch(nsd->event_base);
/* remove command and exit event handlers */
event_del(&exit_event);
event_del(&cmd_event);
assert(nsd->next_zone_to_verify == NULL || nsd->mode == NSD_QUIT);
assert(nsd->verifier_count == 0 || nsd->mode == NSD_QUIT);
signal_del(&signal_event);
fail:
sigaction(SIGCHLD, old_sigchld, NULL);
close(nsd->verifier_pipe[0]);
close(nsd->verifier_pipe[1]);
fail_pipe:
event_base_free(nsd->event_base);
region_destroy(nsd->server_region);
nsd->event_base = NULL;
nsd->server_region = NULL;
nsd->verifier_limit = 0;
nsd->verifier_pipe[0] = -1;
nsd->verifier_pipe[1] = -1;
nsd->verifiers = NULL;
}
/*
* Serve DNS requests.
*/
void
server_child(struct nsd *nsd)
{
size_t i, from, numifs;
region_type *server_region = region_create(xalloc, free);
struct event_base* event_base = nsd_child_event_base();
sig_atomic_t mode;
#ifdef USE_LOG_PROCESS_ROLE
static char child_name[20];
#endif
if(!event_base) {
log_msg(LOG_ERR, "nsd server could not create event base");
exit(1);
}
nsd->event_base = event_base;
nsd->server_region = server_region;
#ifdef RATELIMIT
rrl_init(nsd->this_child->child_num);
#endif
assert(nsd->server_kind != NSD_SERVER_MAIN);
#ifdef HAVE_SETPROCTITLE
setproctitle("server %d", nsd->this_child->child_num + 1);
#endif
#ifdef USE_LOG_PROCESS_ROLE
snprintf(child_name, sizeof(child_name), "srv%d",
nsd->this_child->child_num + 1);
log_set_process_role(child_name);
#endif
DEBUG(DEBUG_IPC, 2, (LOG_INFO, "child process started"));
#ifdef HAVE_CPUSET_T
if(nsd->use_cpu_affinity) {
set_cpu_affinity(nsd->this_child->cpuset);
}
#endif
#ifdef BIND8_STATS
nsd->st = &nsd->stats_per_child[nsd->stat_current]
[nsd->this_child->child_num];
nsd->st->boot = nsd->stat_map[0].boot;
memcpy(&nsd->stat_proc, nsd->st, sizeof(nsd->stat_proc));
#endif
if (!(nsd->server_kind & NSD_SERVER_TCP)) {
server_close_all_sockets(nsd->tcp, nsd->ifs);
}
if (!(nsd->server_kind & NSD_SERVER_UDP)) {
server_close_all_sockets(nsd->udp, nsd->ifs);
}
if (nsd->this_child->parent_fd != -1) {
struct event *handler;
struct ipc_handler_conn_data* user_data =
(struct ipc_handler_conn_data*)region_alloc(
server_region, sizeof(struct ipc_handler_conn_data));
user_data->nsd = nsd;
user_data->conn = xfrd_tcp_create(server_region, QIOBUFSZ);
handler = (struct event*) region_alloc(
server_region, sizeof(*handler));
memset(handler, 0, sizeof(*handler));
event_set(handler, nsd->this_child->parent_fd, EV_PERSIST|
EV_READ, child_handle_parent_command, user_data);
if(event_base_set(event_base, handler) != 0)
log_msg(LOG_ERR, "nsd ipcchild: event_base_set failed");
if(event_add(handler, NULL) != 0)
log_msg(LOG_ERR, "nsd ipcchild: event_add failed");
}
if(nsd->reuseport) {
numifs = nsd->ifs / nsd->reuseport;
from = numifs * nsd->this_child->child_num;
if(from+numifs > nsd->ifs) { /* should not happen */
from = 0;
numifs = nsd->ifs;
}
} else {
from = 0;
numifs = nsd->ifs;
}
if ((nsd->server_kind & NSD_SERVER_UDP)) {
int child = nsd->this_child->child_num;
memset(msgs, 0, sizeof(msgs));
for (i = 0; i < NUM_RECV_PER_SELECT; i++) {
queries[i] = query_create(server_region,
compressed_dname_offsets,
compression_table_size, compressed_dnames);
query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0);
iovecs[i].iov_base = buffer_begin(queries[i]->packet);
iovecs[i].iov_len = buffer_remaining(queries[i]->packet);
msgs[i].msg_hdr.msg_iov = &iovecs[i];
msgs[i].msg_hdr.msg_iovlen = 1;
msgs[i].msg_hdr.msg_name = &queries[i]->remote_addr;
msgs[i].msg_hdr.msg_namelen = queries[i]->remote_addrlen;
}
for (i = 0; i < nsd->ifs; i++) {
int listen;
struct udp_handler_data *data;
listen = nsd_bitset_isset(nsd->udp[i].servers, child);
if(i >= from && i < (from + numifs) && listen) {
data = region_alloc_zero(
nsd->server_region, sizeof(*data));
add_udp_handler(nsd, &nsd->udp[i], data);
} else {
/* close sockets intended for other servers */
server_close_socket(&nsd->udp[i]);
}
}
}
/*
* Keep track of all the TCP accept handlers so we can enable
* and disable them based on the current number of active TCP
* connections.
*/
if ((nsd->server_kind & NSD_SERVER_TCP)) {
int child = nsd->this_child->child_num;
tcp_accept_handler_count = numifs;
tcp_accept_handlers = region_alloc_array(server_region,
numifs, sizeof(*tcp_accept_handlers));
for (i = 0; i < nsd->ifs; i++) {
int listen;
struct tcp_accept_handler_data *data;
listen = nsd_bitset_isset(nsd->tcp[i].servers, child);
if(i >= from && i < (from + numifs) && listen) {
data = &tcp_accept_handlers[i-from];
memset(data, 0, sizeof(*data));
add_tcp_handler(nsd, &nsd->tcp[i], data);
} else {
/* close sockets intended for other servers */
server_close_socket(&nsd->tcp[i]);
}
}
} else {
tcp_accept_handler_count = 0;
}
#ifdef USE_XDP
if (nsd->options->xdp_interface) {
/* don't try to bind more sockets than there are queues available */
if ((int)nsd->xdp.xdp_server.queue_count <= nsd->this_child->child_num) {
log_msg(LOG_WARNING,
"xdp: server-count exceeds available queues (%d) on "
"interface %s, skipping xdp in this process",
nsd->xdp.xdp_server.queue_count,
nsd->xdp.xdp_server.interface_name);
} else {
struct xdp_handler_data *data;
const int scratch_data_len = 1;
void *scratch_data = region_alloc_zero(nsd->server_region,
scratch_data_len);
nsd->xdp.xdp_server.queue_index = nsd->this_child->child_num;
nsd->xdp.xdp_server.queries = xdp_queries;
log_msg(LOG_INFO,
"xdp: using socket with queue_id %d on interface %s",
nsd->xdp.xdp_server.queue_index,
nsd->xdp.xdp_server.interface_name);
data = region_alloc_zero(nsd->server_region, sizeof(*data));
add_xdp_handler(nsd, &nsd->xdp.xdp_server, data);
for (i = 0; i < XDP_RX_BATCH_SIZE; i++) {
/* Be aware that the buffer is initialized with scratch data
* and will be filled by the xdp handle and receive function
* that receives the packet data.
* Using scratch data so that the existing functions in regards
* to queries and buffers don't break by use of NULL pointers */
struct buffer *buffer = region_alloc_zero(
nsd->server_region,
sizeof(struct buffer));
buffer_create_from(buffer, scratch_data, scratch_data_len);
xdp_queries[i] = query_create_with_buffer(
server_region,
compressed_dname_offsets,
compression_table_size,
compressed_dnames,
buffer);
query_reset(xdp_queries[i], UDP_MAX_MESSAGE_LEN, 0);
}
}
}
#endif
/* The main loop... */
while ((mode = nsd->mode) != NSD_QUIT) {
if(mode == NSD_RUN) nsd->mode = mode = server_signal_mode(nsd);
/* Do we need to do the statistics... */
if (mode == NSD_STATS) {
#ifdef BIND8_STATS
int p = nsd->st_period;
nsd->st_period = 1; /* force stats printout */
/* Dump the statistics */
bind8_stats(nsd);
nsd->st_period = p;
#else /* !BIND8_STATS */
log_msg(LOG_NOTICE, "Statistics support not enabled at compile time.");
#endif /* BIND8_STATS */
nsd->mode = NSD_RUN;
}
else if (mode == NSD_REAP_CHILDREN) {
/* got signal, notify parent. parent reaps terminated children. */
if (nsd->this_child->parent_fd != -1) {
sig_atomic_t parent_notify = NSD_REAP_CHILDREN;
if (write(nsd->this_child->parent_fd,
&parent_notify,
sizeof(parent_notify)) == -1)
{
log_msg(LOG_ERR, "problems sending command from %d to parent: %s",
(int) nsd->this_child->pid, strerror(errno));
}
} else /* no parent, so reap 'em */
while (waitpid(-1, NULL, WNOHANG) > 0) ;
nsd->mode = NSD_RUN;
}
else if(mode == NSD_RUN) {
/* Wait for a query... */
if(event_base_loop(event_base, EVLOOP_ONCE) == -1) {
if (errno != EINTR) {
log_msg(LOG_ERR, "dispatch failed: %s", strerror(errno));
break;
}
}
} else if(mode == NSD_QUIT) {
/* ignore here, quit */
} else {
log_msg(LOG_ERR, "mode bad value %d, back to service.",
(int)mode);
nsd->mode = NSD_RUN;
}
}
/* This part is seemingly never reached as the loop WOULD exit on NSD_QUIT,
* but nsd->mode is only set to NSD_QUIT in ipc_child_quit. However, that
* function also calls exit(). */
service_remaining_tcp(nsd);
#ifdef BIND8_STATS
bind8_stats(nsd);
#endif /* BIND8_STATS */
#ifdef MEMCLEAN /* OS collects memory pages */
#ifdef RATELIMIT
rrl_deinit(nsd->this_child->child_num);
#endif
event_base_free(event_base);
region_destroy(server_region);
#endif
server_shutdown(nsd);
}
static void remaining_tcp_timeout(int ATTR_UNUSED(fd), short event, void* arg)
{
int* timed_out = (int*)arg;
assert((event & EV_TIMEOUT)); (void)event;
/* wake up the service tcp thread, note event is no longer
* registered */
*timed_out = 1;
}
void
service_remaining_tcp(struct nsd* nsd)
{
struct tcp_handler_data* p;
struct event_base* event_base;
/* check if it is needed */
if(nsd->current_tcp_count == 0 || tcp_active_list == NULL)
return;
VERBOSITY(5, (LOG_INFO, "service remaining TCP connections"));
#ifdef USE_DNSTAP
/* remove dnstap collector, we cannot write there because the new
* child process is using the file descriptor, or the child
* process after that. */
dt_collector_destroy(nsd->dt_collector, nsd);
nsd->dt_collector = NULL;
#endif
/* setup event base */
event_base = nsd_child_event_base();
if(!event_base) {
log_msg(LOG_ERR, "nsd remain tcp could not create event base");
return;
}
/* register tcp connections */
for(p = tcp_active_list; p != NULL; p = p->next) {
struct timeval timeout;
int fd = p->event.ev_fd;
#ifdef USE_MINI_EVENT
short event = p->event.ev_flags & (EV_READ|EV_WRITE);
#else
short event = p->event.ev_events & (EV_READ|EV_WRITE);
#endif
void (*fn)(int, short, void*);
#ifdef HAVE_SSL
if(p->tls) {
if((event&EV_READ))
fn = handle_tls_reading;
else fn = handle_tls_writing;
} else if(p->tls_auth) {
if((event&EV_READ))
fn = handle_tls_reading;
else fn = handle_tls_writing;
} else {
#endif
if((event&EV_READ))
fn = handle_tcp_reading;
else fn = handle_tcp_writing;
#ifdef HAVE_SSL
}
#endif
p->tcp_no_more_queries = 1;
/* set timeout to 3 seconds (previously 1/10 second) */
if(p->tcp_timeout > 3000)
p->tcp_timeout = 3000;
timeout.tv_sec = p->tcp_timeout / 1000;
timeout.tv_usec = (p->tcp_timeout % 1000)*1000;
event_del(&p->event);
memset(&p->event, 0, sizeof(p->event));
event_set(&p->event, fd, EV_PERSIST | event | EV_TIMEOUT,
fn, p);
if(event_base_set(event_base, &p->event) != 0)
log_msg(LOG_ERR, "event base set failed");
if(event_add(&p->event, &timeout) != 0)
log_msg(LOG_ERR, "event add failed");
}
/* handle it */
while(nsd->current_tcp_count > 0) {
mode_t m = server_signal_mode(nsd);
struct event timeout;
struct timeval tv;
int timed_out = 0;
if(m == NSD_QUIT || m == NSD_SHUTDOWN ||
m == NSD_REAP_CHILDREN) {
/* quit */
break;
}
/* timer */
/* have to do something every 3 seconds */
tv.tv_sec = 3;
tv.tv_usec = 0;
memset(&timeout, 0, sizeof(timeout));
event_set(&timeout, -1, EV_TIMEOUT, remaining_tcp_timeout,
&timed_out);
if(event_base_set(event_base, &timeout) != 0)
log_msg(LOG_ERR, "remaintcp timer: event_base_set failed");
if(event_add(&timeout, &tv) != 0)
log_msg(LOG_ERR, "remaintcp timer: event_add failed");
/* service loop */
if(event_base_loop(event_base, EVLOOP_ONCE) == -1) {
if (errno != EINTR) {
log_msg(LOG_ERR, "dispatch failed: %s", strerror(errno));
break;
}
}
if(!timed_out) {
event_del(&timeout);
} else {
/* timed out, quit */
VERBOSITY(5, (LOG_INFO, "service remaining TCP connections: timed out, quit"));
break;
}
}
#ifdef MEMCLEAN
event_base_free(event_base);
#endif
/* continue to quit after return */
}
/* Implement recvmmsg and sendmmsg if the platform does not. These functions
* are always used, even if nonblocking operations are broken, in which case
* NUM_RECV_PER_SELECT is defined to 1 (one).
*/
#if defined(HAVE_RECVMMSG)
#define nsd_recvmmsg recvmmsg
#else /* !HAVE_RECVMMSG */
static int
nsd_recvmmsg(int sockfd, struct mmsghdr *msgvec, unsigned int vlen,
int flags, struct timespec *timeout)
{
unsigned int vpos = 0;
ssize_t rcvd;
/* timeout is ignored, ensure caller does not expect it to work */
assert(timeout == NULL); (void)timeout;
while(vpos < vlen) {
rcvd = recvfrom(sockfd,
msgvec[vpos].msg_hdr.msg_iov->iov_base,
msgvec[vpos].msg_hdr.msg_iov->iov_len,
flags,
msgvec[vpos].msg_hdr.msg_name,
&msgvec[vpos].msg_hdr.msg_namelen);
if(rcvd < 0) {
break;
} else {
assert((unsigned long long)rcvd <= (unsigned long long)UINT_MAX);
msgvec[vpos].msg_len = (unsigned int)rcvd;
vpos++;
}
}
if(vpos) {
/* error will be picked up next time */
return (int)vpos;
} else if(errno == 0) {
return 0;
} else if(errno == EAGAIN) {
return 0;
}
return -1;
}
#endif /* HAVE_RECVMMSG */
#ifdef HAVE_SENDMMSG
#define nsd_sendmmsg(...) sendmmsg(__VA_ARGS__)
#else /* !HAVE_SENDMMSG */
static int
nsd_sendmmsg(int sockfd, struct mmsghdr *msgvec, unsigned int vlen, int flags)
{
unsigned int vpos = 0;
ssize_t snd;
while(vpos < vlen) {
assert(msgvec[vpos].msg_hdr.msg_iovlen == 1);
snd = sendto(sockfd,
msgvec[vpos].msg_hdr.msg_iov->iov_base,
msgvec[vpos].msg_hdr.msg_iov->iov_len,
flags,
msgvec[vpos].msg_hdr.msg_name,
msgvec[vpos].msg_hdr.msg_namelen);
if(snd < 0) {
break;
} else {
msgvec[vpos].msg_len = (unsigned int)snd;
vpos++;
}
}
if(vpos) {
return (int)vpos;
} else if(errno == 0) {
return 0;
}
return -1;
}
#endif /* HAVE_SENDMMSG */
static int
port_is_zero(
#ifdef INET6
struct sockaddr_storage *addr
#else
struct sockaddr_in *addr
#endif
)
{
#ifdef INET6
if(addr->ss_family == AF_INET6) {
return (((struct sockaddr_in6 *)addr)->sin6_port) == 0;
} else if(addr->ss_family == AF_INET) {
return (((struct sockaddr_in *)addr)->sin_port) == 0;
}
return 0;
#else
if(addr->sin_family == AF_INET) {
return addr->sin_port == 0;
}
return 0;
#endif
}
/* Parses the PROXYv2 header from buf and updates the struct.
* Returns 1 on success, 0 on failure. */
static int
consume_pp2_header(struct buffer* buf, struct query* q, int stream)
{
size_t size;
struct pp2_header* header;
int err = pp2_read_header(buffer_begin(buf), buffer_remaining(buf));
if(err) {
VERBOSITY(4, (LOG_ERR, "proxy-protocol: could not parse "
"PROXYv2 header: %s", pp_lookup_error(err)));
return 0;
}
header = (struct pp2_header*)buffer_begin(buf);
size = PP2_HEADER_SIZE + read_uint16(&header->len);
if(size > buffer_limit(buf)) {
VERBOSITY(4, (LOG_ERR, "proxy-protocol: not enough buffer "
"size to read PROXYv2 header"));
return 0;
}
if((header->ver_cmd & 0xF) == PP2_CMD_LOCAL) {
/* A connection from the proxy itself.
* No need to do anything with addresses. */
goto done;
}
if(header->fam_prot == PP2_UNSPEC_UNSPEC) {
/* Unspecified family and protocol. This could be used for
* health checks by proxies.
* No need to do anything with addresses. */
goto done;
}
/* Read the proxied address */
switch(header->fam_prot) {
case PP2_INET_STREAM:
case PP2_INET_DGRAM:
{
struct sockaddr_in* addr =
(struct sockaddr_in*)&q->client_addr;
addr->sin_family = AF_INET;
memmove(&addr->sin_addr.s_addr,
&header->addr.addr4.src_addr, 4);
memmove(&addr->sin_port, &header->addr.addr4.src_port,
2);
q->client_addrlen = (socklen_t)sizeof(struct sockaddr_in);
}
/* Ignore the destination address; it should be us. */
break;
#ifdef INET6
case PP2_INET6_STREAM:
case PP2_INET6_DGRAM:
{
struct sockaddr_in6* addr =
(struct sockaddr_in6*)&q->client_addr;
memset(addr, 0, sizeof(*addr));
addr->sin6_family = AF_INET6;
memmove(&addr->sin6_addr,
header->addr.addr6.src_addr, 16);
memmove(&addr->sin6_port, &header->addr.addr6.src_port,
2);
q->client_addrlen = (socklen_t)sizeof(struct sockaddr_in6);
}
/* Ignore the destination address; it should be us. */
break;
#endif /* INET6 */
default:
VERBOSITY(2, (LOG_ERR, "proxy-protocol: unsupported "
"family and protocol 0x%x",
(int)header->fam_prot));
return 0;
}
q->is_proxied = 1;
done:
if(!stream) {
/* We are reading a whole packet;
* Move the rest of the data to overwrite the PROXYv2 header */
/* XXX can we do better to avoid memmove? */
memmove(header, ((char*)header)+size, buffer_limit(buf)-size);
buffer_set_limit(buf, buffer_limit(buf)-size);
}
return 1;
}
static void
handle_udp(int fd, short event, void* arg)
{
struct udp_handler_data *data = (struct udp_handler_data *) arg;
int received, sent, recvcount, i;
struct query *q;
uint32_t now = 0;
if (!(event & EV_READ)) {
return;
}
recvcount = nsd_recvmmsg(fd, msgs, NUM_RECV_PER_SELECT, 0, NULL);
/* this printf strangely gave a performance increase on Linux */
/* printf("recvcount %d \n", recvcount); */
if (recvcount == -1) {
if (errno != EAGAIN && errno != EINTR) {
log_msg(LOG_ERR, "recvmmsg failed: %s", strerror(errno));
STATUP(data->nsd, rxerr);
/* No zone statup */
}
/* Simply no data available */
return;
}
for (i = 0; i < recvcount; i++) {
loopstart:
received = msgs[i].msg_len;
queries[i]->remote_addrlen = msgs[i].msg_hdr.msg_namelen;
queries[i]->client_addrlen = (socklen_t)sizeof(queries[i]->client_addr);
queries[i]->is_proxied = 0;
q = queries[i];
if (received == -1) {
log_msg(LOG_ERR, "recvmmsg %d failed %s", i, strerror(
#if defined(HAVE_RECVMMSG)
msgs[i].msg_hdr.msg_flags
#else
errno
#endif
));
STATUP(data->nsd, rxerr);
/* No zone statup */
query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0);
iovecs[i].iov_len = buffer_remaining(q->packet);
msgs[i].msg_hdr.msg_namelen = queries[i]->remote_addrlen;
goto swap_drop;
}
/* Account... */
#ifdef BIND8_STATS
if (data->socket->addr.ai_family == AF_INET) {
STATUP(data->nsd, qudp);
} else if (data->socket->addr.ai_family == AF_INET6) {
STATUP(data->nsd, qudp6);
}
#endif
buffer_skip(q->packet, received);
buffer_flip(q->packet);
if(data->pp2_enabled && !consume_pp2_header(q->packet, q, 0)) {
VERBOSITY(2, (LOG_ERR, "proxy-protocol: could not "
"consume PROXYv2 header"));
goto swap_drop;
}
if(!q->is_proxied) {
q->client_addrlen = q->remote_addrlen;
memmove(&q->client_addr, &q->remote_addr,
q->remote_addrlen);
}
#ifdef USE_DNSTAP
/*
* sending UDP-query with server address (local) and client address to dnstap process
*/
log_addr("query from client", &q->client_addr);
log_addr("to server (local)", (void*)&data->socket->addr.ai_addr);
if(verbosity >= 6 && q->is_proxied)
log_addr("query via proxy", &q->remote_addr);
dt_collector_submit_auth_query(data->nsd, (void*)&data->socket->addr.ai_addr, &q->client_addr, q->client_addrlen,
q->tcp, q->packet);
#endif /* USE_DNSTAP */
/* Process and answer the query... */
if (server_process_query_udp(data->nsd, q, &now) != QUERY_DISCARDED) {
if (RCODE(q->packet) == RCODE_OK && !AA(q->packet)) {
STATUP(data->nsd, nona);
ZTATUP(data->nsd, q->zone, nona);
}
#ifdef USE_ZONE_STATS
if (data->socket->addr.ai_family == AF_INET) {
ZTATUP(data->nsd, q->zone, qudp);
} else if (data->socket->addr.ai_family == AF_INET6) {
ZTATUP(data->nsd, q->zone, qudp6);
}
#endif
/* Add EDNS0 and TSIG info if necessary. */
query_add_optional(q, data->nsd, &now);
buffer_flip(q->packet);
iovecs[i].iov_len = buffer_remaining(q->packet);
#ifdef BIND8_STATS
/* Account the rcode & TC... */
STATUP2(data->nsd, rcode, RCODE(q->packet));
ZTATUP2(data->nsd, q->zone, rcode, RCODE(q->packet));
if (TC(q->packet)) {
STATUP(data->nsd, truncated);
ZTATUP(data->nsd, q->zone, truncated);
}
#endif /* BIND8_STATS */
#ifdef USE_DNSTAP
/*
* sending UDP-response with server address (local) and client address to dnstap process
*/
log_addr("from server (local)", (void*)&data->socket->addr.ai_addr);
log_addr("response to client", &q->client_addr);
if(verbosity >= 6 && q->is_proxied)
log_addr("response via proxy", &q->remote_addr);
dt_collector_submit_auth_response(data->nsd, (void*)&data->socket->addr.ai_addr,
&q->client_addr, q->client_addrlen, q->tcp, q->packet,
q->zone);
#endif /* USE_DNSTAP */
} else {
query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0);
iovecs[i].iov_len = buffer_remaining(q->packet);
msgs[i].msg_hdr.msg_namelen = queries[i]->remote_addrlen;
swap_drop:
STATUP(data->nsd, dropped);
ZTATUP(data->nsd, q->zone, dropped);
if(i != recvcount-1) {
/* swap with last and decrease recvcount */
struct mmsghdr mtmp = msgs[i];
struct iovec iotmp = iovecs[i];
recvcount--;
msgs[i] = msgs[recvcount];
iovecs[i] = iovecs[recvcount];
queries[i] = queries[recvcount];
msgs[recvcount] = mtmp;
iovecs[recvcount] = iotmp;
queries[recvcount] = q;
msgs[i].msg_hdr.msg_iov = &iovecs[i];
msgs[recvcount].msg_hdr.msg_iov = &iovecs[recvcount];
goto loopstart;
} else { recvcount --; }
}
}
/* send until all are sent */
i = 0;
while(i<recvcount) {
sent = nsd_sendmmsg(fd, &msgs[i], recvcount-i, 0);
if(sent == -1) {
if(errno == ENOBUFS ||
#ifdef EWOULDBLOCK
errno == EWOULDBLOCK ||
#endif
errno == EAGAIN) {
/* block to wait until send buffer avail */
int flag, errstore;
if((flag = fcntl(fd, F_GETFL)) == -1) {
log_msg(LOG_ERR, "cannot fcntl F_GETFL: %s", strerror(errno));
flag = 0;
}
flag &= ~O_NONBLOCK;
if(fcntl(fd, F_SETFL, flag) == -1)
log_msg(LOG_ERR, "cannot fcntl F_SETFL 0: %s", strerror(errno));
sent = nsd_sendmmsg(fd, &msgs[i], recvcount-i, 0);
errstore = errno;
flag |= O_NONBLOCK;
if(fcntl(fd, F_SETFL, flag) == -1)
log_msg(LOG_ERR, "cannot fcntl F_SETFL O_NONBLOCK: %s", strerror(errno));
if(sent != -1) {
i += sent;
continue;
}
errno = errstore;
}
if(errno == EINVAL) {
/* skip the invalid argument entry,
* send the remaining packets in the list */
if(!(port_is_zero((void*)&queries[i]->remote_addr) &&
verbosity < 3)) {
const char* es = strerror(errno);
char a[64];
addrport2str((void*)&queries[i]->remote_addr, a, sizeof(a));
log_msg(LOG_ERR, "sendmmsg skip invalid argument [0]=%s count=%d failed: %s", a, (int)(recvcount-i), es);
}
i += 1;
continue;
}
/* don't log transient network full errors, unless
* on higher verbosity */
if(!(errno == ENOBUFS && verbosity < 1) &&
#ifdef EWOULDBLOCK
errno != EWOULDBLOCK &&
#endif
errno != EAGAIN) {
const char* es = strerror(errno);
char a[64];
addrport2str((void*)&queries[i]->remote_addr, a, sizeof(a));
log_msg(LOG_ERR, "sendmmsg [0]=%s count=%d failed: %s", a, (int)(recvcount-i), es);
}
#ifdef BIND8_STATS
data->nsd->st->txerr += recvcount-i;
#endif /* BIND8_STATS */
break;
}
i += sent;
}
for(i=0; i<recvcount; i++) {
query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0);
iovecs[i].iov_len = buffer_remaining(queries[i]->packet);
msgs[i].msg_hdr.msg_namelen = queries[i]->remote_addrlen;
}
}
#ifdef HAVE_SSL
/*
* Setup an event for the tcp handler.
*/
static void
tcp_handler_setup_event(struct tcp_handler_data* data, void (*fn)(int, short, void *),
int fd, short event)
{
struct timeval timeout;
struct event_base* ev_base;
timeout.tv_sec = data->nsd->tcp_timeout;
timeout.tv_usec = 0L;
ev_base = data->event.ev_base;
event_del(&data->event);
memset(&data->event, 0, sizeof(data->event));
event_set(&data->event, fd, event, fn, data);
if(event_base_set(ev_base, &data->event) != 0)
log_msg(LOG_ERR, "event base set failed");
if(event_add(&data->event, &timeout) != 0)
log_msg(LOG_ERR, "event add failed");
}
#endif /* HAVE_SSL */
static void
cleanup_tcp_handler(struct tcp_handler_data* data)
{
event_del(&data->event);
#ifdef HAVE_SSL
if(data->tls) {
SSL_shutdown(data->tls);
SSL_free(data->tls);
data->tls = NULL;
}
if(data->tls_auth) {
SSL_shutdown(data->tls_auth);
SSL_free(data->tls_auth);
data->tls_auth = NULL;
}
#endif
data->pp2_header_state = pp2_header_none;
close(data->event.ev_fd);
if(data->prev)
data->prev->next = data->next;
else tcp_active_list = data->next;
if(data->next)
data->next->prev = data->prev;
/*
* Enable the TCP accept handlers when the current number of
* TCP connections is about to drop below the maximum number
* of TCP connections.
*/
if (slowaccept || data->nsd->current_tcp_count == data->nsd->maximum_tcp_count) {
configure_handler_event_types(EV_READ|EV_PERSIST);
if(slowaccept) {
event_del(&slowaccept_event);
slowaccept = 0;
}
}
--data->nsd->current_tcp_count;
assert(data->nsd->current_tcp_count >= 0);
region_destroy(data->region);
}
/* Read more data into the buffer for tcp read. Pass the amount of additional
* data required. Returns false if nothing needs to be done this event, or
* true if the additional data is in the buffer. */
static int
more_read_buf_tcp(int fd, struct tcp_handler_data* data, void* bufpos,
size_t add_amount, ssize_t* received)
{
*received = read(fd, bufpos, add_amount);
if (*received == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Read would block, wait until more
* data is available.
*/
return 0;
} else {
char buf[48];
if(data->query) {
addr2str(&data->query->remote_addr, buf, sizeof(buf));
} else {
snprintf(buf, sizeof(buf), "unknown");
}
#ifdef ECONNRESET
if (verbosity >= 2 || errno != ECONNRESET)
#endif /* ECONNRESET */
log_msg(LOG_ERR, "failed reading from %s tcp: %s", buf, strerror(errno));
cleanup_tcp_handler(data);
return 0;
}
} else if (*received == 0) {
/* EOF */
cleanup_tcp_handler(data);
return 0;
}
return 1;
}
static void
handle_tcp_reading(int fd, short event, void* arg)
{
struct tcp_handler_data *data = (struct tcp_handler_data *) arg;
ssize_t received;
struct event_base* ev_base;
struct timeval timeout;
uint32_t now = 0;
if ((event & EV_TIMEOUT)) {
/* Connection timed out. */
cleanup_tcp_handler(data);
return;
}
if ((data->nsd->tcp_query_count > 0 &&
data->query_count >= data->nsd->tcp_query_count) ||
(data->query_count > 0 && data->tcp_no_more_queries))
{
/* No more queries allowed on this tcp connection. */
cleanup_tcp_handler(data);
return;
}
assert((event & EV_READ));
if (data->bytes_transmitted == 0 && data->query_needs_reset) {
query_reset(data->query, TCP_MAX_MESSAGE_LEN, 1);
data->query_needs_reset = 0;
}
if(data->pp2_enabled && data->pp2_header_state != pp2_header_done) {
struct pp2_header* header = NULL;
size_t want_read_size = 0;
size_t current_read_size = 0;
if(data->pp2_header_state == pp2_header_none) {
want_read_size = PP2_HEADER_SIZE;
if(buffer_remaining(data->query->packet) <
want_read_size) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: not enough buffer size to read PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
VERBOSITY(6, (LOG_INFO, "proxy-protocol: reading fixed part of PROXYv2 header (len %lu)", (unsigned long)want_read_size));
current_read_size = want_read_size;
if(data->bytes_transmitted < current_read_size) {
if(!more_read_buf_tcp(fd, data,
(void*)buffer_at(data->query->packet,
data->bytes_transmitted),
current_read_size - data->bytes_transmitted,
&received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if(data->bytes_transmitted != current_read_size)
return;
data->pp2_header_state = pp2_header_init;
}
}
if(data->pp2_header_state == pp2_header_init) {
int err;
err = pp2_read_header(buffer_begin(data->query->packet),
buffer_limit(data->query->packet));
if(err) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: could not parse PROXYv2 header: %s", pp_lookup_error(err)));
cleanup_tcp_handler(data);
return;
}
header = (struct pp2_header*)buffer_begin(data->query->packet);
want_read_size = ntohs(header->len);
if(buffer_limit(data->query->packet) <
PP2_HEADER_SIZE + want_read_size) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: not enough buffer size to read PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
VERBOSITY(6, (LOG_INFO, "proxy-protocol: reading variable part of PROXYv2 header (len %lu)", (unsigned long)want_read_size));
current_read_size = PP2_HEADER_SIZE + want_read_size;
if(want_read_size == 0) {
/* nothing more to read; header is complete */
data->pp2_header_state = pp2_header_done;
} else if(data->bytes_transmitted < current_read_size) {
if(!more_read_buf_tcp(fd, data,
(void*)buffer_at(data->query->packet,
data->bytes_transmitted),
current_read_size - data->bytes_transmitted,
&received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if(data->bytes_transmitted != current_read_size)
return;
data->pp2_header_state = pp2_header_done;
}
}
if(data->pp2_header_state != pp2_header_done || !header) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: wrong state for the PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
buffer_flip(data->query->packet);
if(!consume_pp2_header(data->query->packet, data->query, 1)) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: could not consume PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
/* Clear and reset the buffer to read the following
* DNS packet(s). */
buffer_clear(data->query->packet);
data->bytes_transmitted = 0;
}
/*
* Check if we received the leading packet length bytes yet.
*/
if (data->bytes_transmitted < sizeof(uint16_t)) {
if(!more_read_buf_tcp(fd, data,
(char*) &data->query->tcplen + data->bytes_transmitted,
sizeof(uint16_t) - data->bytes_transmitted, &received))
return;
data->bytes_transmitted += received;
if (data->bytes_transmitted < sizeof(uint16_t)) {
/*
* Not done with the tcplen yet, wait for more
* data to become available.
*/
return;
}
assert(data->bytes_transmitted == sizeof(uint16_t));
data->query->tcplen = ntohs(data->query->tcplen);
/*
* Minimum query size is:
*
* Size of the header (12)
* + Root domain name (1)
* + Query class (2)
* + Query type (2)
*/
if (data->query->tcplen < QHEADERSZ + 1 + sizeof(uint16_t) + sizeof(uint16_t)) {
VERBOSITY(2, (LOG_WARNING, "packet too small, dropping tcp connection"));
cleanup_tcp_handler(data);
return;
}
if (data->query->tcplen > data->query->maxlen) {
VERBOSITY(2, (LOG_WARNING, "insufficient tcp buffer, dropping connection"));
cleanup_tcp_handler(data);
return;
}
buffer_set_limit(data->query->packet, data->query->tcplen);
}
assert(buffer_remaining(data->query->packet) > 0);
/* Read the (remaining) query data. */
if(!more_read_buf_tcp(fd, data, buffer_current(data->query->packet),
buffer_remaining(data->query->packet), &received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if (buffer_remaining(data->query->packet) > 0) {
/*
* Message not yet complete, wait for more data to
* become available.
*/
return;
}
assert(buffer_position(data->query->packet) == data->query->tcplen);
/* Account... */
#ifdef BIND8_STATS
#ifndef INET6
STATUP(data->nsd, ctcp);
#else
if (data->query->remote_addr.ss_family == AF_INET) {
STATUP(data->nsd, ctcp);
} else if (data->query->remote_addr.ss_family == AF_INET6) {
STATUP(data->nsd, ctcp6);
}
#endif
#endif /* BIND8_STATS */
/* We have a complete query, process it. */
/* tcp-query-count: handle query counter ++ */
data->query_count++;
buffer_flip(data->query->packet);
#ifdef USE_DNSTAP
/*
* and send TCP-query with found address (local) and client address to dnstap process
*/
log_addr("query from client", &data->query->client_addr);
log_addr("to server (local)", (void*)&data->socket->addr.ai_addr);
if(verbosity >= 6 && data->query->is_proxied)
log_addr("query via proxy", &data->query->remote_addr);
dt_collector_submit_auth_query(data->nsd, (void*)&data->socket->addr.ai_addr, &data->query->client_addr,
data->query->client_addrlen, data->query->tcp, data->query->packet);
#endif /* USE_DNSTAP */
data->query_state = server_process_query(data->nsd, data->query, &now);
if (data->query_state == QUERY_DISCARDED) {
/* Drop the packet and the entire connection... */
STATUP(data->nsd, dropped);
ZTATUP(data->nsd, data->query->zone, dropped);
cleanup_tcp_handler(data);
return;
}
#ifdef BIND8_STATS
if (RCODE(data->query->packet) == RCODE_OK
&& !AA(data->query->packet))
{
STATUP(data->nsd, nona);
ZTATUP(data->nsd, data->query->zone, nona);
}
#endif /* BIND8_STATS */
#ifdef USE_ZONE_STATS
#ifndef INET6
ZTATUP(data->nsd, data->query->zone, ctcp);
#else
if (data->query->remote_addr.ss_family == AF_INET) {
ZTATUP(data->nsd, data->query->zone, ctcp);
} else if (data->query->remote_addr.ss_family == AF_INET6) {
ZTATUP(data->nsd, data->query->zone, ctcp6);
}
#endif
#endif /* USE_ZONE_STATS */
query_add_optional(data->query, data->nsd, &now);
/* Switch to the tcp write handler. */
buffer_flip(data->query->packet);
data->query->tcplen = buffer_remaining(data->query->packet);
#ifdef BIND8_STATS
/* Account the rcode & TC... */
STATUP2(data->nsd, rcode, RCODE(data->query->packet));
ZTATUP2(data->nsd, data->query->zone, rcode, RCODE(data->query->packet));
if (TC(data->query->packet)) {
STATUP(data->nsd, truncated);
ZTATUP(data->nsd, data->query->zone, truncated);
}
#endif /* BIND8_STATS */
#ifdef USE_DNSTAP
/*
* sending TCP-response with found (earlier) address (local) and client address to dnstap process
*/
log_addr("from server (local)", (void*)&data->socket->addr.ai_addr);
log_addr("response to client", &data->query->client_addr);
if(verbosity >= 6 && data->query->is_proxied)
log_addr("response via proxy", &data->query->remote_addr);
dt_collector_submit_auth_response(data->nsd, (void*)&data->socket->addr.ai_addr, &data->query->client_addr,
data->query->client_addrlen, data->query->tcp, data->query->packet,
data->query->zone);
#endif /* USE_DNSTAP */
data->bytes_transmitted = 0;
timeout.tv_sec = data->tcp_timeout / 1000;
timeout.tv_usec = (data->tcp_timeout % 1000)*1000;
ev_base = data->event.ev_base;
event_del(&data->event);
memset(&data->event, 0, sizeof(data->event));
event_set(&data->event, fd, EV_PERSIST | EV_WRITE | EV_TIMEOUT,
handle_tcp_writing, data);
if(event_base_set(ev_base, &data->event) != 0)
log_msg(LOG_ERR, "event base set tcpr failed");
if(event_add(&data->event, &timeout) != 0)
log_msg(LOG_ERR, "event add tcpr failed");
/* see if we can write the answer right away(usually so,EAGAIN ifnot)*/
handle_tcp_writing(fd, EV_WRITE, data);
}
static void
handle_tcp_writing(int fd, short event, void* arg)
{
struct tcp_handler_data *data = (struct tcp_handler_data *) arg;
ssize_t sent;
struct query *q = data->query;
struct timeval timeout;
struct event_base* ev_base;
uint32_t now = 0;
if ((event & EV_TIMEOUT) || !q) {
/* Connection timed out. */
/* Or data->query is NULL, in which case nothing to do. */
cleanup_tcp_handler(data);
return;
}
assert((event & EV_WRITE));
if (data->bytes_transmitted < sizeof(q->tcplen)) {
/* Writing the response packet length. */
uint16_t n_tcplen = htons(q->tcplen);
#ifdef HAVE_WRITEV
struct iovec iov[2];
iov[0].iov_base = (uint8_t*)&n_tcplen + data->bytes_transmitted;
iov[0].iov_len = sizeof(n_tcplen) - data->bytes_transmitted;
iov[1].iov_base = buffer_begin(q->packet);
iov[1].iov_len = buffer_limit(q->packet);
sent = writev(fd, iov, 2);
#else /* HAVE_WRITEV */
sent = write(fd,
(const char *) &n_tcplen + data->bytes_transmitted,
sizeof(n_tcplen) - data->bytes_transmitted);
#endif /* HAVE_WRITEV */
if (sent == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Write would block, wait until
* socket becomes writable again.
*/
return;
} else {
#ifdef ECONNRESET
if(verbosity >= 2 || errno != ECONNRESET)
#endif /* ECONNRESET */
#ifdef EPIPE
if(verbosity >= 2 || errno != EPIPE)
#endif /* EPIPE 'broken pipe' */
{
char client_ip[128];
if(data->query) {
addr2str(&data->query->client_addr, client_ip, sizeof(client_ip));
} else {
snprintf(client_ip, sizeof(client_ip), "unknown");
}
log_msg(LOG_ERR, "failed writing to tcp from %s: %s", client_ip, strerror(errno));
}
cleanup_tcp_handler(data);
return;
}
}
data->bytes_transmitted += sent;
if (data->bytes_transmitted < sizeof(q->tcplen)) {
/*
* Writing not complete, wait until socket
* becomes writable again.
*/
return;
}
#ifdef HAVE_WRITEV
sent -= sizeof(n_tcplen);
/* handle potential 'packet done' code */
goto packet_could_be_done;
#endif
}
sent = write(fd,
buffer_current(q->packet),
buffer_remaining(q->packet));
if (sent == -1) {
if (errno == EAGAIN || errno == EINTR) {
/*
* Write would block, wait until
* socket becomes writable again.
*/
return;
} else {
#ifdef ECONNRESET
if(verbosity >= 2 || errno != ECONNRESET)
#endif /* ECONNRESET */
#ifdef EPIPE
if(verbosity >= 2 || errno != EPIPE)
#endif /* EPIPE 'broken pipe' */
{
char client_ip[128];
if(data->query) {
addr2str(&data->query->client_addr, client_ip, sizeof(client_ip));
} else {
snprintf(client_ip, sizeof(client_ip), "unknown");
}
log_msg(LOG_ERR, "failed writing to tcp from %s: %s", client_ip, strerror(errno));
}
cleanup_tcp_handler(data);
return;
}
}
data->bytes_transmitted += sent;
#ifdef HAVE_WRITEV
packet_could_be_done:
#endif
buffer_skip(q->packet, sent);
if (data->bytes_transmitted < q->tcplen + sizeof(q->tcplen)) {
/*
* Still more data to write when socket becomes
* writable again.
*/
return;
}
assert(data->bytes_transmitted == q->tcplen + sizeof(q->tcplen));
if (data->query_state == QUERY_IN_AXFR ||
data->query_state == QUERY_IN_IXFR) {
/* Continue processing AXFR and writing back results. */
buffer_clear(q->packet);
if(data->query_state == QUERY_IN_AXFR)
data->query_state = query_axfr(data->nsd, q, 0);
else data->query_state = query_ixfr(data->nsd, q);
if (data->query_state != QUERY_PROCESSED) {
query_add_optional(data->query, data->nsd, &now);
/* Reset data. */
buffer_flip(q->packet);
q->tcplen = buffer_remaining(q->packet);
data->bytes_transmitted = 0;
/* Reset timeout. */
timeout.tv_sec = data->tcp_timeout / 1000;
timeout.tv_usec = (data->tcp_timeout % 1000)*1000;
ev_base = data->event.ev_base;
event_del(&data->event);
memset(&data->event, 0, sizeof(data->event));
event_set(&data->event, fd, EV_PERSIST | EV_WRITE | EV_TIMEOUT,
handle_tcp_writing, data);
if(event_base_set(ev_base, &data->event) != 0)
log_msg(LOG_ERR, "event base set tcpw failed");
if(event_add(&data->event, &timeout) != 0)
log_msg(LOG_ERR, "event add tcpw failed");
/*
* Write data if/when the socket is writable
* again.
*/
return;
}
}
/*
* Done sending, wait for the next request to arrive on the
* TCP socket by installing the TCP read handler.
*/
if ((data->nsd->tcp_query_count > 0 &&
data->query_count >= data->nsd->tcp_query_count) ||
data->tcp_no_more_queries) {
(void) shutdown(fd, SHUT_WR);
}
data->bytes_transmitted = 0;
data->query_needs_reset = 1;
timeout.tv_sec = data->tcp_timeout / 1000;
timeout.tv_usec = (data->tcp_timeout % 1000)*1000;
ev_base = data->event.ev_base;
event_del(&data->event);
memset(&data->event, 0, sizeof(data->event));
event_set(&data->event, fd, EV_PERSIST | EV_READ | EV_TIMEOUT,
handle_tcp_reading, data);
if(event_base_set(ev_base, &data->event) != 0)
log_msg(LOG_ERR, "event base set tcpw failed");
if(event_add(&data->event, &timeout) != 0)
log_msg(LOG_ERR, "event add tcpw failed");
}
#ifdef HAVE_SSL
/** create SSL object and associate fd */
static SSL*
incoming_ssl_fd(SSL_CTX* ctx, int fd)
{
SSL* ssl = SSL_new((SSL_CTX*)ctx);
if(!ssl) {
log_crypto_err("could not SSL_new");
return NULL;
}
SSL_set_accept_state(ssl);
(void)SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
if(!SSL_set_fd(ssl, fd)) {
log_crypto_err("could not SSL_set_fd");
SSL_free(ssl);
return NULL;
}
return ssl;
}
/** TLS handshake to upgrade TCP connection */
static int
tls_handshake(struct tcp_handler_data* data, int fd, int writing)
{
int r;
if(data->shake_state == tls_hs_read_event) {
/* read condition satisfied back to writing */
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST|EV_TIMEOUT|EV_WRITE);
data->shake_state = tls_hs_none;
return 1;
}
if(data->shake_state == tls_hs_write_event) {
/* write condition satisfied back to reading */
tcp_handler_setup_event(data, handle_tls_reading, fd, EV_PERSIST|EV_TIMEOUT|EV_READ);
data->shake_state = tls_hs_none;
return 1;
}
/* (continue to) setup the TLS connection */
ERR_clear_error();
if(data->tls_auth)
r = SSL_do_handshake(data->tls_auth);
else
r = SSL_do_handshake(data->tls);
if(r != 1) {
int want;
if(data->tls_auth)
want = SSL_get_error(data->tls_auth, r);
else
want = SSL_get_error(data->tls, r);
if(want == SSL_ERROR_WANT_READ) {
if(data->shake_state == tls_hs_read) {
/* try again later */
return 1;
}
data->shake_state = tls_hs_read;
/* switch back to reading mode */
tcp_handler_setup_event(data, handle_tls_reading, fd, EV_PERSIST|EV_TIMEOUT|EV_READ);
return 1;
} else if(want == SSL_ERROR_WANT_WRITE) {
if(data->shake_state == tls_hs_write) {
/* try again later */
return 1;
}
data->shake_state = tls_hs_write;
/* switch back to writing mode */
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST|EV_TIMEOUT|EV_WRITE);
return 1;
} else {
if(r == 0)
VERBOSITY(5, (LOG_ERR, "TLS handshake: connection closed prematurely"));
else {
unsigned long err = ERR_get_error();
if(!squelch_err_ssl_handshake(err)) {
char a[64], s[256];
if(data->query) {
addr2str(&data->query->remote_addr, a, sizeof(a));
} else {
snprintf(a, sizeof(a), "unknown");
}
snprintf(s, sizeof(s), "TLS handshake failed from %s", a);
log_crypto_from_err(LOG_ERR, s, err);
}
}
cleanup_tcp_handler(data);
return 0;
}
}
/* Use to log successful upgrade for testing - could be removed*/
if(data->tls_auth)
VERBOSITY(5, (LOG_INFO, "TLS-AUTH handshake succeeded."));
else
VERBOSITY(5, (LOG_INFO, "TLS handshake succeeded."));
/* set back to the event we need to have when reading (or writing) */
if(data->shake_state == tls_hs_read && writing) {
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST|EV_TIMEOUT|EV_WRITE);
} else if(data->shake_state == tls_hs_write && !writing) {
tcp_handler_setup_event(data, handle_tls_reading, fd, EV_PERSIST|EV_TIMEOUT|EV_READ);
}
data->shake_state = tls_hs_none;
return 1;
}
/* Read more data into the buffer for tls read. Pass the amount of additional
* data required. Returns false if nothing needs to be done this event, or
* true if the additional data is in the buffer. */
static int
more_read_buf_tls(int fd, struct tcp_handler_data* data, void* bufpos,
size_t add_amount, ssize_t* received)
{
int r;
ERR_clear_error();
if(data->tls_auth)
r = (*received=SSL_read(data->tls_auth, bufpos, add_amount));
else
r = (*received=SSL_read(data->tls, bufpos, add_amount));
if(r <= 0) {
int want;
if(data->tls_auth)
want = SSL_get_error(data->tls_auth, *received);
else
want = SSL_get_error(data->tls, *received);
if(want == SSL_ERROR_ZERO_RETURN) {
cleanup_tcp_handler(data);
return 0; /* shutdown, closed */
} else if(want == SSL_ERROR_WANT_READ) {
/* wants to be called again */
return 0;
}
else if(want == SSL_ERROR_WANT_WRITE) {
/* switch to writing */
data->shake_state = tls_hs_write_event;
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST | EV_WRITE | EV_TIMEOUT);
return 0;
}
cleanup_tcp_handler(data);
log_crypto_err("could not SSL_read");
return 0;
}
return 1;
}
/** handle TLS reading of incoming query */
static void
handle_tls_reading(int fd, short event, void* arg)
{
struct tcp_handler_data *data = (struct tcp_handler_data *) arg;
ssize_t received;
uint32_t now = 0;
if ((event & EV_TIMEOUT)) {
/* Connection timed out. */
cleanup_tcp_handler(data);
return;
}
if ((data->nsd->tcp_query_count > 0 &&
data->query_count >= data->nsd->tcp_query_count) ||
(data->query_count > 0 && data->tcp_no_more_queries))
{
/* No more queries allowed on this tcp connection. */
cleanup_tcp_handler(data);
return;
}
assert((event & EV_READ));
if (data->bytes_transmitted == 0 && data->query_needs_reset) {
query_reset(data->query, TCP_MAX_MESSAGE_LEN, 1);
data->query_needs_reset = 0;
}
if(data->shake_state != tls_hs_none) {
if(!tls_handshake(data, fd, 0))
return;
if(data->shake_state != tls_hs_none)
return;
}
if(data->pp2_enabled && data->pp2_header_state != pp2_header_done) {
struct pp2_header* header = NULL;
size_t want_read_size = 0;
size_t current_read_size = 0;
if(data->pp2_header_state == pp2_header_none) {
want_read_size = PP2_HEADER_SIZE;
if(buffer_remaining(data->query->packet) <
want_read_size) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: not enough buffer size to read PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
VERBOSITY(6, (LOG_INFO, "proxy-protocol: reading fixed part of PROXYv2 header (len %lu)", (unsigned long)want_read_size));
current_read_size = want_read_size;
if(data->bytes_transmitted < current_read_size) {
if(!more_read_buf_tls(fd, data,
buffer_at(data->query->packet,
data->bytes_transmitted),
current_read_size - data->bytes_transmitted,
&received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if(data->bytes_transmitted != current_read_size)
return;
data->pp2_header_state = pp2_header_init;
}
}
if(data->pp2_header_state == pp2_header_init) {
int err;
err = pp2_read_header(buffer_begin(data->query->packet),
buffer_limit(data->query->packet));
if(err) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: could not parse PROXYv2 header: %s", pp_lookup_error(err)));
cleanup_tcp_handler(data);
return;
}
header = (struct pp2_header*)buffer_begin(data->query->packet);
want_read_size = ntohs(header->len);
if(buffer_limit(data->query->packet) <
PP2_HEADER_SIZE + want_read_size) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: not enough buffer size to read PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
VERBOSITY(6, (LOG_INFO, "proxy-protocol: reading variable part of PROXYv2 header (len %lu)", (unsigned long)want_read_size));
current_read_size = PP2_HEADER_SIZE + want_read_size;
if(want_read_size == 0) {
/* nothing more to read; header is complete */
data->pp2_header_state = pp2_header_done;
} else if(data->bytes_transmitted < current_read_size) {
if(!more_read_buf_tls(fd, data,
buffer_at(data->query->packet,
data->bytes_transmitted),
current_read_size - data->bytes_transmitted,
&received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if(data->bytes_transmitted != current_read_size)
return;
data->pp2_header_state = pp2_header_done;
}
}
if(data->pp2_header_state != pp2_header_done || !header) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: wrong state for the PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
buffer_flip(data->query->packet);
if(!consume_pp2_header(data->query->packet, data->query, 1)) {
VERBOSITY(6, (LOG_ERR, "proxy-protocol: could not consume PROXYv2 header"));
cleanup_tcp_handler(data);
return;
}
/* Clear and reset the buffer to read the following
* DNS packet(s). */
buffer_clear(data->query->packet);
data->bytes_transmitted = 0;
}
/*
* Check if we received the leading packet length bytes yet.
*/
if(data->bytes_transmitted < sizeof(uint16_t)) {
if(!more_read_buf_tls(fd, data,
(char *) &data->query->tcplen + data->bytes_transmitted,
sizeof(uint16_t) - data->bytes_transmitted, &received))
return;
data->bytes_transmitted += received;
if (data->bytes_transmitted < sizeof(uint16_t)) {
/*
* Not done with the tcplen yet, wait for more
* data to become available.
*/
return;
}
assert(data->bytes_transmitted == sizeof(uint16_t));
data->query->tcplen = ntohs(data->query->tcplen);
/*
* Minimum query size is:
*
* Size of the header (12)
* + Root domain name (1)
* + Query class (2)
* + Query type (2)
*/
if (data->query->tcplen < QHEADERSZ + 1 + sizeof(uint16_t) + sizeof(uint16_t)) {
VERBOSITY(2, (LOG_WARNING, "packet too small, dropping tcp connection"));
cleanup_tcp_handler(data);
return;
}
if (data->query->tcplen > data->query->maxlen) {
VERBOSITY(2, (LOG_WARNING, "insufficient tcp buffer, dropping connection"));
cleanup_tcp_handler(data);
return;
}
buffer_set_limit(data->query->packet, data->query->tcplen);
}
assert(buffer_remaining(data->query->packet) > 0);
/* Read the (remaining) query data. */
if(!more_read_buf_tls(fd, data, buffer_current(data->query->packet),
buffer_remaining(data->query->packet), &received))
return;
data->bytes_transmitted += received;
buffer_skip(data->query->packet, received);
if (buffer_remaining(data->query->packet) > 0) {
/*
* Message not yet complete, wait for more data to
* become available.
*/
return;
}
assert(buffer_position(data->query->packet) == data->query->tcplen);
/* Account... */
#ifndef INET6
STATUP(data->nsd, ctls);
#else
if (data->query->remote_addr.ss_family == AF_INET) {
STATUP(data->nsd, ctls);
} else if (data->query->remote_addr.ss_family == AF_INET6) {
STATUP(data->nsd, ctls6);
}
#endif
/* We have a complete query, process it. */
/* tcp-query-count: handle query counter ++ */
data->query_count++;
buffer_flip(data->query->packet);
#ifdef USE_DNSTAP
/*
* and send TCP-query with found address (local) and client address to dnstap process
*/
log_addr("query from client", &data->query->client_addr);
log_addr("to server (local)", (void*)&data->socket->addr.ai_addr);
if(verbosity >= 6 && data->query->is_proxied)
log_addr("query via proxy", &data->query->remote_addr);
dt_collector_submit_auth_query(data->nsd, (void*)&data->socket->addr.ai_addr, &data->query->client_addr,
data->query->client_addrlen, data->query->tcp, data->query->packet);
#endif /* USE_DNSTAP */
data->query_state = server_process_query(data->nsd, data->query, &now);
if (data->query_state == QUERY_DISCARDED) {
/* Drop the packet and the entire connection... */
STATUP(data->nsd, dropped);
ZTATUP(data->nsd, data->query->zone, dropped);
cleanup_tcp_handler(data);
return;
}
#ifdef BIND8_STATS
if (RCODE(data->query->packet) == RCODE_OK
&& !AA(data->query->packet))
{
STATUP(data->nsd, nona);
ZTATUP(data->nsd, data->query->zone, nona);
}
#endif /* BIND8_STATS */
#ifdef USE_ZONE_STATS
#ifndef INET6
ZTATUP(data->nsd, data->query->zone, ctls);
#else
if (data->query->remote_addr.ss_family == AF_INET) {
ZTATUP(data->nsd, data->query->zone, ctls);
} else if (data->query->remote_addr.ss_family == AF_INET6) {
ZTATUP(data->nsd, data->query->zone, ctls6);
}
#endif
#endif /* USE_ZONE_STATS */
query_add_optional(data->query, data->nsd, &now);
/* Switch to the tcp write handler. */
buffer_flip(data->query->packet);
data->query->tcplen = buffer_remaining(data->query->packet);
#ifdef BIND8_STATS
/* Account the rcode & TC... */
STATUP2(data->nsd, rcode, RCODE(data->query->packet));
ZTATUP2(data->nsd, data->query->zone, rcode, RCODE(data->query->packet));
if (TC(data->query->packet)) {
STATUP(data->nsd, truncated);
ZTATUP(data->nsd, data->query->zone, truncated);
}
#endif /* BIND8_STATS */
#ifdef USE_DNSTAP
/*
* sending TCP-response with found (earlier) address (local) and client address to dnstap process
*/
log_addr("from server (local)", (void*)&data->socket->addr.ai_addr);
log_addr("response to client", &data->query->client_addr);
if(verbosity >= 6 && data->query->is_proxied)
log_addr("response via proxy", &data->query->remote_addr);
dt_collector_submit_auth_response(data->nsd, (void*)&data->socket->addr.ai_addr, &data->query->client_addr,
data->query->client_addrlen, data->query->tcp, data->query->packet,
data->query->zone);
#endif /* USE_DNSTAP */
data->bytes_transmitted = 0;
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST | EV_WRITE | EV_TIMEOUT);
/* see if we can write the answer right away(usually so,EAGAIN ifnot)*/
handle_tls_writing(fd, EV_WRITE, data);
}
/** handle TLS writing of outgoing response */
static void
handle_tls_writing(int fd, short event, void* arg)
{
struct tcp_handler_data *data = (struct tcp_handler_data *) arg;
ssize_t sent;
struct query *q = data->query;
/* static variable that holds reassembly buffer used to put the
* TCP length in front of the packet, like writev. */
static buffer_type* global_tls_temp_buffer = NULL;
buffer_type* write_buffer;
uint32_t now = 0;
if ((event & EV_TIMEOUT) || !q) {
/* Connection timed out. */
/* Or data->query is NULL, in which case nothing to do. */
cleanup_tcp_handler(data);
return;
}
assert((event & EV_WRITE));
if(data->shake_state != tls_hs_none) {
if(!tls_handshake(data, fd, 1))
return;
if(data->shake_state != tls_hs_none)
return;
}
if(data->tls_auth)
(void)SSL_set_mode(data->tls_auth, SSL_MODE_ENABLE_PARTIAL_WRITE);
else
(void)SSL_set_mode(data->tls, SSL_MODE_ENABLE_PARTIAL_WRITE);
/* If we are writing the start of a message, we must include the length
* this is done with a copy into write_buffer. */
write_buffer = NULL;
if (data->bytes_transmitted == 0) {
if(!global_tls_temp_buffer) {
/* gets deallocated when nsd shuts down from
* nsd.region */
global_tls_temp_buffer = buffer_create(nsd.region,
QIOBUFSZ + sizeof(q->tcplen));
if (!global_tls_temp_buffer) {
return;
}
}
write_buffer = global_tls_temp_buffer;
buffer_clear(write_buffer);
buffer_write_u16(write_buffer, q->tcplen);
buffer_write(write_buffer, buffer_current(q->packet),
(int)buffer_remaining(q->packet));
buffer_flip(write_buffer);
} else {
write_buffer = q->packet;
}
/* Write the response */
ERR_clear_error();
if(data->tls_auth)
sent = SSL_write(data->tls_auth, buffer_current(write_buffer), buffer_remaining(write_buffer));
else
sent = SSL_write(data->tls, buffer_current(write_buffer), buffer_remaining(write_buffer));
if(sent <= 0) {
int want;
if(data->tls_auth)
want = SSL_get_error(data->tls_auth, sent);
else
want = SSL_get_error(data->tls, sent);
if(want == SSL_ERROR_ZERO_RETURN) {
cleanup_tcp_handler(data);
/* closed */
} else if(want == SSL_ERROR_WANT_READ) {
/* switch back to reading */
data->shake_state = tls_hs_read_event;
tcp_handler_setup_event(data, handle_tls_reading, fd, EV_PERSIST | EV_READ | EV_TIMEOUT);
} else if(want != SSL_ERROR_WANT_WRITE) {
cleanup_tcp_handler(data);
{
char client_ip[128], e[188];
if(data->query) {
addr2str(&data->query->client_addr, client_ip, sizeof(client_ip));
} else {
snprintf(client_ip, sizeof(client_ip), "unknown");
}
snprintf(e, sizeof(e), "failed writing to tls from %s: %s",
client_ip, "SSL_write error");
log_crypto_err(e);
}
}
return;
}
buffer_skip(write_buffer, sent);
if(buffer_remaining(write_buffer) != 0) {
/* If not all sent, sync up the real buffer if it wasn't used.*/
if (data->bytes_transmitted == 0 && (ssize_t)sent > (ssize_t)sizeof(q->tcplen)) {
buffer_skip(q->packet, (ssize_t)sent - (ssize_t)sizeof(q->tcplen));
}
}
data->bytes_transmitted += sent;
if (data->bytes_transmitted < q->tcplen + sizeof(q->tcplen)) {
/*
* Still more data to write when socket becomes
* writable again.
*/
return;
}
assert(data->bytes_transmitted == q->tcplen + sizeof(q->tcplen));
if (data->query_state == QUERY_IN_AXFR ||
data->query_state == QUERY_IN_IXFR) {
/* Continue processing AXFR and writing back results. */
buffer_clear(q->packet);
if(data->query_state == QUERY_IN_AXFR)
data->query_state = query_axfr(data->nsd, q, 0);
else data->query_state = query_ixfr(data->nsd, q);
if (data->query_state != QUERY_PROCESSED) {
query_add_optional(data->query, data->nsd, &now);
/* Reset data. */
buffer_flip(q->packet);
q->tcplen = buffer_remaining(q->packet);
data->bytes_transmitted = 0;
/* Reset to writing mode. */
tcp_handler_setup_event(data, handle_tls_writing, fd, EV_PERSIST | EV_WRITE | EV_TIMEOUT);
/*
* Write data if/when the socket is writable
* again.
*/
return;
}
}
/*
* Done sending, wait for the next request to arrive on the
* TCP socket by installing the TCP read handler.
*/
if ((data->nsd->tcp_query_count > 0 &&
data->query_count >= data->nsd->tcp_query_count) ||
data->tcp_no_more_queries) {
(void) shutdown(fd, SHUT_WR);
}
data->bytes_transmitted = 0;
data->query_needs_reset = 1;
tcp_handler_setup_event(data, handle_tls_reading, fd, EV_PERSIST | EV_READ | EV_TIMEOUT);
}
#endif
static void
handle_slowaccept_timeout(int ATTR_UNUSED(fd), short ATTR_UNUSED(event),
void* ATTR_UNUSED(arg))
{
if(slowaccept) {
configure_handler_event_types(EV_PERSIST | EV_READ);
slowaccept = 0;
}
}
static int perform_accept(int fd, struct sockaddr *addr, socklen_t *addrlen)
{
#ifndef HAVE_ACCEPT4
int s = accept(fd, addr, addrlen);
if (s != -1) {
if (fcntl(s, F_SETFL, O_NONBLOCK) == -1) {
log_msg(LOG_ERR, "fcntl failed: %s", strerror(errno));
close(s);
s = -1;
errno=EINTR; /* stop error printout as error in accept4
by setting this errno, it omits printout, in
later code that calls nsd_accept4 */
}
}
return s;
#else
return accept4(fd, addr, addrlen, SOCK_NONBLOCK);
#endif /* HAVE_ACCEPT4 */
}
/*
* Handle an incoming TCP connection. The connection is accepted and
* a new TCP reader event handler is added. The TCP handler
* is responsible for cleanup when the connection is closed.
*/
static void
handle_tcp_accept(int fd, short event, void* arg)
{
struct tcp_accept_handler_data *data
= (struct tcp_accept_handler_data *) arg;
int s;
int reject = 0;
struct tcp_handler_data *tcp_data;
region_type *tcp_region;
#ifdef INET6
struct sockaddr_storage addr;
#else
struct sockaddr_in addr;
#endif
socklen_t addrlen;
struct timeval timeout;
if (!(event & EV_READ)) {
return;
}
if (data->nsd->current_tcp_count >= data->nsd->maximum_tcp_count) {
reject = data->nsd->options->tcp_reject_overflow;
if (!reject) {
return;
}
}
/* Accept it... */
addrlen = sizeof(addr);
s = perform_accept(fd, (struct sockaddr *) &addr, &addrlen);
if (s == -1) {
/**
* EMFILE and ENFILE is a signal that the limit of open
* file descriptors has been reached. Pause accept().
* EINTR is a signal interrupt. The others are various OS ways
* of saying that the client has closed the connection.
*/
if (errno == EMFILE || errno == ENFILE) {
if (!slowaccept) {
/* disable accept events */
struct timeval tv;
configure_handler_event_types(0);
tv.tv_sec = SLOW_ACCEPT_TIMEOUT;
tv.tv_usec = 0L;
memset(&slowaccept_event, 0,
sizeof(slowaccept_event));
event_set(&slowaccept_event, -1, EV_TIMEOUT,
handle_slowaccept_timeout, NULL);
(void)event_base_set(data->event.ev_base,
&slowaccept_event);
(void)event_add(&slowaccept_event, &tv);
slowaccept = 1;
/* We don't want to spam the logs here */
}
} else if (errno != EINTR
&& errno != EWOULDBLOCK
#ifdef ECONNABORTED
&& errno != ECONNABORTED
#endif /* ECONNABORTED */
#ifdef EPROTO
&& errno != EPROTO
#endif /* EPROTO */
) {
log_msg(LOG_ERR, "accept failed: %s", strerror(errno));
}
return;
}
if (reject) {
shutdown(s, SHUT_RDWR);
close(s);
return;
}
/*
* This region is deallocated when the TCP connection is
* closed by the TCP handler.
*/
tcp_region = region_create(xalloc, free);
tcp_data = (struct tcp_handler_data *) region_alloc(
tcp_region, sizeof(struct tcp_handler_data));
tcp_data->region = tcp_region;
tcp_data->query = query_create(tcp_region, compressed_dname_offsets,
compression_table_size, compressed_dnames);
tcp_data->nsd = data->nsd;
tcp_data->query_count = 0;
#ifdef HAVE_SSL
tcp_data->shake_state = tls_hs_none;
/* initialize both incase of dangling pointers */
tcp_data->tls = NULL;
tcp_data->tls_auth = NULL;
#endif
tcp_data->query_needs_reset = 1;
tcp_data->pp2_enabled = data->pp2_enabled;
tcp_data->pp2_header_state = pp2_header_none;
tcp_data->prev = NULL;
tcp_data->next = NULL;
tcp_data->query_state = QUERY_PROCESSED;
tcp_data->bytes_transmitted = 0;
memcpy(&tcp_data->query->remote_addr, &addr, addrlen);
tcp_data->query->remote_addrlen = addrlen;
/* Copy remote_address to client_address.
* Simplest way/time for streams to do that. */
memcpy(&tcp_data->query->client_addr, &addr, addrlen);
tcp_data->query->client_addrlen = addrlen;
tcp_data->query->is_proxied = 0;
tcp_data->tcp_no_more_queries = 0;
tcp_data->tcp_timeout = data->nsd->tcp_timeout * 1000;
if (data->nsd->current_tcp_count > data->nsd->maximum_tcp_count/2) {
/* very busy, give smaller timeout */
tcp_data->tcp_timeout = 200;
}
memset(&tcp_data->event, 0, sizeof(tcp_data->event));
timeout.tv_sec = tcp_data->tcp_timeout / 1000;
timeout.tv_usec = (tcp_data->tcp_timeout % 1000)*1000;
#ifdef USE_DNSTAP
/* save the address of the connection */
tcp_data->socket = data->socket;
#endif /* USE_DNSTAP */
#ifdef HAVE_SSL
if (data->tls_accept) {
tcp_data->tls = incoming_ssl_fd(tcp_data->nsd->tls_ctx, s);
if(!tcp_data->tls) {
close(s);
return;
}
tcp_data->query->tls = tcp_data->tls;
tcp_data->shake_state = tls_hs_read;
memset(&tcp_data->event, 0, sizeof(tcp_data->event));
event_set(&tcp_data->event, s, EV_PERSIST | EV_READ | EV_TIMEOUT,
handle_tls_reading, tcp_data);
} else if (data->tls_auth_accept) {
tcp_data->tls_auth = incoming_ssl_fd(tcp_data->nsd->tls_auth_ctx, s);
if(!tcp_data->tls_auth) {
close(s);
return;
}
tcp_data->query->tls_auth = tcp_data->tls_auth;
tcp_data->shake_state = tls_hs_read;
memset(&tcp_data->event, 0, sizeof(tcp_data->event));
event_set(&tcp_data->event, s, EV_PERSIST | EV_READ | EV_TIMEOUT,
handle_tls_reading, tcp_data);
} else {
#endif
memset(&tcp_data->event, 0, sizeof(tcp_data->event));
event_set(&tcp_data->event, s, EV_PERSIST | EV_READ | EV_TIMEOUT,
handle_tcp_reading, tcp_data);
#ifdef HAVE_SSL
}
#endif
if(event_base_set(data->event.ev_base, &tcp_data->event) != 0) {
log_msg(LOG_ERR, "cannot set tcp event base");
close(s);
region_destroy(tcp_region);
return;
}
if(event_add(&tcp_data->event, &timeout) != 0) {
log_msg(LOG_ERR, "cannot add tcp to event base");
close(s);
region_destroy(tcp_region);
return;
}
if(tcp_active_list) {
tcp_active_list->prev = tcp_data;
tcp_data->next = tcp_active_list;
}
tcp_active_list = tcp_data;
/*
* Keep track of the total number of TCP handlers installed so
* we can stop accepting connections when the maximum number
* of simultaneous TCP connections is reached.
*
* If tcp-reject-overflow is enabled, however, then we do not
* change the handler event type; we keep it as-is and accept
* overflow TCP connections only so that we can forcibly kill
* them off.
*/
++data->nsd->current_tcp_count;
if (!data->nsd->options->tcp_reject_overflow &&
data->nsd->current_tcp_count == data->nsd->maximum_tcp_count)
{
configure_handler_event_types(0);
}
}
#ifdef USE_XDP
static void handle_xdp(int fd, short event, void* arg) {
struct xdp_handler_data *data = (struct xdp_handler_data*) arg;
if ((event & EV_READ))
xdp_handle_recv_and_send(data->server);
(void)fd;
}
#endif
static void
send_children_command(struct nsd* nsd, sig_atomic_t command, int timeout)
{
size_t i;
assert(nsd->server_kind == NSD_SERVER_MAIN && nsd->this_child == 0);
for (i = 0; i < nsd->child_count; ++i) {
if (nsd->children[i].pid > 0 && nsd->children[i].child_fd != -1) {
if (write(nsd->children[i].child_fd,
&command,
sizeof(command)) == -1)
{
if(errno != EAGAIN && errno != EINTR)
log_msg(LOG_ERR, "problems sending command %d to server %d: %s",
(int) command,
(int) nsd->children[i].pid,
strerror(errno));
} else if (timeout > 0) {
(void)block_read(NULL,
nsd->children[i].child_fd,
&command, sizeof(command), timeout);
}
fsync(nsd->children[i].child_fd);
close(nsd->children[i].child_fd);
nsd->children[i].child_fd = -1;
}
}
}
static void
send_children_quit(struct nsd* nsd)
{
DEBUG(DEBUG_IPC, 1, (LOG_INFO, "send children quit"));
send_children_command(nsd, NSD_QUIT, 0);
}
static void
send_children_quit_and_wait(struct nsd* nsd)
{
DEBUG(DEBUG_IPC, 1, (LOG_INFO, "send children quit and wait"));
send_children_command(nsd, NSD_QUIT_CHILD, 3);
}
#ifdef BIND8_STATS
static void
set_children_stats(struct nsd* nsd)
{
size_t i;
assert(nsd->server_kind == NSD_SERVER_MAIN && nsd->this_child == 0);
DEBUG(DEBUG_IPC, 1, (LOG_INFO, "parent set stats to send to children"));
for (i = 0; i < nsd->child_count; ++i) {
nsd->children[i].need_to_send_STATS = 1;
nsd->children[i].handler->event_types |= NETIO_EVENT_WRITE;
}
}
#endif /* BIND8_STATS */
static void
configure_handler_event_types(short event_types)
{
size_t i;
for (i = 0; i < tcp_accept_handler_count; ++i) {
struct event* handler = &tcp_accept_handlers[i].event;
if(event_types) {
/* reassign */
int fd = handler->ev_fd;
struct event_base* base = handler->ev_base;
if(tcp_accept_handlers[i].event_added)
event_del(handler);
memset(handler, 0, sizeof(*handler));
event_set(handler, fd, event_types,
handle_tcp_accept, &tcp_accept_handlers[i]);
if(event_base_set(base, handler) != 0)
log_msg(LOG_ERR, "conhand: cannot event_base");
if(event_add(handler, NULL) != 0)
log_msg(LOG_ERR, "conhand: cannot event_add");
tcp_accept_handlers[i].event_added = 1;
} else {
/* remove */
if(tcp_accept_handlers[i].event_added) {
event_del(handler);
tcp_accept_handlers[i].event_added = 0;
}
}
}
}
|