]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bind9/CHANGES
Merge OpenBSM alpha 4 from OpenBSM vendor branch to head, both
[FreeBSD/FreeBSD.git] / contrib / bind9 / CHANGES
1
2         --- 9.4.3 released ---
3
4 2490.   [port]          aix: work around a kernel bug where IPV6_RECVPKTINFO
5                         is cleared when IPV6_V6ONLY is set. [RT #18785]
6
7 2489.   [port]          solaris: Workaround Solaris's kernel bug about
8                         /dev/poll:
9                         http://bugs.opensolaris.org/view_bug.do?bug_id=6724237
10                         Define ISC_SOCKET_USE_POLLWATCH at build time to enable
11                         this workaround. [RT #18870]
12
13         --- 9.4.3rc1 released ---
14
15 2473.   [port]          linux: raise the limit on open files to the possible
16                         maximum value before spawning threads; 'files'
17                         specified in named.conf doesn't seem to work with
18                         threads as expected. [RT #18784]
19
20 2472.   [port]          linux: check the number of available cpu's before
21                         calling chroot as it depends on "/proc". [RT #16923]
22
23 2471.   [bug]           named-checkzone was not reporting missing manditory
24                         glue when sibling checks were disabled. [RT #18768]
25
26 2469.   [port]          solaris: Work around Solaris's select() limitations.
27                         [RT #18769]
28
29 2468.   [bug]           Resolver could try unreachable servers multiple times.
30                         [RT #18739]
31
32 2467.   [bug]           Failure of fcntl(F_DUPFD) wasn't logged. [RT #18740]
33
34 2466.   [doc]           ARM: explain max-cache-ttl 0 SERVFAIL issue.
35                         [RT #18302]
36
37 2465.   [bug]           Adb's handling of lame addresses was different
38                         for IPv4 and IPv6. [RT #18738]
39
40 2463.   [port]          linux: POSIX doesn't include the IPv6 Advanced Socket
41                         API and glibc hides parts of the IPv6 Advanced Socket
42                         API as a result.  This is stupid as it breaks how the
43                         two halves (Basic and Advanced) of the IPv6 Socket API                          were designed to be used but we have to live with it.
44                         Define _GNU_SOURCE to pull in the IPv6 Advanced Socket
45                         API. [RT #18388]
46
47 2462.   [doc]           Document -m (enable memory usage debugging)
48                         option for dig. [RT #18757]
49
50 2461.   [port]          sunos: Change #2363 was not complete. [RT #17513]
51
52 2458.   [doc]           ARM: update and correction for max-cache-size.
53                         [RT #18294]
54
55 2455.   [bug]           Stop metadata being transfered via axfr/ixfr.
56                         [RT #18639]
57
58 2453.   [bug]           Remove NULL pointer dereference in dns_journal_print().
59                         [RT #18316]
60
61 2449.   [bug]           libbind: Out of bounds reference in dns_ho.c:addrsort.
62                         [RT #18044]
63
64 2445.   [doc]           ARM out-of-date on empty reverse zones (list includes
65                         RFC1918 address, but these are not yet compiled in).
66                         [RT #18578]
67
68 2444.   [port]          Linux, FreeBSD, AIX: Turn off path mtu discovery
69                         (clear DF) for UDP responses and requests.
70
71         --- 9.4.3b3 released ---
72
73 2443.   [bug]           win32: UDP connect() would not generate an event,
74                         and so connected UDP sockets would never clean up.
75                         Fix this by doing an immediate WSAConnect() rather
76                         than an io completion port type for UDP.
77
78 2438.   [bug]           Timeouts could be logged incorrectly under win32.
79                         [RT #18617]
80
81 2437.   [bug]           Sockets could be closed too early, leading to
82                         inconsistent states in the socket module. [RT #18298]
83
84 2436.   [security]      win32: UDP client handler can be shutdown. [RT #18576]
85
86 2433.   [tuning]        Set initial timeout to 800ms.
87
88 2432.   [bug]           More Windows socket handling improvements.  Stop
89                         using I/O events and use IO Completion Ports
90                         throughout.  Rewrite the receive path logic to make
91                         it easier to support multiple simultaneous
92                         requestrs in the future.  Add stricter consistency
93                         checking as a compile-time option (define
94                         ISC_SOCKET_CONSISTENCY_CHECKS; defaults to off).
95
96 2430.   [bug]           win32: isc_interval_set() could round down to
97                         zero if the input was less than NS_INTERVAL
98                         nanoseconds.  Round up instead. [RT #18549]
99
100 2429.   [doc]           nsupdate should be in section 1 of the man pages.
101                         [RT #18283]
102
103 2426.   [bug]           libbind: inet_net_pton() can sometimes return the
104                         wrong value if excessively large netmasks are
105                         supplied. [RT #18512]
106
107 2425.   [bug]           named didn't detect unavailable query source addresses
108                         at load time. [RT #18536]
109
110 2424.   [port]          configure now probes for a working epoll
111                         implementation.  Allow the use of kqueue,
112                         epoll and /dev/poll to be selected at compile
113                         time. [RT #18277]
114                         
115 2422.   [bug]           Handle the special return value of a empty node as
116                         if it was a NXRRSET in the validator. [RT #18447]
117
118 2421.   [func]          Add new command line option '-S' for named to specify
119                         the max number of sockets. [RT #18493]
120                         Use caution: this option may not work for some
121                         operating systems without rebuilding named.
122
123 2420.   [bug]           Windows socket handling cleanup.  Let the io
124                         completion event send out cancelled read/write
125                         done events, which keeps us from writing to memeory
126                         we no longer have ownership of.  Add debugging
127                         socket_log() function.  Rework TCP socket handling
128                         to not leak sockets.
129
130 2417.   [bug]           Connecting UDP sockets for outgoing queries could
131                         unexpectedly fail with an 'address already in use'
132                         error. [RT #18411]
133
134 2416.   [func]          Log file descriptors that cause exceeding the
135                         internal maximum. [RT #18460]
136
137 2414.   [bug]           A masterdump context held the database lock too long,
138                         causing various troubles such as dead lock and
139                         recursive lock acquisition. [RT #18311, #18456]
140
141 2413.   [bug]           Fixed an unreachable code path in socket.c. [RT #18442]
142
143 2412.   [bug]           win32: address a resourse leak. [RT #18374]
144
145 2411.   [bug]           Allow using a larger number of sockets than FD_SETSIZE
146                         for select().  To enable this, set ISC_SOCKET_MAXSOCKETS
147                         at compilation time.  [RT #18433]
148
149 2410.   [bug]           Correctly delete m_versionInfo. [RT #18432]
150
151 2408.   [bug]           A duplicate TCP dispatch event could be sent, which
152                         could then trigger an assertion failure in
153                         resquery_response().  [RT #18275]
154
155 2407.   [port]          hpux: test for sys/dyntune.h. [RT #18421]
156
157 2404.   [port]          hpux: files unlimited support.
158
159 2403.   [bug]           TSIG context leak. [RT #18341]
160
161 2402.   [port]          Support Solaris 2.11 and over. [RT #18362]
162
163 2401.   [bug]           Expect to get E[MN]FILE errno internal_accept()
164                         (from accept() or fcntl() system calls). [RT #18358]
165
166 2399.   [bug]           Abort timeout queries to reduce the number of open
167                         UDP sockets. [RT #18367]
168
169 2398.   [bug]           Improve file descriptor management.  New,
170                         temporary, named.conf option reserved-sockets,
171                         default 512. [RT #18344]
172
173 2396.   [bug]           Don't set SO_REUSEADDR for randomized ports.
174                         [RT #18336]
175
176 2395.   [port]          Avoid warning and no effect from "files unlimited"
177                         on Linux when running as root. [RT #18335]
178
179 2394.   [bug]           Default configuration options set the limit for
180                         open files to 'unlimited' as described in the
181                         documentation. [RT #18331]
182
183 2392.   [bug]           remove 'grep -q' from acl test script, some platforms
184                         don't support it. [RT #18253]
185
186 2391    [port]          hpux: cover additional recvmsg() error codes.
187                         [RT #18301]
188
189 2390    [bug]           dispatch.c could make a false warning on 'odd socket'.
190                         [RT #18301].
191
192 2389    [bug]           Move the "working directory writable" check to after
193                         the ns_os_changeuser() call. [RT #18326]
194
195 2386.   [func]          Add warning about too small 'open files' limit.
196                         [RT #18269]
197
198         --- 9.4.3b2 released ---
199
200 2385.   [bug]           A condition variable in socket.c could leak in
201                         rare error handling [RT #17968].
202
203 2384.   [security]      Additional support for query port randomization (change
204                         #2375) including performance improvement and port range
205                         specification.  [RT #17949, #18098]
206
207 2383.   [bug]           named could double queries when they resulted in
208                         SERVFAIL due to overkilling EDNS0 failure detection.
209                         [RT #18182]
210
211 2382.   [doc]           Add descriptions of IPSECKEY, SPF and SSHFP to ARM.
212
213 2381.   [port]          dlz/mysql: support multiple install layouts for
214                         mysql.  <prefix>/include/{,mysql/}mysql.h and
215                         <prefix>/lib/{,mysql/}. [RT #18152]
216
217 2380.   [bug]           dns_view_find() was not returning NXDOMAIN/NXRRSET
218                         proofs which, in turn, caused validation failures
219                         for insecure zones immediately below a secure zone
220                         the server was authoritative for. [RT #18112] 
221
222 2379.   [contrib]       queryperf/gen-data-queryperf.py: removed redundant
223                         TLDs and supported RRs with TTLs [RT #17972]
224
225 2377.   [bug]           Address race condition in dnssec-signzone. [RT #18142]
226
227 2376.   [bug]           Change #2144 was not complete.
228
229 2375.   [security]      Fully randomize UDP query ports to improve
230                         forgery resilience. [RT #17949]
231
232 2372.   [bug]           fixed incorrect TAG_HMACSHA256_BITS value [RT #18047]
233
234 2369.   [bug]           libbind: Array bounds overrun on read in bitncmp().
235                         [RT #18054]
236
237 2364.   [bug]           named could trigger a assertion when serving a
238                         malformed signed zone. [RT #17828]
239
240 2363.   [port]          sunos: pre-set "lt_cv_sys_max_cmd_len=4096;".
241                         [RT #17513]
242
243 2361.   [bug]           "recursion" statistics counter could be counted
244                         multiple times for a single query.  [RT #17990]
245
246         --- 9.4.3b1 released ---
247
248 2358.   [doc]           Update host's default query description. [RT #17934]
249
250 2356.   [bug]           Built in mutex profiler was not scalable enough.
251                         [RT #17436]
252
253 2353.   [func]          libbind: nsid support. [RT #17091]
254
255 2350.   [port]          win32: IPv6 support. [RT #17797]
256
257 2347.   [bug]           Delete now traverses the RB tree in the canonical
258                         order. [RT #17451]
259
260 2345.   [bug]           named-checkconf failed to detect when forwarders
261                         were set at both the options/view level and in
262                         a root zone. [RT #17671]
263
264 2344.   [bug]           Improve "logging{ file ...; };" documentation.
265                         [RT #17888]
266
267 2343.   [bug]           (Seemingly) duplicate IPv6 entries could be
268                         created in ADB. [RT #17837]
269
270 2341.   [bug]           libbind: add missing -I../include for off source
271                         tree builds. [RT #17606]
272
273 2340.   [port]          openbsd: interface configuration. [RT #17700]
274
275 2339.   [port]          tru64: support for libbind. [RT #17589]
276
277 2338.   [bug]           check_ds() could be called with a non DS rdataset.
278                         [RT #17598]
279
280 2337.   [bug]           BUILD_LDFLAGS was not being correctly set.  [RT #17614]
281
282 2335.   [port]          sunos:  libbind and *printf() support for long long.
283                         [RT #17513]
284
285 2334.   [bug]           Bad REQUIRES in fromstruct_in_naptr(),  off by one
286                         bug in fromstruct_txt(). [RT #17609]
287
288 2333.   [bug]           Fix off by one error in isc_time_nowplusinterval().
289                         [RT #17608]
290
291 2332.   [contrib]       query-loc-0.4.0. [RT #17602]
292
293 2331.   [bug]           Failure to regenerate any signatures was not being
294                         reported nor being past back to the UPDATE client.
295                         [RT #17570]
296
297 2330.   [bug]           Remove potential race condition when handling
298                         over memory events. [RT #17572]
299
300                         WARNING: API CHANGE: over memory callback
301                         function now needs to call isc_mem_waterack().
302                         See <isc/mem.h> for details.
303
304 2329.   [bug]           Clearer help text for dig's '-x' and '-i' options.
305
306 2328.   [maint]         Add AAAA addresses for A.ROOT-SERVERS.NET,
307                         F.ROOT-SERVERS.NET, H.ROOT-SERVERS.NET,
308                         J.ROOT-SERVERS.NET, K.ROOT-SERVERS.NET and
309                         M.ROOT-SERVERS.NET.
310
311 2326.   [bug]           It was possible to trigger a INSIST in the acache
312                         processing.
313
314 2325.   [port]          Linux: use capset() function if available. [RT #17557]
315
316 2323.   [port]          tru64: namespace clash. [RT #17547]
317
318 2322.   [port]          MacOS: work around the limitation of setrlimit()
319                         for RLIMIT_NOFILE. [RT #17526]
320
321 2319.   [bug]           Silence Coverity warnings in
322                         lib/dns/rdata/in_1/apl_42.c. [RT #17469]
323
324 2318.   [port]          sunos fixes for libbind.  [RT #17514]
325
326 2314.   [bug]           Uninitialized memory use on error path in
327                         bin/named/lwdnoop.c.  [RT #17476]
328
329 2313.   [cleanup]       Silence Coverity warnings. Handle private stacks.
330                         [RT #17447] [RT #17478]
331
332 2312.   [cleanup]       Silence Coverity warning in lib/isc/unix/socket.c.
333                         [RT #17458]
334
335 2311.   [func]          Update ACL regression test. [RT #17462]
336
337 2310.   [bug]           dig, host, nslookup: flush stdout before emitting
338                         debug/fatal messages.  [RT #17501]
339
340 2308.   [cleanup]       Silence Coverity warning in bin/named/controlconf.c.
341                         [RT #17495]
342
343 2307.   [bug]           Remove infinite loop from lib/dns/sdb.c. [RT #17496]
344
345 2306.   [bug]           Remove potential race from lib/dns/resolver.c.
346                         [RT #17470]
347
348 2305.   [security]      inet_network() buffer overflow. CVE-2008-0122.
349
350 2304.   [bug]           Check returns from all dns_rdata_tostruct() calls.
351                         [RT #17460]
352
353 2303.   [bug]           Remove unnecessary code from bin/named/lwdgnba.c.
354                         [RT #17471]
355
356 2302.   [bug]           Fix memset() calls in lib/tests/t_api.c. [RT #17472]
357
358 2301.   [bug]           Remove resource leak and fix error messages in
359                         bin/tests/system/lwresd/lwtest.c. [RT #17474]
360
361 2300.   [bug]           Fixed failure to close open file in
362                         bin/tests/names/t_names.c. [RT #17473]
363
364 2299.   [bug]           Remove unnecessary NULL check in
365                         bin/nsupdate/nsupdate.c. [RT #17475]
366
367 2298.   [bug]           isc_mutex_lock() failure not caught in
368                         bin/tests/timers/t_timers.c. [RT #17468]
369
370 2297.   [bug]           isc_entropy_createfilesource() failure not caught in
371                         bin/tests/dst/t_dst.c. [RT #17467]
372
373 2296.   [port]          Allow docbook stylesheet location to be specified to
374                         configure. [RT #17457]
375
376 2295.   [bug]           Silence static overrun error in bin/named/lwaddr.c.
377                         [RT #17459]
378
379 2293.   [func]          Add ACL regression test. [RT #17375]
380
381 2292.   [bug]           Log if the working directory is not writable.
382                         [RT #17312]
383
384 2291.   [bug]           PR_SET_DUMPABLE may be set too late.  Also report
385                         failure to set PR_SET_DUMPABLE. [RT #17312]
386
387 2290.   [bug]           Let AD in the query signal that the client wants AD
388                         set in the response. [RT #17301]
389
390 2288.   [port]          win32: mark service as running when we have finished
391                         loading.  [RT #17441]
392
393 2287.   [bug]           Use 'volatile' if the compiler supports it. [RT #17413]
394
395 2284.   [bug]           Memory leak in UPDATE prerequisite processing.
396                         [RT #17377]
397
398 2283.   [bug]           TSIG keys were not attaching to the memory
399                         context.  TSIG keys should use the rings
400                         memory context rather than the clients memory
401                         context. [RT #17377]
402
403 2279.   [bug]           Use setsockopt(SO_NOSIGPIPE), when available,
404                         to protect applications from receiving spurious
405                         SIGPIPE signals when using the resolver.
406
407 2278.   [bug]           win32: handle the case where Windows returns no
408                         search list or DNS suffix. [RT #17354]
409
410 2277.   [bug]           Empty zone names were not correctly being caught at
411                         in the post parse checks. [RT #17357]
412
413 2273.   [bug]           Adjust log level to WARNING when saving inconsistent
414                         stub/slave master and journal files. [RT# 17279]
415
416 2272.   [bug]           Handle illegal dnssec-lookaside trust-anchor names.
417                         [RT #17262]
418
419 2270.   [bug]           dns_db_closeversion() version->writer could be reset
420                         before it is tested. [RT #17290]
421
422 2269.   [contrib]       dbus memory leaks and missing va_end calls. [RT #17232]
423
424 2268.   [bug]           0.IN-ADDR.ARPA was missing from the empty zones
425                         list.
426
427 2266.   [bug]           client.c:get_clientmctx() returned the same mctx
428                         once the pool of mctx's was filled. [RT #17218]
429
430 2265.   [bug]           Test that the memory context's basic_table is non NULL
431                         before freeing.  [RT #17265]
432
433 2264.   [bug]           Server prefix length was being ignored. [RT #17308]
434
435 2263.   [bug]           "named-checkconf -z" failed to set default value
436                         for "check-integrity".  [RT #17306]
437
438 2262.   [bug]           Error status from all but the last view could be
439                         lost. [RT #17292]
440
441 2260.   [bug]           Reported wrong clients-per-query when increasing the
442                         value. [RT #17236]
443
444 2247.   [doc]           Sort doc/misc/options. [RT #17067]
445
446 2246.   [bug]           Make the startup of test servers (ans.pl) more
447                         robust. [RT #17147]
448
449         --- 9.4.2 released ---
450
451         --- 9.4.2rc2 released ---
452
453 2259.   [bug]           Reverse incorrect LIBINTERFACE bump of libisc
454                         in 9.4.2rc1.  Applications built against 9.4.2rc1
455                         will need to be rebuilt.
456
457 2258.   [bug]           Fallback from IXFR/TSIG to SOA/AXFR/TSIG broken.
458                         [RT #17241]
459
460 2257.   [bug]           win32: Use the full path to vcredist_x86.exe when
461                         calling it. [RT #17222]
462
463 2256.   [bug]           win32: Correctly register the installation location of
464                         bindevt.dll. [RT #17159]
465
466 2255.   [maint]         L.ROOT-SERVERS.NET is now 199.7.83.42.
467
468 2254.   [bug]           timer.c:dispatch() failed to lock timer->lock
469                         when reading timer->idle allowing it to see
470                         intermediate values as timer->idle was reset by
471                         isc_timer_touch(). [RT #17243]
472
473         --- 9.4.2rc1 released ---
474
475 2251.   [doc]           Update memstatistics-file documentation to reflect
476                         reality. Note there is behaviour change for BIND 9.5.
477                         [RT #17113]
478
479 2249.   [bug]           Only set Authentic Data bit if client requested
480                         DNSSEC, per RFC 3655 [RT #17175]
481
482 2248.   [cleanup]       Fix several errors reported by Coverity. [RT #17160]
483
484 2245.   [bug]           Validating lack of DS records at trust anchors wasn't
485                         working. [RT #17151]
486
487 2238.   [bug]           It was possible to trigger a REQUIRE when a
488                         validation was canceled. [RT #17106]
489
490 2237.   [bug]           libbind: res_init() was not thread aware. [RT #17123]
491
492 2236.   [bug]           dnssec-signzone failed to preserve the case of
493                         of wildcard owner names. [RT #17085]
494
495 2235.   [bug]           <isc/atomic.h> was not being installed. [RT #17135]
496
497 2234.   [port]          Correct some compiler warnings on SCO OSr5 [RT #17134]
498
499 2232.   [bug]           dns_adb_findaddrinfo() could fail and return
500                         ISC_R_SUCCESS. [RT #17137]
501
502 2231.   [bug]           Building dlzbdb (contrib/dlz/bin/dlzbdb) was broken.
503                         [RT #17088]
504
505 2230.   [bug]           We could INSIST reading a corrupted journal.
506                         [RT #17132]
507
508 2228.   [contrib]       contrib: Change 2188 was incomplete.
509
510 2227.   [cleanup]       Tidied up the FAQ. [RT #17121]
511
512 2225.   [bug]           More support for systems with no IPv4 addresses.
513                         [RT #17111]
514
515 2224.   [bug]           Defer journal compaction if a xfrin is in progress.
516                         [RT #17119]
517
518 2223.   [bug]           Make a new journal when compacting. [RT #17119]
519
520 2221.   [bug]           Set the event result code to reflect the actual
521                         record returned to caller when a cache update is
522                         rejected due to a more credible answer existing.
523                         [RT #17017]
524
525 2220.   [bug]           win32: Address a race condition in final shutdown of
526                         the Windows socket code. [RT #17028]
527
528 2219.   [bug]           Apply zone consistency checks to additions, not
529                         removals, when updating. [RT #17049]
530
531 2218.   [bug]           Remove unnecessary REQUIRE from dns_validator_create().
532                         [RT #16976]
533
534 2216.   [cleanup]       Fix a number of errors reported by Coverity.
535                         [RT #17094]
536
537 2215.   [bug]           Bad REQUIRE check isc_hmacsha1_verify(). [RT #17094]
538
539 2214.   [bug]           Deregister OpenSSL lock callback when cleaning
540                         up.  Reorder OpenSSL cleanup so that RAND_cleanup()
541                         is called before the locks are destroyed. [RT #17098]
542
543 2213.   [bug]           SIG0 diagnostic failure messages were looking at the
544                         wrong status code. [RT #17101]
545
546 2212.   [func]          'host -m' now causes memory statistics and active
547                         memory to be printed at exit. [RT 17028]
548
549 2210.   [bug]           Deleting class specific records via UPDATE could
550                         fail.  [RT #17074]
551
552 2209.   [port]          osx: linking against user supplied static OpenSSL
553                         libraries failed as the system ones were still being
554                         found. [RT #17078]
555
556 2208.   [port]          win32: make sure both build methods produce the
557                         same output. [RT #17058]
558
559 2207.   [port]          Some implementations of getaddrinfo() fail to set
560                         ai_canonname correctly. [RT #17061]
561
562         --- 9.4.2b1 released ---
563
564 2206.   [security]      "allow-query-cache" and "allow-recursion" now
565                         cross inherit from each other.
566
567                         If allow-query-cache is not set in named.conf then
568                         allow-recursion is used if set, otherwise allow-query
569                         is used if set, otherwise the default (localnets;
570                         localhost;) is used.
571
572                         If allow-recursion is not set in named.conf then
573                         allow-query-cache is used if set, otherwise allow-query
574                         is used if set, otherwise the default (localnets;
575                         localhost;) is used.
576
577                         [RT #16987]
578
579 2205.   [bug]           libbind: change #2119 broke thread support. [RT #16982]
580
581 2203.   [security]      Query id generation was cryptographically weak.
582                         [RT # 16915]
583
584 2202.   [security]      The default acls for allow-query-cache and
585                         allow-recursion were not being applied. [RT #16960]
586
587 2200.   [bug]           The search for cached NSEC records was stopping to
588                         early leading to excessive DLV queries. [RT #16930]
589
590 2199.   [bug]           win32: don't call WSAStartup() while loading dlls.
591                         [RT #16911]
592
593 2198.   [bug]           win32: RegCloseKey() could be called when
594                         RegOpenKeyEx() failed. [RT #16911]
595
596 2197.   [bug]           Add INSIST to catch negative responses which are
597                         not setting the event result code appropriately.
598                         [RT #16909]
599
600 2196.   [port]          win32: yield processor while waiting for once to
601                         to complete. [RT #16958]
602
603 2194.   [bug]           Close journal before calling 'done' in xfrin.c.
604
605 2193.   [port]          win32: BINDInstall.exe is now linked statically.
606                         [RT #16906]
607
608 2192.   [port]          win32: use vcredist_x86.exe to install Visual
609                         Studio's redistributable dlls if building with
610                         Visual Stdio 2005 or later.
611
612 2189.   [bug]           Handle socket() returning EINTR. [RT #15949]
613
614 2188.   [contrib]       queryperf: autoconf changes to make the search for
615                         libresolv or libbind more robust. [RT #16299]
616
617 2187.   [bug]           query_addds(), query_addwildcardproof() and
618                         query_addnxrrsetnsec() should take a version
619                         argument. [RT #16368]
620
621 2186.   [port]          cygwin: libbind: check for struct sockaddr_storage
622                         independently of IPv6. [RT #16482]
623
624 2185.   [port]          sunos: libbind: check for ssize_t, memmove() and
625                         memchr(). [RT #16463]
626
627 2183.   [bug]           dnssec-signzone didn't handle offline private keys
628                         well.  [RT #16832]
629
630 2182.   [bug]           dns_dispatch_createtcp() and dispatch_createudp()
631                         could return ISC_R_SUCCESS when they ran out of
632                         memory. [RT #16365]
633
634 2181.   [port]          sunos: libbind: add paths.h from BIND 8. [RT #16462]
635
636 2180.   [cleanup]       Remove bit test from 'compress_test' as they
637                         are no longer needed. [RT #16497]
638
639 2178.   [bug]           'rndc reload' of a slave or stub zone resulted in
640                         a reference leak. [RT #16867]
641
642 2177.   [bug]           Array bounds overrun on read (rcodetext) at
643                         debug level 10+. [RT #16798]
644
645 2176.   [contrib]       dbus update to handle race condition during
646                         initialization (Bugzilla 235809). [RT #16842]
647
648 2175.   [bug]           win32: windows broadcast condition variable support
649                         was broken. [RT #16592]
650
651 2174.   [bug]           I/O errors should always be fatal when reading
652                         master files. [RT #16825]
653
654 2173.   [port]          win32: When compiling with MSVS 2005 SP1 we also
655                         need to ship Microsoft.VC80.MFCLOC.
656
657 2171.   [bug]           Handle breaks in DNSSEC trust chains where the parent
658                         servers are not DS aware (DS queries to the parent
659                         return a referral to the child).
660
661 2170.   [func]          Add acache processing to test suite. [RT #16711]
662
663 2169.   [bug]           host, nslookup: when reporting NXDOMAIN report the
664                         given name and not the last name searched for.
665                         [RT #16763]
666
667 2168.   [bug]           nsupdate: in non-interactive mode treat syntax errors
668                         as fatal errors. [RT #16785]
669
670 2167.   [bug]           When re-using a automatic zone named failed to
671                         attach it to the new view. [RT #16786]
672
673 2166.   [bug]           When running in batch mode, dig could misinterpret
674                         a server address as a name to be looked up, causing
675                         unexpected output. [RT #16743]
676
677 2164.   [bug]           The code to determine how named-checkzone /
678                         named-compilezone was called failed under windows.
679                         [RT #16764]
680
681 2162.   [func]          Allow "rrset-order fixed" to be disabled at compile
682                         time. [RT #16665]
683
684 2161.   [bug]           'rndc flush' could report a false success. [RT #16698]
685
686 2160.   [bug]           libisc wasn't handling NULL ifa_addr pointers returned
687                         from getifaddrs(). [RT #16708]
688
689 2159.   [bug]           Array bounds overrun in acache processing. [RT #16710]
690
691 2158.   [bug]           ns_client_isself() failed to initialize key
692                         leading to a REQUIRE failure. [RT #16688]
693
694 2156.   [bug]           Fix node reference leaks in lookup.c:lookup_find(),
695                         resolver.c:validated() and resolver.c:cache_name().
696                         Fix a memory leak in rbtdb.c:free_noqname().
697                         Make lookup.c:lookup_find() robust against
698                         event leaks. [RT #16685]
699
700 2155.   [contrib]       SQLite sdb module from jaboydjr@netwalk.com.
701                         [RT #16694]
702
703 2153.   [bug]           nsupdate could leak memory. [RT #16691]
704
705 2152.   [cleanup]       Use sizeof(buf) instead of fixed number in
706                         dighost.c:get_trusted_key(). [RT #16678]
707
708 2151.   [bug]           Missing newline in usage message for journalprint.
709                         [RT #16679]
710
711 2150.   [bug]           'rrset-order cyclic' uniformly distribute the
712                         starting point for the first response for a given
713                         RRset. [RT #16655]
714
715 2149.   [bug]           isc_mem_checkdestroyed() failed to abort on
716                         if there were still active memory contexts.
717                         [RT #16672]
718
719 2147.   [bug]           libbind: remove potential buffer overflow from
720                         hmac_link.c. [RT #16437]
721
722 2146.   [cleanup]       Silence Linux's spurious "obsolete setsockopt
723                         SO_BSDCOMPAT" message. [RT #16641]
724
725 2145.   [bug]           Check DS/DLV digest lengths for known digests.
726                         [RT #16622]
727
728 2144.   [cleanup]       Suppress logging of SERVFAIL from forwarders.
729                         [RT #16619]
730
731 2143.   [bug]           We failed to restart the IPv6 client when the
732                         kernel failed to return the destination the
733                         packet was sent to. [RT #16613]
734
735 2142.   [bug]           Handle master files with a modification time that
736                         matches the epoch. [RT# 16612]
737
738 2141.   [bug]           dig/host should not be setting IDN_ASCCHECK (IDN
739                         equivalent of LDH checks).  [RT #16609]
740
741 2140.   [bug]           libbind: missing unlock on pthread_key_create()
742                         failures. [RT #16654]
743
744 2139.   [bug]           dns_view_find() was being called with wrong type
745                         in adb.c. [RT #16670]
746
747 2119.   [compat]        libbind: allow res_init() to succeed enough to
748                         return the default domain even if it was unable
749                         to allocate memory.
750
751         --- 9.4.1 released ---
752
753 2172.   [bug]           query_addsoa() was being called with a non zone db.
754                         [RT #16834]
755
756         --- 9.4.0 released ---
757
758 2138.   [bug]           Lock order reversal in resolver.c. [RT #16653]
759
760 2137.   [port]          Mips little endian and/or mips 64 bit are now
761                         supported for atomic operations. [RT#16648]
762
763 2136.   [bug]           nslookup/host looped if there was no search list
764                         and the host didn't exist. [RT #16657]
765
766 2135.   [bug]           Uninitialized rdataset in sdlz.c. [RT# 16656]
767
768 2133.   [port]          powerpc:  Support both IBM and MacOS Power PC
769                         assembler syntaxes. [RT #16647]
770
771 2132.   [bug]           Missing unlock on out of memory in
772                         dns_dispatchmgr_setudp().
773
774 2131.   [contrib]       dlz/mysql: AXFR was broken. [RT #16630]
775
776 2128.   [doc]           xsltproc --nonet, update DTD versions.  [RT #16635]
777
778         --- 9.4.0rc2 released ---
779
780 2127.   [port]          Improved OpenSSL 0.9.8 support. [RT #16563]
781
782 2126.   [security]      Serialize validation of type ANY responses. [RT #16555]
783
784 2125.   [bug]           dns_zone_getzeronosoattl() REQUIRE failure if DLZ
785                         was defined. [RT #16574]
786
787 2124.   [security]      It was possible to dereference a freed fetch
788                         context. [RT #16584]
789
790 2120.   [doc]           Fix markup on nsupdate man page. [RT #16556]
791
792         --- 9.4.0rc1 released ---
793
794 2118.   [bug]           Handle response with long chains of domain name
795                         compression pointers which point to other compression
796                         pointers. [RT #16427]
797
798 2117.   [bug]           DNSSEC fixes: named could fail to cache NSEC records
799                         which could lead to validation failures.  named didn't
800                         handle negative DS responses that were in the process
801                         of being validated.  Check CNAME bit before accepting
802                         NODATA proof. To be able to ignore a child NSEC there
803                         must be SOA (and NS) set in the bitmap. [RT #16399]
804
805 2116.   [bug]           'rndc reload' could cause the cache to continually
806                         be cleaned. [RT #16401]
807
808 2115.   [bug]           'rndc reconfig' could trigger a INSIST if the
809                         number of masters for a zone was reduced. [RT #16444]
810
811 2114.   [bug]           dig/host/nslookup: searches for names with multiple
812                         labels were failing. [RT #16447]
813
814 2113.   [bug]           nsupdate: if a zone is specified it should be used
815                         for server discover. [RT# 16455]
816
817 2112.   [security]      Warn if weak RSA exponent is used. [RT #16460]
818
819 2111.   [bug]           Fix a number of errors reported by Coverity.
820                         [RT #16507]
821
822 2110.   [bug]           "minimal-responses yes;" interacted badly with BIND 8
823                         priming queries. [RT #16491]
824
825 2109.   [port]          libbind: silence aix 5.3 compiler warnings. [RT #16502]
826
827 2107.   [bug]           dighost.c: more cleanup of buffers. [RT #16499]
828
829 2104.   [port]          Fix Solaris SMF error message.
830
831 2103.   [port]          Add /usr/sfw to list of locations for OpenSSL
832                         under Solaris.
833
834 2102.   [port]          Silence Solaris 10 warnings.
835
836         --- 9.4.0b4 released ---
837
838 2101.   [bug]           OpenSSL version checks were not quite right.
839                         [RT #16476]
840
841 2100.   [port]          win32: copy libeay32.dll to Build\Debug.
842                         Copy Debug\named-checkzone to Debug\named-compilezone.
843
844 2099.   [port]          win32: more manifest issues.
845
846 2098.   [bug]           Race in rbtdb.c:no_references(), which occasionally
847                         triggered an INSIST failure about the node lock
848                         reference.  [RT #16411]
849
850         --- 9.4.0b3 released ---
851
852 2097.   [bug]           named could reference a destroyed memory context
853                         after being reloaded / reconfigured. [RT #16428]
854
855 2096.   [bug]           libbind: handle applications that fail to detect
856                         res_init() failures better.
857
858 2095.   [port]          libbind: alway prototype inet_cidr_ntop_ipv6() and
859                         net_cidr_ntop_ipv6(). [RT #16388]
860
861 2094.   [contrib]       Update named-bootconf.  [RT# 16404]
862
863 2093.   [bug]           named-checkzone -s was broken.
864
865 2092.   [bug]           win32: dig, host, nslookup.  Use registry config
866                         if resolv.conf does not exist or no nameservers
867                         listed. [RT #15877]
868
869 2091.   [port]          dighost.c: race condition on cleanup. [RT #16417]
870
871 2090.   [port]          win32: Visual C++ 2005 command line manifest support.
872                         [RT #16417]
873
874 2089.   [security]      Raise the minimum safe OpenSSL versions to
875                         OpenSSL 0.9.7l and OpenSSL 0.9.8d.  Versions
876                         prior to these have known security flaws which
877                         are (potentially) exploitable in named. [RT #16391]
878
879 2088.   [security]      Change the default RSA exponent from 3 to 65537.
880                         [RT #16391]
881
882 2087.   [port]          libisc failed to compile on OS's w/o a vsnprintf.
883                         [RT #16382]
884
885 2086.   [port]          libbind: FreeBSD now has get*by*_r() functions.
886                         [RT #16403]
887
888 2085.   [doc]           win32: added index.html and README to zip. [RT #16201]
889
890 2084.   [contrib]       dbus update for 9.3.3rc2.
891
892 2083.   [port]          win32: Visual C++ 2005 support.
893
894 2082.   [doc]           Document 'cache-file' as a test only option.
895
896         --- 9.4.0b2 released ---
897
898 2081.   [port]          libbind: minor 64-bit portability fix in memcluster.c.
899                         [RT #16360]
900
901 2080.   [port]          libbind: res_init.c did not compile on older versions
902                         of Solaris. [RT #16363]
903
904 2079.   [bug]           The lame cache was not handling multiple types
905                         correctly. [RT #16361]
906
907 2078.   [bug]           dnssec-checkzone output style "default" was badly
908                         named.  It is now called "relative". [RT #16326]
909
910 2077.   [bug]           'dnssec-signzone -O raw' wasn't outputting the
911                         complete signed zone. [RT #16326]
912
913 2076.   [bug]           Several files were missing #include <config.h>
914                         causing build failures on OSF. [RT #16341]
915
916 2075.   [bug]           The spillat timer event hander could leak memory.
917                         [RT #16357]
918
919 2074.   [bug]           dns_request_createvia2(), dns_request_createvia3(),
920                         dns_request_createraw2() and dns_request_createraw3()
921                         failed to send multiple UDP requests. [RT #16349]
922
923 2073.   [bug]           Incorrect semantics check for update policy "wildcard".
924                         [RT #16353]
925
926 2072.   [bug]           We were not generating valid HMAC SHA digests.
927                         [RT #16320]
928
929 2071.   [port]          Test whether gcc accepts -fno-strict-aliasing.
930                         [RT #16324]
931
932 2070.   [bug]           The remote address was not always displayed when
933                         reporting dispatch failures. [RT #16315]
934
935 2069.   [bug]           Cross compiling was not working. [RT #16330]
936
937 2068.   [cleanup]       Lower incremental tuning message to debug 1.
938                         [RT #16319]
939
940 2067.   [bug]           'rndc' could close the socket too early triggering
941                         a INSIST under Windows. [RT #16317]
942
943 2066.   [security]      Handle SIG queries gracefully. [RT #16300]
944
945 2065.   [bug]           libbind: probe for HPUX prototypes for
946                         endprotoent_r() and endservent_r().  [RT 16313]
947
948 2064.   [bug]           libbind: silence AIX compiler warnings. [RT #16218]
949
950 2063.   [bug]           Change #1955 introduced a bug which caused the first
951                         'rndc flush' call to not free memory. [RT #16244]
952
953 2062.   [bug]           'dig +nssearch' was reusing a buffer before it had
954                         been returned by the socket code. [RT #16307]
955
956 2061.   [bug]           Accept expired wildcard message reversed. [RT #16296]
957
958 2060.   [bug]           Enabling DLZ support could leave views partially
959                         configured. [RT #16295]
960
961         --- 9.4.0b1 released ---
962
963 2059.   [bug]           Search into cache rbtdb could trigger an INSIST
964                         failure while cleaning up a stale rdataset.
965                         [RT #16292]
966
967 2058.   [bug]           Adjust how we calculate rtt estimates in the presence
968                         of authoritative servers that drop EDNS and/or CD
969                         requests.  Also fallback to EDNS/512 and plain DNS
970                         faster for zones with less than 3 servers.  [RT #16187]
971
972 2057.   [bug]           Make setting "ra" dependent on both allow-query-cache
973                         and allow-recursion. [RT #16290]
974
975 2056.   [bug]           dig: ixfr= was not being treated case insensitively
976                         at all times. [RT #15955]
977
978 2055.   [bug]           Missing goto after dropping multicast query.
979                         [RT #15944]
980
981 2054.   [port]          freebsd: do not explicitly link against -lpthread.
982                         [RT #16170]
983
984 2053.   [port]          netbsd:libbind: silence compiler warnings. [RT #16220]
985
986 2052.   [bug]           'rndc' improve connect failed message to report
987                         the failing address. [RT #15978]
988
989 2051.   [port]          More strtol() fixes. [RT #16249]
990
991 2050.   [bug]           Parsing of NSAP records was not case insensitive.
992                         [RT #16287]
993
994 2049.   [bug]           Restore SOA before AXFR when falling back from
995                         a attempted IXFR when transferring in a zone.
996                         Allow a initial SOA query before attempting
997                         a AXFR to be requested. [RT #16156]
998
999 2048.   [bug]           It was possible to loop forever when using
1000                         avoid-v4-udp-ports / avoid-v6-udp-ports when
1001                         the OS always returned the same local port.
1002                         [RT #16182]
1003
1004 2047.   [bug]           Failed to initialize the interface flags to zero.
1005                         [RT #16245]
1006
1007 2046.   [bug]           rbtdb.c:rdataset_setadditional() could cause duplicate
1008                         cleanup [RT #16247].
1009
1010 2045.   [func]          Use lock buckets for acache entries to limit memory
1011                         consumption. [RT #16183]
1012
1013 2044.   [port]          Add support for atomic operations for Itanium.
1014                         [RT #16179]
1015
1016 2043.   [port]          nsupdate/nslookup: Force the flushing of the prompt
1017                         for interactive sessions. [RT#16148]
1018
1019 2042.   [bug]           named-checkconf was incorrectly rejecting the
1020                         logging category "config". [RT #16117]
1021
1022 2041.   [bug]           "configure --with-dlz-bdb=yes" produced a bad
1023                         set of libraries to be linked. [RT #16129]
1024
1025 2040.   [bug]           rbtdb no_references() could trigger an INSIST
1026                         failure with --enable-atomic.  [RT #16022]
1027
1028 2039.   [func]          Check that all buffers passed to the socket code
1029                         have been retrieved when the socket event is freed.
1030                         [RT #16122]
1031
1032 2038.   [bug]           dig/nslookup/host was unlinking from wrong list
1033                         when handling errors. [RT #16122]
1034
1035 2037.   [func]          When unlinking the first or last element in a list
1036                         check that the list head points to the element to
1037                         be unlinked. [RT #15959]
1038
1039 2036.   [bug]           'rndc recursing' could cause trigger a REQUIRE.
1040                         [RT #16075]
1041
1042 2034.   [bug]           gcc: set -fno-strict-aliasing. [RT #16124]
1043
1044 2033.   [bug]           We weren't creating multiple client memory contexts
1045                         on demand as expected. [RT #16095]
1046
1047         --- 9.4.0a6 released ---
1048
1049 2032.   [bug]           Remove a INSIST in query_addadditional2(). [RT #16074]
1050
1051 2031.   [bug]           Emit a error message when "rndc refresh" is called on
1052                         a non slave/stub zone. [RT # 16073]
1053
1054 2030.   [bug]           We were being overly conservative when disabling
1055                         openssl engine support. [RT #16030]
1056
1057 2029.   [bug]           host printed out the server multiple times when
1058                         specified on the command line. [RT #15992]
1059
1060 2028.   [port]          linux: socket.c compatibility for old systems.
1061                         [RT #16015]
1062
1063 2027.   [port]          libbind: Solaris x86 support. [RT #16020]
1064
1065 2026.   [bug]           Rate limit the two recursive client exceeded messages.
1066                         [RT #16044]
1067
1068 2025.   [func]          Update "zone serial unchanged" message. [RT #16026]
1069
1070 2024.   [bug]           named emitted spurious "zone serial unchanged"
1071                         messages on reload. [RT #16027]
1072
1073 2023.   [bug]           "make install" should create ${localstatedir}/run and
1074                         ${sysconfdir} if they do not exist. [RT #16033]
1075
1076 2022.   [bug]           If dnssec validation is disabled only assert CD if
1077                         CD was requested. [RT #16037]
1078
1079 2021.   [bug]           dnssec-enable no; triggered a REQUIRE. [RT #16037]
1080
1081 2020.   [bug]           rdataset_setadditional() could leak memory. [RT #16034]
1082
1083 2019.   [tuning]        Reduce the amount of work performed per quantum
1084                         when cleaning the cache. [RT #15986]
1085
1086 2018.   [bug]           Checking if the HMAC MD5 private file was broken.
1087                         [RT #15960]
1088
1089 2017.   [bug]           allow-query default was not correct. [RT #15946]
1090
1091 2016.   [bug]           Return a partial answer if recursion is not
1092                         allowed but requested and we had the answer
1093                         to the original qname. [RT #15945]
1094
1095         --- 9.4.0a5 released ---
1096
1097 2015.   [cleanup]       use-additional-cache is now acache-enable for
1098                         consistency.  Default acache-enable off in BIND 9.4
1099                         as it requires memory usage to be configured.
1100                         It may be enabled by default in BIND 9.5 once we
1101                         have more experience with it.
1102
1103 2014.   [func]          Statistics about acache now recorded and sent
1104                         to log. [RT #15976]
1105
1106 2013.   [bug]           Handle unexpected TSIGs on unsigned AXFR/IXFR
1107                         responses more gracefully. [RT #15941]
1108
1109 2012.   [func]          Don't insert new acache entries if acache is full.
1110                         [RT #15970]
1111
1112 2011.   [func]          dnssec-signzone can now update the SOA record of
1113                         the signed zone, either as an increment or as the
1114                         system time(). [RT #15633]
1115
1116         --- 9.4.0a4 released ---
1117
1118 2009.   [bug]           libbind: Coverity fixes. [RT #15808]
1119
1120 2008.   [func]          It is now possible to enable/disable DNSSEC
1121                         validation from rndc.  This is useful for the
1122                         mobile hosts where the current connection point
1123                         breaks DNSSEC (firewall/proxy).  [RT #15592]
1124
1125                                 rndc validation newstate [view]
1126
1127 2007.   [func]          It is now possible to explicitly enable DNSSEC
1128                         validation.  default dnssec-validation no; to
1129                         be changed to yes in 9.5.0.  [RT #15674]
1130
1131 2006.   [security]      Allow-query-cache and allow-recursion now default
1132                         to the built in acls "localnets" and "localhost".
1133
1134                         This is being done to make caching servers less
1135                         attractive as reflective amplifying targets for
1136                         spoofed traffic.  This still leave authoritative
1137                         servers exposed.
1138
1139                         The best fix is for full BCP 38 deployment to
1140                         remove spoofed traffic.
1141
1142 2005.   [bug]           libbind: Retransmission timeouts should be
1143                         based on which attempt it is to the nameserver
1144                         and not the nameserver itself. [RT #13548]
1145
1146 2004.   [bug]           dns_tsig_sign() could pass a NULL pointer to
1147                         dst_context_destroy() when cleaning up after a
1148                         error. [RT #15835]
1149
1150 2003.   [bug]           libbind: The DNS name/address lookup functions could
1151                         occasionally follow a random pointer due to
1152                         structures not being completely zeroed. [RT #15806]
1153
1154 2002.   [bug]           libbind: tighten the constraints on when
1155                         struct addrinfo._ai_pad exists.  [RT #15783]
1156
1157 2001.   [func]          Check the KSK flag when updating a secure dynamic zone.
1158                         New zone option "update-check-ksk yes;".  [RT #15817]
1159
1160 2000.   [bug]           memmove()/strtol() fix was incomplete. [RT #15812]
1161
1162 1999.   [func]          Implement "rrset-order fixed". [RT #13662]
1163
1164 1998.   [bug]           Restrict handling of fifos as sockets to just SunOS.
1165                         This allows named to connect to entropy gathering
1166                         daemons that use fifos instead of sockets. [RT #15840]
1167
1168 1997.   [bug]           Named was failing to replace negative cache entries
1169                         when a positive one for the type was learnt.
1170                         [RT #15818]
1171
1172 1996.   [bug]           nsupdate: if a zone has been specified it should
1173                         appear in the output of 'show'. [RT #15797]
1174
1175 1995.   [bug]           'host' was reporting multiple "is an alias" messages.
1176                         [RT #15702]
1177
1178 1994.   [port]          OpenSSL 0.9.8 support. [RT #15694]
1179
1180 1993.   [bug]           Log messages, via syslog, were missing the space
1181                         after the timestamp if "print-time yes" was specified.
1182                         [RT #15844]
1183
1184 1992.   [bug]           Not all incoming zone transfer messages included the
1185                         view.  [RT #15825]
1186
1187 1991.   [cleanup]       The configuration data, once read, should be treated
1188                         as read only.  Expand the use of const to enforce this
1189                         at compile time. [RT #15813]
1190
1191 1990.   [bug]           libbind:  isc's override of broken gettimeofday()
1192                         implementations was not always effective.
1193                         [RT #15709]
1194
1195 1989.   [bug]           win32: don't check the service password when
1196                         re-installing. [RT #15882]
1197
1198 1988.   [bug]           Remove a bus error from the SHA256/SHA512 support.
1199                         [RT #15878]
1200
1201 1987.   [func]          DS/DLV SHA256 digest algorithm support. [RT #15608]
1202
1203 1986.   [func]          Report when a zone is removed. [RT #15849]
1204
1205 1985.   [protocol]      DLV has now been assigned a official type code of
1206                         32769. [RT #15807]
1207
1208                         Note: care should be taken to ensure you upgrade
1209                         both named and dnssec-signzone at the same time for
1210                         zones with DLV records where named is the master
1211                         server for the zone.  Also any zones that contain
1212                         DLV records should be removed when upgrading a slave
1213                         zone.  You do not however have to upgrade all
1214                         servers for a zone with DLV records simultaneously.
1215
1216 1984.   [func]          dig, nslookup and host now advertise a 4096 byte
1217                         EDNS UDP buffer size by default. [RT #15855]
1218
1219 1983.   [func]          Two new update policies.  "selfsub" and "selfwild".
1220                         [RT #12895]
1221
1222 1982.   [bug]           DNSKEY was being accepted on the parent side of
1223                         a delegation.  KEY is still accepted there for
1224                         RFC 3007 validated updates. [RT #15620]
1225
1226 1981.   [bug]           win32: condition.c:wait() could fail to reattain
1227                         the mutex lock.
1228
1229 1980.   [func]          dnssec-signzone: output the SOA record as the
1230                         first record in the signed zone. [RT #15758]
1231
1232 1979.   [port]          linux: allow named to drop core after changing
1233                         user ids. [RT #15753]
1234
1235 1978.   [port]          Handle systems which have a broken recvmsg().
1236                         [RT #15742]
1237
1238 1977.   [bug]           Silence noisy log message. [RT #15704]
1239
1240 1976.   [bug]           Handle systems with no IPv4 addresses. [RT #15695]
1241
1242 1975.   [bug]           libbind: isc_gethexstring() could misparse multi-line
1243                         hex strings with comments. [RT #15814]
1244
1245 1974.   [doc]           List each of the zone types and associated zone
1246                         options separately in the ARM.
1247
1248 1973.   [func]          TSIG HMACSHA1, HMACSHA224, HMACSHA256, HMACSHA384 and
1249                         HMACSHA512 support. [RT #13606]
1250
1251 1972.   [contrib]       DBUS dynamic forwarders integration from
1252                         Jason Vas Dias <jvdias@redhat.com>.
1253
1254 1971.   [port]          linux: make detection of missing IF_NAMESIZE more
1255                         robust. [RT #15443]
1256
1257 1970.   [bug]           nsupdate: adjust UDP timeout when falling back to
1258                         unsigned SOA query. [RT #15775]
1259
1260 1969.   [bug]           win32: the socket code was freeing the socket
1261                         structure too early. [RT #15776]
1262
1263 1968.   [bug]           Missing lock in resolver.c:validated(). [RT #15739]
1264
1265 1967.   [func]          dig/nslookup/host: warn about missing "QR". [RT #15779]
1266
1267 1966.   [bug]           Don't set CD when we have fallen back to plain DNS.
1268                         [RT #15727]
1269
1270 1965.   [func]          Suppress spurious "recusion requested but not
1271                         available" warning with 'dig +qr'. [RT #15780].
1272
1273 1964.   [func]          Separate out MX and SRV to CNAME checks. [RT #15723]
1274
1275 1963.   [port]          Tru64 4.0E doesn't support send() and recv().
1276                         [RT #15586]
1277
1278 1962.   [bug]           Named failed to clear old update-policy when it
1279                         was removed. [RT #15491]
1280
1281 1961.   [bug]           Check the port and address of responses forwarded
1282                         to dispatch. [RT #15474]
1283
1284 1960.   [bug]           Update code should set NSEC ttls from SOA MINIMUM.
1285                         [RT #15465]
1286
1287 1959.   [func]          Control the zeroing of the negative response TTL to
1288                         a soa query.  Defaults "zero-no-soa-ttl yes;" and
1289                         "zero-no-soa-ttl-cache no;". [RT #15460]
1290
1291 1958.   [bug]           Named failed to update the zone's secure state
1292                         until the zone was reloaded. [RT #15412]
1293
1294 1957.   [bug]           Dig mishandled responses to class ANY queries.
1295                         [RT #15402]
1296
1297 1956.   [bug]           Improve cross compile support, 'gen' is now built
1298                         by native compiler.  See README for additional
1299                         cross compile support information. [RT #15148]
1300
1301 1955.   [bug]           Pre-allocate the cache cleaning iterator. [RT #14998]
1302
1303 1954.   [func]          Named now falls back to advertising EDNS with a
1304                         512 byte receive buffer if the initial EDNS queries
1305                         fail.  [RT #14852]
1306
1307 1953.   [func]          The maximum EDNS UDP response named will send can
1308                         now be set in named.conf (max-udp-size).  This is
1309                         independent of the advertised receive buffer
1310                         (edns-udp-size). [RT #14852]
1311
1312 1952.   [port]          hpux: tell the linker to build a runtime link
1313                         path "-Wl,+b:". [RT #14816].
1314
1315 1951.   [security]      Drop queries from particular well known ports.
1316                         Don't return FORMERR to queries from particular
1317                         well known ports.  [RT #15636]
1318
1319 1950.   [port]          Solaris 2.5.1 and earlier cannot bind() then connect()
1320                         a TCP socket. This prevents the source address being
1321                         set for TCP connections. [RT #15628]
1322
1323 1949.   [func]          Addition memory leakage checks. [RT #15544]
1324
1325 1948.   [bug]           If was possible to trigger a REQUIRE failure in
1326                         xfrin.c:maybe_free() if named ran out of memory.
1327                         [RT #15568]
1328
1329 1947.   [func]          It is now possible to configure named to accept
1330                         expired RRSIGs.  Default "dnssec-accept-expired no;".
1331                         Setting "dnssec-accept-expired yes;" leaves named
1332                         vulnerable to replay attacks.  [RT #14685]
1333
1334 1946.   [bug]           resume_dslookup() could trigger a REQUIRE failure
1335                         when using forwarders. [RT #15549]
1336
1337 1945.   [cleanup]       dnssec-keygen: RSA (RSAMD5) is no longer recommended.
1338                         To generate a RSAMD5 key you must explicitly request
1339                         RSAMD5. [RT #13780]
1340
1341 1944.   [cleanup]       isc_hash_create() does not need a read/write lock.
1342                         [RT #15522]
1343
1344 1943.   [bug]           Set the loadtime after rolling forward the journal.
1345                         [RT #15647]
1346
1347 1597.   [func]          Allow notify-source and query-source to be specified
1348                         on a per server basis similar to transfer-source.
1349                         [RT #6496]
1350
1351         --- 9.4.0a3 released ---
1352
1353 1942.   [bug]           If the name of a DNSKEY match that of one in
1354                         trusted-keys do not attempt to validate the DNSKEY
1355                         using the parents DS RRset. [RT #15649]
1356
1357 1941.   [bug]           ncache_adderesult() should set eresult even if no
1358                         rdataset is passed to it. [RT #15642]
1359
1360 1940.   [bug]           Fixed a number of error conditions reported by
1361                         Coverity.
1362
1363 1939.   [bug]           The resolver could dereference a null pointer after
1364                         validation if all the queries have timed out.
1365                         [RT #15528]
1366
1367 1938.   [bug]           The validator was not correctly handling unsecure
1368                         negative responses at or below a SEP. [RT #15528]
1369
1370 1937.   [bug]           sdlz doesn't handle RRSIG records. [RT #15564]
1371
1372 1936.   [bug]           The validator could leak memory. [RT #15544]
1373
1374 1935.   [bug]           'acache' was DO sensitive. [RT #15430]
1375
1376 1934.   [func]          Validate pending NS RRsets, in the authority section,
1377                         prior to returning them if it can be done without
1378                         requiring DNSKEYs to be fetched.  [RT #15430]
1379
1380 1919.   [contrib]       queryperf: a set of new features: collecting/printing
1381                         response delays, printing intermediate results, and
1382                         adjusting query rate for the "target" qps.
1383
1384         --- 9.4.0a2 released ---
1385
1386 1933.   [bug]           dump_rdataset_raw() had a incorrect INSIST. [RT #15534]
1387
1388 1932.   [bug]           hpux: LDFLAGS was getting corrupted. [RT #15530]
1389
1390 1931.   [bug]           Per-client mctx could require a huge amount of memory,
1391                         particularly for a busy caching server. [RT #15519]
1392
1393 1930.   [port]          HPUX: ia64 support. [RT #15473]
1394
1395 1929.   [port]          FreeBSD: extend use of PTHREAD_SCOPE_SYSTEM.
1396
1397 1928.   [bug]           Race in rbtdb.c:currentversion(). [RT #15517]
1398
1399 1927.   [bug]           Access to soanode or nsnode in rbtdb violated the
1400                         lock order rule and could cause a dead lock.
1401                         [RT# 15518]
1402
1403 1926.   [bug]           The Windows installer did not check for empty
1404                         passwords.  BINDinstall was being installed in
1405                         the wrong place. [RT #15483]
1406
1407 1925.   [port]          All outer level AC_TRY_RUNs need cross compiling
1408                         defaults. [RT #15469]
1409
1410 1924.   [port]          libbind: hpux ia64 support. [RT #15473]
1411
1412 1923.   [bug]           ns_client_detach() called too early. [RT #15499]
1413
1414 1922.   [bug]           check-tool.c:setup_logging() missing call to
1415                         dns_log_setcontext().
1416
1417 1921.   [bug]           Client memory contexts were not using internal
1418                         malloc. [RT# 15434]
1419
1420 1920.   [bug]           The cache rbtdb lock array was too small to
1421                         have the desired performance characteristics.
1422                         [RT #15454]
1423
1424         --- 9.4.0a1 released ---
1425
1426 1918.   [bug]           Memory leak when checking acls. [RT #15391]
1427
1428 1917.   [doc]           funcsynopsisinfo wasn't being treated as verbatim
1429                         when generating man pages. [RT #15385]
1430
1431 1916.   [func]          Integrate contributed IDN code from JPNIC. [RT #15383]
1432
1433 1915.   [bug]           dig +ndots was broken. [RT #15215]
1434
1435 1914.   [protocol]      DS is required to accept mnemonic algorithms
1436                         (RFC 4034).  Still emit numeric algorithms for
1437                         compatibility with RFC 3658. [RT #15354]
1438
1439 1913.   [func]          Integrate contributed DLZ code into named. [RT #11382]
1440
1441 1912.   [port]          aix: atomic locking for powerpc. [RT #15020]
1442
1443 1911.   [bug]           Update windows socket code. [RT #14965]
1444
1445 1910.   [bug]           dig's +sigchase code overhauled. [RT #14933]
1446
1447 1909.   [bug]           The DLV code has been re-worked to make no longer
1448                         query order sensitive. [RT #14933]
1449
1450 1908.   [func]          dig now warns if 'RA' is not set in the answer when
1451                         'RD' was set in the query.  host/nslookup skip servers
1452                         that fail to set 'RA' when 'RD' is set unless a server
1453                         is explicitly set.  [RT #15005]
1454
1455 1907.   [func]          host/nslookup now continue (default)/fail on SERVFAIL.
1456                         [RT #15006]
1457
1458 1906.   [func]          dig now has a '-q queryname' and '+showsearch' options.
1459                         [RT #15034]
1460
1461 1905.   [bug]           Strings returned from cfg_obj_asstring() should be
1462                         treated as read-only.  The prototype for
1463                         cfg_obj_asstring() has been updated to reflect this.
1464                         [RT #15256]
1465
1466 1904.   [func]          Automatic empty zone creation for D.F.IP6.ARPA and
1467                         friends.  Note: RFC 1918 zones are not yet covered by
1468                         this but are likely to be in a future release.
1469
1470                         New options: empty-server, empty-contact,
1471                         empty-zones-enable and disable-empty-zone.
1472
1473 1903.   [func]          ISC string copy API.
1474
1475 1902.   [func]          Attempt to make the amount of work performed in a
1476                         iteration self tuning.  The covers nodes clean from
1477                         the cache per iteration, nodes written to disk when
1478                         rewriting a master file and nodes destroyed per
1479                         iteration when destroying a zone or a cache.
1480                         [RT #14996]
1481
1482 1901.   [cleanup]       Don't add DNSKEY records to the additional section.
1483
1484 1900.   [bug]           ixfr-from-differences failed to ensure that the
1485                         serial number increased. [RT #15036]
1486
1487 1899.   [func]          named-checkconf now validates update-policy entries.
1488                         [RT #14963]
1489
1490 1898.   [bug]           Extend ISC_SOCKADDR_FORMATSIZE and
1491                         ISC_NETADDR_FORMATSIZE to allow for scope details.
1492
1493 1897.   [func]          x86 and x86_64 now have separate atomic locking
1494                         implementations.
1495
1496 1896.   [bug]           Recursive clients soft quota support wasn't working
1497                         as expected. [RT #15103]
1498
1499 1895.   [bug]           A escaped character is, potentially, converted to
1500                         the output character set too early. [RT #14666]
1501
1502 1894.   [doc]           Review ARM for BIND 9.4.
1503
1504 1893.   [port]          Use uintptr_t if available. [RT #14606]
1505
1506 1892.   [func]          Support for SPF rdata type. [RT #15033]
1507
1508 1891.   [port]          freebsd: pthread_mutex_init can fail if it runs out
1509                         of memory. [RT #14995]
1510
1511 1890.   [func]          Raise the UDP receive buffer size to 32k if it is
1512                         less than 32k. [RT #14953]
1513
1514 1889.   [port]          sunos: non blocking i/o support. [RT #14951]
1515
1516 1888.   [func]          Support for IPSECKEY rdata type. [RT #14967]
1517
1518 1887.   [bug]           The cache could delete expired records too fast for
1519                         clients with a virtual time in the past. [RT #14991]
1520
1521 1886.   [bug]           fctx_create() could return success even though it
1522                         failed. [RT #14993]
1523
1524 1885.   [func]          dig: report the number of extra bytes still left in
1525                         the packet after processing all the records.
1526
1527 1884.   [cleanup]       dighost.c: move external declarations into <dig/dig.h>.
1528
1529 1883.   [bug]           dnssec-signzone, dnssec-keygen: handle negative debug
1530                         levels. [RT #14962]
1531
1532 1882.   [func]          Limit the number of recursive clients that can be
1533                         waiting for a single query (<qname,qtype,qclass>) to
1534                         resolve.  New options clients-per-query and
1535                         max-clients-per-query.
1536
1537 1881.   [func]          Add a system test for named-checkconf. [RT #14931]
1538
1539 1880.   [func]          The lame cache is now done on a <qname,qclass,qtype>
1540                         basis as some servers only appear to be lame for
1541                         certain query types.  [RT #14916]
1542
1543 1879.   [func]          "USE INTERNAL MALLOC" is now runtime selectable.
1544                         [RT #14892]
1545
1546 1878.   [func]          Detect duplicates of UDP queries we are recursing on
1547                         and drop them.  New stats category "duplicate".
1548                         [RT #2471]
1549
1550 1877.   [bug]           Fix unreasonably low quantum on call to
1551                         dns_rbt_destroy2().  Remove unnecessary unhash_node()
1552                         call. [RT #14919]
1553
1554 1876.   [func]          Additional memory debugging support to track size
1555                         and mctx arguments. [RT #14814]
1556
1557 1875.   [bug]           process_dhtkey() was using the wrong memory context
1558                         to free some memory. [RT #14890]
1559
1560 1874.   [port]          sunos: portability fixes. [RT #14814]
1561
1562 1873.   [port]          win32: isc__errno2result() now reports its caller.
1563                         [RT #13753]
1564
1565 1872.   [port]          win32: Handle ERROR_NETNAME_DELETED.  [RT #13753]
1566
1567 1870.   [func]          Added framework for handling multiple EDNS versions.
1568                         [RT #14873]
1569
1570 1869.   [func]          dig can now specify the EDNS version when making
1571                         a query. [RT #14873]
1572
1573 1868.   [func]          edns-udp-size can now be overridden on a per
1574                         server basis. [RT #14851]
1575
1576 1867.   [bug]           It was possible to trigger a INSIST in
1577                         dlv_validatezonekey(). [RT #14846]
1578
1579 1866.   [bug]           resolv.conf parse errors were being ignored by
1580                         dig/host/nslookup. [RT #14841]
1581
1582 1865.   [bug]           Silently ignore nameservers in /etc/resolv.conf with
1583                         bad addresses. [RT #14841]
1584
1585 1864.   [bug]           Don't try the alternative transfer source if you
1586                         got a answer / transfer with the main source
1587                         address. [RT #14802]
1588
1589 1863.   [bug]           rrset-order "fixed" error messages not complete.
1590
1591 1862.   [func]          Add additional zone data constancy checks.
1592                         named-checkzone has extended checking of NS, MX and
1593                         SRV record and the hosts they reference.
1594                         named has extended post zone load checks.
1595                         New zone options: check-mx and integrity-check.
1596                         [RT #4940]
1597
1598 1861.   [bug]           dig could trigger a INSIST on certain malformed
1599                         responses. [RT #14801]
1600
1601 1860.   [port]          solaris 2.8: hack_shutup_pthreadmutexinit was
1602                         incorrectly set. [RT #14775]
1603
1604 1859.   [func]          Add support for CH A record. [RT #14695]
1605
1606 1858.   [bug]           The flush-zones-on-shutdown option wasn't being
1607                         parsed. [RT #14686]
1608
1609 1857.   [bug]           named could trigger a INSIST() if reconfigured /
1610                         reloaded too fast.  [RT #14673]
1611
1612 1856.   [doc]           Switch Docbook toolchain from DSSSL to XSL.
1613                         [RT #11398]
1614
1615 1855.   [bug]           ixfr-from-differences was failing to detect changes
1616                         of ttl due to dns_diff_subtract() was ignoring the ttl
1617                         of records.  [RT #14616]
1618
1619 1854.   [bug]           lwres also needs to know the print format for
1620                         (long long).  [RT #13754]
1621
1622 1853.   [bug]           Rework how DLV interacts with proveunsecure().
1623                         [RT #13605]
1624
1625 1852.   [cleanup]       Remove last vestiges of dnssec-signkey and
1626                         dnssec-makekeyset (removed from Makefile years ago).
1627
1628 1851.   [doc]           Doxygen comment markup. [RT #11398]
1629
1630 1850.   [bug]           Memory leak in lwres_getipnodebyaddr(). [RT #14591]
1631
1632 1849.   [doc]           All forms of the man pages (docbook, man, html) should
1633                         have consistent copyright dates.
1634
1635 1848.   [bug]           Improve SMF integration. [RT #13238]
1636
1637 1847.   [bug]           isc_ondestroy_init() is called too late in
1638                         dns_rbtdb_create()/dns_rbtdb64_create().
1639                         [RT #13661]
1640
1641 1846.   [contrib]       query-loc-0.3.0 from Stephane Bortzmeyer
1642                         <bortzmeyer@nic.fr>.
1643
1644 1845.   [bug]           Improve error reporting to distinguish between
1645                         accept()/fcntl() and socket()/fcntl() errors.
1646                         [RT #13745]
1647
1648 1844.   [bug]           inet_pton() accepted more that 4 hexadecimal digits
1649                         for each 16 bit piece of the IPv6 address.  The text
1650                         representation of a IPv6 address has been tightened
1651                         to disallow this (draft-ietf-ipv6-addr-arch-v4-02.txt).
1652                         [RT #5662]
1653
1654 1843.   [cleanup]       CINCLUDES takes precedence over CFLAGS.  This helps
1655                         when CFLAGS contains "-I /usr/local/include"
1656                         resulting in old header files being used.
1657
1658 1842.   [port]          cmsg_len() could produce incorrect results on
1659                         some platform. [RT #13744]
1660
1661 1841.   [bug]           "dig +nssearch" now makes a recursive query to
1662                         find the list of nameservers to query. [RT #13694]
1663
1664 1840.   [func]          dnssec-signzone can now randomize signature end times
1665                         (dnssec-signzone -j jitter). [RT #13609]
1666
1667 1839.   [bug]           <isc/hash.h> was not being installed.
1668
1669 1838.   [cleanup]       Don't allow Linux capabilities to be inherited.
1670                         [RT #13707]
1671
1672 1837.   [bug]           Compile time option ISC_FACILITY was not effective
1673                         for 'named -u <user>'.  [RT #13714]
1674
1675 1836.   [cleanup]       Silence compiler warnings in hash_test.c.
1676
1677 1835.   [bug]           Update dnssec-signzone's usage message. [RT #13657]
1678
1679 1834.   [bug]           Bad memset in rdata_test.c. [RT #13658]
1680
1681 1833.   [bug]           Race condition in isc_mutex_lock_profile(). [RT #13660]
1682
1683 1832.   [bug]           named fails to return BADKEY on unknown TSIG algorithm.
1684                         [RT #13620]
1685
1686 1831.   [doc]           Update named-checkzone documentation. [RT#13604]
1687
1688 1830.   [bug]           adb lame cache has sence of test reversed. [RT #13600]
1689
1690 1829.   [bug]           win32: "pid-file none;" broken. [RT #13563]
1691
1692 1828.   [bug]           isc_rwlock_init() failed to properly cleanup if it
1693                         encountered a error. [RT #13549]
1694
1695 1827.   [bug]           host: update usage message for '-a'. [RT #37116]
1696
1697 1826.   [bug]           Missing DESTROYLOCK() in isc_mem_createx() on out
1698                         of memory error. [RT #13537]
1699
1700 1825.   [bug]           Missing UNLOCK() on out of memory error from in
1701                         rbtdb.c:subtractrdataset(). [RT #13519]
1702
1703 1824.   [bug]           Memory leak on dns_zone_setdbtype() failure.
1704                         [RT #13510]
1705
1706 1823.   [bug]           Wrong macro used to check for point to point interface.
1707                         [RT#13418]
1708
1709 1822.   [bug]           check-names test for RT was reversed. [RT #13382]
1710
1711 1820.   [bug]           Gracefully handle acl loops. [RT #13659]
1712
1713 1819.   [bug]           The validator needed to check both the algorithm and
1714                         digest types of the DS to determine if it could be
1715                         used to introduce a secure zone. [RT #13593]
1716
1717 1818.   [bug]           'named-checkconf -z' triggered an INSIST. [RT #13599]
1718
1719 1817.   [func]          Add support for additional zone file formats for
1720                         improving loading performance.  The masterfile-format
1721                         option in named.conf can be used to specify a
1722                         non-default format.  A separate command
1723                         named-compilezone was provided to generate zone files
1724                         in the new format.  Additionally, the -I and -O options
1725                         for dnssec-signzone specify the input and output
1726                         formats.
1727
1728 1816.   [port]          UnixWare: failed to compile lib/isc/unix/net.c.
1729                         [RT #13597]
1730
1731 1815.   [bug]           nsupdate triggered a REQUIRE if the server was set
1732                         without also setting the zone and it encountered
1733                         a CNAME and was using TSIG.  [RT #13086]
1734
1735 1814.   [func]          UNIX domain controls are now supported.
1736
1737 1813.   [func]          Restructured the data locking framework using
1738                         architecture dependent atomic operations (when
1739                         available), improving response performance on
1740                         multi-processor machines significantly.
1741                         x86, x86_64, alpha, powerpc, and mips are currently
1742                         supported.
1743
1744 1812.   [port]          win32: IN6_IS_ADDR_UNSPECIFIED macro is incorrect.
1745                         [RT #13453]
1746
1747 1811.   [func]          Preserve the case of domain names in rdata during
1748                         zone transfers. [RT #13547]
1749
1750 1810.   [bug]           configure, lib/bind/configure make different default
1751                         decisions about whether to do a threaded build.
1752                         [RT #13212]
1753
1754 1809.   [bug]           "make distclean" failed for libbind if the platform
1755                         is not supported.
1756
1757 1808.   [bug]           zone.c:notify_zone() contained a race condition,
1758                         zone->db could change underneath it.  [RT #13511]
1759
1760 1807.   [bug]           When forwarding (forward only) set the active domain
1761                         from the forward zone name. [RT #13526]
1762
1763 1806.   [bug]           The resolver returned the wrong result when a CNAME /
1764                         DNAME was encountered when fetching glue from a
1765                         secure namespace. [RT #13501]
1766
1767 1805.   [bug]           Pending status was not being cleared when DLV was
1768                         active. [RT #13501]
1769
1770 1804.   [bug]           Ensure that if we are queried for glue that it fits
1771                         in the additional section or TC is set to tell the
1772                         client to retry using TCP. [RT #10114]
1773
1774 1803.   [bug]           dnssec-signzone sometimes failed to remove old
1775                         RRSIGs. [RT #13483]
1776
1777 1802.   [bug]           Handle connection resets better. [RT #11280]
1778
1779 1801.   [func]          Report differences between hints and real NS rrset
1780                         and associated address records.
1781
1782 1800.   [bug]           Changes #1719 allowed a INSIST to be triggered.
1783                         [RT #13428]
1784
1785 1799.   [bug]           'rndc flushname' failed to flush negative cache
1786                         entries. [RT #13438]
1787
1788 1798.   [func]          The server syntax has been extended to support a
1789                         range of servers.  [RT #11132]
1790
1791 1797.   [func]          named-checkconf now check acls to verify that they
1792                         only refer to existing acls. [RT #13101]
1793
1794 1796.   [func]          "rndc freeze/thaw" now freezes/thaws all zones.
1795
1796 1795.   [bug]           "rndc dumpdb" was not fully documented.  Minor
1797                         formating issues with "rndc dumpdb -all".  [RT #13396]
1798
1799 1794.   [func]          Named and named-checkzone can now both check for
1800                         non-terminal wildcard records.
1801
1802 1793.   [func]          Extend adjusting TTL warning messages. [RT #13378]
1803
1804 1792.   [func]          New zone option "notify-delay".  Specify a minimum
1805                         delay between sets of NOTIFY messages.
1806
1807 1791.   [bug]           'host -t a' still printed out AAAA and MX records.
1808                         [RT #13230]
1809
1810 1790.   [cleanup]       Move lib/dns/sec/dst up into lib/dns.  This should
1811                         allow parallel make to succeed.
1812
1813 1789.   [bug]           Prerequisite test for tkey and dnssec could fail
1814                         with "configure --with-libtool".
1815
1816 1788.   [bug]           libbind9.la/libbind9.so needs to link against
1817                         libisccfg.la/libisccfg.so.
1818
1819 1787.   [port]          HPUX: both "cc" and "gcc" need -Wl,+vnocompatwarnings.
1820
1821 1786.   [port]          AIX: libt_api needs to be taught to look for
1822                         T_testlist in the main executable (--with-libtool).
1823                         [RT #13239]
1824
1825 1785.   [bug]           libbind9.la/libbind9.so needs to link against
1826                         libisc.la/libisc.so.
1827
1828 1784.   [cleanup]       "libtool -allow-undefined" is the default.
1829                         Leave hooks in configure to allow it to be set
1830                         if needed in the future.
1831
1832 1783.   [cleanup]       We only need one copy of libtool.m4, ltmain.sh in the
1833                         source tree.
1834
1835 1782.   [port]          OSX: --with-libtool + --enable-libbind broke on
1836                         __evOptMonoTime.  [RT #13219]
1837
1838 1781.   [port]          FreeBSD 5.3: set PTHREAD_SCOPE_SYSTEM. [RT #12810]
1839
1840 1780.   [bug]           Update libtool to 1.5.10.
1841
1842 1779.   [port]          OSF 5.1: libtool didn't handle -pthread correctly.
1843
1844 1778.   [port]          HUX 11.11: fix broken IN6ADDR_ANY_INIT and
1845                         IN6ADDR_LOOPBACK_INIT macros.
1846
1847 1777.   [port]          OSF 5.1: fix broken IN6ADDR_ANY_INIT and
1848                         IN6ADDR_LOOPBACK_INIT macros.
1849
1850 1776.   [port]          Solaris 2.9: fix broken IN6ADDR_ANY_INIT and
1851                         IN6ADDR_LOOPBACK_INIT macros.
1852
1853 1775.   [bug]           Only compile getnetent_r.c when threaded. [RT #13205]
1854
1855 1774.   [port]          Aix: Silence compiler warnings / build failures.
1856                         [RT #13154]
1857
1858 1773.   [bug]           Fast retry on host / net unreachable. [RT #13153]
1859
1860 1770.   [bug]           named-checkconf failed to report missing a missing
1861                         file clause for rbt{64} master/hint zones. [RT#13009]
1862
1863 1769.   [port]          win32: change compiler flags /MTd ==> /MDd,
1864                         /MT ==> /MD.
1865
1866 1768.   [bug]           nsecnoexistnodata() could be called with a non-NSEC
1867                         rdataset. [RT #12907]
1868
1869 1767.   [port]          Builds on IPv6 platforms without IPv6 Advanced API
1870                         support for (struct in6_pktinfo) failed.  [RT #13077]
1871
1872 1766.   [bug]           Update the master file timestamp on successful refresh
1873                         as well as the journal's timestamp. [RT# 13062]
1874
1875 1765.   [bug]           configure --with-openssl=auto failed. [RT #12937]
1876
1877 1764.   [bug]           dns_zone_replacedb failed to emit a error message
1878                         if there was no SOA record in the replacement db.
1879                         [RT #13016]
1880
1881 1763.   [func]          Perform sanity checks on NS records which refer to
1882                         'in zone' names. [RT #13002]
1883
1884 1762.   [bug]           isc_interfaceiter_create() could return ISC_R_SUCCESS
1885                         even when it failed. [RT #12995]
1886
1887 1761.   [bug]           'rndc dumpdb' didn't report unassociated entries.
1888                         [RT #12971]
1889
1890 1760.   [bug]           Host / net unreachable was not penalising rtt
1891                         estimates. [RT #12970]
1892
1893 1759.   [bug]           Named failed to startup if the OS supported IPv6
1894                         but had no IPv6 interfaces configured. [RT #12942]
1895
1896 1758.   [func]          Don't send notify messages to self. [RT #12933]
1897
1898 1757.   [func]          host now can turn on memory debugging flags with '-m'.
1899
1900 1756.   [func]          named-checkconf now checks the logging configuration.
1901                         [RT #12352]
1902
1903 1755.   [func]          allow-update is now settable at the options / view
1904                         level. [RT #6636]
1905
1906 1754.   [bug]           We weren't always attempting to query the parent
1907                         server for the DS records at the zone cut.
1908                         [RT #12774]
1909
1910 1753.   [bug]           Don't serve a slave zone which has no NS records.
1911                         [RT #12894]
1912
1913 1752.   [port]          Move isc_app_start() to after ns_os_daemonise()
1914                         as some fork() implementations unblock the signals
1915                         that are blocked by isc_app_start(). [RT #12810]
1916
1917 1751.   [bug]           --enable-getifaddrs failed under linux. [RT #12867]
1918
1919 1750.   [port]          lib/bind/make/rules.in:subdirs was not bash friendly.
1920                         [RT #12864]
1921
1922 1749.   [bug]           'check-names response ignore;' failed to ignore.
1923                         [RT #12866]
1924
1925 1748.   [func]          dig now returns the byte count for axfr/ixfr.
1926
1927 1747.   [bug]           BIND 8 compatibility: named/named-checkconf failed
1928                         to parse "host-statistics-max" in named.conf.
1929
1930 1746.   [func]          Make public the function to read a key file,
1931                         dst_key_read_public(). [RT #12450]
1932
1933 1745.   [bug]           Dig/host/nslookup accept replies from link locals
1934                         regardless of scope if no scope was specified when
1935                         query was sent. [RT #12745]
1936
1937 1744.   [bug]           If tuple2msgname() failed to convert a tuple to
1938                         a name a REQUIRE could be triggered. [RT #12796]
1939
1940 1743.   [bug]           If isc_taskmgr_create() was not able to create the
1941                         requested number of worker threads then destruction
1942                         of the manager would trigger an INSIST() failure.
1943                         [RT #12790]
1944
1945 1742.   [bug]           Deleting all records at a node then adding a
1946                         previously existing record, in a single UPDATE
1947                         transaction, failed to leave / regenerate the
1948                         associated RRSIG records. [RT #12788]
1949
1950 1741.   [bug]           Deleting all records at a node in a secure zone
1951                         using a update-policy grant failed. [RT #12787]
1952
1953 1740.   [bug]           Replace rbt's hash algorithm as it performed badly
1954                         with certain zones. [RT #12729]
1955
1956                         NOTE: a hash context now needs to be established
1957                         via isc_hash_create() if the application was not
1958                         already doing this.
1959
1960 1739.   [bug]           dns_rbt_deletetree() could incorrectly return
1961                         ISC_R_QUOTA.  [RT #12695]
1962
1963 1738.   [bug]           Enable overrun checking by default. [RT #12695]
1964
1965 1737.   [bug]           named failed if more than 16 masters were specified.
1966                         [RT #12627]
1967
1968 1736.   [bug]           dst_key_fromnamedfile() could fail to read a
1969                         public key. [RT #12687]
1970
1971 1735.   [bug]           'dig +sigtrace' could die with a REQUIRE failure.
1972                         [RE #12688]
1973
1974 1734.   [cleanup]       'rndc-confgen -a -t' remove extra '/' in path.
1975                         [RT #12588]
1976
1977 1733.   [bug]           Return non-zero exit status on initial load failure.
1978                         [RT #12658]
1979
1980 1732.   [bug]           'rrset-order name "*"' wasn't being applied to ".".
1981                         [RT #12467]
1982
1983 1731.   [port]          darwin: relax version test in ifconfig.sh.
1984                         [RT #12581]
1985
1986 1730.   [port]          Determine the length type used by the socket API.
1987                         [RT #12581]
1988
1989 1729.   [func]          Improve check-names error messages.
1990
1991 1728.   [doc]           Update check-names documentation.
1992
1993 1727.   [bug]           named-checkzone: check-names support didn't match
1994                         documentation.
1995
1996 1726.   [port]          aix5: add support for aix5.
1997
1998 1725.   [port]          linux: update error message on interaction of threads,
1999                         capabilities and setuid support (named -u). [RT #12541]
2000
2001 1724.   [bug]           Look for DNSKEY records with "dig +sigtrace".
2002                         [RT #12557]
2003
2004 1723.   [cleanup]       Silence compiler warnings from t_tasks.c. [RT #12493]
2005
2006 1722.   [bug]           Don't commit the journal on malformed ixfr streams.
2007                         [RT #12519]
2008
2009 1721.   [bug]           Error message from the journal processing were not
2010                         always identifying the relevant journal. [RT #12519]
2011
2012 1720.   [bug]           'dig +chase' did not terminate on a RFC 2308 Type 1
2013                         negative response. [RT #12506]
2014
2015 1719.   [bug]           named was not correctly caching a RFC 2308 Type 1
2016                         negative response. [RT #12506]
2017
2018 1718.   [bug]           nsupdate was not handling RFC 2308 Type 3 negative
2019                         responses when looking for the zone / master server.
2020                         [RT #12506]
2021
2022 1717.   [port]          solaris: ifconfig.sh did not support Solaris 10.
2023                         "ifconfig.sh down" didn't work for Solaris 9.
2024
2025 1716.   [doc]           named.conf(5) was being installed in the wrong
2026                         location.  [RT# 12441]
2027
2028 1715.   [func]          'dig +trace' now randomly selects the next servers
2029                         to try.  Report if there is a bad delegation.
2030
2031 1714.   [bug]           dig/host/nslookup were only trying the first
2032                         address when a nameserver was specified by name.
2033                         [RT #12286]
2034
2035 1713.   [port]          linux: extend capset failure message to say:
2036                         please ensure that the capset kernel module is
2037                         loaded.  see insmod(8)
2038
2039 1712.   [bug]           Missing FULLCHECK for "trusted-key" in dig.
2040
2041 1711.   [func]          'rndc unfreeze' has been deprecated by 'rndc thaw'.
2042
2043 1710.   [func]          'rndc notify zone [class [view]]' resend the NOTIFY
2044                         messages for the specified zone. [RT #9479]
2045
2046 1709.   [port]          solaris: add SMF support from Sun.
2047
2048 1708.   [cleanup]       Replaced dns_fullname_hash() with dns_name_fullhash()
2049                         for conformance to the name space convention.  Binary
2050                         backward compatibility to the old function name is
2051                         provided. [RT #12376]
2052
2053 1707.   [contrib]       sdb/ldap updated to version 1.0-beta.
2054
2055 1706.   [bug]           'rndc stop' failed to cause zones to be flushed
2056                         sometimes. [RT #12328]
2057
2058 1705.   [func]          Allow the journal's name to be changed via named.conf.
2059
2060 1704.   [port]          lwres needed a snprintf() implementation for
2061                         platforms without snprintf().  Add missing
2062                         "#include <isc/print.h>". [RT #12321]
2063
2064 1703.   [bug]           named would loop sending NOTIFY messages when it
2065                         failed to receive a response. [RT #12322]
2066
2067 1702.   [bug]           also-notify should not be applied to built in zones.
2068                         [RT #12323]
2069
2070 1701.   [doc]           A minimal named.conf man page.
2071
2072 1700.   [func]          nslookup is no longer to be treated as deprecated.
2073                         Remove "deprecated" warning message.  Add man page.
2074
2075 1699.   [bug]           dnssec-signzone can generate "not exact" errors
2076                         when resigning. [RT #12281]
2077
2078 1698.   [doc]           Use reserved IPv6 documentation prefix.
2079
2080 1697.   [bug]           xxx-source{,-v6} was not effective when it
2081                         specified one of listening addresses and a
2082                         different port than the listening port. [RT #12257]
2083
2084 1696.   [bug]           dnssec-signzone failed to clean out nodes that
2085                         consisted of only NSEC and RRSIG records.
2086                         [RT #12154]
2087
2088 1695.   [bug]           DS records when forwarding require special handling.
2089                         [RT #12133]
2090
2091 1694.   [bug]           Report if the builtin views of "_default" / "_bind"
2092                         are defined in named.conf. [RT #12023]
2093
2094 1693.   [bug]           max-journal-size was not effective for master zones
2095                         with ixfr-from-differences set. [RT# 12024]
2096
2097 1692.   [bug]           Don't set -I, -L and -R flags when libcrypto is in
2098                         /usr/lib. [RT #11971]
2099
2100 1691.   [bug]           sdb's attachversion was not complete. [RT #11990]
2101
2102 1690.   [bug]           Delay detaching view from the client until UPDATE
2103                         processing completes when shutting down. [RT #11714]
2104
2105 1689.   [bug]           DNS_NAME_TOREGION() and DNS_NAME_SPLIT() macros
2106                         contained gratuitous semicolons. [RT #11707]
2107
2108 1688.   [bug]           LDFLAGS was not supported.
2109
2110 1687.   [bug]           Race condition in dispatch. [RT #10272]
2111
2112 1686.   [bug]           Named sent a extraneous NOTIFY when it received a
2113                         redundant UPDATE request. [RT #11943]
2114
2115 1685.   [bug]           Change #1679 loop tests weren't quite right.
2116
2117 1684.   [func]          ixfr-from-differences now takes master and slave in
2118                         addition to yes and no at the options and view levels.
2119
2120 1683.   [bug]           dig +sigchase could leak memory. [RT #11445]
2121
2122 1682.   [port]          Update configure test for (long long) printf format.
2123                         [RT #5066]
2124
2125 1681.   [bug]           Only set SO_REUSEADDR when a port is specified in
2126                         isc_socket_bind(). [RT #11742]
2127
2128 1680.   [func]          rndc: the source address can now be specified.
2129
2130 1679.   [bug]           When there was a single nameserver with multiple
2131                         addresses for a zone not all addresses were tried.
2132                         [RT #11706]
2133
2134 1678.   [bug]           RRSIG should use TYPEXXXXX for unknown types.
2135
2136 1677.   [bug]           dig: +aaonly didn't work, +aaflag undocumented.
2137
2138 1676.   [func]          New option "allow-query-cache".  This lets
2139                         allow-query be used to specify the default zone
2140                         access level rather than having to have every
2141                         zone override the global value.  allow-query-cache
2142                         can be set at both the options and view levels.
2143                         If allow-query-cache is not set allow-query applies.
2144
2145 1675.   [bug]           named would sometimes add extra NSEC records to
2146                         the authority section.
2147
2148 1674.   [port]          linux: increase buffer size used to scan
2149                         /proc/net/if_inet6.
2150
2151 1673.   [port]          linux: issue a error messages if IPv6 interface
2152                         scans fails.
2153
2154 1672.   [cleanup]       Tests which only function in a threaded build
2155                         now return R:THREADONLY (rather than R:UNTESTED)
2156                         in a non-threaded build.
2157
2158 1671.   [contrib]       queryperf: add NAPTR to the list of known types.
2159
2160 1670.   [func]          Log UPDATE requests to slave zones without an acl as
2161                         "disabled" at debug level 3. [RT# 11657]
2162
2163 1668.   [bug]           DIG_SIGCHASE was making bin/dig/host dump core.
2164
2165 1667.   [port]          linux: not all versions have IF_NAMESIZE.
2166
2167 1666.   [bug]           The optional port on hostnames in dual-stack-servers
2168                         was being ignored.
2169
2170 1665.   [func]          rndc now allows addresses to be set in the
2171                         server clauses.
2172
2173 1664.   [bug]           nsupdate needed KEY for SIG(0), not DNSKEY.
2174
2175 1663.   [func]          Look for OpenSSL by default.
2176
2177 1662.   [bug]           Change #1658 failed to change one use of 'type'
2178                         to 'keytype'.
2179
2180 1661.   [bug]           Restore dns_name_concatenate() call in
2181                         adb.c:set_target().  [RT #11582]
2182
2183 1660.   [bug]           win32: connection_reset_fix() was being called
2184                         unconditionally.  [RT #11595]
2185
2186 1659.   [cleanup]       Cleanup some messages that were referring to KEY vs
2187                         DNSKEY, NXT vs NSEC and SIG vs RRSIG.
2188
2189 1658.   [func]          Update dnssec-keygen to default to KEY for HMAC-MD5
2190                         and DH.  Tighten which options apply to KEY and
2191                         DNSKEY records.
2192
2193 1657.   [doc]           ARM: document query log output.
2194
2195 1656.   [doc]           Update DNSSEC description in ARM to cover DS, NSEC
2196                         DNSKEY and RRSIG.  [RT #11542]
2197
2198 1655.   [bug]           Logging multiple versions w/o a size was broken.
2199                         [RT #11446]
2200
2201 1654.   [bug]           isc_result_totext() contained array bounds read
2202                         error.
2203
2204 1653.   [func]          Add key type checking to dst_key_fromfilename(),
2205                         DST_TYPE_KEY should be used to read TSIG, TKEY and
2206                         SIG(0) keys.
2207
2208 1652.   [bug]           TKEY still uses KEY.
2209
2210 1651.   [bug]           dig: process multiple dash options.
2211
2212 1650.   [bug]           dig, nslookup: flush standard out after each command.
2213
2214 1649.   [bug]           Silence "unexpected non-minimal diff" message.
2215                         [RT #11206]
2216
2217 1648.   [func]          Update dnssec-lookaside named.conf syntax to support
2218                         multiple dnssec-lookaside namespaces (not yet
2219                         implemented).
2220
2221 1647.   [bug]           It was possible trigger a INSIST when chasing a DS
2222                         record that required walking back over a empty node.
2223                         [RT #11445]
2224
2225 1646.   [bug]           win32: logging file versions didn't work with
2226                         non-UNC filenames.  [RT#11486]
2227
2228 1645.   [bug]           named could trigger a REQUIRE failure if multiple
2229                         masters with keys are specified.
2230
2231 1644.   [bug]           Update the journal modification time after a
2232                         successful refresh query. [RT #11436]
2233
2234 1643.   [bug]           dns_db_closeversion() could leak memory / node
2235                         references. [RT #11163]
2236
2237 1642.   [port]          Support OpenSSL implementations which don't have
2238                         DSA support. [RT #11360]
2239
2240 1641.   [bug]           Update the check-names description in ARM. [RT #11389]
2241
2242 1640.   [bug]           win32: isc_socket_cancel(ISC_SOCKCANCEL_ACCEPT) was
2243                         incorrectly closing the socket.  [RT #11291]
2244
2245 1639.   [func]          Initial dlv system test.
2246
2247 1638.   [bug]           "ixfr-from-differences" could generate a REQUIRE
2248                         failure if the journal open failed. [RT #11347]
2249
2250 1637.   [bug]           Node reference leak on error in addnoqname().
2251
2252 1636.   [bug]           The dump done callback could get ISC_R_SUCCESS even if
2253                         a error had occurred.  The database version no longer
2254                         matched the version of the database that was dumped.
2255
2256 1635.   [bug]           Memory leak on error in query_addds().
2257
2258 1634.   [bug]           named didn't supply a useful error message when it
2259                         detected duplicate views.  [RT #11208]
2260
2261 1633.   [bug]           named should return NOTIMP to update requests to a
2262                         slaves without a allow-update-forwarding acl specified.
2263                         [RT #11331]
2264
2265 1632.   [bug]           nsupdate failed to send prerequisite only UPDATE
2266                         messages. [RT #11288]
2267
2268 1631.   [bug]           dns_journal_compact() could sometimes corrupt the
2269                         journal. [RT #11124]
2270
2271 1630.   [contrib]       queryperf: add support for IPv6 transport.
2272
2273 1629.   [func]          dig now supports IPv6 scoped addresses with the
2274                         extended format in the local-server part. [RT #8753]
2275
2276 1628.   [bug]           Typo in Compaq Trucluster support. [RT# 11264]
2277
2278 1627.   [bug]           win32: sockets were not being closed when the
2279                         last external reference was removed. [RT# 11179]
2280
2281 1626.   [bug]           --enable-getifaddrs was broken. [RT#11259]
2282
2283 1625.   [bug]           named failed to load/transfer RFC2535 signed zones
2284                         which contained CNAMES. [RT# 11237]
2285
2286 1624.   [bug]           zonemgr_putio() call should be locked. [RT# 11163]
2287
2288 1623.   [bug]           A serial number of zero was being displayed in the
2289                         "sending notifies" log message when also-notify was
2290                         used. [RT #11177]
2291
2292 1622.   [func]          probe the system to see if IPV6_(RECV)PKTINFO is
2293                         available, and suppress wildcard binding if not.
2294
2295 1621.   [bug]           match-destinations did not work for IPv6 TCP queries.
2296                         [RT# 11156]
2297
2298 1620.   [func]          When loading a zone report if it is signed. [RT #11149]
2299
2300 1619.   [bug]           Missing ISC_LIST_UNLINK in end_reserved_dispatches().
2301                         [RT# 11118]
2302
2303 1618.   [bug]           Fencepost errors in dns_name_ishostname() and
2304                         dns_name_ismailbox() could trigger a INSIST().
2305
2306 1617.   [port]          win32: VC++ 6.0 support.
2307
2308 1616.   [compat]        Ensure that named's version is visible in the core
2309                         dump. [RT #11127]
2310
2311 1615.   [port]          Define ISC_SOCKADDR_LEN_T based on _BSD_SOCKLEN_T_ if
2312                         it is defined.
2313
2314 1614.   [port]          win32: silence resource limit messages. [RT# 11101]
2315
2316 1613.   [bug]           Builds would fail on machines w/o a if_nametoindex().
2317                         Missing #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX/#endif.
2318                         [RT #11119]
2319
2320 1612.   [bug]           check-names at the option/view level could trigger
2321                         an INSIST. [RT# 11116]
2322
2323 1611.   [bug]           solaris: IPv6 interface scanning failed to cope with
2324                         no active IPv6 interfaces.
2325
2326 1610.   [bug]           On dual stack machines "dig -b" failed to set the
2327                         address type to be looked up with "@server".
2328                         [RT #11069]
2329
2330 1609.   [func]          dig now has support to chase DNSSEC signature chains.
2331                         Requires -DDIG_SIGCHASE=1 to be set in STD_CDEFINES.
2332
2333                         DNSSEC validation code in dig coded by Olivier Courtay
2334                         (olivier.courtay@irisa.fr) for the IDsA project
2335                         (http://idsa.irisa.fr).
2336
2337 1608.   [func]          dig and host now accept -4/-6 to select IP transport
2338                         to use when making queries.
2339
2340 1607.   [bug]           dig, host and nslookup were still using random()
2341                         to generate query ids. [RT# 11013]
2342
2343 1606.   [bug]           DLV insecurity proof was failing.
2344
2345 1605.   [func]          New dns_db_find() option DNS_DBFIND_COVERINGNSEC.
2346
2347 1604.   [bug]           A xfrout_ctx_create() failure would result in
2348                         xfrout_ctx_destroy() being called with a
2349                         partially initialized structure.
2350
2351 1603.   [bug]           nsupdate: set interactive based on isatty().
2352                         [RT# 10929]
2353
2354 1602.   [bug]           Logging to a file failed unless a size was specified.
2355                         [RT# 10925]
2356
2357 1601.   [bug]           Silence spurious warning 'both "recursion no;" and
2358                         "allow-recursion" active' warning from view "_bind".
2359                         [RT# 10920]
2360
2361 1600.   [bug]           Duplicate zone pre-load checks were not case
2362                         insensitive.
2363
2364 1599.   [bug]           Fix memory leak on error path when checking named.conf.
2365
2366 1598.   [func]          Specify that certain parts of the namespace must
2367                         be secure (dnssec-must-be-secure).
2368
2369 1596.   [func]          Accept 'notify-source' style syntax for query-source.
2370
2371 1595.   [func]          New notify type 'master-only'.  Enable notify for
2372                         master zones only.
2373
2374 1594.   [bug]           'rndc dumpdb' could prevent named from answering
2375                         queries while the dump was in progress.  [RT #10565]
2376
2377 1593.   [bug]           rndc should return "unknown command" to unknown
2378                         commands. [RT# 10642]
2379
2380 1592.   [bug]           configure_view() could leak a dispatch. [RT# 10675]
2381
2382 1591.   [bug]           libbind: updated to BIND 8.4.5.
2383
2384 1590.   [port]          netbsd: update thread support.
2385
2386 1589.   [func]          DNSSEC lookaside validation.
2387
2388 1588.   [bug]           win32: TCP sockets could become blocked. [RT #10115]
2389
2390 1587.   [bug]           dns_message_settsigkey() failed to clear existing key.
2391                         [RT #10590]
2392
2393 1586.   [func]          "check-names" is now implemented.
2394
2395 1585.   [placeholder]
2396
2397 1584.   [bug]           "make test" failed with a read only source tree.
2398                         [RT #10461]
2399
2400 1583.   [bug]           Records add via UPDATE failed to get the correct trust
2401                         level. [RT #10452]
2402
2403 1582.   [bug]           rrset-order failed to work on RRsets with more
2404                         than 32 elements. [RT #10381]
2405
2406 1581.   [func]          Disable DNSSEC support by default.  To enable
2407                         DNSSEC specify "dnssec-enable yes;" in named.conf.
2408
2409 1580.   [bug]           Zone destruction on final detach takes a long time.
2410                         [RT #3746]
2411
2412 1579.   [bug]           Multiple task managers could not be created.
2413
2414 1578.   [bug]           Don't use CLASS E IPv4 addresses when resolving.
2415                         [RT #10346]
2416
2417 1577.   [bug]           Use isc_uint32_t in ultrasparc optimizer bug
2418                         workaround code. [RT #10331]
2419
2420 1576.   [bug]           Race condition in dns_dispatch_addresponse().
2421                         [RT# 10272]
2422
2423 1575.   [func]          Log TSIG name on TSIG verify failure. [RT #4404]
2424
2425 1574.   [bug]           Don't attempt to open the controls socket(s) when
2426                         running tests. [RT #9091]
2427
2428 1573.   [port]          linux: update to libtool 1.5.2 so that
2429                         "make install DESTDIR=/xx" works with
2430                         "configure --with-libtool".  [RT #9941]
2431
2432 1572.   [bug]           nsupdate: sign the soa query to find the enclosing
2433                         zone if the server is specified. [RT #10148]
2434
2435 1571.   [bug]           rbt:hash_node() could fail leaving the hash table
2436                         in an inconsistent state.  [RT #10208]
2437
2438 1570.   [bug]           nsupdate failed to handle classes other than IN.
2439                         New keyword 'class' which sets the default class.
2440                         [RT #10202]
2441
2442 1569.   [func]          nsupdate new command 'answer' which displays the
2443                         complete answer message to the last update.
2444
2445 1568.   [bug]           nsupdate now reports that the update failed in
2446                         interactive mode. [RT# 10236]
2447
2448 1567.   [maint]         B.ROOT-SERVERS.NET is now 192.228.79.201.
2449
2450 1566.   [port]          Support for the cmsg framework on Solaris and HP/UX.
2451                         This also solved the problem that match-destinations
2452                         for IPv6 addresses did not work on these systems.
2453                         [RT #10221]
2454
2455 1565.   [bug]           CD flag should be copied to outgoing queries unless
2456                         the query is under a secure entry point in which case
2457                         CD should be set.
2458
2459 1564.   [func]          Attempt to provide a fallback entropy source to be
2460                         used if named is running chrooted and named is unable
2461                         to open entropy source within the chroot area.
2462                         [RT #10133]
2463
2464 1563.   [bug]           Gracefully fail when unable to obtain neither an IPv4
2465                         nor an IPv6 dispatch. [RT #10230]
2466
2467 1562.   [bug]           isc_socket_create() and isc_socket_accept() could
2468                         leak memory under error conditions. [RT #10230]
2469
2470 1561.   [bug]           It was possible to release the same name twice if
2471                         named ran out of memory. [RT #10197]
2472
2473 1560.   [port]          FreeBSD: work around FreeBSD 5.2 mapping EAI_NODATA
2474                         and EAI_NONAME to the same value.
2475
2476 1559.   [port]          named should ignore SIGFSZ.
2477
2478 1558.   [func]          New DNSSEC 'disable-algorithms'.  Support entry into
2479                         child zones for which we don't have a supported
2480                         algorithm.  Such child zones are treated as unsigned.
2481
2482 1557.   [func]          Implement missing DNSSEC tests for
2483                         * NOQNAME proof with wildcard answers.
2484                         * NOWILDARD proof with NXDOMAIN.
2485                         Cache and return NOQNAME with wildcard answers.
2486
2487 1556.   [bug]           nsupdate now treats all names as fully qualified.
2488                         [RT #6427]
2489
2490 1555.   [func]          'rrset-order cyclic' no longer has a random starting
2491                         point per query. [RT #7572]
2492
2493 1554.   [bug]           dig, host, nslookup failed when no nameservers
2494                         were specified in /etc/resolv.conf. [RT #8232]
2495
2496 1553.   [bug]           The windows socket code could stop accepting
2497                         connections. [RT#10115]
2498
2499 1552.   [bug]           Accept NOTIFY requests from mapped masters if
2500                         matched-mapped is set. [RT #10049]
2501
2502 1551.   [port]          Open "/dev/null" before calling chroot().
2503
2504 1550.   [port]          Call tzset(), if available, before calling chroot().
2505
2506 1549.   [func]          named-checkzone can now write out the zone contents
2507                         in a easily parsable format (-D and -o).
2508
2509 1548.   [bug]           When parsing APL records it was possible to silently
2510                         accept out of range ADDRESSFAMILY values. [RT# 9979]
2511
2512 1547.   [bug]           Named wasted memory recording duplicate lame zone
2513                         entries. [RT #9341]
2514
2515 1546.   [bug]           We were rejecting valid secure CNAME to negative
2516                         answers.
2517
2518 1545.   [bug]           It was possible to leak memory if named was unable to
2519                         bind to the specified transfer source and TSIG was
2520                         being used. [RT #10120]
2521
2522 1544.   [bug]           Named would logged a single entry to a file despite it
2523                         being over the specified size limit.
2524
2525 1543.   [bug]           Logging using "versions unlimited" did not work.
2526
2527 1542.   [placeholder]
2528
2529 1541.   [func]          NSEC now uses new bitmap format.
2530
2531 1540.   [bug]           "rndc reload <dynamiczone>" was silently accepted.
2532                         [RT #8934]
2533
2534 1539.   [bug]           Open UDP sockets for notify-source and transfer-source
2535                         that use reserved ports at startup. [RT #9475]
2536
2537 1538.   [placeholder]   rt9997
2538
2539 1537.   [func]          New option "querylog".  If set specify whether query
2540                         logging is to be enabled or disabled at startup.
2541
2542 1536.   [bug]           Windows socket code failed to log a error description
2543                         when returning ISC_R_UNEXPECTED. [RT #9998]
2544
2545 1535.   [placeholder]
2546
2547 1534.   [bug]           Race condition when priming cache. [RT# 9940]
2548
2549 1533.   [func]          Warn if both "recursion no;" and "allow-recursion"
2550                         are active. [RT# 4389]
2551
2552 1532.   [port]          netbsd: the configure test for <sys/sysctl.h>
2553                         requires <sys/param.h>.
2554
2555 1531.   [port]          AIX more libtool fixes.
2556
2557 1530.   [bug]           It was possible to trigger a INSIST() failure if a
2558                         slave master file was removed at just the correct
2559                         moment. [RT #9462]
2560
2561 1529.   [bug]           "notify explicit;" failed to log that NOTIFY messages
2562                         were being sent for the zone. [RT# 9442]
2563
2564 1528.   [cleanup]       Simplify some dns_name_ functions based on the
2565                         deprecation of bitstring labels.
2566
2567 1527.   [cleanup]       Reduce the number of gettimeofday() calls without
2568                         losing necessary timer granularity.
2569
2570 1526.   [func]          Implemented "additional section caching (or acache)",
2571                         an internal cache framework for additional section
2572                         content to improve response performance.  Several
2573                         configuration options were provided to control the
2574                         behavior.
2575
2576 1525.   [bug]           dns_cache_create() could trigger a REQUIRE
2577                         failure in isc_mem_put() during error cleanup.
2578                         [RT# 9360]
2579
2580 1524.   [port]          AIX needs to be able to resolve all symbols when
2581                         creating shared libraries (--with-libtool).
2582
2583 1523.   [bug]           Fix race condition in rbtdb. [RT# 9189]
2584
2585 1522.   [bug]           dns_db_findnode() relax the requirements on 'name'.
2586                         [RT# 9286]
2587
2588 1521.   [bug]           dns_view_createresolver() failed to check the
2589                         result from isc_mem_create(). [RT# 9294]
2590
2591 1520.   [protocol]      Add SSHFP (SSH Finger Print) type.
2592
2593 1519.   [bug]           dnssec-signzone:nsec_setbit() computed the wrong
2594                         length of the new bitmap.
2595
2596 1518.   [bug]           dns_nsec_buildrdata(), and hence dns_nsec_build(),
2597                         contained a off-by-one error when working out the
2598                         number of octets in the bitmap.
2599
2600 1517.   [port]          Support for IPv6 interface scanning on HP/UX and
2601                         TrueUNIX 5.1.
2602
2603 1516.   [func]          Roll the DNSSEC types to RRSIG, NSEC and DNSKEY.
2604
2605 1515.   [func]          Allow transfer source to be set in a server statement.
2606                         [RT #6496]
2607
2608 1514.   [bug]           named: isc_hash_destroy() was being called too early.
2609                         [RT #9160]
2610
2611 1513.   [doc]           Add "US" to root-delegation-only exclude list.
2612
2613 1512.   [bug]           Extend the delegation-only logging to return query
2614                         type, class and responding nameserver.
2615
2616 1511.   [bug]           delegation-only was generating false positives
2617                         on negative answers from sub-zones.
2618
2619 1510.   [func]          New view option "root-delegation-only".  Apply
2620                         delegation-only check to all TLDs and root.
2621                         Note there are some TLDs that are NOT delegation
2622                         only (e.g. DE, LV, US and MUSEUM) these can be excluded
2623                         from the checks by using exclude.
2624
2625                         root-delegation-only exclude {
2626                                 "DE"; "LV"; "US"; "MUSEUM";
2627                         };
2628
2629 1509.   [bug]           Hint zones should accept delegation-only.  Forward
2630                         zone should not accept delegation-only.
2631
2632 1508.   [bug]           Don't apply delegation-only checks to answers from
2633                         forwarders.
2634
2635 1507.   [bug]           Handle BIND 8 style returns to NS queries to parents
2636                         when making delegation-only checks.
2637
2638 1506.   [bug]           Wrong return type for dns_view_isdelegationonly().
2639
2640 1505.   [bug]           Uninitialized rdataset in sdb. [RT #8750]
2641
2642 1504.   [func]          New zone type "delegation-only".
2643
2644 1503.   [port]          win32: install libeay32.dll outside of system32.
2645
2646 1502.   [bug]           nsupdate: adjust timeouts for UPDATE requests over TCP.
2647
2648 1501.   [func]          Allow TCP queue length to be specified via
2649                         named.conf, tcp-listen-queue.
2650
2651 1500.   [bug]           host failed to lookup MX records.  Also look up
2652                         AAAA records.
2653
2654 1499.   [bug]           isc_random need to be seeded better if arc4random()
2655                         is not used.
2656
2657 1498.   [port]          bsdos: 5.x support.
2658
2659 1497.   [placeholder]
2660
2661 1496.   [port]          test for pthread_attr_setstacksize().
2662
2663 1495.   [cleanup]       Replace hash functions with universal hash.
2664
2665 1494.   [security]      Turn on RSA BLINDING as a precaution.
2666
2667 1493.   [placeholder]
2668
2669 1492.   [cleanup]       Preserve rwlock quota context when upgrading /
2670                         downgrading. [RT #5599]
2671
2672 1491.   [bug]           dns_master_dump*() would produce extraneous $ORIGIN
2673                         lines. [RT #6206]
2674
2675 1490.   [bug]           Accept reading state as well as working state in
2676                         ns_client_next(). [RT #6813]
2677
2678 1489.   [compat]        Treat 'allow-update' on slave zones as a warning.
2679                         [RT #3469]
2680
2681 1488.   [bug]           Don't override trust levels for glue addresses.
2682                         [RT #5764]
2683
2684 1487.   [bug]           A REQUIRE() failure could be triggered if a zone was
2685                         queued for transfer and the zone was then removed.
2686                         [RT #6189]
2687
2688 1486.   [bug]           isc_print_snprintf() '%%' consumed one too many format
2689                         characters. [RT# 8230]
2690
2691 1485.   [bug]           gen failed to handle high type values. [RT #6225]
2692
2693 1484.   [bug]           The number of records reported after a AXFR was wrong.
2694                         [RT #6229]
2695
2696 1483.   [bug]           dig axfr failed if the message id in the answer failed
2697                         to match that in the request.  Only the id in the first
2698                         message is required to match. [RT #8138]
2699
2700 1482.   [bug]           named could fail to start if the kernel supports
2701                         IPv6 but no interfaces are configured.  Similarly
2702                         for IPv4. [RT #6229]
2703
2704 1481.   [bug]           Refresh and stub queries failed to use masters keys
2705                         if specified. [RT #7391]
2706
2707 1480.   [bug]           Provide replay protection for rndc commands.  Full
2708                         replay protection requires both rndc and named to
2709                         be updated.  Partial replay protection (limited
2710                         exposure after restart) is provided if just named
2711                         is updated.
2712
2713 1479.   [bug]           cfg_create_tuple() failed to handle out of
2714                         memory cleanup.  parse_list() would leak memory
2715                         on syntax errors.
2716
2717 1478.   [port]          ifconfig.sh didn't account for other virtual
2718                         interfaces.  It now takes a optional argument
2719                         to specify the first interface number. [RT #3907]
2720
2721 1477.   [bug]           memory leak using stub zones and TSIG.
2722
2723 1476.   [placeholder]
2724
2725 1475.   [port]          Probe for old sprintf().
2726
2727 1474.   [port]          Provide strtoul() and memmove() for platforms
2728                         without them.
2729
2730 1473.   [bug]           create_map() and create_string() failed to handle out
2731                         of memory cleanup.  [RT #6813]
2732
2733 1472.   [contrib]       idnkit-1.0 from JPNIC, replaces mdnkit.
2734
2735 1471.   [bug]           libbind: updated to BIND 8.4.0.
2736
2737 1470.   [bug]           Incorrect length passed to snprintf. [RT #5966]
2738
2739 1469.   [func]          Log end of outgoing zone transfer at same level
2740                         as the start of transfer is logged. [RT #4441]
2741
2742 1468.   [func]          Internal zones are no longer counted for
2743                         'rndc status'.  [RT #4706]
2744
2745 1467.   [func]          $GENERATES now supports optional class and ttl.
2746
2747 1466.   [bug]           lwresd configuration errors resulted in memory
2748                         and lock leaks.  [RT #5228]
2749
2750 1465.   [bug]           isc_base64_decodestring() and isc_base64_tobuffer()
2751                         failed to check that trailing bits were zero allowing
2752                         some invalid base64 strings to be accepted.  [RT #5397]
2753
2754 1464.   [bug]           Preserve "out of zone" data for outgoing zone
2755                         transfers. [RT #5192]
2756
2757 1463.   [bug]           dns_rdata_from{wire,struct}() failed to catch bad
2758                         NXT bit maps. [RT #5577]
2759
2760 1462.   [bug]           parse_sizeval() failed to check the token type.
2761                         [RT #5586]
2762
2763 1461.   [bug]           Remove deadlock from rbtdb code. [RT #5599]
2764
2765 1460.   [bug]           inet_pton() failed to reject certain malformed
2766                         IPv6 literals.
2767
2768 1459.   [placeholder]
2769
2770 1458.   [cleanup]       sprintf() -> snprintf().
2771
2772 1457.   [port]          Provide strlcat() and strlcpy() for platforms without
2773                         them.
2774
2775 1456.   [contrib]       gen-data-queryperf.py from Stephane Bortzmeyer.
2776
2777 1455.   [bug]           <netaddr> missing from server grammar in
2778                         doc/misc/options. [RT #5616]
2779
2780 1454.   [port]          Use getifaddrs() if available for interface scanning.
2781                         --disable-getifaddrs to override.  Glibc currently
2782                         has a getifaddrs() that does not support IPv6.
2783                         Use --enable-getifaddrs=glibc to force the use of
2784                         this version under linux machines.
2785
2786 1453.   [doc]           ARM: $GENERATE example wasn't accurate. [RT #5298]
2787
2788 1452.   [placeholder]
2789
2790 1451.   [bug]           rndc-confgen didn't exit with a error code for all
2791                         failures. [RT #5209]
2792
2793 1450.   [bug]           Fetching expired glue failed under certain
2794                         circumstances.  [RT #5124]
2795
2796 1449.   [bug]           query_addbestns() didn't handle running out of memory
2797                         gracefully.
2798
2799 1448.   [bug]           Handle empty wildcards labels.
2800
2801 1447.   [bug]           We were casting (unsigned int) to and from (void *).
2802                         rdataset->private4 is now rdataset->privateuint4
2803                         to reflect a type change.
2804
2805 1446.   [func]          Implemented undocumented alternate transfer sources
2806                         from BIND 8.  See use-alt-transfer-source,
2807                         alt-transfer-source and alt-transfer-source-v6.
2808
2809                         SECURITY: use-alt-transfer-source is ENABLED unless
2810                         you are using views.  This may cause a security risk
2811                         resulting in accidental disclosure of wrong zone
2812                         content if the master supplying different source
2813                         content based on IP address.  If you are not certain
2814                         ISC recommends setting use-alt-transfer-source no;
2815
2816 1445.   [bug]           DNS_ADBFIND_STARTATROOT broke stub zones.  This has
2817                         been replaced with DNS_ADBFIND_STARTATZONE which
2818                         causes the search to start using the closest zone.
2819
2820 1444.   [func]          dns_view_findzonecut2() allows you to specify if the
2821                         cache should be searched for zone cuts.
2822
2823 1443.   [func]          Masters lists can now be specified and referenced
2824                         in zone masters clauses and other masters lists.
2825
2826 1442.   [func]          New functions for manipulating port lists:
2827                         dns_portlist_create(), dns_portlist_add(),
2828                         dns_portlist_remove(), dns_portlist_match(),
2829                         dns_portlist_attach() and dns_portlist_detach().
2830
2831 1441.   [func]          It is now possible to tell dig to bind to a specific
2832                         source port.
2833
2834 1440.   [func]          It is now possible to tell named to avoid using
2835                         certain source ports (avoid-v4-udp-ports,
2836                         avoid-v6-udp-ports).
2837
2838 1439.   [bug]           Named could return NOERROR with certain NOTIFY
2839                         failures.  Return NOTAUTH if the NOTIFY zone is
2840                         not being served.
2841
2842 1438.   [func]          Log TSIG (if any) when logging NOTIFY requests.
2843
2844 1437.   [bug]           Leave space for stdio to work in. [RT #5033]
2845
2846 1436.   [func]          dns_zonemgr_resumexfrs() can be used to restart
2847                         stalled transfers.
2848
2849 1435.   [bug]           zmgr_resume_xfrs() was being called read locked
2850                         rather than write locked.  zmgr_resume_xfrs()
2851                         was not being called if the zone was being
2852                         shutdown.
2853
2854 1434.   [bug]           "rndc reconfig" failed to initiate the initial
2855                         zone transfer of new slave zones.
2856
2857 1433.   [bug]           named could trigger a REQUIRE failure if it could
2858                         not get a file descriptor when attempting to write
2859                         a master file. [RT #4347]
2860
2861 1432.   [func]          The advertised EDNS UDP buffer size can now be set
2862                         via named.conf (edns-udp-size).
2863
2864 1431.   [bug]           isc_print_snprintf() "%s" with precision could walk off
2865                         end of argument. [RT #5191]
2866
2867 1430.   [port]          linux: IPv6 interface scanning support.
2868
2869 1429.   [bug]           Prevent the cache getting locked to old servers.
2870
2871 1428.   [placeholder]
2872
2873 1427.   [bug]           Race condition in adb with threaded build.
2874
2875 1426.   [placeholder]
2876
2877 1425.   [port]          linux/libbind: define __USE_MISC when testing *_r()
2878                         function prototypes in netdb.h.  [RT #4921]
2879
2880 1424.   [bug]           EDNS version not being correctly printed.
2881
2882 1423.   [contrib]       queryperf: added A6 and SRV.
2883
2884 1422.   [func]          Log name/type/class when denying a query.  [RT #4663]
2885
2886 1421.   [func]          Differentiate updates that don't succeed due to
2887                         prerequisites (unsuccessful) vs other reasons
2888                         (failed).
2889
2890 1420.   [port]          solaris: work around gcc optimizer bug.
2891
2892 1419.   [port]          openbsd: use /dev/arandom. [RT #4950]
2893
2894 1418.   [bug]           'rndc reconfig' did not cause new slaves to load.
2895
2896 1417.   [func]          ID.SERVER/CHAOS is now a built in zone.
2897                         See "server-id" for how to configure.
2898
2899 1416.   [bug]           Empty node should return NOERROR NODATA, not NXDOMAIN.
2900                         [RT #4715]
2901
2902 1415.   [func]          DS TTL now derived from NS ttl.  NXT TTL now derived
2903                         from SOA MINIMUM.
2904
2905 1414.   [func]          Support for KSK flag.
2906
2907 1413.   [func]          Explicitly request the (re-)generation of DS records
2908                         from keysets (dnssec-signzone -g).
2909
2910 1412.   [func]          You can now specify servers to be tried if a nameserver
2911                         has IPv6 address and you only support IPv4 or the
2912                         reverse. See dual-stack-servers.
2913
2914 1411.   [bug]           empty nodes should stop wildcard matches. [RT #4802]
2915
2916 1410.   [func]          Handle records that live in the parent zone, e.g. DS.
2917
2918 1409.   [bug]           DS should have attribute DNS_RDATATYPEATTR_DNSSEC.
2919
2920 1408.   [bug]           "make distclean" was not complete. [RT #4700]
2921
2922 1407.   [bug]           lfsr incorrectly implements the shift register.
2923                         [RT #4617]
2924
2925 1406.   [bug]           dispatch initializes one of the LFSR's with a incorrect
2926                         polynomial.  [RT #4617]
2927
2928 1405.   [func]          Use arc4random() if available.
2929
2930 1404.   [bug]           libbind: ns_name_ntol() could overwrite a zero length
2931                         buffer.
2932
2933 1403.   [func]          dnssec-signzone, dnssec-keygen, dnssec-makekeyset
2934                         dnssec-signkey now report their version in the
2935                         usage message.
2936
2937 1402.   [cleanup]       A6 has been moved to experimental and is no longer
2938                         fully supported.
2939
2940 1401.   [bug]           adb wasn't clearing state when the timer expired.
2941
2942 1400.   [bug]           Block the addition of wildcard NS records by IXFR
2943                         or UPDATE. [RT #3502]
2944
2945 1399.   [bug]           Use serial number arithmetic when testing SIG
2946                         timestamps. [RT #4268]
2947
2948 1398.   [doc]           ARM: notify-also should have been also-notify.
2949                         [RT #4345]
2950
2951 1397.   [maint]         J.ROOT-SERVERS.NET is now 192.58.128.30.
2952
2953 1396.   [func]          dnssec-signzone: adjust the default signing time by
2954                         1 hour to allow for clock skew.
2955
2956 1395.   [port]          OpenSSL 0.9.7 defines CRYPTO_LOCK_ENGINE but doesn't
2957                         have a working implementation.  [RT #4079]
2958
2959 1394.   [func]          It is now possible to check if a particular element is
2960                         in a acl.  Remove duplicate entries from the localnets
2961                         acl.
2962
2963 1393.   [port]          Bind to individual IPv6 interfaces if IPV6_IPV6ONLY
2964                         is not available in the kernel to prevent accidently
2965                         listening on IPv4 interfaces.
2966
2967 1392.   [bug]           named-checkzone: update usage.
2968
2969 1391.   [func]          Add support for IPv6 scoped addresses in named.
2970
2971 1390.   [func]          host now supports ixfr.
2972
2973 1389.   [bug]           named could fail to rotate long log files.  [RT #3666]
2974
2975 1388.   [port]          irix: check for sys/sysctl.h and NET_RT_IFLIST before
2976                         defining HAVE_IFLIST_SYSCTL. [RT #3770]
2977
2978 1387.   [bug]           named could crash due to an access to invalid memory
2979                         space (which caused an assertion failure) in
2980                         incremental cleaning.  [RT #3588]
2981
2982 1386.   [bug]           named-checkzone -z stopped on errors in a zone.
2983                         [RT #3653]
2984
2985 1385.   [bug]           Setting serial-query-rate to 10 would trigger a
2986                         REQUIRE failure.
2987
2988 1384.   [bug]           host was incompatible with BIND 8 in its exit code and
2989                         in the output with the -l option.  [RT #3536]
2990
2991 1383.   [func]          Track the serial number in a IXFR response and log if
2992                         a mismatch occurs.  This is a more specific error than
2993                         "not exact". [RT #3445]
2994
2995 1382.   [bug]           make install failed with --enable-libbind. [RT #3656]
2996
2997 1381.   [bug]           named failed to correctly process answers that
2998                         contained DNAME records where the resulting CNAME
2999                         resulted in a negative answer.
3000
3001 1380.   [func]          'rndc recursing' dump recursing queries to
3002                         'recursing-file = "named.recursing";'.
3003
3004 1379.   [func]          'rndc status' now reports tcp and recursion quota
3005                         states.
3006
3007 1378.   [func]          Improved positive feedback for 'rndc {reload|refresh}.
3008
3009 1377.   [func]          dns_zone_load{new}() now reports if the zone was
3010                         loaded, queued for loading to up to date.
3011
3012 1376.   [func]          New function dns_zone_logc() to log to specified
3013                         category.
3014
3015 1375.   [func]          'rndc dumpdb' now dumps the adb cache along with the
3016                         data cache.
3017
3018 1374.   [func]          dns_adb_dump() now logs the lame zones associated
3019                         with each server.
3020
3021 1373.   [bug]           Recovery from expired glue failed under certain
3022                         circumstances.
3023
3024 1372.   [bug]           named crashes with an assertion failure on exit when
3025                         sharing the same port for listening and querying, and
3026                         changing listening addresses several times. [RT# 3509]
3027
3028 1371.   [bug]           notify-source-v6, transfer-source-v6 and
3029                         query-source-v6 with explicit addresses and using the
3030                         same ports as named was listening on could interfere
3031                         with named's ability to answer queries sent to those
3032                         addresses.
3033
3034 1370.   [bug]           dig '+[no]recurse' was incorrectly documented.
3035
3036 1369.   [bug]           Adding an NS record as the lexicographically last
3037                         record in a secure zone didn't work.
3038
3039 1368.   [func]          remove support for bitstring labels.
3040
3041 1367.   [func]          Use response times to select forwarders.
3042
3043 1366.   [contrib]       queryperf usage was incomplete.  Add '-h' for help.
3044
3045 1365.   [func]          "localhost" and "localnets" acls now include IPv6
3046                         addresses / prefixes.
3047
3048 1364.   [func]          Log file name when unable to open memory statistics
3049                         and dump database files. [RT# 3437]
3050
3051 1363.   [func]          Listen-on-v6 now supports specific addresses.
3052
3053 1362.   [bug]           remove IFF_RUNNING test when scanning interfaces.
3054
3055 1361.   [func]          log the reason for rejecting a server when resolving
3056                         queries.
3057
3058 1360.   [bug]           --enable-libbind would fail when not built in the
3059                         source tree for certain OS's.
3060
3061 1359.   [security]      Support patches OpenSSL libraries.
3062                         http://www.cert.org/advisories/CA-2002-23.html
3063
3064 1358.   [bug]           It was possible to trigger a INSIST when debugging
3065                         large dynamic updates. [RT #3390]
3066
3067 1357.   [bug]           nsupdate was extremely wasteful of memory.
3068
3069 1356.   [tuning]        Reduce the number of events / quantum for zone tasks.
3070
3071 1355.   [bug]           Fix DNSSEC wildcard proof for CNAME/DNAME.
3072
3073 1354.   [doc]           lwres man pages had illegal nroff.
3074
3075 1353.   [contrib]       sdb/ldap to version 0.9.
3076
3077 1352.   [bug]           dig, host, nslookup when falling back to TCP use the
3078                         current search entry (if any). [RT #3374]
3079
3080 1351.   [bug]           lwres_getipnodebyname() returned the wrong name
3081                         when given a IPv4 literal, af=AF_INET6 and AI_MAPPED
3082                         was set.
3083
3084 1350.   [bug]           dns_name_fromtext() failed to handle too many labels
3085                         gracefully.
3086
3087 1349.   [security]      Minimum OpenSSL version now 0.9.6e (was 0.9.5a).
3088                         http://www.cert.org/advisories/CA-2002-23.html
3089
3090 1348.   [port]          win32: Rewrote code to use I/O Completion Ports
3091                         in socket.c and eliminating a host of socket
3092                         errors. Performance is enhanced.
3093
3094 1347.   [placeholder]
3095
3096 1346.   [placeholder]
3097
3098 1345.   [port]          Use a explicit -Wformat with gcc.  Not all versions
3099                         include it in -Wall.
3100
3101 1344.   [func]          Log if the serial number on the master has gone
3102                         backwards.
3103                         If you have multiple machines specified in the masters
3104                         clause you may want to set 'multi-master yes;' to
3105                         suppress this warning.
3106
3107 1343.   [func]          Log successful notifies received (info).  Adjust log
3108                         level for failed notifies to notice.
3109
3110 1342.   [func]          Log remote address with TCP dispatch failures.
3111
3112 1341.   [func]          Allow a rate limiter to be stalled.
3113
3114 1340.   [bug]           Delay and spread out the startup refresh load.
3115
3116 1339.   [func]          dig, host and nslookup now use IP6.ARPA for nibble
3117                         lookups.  Bit string lookups are no longer attempted.
3118
3119 1338.   [placeholder]
3120
3121 1337.   [placeholder]
3122
3123 1336.   [func]          Nibble lookups under IP6.ARPA are now supported by
3124                         dns_byaddr_create().  dns_byaddr_createptrname() is
3125                         deprecated, use dns_byaddr_createptrname2() instead.
3126
3127 1335.   [bug]           When performing a nonexistence proof, the validator
3128                         should discard parent NXTs from higher in the DNS.
3129
3130 1334.   [bug]           When signing/verifying rdatasets, duplicate rdatas
3131                         need to be suppressed.
3132
3133 1333.   [contrib]       queryperf now reports a summary of returned
3134                         rcodes (-c), rcodes are printed in mnemonic form (-v).
3135
3136 1332.   [func]          Report the current serial with periodic commits when
3137                         rolling forward the journal.
3138
3139 1331.   [func]          Generate DNSSEC wildcard proofs.
3140
3141 1330.   [bug]           When processing events (non-threaded) only allow
3142                         the task one chance to use to use its quantum.
3143
3144 1329.   [func]          named-checkzone will now check if nameservers that
3145                         appear to be IP addresses.  Available modes "fail",
3146                         "warn" (default) and "ignore" the results of the
3147                         check.
3148
3149 1328.   [bug]           The validator could incorrectly verify an invalid
3150                         negative proof.
3151
3152 1327.   [bug]           The validator would incorrectly mark data as insecure
3153                         when seeing a bogus signature before a correct
3154                         signature.
3155
3156 1326.   [bug]           DNAME/CNAME signatures were not being cached when
3157                         validation was not being performed. [RT #3284]
3158
3159 1325.   [bug]           If the tcpquota was exhausted it was possible to
3160                         to trigger a INSIST() failure.
3161
3162 1324.   [port]          darwin: ifconfig.sh now supports darwin.
3163
3164 1323.   [port]          linux: Slackware 4.0 needs <asm/unistd.h>. [RT #3205]
3165
3166 1322.   [bug]           dnssec-signzone usage message was misleading.
3167
3168 1321.   [bug]           If the last RRset in a zone is glue, dnssec-signzone
3169                         would incorrectly duplicate its output and sign it.
3170
3171 1320.   [doc]           query-source-v6 was missing from options section.
3172                         [RT #3218]
3173
3174 1319.   [func]          libbind: log attempts to exploit #1318.
3175
3176 1318.   [bug]           libbind: Remote buffer overrun.
3177
3178 1317.   [port]          libbind: TrueUNIX 5.1 does not like __align as a
3179                         element name.
3180
3181 1316.   [bug]           libbind: gethostans() could get out of sync parsing
3182                         the response if there was a very long CNAME chain.
3183
3184 1315.   [bug]           Options should apply to the internal _bind view.
3185
3186 1314.   [port]          Handle ECONNRESET from sendmsg() [unix].
3187
3188 1313.   [func]          Query log now says if the query was signed (S) or
3189                         if EDNS was used (E).
3190
3191 1312.   [func]          Log TSIG key used w/ outgoing zone transfers.
3192
3193 1311.   [bug]           lwres_getrrsetbyname leaked memory.  [RT #3159]
3194
3195 1310.   [bug]           'rndc stop' failed to cause zones to be flushed
3196                         sometimes. [RT #3157]
3197
3198 1309.   [func]          Log that a zone transfer was covered by a TSIG.
3199
3200 1308.   [func]          DS (delegation signer) support.
3201
3202 1307.   [bug]           nsupdate: allow white space base64 key data.
3203
3204 1306.   [bug]           Badly encoded LOC record when the size, horizontal
3205                         precision or vertical precision was 0.1m.
3206
3207 1305.   [bug]           Document that internal zones are included in the
3208                         rndc status results.
3209
3210 1304.   [func]          New function: dns_zone_name().
3211
3212 1303.   [func]          Option 'flush-zones-on-shutdown <boolean>;'.
3213
3214 1302.   [func]          Extended rndc dumpdb to support dumping of zones and
3215                         view selection: 'dumpdb [-all|-zones|-cache] [view]'.
3216
3217 1301.   [func]          New category 'update-security'.
3218
3219 1300.   [port]          Compaq Trucluster support.
3220
3221 1299.   [bug]           Set AI_ADDRCONFIG when looking up addresses
3222                         via getaddrinfo() (affects dig, host, nslookup, rndc
3223                         and nsupdate).
3224
3225 1298.   [bug]           The CINCLUDES macro in lib/dns/sec/dst/Makefile
3226                         could be left with a trailing "\" after configure
3227                         has been run.
3228
3229 1297.   [port]          linux: make handling EINVAL from socket() no longer
3230                         conditional on #ifdef LINUX.
3231
3232 1296.   [bug]           isc_log_closefilelogs() needed to lock the log
3233                         context.
3234
3235 1295.   [bug]           isc_log_setdebuglevel() needed to lock the log
3236                         context.
3237
3238 1294.   [func]          libbind: no longer attempts bit string labels for
3239                         IPv6 reverse resolution.  Try IP6.ARPA then IP6.INT
3240                         for nibble style resolution.
3241
3242 1293.   [func]          Entropy can now be retrieved from EGDs. [RT #2438]
3243
3244 1292.   [func]          Enable IPv6 support when using ioctl style interface
3245                         scanning and OS supports SIOCGLIFADDR using struct
3246                         if_laddrreq.
3247
3248 1291.   [func]          Enable IPv6 support when using sysctl style interface
3249                         scanning.
3250
3251 1290.   [func]          "dig axfr" now reports the number of messages
3252                         as well as the number of records.
3253
3254 1289.   [port]          See if -ldl is required for OpenSSL? [RT #2672]
3255
3256 1288.   [bug]           Adjusted REQUIRE's in lib/dns/name.c to better
3257                         reflect written requirements.
3258
3259 1287.   [bug]           REQUIRE that DNS_DBADD_MERGE only be set when adding
3260                         a rdataset to a zone db in the rbtdb implementation of
3261                         addrdataset.
3262
3263 1286.   [bug]           dns_name_downcase() enforce requirement that
3264                         target != NULL or name->buffer != NULL.
3265
3266 1285.   [func]          lwres: probe the system to see what address families
3267                         are currently in use.
3268
3269 1284.   [bug]           The RTT estimate on unused servers was not aged.
3270                         [RT #2569]
3271
3272 1283.   [func]          Use "dataready" accept filter if available.
3273
3274 1282.   [port]          libbind: hpux 11.11 interface scanning.
3275
3276 1281.   [func]          Log zone when unable to get private keys to update
3277                         zone.  Log zone when NXT records are missing from
3278                         secure zone.
3279
3280 1280.   [bug]           libbind: escape '(' and ')' when converting to
3281                         presentation form.
3282
3283 1279.   [port]          Darwin uses (unsigned long) for size_t. [RT #2590]
3284
3285 1278.   [func]          dig: now supports +[no]cl +[no]ttlid.
3286
3287 1277.   [func]          You can now create your own customized printing
3288                         styles: dns_master_stylecreate() and
3289                         dns_master_styledestroy().
3290
3291 1276.   [bug]           libbind: const pointer conflicts in res_debug.c.
3292
3293 1275.   [port]          libbind: hpux: treat all hpux systems as BIG_ENDIAN.
3294
3295 1274.   [bug]           Memory leak in lwres_gnbarequest_parse().
3296
3297 1273.   [port]          libbind: solaris: 64 bit binary compatibility.
3298
3299 1272.   [contrib]       Berkeley DB 4.0 sdb implementation from
3300                         Nuno Miguel Rodrigues <nmr@co.sapo.pt>.
3301
3302 1271.   [bug]           "recursion available: {denied,approved}" was too
3303                         confusing.
3304
3305 1270.   [bug]           Check that system inet_pton() and inet_ntop() support
3306                         AF_INET6.
3307
3308 1269.   [port]          Openserver: ifconfig.sh support.
3309
3310 1268.   [port]          Openserver: the value FD_SETSIZE depends on whether
3311                         <sys/param.h> is included or not.  Be consistent.
3312
3313 1267.   [func]          isc_file_openunique() now creates file using mode
3314                         0666 rather than 0600.
3315
3316 1266.   [bug]           ISC_LINK_INIT, ISC_LINK_UNLINK, ISC_LIST_DEQUEUE,
3317                         __ISC_LINK_UNLINKUNSAFE and __ISC_LIST_DEQUEUEUNSAFE
3318                         are not C++ compatible, use *_TYPE versions instead.
3319
3320 1265.   [bug]           libbind: LINK_INIT and UNLINK were not compatible with
3321                         C++, use LINK_INIT_TYPE and UNLINK_TYPE instead.
3322
3323 1264.   [placeholder]
3324
3325 1263.   [bug]           Reference after free error if dns_dispatchmgr_create()
3326                         failed.
3327
3328 1262.   [bug]           ns_server_destroy() failed to set *serverp to NULL.
3329
3330 1261.   [func]          libbind: ns_sign2() and ns_sign_tcp() now provide
3331                         support for compressed TSIG owner names.
3332
3333 1260.   [func]          libbind: res_update can now update IPv6 servers,
3334                         new function res_findzonecut2().
3335
3336 1259.   [bug]           libbind: get_salen() IPv6 support was broken for OSs
3337                         w/o sa_len.
3338
3339 1258.   [bug]           libbind: res_nametotype() and res_nametoclass() were
3340                         broken.
3341
3342 1257.   [bug]           Failure to write pid-file should not be fatal on
3343                         reload. [RT #2861]
3344
3345 1256.   [contrib]       'queryperf' now has EDNS (-e) + DNSSEC DO (-D) support.
3346
3347 1255.   [bug]           When verifying that an NXT proves nonexistence, check
3348                         the rcode of the message and only do the matching NXT
3349                         check.  That is, for NXDOMAIN responses, check that
3350                         the name is in the range between the NXT owner and
3351                         next name, and for NOERROR NODATA responses, check
3352                         that the type is not present in the NXT bitmap.
3353
3354 1254.   [func]          preferred-glue option from BIND 8.3.
3355
3356 1253.   [bug]           The dnssec system test failed to remove the correct
3357                         files.
3358
3359 1252.   [bug]           Dig, host and nslookup were not checking the address
3360                         the answer was coming from against the address it was
3361                         sent to. [RT# 2692]
3362
3363 1251.   [port]          win32: a make file contained absolute version specific
3364                         references.
3365
3366 1250.   [func]          Nsupdate will report the address the update was
3367                         sent to.
3368
3369 1249.   [bug]           Missing masters clause was not handled gracefully.
3370                         [RT #2703]
3371
3372 1248.   [bug]           DESTDIR was not being propagated between makes.
3373
3374 1247.   [bug]           Don't reset the interface index for link/site local
3375                         addresses. [RT #2576]
3376
3377 1246.   [func]          New functions isc_sockaddr_issitelocal(),
3378                         isc_sockaddr_islinklocal(), isc_netaddr_issitelocal()
3379                         and isc_netaddr_islinklocal().
3380
3381 1245.   [bug]           Treat ENOBUFS, ENOMEM and ENFILE as soft errors for
3382                         accept().
3383
3384 1244.   [bug]           Receiving a TCP message from a blackhole address would
3385                         prevent further messages being received over that
3386                         interface.
3387
3388 1243.   [bug]           It was possible to trigger a REQUIRE() in
3389                         dns_message_findtype(). [RT #2659]
3390
3391 1242.   [bug]           named-checkzone failed if a journal existed. [RT #2657]
3392
3393 1241.   [bug]           Drop received UDP messages with a zero source port
3394                         as these are invariably forged. [RT #2621]
3395
3396 1240.   [bug]           It was possible to leak zone references by
3397                         specifying an incorrect zone to rndc.
3398
3399 1239.   [bug]           Under certain circumstances named could continue to
3400                         use a name after it had been freed triggering
3401                         INSIST() failures.  [RT #2614]
3402
3403 1238.   [bug]           It is possible to lockup the server when shutting down
3404                         if notifies were being processed. [RT #2591]
3405
3406 1237.   [bug]           nslookup: "set q=type" failed.
3407
3408 1236.   [bug]           dns_rdata{class,type}_fromtext() didn't handle non
3409                         NULL terminated text regions. [RT #2588]
3410
3411 1235.   [func]          Report 'out of memory' errors from openssl.
3412
3413 1234.   [bug]           contrib/sdb: 'zonetodb' failed to call
3414                         dns_result_register().  DNS_R_SEENINCLUDE should not
3415                         be fatal.
3416
3417 1233.   [bug]           The flags field of a KEY record can be expressed in
3418                         hex as well as decimal.
3419
3420 1232.   [bug]           unix/errno2result() didn't handle EADDRNOTAVAIL.
3421
3422 1231.   [port]          HPUX 11.11 recvmsg() can return spurious EADDRNOTAVAIL.
3423
3424 1230.   [bug]           isccc_cc_isreply() and isccc_cc_isack() were broken.
3425
3426 1229.   [bug]           named would crash if it received a TSIG signed
3427                         query as part of an AXFR response. [RT #2570]
3428
3429 1228.   [bug]           'make install' did not depend on 'make all'. [RT #2559]
3430
3431 1227.   [bug]           dns_lex_getmastertoken() now returns ISC_R_BADNUMBER
3432                         if a number was expected and some other token was
3433                         found. [RT#2532]
3434
3435 1226.   [func]          Use EDNS for zone refresh queries. [RT #2551]
3436
3437 1225.   [func]          dns_message_setopt() no longer requires that
3438                         dns_message_renderbegin() to have been called.
3439
3440 1224.   [bug]           'rrset-order' and 'sortlist' should be additive
3441                         not exclusive.
3442
3443 1223.   [func]          'rrset-order' partially works 'cyclic' and 'random'
3444                         are supported.
3445
3446 1222.   [bug]           Specifying 'port *' did not always result in a system
3447                         selected (non-reserved) port being used. [RT #2537]
3448
3449 1221.   [bug]           Zone types 'master', 'slave' and 'stub' were not being
3450                         compared case insensitively. [RT #2542]
3451
3452 1220.   [func]          Support for APL rdata type.
3453
3454 1219.   [func]          Named now reports the TSIG extended error code when
3455                         signature verification fails. [RT #1651]
3456
3457 1218.   [bug]           Named incorrectly returned SERVFAIL rather than
3458                         NOTAUTH when there was a TSIG BADTIME error. [RT #2519]
3459
3460 1217.   [func]          Report locations of previous key definition when a
3461                         duplicate is detected.
3462
3463 1216.   [bug]           Multiple server clauses for the same server were not
3464                         reported.  [RT #2514]
3465
3466 1215.   [port]          solaris: add support to ifconfig.sh for x86 2.5.1
3467
3468 1214.   [bug]           Win32: isc_file_renameunique() could leave zero length
3469                         files behind.
3470
3471 1213.   [func]          Report view associated with client if it is not a
3472                         standard view (_default or _bind).
3473
3474 1212.   [port]          libbind: 64k answer buffers were causing stack space
3475                         to be exceeded for certain OS.  Use heap space instead.
3476
3477 1211.   [bug]           dns_name_fromtext() incorrectly handled certain
3478                         valid octal bitlabels. [RT #2483]
3479
3480 1210.   [bug]           libbind: getnameinfo() failed to lookup IPv4 mapped /
3481                         compatible addresses. [RT #2461]
3482
3483 1209.   [bug]           Dig, host, nslookup were not checking the message ids
3484                         on the responses. [RT #2454]
3485
3486 1208.   [bug]           dns_master_load*() failed to log a error message if
3487                         an error was detected when parsing the ownername of
3488                         a record.  [RT #2448]
3489
3490 1207.   [bug]           libbind: getaddrinfo() could call freeaddrinfo() with
3491                         an invalid pointer.
3492
3493 1206.   [bug]           SERVFAIL and NOTIMP responses to an EDNS query should
3494                         trigger a non-EDNS retry.
3495
3496 1205.   [bug]           OPT, TSIG and TKEY cannot be used to set the "class"
3497                         of the message. [RT #2449]
3498
3499 1204.   [bug]           libbind: res_nupdate() failed to update the name
3500                         server addresses before sending the update.
3501
3502 1203.   [func]          Report locations of previous acl and zone definitions
3503                         when a duplicate is detected.
3504
3505 1202.   [func]          New functions: cfg_obj_line() and cfg_obj_file().
3506
3507 1201.   [bug]           Require that if 'callbacks' is passed to
3508                         dns_rdata_fromtext(), callbacks->error and
3509                         callbacks->warn are initialized.
3510
3511 1200.   [bug]           Log 'errno' that we are unable to convert to
3512                         isc_result_t. [RT #2404]
3513
3514 1199.   [doc]           ARM reference to RFC 2157 should have been RFC 1918.
3515                         [RT #2436]
3516
3517 1198.   [bug]           OPT printing style was not consistent with the way the
3518                         header fields are printed.  The DO bit was not reported
3519                         if set.  Report if any of the MBZ bits are set.
3520
3521 1197.   [bug]           Attempts to define the same acl multiple times were not
3522                         detected.
3523
3524 1196.   [contrib]       update mdnkit to 2.2.3.
3525
3526 1195.   [bug]           Attempts to redefine builtin acls should be caught.
3527                         [RT #2403]
3528
3529 1194.   [bug]           Not all duplicate zone definitions were being detected
3530                         at the named.conf checking stage. [RT #2431]
3531
3532 1193.   [bug]           dig +besteffort parsing didn't handle packet
3533                         truncation.  dns_message_parse() has new flag
3534                         DNS_MESSAGE_IGNORETRUNCATION.
3535
3536 1192.   [bug]           The seconds fields in LOC records were restricted
3537                         to three decimal places.  More decimal places should
3538                         be allowed but warned about.
3539
3540 1191.   [bug]           A dynamic update removing the last non-apex name in
3541                         a secure zone would fail. [RT #2399]
3542
3543 1190.   [func]          Add the "rndc freeze" and "rndc unfreeze" commands.
3544                         [RT #2394]
3545
3546 1189.   [bug]           On some systems, malloc(0) returns NULL, which
3547                         could cause the caller to report an out of memory
3548                         error. [RT #2398]
3549
3550 1188.   [bug]           Dynamic updates of a signed zone would fail if
3551                         some of the zone private keys were unavailable.
3552
3553 1187.   [bug]           named was incorrectly returning DNSSEC records
3554                         in negative responses when the DO bit was not set.
3555
3556 1186.   [bug]           isc_hex_tobuffer(,,length = 0) failed to unget the
3557                         EOL token when reading to end of line.
3558
3559 1185.   [bug]           libbind: don't assume statp->_u._ext.ext is valid
3560                         unless RES_INIT is set when calling res_*init().
3561
3562 1184.   [bug]           libbind: call res_ndestroy() if RES_INIT is set
3563                         when res_*init() is called.
3564
3565 1183.   [bug]           Handle ENOSR error when writing to the internal
3566                         control pipe. [RT #2395]
3567
3568 1182.   [bug]           The server could throw an assertion failure when
3569                         constructing a negative response packet.
3570
3571 1181.   [func]          Add the "key-directory" configuration statement,
3572                         which allows the server to look for online signing
3573                         keys in alternate directories.
3574
3575 1180.   [func]          dnssec-keygen should always generate keys with
3576                         protocol 3 (DNSSEC), since it's less confusing
3577                         that way.
3578
3579 1179.   [func]          Add SIG(0) support to nsupdate.
3580
3581 1178.   [bug]           Follow and cache (if appropriate) A6 and other
3582                         data chains to completion in the additional section.
3583
3584 1177.   [func]          Report view when loading zones if it is not a
3585                         standard view (_default or _bind). [RT #2270]
3586
3587 1176.   [doc]           Document that allow-v6-synthesis is only performed
3588                         for clients that are supplied recursive service.
3589                         [RT #2260]
3590
3591 1175.   [bug]           named-checkzone and named-checkconf failed to call
3592                         dns_result_register() at startup which could
3593                         result in runtime exceptions when printing
3594                         "out of memory" errors. [RT #2335]
3595
3596 1174.   [bug]           Win32: add WSAECONNRESET to the expected errors
3597                         from connect(). [RT #2308]
3598
3599 1173.   [bug]           Potential memory leaks in isc_log_create() and
3600                         isc_log_settag(). [RT #2336]
3601
3602 1172.   [doc]           Add CERT, GPOS, KX, NAPTR, NSAP, PX and TXT to
3603                         table of RR types in ARM.
3604
3605 1171.   [func]          Added function isc_region_compare(), updated files in
3606                         lib/dns to use this function instead of local one.
3607
3608 1170.   [bug]           Don't attempt to print the token when a I/O error
3609                         occurs when parsing named.conf. [RT #2275]
3610
3611 1169.   [func]          Identify recursive queries in the query log.
3612
3613 1168.   [bug]           Empty also-notify clauses were not handled. [RT #2309]
3614
3615 1167.   [contrib]       nslint-2.1a3 (from author).
3616
3617 1166.   [bug]           "Not Implemented" should be reported as NOTIMP,
3618                         not NOTIMPL. [RT #2281]
3619
3620 1165.   [bug]           We were rejecting notify-source{-v6} in zone clauses.
3621
3622 1164.   [bug]           Empty masters clauses in slave / stub zones were not
3623                         handled gracefully. [RT #2262]
3624
3625 1163.   [func]          isc_time_formattimestamp() now includes the year.
3626
3627 1162.   [bug]           The allow-notify option was not accepted in slave
3628                         zone statements.
3629
3630 1161.   [bug]           named-checkzone looped on unbalanced brackets.
3631                         [RT #2248]
3632
3633 1160.   [bug]           Generating Diffie-Hellman keys longer than 1024
3634                         bits could fail. [RT #2241]
3635
3636 1159.   [bug]           MD and MF are not permitted to be loaded by RFC1123.
3637
3638 1158.   [func]          Report the client's address when logging notify
3639                         messages.
3640
3641 1157.   [func]          match-clients and match-destinations now accept
3642                         keys. [RT #2045]
3643
3644 1156.   [port]          The configure test for strsep() incorrectly
3645                         succeeded on certain patched versions of
3646                         AIX 4.3.3. [RT #2190]
3647
3648 1155.   [func]          Recover from master files being removed from under
3649                         us.
3650
3651 1154.   [bug]           Don't attempt to obtain the netmask of a interface
3652                         if there is no address configured. [RT #2176]
3653
3654 1153.   [func]          'rndc {stop|halt} -p' now reports the process id
3655                         of the instance of named being shutdown.
3656
3657 1152.   [bug]           libbind: read buffer overflows.
3658
3659 1151.   [bug]           nslookup failed to check that the arguments to
3660                         the port, timeout, and retry options were
3661                         valid integers and in range. [RT #2099]
3662
3663 1150.   [bug]           named incorrectly accepted TTL values
3664                         containing plus or minus signs, such as
3665                         1d+1h-1s.
3666
3667 1149.   [func]          New function isc_parse_uint32().
3668
3669 1148.   [func]          'rndc-confgen -a' now provides positive feedback.
3670
3671 1147.   [func]          Set IPV6_V6ONLY on IPv6 sockets if supported by
3672                         the OS.  listen-on-v6 { any; }; should no longer
3673                         result in IPv4 queries be accepted.  Similarly
3674                         control { inet :: ... }; should no longer result
3675                         in IPv4 connections being accepted.  This can be
3676                         overridden at compile time by defining
3677                         ISC_ALLOW_MAPPED=1.
3678
3679 1146.   [func]          Allow IPV6_IPV6ONLY to be set/cleared on a socket if
3680                         supported by the OS by a new function
3681                         isc_socket_ipv6only().
3682
3683 1145.   [func]          "host" no longer reports a NOERROR/NODATA response
3684                         by printing nothing. [RT #2065]
3685
3686 1144.   [bug]           rndc-confgen would crash if both the -a and -t
3687                         options were specified. [RT #2159]
3688
3689 1143.   [bug]           When a trusted-keys statement was present and named
3690                         was built without crypto support, it would leak memory.
3691
3692 1142.   [bug]           dnssec-signzone would fail to delete temporary files
3693                         in some failure cases. [RT #2144]
3694
3695 1141.   [bug]           When named rejected a control message, it would
3696                         leak a file descriptor and memory.  It would also
3697                         fail to respond, causing rndc to hang.
3698                         [RT #2139, #2164]
3699
3700 1140.   [bug]           rndc-confgen did not accept IPv6 addresses as arguments
3701                         to the -s option. [RT #2138]
3702
3703 1139.   [func]          It is now possible to flush a given name from the
3704                         cache(s) via 'rndc flushname name [view]'. [RT #2051]
3705
3706 1138.   [func]          It is now possible to flush a given name from the
3707                         cache by calling the new function
3708                         dns_cache_flushname().
3709
3710 1137.   [func]          It is now possible to flush a given name from the
3711                         ADB by calling the new function dns_adb_flushname().
3712
3713 1136.   [bug]           CNAME records synthesized from DNAMEs did not
3714                         have a TTL of zero as required by RFC2672.
3715                         [RT #2129]
3716
3717 1135.   [func]          You can now override the default syslog() facility for
3718                         named/lwresd at compile time. [RT #1982]
3719
3720 1134.   [bug]           Multi-threaded servers could deadlock in ferror()
3721                         when reloading zone files. [RT #1951, #1998]
3722
3723 1133.   [bug]           IN6_IS_ADDR_LOOPBACK was not portably defined on
3724                         platforms without IN6_IS_ADDR_LOOPBACK. [RT #2106]
3725
3726 1132.   [func]          Improve UPDATE prerequisite failure diagnostic messages.
3727
3728 1131.   [bug]           The match-destinations view option did not work with
3729                         IPv6 destinations. [RT #2073, #2074]
3730
3731 1130.   [bug]           Log messages reporting an out-of-range serial number
3732                         did not include the out-of-range number but the
3733                         following token. [RT #2076]
3734
3735 1129.   [bug]           Multi-threaded servers could crash under heavy
3736                         resolution load due to a race condition. [RT #2018]
3737
3738 1128.   [func]          sdb drivers can now provide RR data in either text
3739                         or wire format, the latter using the new functions
3740                         dns_sdb_putrdata() and dns_sdb_putnamedrdata().
3741
3742 1127.   [func]          rndc: If the server to contact has multiple addresses,
3743                         try all of them.
3744
3745 1126.   [bug]           The server could access a freed event if shut
3746                         down while a client start event was pending
3747                         delivery. [RT #2061]
3748
3749 1125.   [bug]           rndc: -k option was missing from usage message.
3750                         [RT #2057]
3751
3752 1124.   [doc]           dig: +[no]dnssec, +[no]besteffort and +[no]fail
3753                         are now documented. [RT #2052]
3754
3755 1123.   [bug]           dig +[no]fail did not match description. [RT #2052]
3756
3757 1122.   [tuning]        Resolution timeout reduced from 90 to 30 seconds.
3758                         [RT #2046]
3759
3760 1121.   [bug]           The server could attempt to access a NULL zone
3761                         table if shut down while resolving.
3762                         [RT #1587, #2054]
3763
3764 1120.   [bug]           Errors in options were not fatal. [RT #2002]
3765
3766 1119.   [func]          Added support in Win32 for NTFS file/directory ACL's
3767                         for access control.
3768
3769 1118.   [bug]           On multi-threaded servers, a race condition
3770                         could cause an assertion failure in resolver.c
3771                         during resolver shutdown. [RT #2029]
3772
3773 1117.   [port]          The configure check for in6addr_loopback incorrectly
3774                         succeeded on AIX 4.3 when compiling with -O2
3775                         because the test code was optimized away.
3776                         [RT #2016]
3777
3778 1116.   [bug]           Setting transfers in a server clause, transfers-in,
3779                         or transfers-per-ns to a value greater than
3780                         2147483647 disabled transfers. [RT #2002]
3781
3782 1115.   [func]          Set maximum values for cleaning-interval,
3783                         heartbeat-interval, interface-interval,
3784                         max-transfer-idle-in, max-transfer-idle-out,
3785                         max-transfer-time-in, max-transfer-time-out,
3786                         statistics-interval of 28 days and
3787                         sig-validity-interval of 3660 days. [RT #2002]
3788
3789 1114.   [port]          Ignore more accept() errors. [RT #2021]
3790
3791 1113.   [bug]           The allow-update-forwarding option was ignored
3792                         when specified in a view. [RT #2014]
3793
3794 1112.   [placeholder]
3795
3796 1111.   [bug]           Multi-threaded servers could deadlock processing
3797                         recursive queries due to a locking hierarchy
3798                         violation in adb.c. [RT #2017]
3799
3800 1110.   [bug]           dig should only accept valid abbreviations of +options.
3801                         [RT #2003]
3802
3803 1109.   [bug]           nsupdate accepted illegal ttl values.
3804
3805 1108.   [bug]           On Win32, rndc was hanging when named was not running
3806                         due to failure to select for exceptional conditions
3807                         in select(). [RT #1870]
3808
3809 1107.   [bug]           nsupdate could catch an assertion failure if an
3810                         invalid domain name was given as the argument to
3811                         the "zone" command.
3812
3813 1106.   [bug]           After seeing an out of range TTL, nsupdate would
3814                         treat all TTLs as out of range. [RT #2001]
3815
3816 1105.   [port]          OpenUNIX 8 enable threads by default. [RT #1970]
3817
3818 1104.   [bug]           Invalid arguments to the transfer-format option
3819                         could cause an assertion failure. [RT #1995]
3820
3821 1103.   [port]          OpenUNIX 8 support (ifconfig.sh). [RT #1970]
3822
3823 1102.   [doc]           Note that query logging is enabled by directing the
3824                         queries category to a channel.
3825
3826 1101.   [bug]           Array bounds read error in lwres_gai_strerror.
3827
3828 1100.   [bug]           libbind: DNSSEC key ids were computed incorrectly.
3829
3830 1099.   [cleanup]       libbind: defining REPORT_ERRORS in lib/bind/dst caused
3831                         compile time errors.
3832
3833 1098.   [bug]           libbind: HMAC-MD5 key files are now mode 0600.
3834
3835 1097.   [func]          libbind: RES_PRF_TRUNC for dig.
3836
3837 1096.   [func]          libbind: "DNSSEC OK" (DO) support.
3838
3839 1095.   [func]          libbind: resolver option: no-tld-query.  disables
3840                         trying unqualified as a tld.  no_tld_query is also
3841                         supported for FreeBSD compatibility.
3842
3843 1094.   [func]          libbind: add support gcc's format string checking.
3844
3845 1093.   [doc]           libbind: miscellaneous nroff fixes.
3846
3847 1092.   [bug]           libbind: get*by*() failed to check if res_init() had
3848                         been called.
3849
3850 1091.   [bug]           libbind: misplaced va_end().
3851
3852 1090.   [bug]           libbind: dns_ho.c:add_hostent() was not returning
3853                         the amount of memory consumed resulting in garbage
3854                         address being returned.  Alignment calculations were
3855                         wasting space.  We weren't suppressing duplicate
3856                         addresses.
3857
3858 1089.   [func]          libbind: inet_{cidr,net}_{pton,ntop}() now have IPv6
3859                         support.
3860
3861 1088.   [port]          libbind: MPE/iX C.70 (incomplete)
3862
3863 1087.   [bug]           libbind: struct __res_state too large on 64 bit arch.
3864
3865 1086.   [port]          libbind: sunos: old sprintf.
3866
3867 1085.   [port]          libbind: solaris: sys_nerr and sys_errlist do not
3868                         exist when compiling in 64 bit mode.
3869
3870 1084.   [cleanup]       libbind: gai_strerror() rewritten.
3871
3872 1083.   [bug]           The default control channel listened on the
3873                         wildcard address, not the loopback as documented.
3874                         [RT #1975]
3875
3876 1082.   [bug]           The -g option to named incorrectly caused logging
3877                         to be sent to syslog in addition to stderr.
3878                         [RT #1974]
3879
3880 1081.   [bug]           Multicast queries were incorrectly identified
3881                         based on the source address, not the destination
3882                         address.
3883
3884 1080.   [bug]           BIND 8 compatibility: accept bare IP prefixes
3885                         as the second element of a two-element top level
3886                         sort list statement. [RT #1964]
3887
3888 1079.   [bug]           BIND 8 compatibility: accept bare elements at top
3889                         level of sort list treating them as if they were
3890                         a single element list. [RT #1963]
3891
3892 1078.   [bug]           We failed to correct bad tv_usec values in one case.
3893                         [RT #1966]
3894
3895 1077.   [func]          Do not accept further recursive clients when
3896                         the total number of recursive lookups being
3897                         processed exceeds max-recursive-clients, even
3898                         if some of the lookups are internally generated.
3899                         [RT #1915, #1938]
3900
3901 1076.   [bug]           A badly defined global key could trigger an assertion
3902                         on load/reload if views were used. [RT #1947]
3903
3904 1075.   [bug]           Out-of-range network prefix lengths were not
3905                         reported. [RT #1954]
3906
3907 1074.   [bug]           Running out of memory in dump_rdataset() could
3908                         cause an assertion failure. [RT #1946]
3909
3910 1073.   [bug]           The ADB cache cleaning should also be space driven.
3911                         [RT #1915, #1938]
3912
3913 1072.   [bug]           The TCP client quota could be exceeded when
3914                         recursion occurred. [RT #1937]
3915
3916 1071.   [bug]           Sockets listening for TCP DNS connections
3917                         specified an excessive listen backlog. [RT #1937]
3918
3919 1070.   [bug]           Copy DNSSEC OK (DO) to response as specified by
3920                         draft-ietf-dnsext-dnssec-okbit-03.txt.
3921
3922 1069.   [placeholder]
3923
3924 1068.   [bug]           errno could be overwritten by catgets(). [RT #1921]
3925
3926 1067.   [func]          Allow quotas to be soft, isc_quota_soft().
3927
3928 1066.   [bug]           Provide a thread safe wrapper for strerror().
3929                         [RT #1689]
3930
3931 1065.   [func]          Runtime support to select new / old style interface
3932                         scanning using ioctls.
3933
3934 1064.   [bug]           Do not shut down active network interfaces if we
3935                         are unable to scan the interface list. [RT #1921]
3936
3937 1063.   [bug]           libbind: "make install" was failing on IRIX.
3938                         [RT #1919]
3939
3940 1062.   [bug]           If the control channel listener socket was shut
3941                         down before server exit, the listener object could
3942                         be freed twice. [RT #1916]
3943
3944 1061.   [bug]           If periodic cache cleaning happened to start
3945                         while cleaning due to reaching the configured
3946                         maximum cache size was in progress, the server
3947                         could catch an assertion failure. [RT #1912]
3948
3949 1060.   [func]          Move refresh, stub and notify UDP retry processing
3950                         into dns_request.
3951
3952 1059.   [func]          dns_request now support will now retry UDP queries,
3953                         dns_request_createvia2() and dns_request_createraw2().
3954
3955 1058.   [func]          Limited lifetime ticker timers are now available,
3956                         isc_timertype_limited.
3957
3958 1057.   [bug]           Reloading the server after adding a "file" clause
3959                         to a zone statement could cause the server to
3960                         crash due to a typo in change 1016.
3961
3962 1056.   [bug]           Rndc could catch an assertion failure on SIGINT due
3963                         to an uninitialized variable. [RT #1908]
3964
3965 1055.   [func]          Version and hostname queries can now be disabled
3966                         using "version none;" and "hostname none;",
3967                         respectively.
3968
3969 1054.   [bug]           On Win32, cfg_categories and cfg_modules need to be
3970                         exported from the libisccfg DLL.
3971
3972 1053.   [bug]           Dig did not increase its timeout when receiving
3973                         AXFRs unless the +time option was used. [RT #1904]
3974
3975 1052.   [bug]           Journals were not being created in binary mode
3976                         resulting in "journal format not recognized" error
3977                         under Win32. [RT #1889]
3978
3979 1051.   [bug]           Do not ignore a network interface completely just
3980                         because it has a noncontiguous netmask.  Instead,
3981                         omit it from the localnets ACL and issue a warning.
3982                         [RT #1891]
3983
3984 1050.   [bug]           Log messages reporting malformed IP addresses in
3985                         address lists such as that of the forwarders option
3986                         failed to include the correct error code, file
3987                         name, and line number. [RT #1890]
3988
3989 1049.   [func]          "pid-file none;" will disable writing a pid file.
3990                         [RT #1848]
3991
3992 1048.   [bug]           Servers built with -DISC_MEM_USE_INTERNAL_MALLOC=1
3993                         didn't work.
3994
3995 1047.   [bug]           named was incorrectly refusing all requests signed
3996                         with a TSIG key derived from an unsigned TKEY
3997                         negotiation with a NOERROR response. [RT #1886]
3998
3999 1046.   [bug]           The help message for the --with-openssl configure
4000                         option was inaccurate. [RT #1880]
4001
4002 1045.   [bug]           It was possible to skip saving glue for a nameserver
4003                         for a stub zone.
4004
4005 1044.   [bug]           Specifying allow-transfer, notify-source, or
4006                         notify-source-v6 in a stub zone was not treated
4007                         as an error.
4008
4009 1043.   [bug]           Specifying a transfer-source or transfer-source-v6
4010                         option in the zone statement for a master zone was
4011                         not treated as an error. [RT #1876]
4012
4013 1042.   [bug]           The "config" logging category did not work properly.
4014                         [RT #1873]
4015
4016 1041.   [bug]           Dig/host/nslookup could catch an assertion failure
4017                         on SIGINT due to an uninitialized variable. [RT #1867]
4018
4019 1040.   [bug]           Multiple listen-on-v6 options with different ports
4020                         were not accepted. [RT #1875]
4021
4022 1039.   [bug]           Negative responses with CNAMEs in the answer section
4023                         were cached incorrectly. [RT #1862]
4024
4025 1038.   [bug]           In servers configured with a tkey-domain option,
4026                         TKEY queries with an owner name other than the root
4027                         could cause an assertion failure. [RT #1866, #1869]
4028
4029 1037.   [bug]           Negative responses whose authority section contain
4030                         SOA or NS records whose owner names are not equal
4031                         equal to or parents of the query name should be
4032                         rejected. [RT #1862]
4033
4034 1036.   [func]          Silently drop requests received via multicast as
4035                         long as there is no final multicast DNS standard.
4036
4037 1035.   [bug]           If we respond to multicast queries (which we
4038                         currently do not), respond from a unicast address
4039                         as specified in RFC 1123. [RT #137]
4040
4041 1034.   [bug]           Ignore the RD bit on multicast queries as specified
4042                         in RFC 1123. [RT #137]
4043
4044 1033.   [bug]           Always respond to requests with an unsupported opcode
4045                         with NOTIMP, even if we don't have a matching view
4046                         or cannot determine the class.
4047
4048 1032.   [func]          hostname.bind/txt/chaos now returns the name of
4049                         the machine hosting the nameserver.  This is useful
4050                         in diagnosing problems with anycast servers.
4051
4052 1031.   [bug]           libbind.a: isc__gettimeofday() infinite recursion.
4053                         [RT #1858]
4054
4055 1030.   [bug]           On systems with no resolv.conf file, nsupdate
4056                         exited with an error rather than defaulting
4057                         to using the loopback address. [RT #1836]
4058
4059 1029.   [bug]           Some named.conf errors did not cause the loading
4060                         of the configuration file to return a failure
4061                         status even though they were logged. [RT #1847]
4062
4063 1028.   [bug]           On Win32, dig/host/nslookup looked for resolv.conf
4064                         in the wrong directory. [RT #1833]
4065
4066 1027.   [bug]           RRs having the reserved type 0 should be rejected.
4067                         [RT #1471]
4068
4069 1026.   [placeholder]
4070
4071 1025.   [bug]           Don't use multicast addresses to resolve iterative
4072                         queries. [RT #101]
4073
4074 1024.   [port]          Compilation failed on HP-UX 11.11 due to
4075                         incompatible use of the SIOCGLIFCONF macro
4076                         name. [RT #1831]
4077
4078 1023.   [func]          Accept hints without TTLs.
4079
4080 1022.   [bug]           Don't report empty root hints as "extra data".
4081                         [RT #1802]
4082
4083 1021.   [bug]           On Win32, log message timestamps were one month
4084                         later than they should have been, and the server
4085                         would exhibit unspecified behavior in December.
4086
4087 1020.   [bug]           IXFR log messages did not distinguish between
4088                         true IXFRs, AXFR-style IXFRs, and mere version
4089                         polls. [RT #1811]
4090
4091 1019.   [bug]           The value of the lame-ttl option was limited to 18000
4092                         seconds, not 1800 seconds as documented. [RT #1803]
4093
4094 1018.   [bug]           The default log channel was not always initialized
4095                         correctly. [RT #1813]
4096
4097 1017.   [bug]           When specifying TSIG keys to dig and nsupdate using
4098                         the -k option, they must be HMAC-MD5 keys. [RT #1810]
4099
4100 1016.   [bug]           Slave zones with no backup file were re-transferred
4101                         on every server reload.
4102
4103 1015.   [bug]           Log channels that had a "versions" option but no
4104                         "size" option failed to create numbered log
4105                         files. [RT #1783]
4106
4107 1014.   [bug]           Some queries would cause statistics counters to
4108                         increment more than once or not at all. [RT #1321]
4109
4110 1013.   [bug]           It was possible to cancel a query twice when marking
4111                         a server as bogus or by having a blackhole acl.
4112                         [RT #1776]
4113
4114 1012.   [bug]           The -p option to named did not behave as documented.
4115
4116 1011.   [cleanup]       Removed isc_dir_current().
4117
4118 1010.   [bug]           The server could attempt to execute a command channel
4119                         command after initiating server shutdown, causing
4120                         an assertion failure. [RT #1766]
4121
4122 1009.   [port]          OpenUNIX 8 support. [RT #1728]
4123
4124 1008.   [port]          libtool.m4, ltmain.sh from libtool-1.4.2.
4125
4126 1007.   [port]          config.guess, config.sub from autoconf-2.52.
4127
4128 1006.   [bug]           If a KEY RR was found missing during DNSSEC validation,
4129                         an assertion failure could subsequently be triggered
4130                         in the resolver. [RT #1763]
4131
4132 1005.   [bug]           Don't copy nonzero RCODEs from request to response.
4133                         [RT #1765]
4134
4135 1004.   [port]          Deal with recvfrom() returning EHOSTDOWN. [RT #1770]
4136
4137 1003.   [func]          Add the +retry option to dig.
4138
4139 1002.   [bug]           When reporting an unknown class name in named.conf,
4140                         including the file name and line number. [RT #1759]
4141
4142 1001.   [bug]           win32 socket code doio_recv was not catching a
4143                         WSACONNRESET error when a client was timing out
4144                         the request and closing its socket. [RT #1745]
4145
4146 1000.   [bug]           BIND 8 compatibility: accept "HESIOD" as an alias
4147                         for class "HS". [RT #1759]
4148
4149  999.   [func]          "rndc retransfer zone [class [view]]" added.
4150                         [RT #1752]
4151
4152  998.   [func]          named-checkzone now has arguments to specify the
4153                         chroot directory (-t) and working directory (-w).
4154                         [RT #1755]
4155
4156  997.   [func]          Add support for RSA-SHA1 keys (RFC3110).
4157
4158  996.   [func]          Issue warning if the configuration filename contains
4159                         the chroot path.
4160
4161  995.   [bug]           dig, host, nslookup: using a raw IPv6 address as a
4162                         target address should be fatal on a IPv4 only system.
4163
4164  994.   [func]          Treat non-authoritative responses to queries for type
4165                         NS as referrals even if the NS records are in the
4166                         answer section, because BIND 8 servers incorrectly
4167                         send them that way.  This is necessary for DNSSEC
4168                         validation of the NS records of a secure zone to
4169                         succeed when the parent is a BIND 8 server. [RT #1706]
4170
4171  993.   [func]          dig: -v now reports the version.
4172
4173  992.   [doc]           dig: ~/.digrc is now documented.
4174
4175  991.   [func]          Lower UDP refresh timeout messages to level
4176                         debug 1.
4177
4178  990.   [bug]           The rndc-confgen man page was not installed.
4179
4180  989.   [bug]           Report filename if $INCLUDE fails for file related
4181                         errors. [RT #1736]
4182
4183  988.   [bug]           'additional-from-auth no;' did not work reliably
4184                         in the case of queries answered from the cache.
4185                         [RT #1436]
4186
4187  987.   [bug]           "dig -help" didn't show "+[no]stats".
4188
4189  986.   [bug]           "dig +noall" failed to clear stats and command
4190                         printing.
4191
4192  985.   [func]          Consider network interfaces to be up iff they have
4193                         a nonzero IP address rather than based on the
4194                         IFF_UP flag. [RT #1160]
4195
4196  984.   [bug]           Multi-threading should be enabled by default on
4197                         Solaris 2.7 and newer, but it wasn't.
4198
4199  983.   [func]          The server now supports generating IXFR difference
4200                         sequences for non-dynamic zones by comparing zone
4201                         versions, when enabled using the new config
4202                         option "ixfr-from-differences". [RT #1727]
4203
4204  982.   [func]          If "memstatistics-file" is set in options the memory
4205                         statistics will be written to it.
4206
4207  981.   [func]          The dnssec tools can now take multiple '-r randomfile'
4208                         arguments.
4209
4210  980.   [bug]           Incoming zone transfers restarting after an error
4211                         could trigger an assertion failure. [RT #1692]
4212
4213  979.   [func]          Incremental master file dumping.  dns_master_dumpinc(),
4214                         dns_master_dumptostreaminc(), dns_dumpctx_attach(),
4215                         dns_dumpctx_detach(), dns_dumpctx_cancel(),
4216                         dns_dumpctx_db() and dns_dumpctx_version().
4217
4218  978.   [bug]           dns_db_attachversion() had an invalid REQUIRE()
4219                         condition.
4220
4221  977.   [bug]           Improve "not at top of zone" error message.
4222
4223  976.   [func]          named-checkconf can now test load master zones
4224                         (named-checkconf -z). [RT #1468]
4225
4226  975.   [bug]           "max-cache-size default;" as a view option
4227                         caused an assertion failure.
4228
4229  974.   [bug]           "max-cache-size unlimited;" as a global option
4230                         was not accepted.
4231
4232  973.   [bug]           Failed to log the question name when logging:
4233                         "bad zone transfer request: non-authoritative zone
4234                         (NOTAUTH)".
4235
4236  972.   [bug]           The file modification time code in zone.c was using the
4237                         wrong epoch. [RT #1667]
4238
4239  971.   [placeholder]
4240
4241  970.   [func]          'max-journal-size' can now be used to set a target
4242                         size for a journal.
4243
4244  969.   [func]          dig now supports the undocumented dig 8 feature
4245                         of allowing arbitrary labels, not just dotted
4246                         decimal quads, with the -x option.  This can be
4247                         used to conveniently look up RFC2317 names as in
4248                         "dig -x 10.0.0.0-127". [RT #827, #1576, #1598]
4249
4250  968.   [bug]           On win32, the isc_time_now() function was unnecessarily
4251                         calling strtime(). [RT #1671]
4252
4253  967.   [bug]           On win32, the link for bindevt was not including the
4254                         required resource file to enable the event viewer
4255                         to interpret the error messages in the event log,
4256                         [RT #1668]
4257
4258  966.   [placeholder]
4259
4260  965.   [bug]           Including data other than root server NS and A
4261                         records in the root hint file could cause a rbtdb
4262                         node reference leak. [RT #1581, #1618]
4263
4264  964.   [func]          Warn if data other than root server NS and A records
4265                         are found in the root hint file. [RT #1581, #1618]
4266
4267  963.   [bug]           Bad ISC_LANG_ENDDECLS. [RT #1645]
4268
4269  962.   [bug]           libbind: bad "#undef", don't attempt to install
4270                         non-existant nlist.h. [RT #1640]
4271
4272  961.   [bug]           Tried to use a IPV6 feature when ISC_PLATFORM_HAVEIPV6
4273                         was not defined. [RT #1482]
4274
4275  960.   [port]          liblwres failed to build on systems with support for
4276                         getrrsetbyname() in the OS. [RT #1592]
4277
4278  959.   [port]          On FreeBSD, determine the number of CPUs by calling
4279                         sysctlbyname(). [RT #1584]
4280
4281  958.   [port]          ssize_t is not available on all platforms. [RT #1607]
4282
4283  957.   [bug]           sys/select.h inclusion was broken on older platforms.
4284                         [RT #1607]
4285
4286  956.   [bug]           ns_g_autorndcfile changed to ns_g_keyfile
4287                         in named/win32/os.c due to code changes in
4288                         change #953. win32 .make file for rndc-confgen
4289                         updated to add include path for os.h header.
4290
4291         --- 9.2.0rc1 released ---
4292
4293  955.   [bug]           When using views, the zone's class was not being
4294                         inherited from the view's class. [RT #1583]
4295
4296  954.   [bug]           When requesting AXFRs or IXFRs using dig, host, or
4297                         nslookup, the RD bit should not be set as zone
4298                         transfers are inherently non-recursive. [RT #1575]
4299
4300  953.   [func]          The /var/run/named.key file from change #843
4301                         has been replaced by /etc/rndc.key.  Both
4302                         named and rndc will look for this file and use
4303                         it to configure a default control channel key
4304                         if not already configured using a different
4305                         method (rndc.conf / controls).  Unlike
4306                         named.key, rndc.key is not created automatically;
4307                         it must be created by manually running
4308                         "rndc-confgen -a".
4309
4310  952.   [bug]           The server required manual intervention to serve the
4311                         affected zones if it died between creating a journal
4312                         and committing the first change to it.
4313
4314  951.   [bug]           CFLAGS was not passed to the linker when
4315                         linking some of the test programs under
4316                         bin/tests. [RT #1555].
4317
4318  950.   [bug]           Explicit TTLs did not properly override $TTL
4319                         due to a bug in change 834. [RT #1558]
4320
4321  949.   [bug]           host was unable to print records larger than 512
4322                         bytes. [RT #1557]
4323
4324         --- 9.2.0b2 released ---
4325
4326  948.   [port]          Integrated support for building on Windows NT /
4327                         Windows 2000.
4328
4329  947.   [bug]           dns_rdata_soa_t had a badly named element "mname" which
4330                         was really the RNAME field from RFC1035.  To avoid
4331                         confusion and silent errors that would occur it the
4332                         "origin" and "mname" elements were given their correct
4333                         names "mname" and "rname" respectively, the "mname"
4334                         element is renamed to "contact".
4335
4336  946.   [cleanup]       doc/misc/options is now machine-generated from the
4337                         configuration parser syntax tables, and therefore
4338                         more likely to be correct.
4339
4340  945.   [func]          Add the new view-specific options
4341                         "match-destinations" and "match-recursive-only".
4342
4343  944.   [func]          Check for expired signatures on load.
4344
4345  943.   [bug]           The server could crash when receiving a command
4346                         via rndc if the configuration file listed only
4347                         nonexistent keys in the controls statement. [RT #1530]
4348
4349  942.   [port]          libbind: GETNETBYADDR_ADDR_T was not correctly
4350                         defined on some platforms.
4351
4352  941.   [bug]           The configuration checker crashed if a slave
4353                         zone didn't contain a masters statement. [RT #1514]
4354
4355  940.   [bug]           Double zone locking failure on error path. [RT #1510]
4356
4357         --- 9.2.0b1 released ---
4358
4359  939.   [port]          Add the --disable-linux-caps option to configure for
4360                         systems that manage capabilities outside of named.
4361                         [RT #1503]
4362
4363  938.   [placeholder]
4364
4365  937.   [bug]           A race when shutting down a zone could trigger a
4366                         INSIST() failure. [RT #1034]
4367
4368  936.   [func]          Warn about IPv4 addresses that are not complete
4369                         dotted quads. [RT #1084]
4370
4371  935.   [bug]           inet_pton failed to reject leading zeros.
4372
4373  934.   [port]          Deal with systems where accept() spuriously returns
4374                         ECONNRESET.
4375
4376  933.   [bug]           configure failed doing libbind on platforms not
4377                         supported by BIND 8. [RT #1496]
4378
4379         --- 9.2.0a3 released ---
4380
4381  932.   [bug]           Use INSTALL_SCRIPT, not INSTALL_PROGRAM,
4382                         when installing isc-config.sh.
4383                         [RT #198, #1466]
4384
4385  931.   [bug]           The controls statement only attempted to verify
4386                         messages using the first key in the key list.
4387                         (9.2.0a1/a2 only).
4388
4389  930.   [func]          Query performance testing tool added as
4390                         contrib/queryperf.
4391
4392  929.   [placeholder]
4393
4394  928.   [bug]           nsupdate would send empty update packets if the
4395                         send (or empty line) command was run after
4396                         another send but before any new updates or
4397                         prerequisites were specified.  It should simply
4398                         ignore this command.
4399
4400  927.   [bug]           Don't hold the zone lock for the entire dump to disk.
4401                         [RT #1423]
4402
4403  926.   [bug]           The resolver could deadlock with the ADB when
4404                         shutting down (multi-threaded builds only).
4405                         [RT #1324]
4406
4407  925.   [cleanup]       Remove openssl from the distribution; require that
4408                         --with-openssl be specified if DNSSEC is needed.
4409
4410  924.   [port]          Extend support for pre-RFC2133 IPv6 implementation.
4411                         [RT #987]
4412
4413  923.   [bug]           Multiline TSIG secrets (and other multiline strings)
4414                         were not accepted in named.conf. [RT #1469]
4415
4416  922.   [func]          Added two new lwres_getrrsetbyname() result codes,
4417                         ERR_NONAME and ERR_NODATA.
4418
4419  921.   [bug]           lwres returned an incorrect error code if it received
4420                         a truncated message.
4421
4422  920.   [func]          Increase the lwres receive buffer size to 16K.
4423                         [RT #1451]
4424
4425  919.   [placeholder]
4426
4427  918.   [func]          In nsupdate, TSIG errors are no longer treated as
4428                         fatal errors.
4429
4430  917.   [func]          New nsupdate command 'key', allowing TSIG keys to
4431                         be specified in the nsupdate command stream rather
4432                         than the command line.
4433
4434  916.   [bug]           Specifying type ixfr to dig without specifying
4435                         a serial number failed in unexpected ways.
4436
4437  915.   [func]          The named-checkconf and named-checkzone programs
4438                         now have a '-v' option for printing their version.
4439                         [RT #1151]
4440
4441  914.   [bug]           Global 'server' statements were rejected when
4442                         using views, even though they were accepted
4443                         in 9.1. [RT #1368]
4444
4445  913.   [bug]           Cache cleaning was not sufficiently aggressive.
4446                         [RT #1441, #1444]
4447
4448  912.   [bug]           Attempts to set the 'additional-from-cache' or
4449                         'additional-from-auth' option to 'no' in a
4450                         server with recursion enabled will now
4451                         be ignored and cause a warning message.
4452                         [RT #1145]
4453
4454  911.   [placeholder]
4455
4456  910.   [port]          Some pre-RFC2133 IPv6 implementations do not define
4457                         IN6ADDR_ANY_INIT. [RT #1416]
4458
4459  909.   [placeholder]
4460
4461  908.   [func]          New program, rndc-confgen, to simplify setting up rndc.
4462
4463  907.   [func]          The ability to get entropy from either the
4464                         random device, a user-provided file or from
4465                         the keyboard was migrated from the DNSSEC tools
4466                         to libisc as isc_entropy_usebestsource().
4467
4468  906.   [port]          Separated the system independent portion of
4469                         lib/isc/unix/entropy.c into lib/isc/entropy.c
4470                         and added lib/isc/win32/entropy.c.
4471
4472  905.   [bug]           Configuring a forward "zone" for the root domain
4473                         did not work. [RT #1418]
4474
4475  904.   [bug]           The server would leak memory if attempting to use
4476                         an expired TSIG key. [RT #1406]
4477
4478  903.   [bug]           dig should not crash when receiving a TCP packet
4479                         of length 0.
4480
4481  902.   [bug]           The -d option was ignored if both -t and -g were also
4482                         specified.
4483
4484  901.   [placeholder]
4485
4486  900.   [bug]           A config.guess update changed the system identification
4487                         string of FreeBSD systems; configure and
4488                         bin/tests/system/ifconfig.sh now recognize the new
4489                         string.
4490
4491         --- 9.2.0a2 released ---
4492
4493  899.   [bug]           lib/dns/soa.c failed to compile on many platforms
4494                         due to inappropriate use of a void value.
4495                         [RT #1372, #1373, #1386, #1387, #1395]
4496
4497  898.   [bug]           "dig" failed to set a nonzero exit status
4498                         on UDP query timeout. [RT #1323]
4499
4500  897.   [bug]           A config.guess update changed the system identification
4501                         string of UnixWare systems; configure now recognizes
4502                         the new string.
4503
4504  896.   [bug]           If a configuration file is set on named's command line
4505                         and it has a relative pathname, the current directory
4506                         (after any possible jailing resulting from named -t)
4507                         will be prepended to it so that reloading works
4508                         properly even when a directory option is present.
4509
4510  895.   [func]          New function, isc_dir_current(), akin to POSIX's
4511                         getcwd().
4512
4513  894.   [bug]           When using the DNSSEC tools, a message intended to warn
4514                         when the keyboard was being used because of the lack
4515                         of a suitable random device was not being printed.
4516
4517  893.   [func]          Removed isc_file_test() and added isc_file_exists()
4518                         for the basic functionality that was being added
4519                         with isc_file_test().
4520
4521  892.   [placeholder]
4522
4523  891.   [bug]           Return an error when a SIG(0) signed response to
4524                         an unsigned query is seen.  This should actually
4525                         do the verification, but it's not currently
4526                         possible. [RT #1391]
4527
4528  890.   [cleanup]       The man pages no longer require the mandoc macros
4529                         and should now format cleanly using most versions of
4530                         nroff, and HTML versions of the man pages have been
4531                         added.  Both are generated from DocBook source.
4532
4533  889.   [port]          Eliminated blank lines before .TH in nroff man
4534                         pages since they cause problems with some versions
4535                         of nroff. [RT #1390]
4536
4537  888.   [bug]           Don't die when using TKEY to delete a nonexistent
4538                         TSIG key. [RT #1392]
4539
4540  887.   [port]          Detect broken compilers that can't call static
4541                         functions from inline functions. [RT #1212]
4542
4543  886.   [placeholder]
4544
4545  885.   [placeholder]
4546
4547  884.   [placeholder]
4548
4549  883.   [placeholder]
4550
4551  882.   [placeholder]
4552
4553  881.   [placeholder]
4554
4555  880.   [placeholder]
4556
4557  879.   [placeholder]
4558
4559  878.   [placeholder]
4560
4561  877.   [placeholder]
4562
4563  876.   [placeholder]
4564
4565  875.   [placeholder]
4566
4567  874.   [placeholder]
4568
4569  873.   [placeholder]
4570
4571  872.   [placeholder]
4572
4573  871.   [placeholder]
4574
4575  870.   [placeholder]
4576
4577  869.   [placeholder]
4578
4579  868.   [placeholder]
4580
4581  867.   [placeholder]
4582
4583  866.   [func]          Close debug only file channels when debug is set to
4584                         zero. [RT #1246]
4585
4586  865.   [bug]           The new configuration parser did not allow
4587                         the optional debug level in a "severity debug"
4588                         clause of a logging channel to be omitted.
4589                         This is now allowed and treated as "severity
4590                         debug 1;" like it does in BIND 8.2.4, not as
4591                         "severity debug 0;" like it did in BIND 9.1.
4592                         [RT #1367]
4593
4594  864.   [cleanup]       Multi-threading is now enabled by default on
4595                         OSF1, Solaris 2.7 and newer, AIX, IRIX, and HP-UX.
4596
4597  863.   [bug]           If an error occurred while an outgoing zone transfer
4598                         was starting up, the server could access a domain
4599                         name that had already been freed when logging a
4600                         message saying that the transfer was starting.
4601                         [RT #1383]
4602
4603  862.   [bug]           Use after realloc(), non portable pointer arithmetic in
4604                         grmerge().
4605
4606  861.   [port]          Add support for Mac OS X, by making it equivalent
4607                         to Darwin.  This was derived from the config.guess
4608                         file shipped with Mac OS X. [RT #1355]
4609
4610  860.   [func]          Drop cross class glue in zone transfers.
4611
4612  859.   [bug]           Cache cleaning now won't swamp the CPU if there
4613                         is a persistent over limit condition.
4614
4615  858.   [func]          isc_mem_setwater() no longer requires that when the
4616                         callback function is non-NULL then its hi_water
4617                         argument must be greater than its lo_water argument
4618                         (they can now be equal) or that they be non-zero.
4619
4620  857.   [cleanup]       Use ISC_MAGIC() to define all magic numbers for
4621                         structs, for our friends in EBCDIC-land.
4622
4623  856.   [func]          Allow partial rdatasets to be returned in answer and
4624                         authority sections to help non-TCP capable clients
4625                         recover from truncation. [RT #1301]
4626
4627  855.   [bug]           Stop spurious "using RFC 1035 TTL semantics" warnings.
4628
4629  854.   [bug]           The config parser didn't properly handle config
4630                         options that were specified in units of time other
4631                         than seconds. [RT #1372]
4632
4633  853.   [bug]           configure_view_acl() failed to detach existing acls.
4634                         [RT #1374]
4635
4636  852.   [bug]           Handle responses from servers which do not know
4637                         about IXFR.
4638
4639  851.   [cleanup]       The obsolete support-ixfr option was not properly
4640                         ignored.
4641
4642         --- 9.2.0a1 released ---
4643
4644  850.   [bug]           dns_rbt_findnode() would not find nodes that were
4645                         split on a bitstring label somewhere other than in
4646                         the last label of the node. [RT #1351]
4647
4648  849.   [func]          <isc/net.h> will ensure INADDR_LOOPBACK is defined.
4649
4650  848.   [func]          A minimum max-cache-size of two megabytes is enforced
4651                         by the cache cleaner.
4652
4653  847.   [func]          Added isc_file_test(), which currently only has
4654                         some very basic functionality to test for the
4655                         existence of a file, whether a pathname is absolute,
4656                         or whether a pathname is the fundamental representation
4657                         of the current directory.  It is intended that this
4658                         function can be expanded to test other things a
4659                         programmer might want to know about a file.
4660
4661  846.   [func]          A non-zero 'param' to dst_key_generate() when making an
4662                         hmac-md5 key means that good entropy is not required.
4663
4664  845.   [bug]           The access rights on the public file of a symmetric
4665                         key are now restricted as soon as the file is opened,
4666                         rather than after it has been written and closed.
4667
4668  844.   [func]          <isc/net.h> will ensure INADDR_LOOPBACK is defined,
4669                         just as <lwres/net.h> does.
4670
4671  843.   [func]          If no controls statement is present in named.conf,
4672                         or if any inet phrase of a controls statement is
4673                         lacking a keys clause, then a key will be automatically
4674                         generated by named and an rndc.conf-style file
4675                         named named.key will be written that uses it.  rndc
4676                         will use this file only if its normal configuration
4677                         file, or one provided on the command line, does not
4678                         exist.
4679
4680  842.   [func]          'rndc flush' now takes an optional view.
4681
4682  841.   [bug]           When sdb modules were not declared threadsafe, their
4683                         create and destroy functions were not serialized.
4684
4685  840.   [bug]           The config file parser could print the wrong file
4686                         name if an error was detected after an included file
4687                         was parsed. [RT #1353]
4688
4689  839.   [func]          Dump packets for which there was no view or that the
4690                         class could not be determined to category "unmatched".
4691
4692  838.   [port]          UnixWare 7.x.x is now suported by
4693                         bin/tests/system/ifconfig.sh.
4694
4695  837.   [cleanup]       Multi-threading is now enabled by default only on
4696                         OSF1, Solaris 2.7 and newer, and AIX.
4697
4698  836.   [func]          Upgraded libtool to 1.4.
4699
4700  835.   [bug]           The dispatcher could enter a busy loop if
4701                         it got an I/O error receiving on a UDP socket.
4702                         [RT #1293]
4703
4704  834.   [func]          Accept (but warn about) master files beginning with
4705                         an SOA record without an explicit TTL field and
4706                         lacking a $TTL directive, by using the SOA MINTTL
4707                         as a default TTL.  This is for backwards compatibility
4708                         with old versions of BIND 8, which accepted such
4709                         files without warning although they are illegal
4710                         according to RFC1035.
4711
4712  833.   [cleanup]       Moved dns_soa_*() from <dns/journal.h> to
4713                         <dns/soa.h>, and extended them to support
4714                         all the integer-valued fields of the SOA RR.
4715
4716  832.   [bug]           The default location for named.conf in named-checkconf
4717                         should depend on --sysconfdir like it does in named.
4718                         [RT #1258]
4719
4720  831.   [placeholder]
4721
4722  830.   [func]          Implement 'rndc status'.
4723
4724  829.   [bug]           The DNS_R_ZONECUT result code should only be returned
4725                         when an ANY query is made with DNS_DBFIND_GLUEOK set.
4726                         In all other ANY query cases, returning the delegation
4727                         is better.
4728
4729  828.   [bug]           The errno value from recvfrom() could be overwritten
4730                         by logging code. [RT #1293]
4731
4732  827.   [bug]           When an IXFR protocol error occurs, the slave
4733                         should retry with AXFR.
4734
4735  826.   [bug]           Some IXFR protocol errors were not detected.
4736
4737  825.   [bug]           zone.c:ns_query() detached from the wrong zone
4738                         reference. [RT #1264]
4739
4740  824.   [bug]           Correct line numbers reported by dns_master_load().
4741                         [RT #1263]
4742
4743  823.   [func]          The output of "dig -h" now goes to stdout so that it
4744                         can easily be piped through "more". [RT #1254]
4745
4746  822.   [bug]           Sending nxrrset prerequisites would crash nsupdate.
4747                         [RT #1248]
4748
4749  821.   [bug]           The program name used when logging to syslog should
4750                         be stripped of leading path components.
4751                         [RT #1178, #1232]
4752
4753  820.   [bug]           Name server address lookups failed to follow
4754                         A6 chains into the glue of local authoritative
4755                         zones.
4756
4757  819.   [bug]           In certain cases, the resolver's attempts to
4758                         restart an address lookup at the root could cause
4759                         the fetch to deadlock (with itself) instead of
4760                         restarting. [RT #1225]
4761
4762  818.   [bug]           Certain pathological responses to ANY queries could
4763                         cause an assertion failure. [RT #1218]
4764
4765  817.   [func]          Adjust timeouts for dialup zone queries.
4766
4767  816.   [bug]           Report potential problems with log file accessibility
4768                         at configuration time, since such problems can't
4769                         reliably be reported at the time they actually occur.
4770
4771  815.   [bug]           If a log file was specified with a path separator
4772                         character (i.e. "/") in its name and the directory
4773                         did not exist, the log file's name was treated as
4774                         though it were the directory name. [RT #1189]
4775
4776  814.   [bug]           Socket objects left over from accept() failures
4777                         were incorrectly destroyed, causing corruption
4778                         of socket manager data structures.
4779
4780  813.   [bug]           File descriptors exceeding FD_SETSIZE were handled
4781                         badly. [RT #1192]
4782
4783  812.   [bug]           dig sometimes printed incomplete IXFR responses
4784                         due to an uninitialized variable. [RT #1188]
4785
4786  811.   [bug]           Parentheses were not quoted in zone dumps. [RT #1194]
4787
4788  810.   [bug]           The signer name in SIG records was not properly
4789                         down-cased when signing/verifying records. [RT #1186]
4790
4791  809.   [bug]           Configuring a non-local address as a transfer-source
4792                         could cause an assertion failure during load.
4793
4794  808.   [func]          Add 'rndc flush' to flush the server's cache.
4795
4796  807.   [bug]           When setting up TCP connections for incoming zone
4797                         transfers, the transfer-source port was not
4798                         ignored like it should be.
4799
4800  806.   [bug]           DNS_R_SEENINCLUDE was failing to propagate back up
4801                         the calling stack to the zone maintenance level,
4802                         causing zones to not reload when an included file was
4803                         touched but the top-level zone file was not.
4804
4805  805.   [bug]           When using "forward only", missing root hints should
4806                         not cause queries to fail. [RT #1143]
4807
4808  804.   [bug]           Attempting to obtain entropy could fail in some
4809                         situations.  This would be most common on systems
4810                         with user-space threads. [RT #1131]
4811
4812  803.   [bug]           Treat all SIG queries as if they have the CD bit set,
4813                         otherwise no data will be returned [RT #749]
4814
4815  802.   [bug]           DNSSEC key tags were computed incorrectly in almost
4816                         all cases. [RT #1146]
4817
4818  801.   [bug]           nsupdate should treat lines beginning with ';' as
4819                         comments. [RT #1139]
4820
4821  800.   [bug]           dnssec-signzone produced incorrect statistics for
4822                         large zones. [RT #1133]
4823
4824  799.   [bug]           The ADB didn't find AAAA glue in a zone unless A6
4825                         glue was also present.
4826
4827  798.   [bug]           nsupdate should be able to reject bad input lines
4828                         and continue. [RT #1130]
4829
4830  797.   [func]          Issue a warning if the 'directory' option contains
4831                         a relative path. [RT #269]
4832
4833  796.   [func]          When a size limit is associated with a log file,
4834                         only roll it when the size is reached, not every
4835                         time the log file is opened. [RT #1096]
4836
4837  795.   [func]          Add the +multiline option to dig. [RT #1095]
4838
4839  794.   [func]          Implement the "port" and "default-port" statements
4840                         in rndc.conf.
4841
4842  793.   [cleanup]       The DNSSEC tools could create filenames that were
4843                         illegal or contained shell meta-characters.  They
4844                         now use a different text encoding of names that
4845                         doesn't have these problems. [RT #1101]
4846
4847  792.   [cleanup]       Replace the OMAPI command channel protocol with a
4848                         simpler one.
4849
4850  791.   [bug]           The command channel now works over IPv6.
4851
4852  790.   [bug]           Wildcards created using dynamic update or IXFR
4853                         could fail to match. [RT #1111]
4854
4855  789.   [bug]           The "localhost" and "localnets" ACLs did not match
4856                         when used as the second element of a two-element
4857                         sortlist item.
4858
4859  788.   [func]          Add the "match-mapped-addresses" option, which
4860                         causes IPv6 v4mapped addresses to be treated as
4861                         IPv4 addresses for the purpose of acl matching.
4862
4863  787.   [bug]           The DNSSEC tools failed to downcase domain
4864                         names when mapping them into file names.
4865
4866  786.   [bug]           When DNSSEC signing/verifying data, owner names were
4867                         not properly down-cased.
4868
4869  785.   [bug]           A race condition in the resolver could cause
4870                         an assertion failure. [RT #673, #872, #1048]
4871
4872  784.   [bug]           nsupdate and other programs would not quit properly
4873                         if some signals were blocked by the caller. [RT #1081]
4874
4875  783.   [bug]           Following CNAMEs could cause an assertion failure
4876                         when either using an sdb database or under very
4877                         rare conditions.
4878
4879  782.   [func]          Implement the "serial-query-rate" option.
4880
4881  781.   [func]          Avoid error packet loops by dropping duplicate FORMERR
4882                         responses. [RT #1006]
4883
4884  780.   [bug]           Error handling code dealing with out of memory or
4885                         other rare errors could lead to assertion failures
4886                         by calling functions on uninitialized names. [RT #1065]
4887
4888  779.   [func]          Added the "minimal-responses" option.
4889
4890  778.   [bug]           When starting cache cleaning, cleaning_timer_action()
4891                         returned without first pausing the iterator, which
4892                         could cause deadlock. [RT #998]
4893
4894  777.   [bug]           An empty forwarders list in a zone failed to override
4895                         global forwarders. [RT #995]
4896
4897  776.   [func]          Improved error reporting in denied messages. [RT #252]
4898
4899  775.   [placeholder]
4900
4901  774.   [func]          max-cache-size is implemented.
4902
4903  773.   [func]          Added isc_rwlock_trylock() to attempt to lock without
4904                         blocking.
4905
4906  772.   [bug]           Owner names could be incorrectly omitted from cache
4907                         dumps in the presence of negative caching entries.
4908                         [RT #991]
4909
4910  771.   [cleanup]       TSIG errors related to unsynchronized clocks
4911                         are logged better. [RT #919]
4912
4913  770.   [func]          Add the "edns yes_or_no" statement to the server
4914                         clause. [RT #524]
4915
4916  769.   [func]          Improved error reporting when parsing rdata. [RT #740]
4917
4918  768.   [bug]           The server did not emit an SOA when a CNAME
4919                         or DNAME chain ended in NXDOMAIN in an
4920                         authoritative zone.
4921
4922  767.   [placeholder]
4923
4924  766.   [bug]           A few cases in query_find() could leak fname.
4925                         This would trigger the mpctx->allocated == 0
4926                         assertion when the server exited.
4927                         [RT #739, #776, #798, #812, #818, #821, #845,
4928                         #892, #935, #966]
4929
4930  765.   [func]          ACL names are once again case insensitive, like
4931                         in BIND 8. [RT #252]
4932
4933  764.   [func]          Configuration files now allow "include" directives
4934                         in more places, such as inside the "view" statement.
4935                         [RT #377, #728, #860]
4936
4937  763.   [func]          Configuration files no longer have reserved words.
4938                         [RT #731, #753]
4939
4940  762.   [cleanup]       The named.conf and rndc.conf file parsers have
4941                         been completely rewritten.
4942
4943  761.   [bug]           _REENTRANT was still defined when building with
4944                         --disable-threads.
4945
4946  760.   [contrib]       Significant enhancements to the pgsql sdb driver.
4947
4948  759.   [bug]           The resolver didn't turn off "avoid fetches" mode
4949                         when restarting, possibly causing resolution
4950                         to fail when it should not.  This bug only affected
4951                         platforms which support both IPv4 and IPv6. [RT #927]
4952
4953  758.   [bug]           The "avoid fetches" code did not treat negative
4954                         cache entries correctly, causing fetches that would
4955                         be useful to be avoided.  This bug only affected
4956                         platforms which support both IPv4 and IPv6. [RT #927]
4957
4958  757.   [func]          Log zone transfers.
4959
4960  756.   [bug]           dns_zone_load() could "return" success when no master
4961                         file was configured.
4962
4963  755.   [bug]           Fix incorrectly formatted log messages in zone.c.
4964
4965  754.   [bug]           Certain failure conditions sending UDP packets
4966                         could cause the server to retry the transmission
4967                         indefinitely. [RT #902]
4968
4969  753.   [bug]           dig, host, and nslookup would fail to contact a
4970                         remote server if getaddrinfo() returned an IPv6
4971                         address on a system that doesn't support IPv6.
4972                         [RT #917]
4973
4974  752.   [func]          Correct bad tv_usec elements returned by
4975                         gettimeofday().
4976
4977  751.   [func]          Log successful zone loads / transfers.  [RT #898]
4978
4979  750.   [bug]           A query should not match a DNAME whose trust level
4980                         is pending. [RT #916]
4981
4982  749.   [bug]           When a query matched a DNAME in a secure zone, the
4983                         server did not return the signature of the DNAME.
4984                         [RT #915]
4985
4986  748.   [doc]           List supported RFCs in doc/misc/rfc-compliance.
4987                         [RT #781]
4988
4989  747.   [bug]           The code to determine whether an IXFR was possible
4990                         did not properly check for a database that could
4991                         not have a journal. [RT #865, #908]
4992
4993  746.   [bug]           The sdb didn't clone rdatasets properly, causing
4994                         a crash when the server followed delegations. [RT #905]
4995
4996  745.   [func]          Report the owner name of records that fail
4997                         semantic checks while loading.
4998
4999  744.   [bug]           When returning DNS_R_CNAME or DNS_R_DNAME as the
5000                         result of an ANY or SIG query, the resolver failed
5001                         to setup the return event's rdatasets, causing an
5002                         assertion failure in the query code. [RT #881]
5003
5004  743.   [bug]           Receiving a large number of certain malformed
5005                         answers could cause named to stop responding.
5006                         [RT #861]
5007
5008  742.   [placeholder]
5009
5010  741.   [port]          Support openssl-engine. [RT #709]
5011
5012  740.   [port]          Handle openssl library mismatches slightly better.
5013
5014  739.   [port]          Look for /dev/random in configure, rather than
5015                         assuming it will be there for only a predefined
5016                         set of OSes.
5017
5018  738.   [bug]           If a non-threadsafe sdb driver supported AXFR and
5019                         received an AXFR request, it would deadlock or die
5020                         with an assertion failure. [RT #852]
5021
5022  737.   [port]          stdtime.c failed to compile on certain platforms.
5023
5024  736.   [func]          New functions isc_task_{begin,end}exclusive().
5025
5026  735.   [doc]           Add BIND 4 migration notes.
5027
5028  734.   [bug]           An attempt to re-lock the zone lock could occur if
5029                         the server was shutdown during a zone transfer.
5030                         [RT #830]
5031
5032  733.   [bug]           Reference counts of dns_acl_t objects need to be
5033                         locked but were not. [RT #801, #821]
5034
5035  732.   [bug]           Glue with 0 TTL could also cause SERVFAIL. [RT #828]
5036
5037  731.   [bug]           Certain zone errors could cause named-checkzone to
5038                         fail ungracefully. [RT #819]
5039
5040  730.   [bug]           lwres_getaddrinfo() returns the correct result when
5041                         it fails to contact a server. [RT #768]
5042
5043  729.   [port]          pthread_setconcurrency() needs to be called on Solaris.
5044
5045  728.   [bug]           Fix comment processing on master file directives.
5046                         [RT# 757]
5047
5048  727.   [port]          Work around OS bug where accept() succeeds but
5049                         fails to fill in the peer address of the accepted
5050                         connection, by treating it as an error rather than
5051                         an assertion failure. [RT #809]
5052
5053  726.   [func]          Implement the "trace" and "notrace" commands in rndc.
5054
5055  725.   [bug]           Installing man pages could fail.
5056
5057  724.   [func]          New libisc functions isc_netaddr_any(),
5058                         isc_netaddr_any6().
5059
5060  723.   [bug]           Referrals whose NS RRs had a 0 TTL caused the resolver
5061                         to return DNS_R_SERVFAIL. [RT #783]
5062
5063  722.   [func]          Allow incremental loads to be canceled.
5064
5065  721.   [cleanup]       Load manager and dns_master_loadfilequota() are no
5066                         more.
5067
5068  720.   [bug]           Server could enter infinite loop in
5069                         dispatch.c:do_cancel(). [RT #733]
5070
5071  719.   [bug]           Rapid reloads could trigger an assertion failure.
5072                         [RT #743, #763]
5073
5074  718.   [cleanup]       "internal" is no longer a reserved word in named.conf.
5075                         [RT #753, #731]
5076
5077  717.   [bug]           Certain TKEY processing failure modes could
5078                         reference an uninitialized variable, causing the
5079                         server to crash. [RT #750]
5080
5081  716.   [bug]           The first line of a $INCLUDE master file was lost if
5082                         an origin was specified. [RT #744]
5083
5084  715.   [bug]           Resolving some A6 chains could cause an assertion
5085                         failure in adb.c. [RT #738]
5086
5087  714.   [bug]           Preserve interval timers across reloads unless changed.
5088                         [RT# 729]
5089
5090  713.   [func]          named-checkconf takes '-t directory' similar to named.
5091                         [RT #726]
5092
5093  712.   [bug]           Sending a large signed update message caused an
5094                         assertion failure. [RT #718]
5095
5096  711.   [bug]           The libisc and liblwres implementations of
5097                         inet_ntop contained an off by one error.
5098
5099  710.   [func]          The forwarders statement now takes an optional
5100                         port. [RT #418]
5101
5102  709.   [bug]           ANY or SIG queries for data with a TTL of 0
5103                         would return SERVFAIL. [RT #620]
5104
5105  708.   [bug]           When building with --with-openssl, the openssl headers
5106                         included with BIND 9 should not be used. [RT #702]
5107
5108  707.   [func]          The "filename" argument to named-checkzone is no
5109                         longer optional, to reduce confusion. [RT #612]
5110
5111  706.   [bug]           Zones with an explicit "allow-update { none; };"
5112                         were considered dynamic and therefore not reloaded
5113                         on SIGHUP or "rndc reload".
5114
5115  705.   [port]          Work out resource limit type for use where rlim_t is
5116                         not available. [RT #695]
5117
5118  704.   [port]          RLIMIT_NOFILE is not available on all platforms.
5119                         [RT #695]
5120
5121  703.   [port]          sys/select.h is needed on older platforms. [RT #695]
5122
5123  702.   [func]          If the address 0.0.0.0 is seen in resolv.conf,
5124                         use 127.0.0.1 instead. [RT #693]
5125
5126  701.   [func]          Root hints are now fully optional.  Class IN
5127                         views use compiled-in hints by default, as
5128                         before.  Non-IN views with no root hints now
5129                         provide authoritative service but not recursion.
5130                         A warning is logged if a view has neither root
5131                         hints nor authoritative data for the root. [RT #696]
5132
5133  700.   [bug]           $GENERATE range check was wrong. [RT #688]
5134
5135  699.   [bug]           The lexer mishandled empty quoted strings. [RT #694]
5136
5137  698.   [bug]           Aborting nsupdate with ^C would lead to several
5138                         race conditions.
5139
5140  697.   [bug]           nsupdate was not compatible with the undocumented
5141                         BIND 8 behavior of ignoring TTLs in "update delete"
5142                         commands. [RT #693]
5143
5144  696.   [bug]           lwresd would die with an assertion failure when passed
5145                         a zero-length name. [RT #692]
5146
5147  695.   [bug]           If the resolver attempted to query a blackholed or
5148                         bogus server, the resolution would fail immediately.
5149
5150  694.   [bug]           $GENERATE did not produce the last entry.
5151                         [RT #682, #683]
5152
5153  693.   [bug]           An empty lwres statement in named.conf caused
5154                         the server to crash while loading.
5155
5156  692.   [bug]           Deal with systems that have getaddrinfo() but not
5157                         gai_strerror(). [RT #679]
5158
5159  691.   [bug]           Configuring per-view forwarders caused an assertion
5160                         failure. [RT #675, #734]
5161
5162  690.   [func]          $GENERATE now supports DNAME. [RT #654]
5163
5164  689.   [doc]           man pages are now installed. [RT #210]
5165
5166  688.   [func]          "make tags" now works on systems with the
5167                         "Exuberant Ctags" etags.
5168
5169  687.   [bug]           Only say we have IPv6, with sufficient functionality,
5170                         if it has actually been tested. [RT #586]
5171
5172  686.   [bug]           dig and nslookup can now be properly aborted during
5173                         blocking operations. [RT #568]
5174
5175  685.   [bug]           nslookup should use the search list/domain options
5176                         from resolv.conf by default. [RT #405, #630]
5177
5178  684.   [bug]           Memory leak with view forwarders. [RT #656]
5179
5180  683.   [bug]           File descriptor leak in isc_lex_openfile().
5181
5182  682.   [bug]           nslookup displayed SOA records incorrectly. [RT #665]
5183
5184  681.   [bug]           $GENERATE specifying output format was broken. [RT #653]
5185
5186  680.   [bug]           dns_rdata_fromstruct() mishandled options bigger
5187                         than 255 octets.
5188
5189  679.   [bug]           $INCLUDE could leak memory and file descriptors on
5190                         reload. [RT #639]
5191
5192  678.   [bug]           "transfer-format one-answer;" could trigger an assertion
5193                         failure. [RT #646]
5194
5195  677.   [bug]           dnssec-signzone would occasionally use the wrong ttl
5196                         for database operations and fail. [RT #643]
5197
5198  676.   [bug]           Log messages about lame servers to category
5199                         'lame-servers' rather than 'resolver', so as not
5200                         to be gratuitously incompatible with BIND 8.
5201
5202  675.   [bug]           TKEY queries could cause the server to leak
5203                         memory.
5204
5205  674.   [func]          Allow messages to be TSIG signed / verified using
5206                         a offset from the current time.
5207
5208  673.   [func]          The server can now convert RFC1886-style recursive
5209                         lookup requests into RFC2874-style lookups, when
5210                         enabled using the new option "allow-v6-synthesis".
5211
5212  672.   [bug]           The wrong time was in the "time signed" field when
5213                         replying with BADTIME error.
5214
5215  671.   [bug]           The message code was failing to parse a message with
5216                         no question section and a TSIG record. [RT #628]
5217
5218  670.   [bug]           The lwres replacements for getaddrinfo and
5219                         getipnodebyname didn't properly check for the
5220                         existence of the sockaddr sa_len field.
5221
5222  669.   [bug]           dnssec-keygen now makes the public key file
5223                         non-world-readable for symmetric keys. [RT #403]
5224
5225  668.   [func]          named-checkzone now reports multiple errors in master
5226                         files.
5227
5228  667.   [bug]           On Linux, running named with the -u option and a
5229                         non-world-readable configuration file didn't work.
5230                         [RT #626]
5231
5232  666.   [bug]           If a request sent by dig is longer than 512 bytes,
5233                         use TCP.
5234
5235  665.   [bug]           Signed responses were not sent when the size of the
5236                         TSIG + question exceeded the maximum message size.
5237                         [RT #628]
5238
5239  664.   [bug]           The t_tasks and t_timers module tests are now skipped
5240                         when building without threads, since they require
5241                         threads.
5242
5243  663.   [func]          Accept a size_spec, not just an integer, in the
5244                         (unimplemented and ignored) max-ixfr-log-size option
5245                         for compatibility with recent versions of BIND 8.
5246                         [RT #613]
5247
5248  662.   [bug]           dns_rdata_fromtext() failed to log certain errors.
5249
5250  661.   [bug]           Certain UDP IXFR requests caused an assertion failure
5251                         (mpctx->allocated == 0). [RT #355, #394, #623]
5252
5253  660.   [port]          Detect multiple CPUs on HP-UX and IRIX.
5254
5255  659.   [performance]   Rewrite the name compression code to be much faster.
5256
5257  658.   [cleanup]       Remove all vestiges of 16 bit global compression.
5258
5259  657.   [bug]           When a listen-on statement in an lwres block does not
5260                         specify a port, use 921, not 53.  Also update the
5261                         listen-on documentation. [RT #616]
5262
5263  656.   [func]          Treat an unescaped newline in a quoted string as
5264                         an error.  This means that TXT records with missing
5265                         close quotes should have meaningful errors printed.
5266
5267  655.   [bug]           Improve error reporting on unexpected eof when loading
5268                         zones. [RT #611]
5269
5270  654.   [bug]           Origin was being forgotten in TCP retries in dig.
5271                         [RT #574]
5272
5273  653.   [bug]           +defname option in dig was reversed in sense.
5274                         [RT #549]
5275
5276  652.   [bug]           zone_saveunique() did not report the new name.
5277
5278  651.   [func]          The AD bit in responses now has the meaning
5279                         specified in <draft-ietf-dnsext-ad-is-secure>.
5280
5281  650.   [bug]           SIG(0) records were being generated and verified
5282                         incorrectly. [RT #606]
5283
5284  649.   [bug]           It was possible to join to an already running fctx
5285                         after it had "cloned" its events, but before it sent
5286                         them.  In this case, the event of the newly joined
5287                         fetch would not contain the answer, and would
5288                         trigger the INSIST() in fctx_sendevents().  In
5289                         BIND 9.0, this bug did not trigger an INSIST(), but
5290                         caused the fetch to fail with a SERVFAIL result.
5291                         [RT #588, #597, #605, #607]
5292
5293  648.   [port]          Add support for pre-RFC2133 IPv6 implementations.
5294
5295  647.   [bug]           Resolver queries sent after following multiple
5296                         referrals had excessively long retransmission
5297                         timeouts due to incorrectly counting the referrals
5298                         as "restarts".
5299
5300  646.   [bug]           The UnixWare ISC_PLATFORM_FIXIN6INADDR fix in isc/net.h
5301                         didn't _cleanly_ fix the problem it was trying to fix.
5302
5303  645.   [port]          BSD/OS 3.0 needs pthread_init(). [RT #603]
5304
5305  644.   [bug]           #622 needed more work. [RT #562]
5306
5307  643.   [bug]           xfrin error messages made more verbose, added class
5308                         of the zone. [RT# 599]
5309
5310  642.   [bug]           Break the exit_check() race in the zone module.
5311                         [RT #598]
5312
5313         --- 9.1.0b2 released ---
5314
5315  641.   [bug]           $GENERATE caused a uninitialized link to be used.
5316                         [RT #595]
5317
5318  640.   [bug]           Memory leak in error path could cause
5319                         "mpctx->allocated == 0" failure. [RT #584]
5320
5321  639.   [bug]           Reading entropy from the keyboard would sometimes fail.
5322                         [RT #591]
5323
5324  638.   [port]          lib/isc/random.c needed to explicitly include time.h
5325                         to get a prototype for time() when pthreads was not
5326                         being used. [RT #592]
5327
5328  637.   [port]          Use isc_u?int64_t instead of (unsigned) long long in
5329                         lib/isc/print.c.  Also allow lib/isc/print.c to
5330                         be compiled even if the platform does not need it.
5331                         [RT #592]
5332
5333  636.   [port]          Shut up MSVC++ about a possible loss of precision
5334                         in the ISC__BUFFER_PUTUINT*() macros. [RT #592]
5335
5336  635.   [bug]           Reloading a server with a configured blackhole list
5337                         would cause an assertion. [RT #590]
5338
5339  634.   [bug]           A log file will completely stop being written when
5340                         it reaches the maximum size in all cases, not just
5341                         when versioning is also enabled. [RT #570]
5342
5343  633.   [port]          Cope with rlim_t missing on BSD/OS systems. [RT #575]
5344
5345  632.   [bug]           The index array of the journal file was
5346                         corrupted as it was written to disk.
5347
5348  631.   [port]          Build without thread support on systems without
5349                         pthreads.
5350
5351  630.   [bug]           Locking failure in zone code. [RT #582]
5352
5353  629.   [bug]           9.1.0b1 dereferenced a null pointer and crashed
5354                         when responding to a UDP IXFR request.
5355
5356  628.   [bug]           If the root hints contained only AAAA addresses,
5357                         named would be unable to perform resolution.
5358
5359  627.   [bug]           The EDNS0 blackhole detection code of change 324
5360                         waited for three retransmissions to each server,
5361                         which takes much too long when a domain has many
5362                         name servers and all of them drop EDNS0 queries.
5363                         Now we retry without EDNS0 after three consecutive
5364                         timeouts, even if they are all from different
5365                         servers. [RT #143]
5366
5367  626.   [bug]           The lightweight resolver daemon no longer crashes
5368                         when asked for a SIG rrset. [RT #558]
5369
5370  625.   [func]          Zones now inherit their class from the enclosing view.
5371
5372  624.   [bug]           The zone object could get timer events after it had
5373                         been destroyed, causing a server crash. [RT #571]
5374
5375  623.   [func]          Added "named-checkconf" and "named-checkzone" program
5376                         for syntax checking named.conf files and zone files,
5377                         respectively.
5378
5379  622.   [bug]           A canceled request could be destroyed before
5380                         dns_request_destroy() was called. [RT #562]
5381
5382  621.   [port]          Disable IPv6 at runtime if IPv6 sockets are unusable.
5383                         This mostly affects Red Hat Linux 7.0, which has
5384                         conflicts between libc and the kernel.
5385
5386  620.   [bug]           dns_master_load*inc() now require 'task' and 'load'
5387                         to be non-null.  Also 'done' will not be called if
5388                         dns_master_load*inc() fails immediately. [RT #565]
5389
5390  619.   [placeholder]
5391
5392  618.   [bug]           Queries to a signed zone could sometimes cause
5393                         an assertion failure.
5394
5395  617.   [bug]           When using dynamic update to add a new RR to an
5396                         existing RRset with a different TTL, the journal
5397                         entries generated from the update did not include
5398                         explicit deletions and re-additions of the existing
5399                         RRs to update their TTL to the new value.
5400
5401  616.   [func]          dnssec-signzone -t output now includes performance
5402                         statistics.
5403
5404  615.   [bug]           dnssec-signzone did not like child keysets signed
5405                         by multiple keys.
5406
5407  614.   [bug]           Checks for uninitialized link fields were prone
5408                         to false positives, causing assertion failures.
5409                         The checks are now disabled by default and may
5410                         be re-enabled by defining ISC_LIST_CHECKINIT.
5411
5412  613.   [bug]           "rndc reload zone" now reloads primary zones.
5413                         It previously only updated slave and stub zones,
5414                         if an SOA query indicated an out of date serial.
5415
5416  612.   [cleanup]       Shutup a ridiculously noisy HP-UX compiler that
5417                         complains relentlessly about how its treatment
5418                         of 'const' has changed as well as how casting
5419                         sometimes tightens alignment constraints.
5420
5421  611.   [func]          allow-notify can be used to permit processing of
5422                         notify messages from hosts other than a slave's
5423                         masters.
5424
5425  610.   [func]          rndc dumpdb is now supported.
5426
5427  609.   [bug]           getrrsetbyname() would crash lwresd if the server
5428                         found more SIGs than answers. [RT #554]
5429
5430  608.   [func]          dnssec-signzone now adds a comment to the zone
5431                         with the time the file was signed.
5432
5433  607.   [bug]           nsupdate would fail if it encountered a CNAME or
5434                         DNAME in a response to an SOA query. [RT #515]
5435
5436  606.   [bug]           Compiling with --disable-threads failed due
5437                         to isc_thread_self() being incorrectly defined
5438                         as an integer rather than a function.
5439
5440  605.   [func]          New function isc_lex_getlasttokentext().
5441
5442  604.   [bug]           The named.conf parser could print incorrect line
5443                         numbers when long comments were present.
5444
5445  603.   [bug]           Make dig handle multiple types or classes on the same
5446                         query more correctly.
5447
5448  602.   [func]          Cope automatically with UnixWare's broken
5449                         IN6_IS_ADDR_* macros. [RT #539]
5450
5451  601.   [func]          Return a non-zero exit code if an update fails
5452                         in nsupdate.
5453
5454  600.   [bug]           Reverse lookups sometimes failed in dig, etc...
5455
5456  599.   [func]          Added four new functions to the libisc log API to
5457                         support i18n messages.  isc_log_iwrite(),
5458                         isc_log_ivwrite(), isc_log_iwrite1() and
5459                         isc_log_ivwrite1() were added.
5460
5461  598.   [bug]           An update-policy statement would cause the server
5462                         to assert while loading. [RT #536]
5463
5464  597.   [func]          dnssec-signzone is now multi-threaded.
5465
5466  596.   [bug]           DNS_RDATASLAB_FORCE and DNS_RDATASLAB_EXACT are
5467                         not mutually exclusive.
5468
5469  595.   [port]          On Linux 2.2, socket() returns EINVAL when it
5470                         should return EAFNOSUPPORT.  Work around this.
5471                         [RT #531]
5472
5473  594.   [func]          sdb drivers are now assumed to not be thread-safe
5474                         unless the DNS_SDBFLAG_THREADSAFE flag is supplied.
5475
5476  593.   [bug]           If a secure zone was missing all its NXTs and
5477                         a dynamic update was attempted, the server entered
5478                         an infinite loop.
5479
5480  592.   [bug]           The sig-validity-interval option now specifies a
5481                         number of days, not seconds.  This matches the
5482                         documentation. [RT #529]
5483
5484         --- 9.1.0b1 released ---
5485
5486  591.   [bug]           Work around non-reentrancy in openssl by disabling
5487                         pre-computation in keys.
5488
5489  590.   [doc]           There are now man pages for the lwres library in
5490                         doc/man/lwres.
5491
5492  589.   [bug]           The server could deadlock if a zone was updated
5493                         while being transferred out.
5494
5495  588.   [bug]           ctx->in_use was not being correctly initialized when
5496                         when pushing a file for $INCLUDE. [RT #523]
5497
5498  587.   [func]          A warning is now printed if the "allow-update"
5499                         option allows updates based on the source IP
5500                         address, to alert users to the fact that this
5501                         is insecure and becoming increasingly so as
5502                         servers capable of update forwarding are being
5503                         deployed.
5504
5505  586.   [bug]           multiple views with the same name were fatal. [RT #516]
5506
5507  585.   [func]          dns_db_addrdataset() and and dns_rdataslab_merge()
5508                         now support 'exact' additions in a similar manner to
5509                         dns_db_subtractrdataset() and dns_rdataslab_subtract().
5510
5511  584.   [func]          You can now say 'notify explicit'; to suppress
5512                         notification of the servers listed in NS records
5513                         and notify only those servers listed in the
5514                         'also-notify' option.
5515
5516  583.   [func]          "rndc querylog" will now toggle logging of
5517                         queries, like "ndc querylog" in BIND 8.
5518
5519  582.   [bug]           dns_zone_idetach() failed to lock the zone.
5520                         [RT #199, #463]
5521
5522  581.   [bug]           log severity was not being correctly processed.
5523                         [RT #485]
5524
5525  580.   [func]          Ignore trailing garbage on incoming DNS packets,
5526                         for interoperability with broken server
5527                         implementations. [RT #491]
5528
5529  579.   [bug]           nsupdate did not take a filename to read update from.
5530                         [RT #492]
5531
5532  578.   [func]          New config option "notify-source", to specify the
5533                         source address for notify messages.
5534
5535  577.   [func]          Log illegal RDATA combinations. e.g. multiple
5536                         singleton types, cname and other data.
5537
5538  576.   [doc]           isc_log_create() description did not match reality.
5539
5540  575.   [bug]           isc_log_create() was not setting internal state
5541                         correctly to reflect the default channels created.
5542
5543  574.   [bug]           TSIG signed queries sent by the resolver would fail to
5544                         have their responses validated and would leak memory.
5545
5546  573.   [bug]           The journal files of IXFRed slave zones were
5547                         inadvertently discarded on server reload, causing
5548                         "journal out of sync with zone" errors on subsequent
5549                         reloads. [RT #482]
5550
5551  572.   [bug]           Quoted strings were not accepted as key names in
5552                         address match lists.
5553
5554  571.   [bug]           It was possible to create an rdataset of singleton
5555                         type which had more than one rdata. [RT #154]
5556                         [RT #279]
5557
5558  570.   [bug]           rbtdb.c allowed zones containing nodes which had
5559                         both a CNAME and "other data". [RT #154]
5560
5561  569.   [func]          The DNSSEC AD bit will not be set on queries which
5562                         have not requested a DNSSEC response.
5563
5564  568.   [func]          Add sample simple database drivers in contrib/sdb.
5565
5566  567.   [bug]           Setting the zone transfer timeout to zero caused an
5567                         assertion failure. [RT #302]
5568
5569  566.   [func]          New public function dns_timer_setidle().
5570
5571  565.   [func]          Log queries more like BIND 8: query logging is now
5572                         done to category "queries", level "info". [RT #169]
5573
5574  564.   [func]          Add sortlist support to lwresd.
5575
5576  563.   [func]          New public functions dns_rdatatype_format() and
5577                         dns_rdataclass_format(), for convenient formatting
5578                         of rdata type/class mnemonics in log messages.
5579
5580  562.   [cleanup]       Moved lib/dns/*conf.c to bin/named where they belong.
5581
5582  561.   [func]          The 'datasize', 'stacksize', 'coresize' and 'files'
5583                         clauses of the options{} statement are now implemented.
5584
5585  560.   [bug]           dns_name_split did not properly the resulting prefix
5586                         when a maximal length bitstring label was split which
5587                         was preceded by another bitstring label. [RT #429]
5588
5589  559.   [bug]           dns_name_split did not properly create the suffix
5590                         when splitting within a maximal length bitstring label.
5591
5592  558.   [func]          New functions, isc_resource_getlimit and
5593                         isc_resource_setlimit.
5594
5595  557.   [func]          Symbolic constants for libisc integral types.
5596
5597  556.   [func]          The DNSSEC OK bit in the EDNS extended flags
5598                         is now implemented.  Responses to queries without
5599                         this bit set will not contain any DNSSEC records.
5600
5601  555.   [bug]           A slave server attempting a zone transfer could
5602                         crash with an assertion failure on certain
5603                         malformed responses from the master. [RT #457]
5604
5605  554.   [bug]           In some cases, not all of the dnssec tools were
5606                         properly installed.
5607
5608  553.   [bug]           Incoming zone transfers deferred due to quota
5609                         were not started when quota was increased but
5610                         only when a transfer in progress finished. [RT #456]
5611
5612  552.   [bug]           We were not correctly detecting the end of all c-style
5613                         comments. [RT #455]
5614
5615  551.   [func]          Implemented the 'sortlist' option.
5616
5617  550.   [func]          Support unknown rdata types and classes.
5618
5619  549.   [bug]           "make" did not immediately abort the build when a
5620                         subdirectory make failed [RT #450].
5621
5622  548.   [func]          The lexer now ungets tokens more correctly.
5623
5624  547.   [placeholder]
5625
5626  546.   [func]          Option 'lame-ttl' is now implemented.
5627
5628  545.   [func]          Name limit and counting options removed from dig;
5629                         they didn't work properly, and cannot be correctly
5630                         implemented without significant changes.
5631
5632  544.   [func]          Add statistics option, enable statistics-file option,
5633                         add RNDC option "dump-statistics" to write out a
5634                         query statistics file.
5635
5636  543.   [doc]           The 'port' option is now documented.
5637
5638  542.   [func]          Add support for update forwarding as required for
5639                         full compliance with RFC2136.  It is turned off
5640                         by default and can be enabled using the
5641                         'allow-update-forwarding' option.
5642
5643  541.   [func]          Add bogus server support.
5644
5645  540.   [func]          Add dialup support.
5646
5647  539.   [func]          Support the blackhole option.
5648
5649  538.   [bug]           fix buffer overruns by 1 in lwres_getnameinfo().
5650
5651  537.   [placeholder]
5652
5653  536.   [func]          Use transfer-source{-v6} when sending refresh queries.
5654                         Transfer-source{-v6} now take a optional port
5655                         parameter for setting the UDP source port.  The port
5656                         parameter is ignored for TCP.
5657
5658  535.   [func]          Use transfer-source{-v6} when forwarding update
5659                         requests.
5660
5661  534.   [func]          Ancestors have been removed from RBT chains.  Ancestor
5662                         information can be discerned via node parent pointers.
5663
5664  533.   [func]          Incorporated name hashing into the RBT database to
5665                         improve search speed.
5666
5667  532.   [func]          Implement DNS UPDATE pseudo records using
5668                         DNS_RDATA_UPDATE flag.
5669
5670  531.   [func]          Rdata really should be initialized before being assigned
5671                         to (dns_rdata_fromwire(), dns_rdata_fromtext(),
5672                         dns_rdata_clone(), dns_rdata_fromregion()),
5673                         check that it is.
5674
5675  530.   [func]          New function dns_rdata_invalidate().
5676
5677  529.   [bug]           521 contained a bug which caused zones to always
5678                         reload.  [RT #410]
5679
5680  528.   [func]          The ISC_LIST_XXXX macros now perform sanity checks
5681                         on their arguments.  ISC_LIST_XXXXUNSAFE can be use
5682                         to skip the checks however use with caution.
5683
5684  527.   [func]          New function dns_rdata_clone().
5685
5686  526.   [bug]           nsupdate incorrectly refused to add RRs with a TTL
5687                         of 0.
5688
5689  525.   [func]          New arguments 'options' for dns_db_subtractrdataset(),
5690                         and 'flags' for dns_rdataslab_subtract() allowing you
5691                         to request that the RR's must exist prior to deletion.
5692                         DNS_R_NOTEXACT is returned if the condition is not met.
5693
5694  524.   [func]          The 'forward' and 'forwarders' statement in
5695                         non-forward zones should work now.
5696
5697  523.   [doc]           The source to the Administrator Reference Manual is
5698                         now an XML file using the DocBook DTD, and is included
5699                         in the distribution.  The plain text version of the
5700                         ARM is temporarily unavailable while we figure out
5701                         how to generate readable plain text from the XML.
5702
5703  522.   [func]          The lightweight resolver daemon can now use
5704                         a real configuration file, and its functionality
5705                         can be provided by a name server.  Also, the -p and -P
5706                         options to lwresd have been reversed.
5707
5708  521.   [bug]           Detect master files which contain $INCLUDE and always
5709                         reload. [RT #196]
5710
5711  520.   [bug]           Upgraded libtool to 1.3.5, which makes shared
5712                         library builds almost work on AIX (and possibly
5713                         others).
5714
5715  519.   [bug]           dns_name_split() would improperly split some bitstring
5716                         labels, zeroing a few of the least significant bits in
5717                         the prefix part.  When such an improperly created
5718                         prefix was returned to the RBT database, the bogus
5719                         label was dutifully stored, corrupting the tree.
5720                         [RT #369]
5721
5722  518.   [bug]           The resolver did not realize that a DNAME which was
5723                         "the answer" to the client's query was "the answer",
5724                         and such queries would fail. [RT #399]
5725
5726  517.   [bug]           The resolver's DNAME code would trigger an assertion
5727                         if there was more than one DNAME in the chain.
5728                         [RT #399]
5729
5730  516.   [bug]           Cache lookups which had a NULL node pointer, e.g.
5731                         those by dns_view_find(), and which would match a
5732                         DNAME, would trigger an INSIST(!search.need_cleanup)
5733                         assertion. [RT #399]
5734
5735  515.   [bug]           The ssu table was not being attached / detached
5736                         by dns_zone_[sg]etssutable. [RT#397]
5737
5738  514.   [func]          Retry refresh and notify queries if they timeout.
5739                         [RT #388]
5740
5741  513.   [func]          New functionality added to rdnc and server to allow
5742                         individual zones to be refreshed or reloaded.
5743
5744  512.   [bug]           The zone transfer code could throw an exception with
5745                         an invalid IXFR stream.
5746
5747  511.   [bug]           The message code could throw an assertion on an
5748                         out of memory failure. [RT #392]
5749
5750  510.   [bug]           Remove spurious view notify warning. [RT #376]
5751
5752  509.   [func]          Add support for write of zone files on shutdown.
5753
5754  508.   [func]          dns_message_parse() can now do a best-effort
5755                         attempt, which should allow dig to print more invalid
5756                         messages.
5757
5758  507.   [func]          New functions dns_zone_flush(), dns_zt_flushanddetach()
5759                         and dns_view_flushanddetach().
5760
5761  506.   [func]          Do not fail to start on errors in zone files.
5762
5763  505.   [bug]           nsupdate was printing "unknown result code". [RT #373]
5764
5765  504.   [bug]           The zone was not being marked as dirty when updated via
5766                         IXFR.
5767
5768  503.   [bug]           dumptime was not being set along with
5769                         DNS_ZONEFLG_NEEDDUMP.
5770
5771  502.   [func]          On a SERVFAIL reply, DiG will now try the next server
5772                         in the list, unless the +fail option is specified.
5773
5774  501.   [bug]           Incorrect port numbers were being displayed by
5775                         nslookup. [RT #352]
5776
5777  500.   [func]          Nearly useless +details option removed from DiG.
5778
5779  499.   [func]          In DiG, specifying a class with -c or type with -t
5780                         changes command-line parsing so that classes and
5781                         types are only recognized if following -c or -t.
5782                         This allows hosts with the same name as a class or
5783                         type to be looked up.
5784
5785  498.   [doc]           There is now a man page for "dig"
5786                         in doc/man/bin/dig.1.
5787
5788  497.   [bug]           The error messages printed when an IP match list
5789                         contained a network address with a nonzero host
5790                         part where not sufficiently detailed. [RT #365]
5791
5792  496.   [bug]           named didn't sanity check numeric parameters. [RT #361]
5793
5794  495.   [bug]           nsupdate was unable to handle large records. [RT #368]
5795
5796  494.   [func]          Do not cache NXDOMAIN responses for SOA queries.
5797
5798  493.   [func]          Return non-cachable (ttl = 0) NXDOMAIN responses
5799                         for SOA queries.  This makes it easier to locate
5800                         the containing zone without polluting intermediate
5801                         caches.
5802
5803  492.   [bug]           attempting to reload a zone caused the server fail
5804                         to shutdown cleanly. [RT #360]
5805
5806  491.   [bug]           nsupdate would segfault when sending certain
5807                         prerequisites with empty RDATA. [RT #356]
5808
5809  490.   [func]          When a slave/stub zone has not yet successfully
5810                         obtained an SOA containing the zone's configured
5811                         retry time, perform the SOA query retries using
5812                         exponential backoff. [RT #337]
5813
5814  489.   [func]          The zone manager now has a "i/o" queue.
5815
5816  488.   [bug]           Locks weren't properly destroyed in some cases.
5817
5818  487.   [port]          flockfile() is not defined on all systems.
5819
5820  486.   [bug]           nslookup: "set all" and "server" commands showed
5821                         the incorrect port number if a port other than 53
5822                         was specified. [RT #352]
5823
5824  485.   [func]          When dig had more than one server to query, it would
5825                         send all of the messages at the same time.  Add
5826                         rate limiting of the transmitted messages.
5827
5828  484.   [bug]           When the server was reloaded after removing addresses
5829                         from the named.conf "listen-on" statement, sockets
5830                         were still listening on the removed addresses due
5831                         to reference count loops. [RT #325]
5832
5833  483.   [bug]           nslookup: "set all" showed a "search" option but it
5834                         was not settable.
5835
5836  482.   [bug]           nslookup: a plain "server" or "lserver" should be
5837                         treated as a lookup.
5838
5839  481.   [bug]           nslookup:get_next_command() stack size could exceed
5840                         per thread limit.
5841
5842  480.   [bug]           strtok() is not thread safe. [RT #349]
5843
5844  479.   [func]          The test suite can now be run by typing "make check"
5845                         or "make test" at the top level.
5846
5847  478.   [bug]           "make install" failed if the directory specified with
5848                         --prefix did not already exist.
5849
5850  477.   [bug]           The the isc-config.sh script could be installed before
5851                         its directory was created. [RT #324]
5852
5853  476.   [bug]           A zone could expire while a zone transfer was in
5854                         progress triggering a INSIST failure. [RT #329]
5855
5856  475.   [bug]           query_getzonedb() sometimes returned a non-null version
5857                         on failure.  This caused assertion failures when
5858                         generating query responses where names subject to
5859                         additional section processing pointed to a zone
5860                         to which access had been denied by means of the
5861                         allow-query option. [RT #336]
5862
5863  474.   [bug]           The mnemonic of the CHAOS class is CH according to
5864                         RFC1035, but it was printed and read only as CHAOS.
5865                         We now accept both forms as input, and print it
5866                         as CH. [RT #305]
5867
5868  473.   [bug]           nsupdate overran the end of the list of name servers
5869                         when no servers could be reached, typically causing
5870                         it to print the error message "dns_request_create:
5871                         not implemented".
5872
5873  472.   [bug]           Off-by-one error caused isc_time_add() to sometimes
5874                         produce invalid time values.
5875
5876  471.   [bug]           nsupdate didn't compile on HP/UX 10.20
5877
5878  470.   [func]          $GENERATE is now supported.  See also
5879                         doc/misc/migration.
5880
5881  469.   [bug]           "query-source address * port 53;" now works.
5882
5883  468.   [bug]           dns_master_load*() failed to report file and line
5884                         number in certain error conditions.
5885
5886  467.   [bug]           dns_master_load*() failed to log an error if
5887                         pushfile() failed.
5888
5889  466.   [bug]           dns_master_load*() could return success when it failed.
5890
5891  465.   [cleanup]       Allow 0 to be set as an omapi_value_t value by
5892                         omapi_value_storeint().
5893
5894  464.   [cleanup]       Build with openssl's RSA code instead of dnssafe.
5895
5896  463.   [bug]           nsupdate sent malformed SOA queries to the second
5897                         and subsequent name servers in resolv.conf if the
5898                         query sent to the first one failed.
5899
5900  462.   [bug]           --disable-ipv6 should work now.
5901
5902  461.   [bug]           Specifying an unknown key in the "keys" clause of the
5903                         "controls" statement caused a NULL pointer dereference.
5904                         [RT #316]
5905
5906  460.   [bug]           Much of the DNSSEC code only worked with class IN.
5907
5908  459.   [bug]           Nslookup processed the "set" command incorrectly.
5909
5910  458.   [bug]           Nslookup didn't properly check class and type values.
5911                         [RT #305]
5912
5913  457.   [bug]           Dig/host/hslookup didn't properly handle connect
5914                         timeouts in certain situations, causing an
5915                         unnecessary warning message to be printed.
5916
5917  456.   [bug]           Stub zones were not resetting the refresh and expire
5918                         counters, loadtime or clearing the DNS_ZONE_REFRESH
5919                         (refresh in progress) flag upon successful update.
5920                         This disabled further refreshing of the stub zone,
5921                         causing it to eventually expire. [RT #300]
5922
5923  455.   [doc]           Document IPv4 prefix notation does not require a
5924                         dotted decimal quad but may be just dotted decimal.
5925
5926  454.   [bug]           Enforce dotted decimal and dotted decimal quad where
5927                         documented as such in named.conf. [RT #304, RT #311]
5928
5929  453.   [bug]           Warn if the obsolete option "maintain-ixfr-base"
5930                         is specified in named.conf. [RT #306]
5931
5932  452.   [bug]           Warn if the unimplemented option "statistics-file"
5933                         is specified in named.conf. [RT #301]
5934
5935  451.   [func]          Update forwarding implemented.
5936
5937  450.   [func]          New function ns_client_sendraw().
5938
5939  449.   [bug]           isc_bitstring_copy() only works correctly if the
5940                         two bitstrings have the same lsb0 value, but this
5941                         requirement was not documented, nor was there a
5942                         REQUIRE for it.
5943
5944  448.   [bug]           Host output formatting change, to match v8. [RT #255]
5945
5946  447.   [bug]           Dig didn't properly retry in TCP mode after
5947                         a truncated reply. [RT #277]
5948
5949  446.   [bug]           Confusing notify log message. [RT #298]
5950
5951  445.   [bug]           Doing a 0 bit isc_bitstring_copy() of an lsb0
5952                         bitstring triggered a REQUIRE statement.  The REQUIRE
5953                         statement was incorrect. [RT #297]
5954
5955  444.   [func]          "recursion denied" messages are always logged at
5956                         debug level 1, now, rather than sometimes at ERROR.
5957                         This silences these warnings in the usual case, where
5958                         some clients set the RD bit in all queries.
5959
5960  443.   [bug]           When loading a master file failed because of an
5961                         unrecognized RR type name, the error message
5962                         did not include the file name and line number.
5963                         [RT #285]
5964
5965  442.   [bug]           TSIG signed messages that did not match any view
5966                         crashed the server. [RT #290]
5967
5968  441.   [bug]           Nodes obscured by a DNAME were inaccessible even
5969                         when DNS_DBFIND_GLUEOK was set.
5970
5971  440.   [func]          New function dns_zone_forwardupdate().
5972
5973  439.   [func]          New function dns_request_createraw().
5974
5975  438.   [func]          New function dns_message_getrawmessage().
5976
5977  437.   [func]          Log NOTIFY activity to the notify channel.
5978
5979  436.   [bug]           If recvmsg() returned EHOSTUNREACH or ENETUNREACH,
5980                         which sometimes happens on Linux, named would enter
5981                         a busy loop.  Also, unexpected socket errors were
5982                         not logged at a high enough logging level to be
5983                         useful in diagnosing this situation. [RT #275]
5984
5985  435.   [bug]           dns_zone_dump() overwrote existing zone files
5986                         rather than writing to a temporary file and
5987                         renaming.  This could lead to empty or partial
5988                         zone files being left around in certain error
5989                         conditions involving the initial transfer of a
5990                         slave zone, interfering with subsequent server
5991                         startup. [RT #282]
5992
5993  434.   [func]          New function isc_file_isabsolute().
5994
5995  433.   [func]          isc_base64_decodestring() now accepts newlines
5996                         within the base64 data.  This makes it possible
5997                         to break up the key data in a "trusted-keys"
5998                         statement into multiple lines. [RT #284]
5999
6000  432.   [func]          Added refresh/retry jitter.  The actual refresh/
6001                         retry time is now a random value between 75% and
6002                         100% of the configured value.
6003
6004  431.   [func]          Log at ISC_LOG_INFO when a zone is successfully
6005                         loaded.
6006
6007  430.   [bug]           Rewrote the lightweight resolver client management
6008                         code to handle shutdown correctly and general
6009                         cleanup.
6010
6011  429.   [bug]           The space reserved for a TSIG record in a response
6012                         was 2 bytes too short, leading to message
6013                         generation failures.
6014
6015  428.   [bug]           rbtdb.c:find_closest_nxt() erroneously returned
6016                         DNS_R_BADDB for nodes which had neither NXT nor SIG NXT
6017                         (e.g. glue).  This could cause SERVFAILs when
6018                         generating negative responses in a secure zone.
6019
6020  427.   [bug]           Avoid going into an infinite loop when the validator
6021                         gets a negative response to a key query where the
6022                         records are signed by the missing key.
6023
6024  426.   [bug]           Attempting to generate an oversized RSA key could
6025                         cause dnssec-keygen to dump core.
6026
6027  425.   [bug]           Warn about the auth-nxdomain default value change
6028                         if there is no auth-nxdomain statement in the
6029                         config file. [RT #287]
6030
6031  424.   [bug]           notify_createmessage() could trigger an assertion
6032                         failure when creating the notify message failed,
6033                         e.g. due to corrupt zones with multiple SOA records.
6034                         [RT #279]
6035
6036  423.   [bug]           When responding to a recursive query, errors that occur
6037                         after following a CNAME should cause the query to fail.
6038                         [RT #274]
6039
6040  422.   [func]          get rid of isc_random_t, and make isc_random_get()
6041                         and isc_random_jitter() use rand() internally
6042                         instead of local state.  Note that isc_random_*()
6043                         functions are only for weak, non-critical "randomness"
6044                         such as timing jitter and such.
6045
6046  421.   [bug]           nslookup would exit when given a blank line as input.
6047
6048  420.   [bug]           nslookup failed to implement the "exit" command.
6049
6050  419.   [bug]           The certificate type PKIX was misspelled as SKIX.
6051
6052  418.   [bug]           At debug levels >= 10, getting an unexpected
6053                         socket receive error would crash the server
6054                         while trying to log the error message.
6055
6056  417.   [func]          Add isc_app_block() and isc_app_unblock(), which
6057                         allow an application to handle signals while
6058                         blocking.
6059
6060  416.   [bug]           Slave zones with no master file tried to use a
6061                         NULL pointer for a journal file name when they
6062                         received an IXFR. [RT #273]
6063
6064  415.   [bug]           The logging code leaked file descriptors.
6065
6066  414.   [bug]           Server did not shut down until all incoming zone
6067                         transfers were finished.
6068
6069  413.   [bug]           Notify could attempt to use the zone database after
6070                         it had been unloaded. [RT#267]
6071
6072  412.   [bug]           named -v didn't print the version.
6073
6074  411.   [bug]           A typo in the HS A code caused an assertion failure.
6075
6076  410.   [bug]           lwres_gethostbyname() and company set lwres_h_errno
6077                         to a random value on success.
6078
6079  409.   [bug]           If named was shut down early in the startup
6080                         process, ns_omapi_shutdown() would attempt to lock
6081                         an uninitialized mutex. [RT #262]
6082
6083  408.   [bug]           stub zones could leak memory and reference counts if
6084                         all the masters were unreachable.
6085
6086  407.   [bug]           isc_rwlock_lock() would needlessly block
6087                         readers when it reached the read quota even
6088                         if no writers were waiting.
6089
6090  406.   [bug]           Log messages were occasionally lost or corrupted
6091                         due to a race condition in isc_log_doit().
6092
6093  405.   [func]          Add support for selective forwarding (forward zones)
6094
6095  404.   [bug]           The request library didn't completely work with IPv6.
6096
6097  403.   [bug]           "host" did not use the search list.
6098
6099  402.   [bug]           Treat undefined acls as errors, rather than
6100                         warning and then later throwing an assertion.
6101                         [RT #252]
6102
6103  401.   [func]          Added simple database API.
6104
6105  400.   [bug]           SIG(0) signing and verifying was done incorrectly.
6106                         [RT #249]
6107
6108  399.   [bug]           When reloading the server with a config file
6109                         containing a syntax error, it could catch an
6110                         assertion failure trying to perform zone
6111                         maintenance on, or sending notifies from,
6112                         tentatively created zones whose views were
6113                         never fully configured and lacked an address
6114                         database and request manager.
6115
6116  398.   [bug]           "dig" sometimes caught an assertion failure when
6117                         using TSIG, depending on the key length.
6118
6119  397.   [func]          Added utility functions dns_view_gettsig() and
6120                         dns_view_getpeertsig().
6121
6122  396.   [doc]           There is now a man page for "nsupdate"
6123                         in doc/man/bin/nsupdate.8.
6124
6125  395.   [bug]           nslookup printed incorrect RR type mnemonics
6126                         for RRs of type >= 21 [RT #237].
6127
6128  394.   [bug]           Current name was not propagated via $INCLUDE.
6129
6130  393.   [func]          Initial answer while loading (awl) support.
6131                         Entry points: dns_master_loadfileinc(),
6132                         dns_master_loadstreaminc(), dns_master_loadbufferinc().
6133                         Note: calls to dns_master_load*inc() should be rate
6134                         be rate limited so as to not use up all file
6135                         descriptors.
6136
6137  392.   [func]          Add ISC_R_FAMILYNOSUPPORT.  Returned when OS does
6138                         not support the given address family requested.
6139
6140  391.   [clarity]       ISC_R_FAMILY -> ISC_R_FAMILYMISMATCH.
6141
6142  390.   [func]          The function dns_zone_setdbtype() now takes
6143                         an argc/argv style vector of words and sets
6144                         both the zone database type and its arguments,
6145                         making the functions dns_zone_adddbarg()
6146                         and dns_zone_cleardbargs() unnecessary.
6147
6148  389.   [bug]           Attempting to send a request over IPv6 using
6149                         dns_request_create() on a system without IPv6
6150                         support caused an assertion failure [RT #235].
6151
6152  388.   [func]          dig and host can now do reverse ipv6 lookups.
6153
6154  387.   [func]          Add dns_byaddr_createptrname(), which converts
6155                         an address into the name used by a PTR query.
6156
6157  386.   [bug]           Missing strdup() of ACL name caused random
6158                         ACL matching failures [RT #228].
6159
6160  385.   [cleanup]       Removed functions dns_zone_equal(), dns_zone_print(),
6161                         and dns_zt_print().
6162
6163  384.   [bug]           nsupdate was incorrectly limiting TTLs to 65535 instead
6164                         of 2147483647.
6165
6166  383.   [func]          When writing a master file, print the SOA and NS
6167                         records (and their SIGs) before other records.
6168
6169  382.   [bug]           named -u failed on many Linux systems where the
6170                         libc provided kernel headers do not match
6171                         the current kernel.
6172
6173  381.   [bug]           Check for IPV6_RECVPKTINFO and use it instead of
6174                         IPV6_PKTINFO if found. [RT #229]
6175
6176  380.   [bug]           nsupdate didn't work with IPv6.
6177
6178  379.   [func]          New library function isc_sockaddr_anyofpf().
6179
6180  378.   [func]          named and lwresd will log the command line arguments
6181                         they were started with in the "starting ..." message.
6182
6183  377.   [bug]           When additional data lookups were refused due to
6184                         "allow-query", the databases were still being
6185                         attached causing reference leaks.
6186
6187  376.   [bug]           The server should always use good entropy when
6188                         performing cryptographic functions needing entropy.
6189
6190  375.   [bug]           Per-zone "allow-query" did not properly override the
6191                         view/global one for CNAME targets and additional
6192                         data [RT #220].
6193
6194  374.   [bug]           SOA in authoritative negative responses had wrong TTL.
6195
6196  373.   [func]          nslookup is now installed by "make install".
6197
6198  372.   [bug]           Deal with Microsoft DNS servers appending two bytes of
6199                         garbage to zone transfer requests.
6200
6201  371.   [bug]           At high debug levels, doing an outgoing zone transfer
6202                         of a very large RRset could cause an assertion failure
6203                         during logging.
6204
6205  370.   [bug]           The error messages for roll-forward failures were
6206                         overly terse.
6207
6208  369.   [func]          Support new named.conf options, view and zone
6209                         statements:
6210
6211                                 max-retry-time, min-retry-time,
6212                                 max-refresh-time, min-refresh-time.
6213
6214  368.   [func]          Restructure the internal ".bind" view so that more
6215                         zones can be added to it.
6216
6217  367.   [bug]           Allow proper selection of server on nslookup command
6218                         line.
6219
6220  366.   [func]          Allow use of '-' batch file in dig for stdin.
6221
6222  365.   [bug]           nsupdate -k leaked memory.
6223
6224  364.   [func]          Added additional-from-{cache,auth}
6225
6226  363.   [placeholder]
6227
6228  362.   [bug]           rndc no longer aborts if the configuration file is
6229                         missing an options statement. [RT #209]
6230
6231  361.   [func]          When the RBT find or chain functions set the name and
6232                         origin for a node that stores the root label
6233                         the name is now set to an empty name, instead of ".",
6234                         to simplify later use of the name and origin by
6235                         dns_name_concatenate(), dns_name_totext() or
6236                         dns_name_format().
6237
6238  360.   [func]          dns_name_totext() and dns_name_format() now allow
6239                         an empty name to be passed, which is formatted as "@".
6240
6241  359.   [bug]           dnssec-signzone occasionally signed glue records.
6242
6243  358.   [cleanup]       Rename the intermediate files used by the dnssec
6244                         programs.
6245
6246  357.   [bug]           The zone file parser crashed if the argument
6247                         to $INCLUDE was a quoted string.
6248
6249  356.   [cleanup]       isc_task_send no longer requires event->sender to
6250                         be non-null.
6251
6252  355.   [func]          Added isc_dir_createunique(), similar to mkdtemp().
6253
6254  354.   [doc]           Man pages for the dnssec tools are now included in
6255                         the distribution, in doc/man/dnssec.
6256
6257  353.   [bug]           double increment in lwres/gethost.c:copytobuf().
6258                         [RT# 187]
6259
6260  352.   [bug]           Race condition in dns_client_t startup could cause
6261                         an assertion failure.
6262
6263  351.   [bug]           Constructing a response with rcode SERVFAIL to a TSIG
6264                         signed query could crash the server.
6265
6266  350.   [bug]           Also-notify lists specified in the global options
6267                         block were not correctly reference counted, causing
6268                         a memory leak.
6269
6270  349.   [bug]           Processing a query with the CD bit set now works
6271                         as expected.
6272
6273  348.   [func]          New boolean named.conf options 'additional-from-auth'
6274                         and 'additional-from-cache' now supported in view and
6275                         global options statement.
6276
6277  347.   [bug]           Don't crash if an argument is left off options in dig.
6278
6279  346.   [placeholder]
6280
6281  345.   [bug]           Large-scale changes/cleanups to dig:
6282                         * Significantly improve structure handling
6283                         * Don't pre-load entire batch files
6284                         * Add name/rr counting/limiting
6285                         * Fix SIGINT handling
6286                         * Shorten timeouts to match v8's behavior
6287
6288  344.   [bug]           When shutting down, lwresd sometimes tried
6289                         to shut down its client tasks twice,
6290                         triggering an assertion.
6291
6292  343.   [bug]           Although zone maintenance SOA queries and
6293                         notify requests were signed with TSIG keys
6294                         when configured for the server in case,
6295                         the TSIG was not verified on the response.
6296
6297  342.   [bug]           The wrong name was being passed to
6298                         dns_name_dup() when generating a TSIG
6299                         key using TKEY.
6300
6301  341.   [func]          Support 'key' clause in named.conf zone masters
6302                         statement to allow authentication via TSIG keys:
6303
6304                                 masters {
6305                                         10.0.0.1 port 5353 key "foo";
6306                                         10.0.0.2 ;
6307                                 };
6308
6309  340.   [bug]           The top-level COPYRIGHT file was missing from
6310                         the distribution.
6311
6312  339.   [bug]           DNSSEC validation of the response to an ANY
6313                         query at a name with a CNAME RR in a secure
6314                         zone triggered an assertion failure.
6315
6316  338.   [bug]           lwresd logged to syslog as named, not lwresd.
6317
6318  337.   [bug]           "dig" did not recognize "nsap-ptr" as an RR type
6319                         on the command line.
6320
6321  336.   [bug]           "dig -f" used 64 k of memory for each line in
6322                         the file.  It now uses much less, though still
6323                         proportionally to the file size.
6324
6325  335.   [bug]           named would occasionally attempt recursion when
6326                         it was disallowed or undesired.
6327
6328  334.   [func]          Added hmac-md5 to libisc.
6329
6330  333.   [bug]           The resolver incorrectly accepted referrals to
6331                         domains that were not parents of the query name,
6332                         causing assertion failures.
6333
6334  332.   [func]          New function dns_name_reset().
6335
6336  331.   [bug]           Only log "recursion denied" if RD is set. [RT #178]
6337
6338  330.   [bug]           Many debugging messages were partially formatted
6339                         even when debugging was turned off, causing a
6340                         significant decrease in query performance.
6341
6342  329.   [func]          omapi_auth_register() now takes a size_t argument for
6343                         the length of a key's secret data.  Previously
6344                         OMAPI only stored secrets up to the first NUL byte.
6345
6346  328.   [func]          Added isc_base64_decodestring().
6347
6348  327.   [bug]           rndc.conf parser wasn't correctly recognizing an IP
6349                         address where a host specification was required.
6350
6351  326.   [func]          'keys' in an 'inet' control statement is now
6352                         required and must have at least one item in it.
6353                         A "not supported" warning is now issued if a 'unix'
6354                         control channel is defined.
6355
6356  325.   [bug]           isc_lex_gettoken was processing octal strings when
6357                         ISC_LEXOPT_CNUMBER was not set.
6358
6359  324.   [func]          In the resolver, turn EDNS0 off if there is no
6360                         response after a number of retransmissions.
6361                         This is to allow queries some chance of succeeding
6362                         even if all the authoritative servers of a zone
6363                         silently discard EDNS0 requests instead of
6364                         sending an error response like they ought to.
6365
6366  323.   [bug]           dns_rbt_findname() did not ignore empty rbt nodes.
6367                         Because of this, servers authoritative for a parent
6368                         and grandchild zone but not authoritative for the
6369                         intervening child zone did not correctly issue
6370                         referrals to the servers of the child zone.
6371
6372  322.   [bug]           Queries for KEY RRs are now sent to the parent
6373                         server before the authoritative one, making
6374                         DNSSEC insecurity proofs work in many cases
6375                         where they previously didn't.
6376
6377  321.   [bug]           When synthesizing a CNAME RR for a DNAME
6378                         response, query_addcname() failed to initialize
6379                         the type and class of the CNAME dns_rdata_t,
6380                         causing random failures.
6381
6382  320.   [func]          Multiple rndc changes: parses an rndc.conf file,
6383                         uses authentication to talk to named, command
6384                         line syntax changed.  This will all be described
6385                         in the ARM.
6386
6387  319.   [func]          The named.conf "controls" statement is now used
6388                         to configure the OMAPI command channel.
6389
6390  318.   [func]          dns_c_ndcctx_destroy() could never return anything
6391                         except ISC_R_SUCCESS; made it have void return instead.
6392
6393  317.   [func]          Use callbacks from libomapi to determine if a
6394                         new connection is valid, and if a key requested
6395                         to be used with that connection is valid.
6396
6397  316.   [bug]           Generate a warning if we detect an unexpected <eof>
6398                         but treat as <eol><eof>.
6399
6400  315.   [bug]           Handle non-empty blanks lines. [RT #163]
6401
6402  314.   [func]          The named.conf controls statement can now have
6403                         more than one key specified for the inet clause.
6404
6405  313.   [bug]           When parsing resolv.conf, don't terminate on an
6406                         error.  Instead, parse as much as possible, but
6407                         still return an error if one was found.
6408
6409  312.   [bug]           Increase the number of allowed elements in the
6410                         resolv.conf search path from 6 to 8.  If there
6411                         are more than this, ignore the remainder rather
6412                         than returning a failure in lwres_conf_parse.
6413
6414  311.   [bug]           lwres_conf_parse failed when the first line of
6415                         resolv.conf was empty or a comment.
6416
6417  310.   [func]          Changes to named.conf "controls" statement (inet
6418                         subtype only)
6419
6420                           - support "keys" clause
6421
6422                                 controls {
6423                                    inet * port 1024
6424                                         allow { any; } keys { "foo"; }
6425                                 }
6426
6427                           - allow "port xxx" to be left out of statement,
6428                             in which case it defaults to omapi's default port
6429                             of 953.
6430
6431  309.   [bug]           When sending a referral, the server did not look
6432                         for name server addresses as glue in the zone
6433                         holding the NS RRset in the case where this zone
6434                         was not the same as the one where it looked for
6435                         name server addresses as authoritative data.
6436
6437  308.   [bug]           Treat a SOA record not at top of zone as an error
6438                         when loading a zone. [RT #154]
6439
6440  307.   [bug]           When canceling a query, the resolver didn't check for
6441                         isc_socket_sendto() calls that did not yet have their
6442                         completion events posted, so it could (rarely) end up
6443                         destroying the query context and then want to use
6444                         it again when the send event posted, triggering an
6445                         assertion as it tried to cancel an already-canceled
6446                         query.  [RT #77]
6447
6448  306.   [bug]           Reading HMAC-MD5 private key files didn't work.
6449
6450  305.   [bug]           When reloading the server with a config file
6451                         containing a syntax error, it could catch an
6452                         assertion failure trying to perform zone
6453                         maintenance on tentatively created zones whose
6454                         views were never fully configured and lacked
6455                         an address database.
6456
6457  304.   [bug]           If more than LWRES_CONFMAXNAMESERVERS servers
6458                         are listed in resolv.conf, silently ignore them
6459                         instead of returning failure.
6460
6461  303.   [bug]           Add additional sanity checks to differentiate a AXFR
6462                         response vs a IXFR response. [RT #157]
6463
6464  302.   [bug]           In dig, host, and nslookup, MXNAME should be large
6465                         enough to hold any legal domain name in presentation
6466                         format + terminating NULL.
6467
6468  301.   [bug]           Uninitialized pointer in host:printmessage(). [RT #159]
6469
6470  300.   [bug]           Using both <isc/net.h> and <lwres/net.h> didn't work
6471                         on platforms lacking IPv6 because each included their
6472                         own ipv6 header file for the missing definitions.  Now
6473                         each library's ipv6.h defines the wrapper symbol of
6474                         the other (ISC_IPV6_H and LWRES_IPV6_H).
6475
6476  299.   [cleanup]       Get the user and group information before changing the
6477                         root directory, so the administrator does not need to
6478                         keep a copy of the user and group databases in the
6479                         chroot'ed environment.  Suggested by Hakan Olsson.
6480
6481  298.   [bug]           A mutex deadlock occurred during shutdown of the
6482                         interface manager under certain conditions.
6483                         Digital Unix systems were the most affected.
6484
6485  297.   [bug]           Specifying a key name that wasn't fully qualified
6486                         in certain parts of the config file could cause
6487                         an assertion failure.
6488
6489  296.   [bug]           "make install" from a separate build directory
6490                         failed unless configure had been run in the source
6491                         directory, too.
6492
6493  295.   [bug]           When invoked with type==CNAME and a message
6494                         not constructed by dns_message_parse(),
6495                         dns_message_findname() failed to find anything
6496                         due to checking for attribute bits that are set
6497                         only in dns_message_parse().  This caused an
6498                         infinite loop when constructing the response to
6499                         an ANY query at a CNAME in a secure zone.
6500
6501  294.   [bug]           If we run out of space in while processing glue
6502                         when reading a master file and commit "current name"
6503                         reverts to "name_current" instead of staying as
6504                         "name_glue".
6505
6506  293.   [port]          Add support for FreeBSD 4.0 system tests.
6507
6508  292.   [bug]           Due to problems with the way some operating systems
6509                         handle simultaneous listening on IPv4 and IPv6
6510                         addresses, the server no longer listens on IPv6
6511                         addresses by default.  To revert to the previous
6512                         behavior, specify "listen-on-v6 { any; };" in
6513                         the config file.
6514
6515  291.   [func]          Caching servers no longer send outgoing queries
6516                         over TCP just because the incoming recursive query
6517                         was a TCP one.
6518
6519  290.   [cleanup]       +twiddle option to dig (for testing only) removed.
6520
6521  289.   [cleanup]       dig is now installed in $bindir instead of $sbindir.
6522                         host is now installed in $bindir.  (Be sure to remove
6523                         any $sbindir/dig from a previous release.)
6524
6525  288.   [func]          rndc is now installed by "make install" into $sbindir.
6526
6527  287.   [bug]           rndc now works again as "rndc 127.1 reload" (for
6528                         only that task).  Parsing its configuration file and
6529                         using digital signatures for authentication has been
6530                         disabled until named supports the "controls" statement,
6531                         post-9.0.0.
6532
6533  286.   [bug]           On Solaris 2, when named inherited a signal state
6534                         where SIGHUP had the SIG_IGN action, SIGHUP would
6535                         be ignored rather than causing the server to reload
6536                         its configuration.
6537
6538  285.   [bug]           A change made to the dst API for beta4 inadvertently
6539                         broke OMAPI's creation of a dst key from an incoming
6540                         message, causing an assertion to be triggered.  Fixed.
6541
6542  284.   [func]          The DNSSEC key generation and signing tools now
6543                         generate randomness from keyboard input on systems
6544                         that lack /dev/random.
6545
6546  283.   [cleanup]       The 'lwresd' program is now a link to 'named'.
6547
6548  282.   [bug]           The lexer now returns ISC_R_RANGE if parsed integer is
6549                         too big for an unsigned long.
6550
6551  281.   [bug]           Fixed list of recognized config file category names.
6552
6553  280.   [func]          Add isc-config.sh, which can be used to more
6554                         easily build applications that link with
6555                         our libraries.
6556
6557  279.   [bug]           Private omapi function symbols shared between
6558                         two or more files in libomapi.a were not namespace
6559                         protected using the ISC convention of starting with
6560                         the library name and two underscores ("omapi__"...)
6561
6562  278.   [bug]           bin/named/logconf.c:category_fromconf() didn't take
6563                         note of when isc_log_categorybyname() wasn't able
6564                         to find the category name and would then apply the
6565                         channel list of the unknown category to all categories.
6566
6567  277.   [bug]           isc_log_categorybyname() and isc_log_modulebyname()
6568                         would fail to find the first member of any category
6569                         or module array apart from the internal defaults.
6570                         Thus, for example, the "notify" category was improperly
6571                         configured by named.
6572
6573  276.   [bug]           dig now supports maximum sized TCP messages.
6574
6575  275.   [bug]           The definition of lwres_gai_strerror() was missing
6576                         the lwres_ prefix.
6577
6578  274.   [bug]           TSIG AXFR verify failed when talking to a BIND 8
6579                         server.
6580
6581  273.   [func]          The default for the 'transfer-format' option is
6582                         now 'many-answers'.  This will break zone transfers
6583                         to BIND 4.9.5 and older unless there is an explicit
6584                         'one-answer' configuration.
6585
6586  272.   [bug]           The sending of large TCP responses was canceled
6587                         in mid-transmission due to a race condition
6588                         caused by the failure to set the client object's
6589                         "newstate" variable correctly when transitioning
6590                         to the "working" state.
6591
6592  271.   [func]          Attempt to probe the number of cpus in named
6593                         if unspecified rather than defaulting to 1.
6594
6595  270.   [func]          Allow maximum sized TCP answers.
6596
6597  269.   [bug]           Failed DNSSEC validations could cause an assertion
6598                         failure by causing clone_results() to be called with
6599                         with hevent->node == NULL.
6600
6601  268.   [doc]           A plain text version of the Administrator
6602                         Reference Manual is now included in the distribution,
6603                         as doc/arm/Bv9ARM.txt.
6604
6605  267.   [func]          Nsupdate is now provided in the distribution.
6606
6607  266.   [bug]           zone.c:save_nsrrset() node was not initialized.
6608
6609  265.   [bug]           dns_request_create() now works for TCP.
6610
6611  264.   [func]          Dispatch can not take TCP sockets in connecting
6612                         state.  Set DNS_DISPATCHATTR_CONNECTED when calling
6613                         dns_dispatch_createtcp() for connected TCP sockets
6614                         or call dns_dispatch_starttcp() when the socket is
6615                         connected.
6616
6617  263.   [func]          New logging channel type 'stderr'
6618
6619                                 channel some-name {
6620                                         stderr;
6621                                         severity error;
6622                                 }
6623
6624  262.   [bug]           'master' was not initialized in zone.c:stub_callback().
6625
6626  261.   [func]          Add dns_zone_markdirty().
6627
6628  260.   [bug]           Running named as a non-root user failed on Linux
6629                         kernels new enough to support retaining capabilities
6630                         after setuid().
6631
6632  259.   [func]          New random-device and random-seed-file statements
6633                         for global options block of named.conf. Both accept
6634                         a single string argument.
6635
6636  258.   [bug]           Fixed printing of lwres_addr_t.address field.
6637
6638  257.   [bug]           The server detached the last zone manager reference
6639                         too early, while it could still be in use by queries.
6640                         This manifested itself as assertion failures during the
6641                         shutdown process for busy name servers. [RT #133]
6642
6643  256.   [func]          isc_ratelimiter_t now has attach/detach semantics, and
6644                         isc_ratelimiter_shutdown guarantees that the rate
6645                         limiter is detached from its task.
6646
6647  255.   [func]          New function dns_zonemgr_attach().
6648
6649  254.   [bug]           Suppress "query denied" messages on additional data
6650                         lookups.
6651
6652         --- 9.0.0b4 released ---
6653
6654  253.   [func]          resolv.conf parser now recognizes ';' and '#' as
6655                         comments (anywhere in line, not just as the beginning).
6656
6657  252.   [bug]           resolv.conf parser mishandled masks on sortlists.
6658                         It also aborted when an unrecognized keyword was seen,
6659                         now it silently ignores the entire line.
6660
6661  251.   [bug]           lwresd caught an assertion failure on startup.
6662
6663  250.   [bug]           fixed handling of size+unit when value would be too
6664                         large for internal representation.
6665
6666  249.   [cleanup]       max-cache-size config option now takes a size-spec
6667                         like 'datasize', except 'default' is not allowed.
6668
6669  248.   [bug]           global lame-ttl option was not being printed when
6670                         config structures were written out.
6671
6672  247.   [cleanup]       Rename cache-size config option to max-cache-size.
6673
6674  246.   [func]          Rename global option cachesize to cache-size and
6675                         add corresponding option to view statement.
6676
6677  245.   [bug]           If an uncompressed name will take more than 255
6678                         bytes and the buffer is sufficiently long,
6679                         dns_name_fromwire should return DNS_R_FORMERR,
6680                         not ISC_R_NOSPACE.  This bug caused cause the
6681                         server to catch an assertion failure when it
6682                         received a query for a name longer than 255
6683                         bytes.
6684
6685  244.   [bug]           empty named.conf file and empty options statement are
6686                         now parsed properly.
6687
6688  243.   [func]          new cachesize option for named.conf
6689
6690  242.   [cleanup]       fixed incorrect warning about auth-nxdomain usage.
6691
6692  241.   [cleanup]       nscount and soacount have been removed from the
6693                         dns_master_*() argument lists.
6694
6695  240.   [func]          databases now come in three flavours: zone, cache
6696                         and stub.
6697
6698  239.   [func]          If ISC_MEM_DEBUG is enabled, the variable
6699                         isc_mem_debugging controls whether messages
6700                         are printed or not.
6701
6702  238.   [cleanup]       A few more compilation warnings have been quieted:
6703                         + missing sigwait prototype on BSD/OS 4.0/4.0.1.
6704                         + PTHREAD_ONCE_INIT unbraced initializer warnings on
6705                                 Solaris 2.8.
6706                         + IN6ADDR_ANY_INIT unbraced initializer warnings on
6707                                 BSD/OS 4.*, Linux and Solaris 2.8.
6708
6709  237.   [bug]           If connect() returned ENOBUFS when the resolver was
6710                         initiating a TCP query, the socket didn't get
6711                         destroyed, and the server did not shut down cleanly.
6712
6713  236.   [func]          Added new listen-on-v6 config file statement.
6714
6715  235.   [func]          Consider it a config file error if a listen-on
6716                         statement has an IPv6 address in it, or a
6717                         listen-on-v6 statement has an IPv4 address in it.
6718
6719  234.   [bug]           Allow a trusted-key's first field (domain-name) be
6720                         either a quoted or an unquoted string, instead of
6721                         requiring a quoted string.
6722
6723  233.   [cleanup]       Convert all config structure integer values to unsigned
6724                         integer (isc_uint32_t) to match grammar.
6725
6726  232.   [bug]           Allow slave zones to not have a file.
6727
6728  231.   [func]          Support new 'port' clause in config file options
6729                         section. Causes 'listen-on', 'masters' and
6730                         'also-notify' statements to use its value instead of
6731                         default (53).
6732
6733  230.   [func]          Replace the dst sign/verify API with a cleaner one.
6734
6735  229.   [func]          Support config file sig-validity-interval statement
6736                         in options, views and zone statements (master
6737                         zones only).
6738
6739  228.   [cleanup]       Logging messages in config module stripped of
6740                         trailing period.
6741
6742  227.   [cleanup]       The enumerated identifiers dns_rdataclass_*,
6743                         dns_rcode_*, dns_opcode_*, and dns_trust_* are
6744                         also now cast to their appropriate types, as with
6745                         dns_rdatatype_* in item number 225 below.
6746
6747  226.   [func]          dns_name_totext() now always prints the root name as
6748                         '.', even when omit_final_dot is true.
6749
6750  225.   [cleanup]       The enumerated dns_rdatatype_* identifiers are now
6751                         cast to dns_rdatatype_t via macros of their same name
6752                         so that they are of the proper integral type wherever
6753                         a dns_rdatatype_t is needed.
6754
6755  224.   [cleanup]       The entire project builds cleanly with gcc's
6756                         -Wcast-qual and -Wwrite-strings warnings enabled,
6757                         which is now the default when using gcc.  (Warnings
6758                         from confparser.c, because of yacc's code, are
6759                         unfortunately to be expected.)
6760
6761  223.   [func]          Several functions were re-prototyped to qualify one
6762                         or more of their arguments with "const".  Similarly,
6763                         several functions that return pointers now have
6764                         those pointers qualified with const.
6765
6766  222.   [bug]           The global 'also-notify' option was ignored.
6767
6768  221.   [bug]           An uninitialized variable was sometimes passed to
6769                         dns_rdata_freestruct() when loading a zone, causing
6770                         an assertion failure.
6771
6772  220.   [cleanup]       Set the default outgoing port in the view, and
6773                         set it in sockaddrs returned from the ADB.
6774                         [31-May-2000 explorer]
6775
6776  219.   [bug]           Signed truncated messages more correctly follow
6777                         the respective specs.
6778
6779  218.   [func]          When an rdataset is signed, its ttl is normalized
6780                         based on the signature validity period.
6781
6782  217.   [func]          Also-notify and trusted-keys can now be used in
6783                         the 'view' statement.
6784
6785  216.   [func]          The 'max-cache-ttl' and 'max-ncache-ttl' options
6786                         now work.
6787
6788  215.   [bug]           Failures at certain points in request processing
6789                         could cause the assertion INSIST(client->lockview
6790                         == NULL) to be triggered.
6791
6792  214.   [func]          New public function isc_netaddr_format(), for
6793                         formatting network addresses in log messages.
6794
6795  213.   [bug]           Don't leak memory when reloading the zone if
6796                         an update-policy clause was present in the old zone.
6797
6798  212.   [func]          Added dns_message_get/settsigkey, to make TSIG
6799                         key management reasonable.
6800
6801  211.   [func]          The 'key' and 'server' statements can now occur
6802                         inside 'view' statements.
6803
6804  210.   [bug]           The 'allow-transfer' option was ignored for slave
6805                         zones, and the 'transfers-per-ns' option was
6806                         was ignored for all zones.
6807
6808  209.   [cleanup]       Upgraded openssl files to new version 0.9.5a
6809
6810  208.   [func]          Added ISC_OFFSET_MAXIMUM for the maximum value
6811                         of an isc_offset_t.
6812
6813  207.   [func]          The dnssec tools properly use the logging subsystem.
6814
6815  206.   [cleanup]       dst now stores the key name as a dns_name_t, not
6816                         a char *.
6817
6818  205.   [cleanup]       On IRIX, turn off the mostly harmless warnings 1692
6819                         ("prototyped function redeclared without prototype")
6820                         and 1552 ("variable ... set but not used") when
6821                         compiling in the lib/dns/sec/{dnssafe,openssl}
6822                         directories, which contain code imported from outside
6823                         sources.
6824
6825  204.   [cleanup]       On HP/UX, pass +vnocompatwarnings to the linker
6826                         to quiet the warnings that "The linked output may not
6827                         run on a PA 1.x system."
6828
6829  203.   [func]          notify and zone soa queries are now tsig signed when
6830                         appropriate.
6831
6832  202.   [func]          isc_lex_getsourceline() changed from returning int
6833                         to returning unsigned long, the type of its underlying
6834                         counter.
6835
6836  201.   [cleanup]       Removed the test/sdig program, it has been
6837                         replaced by bin/dig/dig.
6838
6839         --- 9.0.0b3 released ---
6840
6841  200.   [bug]           Failures in sending query responses to clients
6842                         (e.g., running out of network buffers) were
6843                         not logged.
6844
6845  199.   [bug]           isc_heap_delete() sometimes violated the heap
6846                         invariant, causing timer events not to be posted
6847                         when due.
6848
6849  198.   [func]          Dispatch managers hold memory pools which
6850                         any managed dispatcher may use.  This allows
6851                         us to avoid dipping into the memory context for
6852                         most allocations. [19-May-2000 explorer]
6853
6854  197.   [bug]           When an incoming AXFR or IXFR completes, the
6855                         zone's internal state is refreshed from the
6856                         SOA data. [19-May-2000 explorer]
6857
6858  196.   [func]          Dispatchers can be shared easily between views
6859                         and/or interfaces. [19-May-2000 explorer]
6860
6861  195.   [bug]           Including the NXT record of the root domain
6862                         in a negative response caused an assertion
6863                         failure.
6864
6865  194.   [doc]           The PDF version of the Administrator's Reference
6866                         Manual is no longer included in the ISC BIND9
6867                         distribution.
6868
6869  193.   [func]          changed dst_key_free() prototype.
6870
6871  192.   [bug]           Zone configuration validation is now done at end
6872                         of config file parsing, and before loading
6873                         callbacks.
6874
6875  191.   [func]          Patched to compile on UnixWare 7.x.  This platform
6876                         is not directly supported by the ISC.
6877
6878  190.   [cleanup]       The DNSSEC tools have been moved to a separate
6879                         directory dnssec/ and given the following new,
6880                         more descriptive names:
6881
6882                               dnssec-keygen
6883                               dnssec-signzone
6884                               dnssec-signkey
6885                               dnssec-makekeyset
6886
6887                         Their command line arguments have also been changed to
6888                         be more consistent.  dnssec-keygen now prints the
6889                         name of the generated key files (sans extension)
6890                         on standard output to simplify its use in automated
6891                         scripts.
6892
6893  189.   [func]          isc_time_secondsastimet(), a new function, will ensure
6894                         that the number of seconds in an isc_time_t does not
6895                         exceed the range of a time_t, or return ISC_R_RANGE.
6896                         Similarly, isc_time_now(), isc_time_nowplusinterval(),
6897                         isc_time_add() and isc_time_subtract() now check the
6898                         range for overflow/underflow.  In the case of
6899                         isc_time_subtract, this changed a calling requirement
6900                         (ie, something that could generate an assertion)
6901                         into merely a condition that returns an error result.
6902                         isc_time_add() and isc_time_subtract() were void-
6903                         valued before but now return isc_result_t.
6904
6905  188.   [func]          Log a warning message when an incoming zone transfer
6906                         contains out-of-zone data.
6907
6908  187.   [func]          isc_ratelimter_enqueue() has an additional argument
6909                         'task'.
6910
6911  186.   [func]          dns_request_getresponse() has an additional argument
6912                         'preserve_order'.
6913
6914  185.   [bug]           Fixed up handling of ISC_MEMCLUSTER_LEGACY.  Several
6915                         public functions did not have an isc__ prefix, and
6916                         referred to functions that had previously been
6917                         renamed.
6918
6919  184.   [cleanup]       Variables/functions which began with two leading
6920                         underscores were made to conform to the ANSI/ISO
6921                         standard, which says that such names are reserved.
6922
6923  183.   [func]          ISC_LOG_PRINTTAG option for log channels.  Useful
6924                         for logging the program name or other identifier.
6925
6926  182.   [cleanup]       New command-line parameters for dnssec tools
6927
6928  181.   [func]          Added dst_key_buildfilename and dst_key_parsefilename
6929
6930  180.   [func]          New isc_result_t ISC_R_RANGE.  Supersedes DNS_R_RANGE.
6931
6932  179.   [func]          options named.conf statement *must* now come
6933                         before any zone or view statements.
6934
6935  178.   [func]          Post-load of named.conf check verifies a slave zone
6936                         has non-empty list of masters defined.
6937
6938  177.   [func]          New per-zone boolean:
6939
6940                                 enable-zone yes | no ;
6941
6942                         intended to let a zone be disabled without having
6943                         to comment out the entire zone statement.
6944
6945  176.   [func]          New global and per-view option:
6946
6947                                 max-cache-ttl number
6948
6949  175.   [func]          New global and per-view option:
6950
6951                                 additional-data internal | minimal | maximal;
6952
6953  174.   [func]          New public function isc_sockaddr_format(), for
6954                         formatting socket addresses in log messages.
6955
6956  173.   [func]          Keep a queue of zones waiting for zone transfer
6957                         quota so that a new transfer can be dispatched
6958                         immediately whenever quota becomes available.
6959
6960  172.   [bug]           $TTL directive was sometimes missing from dumped
6961                         master files because totext_ctx_init() failed to
6962                         initialize ctx->current_ttl_valid.
6963
6964  171.   [cleanup]       On NetBSD systems, the mit-pthreads or
6965                         unproven-pthreads library is now always used
6966                         unless --with-ptl2 is explicitly specified on
6967                         the configure command line.  The
6968                         --with-mit-pthreads option is no longer needed
6969                         and has been removed.
6970
6971  170.   [cleanup]       Remove inter server consistency checks from zone,
6972                         these should return as a separate module in 9.1.
6973                         dns_zone_checkservers(), dns_zone_checkparents(),
6974                         dns_zone_checkchildren(), dns_zone_checkglue().
6975
6976                         Remove dns_zone_setadb(), dns_zone_setresolver(),
6977                         dns_zone_setrequestmgr() these should now be found
6978                         via the view.
6979
6980  169.   [func]          ratelimiter can now process N events per interval.
6981
6982  168.   [bug]           include statements in named.conf caused syntax errors
6983                         due to not consuming the semicolon ending the include
6984                         statement before switching input streams.
6985
6986  167.   [bug]           Make lack of masters for a slave zone a soft error.
6987
6988  166.   [bug]           Keygen was overwriting existing keys if key_id
6989                         conflicted, now it will retry, and non-null keys
6990                         with key_id == 0 are not generated anymore.  Key
6991                         was not able to generate NOAUTHCONF DSA key,
6992                         increased RSA key size to 2048 bits.
6993
6994  165.   [cleanup]       Silence "end-of-loop condition not reached" warnings
6995                         from Solaris compiler.
6996
6997  164.   [func]          Added functions isc_stdio_open(), isc_stdio_close(),
6998                         isc_stdio_seek(), isc_stdio_read(), isc_stdio_write(),
6999                         isc_stdio_flush(), isc_stdio_sync(), isc_file_remove()
7000                         to encapsulate nonportable usage of errno and sync.
7001
7002  163.   [func]          Added result codes ISC_R_FILENOTFOUND and
7003                         ISC_R_FILEEXISTS.
7004
7005  162.   [bug]           Ensure proper range for arguments to ctype.h functions.
7006
7007  161.   [cleanup]       error in yyparse prototype that only HPUX caught.
7008
7009  160.   [cleanup]       getnet*() are not going to be implemented at this
7010                         stage.
7011
7012  159.   [func]          Redefinition of config file elements is now an
7013                         error (instead of a warning).
7014
7015  158.   [bug]           Log channel and category list copy routines
7016                         weren't assigning properly to output parameter.
7017
7018  157.   [port]          Fix missing prototype for getopt().
7019
7020  156.   [func]          Support new 'database' statement in zone.
7021
7022                                 database "quoted-string";
7023
7024  155.   [bug]           ns_notify_start() was not detaching the found zone.
7025
7026  154.   [func]          The signer now logs libdns warnings to stderr even when
7027                         not verbose, and in a nicer format.
7028
7029  153.   [func]          dns_rdata_tostruct() 'mctx' is now optional.  If 'mctx'
7030                         is NULL then you need to preserve the 'rdata' until
7031                         you have finished using the structure as there may be
7032                         references to the associated memory.  If 'mctx' is
7033                         non-NULL it is guaranteed that there are no references
7034                         to memory associated with 'rdata'.
7035
7036                         dns_rdata_freestruct() must be called if 'mctx' was
7037                         non-NULL and may safely be called if 'mctx' was NULL.
7038
7039  152.   [bug]           keygen dumped core if domain name argument was omitted
7040                         from command line.
7041
7042  151.   [func]          Support 'disabled' statement in zone config (causes
7043                         zone to be parsed and then ignored). Currently must
7044                         come after the 'type' clause.
7045
7046  150.   [func]          Support optional ports in masters and also-notify
7047                         statements:
7048
7049                                 masters [ port xxx ] { y.y.y.y [ port zzz ] ; }
7050
7051  149.   [cleanup]       Removed usused argument 'olist' from
7052                         dns_c_view_unsetordering().
7053
7054  148.   [cleanup]       Stop issuing some warnings about some configuration
7055                         file statements that were not implemented, but now are.
7056
7057  147.   [bug]           Changed yacc union size to be smaller for yaccs that
7058                         put yacc-stack on the real stack.
7059
7060  146.   [cleanup]       More general redundant header file cleanup.  Rather
7061                         than continuing to itemize every header which changed,
7062                         this changelog entry just notes that if a header file
7063                         did not need another header file that it was including
7064                         in order to provide its advertised functionality, the
7065                         inclusion of the other header file was removed.  See
7066                         util/check-includes for how this was tested.
7067
7068  145.   [cleanup]       Added <isc/lang.h> and ISC_LANG_BEGINDECLS/
7069                         ISC_LANG_ENDDECLS to header files that had function
7070                         prototypes, and removed it from those that did not.
7071
7072  144.   [cleanup]       libdns header files too numerous to name were made
7073                         to conform to the same style for multiple inclusion
7074                         protection.
7075
7076  143.   [func]          Added function dns_rdatatype_isknown().
7077
7078  142.   [cleanup]       <isc/stdtime.h> does not need <time.h> or
7079                         <isc/result.h>.
7080
7081  141.   [bug]           Corrupt requests with multiple questions could
7082                         cause an assertion failure.
7083
7084  140.   [cleanup]       <isc/time.h> does not need <time.h> or <isc/result.h>.
7085
7086  139.   [cleanup]       <isc/net.h> now includes <isc/types.h> instead of
7087                         <isc/int.h> and <isc/result.h>.
7088
7089  138.   [cleanup]       isc_strtouq moved from str.[ch] to string.[ch] and
7090                         renamed isc_string_touint64.  isc_strsep moved from
7091                         strsep.c to string.c and renamed isc_string_separate.
7092
7093  137.   [cleanup]       <isc/commandline.h>, <isc/mem.h>, <isc/print.h>
7094                         <isc/serial.h>, <isc/string.h> and <isc/offset.h>
7095                         made to conform to the same style for multiple
7096                         inclusion protection.
7097
7098  136.   [cleanup]       <isc/commandline.h>, <isc/interfaceiter.h>,
7099                         <isc/net.h> and Win32's <isc/thread.h> needed
7100                         ISC_LANG_BEGINDECLS/ISC_LANG_ENDDECLS.
7101
7102  135.   [cleanup]       Win32's <isc/condition.h> did not need <isc/result.h>
7103                         or <isc/boolean.h>, now uses <isc/types.h> in place
7104                         of <isc/time.h>, and needed ISC_LANG_BEGINDECLS
7105                         and ISC_LANG_ENDDECLS.
7106
7107  134.   [cleanup]       <isc/dir.h> does not need <limits.h>.
7108
7109  133.   [cleanup]       <isc/ipv6.h> needs <isc/platform.h>.
7110
7111  132.   [cleanup]       <isc/app.h> does not need <isc/task.h>, but does
7112                         need <isc/eventclass.h>.
7113
7114  131.   [cleanup]       <isc/mutex.h> and <isc/util.h> need <isc/result.h>
7115                         for ISC_R_* codes used in macros.
7116
7117  130.   [cleanup]       <isc/condition.h> does not need <pthread.h> or
7118                         <isc/boolean.h>, and now includes <isc/types.h>
7119                         instead of <isc/time.h>.
7120
7121  129.   [bug]           The 'default_debug' log channel was not set up when
7122                         'category default' was present in the config file
7123
7124  128.   [cleanup]       <isc/dir.h> had ISC_LANG_BEGINDECLS instead of
7125                         ISC_LANG_ENDDECLS at end of header.
7126
7127  127.   [cleanup]       The contracts for the comparision routines
7128                         dns_name_fullcompare(), dns_name_compare(),
7129                         dns_name_rdatacompare(), and dns_rdata_compare() now
7130                         specify that the order value returned is < 0, 0, or > 0
7131                         instead of -1, 0, or 1.
7132
7133  126.   [cleanup]       <isc/quota.h> and <isc/taskpool.h> need <isc/lang.h>.
7134
7135  125.   [cleanup]       <isc/eventclass.h>, <isc/ipv6.h>, <isc/magic.h>,
7136                         <isc/mutex.h>, <isc/once.h>, <isc/region.h>, and
7137                         <isc/resultclass.h> do not need <isc/lang.h>.
7138
7139  124.   [func]          signer now imports parent's zone key signature
7140                         and creates null keys/sets zone status bit for
7141                         children when necessary
7142
7143  123.   [cleanup]       <isc/event.h> does not need <stddef.h>.
7144
7145  122.   [cleanup]       <isc/task.h> does not need <isc/mem.h> or
7146                         <isc/result.h>.
7147
7148  121.   [cleanup]       <isc/symtab.h> does not need <isc/mem.h> or
7149                         <isc/result.h>.  Multiple inclusion protection
7150                         symbol fixed from ISC_SYMBOL_H to ISC_SYMTAB_H.
7151                         isc_symtab_t moved to <isc/types.h>.
7152
7153  120.   [cleanup]       <isc/socket.h> does not need <isc/boolean.h>,
7154                         <isc/bufferlist.h>, <isc/task.h>, <isc/mem.h> or
7155                         <isc/net.h>.
7156
7157  119.   [cleanup]       structure definitions for generic rdata structures do
7158                         not have _generic_ in their names.
7159
7160  118.   [cleanup]       libdns.a is now namespace-clean, on NetBSD, excepting
7161                         YACC crust (yyparse, etc) [2000-apr-27 explorer]
7162
7163  117.   [cleanup]       libdns.a changes:
7164                         dns_zone_clearnotify() and dns_zone_addnotify()
7165                         are replaced by dns_zone_setnotifyalso().
7166                         dns_zone_clearmasters() and dns_zone_addmaster()
7167                         are replaced by dns_zone_setmasters().
7168
7169  116.   [func]          Added <isc/offset.h> for isc_offset_t (aka off_t
7170                         on Unix systems).
7171
7172  115.   [port]          Shut up the -Wmissing-declarations warning about
7173                         <stdio.h>'s __sputaux on BSD/OS pre-4.1.
7174
7175  114.   [cleanup]       <isc/sockaddr.h> does not need <isc/buffer.h> or
7176                         <isc/list.h>.
7177
7178  113.   [func]          Utility programs dig and host added.
7179
7180  112.   [cleanup]       <isc/serial.h> does not need <isc/boolean.h>.
7181
7182  111.   [cleanup]       <isc/rwlock.h> does not need <isc/result.h> or
7183                         <isc/mutex.h>.
7184
7185  110.   [cleanup]       <isc/result.h> does not need <isc/boolean.h> or
7186                         <isc/list.h>.
7187
7188  109.   [bug]           "make depend" did nothing for
7189                         bin/tests/{db,mem,sockaddr,tasks,timers}/.
7190
7191  108.   [cleanup]       DNS_SETBIT/DNS_GETBIT/DNS_CLEARBIT moved from
7192                         <dns/types.h> to <dns/bit.h> and renamed to
7193                         DNS_BIT_SET/DNS_BIT_GET/DNS_BIT_CLEAR.
7194
7195  107.   [func]          Add keysigner and keysettool.
7196
7197  106.   [func]          Allow dnssec verifications to ignore the validity
7198                         period.  Used by several of the dnssec tools.
7199
7200  105.   [doc]           doc/dev/coding.html expanded with other
7201                         implicit conventions the developers have used.
7202
7203  104.   [bug]           Made compress_add and compress_find static to
7204                         lib/dns/compress.c.
7205
7206  103.   [func]          libisc buffer API changes for <isc/buffer.h>:
7207                         Added:
7208                                 isc_buffer_base(b)          (pointer)
7209                                 isc_buffer_current(b)       (pointer)
7210                                 isc_buffer_active(b)        (pointer)
7211                                 isc_buffer_used(b)          (pointer)
7212                                 isc_buffer_length(b)            (int)
7213                                 isc_buffer_usedlength(b)        (int)
7214                                 isc_buffer_consumedlength(b)    (int)
7215                                 isc_buffer_remaininglength(b)   (int)
7216                                 isc_buffer_activelength(b)      (int)
7217                                 isc_buffer_availablelength(b)   (int)
7218                         Removed:
7219                                 ISC_BUFFER_USEDCOUNT(b)
7220                                 ISC_BUFFER_AVAILABLECOUNT(b)
7221                                 isc_buffer_type(b)
7222                         Changed names:
7223                                 isc_buffer_used(b, r) ->
7224                                         isc_buffer_usedregion(b, r)
7225                                 isc_buffer_available(b, r) ->
7226                                         isc_buffer_available_region(b, r)
7227                                 isc_buffer_consumed(b, r) ->
7228                                         isc_buffer_consumedregion(b, r)
7229                                 isc_buffer_active(b, r) ->
7230                                         isc_buffer_activeregion(b, r)
7231                                 isc_buffer_remaining(b, r) ->
7232                                         isc_buffer_remainingregion(b, r)
7233
7234                         Buffer types were removed, so the ISC_BUFFERTYPE_*
7235                         macros are no more, and the type argument to
7236                         isc_buffer_init and isc_buffer_allocate were removed.
7237                         isc_buffer_putstr is now void (instead of isc_result_t)
7238                         and requires that the caller ensure that there
7239                         is enough available buffer space for the string.
7240
7241  102.   [port]          Correctly detect inet_aton, inet_pton and inet_ptop
7242                         on BSD/OS 4.1.
7243
7244  101.   [cleanup]       Quieted EGCS warnings from lib/isc/print.c.
7245
7246  100.   [cleanup]       <isc/random.h> does not need <isc/int.h> or
7247                         <isc/mutex.h>.  isc_random_t moved to <isc/types.h>.
7248
7249   99.   [cleanup]       Rate limiter now has separate shutdown() and
7250                         destroy() functions, and it guarantees that all
7251                         queued events are delivered even in the shutdown case.
7252
7253   98.   [cleanup]       <isc/print.h> does not need <stdarg.h> or <stddef.h>
7254                         unless ISC_PLATFORM_NEEDVSNPRINTF is defined.
7255
7256   97.   [cleanup]       <isc/ondestroy.h> does not need <stddef.h> or
7257                         <isc/event.h>.
7258
7259   96.   [cleanup]       <isc/mutex.h> does not need <isc/result.h>.
7260
7261   95.   [cleanup]       <isc/mutexblock.h> does not need <isc/result.h>.
7262
7263   94.   [cleanup]       Some installed header files did not compile as C++.
7264
7265   93.   [cleanup]       <isc/msgcat.h> does not need <isc/result.h>.
7266
7267   92.   [cleanup]       <isc/mem.h> does not need <stddef.h>, <isc/boolean.h>,
7268                         or <isc/result.h>.
7269
7270   91.   [cleanup]       <isc/log.h> does not need <sys/types.h> or
7271                         <isc/result.h>.
7272
7273   90.   [cleanup]       Removed unneeded ISC_LANG_BEGINDECLS/ISC_LANG_ENDDECLS
7274                         from <named/listenlist.h>.
7275
7276   89.   [cleanup]       <isc/lex.h> does not need <stddef.h>.
7277
7278   88.   [cleanup]       <isc/interfaceiter.h> does not need <isc/result.h> or
7279                         <isc/mem.h>.  isc_interface_t and isc_interfaceiter_t
7280                         moved to <isc/types.h>.
7281
7282   87.   [cleanup]       <isc/heap.h> does not need <isc/boolean.h>,
7283                         <isc/mem.h> or <isc/result.h>.
7284
7285   86.   [cleanup]       isc_bufferlist_t moved from <isc/bufferlist.h> to
7286                         <isc/types.h>.
7287
7288   85.   [cleanup]       <isc/bufferlist.h> does not need <isc/buffer.h>,
7289                         <isc/list.h>, <isc/mem.h>, <isc/region.h> or
7290                         <isc/int.h>.
7291
7292   84.   [func]          allow-query ACL checks now apply to all data
7293                         added to a response.
7294
7295   83.   [func]          If the server is authoritative for both a
7296                         delegating zone and its (nonsecure) delegatee, and
7297                         a query is made for a KEY RR at the top of the
7298                         delegatee, then the server will look for a KEY
7299                         in the delegator if it is not found in the delegatee.
7300
7301   82.   [cleanup]       <isc/buffer.h> does not need <isc/list.h>.
7302
7303   81.   [cleanup]       <isc/int.h> and <isc/boolean.h> do not need
7304                         <isc/lang.h>.
7305
7306   80.   [cleanup]       <isc/print.h> does not need <stdio.h> or <stdlib.h>.
7307
7308   79.   [cleanup]       <dns/callbacks.h> does not need <stdio.h>.
7309
7310   78.   [cleanup]       lwres_conftest renamed to lwresconf_test for
7311                         consistency with other *_test programs.
7312
7313   77.   [cleanup]       typedef of isc_time_t and isc_interval_t moved from
7314                         <isc/time.h> to <isc/types.h>.
7315
7316   76.   [cleanup]       Rewrote keygen.
7317
7318   75.   [func]          Don't load a zone if its database file is older
7319                         than the last time the zone was loaded.
7320
7321   74.   [cleanup]       Removed mktemplate.o and ufile.o from libisc.a,
7322                         subsumed by file.o.
7323
7324   73.   [func]          New "file" API in libisc, including new function
7325                         isc_file_getmodtime, isc_mktemplate renamed to
7326                         isc_file_mktemplate and isc_ufile renamed to
7327                         isc_file_openunique.  By no means an exhaustive API,
7328                         it is just what's needed for now.
7329
7330   72.   [func]          DNS_RBTFIND_NOPREDECESSOR and DNS_RBTFIND_NOOPTIONS
7331                         added for dns_rbt_findnode, the former to disable the
7332                         setting of the chain to the predecessor, and the
7333                         latter to make clear when no options are set.
7334
7335   71.   [cleanup]       Made explicit the implicit REQUIREs of
7336                         isc_time_seconds, isc_time_nanoseconds, and
7337                         isc_time_subtract.
7338
7339   70.   [func]          isc_time_set() added.
7340
7341   69.   [bug]           The zone object's master and also-notify lists grew
7342                         longer with each server reload.
7343
7344   68.   [func]          Partial support for SIG(0) on incoming messages.
7345
7346   67.   [performance]   Allow use of alternate (compile-time supplied)
7347                         OpenSSL libraries/headers.
7348
7349   66.   [func]          Data in authoritative zones should have a trust level
7350                         beyond secure.
7351
7352   65.   [cleanup]       Removed obsolete typedef of dns_zone_callbackarg_t
7353                         from <dns/types.h>.
7354
7355   64.   [func]          The RBT, DB, and zone table APIs now allow the
7356                         caller find the most-enclosing superdomain of
7357                         a name.
7358
7359   63.   [func]          Generate NOTIFY messages.
7360
7361   62.   [func]          Add UDP refresh support.
7362
7363   61.   [cleanup]       Use single quotes consistently in log messages.
7364
7365   60.   [func]          Catch and disallow singleton types on message
7366                         parse.
7367
7368   59.   [bug]           Cause net/host unreachable to be a hard error
7369                         when sending and receiving.
7370
7371   58.   [bug]           bin/named/query.c could sometimes trigger the
7372                         (client->query.attributes & NS_QUERYATTR_NAMEBUFUSED)
7373                         == 0 assertion in query_newname().
7374
7375   57.   [func]          Added dns_nxt_typepresent()
7376
7377   56.   [bug]           SIG records were not properly returned in cached
7378                         negative answers.
7379
7380   55.   [bug]           Responses containing multiple names in the authority
7381                         section were not negatively cached.
7382
7383   54.   [bug]           If a fetch with sigrdataset==NULL joined one with
7384                         sigrdataset!=NULL or vice versa, the resolver
7385                         could catch an assertion or lose signature data,
7386                         respectively.
7387
7388   53.   [port]          freebsd 4.0: lib/isc/unix/socket.c requires
7389                         <sys/param.h>.
7390
7391   52.   [bug]           rndc: taskmgr and socketmgr were not initialized
7392                         to NULL.
7393
7394   51.   [cleanup]       dns/compress.h and dns/zt.h did not need to include
7395                         dns/rbt.h; it was needed only by compress.c and zt.c.
7396
7397   50.   [func]          RBT deletion no longer requires a valid chain to work,
7398                         and dns_rbt_deletenode was added.
7399
7400   49.   [func]          Each cache now has its own mctx.
7401
7402   48.   [func]          isc_task_create() no longer takes an mctx.
7403                         isc_task_mem() has been eliminated.
7404
7405   47.   [func]          A number of modules now use memory context reference
7406                         counting.
7407
7408   46.   [func]          Memory contexts are now reference counted.
7409                         Added isc_mem_inuse() and isc_mem_preallocate().
7410                         Renamed isc_mem_destroy_check() to
7411                         isc_mem_setdestroycheck().
7412
7413   45.   [bug]           The trusted-key statement incorrectly loaded keys.
7414
7415   44.   [bug]           Don't include authority data if it would force us
7416                         to unset the AD bit in the message.
7417
7418   43.   [bug]           DNSSEC verification of cached rdatasets was failing.
7419
7420   42.   [cleanup]       Simplified logging of messages with embedded domain
7421                         names by introducing a new convenience function
7422                         dns_name_format().
7423
7424   41.   [func]          Use PR_SET_KEEPCAPS on Linux 2.3.99-pre3 and later
7425                         to allow 'named' to run as a non-root user while
7426                         retaining the ability to bind() to privileged
7427                         ports.
7428
7429   40.   [func]          Introduced new logging category "dnssec" and
7430                         logging module "dns/validator".
7431
7432   39.   [cleanup]       Moved the typedefs for isc_region_t, isc_textregion_t,
7433                         and isc_lex_t to <isc/types.h>.
7434
7435   38.   [bug]           TSIG signed incoming zone transfers work now.
7436
7437   37.   [bug]           If the first RR in an incoming zone transfer was
7438                         not an SOA, the server died with an assertion failure
7439                         instead of just reporting an error.
7440
7441   36.   [cleanup]       Change DNS_R_SUCCESS (and others) to ISC_R_SUCCESS
7442
7443   35.   [performance]   Log messages which are of a level too high to be
7444                         logged by any channel in the logging configuration
7445                         will not cause the log mutex to be locked.
7446
7447   34.   [bug]           Recursion was allowed even with 'recursion no'.
7448
7449   33.   [func]          The RBT now maintains a parent pointer at each node.
7450
7451   32.   [cleanup]       bin/lwresd/client.c needs <string.h> for memset()
7452                         prototype.
7453
7454   31.   [bug]           Use ${LIBTOOL} to compile bin/named/main.@O@.
7455
7456   30.   [func]          config file grammar change to support optional
7457                         class type for a view.
7458
7459   29.   [func]          support new config file view options:
7460
7461                                 auth-nxdomain recursion query-source
7462                                 query-source-v6 transfer-source
7463                                 transfer-source-v6 max-transfer-time-out
7464                                 max-transfer-idle-out transfer-format
7465                                 request-ixfr provide-ixfr cleaning-interval
7466                                 fetch-glue notify rfc2308-type1 lame-ttl
7467                                 max-ncache-ttl min-roots
7468
7469   28.   [func]          support lame-ttl, min-roots and serial-queries
7470                         config global options.
7471
7472   27.   [bug]           Only include <netinet6/in6.h> on BSD/OS 4.[01]*.
7473                         Including it on other platforms (eg, NetBSD) can
7474                         cause a forced #error from the C preprocessor.
7475
7476   26.   [func]          new match-clients statement in config file view.
7477
7478   25.   [bug]           make install failed to install <isc/log.h> and
7479                         <isc/ondestroy.h>.
7480
7481   24.   [cleanup]       Eliminate some unnecessary #includes of header
7482                         files from header files.
7483
7484   23.   [cleanup]       Provide more context in log messages about client
7485                         requests, using a new function ns_client_log().
7486
7487   22.   [bug]           SIGs weren't returned in the answer section when
7488                         the query resulted in a fetch.
7489
7490   21.   [port]          Look at STD_CINCLUDES after CINCLUDES during
7491                         compilation, so additional system include directories
7492                         can be searched but header files in the bind9 source
7493                         tree with conflicting names take precedence.  This
7494                         avoids issues with installed versions of dnssafe and
7495                         openssl.
7496
7497   20.   [func]          Configuration file post-load validation of zones
7498                         failed if there were no zones.
7499
7500   19.   [bug]           dns_zone_notifyreceive() failed to unlock the zone
7501                         lock in certain error cases.
7502
7503   18.   [bug]           Use AC_TRY_LINK rather than AC_TRY_COMPILE in
7504                         configure.in to check for presence of in6addr_any.
7505
7506   17.   [func]          Do configuration file post-load validation of zones.
7507
7508   16.   [bug]           put quotes around key names on config file
7509                         output to avoid possible keyword clashes.
7510
7511   15.   [func]          Add dns_name_dupwithoffsets().  This function is
7512                         improves comparison performance for duped names.
7513
7514   14.   [bug]           free_rbtdb() could have 'put' unallocated memory in
7515                         an unlikely error path.
7516
7517   13.   [bug]           lib/dns/master.c and lib/dns/xfrin.c didn't ignore
7518                         out-of-zone data.
7519
7520   12.   [bug]           Fixed possible uninitialized variable error.
7521
7522   11.   [bug]           axfr_rrstream_first() didn't check the result code of
7523                         db_rr_iterator_first(), possibly causing an assertion
7524                         to be triggered later.
7525
7526   10.   [bug]           A bug in the code which makes EDNS0 OPT records in
7527                         bin/named/client.c and lib/dns/resolver.c could
7528                         trigger an assertion.
7529
7530    9.   [cleanup]       replaced bit-setting code in confctx.c and replaced
7531                         repeated code with macro calls.
7532
7533    8.   [bug]           Shutdown of incoming zone transfer accessed
7534                         freed memory.
7535
7536    7.   [cleanup]       removed 'listen-on' from view statement.
7537
7538    6.   [bug]           quote RR names when generating config file to
7539                         prevent possible clash with config file keywords
7540                         (such as 'key').
7541
7542    5.   [func]          syntax change to named.conf file: new ssu grant/deny
7543                         statements must now be enclosed by an 'update-policy'
7544                         block.
7545
7546    4.   [port]          bin/named/unix/os.c didn't compile on systems with
7547                         linux 2.3 kernel includes due to conflicts between
7548                         C library includes and the kernel includes.  We now
7549                         get only what we need from <linux/capability.h>, and
7550                         avoid pulling in other linux kernel .h files.
7551
7552    3.   [bug]           TKEYs go in the answer section of responses, not
7553                         the additional section.
7554
7555    2.   [bug]           Generating cryptographic randomness failed on
7556                         systems without /dev/random.
7557
7558    1.   [bug]           The installdirs rule in
7559                         lib/isc/unix/include/isc/Makefile.in had a typo which
7560                         prevented the isc directory from being created if it
7561                         didn't exist.
7562
7563         --- 9.0.0b2 released ---
7564
7565 # This tells Emacs to use hard tabs in this file.
7566 # Local Variables:
7567 # indent-tabs-mode: t
7568 # End: