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
|
14 April 2010: Matthijs
- uintptr_t fallback value to void*
- Backwards compatibality for MAP_ANONYMOUS
- Tag 3.2.5.
31 March 2010: Matthijs
- Commit b64_pton optimalized compat code (Martin Svec).
- Commit (experimental) mmap-alloc-namedb patch (Martin Svec).
- Commit parse-token-leaks patch (Martin Svec).
27 March 2010: Wouter
- fix bug#303: misspelled error message.
19 March 2010: Wouter
- documented nsid: "hex string" setting in nsd.conf.sample.
24 February 2010: Matthijs
- nsid: option
- Enable NSID support by default
- --with-chroot configure option
- Less stupid chroot error handling
15 February 2010: Matthijs
- Skip memory cleanup to speed up reload (Martin Svec)
1 February 2010: Wouter
- compat code for memcmp unsigned comparsions.
21 January 2010: Wouter
- fixup debug sprintf to snprintf.
21 Januari 2010: Matthijs
- Secure string functions, including compat code for strlcat.
- Randomness utility function
- Prepare for default chroot
6 Januari 2010: Wouter
- check write errors when marking commit failed when difffile is broken.
6 Januari 2010: Matthijs
- Move to 3.2.5
23 December 2009: Matthijs
- Store new options in nsd structure.
22 December 2009: Matthijs
- New options 'ipv4-edns-size:' and 'ipv6-edns-size'.
- Bug 276
- Bug 286
- Bug 288
21 December 2009: Matthijs
- New option 'tcp-query-count:'.
- New option 'tcp-timeout:' and configure option '--with-tcp-timeout'.
- New zone option 'notify-retry:'.
11 December 2009: Wouter
- Disable UDP IPv4 DF flag on Linux/FreeBSD/AIX with socket option.
20 November 2009: Matthijs
- NSID bugfix: NSD did not recognize NSID in the query.
9 September 2009: Matthijs
- DLV support
18 August 2009: Matthijs
- Bug 269.
- Typo: logincap.h -> login_cap.h
12 August 2009: Matthijs
- Maintainers feedback
10 August 2009: Matthijs
- Code review.
- Also send errors to /dev/null in controlled_stop.
- chown nsd.db
7 August 2009: Matthijs
- Bug 266: don't have strptime build error
28 July 2009: Matthijs
- Bug 263: make TSIG algorithms comparison case insensitive.
23 July 2009: Matthijs
- Patch Paul Wouters for NSD using hardcoded name.
13 July 2009: Matthijs
- Bug 236: allow RRs before the SOA RR.
- Bug 253: No need for NS RRset in authority section, when returning final answer for QTYPE=DNSKEY.
29 June 2009: Wouter
- patch for use of Linux IPV6_MTU option, so that on linux the default
EDNS UDP size advertised becomes 4096 over IPv6. It fragments the
packets using the IPv6 minimum MTU.
19 May 2009: Matthijs
- Clean up configure script (install hickup)
- Bug 249: Remove unnecessary LLONG_MIN and LLONG_MAX code.
- Replace strtoll code with own strtoserial function.
- Move up to 3.2.3.
11 May 2009: Matthijs
- Add Off-by-one test
6 May 2009: Matthijs
- Small fix in SO_REUSEADDR warning log message.
- Off-by-one bugfix (thanks Ilja van Sprundel, IOActive)
29 April 2009: Matthijs
- A more ensured do_stop (useful fo nsdc restart).
2 February 2009: Matthijs
- Bugfix #234.
- Bugfix #235.
- Reset 'error occurred' after notifying an error occurred at the $TTL or
$ORIGIN directive (Otherwise, the whole zone is skipped because the
error is reset after reading the SOA).
2 February 2009: Matthijs
- Bugfix: return BADVERS when EDNS version > 0, instead of 0x1<FORMERR>.
19 January 2009: Matthijs
- Bug 230: nsd-*: use stdout for non-error output (instead of stderr).
- Don't do strptime test when cross compiling.
17 January 2009: Jelte
- Fix file rotation when no logfile but chroot.
8 January 2009: Matthijs
- New nsd-patch option -o dbfile (set output.db)
- update nsdc to deal with the new nsd-patch options
- strptime compat fix
6 January 2009: Matthijs
- New nsd-patch option -s (skip writing zonefiles)
- Removed some region_create memchecks (not needed)
5 January 2009: Matthijs
- Bug 218
- Bug 222
- Replace SHA256_DIGEST_LENGTH with nicer HAVE_EVP_SHA256
10 December 2008: Matthijs
- Bugfix: better error message when ixfr.db cannot be read
18 November 2008: Matthijs
- chown logfile, don't do file rotation if logfile is outside absolute
and outside chroot.
17 November 2008: Matthijs
- File rotation for nsd.log when owned by nsd (+ tpkg test).
- Only AXFR fallback if master responded NOTIMPL or FORMATERR on IXFR
request.
- allow-axfr-fallback option.
7 November 2008: Matthijs
- Bugfix: don't fclose if logfile == NULL.
30 October 2008: Matthijs
- Allow escape characters in literal dnames
- Fix typo in zonec manpage
- Some fixes from code review
20 October 2008: Matthijs
- Redo bugfix literal domain names in rdata (code adjustment)
- Added tests for case sensitive dns names and "Bug #162"
- Adjust nsd-patch to new ixfr.db format
14 October 2008: Matthijs
- Only SO_LINGER when outgoing port is set
- Reset diff_skip when a new difffile is created (parts in the difffile
now have a timestamp).
- Undo bugfix literal domain names in rdata (code adjustment)
- Split up dname_parse to parse literal dnames and normalized dnames.
3 October 2008: Matthijs
- setsockopt SO_LINGER, for portability outgoing-interface (BSD/Solaris)
1 October 2008: Matthijs
- Configure the source ip-address for notifies by the master and zone
transfer requests by the slave in nsd.conf.
- Previously added source hostname/ip and port configuration for
nsd-notify and nsd-xfer
- Finetuned nsdc for nsdc notify and nsdc update
29 September 2008: Matthijs
- Bugfix: only normalize domain names in rdatas when rrtype is listed in
RFC 4034, section 6.2: Canonical RR Form.
- Update TODO list
25 September 2008: Matthijs
- Fix bug where hmac-sha256 was in algorithm table, but could not be
retrieved by name or id.
- Additional arguments for nsd-notify and nsd-xfer: set outgoing
hostname/ip-address and source port.
- Additional TODO entry: optimize code in nsd-* programs.
8 September 2008: Matthijs
- RFC 4635, bugfix #130: support for hmac-sha1 and hmac-sha256 tsig
algorithms.
- modify and add tpkg tests for hmac-sha1 algorithms.
2 September 2008: Matthijs
- AXFR fallback when IXFR/UDP failed on all masters
- Bugfix: strip off chroot value in corner cases
- Additional debug and verbose log messages
29 August 2008: Matthijs
- IXFR allow UDP option
26 August 2008: Matthijs
- Code layout, additional comments and documentation typo fixes
- IXFR over TCP, no longer UDP
17 July 2008: Matthijs
- Make the maximum number of interfaces configurable.
- Write pidfile *after* succesfull server initialization,
instead of writing, and unlink if fail.
16 July 2008: Matthijs
- Set upcoming release to 3.1.1
- Wouter: fixed memory leaks that happened on error, mostly on
zone transfer errors.
11 July 2008: Matthijs
- Avoid race condition in nsdc: let nsd server update pidfile before
closing old parent process.
8 July 2008: Jelte
- Fixed NSEC3 memory leak in the case NSEC3 is not needed.
7 July 2008: Matthijs
- Bugfix #191
9 June 2008: Matthijs
- When comparing RRs, do not compare TTL values (since the same record
with different TTL values are considered equal).
- Fixup some more unaligned memory access that could occur when
reading ixfr.db.
19 May 2008: Matthijs
- Do not always log tcp read errors, only when real error or high verbosity
28 April 2008: Matthijs
- Bugfix #172 (misleading error from zonec)
27 March 2008: Matthijs
- Port some branch modifications to trunk
28 February 2008: Matthijs
- Do not answer nsec3 wildcard information when DO bit is not set
19 February 2008: Matthijs
- Fixed strptime bug (for MacOS Leopard)
22 January 2008: Matthijs
- Add configuration for chkconfig to control nsd service (bug 164)
15 January 2008: Matthijs
- Fixed bug 157 where nsd would return FORMERR if edns query is
received with version set to zero and rdlen is larger than zero.
8 January 2008: Wouter
- no warning about optout records. also no warning about missing
nsec3 records.
- check for hash(apex)==nsec3 with SOA bit was done in duplicate.
- removed old commented out code
- using SOA bit in NSEC3 typemap to detect parameters
- using nonhashed NSEC3 to prove qtype=NSEC3 nxdomains
- prints for debugging.
- nicer comment on nsec3_lookup.
7 January 2008: Wouter
- Fixup nsec3 tests, they need zonesdir: "." in conf files.
The tests pass.
- configure default is --enable-nsec3. Disabling this will save 20% more
memory (for very large zones). Moved tests to test on commit.
- set RRTYPE numbers for NSEC3=50, NSEC3PARAM=51.
- fixup checkconf test - updated parser lexer gives syntax error
on some garbage instead of parse error. Parselexer is updated for
new options (hide-version, verbosity).
- removed highrange rrtype code. fixup cutest for that.
- speedup of prehash code.
- skip nonexistent domains (operator.example.com).
- skip only-nsec3 domains (that could be 2x speedup)
- skip glue nameserver domains (for TLD with 2 glue per
delegation this is a 3x speedup).
- skip the prehash_domain for delegation points, which saves
another 2/3 hash operations, 3x speedup.
- printout how long nsec3 prepare took (verbosity >= 1).
3 December 2007: Matthijs
- Fixup bug where data related files are looked up in the wrong
directory when chrooted with chrootdir ending with a slash.
26 November 2007: Matthijs
- Fixup bug start nsd while already running: do not initialize server,
since it is already running.
15 November 2007: Matthijs
- Changed man pages format from mdoc to mansun, to support the Solaris OS.
- Better logging for nsd-notify (show 'broken' zone)
13 November 2007: Wouter
- CREDITS and RELNOTES now in utf-8.
12 November 2007: Matthijs
- Changed man pages according to bug 162.
30 October 2007: Wouter
- Fixup for skip after unknown deleted IXFR RR, otherwise processing
would continue at the wrong spot in the packet and process the IXFR
as if it were malformed.
- added unit test for this in long (needs ldns-testns, updated it).
- added unit test for rollback of malformed zone transfers.
Fixup for it, and fixup in ldns-testns to be randomport and
copy id for hex packets.
29 October 2007: Wouter
- Fixup bug where malformed IXFR replies cause partial processing in
reload (or nsd-patch or nsd-startup). One result is multiple SOA
records in zone apex. Fixup rolls back the zone transfer, and waits
for NSD to try to load again.
26 October 2008: Wouter
- small fix in descriptive text in sample config for debug-mode.
9 October 2007: Mark
- Change default location of: nsd.db, ixfr.db & xfrd.state to
/var/db/nsd.
5 October 2007: Wouter
- Fixup manual page entry for allow AXFR to anyone.
3 August 2007: Mark
- Report source and zone for denied AXFR attempts.
25 July 2007: Wouter
- bind2nsd to 0.5.0, fixup of includes, key{} handling.
19 July 2007: Wouter
- bind2nsd to 0.4.8, fixup of include bug.
18 July 2007: Wouter
- added contrib for bind2nsd, Al Stone provided an abridged version
that neatly fits for contrib.
17 July 2007: Wouter
- fixup commithooks.
16 July 2007: Wouter
- Added reference to http://bind2nsd.sourceforge.net/ to
contrib/README.
3 July 2007: Mark
- Zone compiler now gives more sane error message when out of
diskspace.
- Fixed a call to drill in tpkg that made a test check bind instead of
nsd.
2 July 2007: Mark
- Remove last traces of mmap usage.
- Some cleanups in tpkg.
24 April 2007: Mark
- Added "hide-version" configuration setting. Enabling this feature
stops NSD from answering to CHAOS class version requests.
19 April 2007: Wouter
- Compiled on minix 3.1.3 and make some adjustments to ease porting.
ECONNABORTED is checked for. sys/select.h included in nsd-notify.
SO_REUSEADDR failure is not fatal. PF_INET compat code added.
If you compile yourself; strptime and socketpair need compat code.
13 April 2007: Wouter
- Minor tweak to nsec3.c, more elegant handling of malformed nsec3
records from a zone transfer.
10 April 2007: Wouter
- Fixup ignored return value in region-allocator. Now returns a NULL
memory allocation failure and leaves region in a consistent state.
20 March 2007: Wouter
- Released 3.0.5.
- (for 3.0.6) -O2 test for Alpha moved to saner position.
16 March 2007: Wouter
- port configure to AIX, removed warning on ALIGNMENT in region code.
defined _ALL_SOURCE to get recent C definitions on AIX.
- improved nsec3.h comments.
22 February 2007: Wouter
- Zonesdir default is now /etc/nsd.
So that the invocation directory is not used to dump files into.
The user can change the zonesdir by editing the config file.
The directory is created by install, if not an error is printed.
- updated tpkg tests to use current dir for testing.
- tcp connections that drop do not spam the log file.
Unless verbosity is set high.
19 February 2007: Wouter
- Fix empty line printed with warning on 'force zone transfer'.
15 February 2007: Wouter
- Check for EPROTO definition to compile on FreeBSD4/Alpha.
13 February 2007: Mark
- Debug flag (-d) behavior changed. Nsd now also forks children when
run in debug mode.
- Added verbosity mode (-V <level>) for extra operational logging.
8 January 2007: Wouter
- README text on interface configuration added.
2 January 2007: Wouter
- Fixup accept() that could block due to already closed connection.
Made listen() nonblocking, ignores errcodes that indicate closed tcp.
29 January 2007: Mark
- Handle the new CERT RDATA types defined in RFC 4398 (submitted
by Mans Nilsson).
- Change nsd-notify retry timer from linear into exponential backoff
(submitted by Mans Nilsson).
- Due to a small bug in a comparison statement, zonec would fail
on the parsing of unknown CERT types. This got triggered by the
first bugfix today, as that one shouldn't have been discovered in
the first place. Took the opportunity to sanitize two other
comparison statements related to strtol().
24 January 2007: Wouter
- Tentative change to set UDP sockets nonblocking. Perhaps it
helps Howard.
19 January 2007: Wouter
- NSEC3 work. prehash printed only once with time taken to prepare.
- prints are now only in DEBUG mode (except errors).
- rr descriptor counts for NSEC3 updated, has an extra field flags.
- now NSEC3PARAMs with flags!=0 are ignored, as per draft-09.
- Fixed where only first NSEC3PARAM was properly detected.
- Added tpkg in manual (because you need to compile with nsec3)
that performs the test queries from draft-09 and checks them.
- Made tpkg to test NSEC3 parameter detection. NSD will skip any
NSEC3PARAMs that don't work until the first working one is found.
Also, this means unknown hash algorithms are simply ignored.
A zone that uses exclusively unknown hash algorithms for NSEC3
will give errors on loading (or after zone transfer) but NSD
will load and serve the zone (but no NSEC3s are returned).
- added tpkg in manual to test parent side DS answers.
These follow a different code path than child side DS.
- Will allow NSEC3s(and signatures) below a DNAME.
- A query for an NSEC3 ownername will lead to DNAME redirection
as if the NSEC3 did not exist.
- Test package in manual that tests NSEC3 and DNAME in the apex.
- Changed NSEC3 memory requirements from 5 pointers per domain name
to 3 pointers and 2 bits.
- Added jumpstart for nsec3 search, will greatly speed up optout
zone nxdomains. At the cost of one ptr per domain name.
The speedup also speeds up the nsec3 prepare stage.
18 January 2007: Wouter
- Created 3.0.4 release tag.
- 3.0.5 number in trunk.
- add nsd.spec patch from Farkas Levente to contrib.
- NSEC3 new wireformat and presentation format from draft-09.
11 January 2007: Wouter
- The message 'server .. closed cmd channel' is now priority INFO.
This to reduce the 'error' amount in the logs.
- On error in a tcp request, set to retry next instead of waiting
for the tcp timeout.
9 January 2007: Wouter
- TSIG acl matching changed so that NOKEY allow-notify entries match
only queries without a tsig. Otherwise NSD would crash.
This only affects servers that have allow-notify: ip NOKEY and
someone sends a TSIG signed notify from that ip.
- test package for that.
- Fix for reply to notify messages with ANCOUNT wrong. The ack
to notify messages that passed the ACL, and had a SOA in the answer
section of the query, included wrong RR counts in the header.
- test package for notify reply wireformat.
8 January 2007: Wouter
- ipc_send_blocked will not lead to busy waiting on it, but will block
in select, until SOA_END comes by.
- server_main sends SOA_END if reload crashes, to xfrd. So that xfrd
can set ipc_blocked=0 and can_send_reload=1; and thus resume service,
assuming that the crash was a temporary condition.
This will lead to trying every reload-timeout seconds to reload
if it is a permanent condition. Which is more obvious to the
operator.
- put the error "error: diff: RR ns.kiev.ua. already exists" in
debug mode only. Zone transfers with this error are liberally
accepted, and we should not spam the logfile.
- empty zones will not be retried forever every 10 seconds,
but exponential backoff to a max of every 4 hours.
The exact value is randomised to spread out attempts.
5 January 2007: Wouter
- Fixed --zonesdir=<path> for configure. The value did not get used
as a default value. Now it is used as a default value. If a
default value is set for zonesdir, you can go to a 'no value
specified' by giving the empty string, zonesdir: "" in nsd.config.
- Fixed checkconf.tpkg for this change. nsd-checkconf will
output zonesdir: "" as this is the default for --zonesdir.
2 January 2007: Wouter
- Added contrib script from Stephane Bortzmeyer to convert NSD 2 to
NSD 3 config files. Converts secondary zones and TSIG keys.
- Made config conversion script skip empty lines.
- Made config conversion script convert primary zones (and notify).
- Nsdc control script will exit with 'nsd startup failed.' if nsd
fails to start (due to bad config file for example).
15 December 2006: Wouter
- Removed dlopen() checks from configure.ac, NSD3 no longer has
dynamic plugin support (since 3.0.0).
- added .rpm spec file to contrib.
- Updated README to remove reference to buildzones script.
12 December 2006: Wouter
- Added missing include to ipc.c to compile on SunOS.
- Cast to avoid signed/unsigned comparison in compat/inet_ntop.c.
11 December 2006: Wouter
- Added test to check for CNAME and other data error by zonec.
Currently NSEC, NSEC3, RRSIG, SIG, NXT are allowed next to CNAME.
- Fixup unaligned memory access that could occur when reading ixfr.db
with a partial transfer inside.
- RR type WKS (well known service) was not printed correctly,
htons() was forgotten when calling getservbyport.
- NSD does not complain about not being able to read the db CRC
when all that happens is the file became longer or shorter.
8 December 2006: Wouter
- Moved down max XFRD UDP sockets for zone transfer queries to 100
down from 300. This makes the total socket max at 200, so it fits
easily under 256 ulimit (a common default).
7 December 2006: Wouter
- Improved error message to help operator.
- created 3.0.3 svn tag.
- default of zonesdir corrected (no directory is default).
4 December 2006: Wouter
- updated test packages. Moved 213_large from manual to long.
size_0, source_port_0 made more working (needs root permission).
1 December 2006: Wouter
- Moved xfrd ipc and reload handlers to front of event handler
lists for a 10% speedup in xfrd.
- Fixed so that NSD no longer interrupts zone transfers when
a notify comes in for that zone. Added package to test it.
- Fixed warning on Solaris 10.
30 November 2006: Wouter
- Test for fallback in getaddrinfo more portable.
Ported to FreeBSD 6.1 without inet6.
- New quit sync had a problem with blocking in dispatch. Fixed.
- reload will retry quit_sync if nothing happens.
- parent tries to empty the pipes before closing them on quitsync.
- xfrd does not send reload when previous reload request busy.
- netio will only deliver the number of bits from select
and then stop. Optimisation.
29 November 2006: Wouter
- Fixed getaddrinfo error message to be more descriptive.
- Fallback to ip4 also if getaddrinfo fails for ip6.
- instead of EAI_ADDRFAMILY uses EAI_FAMILY which is portable
to FreeBSD.
- signed/unsigned warning fix for FD_SETSIZE comparison.
- Lots of debug statements and new quit sync feature, where
the server children are synced with. So as not to lose buffers.
28 November 2006: Wouter
- Debugging 10k zones transfer, set so that zones waiting for a
socket do not get timeouts.
- Debug change so that an event is only returned to one handler
by netio.
Reversed this. Netio will not deliver events you do not listen
to, and since xfrd first listens to write then read, it will
not have problems with stale events (for the fd from the previous
select) because these are always read, while it needs a write.
Re-Reversed it: netio will deliver events only once.
This is easier to understand for the poor hapless developer.
- Need to set notify_current for notify on waiting list. Fixed.
27 November 2006: Wouter
- Debugging 10k zones transfer, noticed that it is possible for
netio to give a callback for an event that you were not listening
to. Now no longer does that.
16 November 2006: Wouter
- Bug #153: now checks for FD_SETSIZE when adding fd to select fdset.
- Easy overview of socket allocation for xfrd in xfrd.h
- Upped the default xfrd socket limits a bit.
- Log message that the TCP connection limit is reach is now only
in -L 2 logging. It is spammy.
- updated dependencies.
- Added test for notify-socketcount, and removed unused files from
bug153 test package.
- Notify udp sockets are also capped at a max number. The rest
has to wait in a queue.
15 November 2006: Wouter
- Fixed bug #152: identity keyword in nsd.conf did not work.
What happened was that the hostname() from the computer
was overriding the nsd.conf identity. Fixed now.
If commandline is given that is used.
Else nsd.conf entry is used.
Else hostname() detected from computer is used.
Else default string "unidentified" is used.
14 November 2006: Wouter
- Fixed bug where NSD tries to create 10000 udp sockets,
when starting with 10000 secondary zones. Limited to 50
at a time. The XFRD_MAX_UDP constant controls this.
3 November 2006: Wouter
- Created tags/NSD_3_0_2_REL.
2 November 2006: Wouter
- Added pdf for differences.tex for ease of use.
- Updated text in readme on memory usage.
24 October 2006: Wouter
- Recycle rrset memory after doing special processing on the deleted
rrset data.
- log message clearer for 'duplicate xfr part' to 'discarding partial
xfr part'.
- if you have a server that has IXFR turned off but sends a TC flag
for IXFR queries, xfrd will retry to TCP. This makes the use of
'AXFR' flag in nsd.conf file not needed in certain cases.
- Be thrifty and save up the memory that was lost at end of chunks
in the recycle bin. Saved 1.3Mb on 170(rrs)/220(total) Mb dataset.
23 October 2006: Wouter
- Added checks for out of memory in reload (diff file). And it exits
if so neatly.
13 October 2006: Wouter
- Bug #149: Wrong text for NOTAUTH error code. When notify is not
authorised REFUSED error code returned instead.
4 October 2006: Wouter
- More fixes from Koh-ichi Ito (kohi@iri.co.jp now), for bug #146,
his bash does not do $(( )), so nsdc.sh has to use test of course.
29 September 2006: Wouter
- recyclebin works, added a test that uses it (about 3 Mb goes
through the recyclebin). This resolves bug #147.
- Made -L 1 logging is little less verbose (-L 2 gets it all).
- added search path for openssl on Solaris 10 (/usr/sfw).
28 September 2006: Wouter
- Removed unused global variable current_region,
and routines for it in region-allocator.c and .h.
- Added recycle option to regions. It will keep track of small
objects in a recycle bin. Large objects are deallocated.
No calls to recycle yet, unit test it first.
- added unit test for region recycle.
27 September 2006: Wouter
- Further suggestion from Koh-ichi Ito, I've set opt->xfrdfile
to XFRDFILE in options_create. So opt->xfrdfile and opt->difffile
are never NULL. This simplifies code elsewhere.
And also handles chroot case (+=l) for default values.
- Fix for bug #145. The skip file position in the diff file was used
inconsistently - one part of the code skipped to before the 'IXFR'
type code and another part skipped to after that. Now all skip to
before the type code. This bug only happens if your diff file
is like: zone1_part1, zone2_part_1, zone1_part2, zone1_commit,
zone2_part2, zone2_commit. The skip over zone1_part1 failed.
- tpkg test in long dir that tests for the bugfix. Takes a long time
and uses ldns-testns feature to wait partway through an AXFR.
- removed debug log of strerror on diff read failure, when the errno
was already output to the logfile (resulting in a nonsense error).
26 September 2006: Wouter
- NSD compiles on Solaris 10 with the sun cc compiler.
Added a define for _STDC_C99 for that.
- Checked that the patch for solaris for bug 143 indeed fixes the bug.
- Fixed bug #146 reported by Koh-ichi Ito: when chrooted nsd failed
to write xfrdfile/difffile.
18 September 2006: Wouter
- no queries for NSEC3, RRSIG, ANY succeed for nsec3 only domains.
15 September 2006: Wouter
- Fixed LOC parsing of integer overflow causing maximum values.
Added to test and backported fix to 2.3.6.
- NSEC3 qtype queries get noerror/nodata or nxdomain answers.
You can query for NSEC3PARAM.
- warnings for printf format on maxOS (sizet needs cast to int).
13 September 2006: Wouter
- added fsync to AF_UNIX sockets to write last command (QUIT) before
closing them.
- sent explicit QUIT command to xfrd on final shutdown of the server.
12 September 2006: Wouter
- Bug #144: LOC defaults for unspecified values wrong. Error in zonec.
Set defaults. Also fixed parser if LOC has no minutes or seconds.
- Also fixed rounding error in seconds 0.001 decimal.
- Test tpkg for bug 144.
11 September 2006: Wouter
- nsdc now more portable in use of 'which'.
Does not only look at exit code but also checks for '^no ' string.
- nsd-patch does a chdir to zonesdir for relative difffile or dbfile
path names.
- nsdc handles zonesdir: for relative pidfile, dbfile, difffile
pathnames.
7 September 2006: Wouter
- bumped version to 3.0.2.
- Nice configuration error when you had the wrong zone name in the
nsd.conf file. Zonec will give an error already.
- When you start a secondary zone without a zone file, you get
a much nicer error message, warning you of the zone transfer.
- Credits for prerelease testers; Thanks guys!
6 September 2006: Wouter
- Fixed nsd-patch so that it writes the SOA at the start of the file.
- test tpkg that tests for the bug, has multiple rrsets at zone apex
and does nsd-patch followed by zonec.
Previous tests did not catch this: they used nsd-xfer to test zone
contents, or only checked the zone-file after nsd-patch.
- version number bumped to 3.0.1.
- svn tag 3_0_1 made.
5 September 2006: Wouter
- differences file improvements.
- created 3.0.0 release in svn tags.
4 September 2006: Wouter
- From suggestions by Bin Zhang:
- nsdc restart does not fail if nsd was not running.
- fixes to man pages, wrong locations for files.
- NSEC3-PARAM has no optout bit in presentation format.
- NSEC3PARAM spelling.
- differences in latex format (needs nlnetlabs housestyle).
31 August 2006: Wouter
- Fix for tsig size still set when data is null ptr.
- Fix configure for NetBSD (1.6 - 2.0) to find struct timespec.
- DIFFERENCES file completion.
30 August 2006: Wouter
- Print error nicely when nonblocking connect fails on systems
in a portable way.
- doc/UPGRADING document to assist NSD 2 to 3 upgrades.
- updates of error print - ignore EINPROGRESS if we check too early.
- wait for select writable before testing for connect error.
- echo "" >&2 is not as portable as we would like, removed from nsdc.
- fixed debug print of a null ptr.
- fixed bug where query for CNAME that points to unserved zone caused
nullptr exception on empty zone ptr. Now original zone is restored
after CNAME-pointed data is added to the packet.
Test in dname.tpkg. Reported by Kai.
- fixed stack corruption when ipv6 disabled.
29 August 2006: Wouter
- NSEC3 made it so it can handle the case where the NSEC3 RRSET
with the SOA bit on does not have the RR with the soa bit set
as the first RR.
- Handle NSEC3-PARAM type. Checks to see if any of them work:
zone apex hashed exists, with NSEC3 type, and RR that has
the same parameters and the SOA bit set.
- in presentation format of NSEC3, NSEC3-PARAM reversed hash, optout.
- update to the DIFFERENCES file, bind 9.3.2 vs NSD 3 and
NSD 2 and 3 comparisons are completed.
28 August 2006: Wouter
- echo messages in nsdc made clearer. nsdc notify and nsdc update
only send notify messages to slaves / localhost to force transfers.
- initial NSEC3-PARAM type code entry. parsed, ignored.
25 August 2006: Wouter
- disabled make test target as tests are not shipped.
- performed prerelease static snapshot.
- updates to the DIFFERENCES document.
24 August 2006: Wouter
- Fix bug 141 port from 2.3.6, copies behaviour from bind 9.3.2.
- Added a test for bug 141.
- Bug141: save the opcode from the query.
23 August 2006: Wouter
- Fixed % by 0 exception in the bugfix #139.
- Fixed RFC 4035 says CD flag SHOULD be cleared on authoritative
reponses, now NSD clears the CD flag. This is bug #140.
RFC 4035 could be confusing on this, as it states 'all servers
MUST copy the CD bit' more than once, but then makes clear only
recursive servers are meant with that statement.
- Differences document updates for bind 9.3.2 and nsd 3.
22 August 2006: Wouter
- version number to 3.0.0 in preparation for release.
- Bug #139: resync stats to whole period. Fixed.
21 August 2006: Wouter
- check for error in ftruncate call.
- replaced fwrite call with write_data call from util that does
error checking.
15 August 2006: Wouter
- removed unused struct nsd.named8_stats variable.
- Bug #138: nsd aborts trying to bind all interfaces if ip6 is not
enabled, instead it will fallback to ip4.
14 August 2006: Wouter
- Added test for rollback of an IXFR transfer by xfrd.
- Added test for reload timeout in xfrd, the reload does happen after
a while, but not immediately.
- Test that makes xfrd connect to ip6 address.
- Test that overloads the number of tcp connections in xfrd,
simulating a slow master, so that zones have to queue up to get it.
- code coverage is now 2514 of 10636 uncovered. Still a lot uncovered.
- ixfr queries return NOT_IMPL errors.
11 August 2006: Wouter
- srandom to init random() in xfrd based on PID and time.
- improved usage() information to be more helpful, and with version.
- in makedist.sh, flex and bison called like in Makefile.
- test for tcp underrun and overrun of the buffer.
10 August 2006: Wouter
- added more tests to increase code coverage of testset.
- moved acl parsing code from configparser.c to options.c to help
unit testing.
- nsd-checkconf echod wrong difffile filename with -v.
- nsd-patch can now be used with -f to force printing of all RRs.
- TYPE_NULL crashed NSD when it printed it, arg was ZF_DNAME,
now ZF_UNKNOWN.
- unknown rr test was faulty on input, the length was in nibbles
not in octets, but rfc specifies octets for unknown rrs.
NSD does not look at the length, and prints the length correctly.
- added type NXT to the rr-test for weird RRs.
- added printing test to rr-test, ipseckey and unknown-rr tests.
checks if NSD prints the same RR on output as it read in.
- put -x option for nsd-patch in usage().
- test that kills an nsd child server and checks that it is
restarted.
9 August 2006: Wouter
- tested nsdc functionality, make install and make uninstall.
- set O_NONBLOCKING on xfrd tcp sockets before the connect call,
because the handshaking can take very long too.
- difffile and xfrdfile set via configure, to absolute pathnames,
so that chroot checks work for them.
- updated tpkgs, they need to set relative paths now for diffile.
- gcov says 2821 of 10617 total code lines are not covered.
compiled with --coverage, not -O2, ran tpkg/* and long/testplan*.
counted grep '#####:' *.gcov | wc and grep '^ *[0-9]*:' *.gcov | wc.
- cleaned up the log functions, NSD no longer spams the syslog with
debug messages. The standard NSD debug util is used, -F -1 -L 2 for
a compile configured with --enable-checking will enable them again.
Errors are logged, as is the automated reload of a new serial.
- tpkgs for bug077 and bug107 were silently failing to test properly.
8 August 2006: Wouter
- fixes for checkconf test, more portable.
- removed items from TODO that have been tested.
for multihomed servers you have to bind to each interface
explicitly to get outgoing ip-address the same as query
destination ip-address.
Forks and if-existing are tested and ok in testplan tests.
close_all_sockets is called by child, if tcponly, so leave it.
- user name check is hard portably with shell scripts, and
packaging could set a default user that does not exist on a machine.
- empty nodes (nonterminals) give no nxdomain any more (todo item done).
- removed (old) from TODO.
- removed contrib/buildzones.pl, it is outdated.
7 August 2006: Wouter
- Made the tests a little more portable.
- fixed mempcy unable to handle unaligned memory addresses on Solaris,
used memmove istead of memcpy in zonec LOC conversion code.
- another unaligned memory access, when storing off_t pointer in
difffile.c, used memmove.
4 August 2006: Wouter
- nsd will start if diff file is corrupt, with a log message.
It ignores the bad data.
- tpkg files do not override PATH, svnhook sets it. So user can
set path to utilities on the system to run the tests.
- running testset on DecAlpha discovered uninitialised variable
in NSD. Fixed.
- Jakob Schlyter asked for building nsd3 in an obj dir, i.e.
mkdir obj; cd obj; ../configure && make. Fixed up makefile for that.
- and bug137.tpkg for separate obj dir building.
3 August 2006: Wouter
- more tests in mesh test.
- changed test packages to put nsd log to test result "/dev/stdout".
- test packages more portable - use default 'dig' location.
also, path is appended to, instead of replaced.
2 August 2006: Wouter
- Region can be customised for detailed memory handling.
Especially if you set large_object_size=0, chunk_size=0,
the region will perform individual allocs, and 'save memory'.
The region still keeps tracks of allocations so that at
region_free time all memory is released.
- tsig.region removed, it was not used after attaching a cleanup
at creation. tsig creation uses custom region settings.
- xfrd inits the tsig records with memory saving settings,
so the regions alloced for tsig take up about 60 + 4*8 bytes.
- new custom region for query region - to make chunksize larger
there. The chunksize for the query region is important, if
all allocations for a query fit in it, no mallocs are needed.
- TSIG other_data field size according to RFC 2845 is 0 or 6.
In tsig implementation put a maximum to the field of 16,
otherwise a formerror results.
- query with IXFR appended SOA not formerror.
IXFR queries not reach the handler in axfr.c for IXFR queries.
- removed annoying debug message of added tsig key.
- added test that starts 7 servers in a mesh and lets them fight out
what zones to transfer and serve.
- xfrd logic bug: if notified a slave would not see the renewal
of its current zone.
1 August 2006: Wouter
- Test for remove domains with IXFR.
- Fix for empty nonterminals and IXFR deletes.
- Test for timeouts, including expiry, and expiry and zone updates.
- Test for axfr refused authorisation.
- Test for deadlock in ipc.
31 July 2006: Wouter
- Test plan ixfr test in tpkg/long directory.
- IXFR with many packets tested (one RR per packet).
28 July 2006: Wouter
- tentative change, that preserves ordering of rrtypes for a domain.
- fix for serial rollover (old_serial + 2**31), now works, is seen
as new serial and rolled over to new.
- serial numbers, and time values, printed as unsigned to logfile.
- set so that if info is provided by operator, refreshing state
not expired is used.
- forgot to * a pointer to boolean, is_ixfr in the difffile reader.
This fixes the testplan_ixfr test 1.
27 July 2006: Wouter
- fixup desc of tsig xfer test, remove debug from xfr_huge.
- fixed compressed dname tables cleanup, to set ptr to NULL.
- initialised xfrd_listener.fd to -1.
- fixed difffile handling of very short AXFRs, with no data.
26 July 2006: Wouter
- Updated the requirements with comments from Olaf.
- README discourages use of experimental nsec3 rr a bit more.
- typo in DNAME code, used original qname instead of CNAME
adapted qname variable.
- added IPSECKEY RR type, RFC 4025.
- tpkg test with sample ipseckey rrs.
- wireformat for IPSECKEY depends on the value of a rdata atom, added
WF_IPSECGATEWAY to handle that.
- DHCID type, data is encoded in one binary/b64 blob.
25 July 2006: Wouter
- max number of tries for nsd-notify is 15, so that the
total time for sending is about 75 seconds.
- forward port of fixes for bug 105 and 135 in nsdc.
forward port of test for bug 105.
- fixed nasty bug with configure --prefix=<...> where config.h
was wrong. Now double evaluate the shell expansion on the defines.
5 July 2006: Wouter
- helped in README with gnu make; need to make clean
so that botched attempts by make to create the lexer files
do not stay around.
- removed %zd, replaced by casts to int.
- updated REQUIREMENTS file, the sections on RR types, on what
algorithm NSD follows and on which RFCs are supported are updated.
3 July 2006: Wouter
- 'make depend' target in makefile. (updates both Makefile.in
and Makefile, so it works for users and for svn).
- doc minor update.
2 July 2006: Wouter
- TESTPLAN, README, bugzilla-bugs docs updated.
- NSD for BIND users update.
29 June 2006: Wouter
- removed --zonesfile nsd.zones configure option.
- doc/README updated for 3.0.
- doc update. NSD_FOR_BIND_USERS document.
- moved from -Ds to the config.h header, cleaner compilation output.
- use autoconfs built in large file support enabler.
28 June 2006: Wouter
- nsdc neater, checks for BLOCKED ips more strictly.
- nsd -d also disables xfrd forking, and thus all reloads
and secondary zone treatment. Stated so in manual page.
- fixup, apart from ip4 need to allow ip6 in example.conf
line showing how to allow access for everyone to axfr.
27 June 2006: Wouter
- Fixed read in server.c to be a blocking read for sure,
even if ipc is not blocking on the OS.
- nsd-notify tries to send notify 5 times, then exits with error.
- nsd-checkconf can lookup key secrets by name from a config file.
- difffile option is always set in options struct with default
or config value.
- nsd-patch uses dnames to compare zone names (for trailing .).
- nsdc updated to work with config file.
26 June 2006: Wouter
- Nicer check in autoconf for struct timespec type.
- NSEC3 next hashed ownername is a length byte followed by data.
- nsd-checkconf more quiet, clearer error message.
- NSEC3 does not complain about glue records without nsec3.
- nsdc work (did start, stop, running, rebuild, restart, reload, stats).
21 June 2006: Wouter
- nsid commandline parsed using hex_pton routine.
- unit test for hex_pton.
- added include stdlib, needed for free() on sunos4.
- fixup of disable-ipv6 compilation.
- memmove compat implementation (created fresh).
- yy_set_bol() for old flex compat define.
- compat implementation from openssh4.3p2 for
strlcpy, inet_aton, and inet_ntop routines.
- changed ctime_r usage to ctime() call, nsd is not threaded.
- compiles on SunOS4/gcc-2.95.
- debug statements go to the log_msg route instead of the
fprintf route, so they will get to a nice logfile even if
we forked away, with xfrd. logfile=/dev/stderr gives old way.
- minor changes to cutest to make unit test compile
on SunOS4/gcc-2.95, it checks out fine there.
20 June 2006: Wouter
- updated configure to disable -O2 on platforms where gcc
does not like it (such as dec-alpha).
- nsd-notify used recvfrom and passed addrinfo.ai_addrlen
which is a size_t, but recfrom needs a socklen_t*. On dec
alpha these types differ in size (size_t is 64bit,
socklen_t is 32bit). Therefore, used a wrapper variable
to pass to recvfrom.
- changed long int to time_t in nsd-patch.c to please compiler
on dec alpha.
- dec alpha complains if statements are in front of variable
definitions. Fixed code for some mixups on this.
- Fixup cutest for dec alpha. Code, lowercase filename, %lf->%f.
- cutest fixup uses (size_t) cast and %zx to print ptrs (for debug).
- for SunOS4 configure detects ssize_t and struct timespec.
- removed usage of fpos_t, instead using fseeko/ftello for 64bit.
- configure will define fseeko/ftello with fseek/ftell if unavailable.
- added missing include from buffer.c (stdlib for free()).
- defines for snprintf and vsnprintf in config.h if needed.
- configlexer flex is called more cleanly with -t to write stdout.
- missing include from configparser, stdlib for atoi.
- config.h provide inet_pton define if it is not available.
- fixup of INET6 defines, where sockaddr_storage is used
outside of INET6 defines, in xfrd-tcp.
- edns_init_nsid was not defined in edns.h.
- added compat/fake-rfc2553.c and h from openssh 4.3p2. That has
a BSD license as well. They replace getaddrinfo() (and friends)
when those are missing.
19 June 2006: Wouter
- updated the tpkg/manual tests for NSD 3 config files.
Some need root privileges to run (using hping), they all pass.
- also the tpkg/long test bug_sighup.
- nsec3 code will warn at prehash time for missing exact nsec3
records. So faulty signed zones are more easily spotted.
- fixed NSEC3 and CNAME/DNAME chains, it will disprove the new qname.
- removed for() look in CNAME processing, only first CNAME is
processed now.
- zonec will error on a zone with multiple CNAMEs for one name.
16 June 2006: Wouter
- Swapped read and write ops in xfrd_handle_ipc, so that a read
of a signal from main can stop further writes.
- xfrd will complete its last message before shutting down
the ipc writes and then acknowledge the reload-sync.
This resolves the race where half of ipc messages caused bad
modes from the main.
15 June 2006: Wouter
- In preparation of notify send overhaul, moved the notify
send code to xfrd-notify.c and h files.
- created cleaner split of notify send and xfr code.
Still in the xfr process, because it is a convenient location.
- fixed bug where notify sending would read from wrong fd.
- send master zone notifies.
Does not skips master zone SOA INFO updates.
- fixed bug where port number acls did not match.
- fixed bug where tsig keys are checked for twice, but not error_code.
- fixed notify send retry counting.
- added test tpkg for notifies from nsd master to nsd slave.
- nsd-checkconf flags if you set allow-notify without request-xfr.
14 June 2006: Wouter
- fixed crash bug when dnssec/NSEC enabled and query DNAME
target did not exist.
13 June 2006: Wouter
- created doc subdirectory for documentation.
- removed unused DIFF FILE MAGIC string.
12 June 2006: Wouter
- dname_test tpkg with very extensive DNAME testing.
- moved sizes of zone_name buffers to 3072 - for escaped names.
- nsd-patch has a debug option to list the contents of the
difffile/ixfr.db/transfer patch log in a journal fashion. You can
then manually inspect the contents.
9 June 2006: Wouter
- after a reload NSD will report the memory churn: number of bytes
of memory wasted by the zone transfer code.
8 June 2006: Wouter
- When zone is re-chosen after a CNAME/DNAME no SERVFAIL is set,
noerror is returned instead.
- zonec will error on multiple DNAMEs for the same name.
- zonec will error on DNAME and CNAME together.
- improved loop log message.
7 June 2006: Wouter
- after DNAME the closest_match is set correctly for another DNAME.
- in case of a loop returns gracefully instead of crash.
- nsec3 checks if it is enabled for the zone for wildcards.
- NSD will give referrals for zone cuts encountered after a CNAME
or a DNAME. This also fixed various subtle stuff with CNAME/DNAME
and TYPE_DS at zone cuts. It basically re-determines the zone
to use after the CNAME/DNAME.
6 June 2066: Wouter
- zonec checks for data below a DNAME, and will not create the db,
as per rfc 2672. Tpkg test to make sure such a zone is not loaded.
- updated rr-test tpkg so it has no data below a DNAME.
- DNAME synthesis of CNAME records, including compression for cname.
- included cname creation in dname test.
- preallocate the extra temporary domain_type structures.
- too many temp domains returns OK packet so that the resolver
will recurse and ask us again with the last name in the chain.
- fixed bug introduced in preallocation on temp domain numbering.
2 June 2006: Wouter
- dname_replace function that does DNAME replace and unit tests.
- added error codes from DNSUPD rfc2136 to constants in dns.h.
- in query.c added DNAME following code.
- fixed bug 134: hints[i] in nsd.c to hints[0].
- added tpkg small test for DNAME.
- tpkg to test bug 134 (starts 100 processes).
1 June 2006: Wouter
- tsig test with NSD master and NSD slave server. Tsig AXFR transfer.
nsd-xfer used to test slave zone contents.
- fixed bug where buffer_flip() is done before appending tsig rr.
- version printed at start of nsd in logfile.
- xfrd prints name of tsig key used during transfer in commit comments
so it appears in the log file and in zonefile after nsd-patch.
- prints RRs from diff file only if debug level >= 1.
- scalable transfer test xfr_gig added, you can set the size to try
in the .pre file. Now set very small.
31 May 2006: Wouter
- xfrd check for failed updates. It compares the time it wrote the
commit to disk with the time of the last reload command.
Failed updates are restarted like the zone is notified of the soa.
It also catches reloads that have been lost (reload cmd while reload
is running, or a crashed reload process, for example).
- when reload is issued, times at that second are put back one second,
so that after a reload all the zones that should have been loaded
have a time from before the reload.
- if a reload crashes, NSD will continue with the old database,
xfrd is not informed, since it cannot fix that.
- nsd-checkconf strdups arg strings before writing to it.
- tsig error replies contain error data, but no signature.
also crashproof, badly formatted tsigs get a format error.
- tsig error print knows about DNS rcodes in tsig error field.
- added tpkg tests for tsig.
- tpkg test for nsd-xfer with TSIG from nsd.
- small stuff with makedist.sh, CREDITS, Features, make test.
30 May 2006: Wouter
- tsig pre-allocs the rr_region, not at runtime, tsig_create_record().
- redid some region work for tsig. Now has another temporary region
for the context data. User is only aware of the region passed at
start that exists for the lifetime of the struct.
During TSIG checks no more mallocs are done, only region_free_all
and region allocs (of small size).
- checkconf, port is stored as a string.
- tsig now keeps a max_digest_size for giving reserved space.
- AXFR does tsig every 96 packets (and first and last packet).
- tsig signing works for all queries. SOA queries, ...
If you configured the key in the config file, you can use
that key for any query for any zone.
Except for NOTIFY and AXFR queries; those are only allowed for
the zone (and source ip address) which are configured in the config.
- cleaner compile with tsig disabled.
- fixed unknown key error reply in tsig.
29 May 2006: Wouter
- The nonblocking write routines disable silently if they have
nothing to do.
- put xfrd read/write state routines (almost 500 lines of code)
into xfrd-disk.c file.
- little readme blurb on xfrd state file for the operator.
- put ipc code in its own file for ease of reading.
- removed --disable-axfr, you can control this via acls.
With no provide-xfr: statements, a zone will not do axfr.
25 May 2006: Wouter
- fixed reload sending; it checks for EAGAIN and EINTR.
- reload sends parent quit command blocking to make sure of arrival.
- send_children_quit in parent uses nonblocking writes and closes
the pipe to signal the child to quit (even if the write does not
come through, the closed pipe will cause the child to quit).
- need_to_send_STATS flag in parent.
- reload has its own ipc-listening handler in server_main.
- nonblocking writes for server_main; this solved write-blocking race.
- another race condition solved, if a process dies, half a read or
write buffer could be left behind on another process. These are
dropped. Now:
* The server_main drops ipc from dead children.
* The server_main drops ipc if xfrd dies.
* The server_main drops xfrd(old) and all children ipc
on reload.
* The xfrd drops ipc to parent on a SOA_BEGIN from reload.
So after reload, but parent and xfrd start with
clean ipc buffers.
24 May 2006: Wouter
- unit tests print progress while running to stderr. Included license
of cutest with its source in svn repository.
- stack type (for the IPC buffer of zone update dirty). And unit test.
- only update zone-is_ok if needed to reduce memory copy on write.
- split off conn_write() from xfrd tcp nonblocking write routines.
- nonblocking writes for xfrd.
22 May 2006: Wouter
- ported over minor nits from 2.3.5 NSD fixups. Cast to (void)
unused function return values.
- removed kill signal to children, superfluous due to quit cmd ipc.
- moved is_ok for zones to the zone_type in namedb, not in
the options, it is a runtime value not a config value.
For zones that have no data, parent and children keep no state.
12 May 2006: Wouter
- fixed up usage print for zonec to include -f option.
- xfrd send notifies.
- server no longer sends SOA INFO for master zones.
- removed possible debug log print of a null string.
11 May 2006: Wouter
- nsd.conf.sample shows defaults for ip4-only, ip6-only and debug-mode.
- SOA_BEGIN message on start of reload sending soa info so that
xfrd will not reply with expire-notifications and thus deadlock
both on blocking writes (and no OS buffer on the pipes).
10 May 2006: Wouter
- nsdc.sh is set +x after creation.
- improved error message when zone in db has no config info.
- support for broken nsec3 chains (if the one with the SOA bit
is complete, it is OK for there to be other nsec3 chains
with different parameters in the zone).
9 May 2006: Wouter
- Fix for finding bad zone when populating SOA info on start.
it would find a parent zone instead of the zone in question (
which is empty).
- request-xfr: AXFR 10.0.0.153 keytouse syntax to interoperate
with NSD machines. Will only send AXFR queries to the machine.
- documented AXFR option in nsd.conf.5 manual page,
and updated nsd-checkconf, nsd.conf.sample.
- made 'skipping zone' log entry clearer (Sam Weiler asked).
8 May 2006: Wouter
- updated zparser.y to handle empty nsec_seq lists.
for empty nonterminals in NSEC3.
- nicer without ambiguous grammer.
5 May 2006: Wouter
- nsd-notify handles option -y key:secret to TSIG sign outgoing
queries.
- the acl checks now verify TSIG signatures on the query.
- iterated_hash compiles with ssl disabled.
- new ipc NSD_ZONE_STATE sent by xfrd to nsd process. notifies
nsd of the state (ok or expired) of a zone.
- reload process waits for the old server_main to exit to make
sure there is no race condition listening to the NSD_ZONE_STATE
messages generated when reload sends SOA_INFO to xfrd.
- server_main and children all set zone_ok state in config options.
also server_main so that newly forked children get the right state.
- if a secondary zone is expired, NSD returns SERVFAIL.
a transient error, so resolvers try again later.
- SOA_END ipc message, sent by reload to xfrd, so it can repeat
all zone states (which can have changed during reload).
- zone_is_ok kept in config section so that state for zones
without data is not lost. Those have no zone_type*.
- secondary zones start in the expired state.
- if expired zones are updated, then NSD gets the go ahead from
xfrd after reload sends SOAINFO/SOAEND msg, so it is really
updated in nsd memory.
- fixed tpkg xfr_1 to have longer expiry times (from 0 and 3
seconds to 2000 and 3000 seconds), so the zone does not expire
during the test anymore.
4 May 2006: Wouter
- when a new lease is acquired xfrd_packet_newlease result is used.
- if a zone is lost in nsd db, xfrd will update state to match.
- IXFR can use TSIG in queries and verify responses.
- Fixed memory leak in xfrd tsig handling.
3 May 2006: Wouter
- forward of 2.3.4 RELNOTES into trunk.
- debug log statements to track xfrd request rounds.
- removed memleak from handle_passed_packet in xfrd.
- faster find_zone in difffile.c.
- nsd-patch writes commit log entries into zone file.
- took some tsig.c enhancements from 3 branch,
-> if key or algo changes during connection, return bad_key,
-> debug statement neater.
- nsd adds tsig keys to tsig keyring at startup.
2 May 2006: Wouter
- ifdef inet6 back on ss_family usage in server.c.
- nsd-checkconf ip6 ifdefs improved.
- xfrd tries servers 3 rounds, then waits for next retry.
1 May 2006: Wouter
- off_t used for 64bit fileio.
- searches for smallest unused part and sets diff_skip to that.
- doc comment near the region_free_all for every query about
malloc speed.
- null ptr in strcmp does not work on bsd, fixed nsd-checkconf.
- made nsd.conf.sample.in so the sample gets prefix-corrected.
- removed nsd.zones.sample.
- makedist.sh added manual pages for nsd-xfer nsd-patch.
- install/uninstall nsd-patch, nsd-checkconf and manpage.
small update readme.
28 Apr 2006: Wouter
- ixfr >64k in xfrd.
- fixed length of new commit parts.
- fixed multiple ipc reads in xfrd.
- fixed multiple packet ixfr read in diff file.
Miek:
- Forward port fixes for nsd-xfer and nsd-notify
27 Apr 2006:
Wouter:
- nsec3 review fixes.
- diff file format expanded for >64kb transfer support.
- diff reader adjusted for >64kb.
Jelte:
- small non-null options check in nsd.c.
Miek:
- updated nsd-checkconf for zone parse shell script support.
25 Apr 2006: Wouter
- Tests on NSEC3 code. Fixed that the unsecure delegations also
have _ds_ parent nsec3 prehashes, so that they get proper NSEC3s.
NSD will serve NSEC3s to prove 'opt-out' also if the opt-out bit
is (erroneously) not set.
- For the 05pre2 draft section 5.4.8.1. QTYPE is NSEC3, only NSEC3
RRsets at name. Fixed that RRSIGs present do not matter.
And also the closest encloser proof in that case fixed.
If wildcard exists below zone apex servfails (cannot disprove
it and NSD cannot instantiate the wildcard at that point).
24 Apr 2006: Miek
Miek:
- forward port nsid (disabled by default)
Wouter:
- nsd-patch manual page.
- minor MacOSX port fixes.
- xfrd-reload-timeout: config option.
- if you set the xfrd reload timeout to -1 it will not
automatically reload after a transfer. User can reload.
- reload timeout is a wait period after the reload is triggered.
- more verbose acl logging. Validated acls are logged in detail.
Invalid acls are only logged in debug mode, level >= 1.
- log message when xfrd tcp connections max out.
- if unknown NSEC3 hash type (not SHA-1), disable NSEC3.
- xfrd randomizes the timeouts, within 10% of original,
to spread out activity. Short timeouts < 10 seconds are not
affected, and will give activity bursts (on startup for example).
21 Apr 2006: Wouter
- put NSEC3 code in nsec3.c and nsec3.h.
- iterated_hash only adds the salt if salt_len > 0.
- added some assertions and cleanups to nsec3 code.
- prehash also calcs the nsec3_last domain*.
- dbaccess when reading in will set the rr_type.owner value.
- changed namedb_find_zone to domain_find_zone, log msgs.
- implemented logic from nsec draft 05-pre2 section 5.4.1 - 5.4.8.
NSEC3 responses only happen for nsd compiled with --enable-nsec3
and for zones where an NSEC3 with the SOA bit set exists.
- added prehash pointer to ds parent side cover for opt out.
- removed dynamic plugins. Dynamic plugin support is an explicit
non-requirement (under creeping featurism).
- in domain table create root nsec3 ptrs are NULL.
20 Apr 2006: Wouter
- Unittest of base 32 encoding.
- unittest start for iterated hash.
- fixed for ctrlc in debug mode.
- delete zparser_conv_long, not used, not needed
- nsd-xfer will display NSEC3 correctly. zonec parses.
- improved usage() line from zonec, about -c none, must be -C.
- base32 printed in lowercase (canonical format for DNS).
- NSEC3 added prehash pointers to the namedb.
- NSEC3 autodetects presence of NSEC3 in zone and parameters.
19 Apr 2006: Wouter
- port fix base10 in zonec conv short from 2_2 branch to trunk.
and conv byte, algo, certificate, long.
- configure option to enable NSEC3 (--enable-nsec3) support.
- from Ben Laurie's NSEC3 patch, loaned the parse code,
base32 conversion code and iterated_hash.
With some small modifications. The type rrdescriptors are
indexed by value below SPF, and in
rdata_wireformat_to_rdata_atoms BINARYWITHLENGTH checks
for end of buffer. Also parser checks for '-' salt.
Some layout (spaces after ,s). And NSEC3 define is used.
strtol used for iterations is base 10.
- moved rrtype descriptor table sanity check to unittest.
18 Apr 2006: Wouter
- Fixed check for SOA IN, bad ntohs in the check.
- minimum timeout also enforced for very low expire times.
- report the actual used length of the sockaddr to sento
for FreeBSD.
7 Apr 2006: Wouter
- modified the kill_nsd tpkg so that it waits up to 10x5 secs
for nsd to make the pid file, and it wait up to 10x5 secs for
nsd to exit after the kill signal is given.
- xfrd checks on startup if there is trailing garbage in the
diff file, left there by a previous xfrd killed in action.
It then snips off any partial parts, so service can resume.
Also the difffile_skip pos is set before any partial record there.
- first version of nsd-patch; reads db and ixfrs and updates zones.
- moved print_rdata from nsd-xfer to rdata.h to share code.
- moved print_rr from nsd-xfer to util.h to share code.
6 Apr 2006: Wouter
- notify handler passes acl number that matches to xfrd.
- xfrd keeps a next_master for a zone, and sets it after notify.
when notified nsd will try to contact the master that sent
the notify, if send from an address that is both in acl
allow-notify and request-xfr.
- xfrd closes its tcp and udp sockets on exit.
- default names for diff file and xfrd state nicer.
- fixed up kill nsd grep on ps.
- fixed up race conditions in test script for kill nsd
wait for pid file creation by nsd, and grep -v grep in check.
- in nsd signal-flags inherited from the parent are zeroed
when a server_child starts. Also the server_child switches back
to NSD_RUN mode when a bad mode happens.
- check if ixfrs start from the version in memory.
- if IXFR/AXFR ends in a serial that is newer than the serial
that was sent in an notify, update the notified serial.
5 Apr 2006: Wouter
- added lowerbound for retry timeout.
- added extra assertions to xfrd-tcp.c, saying that the waiting line
for tcp connections must be empty if the counter is below max.
- setup so that the first master tried is the first in acl list.
- diff file skips OPT and TSIG RRs if they are put into the answer
section.
- if IXFR contains an RR to delete that does not exist, nothing
happens.
- update zone for NS, RRSIG also if multiple RRs in the rrset.
- difffile: create zone struct also if domain exists already.
- difffile: destroy temp region on error.
- difffile: in delete_RR, create temp region outside of the routine,
so no alloc region, destroy region for every deleted RR.
- difffile: for IXFR: do not delete final SOA RR.
- difffile: unknown parts in file is an error.
- difffile: EOF on last packet is ignored w/o giving an error.
4 Apr 2006: Wouter
- Addes EACCES to the netio dispatch error bailout.
- Removed EACCESS (probably due to log_msg), error on close
xfrd pipe is small, main process closes its end, and hopes for
the best).
- review: return on error condition in xfrd_tcp_open fixed.
- review: expired when time >= expire_time, so it will not wait
for the retry after expire until it will detect the expiredness.
- removed duplicate lines from xfrd_handle_zone_timeout.
- review: copy of uint32_t using memcpy to avoid unaligned memory
accesses.
- review: fd=-1 removed from set_refresh_now; only does timer.
- on a tcp timeout it will retry immediately (instead of waiting
another retry timeout). This means if you set refresh_now, it will
interrupt a tcp-timer for a fresh retry with the next master.
- put null in buffer for xfrd read state.
- log msg uses string that exists instead of overwritten buffer.
- read entry sets refresh depending on current time,
and makes sure not to check soa contents if none provided.
added explanatory comments.
- EACCES back in check.
- server_main first checks for terminated children, then select().
So when select is interrupted, by kill or quitting children,
it will first see if it has to quit itself, before restarting
the children.
- destroy tempregion xfrd read on error.
- check for serial existance in xfrd_handle_incoming_soa.
- handle_incoming_soa uses set_timer_refresh routine.
and can handle expire times < refresh times.
- log msg for udp socket() error.
- review: xfrd_parse_soa_info email parse uses correct buffer spot.
- added a lowerbound to refresh interval (=1 second now).
- upon receipt of a IXFR, if the serial is older than the notified
serial, the zone stays refreshing (but the ixfr is saved).
3 Apr 2006: Wouter
- Added buffer length check to internal ipc.
- split out packet_read_query_section from the process_query_section
routine (and moved to packet.c/h).
- xfrd reads passed packet via ipc.
- ported over fix to 2_2 on missing rr types by removing the
duplicate RRtype array, and using rrtype_to_string.
- xfrd handles notifies. immediately starts updating.
- xfrd state file format fix.
- removed libwrap stuff - superseded by acls.
use provide-xfr: statements for your zone in the config file.
updated README for this.
- updated tpkg tests for axfr to use provide-xfr: 127.0.0.1 NOKEY
- review: move var create to start of function (xfrd_init()).
31 Mar 2006: Wouter
- zone type has a pointer to zone options.
- nsd options has an rbtree to find zone options in.
- nsd checks acl for incoming notifies and replies
error or confirmation.
- nicer layout in options.c.
- updated makefile dependencies.
- fixed sz for SOA_INFO ipc, which was too small.
- notify is sent to server_main, server_main sends it to xfrd.
30 Mar 2006: Wouter
- include: documented in manual page.
- MAXINCLUDES define in one place (config.h).
- configure checks for strptime in include files.
- use %d instead of %zd (sparc5 machine does not get zd).
- use region_strdup in configlexer.
- added a check for EINVAL in dispatch - will abort
on the error instead of busy hang.
29 Mar 2006: Wouter
- \r for config lexer. (similar changes to zonelexer).
- forward port of fix to 2_2 branch:
short int in var_arg is promoted to int, according to B. Laurie.
The same logic for %o, %d %x would hold for %u I think.
- in XFRD, soa prim_ns and email domain names are kept in a max
size buffer.
- split up dname_parse into parse from string to wireformat
and parse from wireformat to memoryformat, so both can be called.
- split up dname_make_from_packet into reading the wireformat
from the packet and the dname_make, so both can be called.
- xfrd reads all soa info from incoming xfr packets.
- xfrd will ignore TC bit on tcp channels.
- nsd sends xfrd all soa info, including ttl and dnames.
- config file now has an include: filename directive.
28 Mar 2006: Miek
- forward port fixes for zone compiler and \r. svn:1926-1927
- add DO bit MASK and remove the !! construct
17 Mar 2006: Wouter
- according to axfr-clarify, added comments that we check
more leniently on further responses on a TCP stream.
16 Mar 2006: Wouter
- Fixed up SOA INFO Send routines. Send from server works.
- niced up xfrd state file.
- Fixed up so that after a reload it will continue in diff file
where it left off.
- made send of SOA info use write_socket, in case of short writes.
- redesigned xfrd_tcp_read to use the same code for ipc read.
- no free()s before xfrd exit.
- xfrd handles incoming SOA INFO ipc packets.
- removed debug, updated zones get SOA INFO sent.
15 Mar 2006: Wouter
- Fixed up domain table insert, it was being used in routines
that originate from nsd-xfer that do not set compression numbers
correctly.
- memleak fix in diffile in case of error.
- difffile processing works so that NSD can read an axfr saved
into the nsd.diff file. (xfrd already request and save it there).
- split off xfrd tcp handling into xfrd-tcp.c.
- cleaned up send_udp in xfrd, and read_state.
- removed xfrd tcp_send_blocking.
- xfrd sets state from ok to refresh to expired based on timeout.
- xfrd sets reload timeout.
- Added zone updated to keep track of zones that are changed
after a reload. These zones get their information notifified
to xfrd.
- removed unused zprintrr declaration from zonec.h
- nsd sends soa information to xfrd.
14 Mar 2006: Wouter
- TODO updated
- worked on reload ixfr. It will add/delete RRs and zones.
- xfrd receive parse of xfr messages improved. writes commit.
- server compressed_dname_offsets table is increased if reload
creates extra names.
- difffile will create zone and apex if not there (i.e. the zone
is configured but no data file provided).
- bit more verbose in error message for bad diff file.
- Typo fix in sample config file.
13 Mar 2006: Wouter
- configure sets fseek (fgetpos/fsetpos) to use 64 bit interface
with _FILE_OFFSET_BITS=64.
- nsd will skip loading the .db if the DB checksum is the same.
- Miek added trace test and nsd kill test.
- Wouter worked on diff file c.
10 Mar 2006: Wouter
- Cleanup of UDP/TCP code in XFRD.
- xfrd now has tcp max connections and managing. tcp read/write.
- response TC on UDP ixfr, starts TCP.
- sends correct ixfr and axfr queries, a bind server answers.
- made packet_skip_dname() public.
- sets read/write event flags for tcp fd right.
9 Mar 2006: Wouter
- Removed header from DIFF file format. CRC not that imporant there,
you have to check the packets anyway.
- cutest rbtree removed unused clean_rbtree and always_fail routines.
- xfrd timeout handler, more work. Checks expire.
8 Mar 2006: Wouter
- xfrd sends UDP xfr request to master(s) with timeouts, and stores
returned data on disk.
- updated dependencies and declaration of write_soa_buffer.
7 Mar 2006: Wouter
- Fixed printfs for size_t warnings on Mac OsX.
6 Mar 2006: nsd-team
* Wouter: xfrd read and write work. Statefile is "nsd.xfst".
* Wouter: nsd-checkconf checks dname parse of zone name:.
* Wouter: updated difffile in parser.y, production in server: clause.
* Wouter: zonec now takes -C for 'no config file' option.
* Wouter: updated configyyrename.h for bison 1.875d on sparc.
* Miek: zonec -h and nsd -h exit with exit code = 0.
* Miek & Wouter: updated tpkgs to work again.
* Wouter: xfrd read handle soas, handle soa_incoming part.
* Wouter: moved compare_serial() from nsd-xfer to util.h.
4 Mar 2006: Wouter
- xfrd zone and soa memory structure definitions.
- xfrd init zones.
- xfrd read and write state file code.
- option for difffile: and xfrdfile: config lines.
3 Mar 2006: Wouter
- Removed double kill after reload. Only socket cmd send.
- Added code to handle race condition where xfrd is restarted
during a succesfull reload. Afterwards, the new server_main
only has the old xfrd pid, new xfrd is an orphan.
Solution: when xfrd closes cmd channel (i.e. it quit)
unexpectedly, send sighup to all processes in the group.
This should quit the orphan & all children & reload the
server_main, which will fork the children and xfrd again.
2 Mar 2006: Wouter
- Added nsd-checkconf.8 to makedist.sh replace list.
- DIFF file format updated.
- removed tsigkey->server value, it was read in, but unused.
- new function to add config file keys to tsig.
- nsd-checkconf checks parsing of keys.
- Updated sample key file with valid keys.
- added first xfrd files. xfrd is started from server_main.
xfrd listens to server and server to xfrd. xfrd is restarted
if it dies unexpectedly. xfrd quits when server signals it.
xfrd survives nsd reloads.
- nsd_options no longer global variable.
1 Mar 2006: Wouter
- Nicer text in nsd.8.
- nsd.c prettier code in option handling.
- zonec.c code prettier in option handling, also chdir bug removed.
zonec uses the zone definitions in the config file.
updated zonec.8 and usage().
- nsd also chdirs to the zonedir, otherwise nsd and zonec would
try to read the database: file from different directories.
.(it does the chdir before the chroot call.)
- new calling syntax for zonec and nsd, because of new config file.
- options added acl acceptance tests (no tsig yet).
- added unit test for options.c - for acl tests.
- zonec removed unused vars, nsd-checkconf print arguments.
- nsd-checkconf.8 manual page.
28 Feb 2006: Wouter
- checked in options.h and config parser code.
- also nsd-checkconf that will test a config file
.(and optionally show what was read).
- default identity has a spelling error.
- Small fix (typo in example) to config manual page.
- Added ; to configparser.y to please bison 1.75 on bsd.
- Will check for blocked addresses in outgoing acls. Also ranges.
- Check configuration tpkg test added. Uses checkconf.
- checkconf does extra semantic tests. i.e. enable absent features.
- tcpcount and servercount cannot be negative.
- updated nsd.conf.5 manpage for @port syntax.
- changed config parser: allows empty server: part (defaults).
- made nsd.conf.sample file.
- put option to configure for CONFIG_FILE nsd.conf location.
Note. Already nsdc.conf exists. Both exist now.
- updated makefile dependencies (gcc -MM).
- getopt optstring in nsd-checkconf updated ("v" only option).
- Added config .o files to nsd and zonec. This compiles.
- Added commandline option -c configfile to zonec and nsd.
configure defaults < configfile < commandline options in importance.
24 Feb 2006: Wouter
- Added compute_crc in util.h and unit tests for it.
- in cutest.tpkg the number of unit tests was hardcoded
in the tpkg package. Removed the dependency, cutest exit
value indicates if any failures happened.
- Added crc at end of NSD-database format. Unique per db.
upped db version to 7 because of this.
- Tested that crcs are big/little endian correct.
- Added DIFF file spec
- updated tpkg213 which compares md5 on a zonefile for new format.
- added nsd.conf.5 manual page with a draft contents.
22 Feb 2006: nsd-team
* Miek: Changed over to Cutest testing framework.
* Miek: fixed typo in netio.h
* Miek: fix syntax in rbtree.c put functions on multiple lines.
* Miek: unit test tpkg for cutest.
* Wouter: fixed ptr bug in rbtree unit test.
17 Feb 2006: Wouter
- rbtree_delete is added and works. Unit tests are there too.
- Changed tail recursion in rbtree_delete to while loop.
- Tagged this version as NSD_3_signalsocket_solution.
It is the stable 2_2 branch with cleanups, portable, and
signalhandler solution by socket communication redesign.
15 Feb 2006: nsd-team
* Wouter: Fixed server_child would wait for two kill signals before quit.
* Miek: don't check for port==0 pkt, just try to send them.
Forward Port of 2.3.
* Wouter: Removed unused, not substituted, @nsdxfer@ from Makefile.in.
14 Feb 2006: Wouter
- Added unit tests for rbtree. Extensive testing of all functions.
- Added tpkg unit test.
- configure tests for CUnit(optional lib for unit tests). Makefile
cleanup so it works on non-gmake on freebsd.
13 Feb 2006: Wouter
- Removed timespec_add(current_time) in server_main, the timeout was
relative, not absolute. This fixes EINVAL on the timeout on freebsd.
- Added check in configure for compiler flags. Used for -Wextra.
- Added check in configure for va_list definition conflict between
stdio and stdarg. This happens on DEC Alpha/Debian.
- removed --enable-mmap configure option. There is no mmap support
in the current codebase.
- renamed local prev to next in domain_next() in namedb.h.
- Removed heap.h. It was not used. Heap and rbtree are mingled anyway.
- in netio.c, in dispatch, it would store the next pointer 'in case
the handler removes itself'. But if the handler removes that next.
Then it would fail. So stored the next in struct netio.
This removes a potential bug. Netio_dispatch is not reentrant.
Reentry would need a list of iterator* in struct netio.
- Changed process_query() to server_process_query(). It is too
similar to query_process().
10 Feb 2006: nsd-team
* Wouter: Improved configure.ac to detect pselect in sys/select.
The check works on freebsd(yes) and fedoracore 3 and 4 (no).
I hope it also works on Solaris.
Also various other protoypes were implicit: chroot, strptime, ...
These are also solved.
* Wouter: Checked configure on sparc5(solaris). Added check for
ctime_r in time.h (for tsig.c). This conf also works on freebsd/linux.
* Wouter: Updated dependencies in makefile for plugin headers.
These are included only when --enable-plugins is present.
* Wouter: Added a send quit over socket to kill commands in server_main,
These act when the fork children fails. If the kill fails, the
socket command hopefully still works.
* Wouter: Put reload code into a separate function. It communicates with
a socket to the old parent, and sends it a quit command. This works
and terminates the old nsd. Left in the kill as a double failsafe.
If the reload process dies, then the parent closes the socket.
* Wouter: Separated the signal mode from the socket-determined nsd->mode.
Every signal function has a variable, so that multiple signals can
arrive. Only the number of signals of the same type is lost, but not
important for nsd. The signals are handled in turn by the run loop.
This completes the coding to remove signal race conditions:
- nsd uses sockets to communicate with its subprocesses(server,reload).
- signal handler routine contains no lengthy system calls.
- signals cannot overwrite a previous signal.
* Wouter: fixed problem where nsd->mode and mode are different in
server_main. Nsd would kill the children, but then restart them again.
09 Feb 2006: nsd-team
* Wouter: Updated dependencies in Makefile (regenerated them with gcc -MM).
* Wouter: Used splint on the source (with settings to reduce spam.)
And came to the following changes:
- In util.h, make it respect HAVE_CONFIG_H and HAVE_SYSLOG_H.
Also it now defines fallback values for #defines in syslog h.
- Added explicit cast to (unsigned int) in snprintf in dname.c,
dname_to_string routine.
* Wouter: Used extra warnings during gcc compile. -Wextra -Wall
-pedantic -Wbad-function-cast -Wmissing-declarations
-Wmissing-prototypes -Wnested-externs -Wold-style-definition
-Wstrict-prototypes -Wdeclaration-after-statement.
Using -Wtraditional gives too many warnings.
* Wouter: Found a problem with pselect. sys/select.h does not by default
provide the pselect function definition. configure script is
adjusted to test for this and enable _XOPEN_SOURCE=600 to get it.
Found this using the gcc warnings.
* Wouter: dname and rbtree test apps were in make clean target, but
do not exist anymore. Removed from make clean target.
* Wouter: in util log_file() the epoch time_t is passed to printf
without an int cast. Found using extra gcc warnings.
* Wouter: In server.c fixed some signed-unsigned comparisons
using the extra gcc warnings.
- in shutdown and int was used instead of size_t.
- in server_main timeout(signed) was compared with unsigned.
- unused variable in new handler functions.
- in handle_child_command int i instead of size_t was used.
- in zonec the process_rr routine was missing (void) as paramlist.
* Wouter: Added -Wall and -Wextra when --enable-checking is enabled.
* Miek: Ported over the big fat enable checking configure warning.
* Wouter: fixed configure check for pselect on freebsd.
08 Feb 2006: nsd-team
* Wouter: In server.c also sockets from unexpectedly dead childs are closed.
* Wouter: in nsd.c and server.c cleaned out the signal handler, so that
it only includes two switch/if statements and alters only the mode.
No more calls to alarm(), waitpid(), write(), log_msg().
Instead the work is done in the runloop in server.c and sent by socket.
Also the parent now waits for children. Parent restarts them.
* Wouter: Fixup, the children will quit if the parent closes the command
socket. If parent is killed, they will exit too.
* Wouter: The server_main now listens to children command channels.
Included timeout to check for terminated processes.
Test says that new signal handler works, and child->parent comm.
07 Feb 2006: nsd-team
* Miek: configure.ac version to 3.0.0
* Miek: looked at: buffer.{ch}, answer.{ch}, dns.{ch}
those files don't have any changes, except for dns.{ch} for the
explicit compression.
* Miek: looked at: zlexer.lex and zparser.y; only changes there
for the database changes.
* Wouter: Changed buffer in write_pid from 16 bytes to 32 bytes,
this makes 64 bit numbers fit in the buffer.
* Wouter: Socket connection between parent and child nsds added.
But sighandler now in worse shape. Need to close them. Remove kills.
* Wouter: close the parent and child command channel sockets in shutdown().
|