xref: /openbsd-src/usr.sbin/unbound/doc/Changelog (revision 9f11ffb7133c203312a01e4b986886bc88c7d74b)
15 February 2019: Wouter
2	- Fix tls-ciphers spelling in example.conf
3
428 January 2019: Wouter
5	- ub_ctx_set_tls call for libunbound that enables DoT for the machines
6	  set with ub_ctx_set_fwd.  Patch from Florian Obser.
7	- Set build system for added call in the libunbound API.
8	- List example config for root zone copy locally hosted with auth-zone
9	  as suggested from draft-ietf-dnsop-7706-bis-02.  But with updated
10	  B root address.
11	- set version to 1.9.0 for release.
12
1325 January 2019: Wouter
14	- Fix that tcp for auth zone and outgoing does not remove and
15	  then gets the ssl read again applied to the deleted commpoint.
16	- updated contrib/fastrpz.patch to cleanly diff.
17	- no lock when threads disabled in tcp request buffer count.
18	- remove compile warnings from libnettle compile.
19	- output of newer lex 2.6.1 and bison 3.0.5.
20
2124 January 2019: Wouter
22	- Newer aclocal and libtoolize used for generating configure scripts,
23	  aclocal 1.16.1 and libtoolize 2.4.6.
24	- Fix unit test for python 3.7 new keyword 'async'.
25	- clang analysis fixes, assert arc4random buffer in init,
26	  no check for already checked delegation pointer in iterator,
27	  in testcode check for NULL packet matches, in perf do not copy
28	  from NULL start list when growing capacity.  Adjust host and file
29	  only when present in test header read to please checker.  In
30	  testcode for unknown macro operand give zero result. Initialise the
31	  passed argv array in test code.  In test code add EDNS data
32	  segment copy only when nonempty.
33	- Patch from Florian Obser fixes some compiler warnings:
34	  include mini_event.h to have a prototype for mini_ev_cmp
35	  include edns.h to have a prototype for apply_edns_options
36	  sldns_wire2str_edns_keepalive_print is only called in the wire2str,
37	  module declare it static to get rid of compiler warning:
38	  no previous prototype for function
39	  infra_find_ip_ratedata() is only called in the infra module,
40	  declare it static to get rid of compiler warning:
41	  no previous prototype for function
42	  do not shadow local variable buf in authzone
43	  auth_chunks_delete and az_nsec3_findnode are only called in the
44	  authzone module, declare them static to get rid of compiler warning:
45	  no previous prototype for function...
46	  copy_rrset() is only called in the respip module, declare it
47	  static to get rid of compiler warning:
48	  no previous prototype for function 'copy_rrset'
49	  no need for another variable "r"; gets rid of compiler warning:
50	  declaration shadows a local variable in libunbound.c
51	  no need for another variable "ns"; gets rid of compiler warning:
52	  declaration shadows a local variable in iterator.c
53	- Moved includes and make depend.
54
5523 January 2019: Wouter
56	- Patch from Manabu Sonoda with tls-ciphers and tls-ciphersuites
57	  options for unbound.conf.
58	- Fixes for the patch, and man page entry.
59	- Fix configure to detect SSL_CTX_set_ciphersuites, for better
60	  library compatibility when compiling.
61	- Patch for TLS session resumption from Manabu Sonoda,
62	  enable with tls-session-ticket-keys in unbound.conf.
63	- Fixes for patch (includes, declarations, warnings).  Free at end
64	  and keep config options in order read from file to keep the first
65	  one as the first one.
66	- Fix for IXFR fallback to reset counter when IXFR does not timeout.
67
6822 January 2019: Wouter
69	- Fix space calculation for tcp req buffer size.
70	- Doc for stream-wait-size and unit test.
71	- unbound-control stats has mem.streamwait that counts TCP and TLS
72	  waiting result buffers.
73	- Fix for #4219: secondaries not updated after serial change, unbound
74	  falls back to AXFR after IXFR gives several timeout failures.
75	- Fix that auth zone after IXFR fallback tries the same master.
76
7721 January 2019: Wouter
78	- Fix tcp idle timeout test, for difference in the tcp reply code.
79	- Unit test for tcp request reorder and timeouts.
80	- Unit tests for ssl out of order processing.
81	- Fix that multiple dns fragments can be carried in one TLS frame.
82	- Add stream-wait-size: 4m config option to limit the maximum
83	  memory used by waiting tcp and tls stream replies.  This avoids
84	  a denial of service where these replies use up all of the memory.
85
8617 January 2019: Wouter
87	- For caps-for-id fallback, use the whitelist to avoid timeout
88	  starting a fallback sequence for it.
89	- increase mesh max activation count for capsforid long fetches.
90
9116 January 2019: Ralph
92	- Get ready for the DNS flag day: remove EDNS lame procedure, do not
93	  re-query without EDNS after timeout.
94
9515 January 2019: Wouter
96	- In the out of order processing, reset byte count for (potential)
97	  partial read.
98	- Review fixes in out of order processing.
99
10014 January 2019: Wouter
101	- streamtcp option -a send queries consecutively and prints answers
102	  as they arrive.
103	- Fix for out of order processing administration quit cleanup.
104	- unit test for tcp out of order processing.
105
10611 January 2019: Wouter
107	- Initial commit for out-of-order processing for TCP and TLS.
108
1099 January 2019: Wouter
110	- Log query name for looping module errors.
111
1128 January 2019: Wouter
113	- Fix syntax in comment of local alias processing.
114	- Fix NSEC3 record that is returned in wildcard replies from
115	  auth-zone zones with NSEC3 and wildcards.
116
1177 January 2019: Wouter
118	- On FreeBSD warn if systcl settings do not allow server TCP FASTOPEN,
119	  and server tcp fastopen is enabled at compile time.
120	- Document interaction between the tls-upstream option in the server
121	  section and forward-tls-upstream option in the forward-zone sections.
122	- Add contrib/unbound-fuzzme.patch from Jacob Hoffman-Andrews,
123	  the patch adds a program used for fuzzing.
124
12512 December 2018: Wouter
126	- Fix for crash in dns64 module if response is null.
127
12810 December 2018: Wouter
129	- Fix config parser memory leaks.
130	- ip-ratelimit-factor of 1 allows all traffic through, instead of the
131	  previous blocking everything.
132	- Fix for FreeBSD port make with dnscrypt and dnstap enabled.
133	- Fix #4206: support openssl 1.0.2 for TLS hostname verification,
134	  alongside the 1.1.0 and later support that is already there.
135	- Fixup openssl 1.0.2 compile
136
1376 December 2018: Wouter
138	- Fix dns64 allocation in wrong region for returned internal queries.
139
1403 December 2018: Wouter
141	- Fix icon, no ragged edges and nicer resolutions available, for eg.
142	  Win 7 and Windows 10 display.
143	- cache-max-ttl also defines upperbound of initial TTL in response.
144
14530 November 2018: Wouter
146	- Patch for typo in unbound.conf man page.
147	- log-tag-queryreply: yes in unbound.conf tags the log-queries and
148	  log-replies in the log file for easier log filter maintenance.
149
15029 November 2018: Wouter
151	- iana portlist updated.
152	- Fix chroot auth-zone fix to remove chroot prefix.
153	- tag for 1.8.2rc1, which became 1.8.2 on 4 dec 2018, with icon
154	  updated.  Trunk contains 1.8.3 in development.
155	  Which became 1.8.3 on 11 december with only the dns64 fix of 6 dec.
156	  Trunk then became 1.8.4 in development.
157	- Fix that unbound-checkconf does not complains if the config file
158	  is not placed inside the chroot.
159	- Refuse to start with no ports.
160	- Remove clang analysis warnings.
161
16228 November 2018: Wouter
163	- Fix leak in chroot fix for auth-zone.
164	- Fix clang analysis for outside directory build test.
165
16627 November 2018: Wouter
167	- Fix DNS64 to not store intermediate results in cache, this avoids
168	  other threads from picking up the wrong data.  The module restores
169	  the previous no_cache_store setting when the the module is finished.
170	- Fix #4208: 'stub-no-cache' and 'forward-no-cache' not work.
171	- New and better fix for Fix #4193: Fix that prefetch failure does
172	  not overwrite valid cache entry with SERVFAIL.
173	- auth-zone give SERVFAIL when expired, fallback activates when
174	  expired, and this is documented in the man page.
175	- stat count SERVFAIL downstream auth-zone queries for expired zones.
176	- Put new logos into windows installer.
177	- Fix windows compile for new rrset roundrobin fix.
178	- Update contrib fastrpz patch for latest release.
179
18026 November 2018: Wouter
181	- Fix to not set GLOB_NOSORT so the unbound.conf include: files are
182	  sorted and in a predictable order.
183	- Fix #4193: Fix that prefetch failure does not overwrite valid cache
184	  entry with SERVFAIL.
185	- Add unbound-control view_local_datas command, like local_datas.
186	- Fix that unbound-control can send file for view_local_datas.
187
18822 November 2018: Wouter
189	- With ./configure --with-pyunbound --with-pythonmodule
190	  PYTHON_VERSION=3.6 or with 2.7 unbound can compile and unit tests
191	  succeed for the python module.
192	- pythonmod logs the python error and traceback on failure.
193	- ignore debug python module for test in doxygen output.
194	- review fixes for python module.
195	- Fix #4209: Crash in libunbound when called from getdns.
196	- auth zone zonefiles can be in a chroot, the chroot directory
197	  components are removed before use.
198	- Fix that empty zonefile means the zonefile is not set and not used.
199	- make depend.
200
20121 November 2018: Wouter
202	- Scrub NS records from NODATA responses as well.
203
20420 November 2018: Wouter
205	- Scrub NS records from NXDOMAIN responses to stop fragmentation
206	  poisoning of the cache.
207	- Add patch from Jan Vcelak for pythonmod,
208	  add sockaddr_storage getters, add support for query callbacks,
209	  allow raw address access via comm_reply and update API documentation.
210	- Removed compile warnings in pythonmod sockaddr routines.
211
21219 November 2018: Wouter
213	- Support SO_REUSEPORT_LB in FreeBSD 12 with the so-reuseport: yes
214	  option in unbound.conf.
215
2166 November 2018: Ralph
217	- Bugfix min-client-subnet-ipv6
218
21925 October 2018: Ralph
220	- Add min-client-subnet-ipv6 and min-client-subnet-ipv4 options.
221
22225 October 2018: Wouter
223	- Fix #4191: NXDOMAIN vs SERVFAIL during dns64 PTR query.
224	- Fix #4190: Please create a "ANY" deny option, adds the option
225	  deny-any: yes in unbound.conf.  This responds with an empty message
226	  to queries of type ANY.
227	- Fix #4141: More randomness to rrset-roundrobin.
228	- Fix #4132: Openness/closeness of RANGE intervals in rpl files.
229	- Fix #4126: RTT_band too low on VSAT links with 600+ms latency,
230	  adds the option unknown-server-time-limit to unbound.conf that
231	  can be increased to avoid the problem.
232	- remade makefile dependencies.
233	- Fix #4152: Logs shows wrong time when using log-time-ascii: yes.
234
23524 October 2018: Ralph
236	- Add markdel function to ECS slabhash.
237	- Limit ECS scope returned to client to the scope used for caching.
238	- Make lint like previous #4154 fix.
239
24022 October 2018: Wouter
241	- Fix #4192: unbound-control-setup generates keys not readable by
242	  group.
243	- check that the dnstap socket file can be opened and exists, print
244	  error if not.
245	- Fix #4154: make ECS_MAX_TREESIZE configurable, with
246	  the max-ecs-tree-size-ipv4 and max-ecs-tree-size-ipv6 options.
247
24822 October 2018: Ralph
249	- Change fast-server-num default to 3.
250
2518 October 2018: Ralph
252	- Add fast-server-permil and fast-server-num options.
253	- Deprecate low-rtt and low-rtt-permil options.
254
2558 October 2018: Wouter
256	- Squelch log of failed to tcp initiate after TCP Fastopen failure.
257
2585 October 2018: Wouter
259	- Squelch EADDRNOTAVAIL errors when the interface goes away,
260	  this omits 'can't assign requested address' errors unless
261	  verbosity is set to a high value.
262	- Set default for so-reuseport to no for FreeBSD.  It is enabled
263	  by default for Linux and DragonFlyBSD.  The setting can
264	  be configured in unbound.conf to override the default.
265	- iana port update.
266
2672 October 2018: Wouter
268	- updated contrib/fastrpz.patch to apply for this version
269	- dnscrypt.c removed sizeof to get array bounds.
270	- Fix testlock code to set noreturn on error routine.
271	- Remove unused variable from contrib fastrpz/rpz.c and
272	  remove unused diagnostic pragmas that themselves generate warnings
273	- clang analyze test is used only when assertions are enabled.
274
2751 October 2018: Wouter
276	- tag for release 1.8.1rc1.  Became release 1.8.1 on 8 oct, with
277	  fastrpz.patch fix included.  Trunk has 1.8.2 in development.
278
27927 September 2018: Wouter
280	- Fix #4188: IPv6 forwarders without ipv6 result in SERVFAIL, fixes
281	  qname minimisation with a forwarder when connectivity has issues
282	  from rejecting responses.
283
28425 September 2018: Wouter
285	- Perform TLS SNI indication of the host that is being contacted
286	  for DNS over TLS service.  It sets the configured tls auth name.
287	  This is useful for hosts that apart from the DNS over TLS services
288	  also provide other (web) services.
289	- Fix #4149: Add SSL cleanup for tcp timeout.
290
29117 September 2018: Wouter
292	- Fix compile on Mac for unbound, provide explicit_bzero when libc
293	  does not have it.
294	- Fix unbound for openssl in FIPS mode, it uses the digests with
295	  the EVP call contexts.
296	- Fix that with harden-below-nxdomain and qname minisation enabled
297	  some iterator states for nonresponsive domains can get into a
298	  state where they waited for an empty list.
299	- Stop UDP to TCP failover after timeouts that causes the ping count
300	  to be reset by the TCP time measurement (that exists for TLS),
301	  because that causes the UDP part to not be measured as timeout.
302	- Fix #4156: Fix systemd service manager state change notification.
303
30413 September 2018: Wouter
305	- Fix seed for random backup code to use explicit zero when wiped.
306	- exit log routine is annotated as noreturn function.
307	- free memory leaks in config strlist and str2list insert functions.
308	- do not move unused argv variable after getopt.
309	- Remove unused if clause in testcode.
310	- in testcode, free async ids, initialise array, and check for null
311	  pointer during test of the test.  And use exit for return to note
312	  irregular program stop.
313	- Free memory leak in config strlist append.
314	- make sure nsec3 comparison salt is initialized.
315	- unit test has clang analysis.
316	- remove unused variable assignment from iterator scrub routine.
317	- check for null in delegation point during iterator refetch
318	  in forward zone.
319	- neater pointer cast in libunbound context quit routine.
320	- initialize statistics totals for printout.
321	- in authzone check that node exists before adding rrset.
322	- in unbound-anchor, use readwrite memory BIO.
323	- assertion in autotrust that packed rrset is formed correctly.
324	- Fix memory leak when message parse fails partway through copy.
325	- remove unused udpsize assignment in message encode.
326	- nicer bio free code in unbound-anchor.
327	- annotate exit functions with noreturn in unbound-control.
328
32911 September 2018: Wouter
330	- Fixed unused return value warnings in contrib/fastrpz.patch for
331	  asprintf.
332	- Fix to squelch respip warning in unit test, it is printed at
333	  higher verbosity settings.
334	- Fix spelling errors.
335	- Fix initialisation in remote.c
336
33710 September 2018: Wouter
338	- 1.8.1 in svn trunk. (changes from 4,5,.. sep apply).
339	- iana port update.
340
3415 September 2018: Wouter
342	- Fix spelling error in header, from getdns commit by Andreas Gelmini.
343
3444 September 2018: Ralph
345	- More explicitly mention the type of ratelimit when applying
346	  ip-ratelimit.
347
3484 September 2018: Wouter
349	- Tag for 1.8.0rc1 release, became 1.8.0 release on 10 Sep 2018.
350
35131 August 2018: Wouter
352	- Disable minimal-responses in subnet unit tests.
353
35430 August 2018: Wouter
355	- Fix that a local-zone with a local-zone-type that is transparent
356	  in a view with view-first, makes queries check for answers from the
357	  local-zones defined outside of views.
358
35928 August 2018: Ralph
360	- Disable minimal-responses in ipsecmod unit tests.
361	- Added serve-expired-ttl and serve-expired-ttl-reset options.
362
36327 August 2018: Wouter
364	- Set defaults to yes for a number of options to increase speed and
365	  resilience of the server.  The so-reuseport, harden-below-nxdomain,
366	  and minimal-responses options are enabled by default.  They used
367	  to be disabled by default, waiting to make sure they worked.  They
368	  are enabled by default now, and can be disabled explicitly by
369	  setting them to "no" in the unbound.conf config file.  The reuseport
370	  and minimal options increases speed of the server, and should be
371	  otherwise harmless.  The harden-below-nxdomain option works well
372	  together with the recently default enabled qname minimisation, this
373	  causes more fetches to use information from the cache.
374	- next release is called 1.8.0.
375	- Fix lintflags for lint on FreeBSD.
376
37722 August 2018: George
378	- #4140: Expose repinfo (comm_reply) to the inplace_callbacks. This
379	  gives access to reply information for the client's communication
380	  point when the callback is called before the mesh state (modules).
381	  Changes to C and Python's inplace_callback signatures were also
382	  necessary.
383
38421 August 2018: Wouter
385	- log-local-actions: yes option for unbound.conf that logs all the
386	  local zone actions, a patch from Saksham Manchanda (Secure64).
387	- #4146: num.query.subnet and num.query.subnet_cache counters.
388	- Fix only misc failure from log-servfail when val-log-level is not
389	  enabled.
390
39117 August 2018: Ralph
392	- Fix classification for QTYPE=CNAME queries when QNAME minimisation is
393 	  enabled.
394
39517 August 2018: Wouter
396	- Set libunbound to increase current, because the libunbound change
397	  to the event callback function signature.  That needs programs,
398	  that use it, to recompile against the new header definition.
399	- print servfail info to log as error.
400	- added more servfail printout statements, to the iterator.
401	- log-servfail: yes prints log lines that say why queries are
402	  returning SERVFAIL to clients.
403
40416 August 2018: Wouter
405	- Fix warning on compile without threads.
406	- Fix contrib/fastrpz.patch.
407
40815 August 2018: Wouter
409	- Fix segfault in auth-zone read and reorder of RRSIGs.
410
41114 August 2018: Wouter
412	- Fix that printout of error for cycle targets is a verbosity 4
413	  printout and does not wrongly print it is a memory error.
414	- Upgraded crosscompile script to include libunbound DLL in the
415	  zipfile.
416
41710 August 2018: Wouter
418	- Fix #4144: dns64 module caches wrong (negative) information.
419
4209 August 2018: Wouter
421	- unbound-checkconf checks if modules exist and prints if they are
422	  not compiled in the name of the wrong module.
423	- document --enable-subnet in doc/README.
424	- Patch for stub-no-cache and forward-no-cache options that disable
425	  caching for the contents of that stub or forward, for when you
426	  want immediate changes visible, from Bjoern A. Zeeb.
427
4287 August 2018: Ralph
429	- Make capsforid fallback QNAME minimisation aware.
430
4317 August 2018: Wouter
432	- Fix #4142: unbound.service.in: improvements and fixes.
433	  Add unit dependency ordering (based on systemd-resolved).
434	  Add 'CAP_SYS_RESOURCE' to 'CapabilityBoundingSet' (fixes warnings
435	  about missing privileges during startup). Add 'AF_INET6' to
436	  'RestrictAddressFamilies' (without it IPV6 can't work). From
437	  Guido Shanahan.
438	- Patch to implement tcp-connection-limit from Jim Hague (Sinodun).
439	  This limits the number of simultaneous TCP client connections
440	  from a nominated netblock.
441	- make depend, yacc, lex, doc, headers.  And log the limit exceeded
442	  message only on high verbosity, so as to not spam the logs when
443	  it is busy.
444
4456 August 2018: Wouter
446	- Fix for #4136: Fix to unconditionally call destroy in daemon.c.
447
4483 August 2018: George
449	- Expose if a query (or a subquery) was ratelimited (not src IP
450	  ratelimiting) to libunbound under 'ub_result.was_ratelimited'.
451	  This also introduces a change to 'ub_event_callback_type' in
452	  libunbound/unbound-event.h.
453	- Tidy pylib tests.
454
4553 August 2018: Wouter
456	- Revert previous change for #4136: because it introduces build
457	  problems.
458	- New fix for #4136: This one ignores lex without without
459	  yylex_destroy.
460
4611 August 2018: Wouter
462	- Fix to remove systemd sockaddr function check, that is not
463	  always present.  Make socket activation more lenient.  But not
464	  different when socket activation is not used.
465	- iana port list update.
466
46731 July 2018: Wouter
468	- Patches from Jim Hague (Sinodun) for EDNS KeepAlive.
469	- Sort out test runs when the build directory isn't the project
470	  root directory.
471	- Add config tcp-idle-timeout (default 30s). This applies to
472	  client connections only; the timeout on TCP connections upstream
473	  is unaffected.
474	- Error if EDNS Keepalive received over UDP.
475	- Add edns-tcp-keepalive and edns-tcp-keepalive timeout options
476	  and implement option in client responses.
477	- Correct and expand manual page entries for keepalive and idle timeout.
478	- Implement progressive backoff of TCP idle/keepalive timeout.
479	- Fix 'make depend' to work when build dir is not project root.
480	- Add delay parameter to streamtcp, -d secs.
481	  To be used when testing idle timeout.
482	- From Wouter: make depend, the dependencies in the patches did not
483	  apply cleanly.  Also remade yacc and lex.
484	- Fix mesh.c incompatible pointer pass.
485	- Please doxygen so it passes.
486	- Fix #4139: Fix unbound-host leaks memory on ANY.
487
48830 July 2018: Wouter
489	- Fix #4136: insufficiency from mismatch of FLEX capability between
490	  released tarball and build host.
491
49227 July 2018: Wouter
493	- Fix man page, say that chroot is enabled by default.
494
49526 July 2018: Wouter
496	- Fix #4135: 64-bit Windows Installer Creates Entries Under The
497	  Wrong Registry Key, reported by Brian White.
498
49923 July 2018: Wouter
500	- Fix use-systemd readiness signalling, only when use-systemd is yes
501	  and not in signal handler.
502
50320 July 2018: Wouter
504	- Fix #4130: print text describing -dd and unbound-checkconf on
505	  config file read error at startup, the errors may have been moved
506	  away by the startup process.
507	- Fix #4131: for solaris, error YY_CURRENT_BUFFER undeclared.
508
50919 July 2018: Wouter
510	- Fix #4129 unbound-control error message with wrong cert permissions
511	  is too cryptic.
512
51317 July 2018: Wouter
514	- Fix #4127 unbound -h does not list -p help.
515	- Print error if SSL name verification configured but not available
516	  in the ssl library.
517	- Fix that ratelimit and ip-ratelimit are applied after reload of
518	  changed config file.
519	- Resize ratelimit and ip-ratelimit caches if changed on reload.
520
52116 July 2018: Wouter
522	- Fix qname minimisation NXDOMAIN validation lookup failures causing
523	  error_supers assertion fails.
524	- Squelch can't bind socket errors with Permission denied unless
525	  verbosity is 4 or higher, for UDP outgoing sockets.
526
52712 July 2018: Wouter
528	- Fix to improve systemd socket activation code file descriptor
529	  assignment.
530	- Fix for 4126 that the #define for UNKNOWN_SERVER_NICENESS can be more
531	  easily changed to adjust default rtt assumptions.
532
53310 July 2018: Wouter
534	- Note in documentation that the cert name match code needs
535	  OpenSSL 1.1.0 or later to be enabled.
536
5376 July 2018: Wouter
538	- Fix documentation ambiguity for tls-win-cert in tls-upstream and
539	  forward-tls-upstream docs.
540	- iana port update.
541	- Note RFC8162 support.  SMIMEA record type can be read in by the
542	  zone record parser.
543	- Fix round robin for failed addresses with prefer-ip6: yes
544
5454 July 2018: Wouter
546	- Fix #4112: Fix that unbound-anchor -f /etc/resolv.conf will not pass
547	  if DNSSEC is not enabled.  New option -R allows fallback from
548	  resolv.conf to direct queries.
549
5503 July 2018: Wouter
551	- Better documentation for unblock-lan-zones and insecure-lan-zones
552	  config statements.
553	- Fix permission denied printed for auth zone probe random port nrs.
554
5552 July 2018: Wouter
556	- Fix checking for libhiredis printout in configure output.
557	- Fix typo on man page in ip-address description.
558	- Update libunbound/python/examples/dnssec_test.py example code to
559	  also set the 20326 trust anchor for the root in the example code.
560
56129 June 2018: Wouter
562	- dns64-ignore-aaaa: config option to list domain names for which the
563	  existing AAAA is ignored and dns64 processing is used on the A
564	  record.
565
56628 June 2018: Wouter
567	- num.queries.tls counter for queries over TLS.
568	- log port number with err_addr logs.
569
57027 June 2018: Wouter
571	- #4109: Fix that package config depends on python unconditionally.
572	- Patch, do not export python from pkg-config, from Petr Menšík.
573
57426 June 2018: Wouter
575	- Partial fix for permission denied on IPv6 address on FreeBSD.
576	- Fix that auth-zone master reply with current SOA serial does not
577	  stop scan of masters for an updated zone.
578	- Fix that auth-zone does not start the wait timer without checking
579	  if the wait timer has already been started.
580
58121 June 2018: Wouter
582	- #4108: systemd reload hang fix.
583	- Fix usage printout for unbound-host, hostname has to be last
584	  argument on BSDs and Windows.
585
58619 June 2018: Wouter
587	- Fix for unbound-control on Windows and set TCP socket parameters
588	  more closely.
589	  This fix is part of 1.7.3.
590	- Windows example service.conf edited with more windows specific
591	  configuration.
592	- Fix windows unbound-control no cert bad file descriptor error.
593	  This fix is part of 1.7.3.
594
59518 June 2018: Wouter
596	- Fix that control-use-cert: no works for 127.0.0.1 to disable certs.
597	  This fix is part of 1.7.3rc2.
598	- Fix unbound-checkconf for control-use-cert.
599	  This fix is part of 1.7.3.
600
60115 June 2018: Wouter
602	- tag for 1.7.3rc1.
603	- trunk has 1.7.4.
604	- unbound-control auth_zone_reload _zone_ option rereads the zonefile.
605	- unbound-control auth_zone_transfer _zone_ option starts the probe
606	  sequence for a master to transfer the zone from and transfers when
607	  a new zone version is available.
608
60914 June 2018: Wouter
610	- #4103: Fix that auth-zone does not insist on SOA record first in
611	  file for url downloads.
612	- Fix that first control-interface determines if TLS is used.  Warn
613	  when IP address interfaces are used without TLS.
614	- Fix nettle compile.
615
61612 June 2018: Ralph
617	- Don't count CNAME response types received during qname minimisation as
618	  query restart.
619
62012 June 2018: Wouter
621	- #4102 for NSD, but for Unbound.  Named unix pipes do not use
622	  certificate and key files, access can be restricted with file and
623	  directory permissions.  The option control-use-cert is no longer
624	  used, and ignored if found in unbound.conf.
625	- Rename tls-additional-ports to tls-additional-port, because every
626	  line adds one port.
627	- Fix buffer size warning in unit test.
628	- remade dependencies in the Makefile.
629
6306 June 2018: Wouter
631	- Patch to fix openwrt for mac os build darwin detection in configure.
632
6335 June 2018: Wouter
634	- Fix crash if ratelimit taken into use with unbound-control
635	  instead of with unbound.conf.
636
6374 June 2018: Wouter
638	- Fix deadlock caused by incoming notify for auth-zone.
639	- tag for 1.7.2rc1, became 1.7.2 release on 11 June 2018,
640	  trunk is 1.7.3 in development from this point.
641	- #4100: Fix stub reprime when it becomes useless.
642
6431 June 2018: Wouter
644	- Rename additional-tls-port to tls-additional-ports.
645	  The older name is accepted for backwards compatibility.
646
64730 May 2018: Wouter
648	- Patch from Syzdek: Add ability to ignore RD bit and treat all
649	  requests as if the RD bit is set.
650
65129 May 2018: Wouter
652	- in compat/arc4random call getentropy_urandom when getentropy fails
653	  with ENOSYS.
654	- Fix that fallback for windows port.
655
65628 May 2018: Wouter
657	- Fix windows tcp and tls spin on events.
658	- Add routine from getdns to add windows cert store to the SSL_CTX.
659	- tls-win-cert option that adds the system certificate store for
660	  authenticating DNS-over-TLS connections.  It can be used instead
661	  of the tls-cert-bundle option, or with it to add certificates.
662
66325 May 2018: Wouter
664	- For TCP and TLS connections that don't establish, perform address
665	  update in infra cache, so future selections can exclude them.
666	- Fix that tcp sticky events are removed for closed fd on windows.
667	- Fix close events for tcp only.
668
66924 May 2018: Wouter
670	- Fix that libunbound can do DNS-over-TLS, when configured.
671	- Fix that windows unbound service can use DNS-over-TLS.
672	- unbound-host initializes ssl (for potential DNS-over-TLS usage
673	  inside libunbound), when ssl upstream or a cert-bundle is configured.
674
67523 May 2018: Wouter
676	- Use accept4 to speed up incoming TCP (and TLS) connections,
677	  available on Linux, FreeBSD and OpenBSD.
678
67917 May 2018: Ralph
680	- Qname minimisation default changed to yes.
681
68215 May 2018: Wouter
683	- Fix low-rtt-pct to low-rtt-permil, as it is parts in one thousand.
684
68511 May 2018: Wouter
686	- Fix contrib/libunbound.pc for libssl libcrypto references,
687	  from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226914
688
6897 May 2018: Wouter
690	- Fix windows to not have sticky TLS events for TCP.
691	- Fix read of DNS over TLS length and data in one read call.
692	- Fix mesh state assertion failure due to callback removal.
693
6943 May 2018: Wouter
695	- Fix that configure --with-libhiredis also turns on cachedb.
696	- Fix gcc 8 buffer warning in testcode.
697	- Fix function type cast warning in libunbound context callback type.
698
6992 May 2018: Wouter
700	- Fix fail to reject dead peers in forward-zone, with ssl-upstream.
701
7021 May 2018: Wouter
703	- Fix that unbound-control reload frees the rrset keys and returns
704	  the memory pages to the system.
705
70630 April 2018: Wouter
707	- Fix spelling error in man page and note defaults as no instead of
708	  off.
709
71026 April 2018: Wouter
711	- Fix for crash in daemon_cleanup with dnstap during reload,
712	  from Saksham Manchanda.
713	- Also that for dnscrypt.
714	- tag for 1.7.1rc1 release.  Became 1.7.1 release on 3 May, trunk
715	  is from here 1.7.2 in development.
716
71725 April 2018: Ralph
718	- Fix memory leak when caching wildcard records for aggressive NSEC use
719
72024 April 2018: Wouter
721	- Fix contrib/fastrpz.patch for this release.
722	- Fix auth https for libev.
723
72424 April 2018: Ralph
725	- Added root-key-sentinel support
726
72723 April 2018: Wouter
728	- makedist uses bz2 for expat code, instead of tar.gz.
729	- Fix #4092: libunbound: use-caps-for-id lacks colon in
730	  config_set_option.
731	- auth zone http download stores exact copy of downloaded file,
732	  including comments in the file.
733	- Fix sldns parse failure for CDS alternate delete syntax empty hex.
734	- Attempt for auth zone fix; add of callback in mesh gets from
735	  callback does not skip callback of result.
736	- Fix cname classification with qname minimisation enabled.
737	- list_auth_zones unbound-control command.
738
73920 April 2018: Wouter
740	- man page documentation for dns-over-tls forward-addr '#' notation.
741	- removed free from failed parse case.
742	- Fix #4091: Fix that reload of auth-zone does not merge the zonefile
743	  with the previous contents.
744	- Delete auth zone when removed from config.
745
74619 April 2018: Wouter
747	- Can set tls authentication with forward-addr: IP#tls.auth.name
748	  And put the public cert bundle in tls-cert-bundle: "ca-bundle.pem".
749	  such as forward-addr: 9.9.9.9@853#dns.quad9.net or
750	  1.1.1.1@853#cloudflare-dns.com
751	- Fix #658: unbound using TLS in a forwarding configuration does not
752	  verify the server's certificate (RFC 8310 support).
753	- For addr with #authname and no @port notation, the default is 853.
754
75518 April 2018: Wouter
756	- Fix auth-zone retry timer to be on schedule with retry timeout,
757	  with backoff.  Also time a refresh at the zone expiry.
758
75917 April 2018: Wouter
760	- auth zone notify work.
761	- allow-notify: config statement for auth-zones.
762	- unit test for allow-notify
763
76416 April 2018: Wouter
765	- Fix auth zone target lookup iterator.
766	- auth zone notify with prefix
767	- auth zone notify work.
768
76913 April 2018: Wouter
770	- Fix for max include depth for authzones.
771	- Fix memory free on fail for $INCLUDE in authzone.
772	- Fix that an internal error to look up the wrong rr type for
773	  auth zone gets stopped, before trying to send there.
774	- auth zone notify work.
775
77610 April 2018: Ralph
777	- num.query.aggressive.NOERROR and num.query.aggressive.NXDOMAIN
778	  statistics counters.
779
78010 April 2018: Wouter
781	- documentation for low-rtt and low-rtt-pct.
782	- auth zone notify work.
783
7849 April 2018: Wouter
785	- Fix that flush_zone sets prefetch ttl expired, so that with
786	  serve-expired enabled it'll start prefetching those entries.
787	- num.query.authzone.up and num.query.authzone.down statistics counters.
788	- Fix downstream auth zone, only fallback when auth zone fails to
789	  answer and fallback is enabled.
790	- Accept both option names with and without colon for get_option
791	  and set_option.
792	- low-rtt and low-rtt-pct in unbound.conf enable the server selection
793	  of fast servers for some percentage of the time.
794
7955 April 2018: Wouter
796	- Combine write of tcp length and tcp query for dns over tls.
797	- nitpick fixes in example.conf.
798	- Fix above stub queries for type NS and useless delegation point.
799	- Fix unbound-control over pipe with openssl 1.1.1, the TLSv1.3
800	  tls_choose_sigalg routine does not allow the ciphers for the pipe,
801	  so use TLSv1.2.
802	- ED448 support.
803
8043 April 2018: Wouter
805	- Fix #4043: make test fails due to v6 presentation issue in macOS.
806	- Fix unable to resolve after new WLAN connection, due to auth-zone
807	  failing with a forwarder set.  Now, auth-zone is only used for
808	  answers (not referrals) when a forwarder is set.
809
81029 March 2018: Ralph
811	- Check "result" in dup_all(), by Florian Obser.
812
81323 March 2018: Ralph
814	- Fix unbound-control get_option aggressive-nsec
815
81621 March 2018: Ralph
817	- Do not use cached NSEC records to generate negative answers for
818	  domains under DNSSEC Negative Trust Anchors.
819
82019 March 2018: Wouter
821	- iana port update.
822
82316 March 2018: Wouter
824	- corrected a minor typo in the changelog.
825	- move htobe64/be64toh portability code to cachedb.c.
826
82715 March 2018: Wouter
828	- Add --with-libhiredis, unbound support for a new cachedb backend
829	  that uses a Redis server as the storage.  This implementation
830	  depends on the hiredis client library (https://redislabs.com/lp/hiredis/).
831	  And unbound should be built with both --enable-cachedb and
832	  --with-libhiredis[=PATH] (where $PATH/include/hiredis/hiredis.h
833	  should exist).  Patch from Jinmei Tatuya (Infoblox).
834	- Fix #3817: core dump happens in libunbound delete, when queued
835	  servfail hits deleted message queue.
836	- Create additional tls service interfaces by opening them on other
837	  portnumbers and listing the portnumbers as additional-tls-port: nr.
838
83913 March 2018: Wouter
840	- Fix typo in documentation.
841	- Fix #3736: Fix 0 TTL domains stuck on SERVFAIL unless manually
842	  flushed with serve-expired on.
843
84412 March 2018: Wouter
845	- Added documentation for aggressive-nsec: yes.
846	- tag 1.7.0rc3.  That became the 1.7.0 release on 15 Mar, trunk
847	  now has 1.7.1 in development.
848	- Fix #3727: Protocol name is TLS, options have been renamed but
849	  documentation is not consistent.
850	- Check IXFR start serial.
851
8529 March 2018: Wouter
853	- Fix #3598: Fix swig build issue on rhel6 based system.
854	  configure --disable-swig-version-check stops the swig version check.
855
8568 March 2018: Wouter
857	- tag 1.7.0rc2.
858
8597 March 2018: Wouter
860	- Fixed contrib/fastrpz.patch, even though this already applied
861	  cleanly for me, now also for others.
862	- patch to log creates keytag queries, from A. Schulze.
863	- patch suggested by Debian lintian: allow to -> allow one to, from
864	  A. Schulze.
865	- Attempt to remove warning about trailing whitespace.
866
8676 March 2018: Wouter
868	- Reverted fix for #3512, this may not be the best way forward;
869	  although it could be changed at a later time, to stay similar to
870	  other implementations.
871	- svn trunk contains 1.7.0, this is the number for the next release.
872	- Fix for windows compile.
873	- tag 1.7.0rc1.
874
8755 March 2018: Wouter
876	- Fix to check define of DSA for when openssl is without deprecated.
877	- iana port update.
878	- Fix #3582: Squelch address already in use log when reuseaddr option
879	  causes same port to be used twice for tcp connections.
880
88127 February 2018: Wouter
882	- Fixup contrib/fastrpz.patch so that it applies.
883	- Fix compile without threads, and remove unused variable.
884	- Fix compile with staticexe and python module.
885	- Fix nettle compile.
886
88722 February 2018: Ralph
888	- Save wildcard RRset from answer with original owner for use in
889 	  aggressive NSEC.
890
89121 February 2018: Wouter
892	- Fix #3512: unbound incorrectly reports SERVFAIL for CAA query
893	  when there is a CNAME loop.
894	- Fix validation for CNAME loops.  When it detects a cname loop,
895	  by finding the cname, cname in the existing list, it returns
896	  the partial result with the validation result up to then.
897	- more robust cachedump rrset routine.
898
89919 February 2018: Wouter
900	- Fix #3505: Documentation for default local zones references
901	  wrong RFC.
902	- Fix #3494: local-zone noview can be used to break out of the view
903	  to the global local zone contents, for queries for that zone.
904	- Fix for more maintainable code in localzone.
905
90616 February 2018: Wouter
907	- Fixes for clang static analyzer, the missing ; in
908	  edns-subnet/addrtree.c after the assert made clang analyzer
909	  produce a failure to analyze it.
910
91113 February 2018: Ralph
912	- Aggressive NSEC tests
913
91413 February 2018: Wouter
915	- tls-cert-bundle option in unbound.conf enables TLS authentication.
916	- iana port update.
917
91812 February 2018: Wouter
919	- Unit test for auth zone https url download.
920
92112 February 2018: Ralph
922	- Added tests with wildcard expanded NSEC records (CVE-2017-15105 test)
923	- Processed aggressive NSEC code review remarks Wouter
924
9258 February 2018: Ralph
926	- Aggressive use of NSEC implementation. Use cached NSEC records to
927	  generate NXDOMAIN, NODATA and positive wildcard answers.
928
9298 February 2018: Wouter
930	- iana port update.
931	- auth zone url config.
932
9335 February 2018: Wouter
934	- Fix #3451: dnstap not building when you have a separate build dir.
935	  And removed protoc warning, set dnstap.proto syntax to proto2.
936	- auth-zone provides a way to configure RFC7706 from unbound.conf,
937	  eg. with auth-zone: name: "." for-downstream: no for-upstream: yes
938	  fallback-enabled: yes and masters or a zonefile with data.
939
9402 February 2018: Wouter
941	- Fix unfreed locks in log and arc4random at exit of unbound.
942	- unit test with valgrind
943	- Fix lock race condition in dns cache dname synthesis.
944	- lock subnet new item before insertion to please checklocks,
945	  no modification of critical regions outside of lock region.
946
9471 February 2018: Wouter
948	- fix unaligned structure making a false positive in checklock
949	  unitialised memory.
950
95129 January 2018: Ralph
952	- Use NSEC with longest ce to prove wildcard absence.
953	- Only use *.ce to prove wildcard absence, no longer names.
954
95525 January 2018: Wouter
956	- ltrace.conf file for libunbound in contrib.
957
95823 January 2018: Wouter
959	- Fix that unbound-checkconf -f flag works with auto-trust-anchor-file
960	  for startup scripts to get the full pathname(s) of anchor file(s).
961	- Print fatal errors about remote control setup before log init,
962	  so that it is printed to console.
963
96422 January 2018: Wouter
965	- Accept tls-upstream in unbound.conf, the ssl-upstream keyword is
966	  also recognized and means the same.  Also for tls-port,
967	  tls-service-key, tls-service-pem, stub-tls-upstream and
968	  forward-tls-upstream.
969	- Fix #3397: Fix that cachedb could return a partial CNAME chain.
970	- Fix #3397: Fix that when the cache contains an unsigned DNAME in
971	  the middle of a cname chain, a result without the DNAME could
972	  be returned.
973
97419 January 2018: Wouter
975	- tag 1.6.8 for release with CVE fix.
976	- trunk has 1.6.9 with fix and previous commits.
977	- patch for CVE-2017-15105: vulnerability in the processing of
978	  wildcard synthesized NSEC records.
979	- iana port update.
980	- make depend: code dependencies updated in Makefile.
981
9824 January 2018: Ralph
983	- Copy query and correctly set flags on REFUSED answers when cache
984	  snooping is not allowed.
985
9863 January 2018: Ralph
987	- Fix queries being leaked above stub when refetching glue.
988
9892 January 2017: Wouter
990	- Fix that DS queries with referral replies are answered straight
991	  away, without a repeat query picking the DS from cache.
992	  The correct reply should have been an answer, the reply is fixed
993	  by the scrubber to have the answer in the answer section.
994	- Remove clang optimizer disable,
995	  Fix that expiration date checks don't fail with clang -O2.
996
99715 December 2017: Wouter
998	- Fix timestamp failure because of clang optimizer failure, by
999	  disabling -O2 when the compiler --version is clang.
1000	- iana port update.
1001	- Also disable -flto for clang, to make incep-expi signature check
1002	  work.
1003
100412 December 2017: Ralph
1005	- Fix qname-minimisation documentation (A QTYPE, not NS)
1006
100712 December 2017: Wouter
1008	- authzone work, transfer connect.
1009
10107 December 2017: Ralph
1011	- Check whether --with-libunbound-only is set when using --with-nettle
1012	  or --with-nss.
1013
10144 December 2017: Wouter
1015	- Fix link failure on OmniOS.
1016
10171 December 2017: Wouter
1018	- auth zone work.
1019
102030 November 2017: Wouter
1021	- Fix #3299 - forward CNAME daisy chain is not working
1022
102314 November 2017: Wouter
1024	- Fix #2882: Unbound behaviour changes (wrong) when domain-insecure is
1025	  set for stub zone.  It no longer searches for DNSSEC information.
1026	- auth xfer work on probe timer and lookup.
1027
102813 November 2017: Wouter
1029	- Fix #2801: Install libunbound.pc.
1030	- Fix qname minimisation to send AAAA queries at zonecut like type A.
1031	- reverted AAAA change.
1032
10337 November 2017: Wouter
1034	- Fix #2492: Documentation libunbound.
1035
10363 November 2017: Wouter
1037	- Fix #2362: TLS1.3/openssl-1.1.1 not working.
1038	- Fix #2034 - Autoconf and -flto.
1039	- Fix #2141 - for libsodium detect lack of entropy in chroot, print
1040	  a message and exit.
1041
10422 November 2017: Wouter
1043	- Fix #1913: ub_ctx_config is under circumstances thread-safe.
1044	- make ip-transparent option work on OpenBSD.
1045
104631 October 2017: Wouter
1047	- Document that errno is left informative on libunbound config read
1048	  fail.
1049	- lexer output.
1050	- iana port update.
1051
105225 October 2017: Ralph
1053	- Fixed libunbound manual typo.
1054	- Fix #1949: [dnscrypt] make provider name mismatch more obvious.
1055	- Fix #2031: Double included headers
1056
105724 October 2017: Ralph
1058	- Update B root ipv4 address.
1059
106019 October 2017: Wouter
1061	- authzone work, probe timer setup.
1062
106318 October 2017: Wouter
1064	- lint for recent authzone commit.
1065
106617 October 2017: Wouter
1067	- Fix #1749: With harden-referral-path: performance drops, due to
1068	  circular dependency in NS and DS lookups.
1069	- [dnscrypt] prevent dnscrypt-secret-key, dnscrypt-provider-cert
1070	  duplicates
1071	- [dnscrypt] introduce dnscrypt-provider-cert-rotated option,
1072	  from Manu Bretelle.
1073	This option allows handling multiple cert/key pairs while only
1074	distributing some of them.
1075	In order to reliably match a client magic with a given key without
1076	strong assumption as to how those were generated, we need both key and
1077	cert. Likewise, in order to know which ES version should be used.
1078	On the other hand, when rotating a cert, it can be desirable to only
1079	serve the new cert but still be able to handle clients that are still
1080	using the old certs's public key.
1081	The `dnscrypt-provider-cert-rotated` allow to instruct unbound to not
1082	publish the cert as part of the DNS's provider_name's TXT answer.
1083	- Better documentation for cache-max-negative-ttl.
1084	- Work on local root zone code.
1085
108610 October 2017: Wouter
1087	- tag 1.6.7
1088	- trunk has version 1.6.8.
1089
10906 October 2017: Wouter
1091	- Fix spelling in unbound-control man page.
1092
10935 October 2017: Wouter
1094	- Fix trust-anchor-signaling works in libunbound.
1095	- Fix some more crpls in testdata for different signaling default.
1096	- tag 1.6.7rc1
1097
10985 October 2017: Ralph
1099	- Set trust-anchor-signaling default to yes
1100	- Use RCODE from A query on DNS64 synthesized answer.
1101
11022 October 2017: Wouter
1103	- Fix param unused warning for windows exportsymbol compile.
1104
110525 September 2017: Ralph
1106	- Fix #1450: Generate again patch contrib/aaaa-filter-iterator.patch
1107	   (by Danilo G. Baio).
1108
110921 September 2017: Ralph
1110	- Log name of looping module
1111
111219 September 2017: Wouter
1113	- use a cachedb answer even if it's "expired" when serve-expired is yes
1114	  (patch from Jinmei Tatuya).
1115	- trigger refetching of the answer in that case (this will bypass
1116	  cachedb lookup)
1117	- allow storing a 0-TTL answer from cachedb in the in-memory message
1118	  cache when serve-expired is yes
1119	- Fix DNSCACHE_STORE_ZEROTTL to be bigger than 0xffff.
1120
112118 September 2017: Ralph
1122	- Fix #1400: allowing use of global cache on ECS-forwarding unless
1123	  always-forward.
1124
112518 September 2017: Wouter
1126	- tag 1.6.6 (is 1.6.6rc2)
1127	- Fix that looping modules always stop the query, and don't pass
1128	  control.
1129	- Fix #1435: Please allow UDP to be disabled separately upstream and
1130	  downstream.
1131	- Fix #1440: [dnscrypt] client nonce cache.
1132
113315 September 2017: Wouter
1134	- Fix unbound-host to report error for DNSSEC state of failed lookups.
1135	- Spelling fixes, from Josh Soref.
1136
113713 September 2017: Wouter
1138	- tag 1.6.6rc2, became 1.6.6 on 18 sep.  trunk 1.6.7 in development.
1139
114012 September 2017: Wouter
1141	- Add dns64 for client-subnet in unbound-checkconf.
1142
11434 September 2017: Ralph
1144	- Fix #1412: QNAME minimisation strict mode not honored
1145	- Fix #1434: Fix windows openssl 1.1.0 linking.
1146
11474 September 2017: Wouter
1148	- tag 1.6.6rc1
1149	- makedist fix for windows binaries, with openssl 1.1.0 windres fix,
1150	  and expat 2.2.4 install target fix.
1151
11521 September 2017: Wouter
1153	- Recommend 1472 buffer size in unbound.conf
1154
115531 August 2017: Wouter
1156	- Fix #1424: cachedb:testframe is not thread safe.
1157	- For #1417: escape ; in dnscrypt tests.
1158	- but reverted that, tests fails with that escape.
1159	- Fix #1417: [dnscrypt] shared secret cache counters, and works when
1160	  dnscrypt is not enabled.  And cache size configuration option.
1161	- make depend
1162	- Fix #1418: [ip ratelimit] initialize slabhash using
1163	  ip-ratelimit-slabs.
1164
116530 August 2017: Wouter
1166	- updated contrib/fastrpz.patch to apply with configparser changes.
1167	- Fix 1416: qname-minimisation breaks TLSA lookups with CNAMEs.
1168
116929 August 2017: Wouter
1170	- Fix #1414: fix segfault on parse failure and log_replies.
1171	- zero qinfo in handle_request, this zeroes local_alias and also the
1172	  qname member.
1173	- new keys and certs for dnscrypt tests.
1174	- fixup WKS test on buildhost without servicebyname.
1175
117628 August 2017: Wouter
1177	- Fix #1415: patch to free dnscrypt environment on reload.
1178	- iana portlist update
1179	- Fix #1415: [dnscrypt] shared secret cache, patch from
1180	  Manu Bretelle.
1181	- Small fixes for the shared secret cache patch.
1182	- Fix WKS records on kvm autobuild host, with default protobyname
1183	  entries for udp and tcp.
1184
118523 August 2017: Wouter
1186	- Fix #1407: Add ECS options check to unbound-checkconf.
1187	- make depend
1188	- Fix to reclaim tcp handler when it is closed due to dnscrypt buffer
1189	  allocation failure.
1190
119122 August 2017: Wouter
1192	- Fix install of trust anchor when two anchors are present, makes both
1193	  valid. Checks hash of DS but not signature of new key. This fixes
1194	  the root.key file if created when unbound is installed between
1195	  sep11 and oct11 2017.
1196	- tag 1.6.5 with pointrelease 1.6.5 (1.6.4 plus 5011 fix).
1197	- trunk version 1.6.6 in development.
1198	- Fix issue on macOX 10.10 where TCP fast open is detected but not
1199	  implemented causing TCP to fail. The fix allows fallback to regular
1200	  TCP in this case and is also more robust for cases where connectx()
1201	  fails for some reason.
1202	- Fix #1402: squelch invalid argument error for fd_set_block on windows.
1203
120410 August 2017: Wouter
1205	- Patch to show DNSCrypt status in help output, from Carsten
1206	  Strotmann.
1207
12088 August 2017: Wouter
1209	- Fix #1398: make cachedb secret configurable.
1210	- Remove spaces from Makefile.
1211
12127 August 2017: Wouter
1213	- Fix #1397: Recursive DS lookups for AS112 zones names should recurse.
1214
12153 August 2017: Ralph
1216	- Remove unused iter_env member (ip6arpa_dname)
1217	- Do not reset rrset.bogus stats when called using stats_noreset.
1218	- Added stats for queries that have been ratelimited by domain
1219	  recursion.
1220	- Do not add rrset_bogus and query ratelimiting stats per thread, these
1221	  module stats are global.
1222
12233 August 2017: Wouter
1224	- Fix #1394: mix of serve-expired and response-ip could cause a crash.
1225
122624 July 2017: Wouter
1227	- upgrade aclocal(pkg.m4 0.29.1), config.guess(2016-10-02),
1228	  config.sub(2016-09-05).
1229	- annotate case statement fallthrough for gcc 7.1.1.
1230	- flex output from flex 2.6.1.
1231	- snprintf of thread number does not warn about truncated string.
1232	- squelch TCP fast open error on FreeBSD when kernel has it disabled,
1233	  unless verbosity is high.
1234	- remove warning from windows compile.
1235	- Fix compile with libnettle
1236	- Fix DSA configure switch (--disable dsa) for libnettle and libnss.
1237	- Fix #1365: Add Ed25519 support using libnettle.
1238	- iana portlist update
1239
124017 July 2017: Wouter
1241	- Fix #1350: make cachedb backend configurable (from JINMEI Tatuya).
1242	- Fix #1349: allow suppression of pidfiles (from Daniel Kahn Gillmor).
1243	  With the -p option unbound does not create a pidfile.
1244
124511 July 2017: Wouter
1246	- Fix #1344: RFC6761-reserved domains: test. and invalid.
1247	- Redirect all localhost names to localhost address for RFC6761.
1248
12496 July 2017: Wouter
1250	- Fix tests to use .tdir (from Manu Bretelle) instead of .tpkg.
1251	- Fix svn hooks for tdir (selected if testcode/mini_tdir.sh exists)..
1252
12534 July 2017: Wouter
1254	- Fix 1332: Bump verbosity of failed chown'ing of the control socket.
1255
12563 July 2017: Wouter
1257	- Fix for unbound-checkconf, check ipsecmod-hook if ipsecmod is turned
1258	  on.
1259	- Fix #1331: libunbound segfault in threaded mode when context is
1260	  deleted.
1261	- Fix pythonmod link line option flag.
1262	- Fix openssl 1.1.0 load of ssl error strings from ssl init.
1263
126429 June 2017: Wouter
1265	- Fix python example0 return module wait instead of error for pass.
1266	- iana portlist update
1267	- enhancement for hardened-tls for DNS over TLS.  Removed duplicated
1268	  security settings.
1269
127027 June 2017: Wouter
1271	- Tag 1.6.4 is created with the 1.6.4rc2 contents.
1272	- Trunk contains 1.6.5, with changes from 26, 27 june.
1273	- Remove signed unsigned warning from authzone.
1274	- Fix that infra cache host hash does not change after reconfig.
1275
127626 June 2017: Wouter
1277	- (for 1.6.5)
1278	  Better fixup of dnscrypt_cert_chacha test for different escapes.
1279	- First fix for zero b64 and hex text zone format in sldns.
1280	- unbound-control dump_infra prints port number for address if not 53.
1281
128223 June 2017: Wouter
1283	- (for 1.6.5): fixup of dnscrypt_cert_chacha test (from Manu Bretelle).
1284
128522 June 2017: Wouter
1286	- Tag 1.6.4rc2
1287
128822 June 2017: Ralph
1289	- Added fastrpz patch to contrib
1290
129121 June 2017: Wouter
1292	- Fix #1316: heap read buffer overflow in parse_edns_options.
1293
129420 June 2017: Wouter
1295	- Fix warning in pythonmod under clang compiler.
1296	- Tag 1.6.4rc1
1297	- Fix lintian typo.
1298
129916 June 2017: Ralph
1300	- Fix #1277: disable domain ratelimit by setting value to 0.
1301
130216 June 2017: Wouter
1303	- Fix #1301: memory leak in respip and tests.
1304	- Free callback in edns-subnetmod on exit and restart.
1305	- Fix memory leak in sldns_buffer_new_frm_data.
1306	- Fix memory leak in dnscrypt config read.
1307	- Fix dnscrypt chacha cert support ifdefs.
1308	- Fix dnscrypt chacha cert unit test escapes in grep.
1309	- Remove asynclook tests that cause test and purifier problems.
1310	- Fix to unlock view in view test.
1311
131215 June 2017: Wouter
1313	- Fix stub zone queries leaking to the internet for
1314	  harden-referral-path ns checks.
1315	- Fix query for refetch_glue of stub leaking to internet.
1316
131713 June 2017: Wouter
1318	- Fix #1279: Memory leak on reload when python module is enabled.
1319	- Fix #1280: Unbound fails assert when response from authoritative
1320	  contains malformed qname.  When 0x20 caps-for-id is enabled, when
1321	  assertions are not enabled the malformed qname is handled correctly.
1322	- 1.6.3 tag created, with only #1280 fix, trunk is 1.6.4 development.
1323	- More fixes in depth for buffer checks in 0x20 qname checks.
1324
132512 June 2017: Wouter
1326	- Fix #1278: Incomplete wildcard proof.
1327
13288 June 2017: Ralph
1329	- Added domain name based ECS whitelist.
1330
13318 June 2017: Wouter
1332	- Detect chacha for dnscrypt at configure time.
1333	- dnscrypt unit tests with chacha.
1334
13357 June 2017: Wouter
1336	- Fix that unbound-control can set val_clean_additional and val_permissive_mode.
1337	- Add dnscrypt XChaCha20 tests.
1338
13396 June 2017: Wouter
1340	- Add an explicit type cast for TCP FASTOPEN fix.
1341	- renumbering B-Root's IPv6 address to 2001:500:200::b.
1342	- Fix #1275: cached data in cachedb is never used.
1343	- Fix #1276: [dnscrypt] add XChaCha20-Poly1305 cipher.
1344
13451 June 2017: Ralph
1346	- Fix #1274: automatically trim chroot path from dnscrypt key/cert paths
1347	  (from Manu Bretelle).
1348
13491 June 2017: Wouter
1350	- Fix fastopen EPIPE fallthrough to perform connect.
1351
135231 May 2017: Ralph
1353	- Also use global local-zones when there is a matching view that does
1354	  not have any local-zone specified.
1355
135631 May 2017: Wouter
1357	- Fix #1273: cachedb.c doesn't compile with -Wextra.
1358	- If MSG_FASTOPEN gives EPIPE fallthrough to try normal tcp write.
1359
136030 May 2017: Ralph
1361	- Fix #1269: inconsistent use of built-in local zones with views.
1362	- Add defaults for new local-zone trees added to views using
1363	  unbound-control.
1364
136530 May 2017: Wouter
1366	- Support for openssl EVP_DigestVerify.
1367	- Support for the ED25519 algorithm with openssl (from openssl 1.1.1).
1368
136929 May 2017: Wouter
1370	- Fix assertion for low buffer size and big edns payload when worker
1371	  overrides udpsize.
1372
137326 May 2017: Ralph
1374	- Added redirect-bogus.patch to contrib directory.
1375
137626 May 2017: Wouter
1377	- Fix #1270: unitauth.c doesn't compile with higher warning level
1378	  and optimization
1379	- exec_prefix is by default equal to prefix.
1380	- printout localzone for duplicate local-zone warnings.
1381
138224 May 2017: Wouter
1383	- authzone cname chain, no rrset duplicates, wildcard doesn't change
1384	  rrsets added for cname chain.
1385
138623 May 2017: Wouter
1387	- first services/authzone check in, it compiles and reads and writes
1388	  zonefiles.
1389	- iana portlist update
1390
139122 May 2017: Wouter
1392	- Fix #1268: SIGSEGV after log_reopen.
1393
139418 May 2017: Wouter
1395	- Fix #1265 to use /bin/kill.
1396	- Fix #1267: Libunbound validator/val_secalgo.c uses obsolete APIs,
1397	  and compatibility with BoringSSL.
1398
139917 May 2017: Wouter
1400	- Fix #1265: contrib/unbound.service contains hardcoded path.
1401
140217 May 2017: George
1403	- Use qstate's region for IPSECKEY rrset (ipsecmod).
1404
140516 May 2017: George
1406	- Implemented opportunistic IPsec support module (ipsecmod).
1407	- Some whitespace fixup.
1408
140916 May 2017: Wouter
1410	- updated dependencies in the makefile.
1411	- document trust-anchor-signaling in example config file.
1412	- updated configure, dependencies and flex output.
1413	- better module memory lookup, fix of unbound-control shm names for
1414	  module memory printout of statistics.
1415	- Fix type AVC sldns rrdef.
1416
141712 May 2017: Wouter
1418	- Adjust servfail by iterator to not store in cache when serve-expired
1419	  is enabled, to avoid overwriting useful information there.
1420	- Fix queries for nameservers under a stub leaking to the internet.
1421
14229 May 2017: Ralph
1423	- Add 'c' to getopt() in testbound.
1424	- iana portlist update
1425
14268 May 2017: Wouter
1427	- Fix tcp-mss failure printout text.
1428	- Set SO_REUSEADDR on outgoing tcp connections to fix the bind before
1429	  connect limited tcp connections.  With the option tcp connections
1430	  can share the same source port (for different destinations).
1431
14322 May 2017: Ralph
1433	- Added mesh_add_sub to add detached mesh entries.
1434	- Use mesh_add_sub for key tag signaling query.
1435
14362 May 2017: Wouter
1437	- Added test for leak of stub information.
1438	- Fix sldns wire2str printout of RR type CAA tags.
1439	- Fix sldns int16_data parse.
1440	- Fix sldns parse and printout of TSIG RRs.
1441	- sldns SMIMEA and AVC definitions, same as getdns definitions.
1442
14431 May 2017: Wouter
1444	- Fix #1259: "--disable-ecdsa" argument overwritten
1445	  by "#ifdef SHA256_DIGEST_LENGTH@daemon/remote.c".
1446	- iana portlist update
1447	- Fix #1258: Windows 10 X64 unbound 1.6.2 service will not start.
1448	  and fix that 64bit getting installed in C:\Program Files (x86).
1449
145026 April 2017: Ralph
1451	- Implemented trust anchor signaling using key tag query.
1452
145326 April 2017: Wouter
1454	- Based on #1257: check parse limit before t increment in sldns RR
1455	  string parse routine.
1456
145724 April 2017: Wouter
1458	- unbound-checkconf -o allows query of dnstap config variables.
1459	  Also unbound-control get_option.  Also for dnscrypt.
1460	- trunk contains 1.6.3 version number (changes from 1.6.2 back from
1461	  when the 1.6.2rc1 tag has been created).
1462
146321 April 2017: Ralph
1464	- Fix #1254: clarify ratelimit-{for,below}-domain (from Manu Bretelle).
1465	- iana portlist update
1466
146718 April 2017: Ralph
1468	- Fix #1252: more indentation inconsistencies.
1469	- Fix #1253: unused variable in edns-subnet/addrtree.c:getbit().
1470
147113 April 2017: Ralph
1472	- Added ECS unit test (from Manu Bretelle).
1473	- ECS documentation fix (from Manu Bretelle).
1474
147513 April 2017: Wouter
1476	- Fix #1250: inconsistent indentation in services/listen_dnsport.c.
1477	- tag for 1.6.2rc1
1478	- (for 1.6.3:) unbound.h exports the shm stats structures.  They use
1479	  type long long and no ifdefs, and ub_ before the typenames.
1480
148112 April 2017: Wouter
1482	- subnet mem value is available in shm, also when not enabled,
1483	  to make the struct easier to memmap by other applications,
1484	  independent of the configuration of unbound.
1485
148612 April 2017: Ralph
1487	- Fix #1247: unbound does not shorten source prefix length when
1488	  forwarding ECS.
1489	- Properly check for allocation failure in local_data_find_tag_datas.
1490	- Fix #1249: unbound doesn't return FORMERR to bogus ECS.
1491	- Set SHM ECS memory usage to 0 when module not loaded.
1492
149311 April 2017: Ralph
1494	- Display ECS module memory usage.
1495
149610 April 2017: Wouter
1497	- harden-algo-downgrade: no also makes unbound more lenient about
1498	  digest algorithms in DS records.
1499
150010 April 2017: Ralph
1501	- Remove ECS option after REFUSED answer.
1502	- Fix small memory leak in edns_opt_copy_alloc.
1503	- Respip dereference after NULL check.
1504	- Zero initialize addrtree allocation.
1505	- Use correct identifier for SHM destroy.
1506
15077 April 2017: George
1508	- Fix pythonmod for cb changes.
1509	- Some whitespace fixup.
1510
15117 April 2017: Ralph
1512	- Unlock view in respip unit test
1513
15146 April 2017: Ralph
1515	- Generalise inplace callback (de)registration
1516	- (de)register inplace callbacks for module id
1517	- No unbound-control set_option for ECS options
1518	- Deprecated client-subnet-opcode config option
1519	- Introduced client-subnet-always-forward config option
1520	- Changed max-client-subnet-ipv6 default to 56 (as in RFC)
1521	- Removed extern ECS config options
1522	- module_restart_next now calls clear on all following modules
1523	- Also create ECS module qstate on module_event_pass event
1524	- remove malloc from inplace_cb_register
1525
15266 April 2017: Wouter
1527	- Small fixup for documentation.
1528	- iana portlist update
1529	- Fix respip for braces when locks arent used.
1530	- Fix pythonmod for cb changes.
1531
15324 April 2017: Wouter
1533	- Fix #1244: document that use of chroot requires trust anchor file to
1534	  be under chroot.
1535	- iana portlist update
1536
15373 April 2017: Ralph
1538	- Do not add current time twice to TTL before ECS cache store.
1539	- Do not touch rrset cache after ECS cache message generation.
1540	- Use LDNS_EDNS_CLIENT_SUBNET as default ECS opcode.
1541
15423 April 2017: Wouter
1543	- Fix #1217: Add metrics to unbound-control interface showing
1544	  crypted, cert request, plaintext and malformed queries (from
1545	  Manu Bretelle).
1546	- iana portlist update
1547
154827 March 2017: Wouter
1549	- Remove (now unused) event2 include from dnscrypt code.
1550
155124 March 2017: George
1552	- Fix to prevent non-referal query from being cached as referal when the
1553	  no_cache_store flag was set.
1554
155523 March 2017: Wouter
1556	- Fix #1239: configure fails to find python distutils if python
1557	  prints warning.
1558
155922 March 2017: Wouter
1560	- Fix #1238: segmentation fault when adding through the remote
1561	  interface a per-view local zone to a view with no previous
1562	  (configured) local zones.
1563	- Fix #1229: Systemd service sandboxing, options in wrong sections.
1564
156521 March 2017: Ralph
1566	- Merge EDNS Client subnet implementation from feature branch into main
1567	  branch, using new EDNS processing framework.
1568
156921 March 2017: Wouter
1570	- Fix doxygen for dnscrypt files.
1571
157220 March 2017: Wouter
1573	- #1217. DNSCrypt support, with --enable-dnscrypt, libsodium and then
1574	  enabled in the config file from Manu Bretelle.
1575	- make depend, autoconf, remove warnings about statement before var.
1576	- lru_demote and lruhash_insert_or_retrieve functions for getdns.
1577	- fixup for lruhash (whitespace and header file comment).
1578	- dnscrypt tests.
1579
158017 March 2017: Wouter
1581	- Patch for view functionality for local-data-ptr from Björn Ketelaars.
1582	- Fix #1237 - Wrong resolving in chain, for norec queries that get
1583	  SERVFAIL returned.
1584
158516 March 2017: Wouter
1586	- Fix that SHM is not inited if not enabled.
1587	- Add trustanchor.unbound CH TXT that gets a response with a number
1588	  of TXT RRs with a string like "example.com. 2345 1234" with
1589	  the trust anchors and their keytags.
1590	- Fix that looped DNAMEs do not cause unbound to spend effort.
1591	- trustanchor tags are sorted.  reusable routine to fetch taglist.
1592
159313 March 2017: Wouter
1594	- testbound understands Deckard MATCH rcode question answer commands.
1595	- Fix #1235: Fix too long DNAME expansion produces SERVFAIL instead
1596	  of YXDOMAIN + query loop, reported by Petr Spacek.
1597
159810 March 2017: Wouter
1599	- Fix #1234: shortening DNAME loop produces duplicate DNAME records
1600	  in ANSWER section.
1601
16029 March 2017: Wouter
1603	- --disable-sha1 disables SHA1 support in RRSIG, so from DNSKEY and
1604	  DS records.  NSEC3 is not disabled.
1605	- fake-sha1 test option; print warning if used.  To make unit tests.
1606	- unbound-control list local zone and data commands listed in the
1607	  help output.
1608
16098 March 2017: Wouter
1610	- make depend for build dependencies.
1611	- swig version 2.0.1 required.
1612	- fix enum conversion warnings
1613
16147 March 2017: Wouter
1615	- Fix #1230: swig version 2.0.0 is required for pythonmod, with
1616	  1.3.40 it crashes when running repeatly unbound-control reload.
1617	- Response actions based on IP address from Jinmei Tatuya (Infoblox).
1618
16196 March 2017: Wouter
1620	- Fix #1229: Systemd service sandboxing in contrib/unbound.service.
1621	- iana portlist update
1622
162328 February 2017: Ralph
1624	- Fix testpkts.c, check if DO bit is set, not only if there is an OPT
1625	  record.
1626
162728 February 2017: Wouter
1628	- For #1227: if we have sha256, set the cipher list to have no
1629	  known vulns.
1630
163127 February 2017: Wouter
1632	- Fix #1227: Fix that Unbound control allows weak ciphersuits.
1633	- Fix #1226: provide official 32bit binary for windows.
1634
163524 February 2017: Wouter
1636	- include sys/time.h for new shm code on NetBSD.
1637
163823 February 2017: Wouter
1639	- Fix doc/CNAME-basedRedirectionDesignNotes.pdf zone static to
1640	  redirect.
1641	- Patch from Luiz Fernando Softov for Stats Shared Memory.
1642	- unbound-control stats_shm command prints stats using shared memory,
1643	  which uses less cpu.
1644	- make depend, autoconf, doxygen and lint fixed up.
1645
164622 February 2017: Wouter
1647	- Fix #1224: Fix that defaults should not fall back to "Program Files
1648	  (x86) if Unbound is 64bit by default on windows.
1649
165021 February 2017: Wouter
1651	- iana portlist update
1652
165316 February 2017: Wouter
1654	- sldns updated for vfixed and buffer resize indication from getdns.
1655
165615 February 2017: Wouter
1657	- sldns has ED25519 and ED448 algorithm number and name for display.
1658
165914 February 2017: Wouter
1660	- tag 1.6.1rc3. -- which became 1.6.1 on 21feb, trunk has 1.6.2
1661
166213 February 2017: Wouter
1663	- Fix autoconf of systemd check for lack of pkg-config.
1664
166510 February 2017: Wouter
1666	- Fix pythonmod for typedef changes.
1667	- Fix dnstap for warning of set but not used.
1668	- tag 1.6.1rc2.
1669
16709 February 2017: Wouter
1671	- tag 1.6.1rc1.
1672
16738 February 2017: Wouter
1674	- Fix for type name change and fix warning on windows compile.
1675
16767 February 2017: Wouter
1677	- Include root trust anchor id 20326 in unbound-anchor.
1678
16796 February 2017: Wouter
1680	- Fix compile on solaris of the fix to use $host detect.
1681
16824 February 2017: Wouter
1683	- fix root_anchor test for updated icannbundle.pem lower certificates.
1684
168526 January 2017: Wouter
1686	- Fix 1211: Fix can't enable interface-automatic if no IPv6 with
1687	  more helpful error message.
1688
168920 January 2017: Wouter
1690	- Increase MAX_MODULE to 16.
1691
169219 January 2017: Wouter
1693	- Fix to Rename ub_callback_t to ub_callback_type, because POSIX
1694	  reserves _t typedefs.
1695	- Fix to rename internally used types from _t to _type, because _t
1696	  type names are reserved by POSIX.
1697	- iana portlist update
1698
169912 January 2017: Wouter
1700	- Fix to also block meta types 128 through to 248 with formerr.
1701	- Fix #1206: Some view-related commands are missing from 'unbound-control -h'
1702
17039 January 2017: Wouter
1704	- Fix #1202: Fix code comment that packed_rrset_data is not always
1705	  'packed'.
1706
17076 January 2017: Wouter
1708	- Fix #1201: Fix missing unlock in answer_from_cache error condition.
1709
17105 January 2017: Wouter
1711	- Fix to return formerr for queries for meta-types, to avoid
1712	  packet amplification if this meta-type is sent on to upstream.
1713	- Fix #1184: Log DNS replies. This includes the same logging
1714	  information that DNS queries and response code and response size,
1715	  patch from Larissa Feng.
1716	- Fix #1187: Source IP rate limiting, patch from Larissa Feng.
1717
17183 January 2017: Wouter
1719	- configure --enable-systemd and lets unbound use systemd sockets if
1720	  you enable use-systemd: yes in unbound.conf.
1721	  Also there are contrib/unbound.socket and contrib/unbound.service:
1722	  systemd files for unbound, install them in /usr/lib/systemd/system.
1723	  Contributed by Sami Kerola and Pavel Odintsov.
1724	- Fix reload chdir failure when also chrooted to that directory.
1725
17262 January 2017: Wouter
1727	- Fix #1194: Cross build fails when $host isn't `uname` for getentropy.
1728
172923 December 2016: Ralph
1730	- Fix #1190: Do not echo back EDNS options in local-zone error response.
1731	- iana portlist update
1732
173321 December 2016: Ralph
1734	- Fix #1188: Unresolved symbol 'fake_dsa' in libunbound.so when built
1735	  with Nettle
1736
173719 December 2016: Ralph
1738	- Fix #1191: remove comment about view deletion.
1739
174015 December 2016: Wouter
1741	- iana portlist update
1742	- 64bit is default for windows builds.
1743	- Fix inet_ntop and inet_pton warnings in windows compile.
1744
174514 December 2016: Wouter
1746	- Fix #1178: attempt to fix setup error at end, pop result values
1747	  at end of install.
1748
174913 December 2016: Wouter
1750	- Fix #1182: Fix Resource leak (socket), at startup.
1751	- Fix unbound-control and ipv6 only.
1752
17539 December 2016: Wouter
1754	- Fix #1176: stack size too small for Alpine Linux.
1755
17568 December 2016: Wouter
1757	- Fix downcast warnings from visual studio in sldns code.
1758	- tag 1.6.0rc1 which became 1.6.0 on 15 dec, and trunk is 1.6.1.
1759
17607 December 2016: Ralph
1761	- Add DSA support for OpenSSL 1.1.0
1762	- Fix remote control without cert for LibreSSL
1763
17646 December 2016: George
1765	- Added generic EDNS code for registering known EDNS option codes,
1766	  bypassing the cache response stage and uniquifying mesh states. Four EDNS
1767	  option lists were added to module_qstate (module_qstate.edns_opts_*) to
1768	  store EDNS options from/to front/back side.
1769	- Added two flags to module_qstate (no_cache_lookup, no_cache_store) that
1770	  control the modules' cache interactions.
1771	- Added code for registering inplace callback functions. The registered
1772	  functions can be called just before replying with local data or Chaos,
1773	  replying from cache, replying with SERVFAIL, replying with a resolved
1774	  query, sending a query to a nameserver. The functions can inspect the
1775	  available data and maybe change response/query related data (i.e. append
1776	  EDNS options).
1777	- Updated Python module for the above.
1778	- Updated Python documentation.
1779
17805 December 2016: Ralph
1781	- Fix #1173: differ local-zone type deny from unset
1782	  tag_actions element.
1783
17845 December 2016: Wouter
1785	- Fix #1170: document that 'inform' local-zone uses local-data.
1786
17871 December 2016: Ralph
1788	- hyphen as minus fix, by Andreas Schulze
1789
179030 November 2016: Ralph
1791	- Added local-zones and local-data bulk addition and removal
1792	  functionality in unbound-control (local_zones, local_zones_remove,
1793	  local_datas and local_datas_remove).
1794	- iana portlist update
1795
179629 November 2016: Wouter
1797	- version 1.6.0 is in the development branch.
1798	- braces in view.c around lock statements.
1799
180028 November 2016: Wouter
1801	- new install-sh.
1802
180325 November 2016: Wouter
1804	- Fix that with openssl 1.1 control-use-cert: no uses less cpu, by
1805	  using no encryption over the unix socket.
1806
180722 Novenber 2016: Ralph
1808	- Make access-control-tag-data RDATA absolute. This makes the RDATA
1809	  origin consistent between local-data and access-control-tag-data.
1810	- Fix NSEC ENT wildcard check. Matching wildcard does not have to be a
1811	  subdomain of the NSEC owner.
1812	- QNAME minimisation uses QTYPE=A, therefore always check cache for
1813	  this type in harden-below-nxdomain functionality.
1814	- Added unit test for QNAME minimisation + harden below nxdomain
1815	  synergy.
1816
181722 November 2016: Wouter
1818	- iana portlist update.
1819	- Fix unit tests for DS hash processing for fake-dsa test option.
1820	- patch from Dag-Erling Smorgrav that removes code that relies
1821	  on sbrk().
1822
182321 November 2016: Wouter
1824	- Fix #1158: reference RFC 8020 "NXDOMAIN: There Really Is Nothing
1825	  Underneath" for the harden-below-nxdomain option.
1826
182710 November 2016: Ralph
1828	- Fix #1155: test status code of unbound-control in 04-checkconf,
1829	  not the status code from the tee command.
1830
18314 November 2016: Ralph
1832	- Added stub-ssl-upstream and forward-ssl-upstream options.
1833
18344 November 2016: Wouter
1835	- configure detects ssl security level API function in the autoconf
1836	  manner.  Every function on its own, so that other libraries (eg.
1837	  LibreSSL) can develop their API without hindrance.
1838	- Fix #1154: segfault when reading config with duplicate zones.
1839	- Note that for harden-below-nxdomain the nxdomain must be secure,
1840	  this means nsec3 with optout is insufficient.
1841
18423 November 2016: Ralph
1843	- Set OpenSSL security level to 0 when using aNULL ciphers.
1844
18453 November 2016: Wouter
1846	- .gitattributes line for githubs code language display.
1847	- log-identity: config option to set sys log identity, patch from
1848	  "Robin H. Johnson" <robbat2@gentoo.org>
1849
18502 November 2016: Wouter
1851	- iana portlist update.
1852
185331 October 2016: Wouter
1854	- Fix failure to build on arm64 with no sbrk.
1855	- iana portlist update.
1856
185728 October 2016: Wouter
1858	- Patch for server.num.zero_ttl stats for count of expired replies,
1859	  from Pavel Odintsov.
1860
186126 October 2016: Wouter
1862	- Fix unit tests for openssl 1.1, with no DSA, by faking DSA, enabled
1863	  with the undocumented switch 'fake-dsa'.  It logs a warning.
1864
186525 October 2016: Wouter
1866	- Fix #1134: unbound-control set_option -- val-override-date: -1 works
1867	  immediately to ignore datetime, or back to 0 to enable it again.
1868	  The -- is to ignore the '-1' as an option flag.
1869
187024 October 2016: Wouter
1871	- serve-expired config option: serve expired responses with TTL 0.
1872	- g.root-servers.net has AAAA address.
1873
187421 October 2016: Wouter
1875	- Ported tests for local_cname unit test to testbound framework.
1876
187720 October 2016: Wouter
1878	- suppress compile warning in lex files.
1879	- init lzt variable, for older gcc compiler warnings.
1880	- fix --enable-dsa to work, instead of copying ecdsa enable.
1881	- Fix DNSSEC validation of query type ANY with DNAME answers.
1882	- Fixup query_info local_alias init.
1883
188419 October 2016: Wouter
1885	- Fix #1130: whitespace in example.conf.in more consistent.
1886
188718 October 2016: Wouter
1888	- Patch that resolves CNAMEs entered in local-data conf statements that
1889	  point to data on the internet, from Jinmei Tatuya (Infoblox).
1890	- Removed patch comments from acllist.c and msgencode.c
1891	- Added documentation doc/CNAME-basedRedirectionDesignNotes.pdf,
1892	  from Jinmei Tatuya (Infoblox).
1893	- Fix #1125: unbound could reuse an answer packet incorrectly for
1894	  clients with different EDNS parameters, from Jinmei Tatuya.
1895	- Fix #1118: libunbound.pc sets strange Libs, Libs.private values.
1896	- Added Requires line to libunbound.pc
1897	- Please doxygen by modifying mesh.h
1898
189917 October 2016: Wouter
1900	- Re-fix #839 from view commit overwrite.
1901	- Fixup const void cast warning.
1902
190312 October 2016: Ralph
1904	- Free view config elements.
1905
190611 October 2016: Ralph
1907	- Added qname-minimisation-strict config option.
1908	- iana portlist update.
1909	- fix memoryleak logfile when in debug mode.
1910
19115 October 2016: Ralph
1912	- Added views functionality.
1913	- Fix #1117: spelling errors, from Robert Edmonds.
1914
191530 September 2016: Wouter
1916	- Fix Nits for 1.5.10 reported by Dag-Erling Smorgrav.
1917
191829 September 2016: Wouter
1919	- Fix #838: 1.5.10 cannot be built on Solaris, undefined PATH_MAX.
1920	- Fix #839: Memory grows unexpectedly with large RPZ files.
1921	- Fix #840: infinite loop in unbound_munin_ plugin on unowned lockfile.
1922	- Fix #841: big local-zone's make it consume large amounts of memory.
1923
192427 September 2016: Wouter
1925	- tag for 1.5.10 release
1926	- trunk contains 1.5.11 in development.
1927	- Fix dnstap relaying "random" messages instead of resolver/forwarder
1928	  responses, from Nikolay Edigaryev.
1929	- Fix #836: unbound could echo back EDNS options in an error response.
1930
193120 September 2016: Wouter
1932	- iana portlist update.
1933	- Fix #835: fix --disable-dsa with nettle verify.
1934	- tag for 1.5.10rc1 release.
1935
193615 September 2016: Wouter
1937	- Fix 883: error for duplicate local zone entry.
1938	- Test for openssl init_crypto and init_ssl functions.
1939
194015 September 2016: Ralph
1941	- fix potential memory leak in daemon/remote.c and nullpointer
1942	  dereference in validator/autotrust.
1943	- iana portlist update.
1944
194513 September 2016: Wouter
1946	- Silenced flex-generated sign-unsigned warning print with gcc
1947	  diagnostic pragma.
1948	- Fix for new splint on FreeBSD.  Fix cast for sockaddr_un.sun_len.
1949
19509 September 2016: Wouter
1951	- Fix #831: workaround for spurious fread_chk warning against petal.c
1952
19535 September 2016: Ralph
1954	- Take configured minimum TTL into consideration when reducing TTL
1955	  to original TTL from RRSIG.
1956
19575 September 2016: Wouter
1958	- Fix #829: doc of sldns_wire2str_rdata_buf() return value has an
1959	  off-by-one typo, from Jinmei Tatuya (Infoblox).
1960	- Fix incomplete prototypes reported by Dag-Erling Smørgrav.
1961	- Fix #828: missing type in access-control-tag-action redirect results
1962	  in NXDOMAIN.
1963
19642 September 2016: Wouter
1965	- Fix compile with openssl 1.1.0 with api=1.1.0.
1966
19671 September 2016: Wouter
1968	- RFC 7958 is now out, updated docs for unbound-anchor.
1969	- Fix for compile without warnings with openssl 1.1.0.
1970	- Fix #826: Fix refuse_non_local could result in a broken response.
1971	- iana portlist update.
1972
197329 August 2016: Wouter
1974	- Fix #777: OpenSSL 1.1.0 compatibility, patch from Sebastian A.
1975	  Siewior.
1976	- Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e.
1977
197825 August 2016: Ralph
1979	- Clarify local-zone-override entry in unbound.conf.5
1980
198125 August 2016: Wouter
1982	- 64bit build option for makedist windows compile, -w64.
1983
198424 August 2016: Ralph
1985	- Fix #820: set sldns_str2wire_rr_buf() dual meaning len parameter
1986	  in each iteration in find_tag_datas().
1987	- unbound.conf.5 entries for define-tag, access-control-tag,
1988	  access-control-tag-action, access-control-tag-data, local-zone-tag,
1989	  and local-zone-override.
1990
199123 August 2016: Wouter
1992	- Fix #804: unbound stops responding after outage.  Fixes queries
1993	  that attempt to wait for an empty list of subqueries.
1994	- Fix #804: lower num_target_queries for iterator also for failed
1995	  lookups.
1996
19978 August 2016: Wouter
1998	- Note that OPENPGPKEY type is RFC 7929.
1999
20004 August 2016: Wouter
2001	- Fix #807: workaround for possible some "unused" function parameters
2002	  in test code, from Jinmei Tatuya.
2003
20043 August 2016: Wouter
2005	- use sendmsg instead of sendto for TFO.
2006
200728 July 2016: Wouter
2008	- Fix #806: wrong comment removed.
2009
201026 July 2016: Wouter
2011	- nicer ratelimit-below-domain explanation.
2012
201322 July 2016: Wouter
2014	- Fix #801: missing error condition handling in
2015	  daemon_create_workers().
2016	- Fix #802: workaround for function parameters that are "unused"
2017	  without log_assert.
2018	- Fix #803: confusing (and incorrect) code comment in daemon_cleanup().
2019
202020 July 2016: Wouter
2021	- Fix typo in unbound.conf.
2022
202318 July 2016: Wouter
2024	- Fix #798: Client-side TCP fast open fails (Linux).
2025
202614 July 2016: Wouter
2027	- TCP Fast open patch from Sara Dickinson.
2028	- Fixed unbound.doxygen for 1.8.11.
2029
20307 July 2016: Wouter
2031	- access-control-tag-data implemented. verbose(4) prints tag debug.
2032
20335 July 2016: Wouter
2034	- Fix dynamic link of anchor-update.exe on windows.
2035	- Fix detect of mingw for MXE package build.
2036	- Fixes for 64bit windows compile.
2037	- Fix #788 for nettle 3.0: Failed to build with Nettle >= 3.0 and
2038	  --with-libunbound-only --with-nettle.
2039
20404 July 2016: Wouter
2041	- For #787: prefer-ip6 option for unbound.conf prefers to send
2042	  upstream queries to ipv6 servers.
2043	- Fix #787: outgoing-interface netblock/64 ipv6 option to use linux
2044	  freebind to use 64bits of entropy for every query with random local
2045	  part.
2046
204730 June 2016: Wouter
2048	- Document always_transparent, always_refuse, always_nxdomain types.
2049
205029 June 2016: Wouter
2051	- Fix static compile on windows missing gdi32.
2052
205328 June 2016: Wouter
2054	- Create a pkg-config file for libunbound in contrib.
2055
205627 June 2016: Wouter
2057	- Fix #784: Build configure assumess that having getpwnam means there
2058	  is endpwent function available.
2059	- Updated repository with newer flex and bison output.
2060
206124 June 2016: Ralph
2062	- Possibility to specify local-zone type for an acl/tag pair
2063	- Possibility to specify (override) local-zone type for a source address
2064	  block
206516 June 2016: Ralph
2066	- Decrease dp attempts at each QNAME minimisation iteration
2067
206816 June 2016: Wouter
2069	- Fix tcp timeouts in tv.usec.
2070
207115 June 2016: Wouter
2072	- TCP_TIMEOUT is specified in milliseconds.
2073	- If more than half of tcp connections are in use, a shorter timeout
2074	  is used (200 msec, vs 2 minutes) to pressure tcp for new connects.
2075
207614 June 2016: Ralph
2077	- QNAME minimisation unit test for dropped QTYPE=A queries.
2078
207914 June 2016: Wouter
2080	- Fix 775: unbound-host and unbound-anchor crash on windows, ignore
2081	  null delete for wsaevent.
2082	- Fix spelling in freebind option man page text.
2083	- Fix windows link of ssl with crypt32.
2084	- Fix 779: Union casting is non-portable.
2085	- Fix 780: MAP_ANON not defined in HP-UX 11.31.
2086	- Fix 781: prealloc() is an HP-UX system library call.
2087
208813 June 2016: Ralph
2089	- Use QTYPE=A for QNAME minimisation.
2090	- Keep track of number of time-outs when performing QNAME minimisation.
2091	  Stop minimising when number of time-outs for a QNAME/QTYPE pair is
2092	  more than three.
2093
209413 June 2016: Wouter
2095	- Fix #778: unbound 1.5.9: -h segfault (null deref).
2096	- Fix directory: fix for unbound-checkconf, it restores cwd.
2097
209810 June 2016: Wouter
2099	- And delete service.conf.shipped on uninstall.
2100	- In unbound.conf directory: dir immediately changes to that directory,
2101	  so that include: file below that is relative to that directory.
2102	  With chroot, make the directory an absolute path inside chroot.
2103	- keep debug symbols in windows build.
2104	- do not delete service.conf on windows uninstall.
2105	- document directory immediate fix and allow EXECUTABLE syntax in it
2106	  on windows.
2107
21089 June 2016: Wouter
2109	- Trunk is called 1.5.10 (with previous fixes already in there to 2
2110	  june).
2111	- Revert fix for NetworkService account on windows due to breakage
2112	  it causes.
2113	- Fix that windows install will not overwrite existing service.conf
2114	  file (and ignore gui config choices if it exists).
2115
21167 June 2016: Ralph
2117	- Lookup localzones by taglist from acl.
2118	- Possibility to lookup local_zone, regardless the taglist.
2119	- Added local_zone/taglist/acl unit test.
2120
21217 June 2016: Wouter
2122	- Fix #773: Non-standard Python location build failure with pyunbound.
2123	- Improve threadsafety for openssl 0.9.8 ecdsa dnssec signatures.
2124
21256 June 2016: Wouter
2126	- Better help text from -h (from Ray Griffith).
2127	- access-control-tag config directive.
2128	- local-zone-override config directive.
2129	- access-control-tag-action and access-control-tag-data config
2130	  directives.
2131	- free acl-tags, acltag-action and acltag-data config lists during
2132	  initialisation to free up memory for more entries.
2133
21343 June 2016: Wouter
2135	- Fix to not ignore return value of chown() in daemon startup.
2136
21372 June 2016: Wouter
2138	- Fix libubound for edns optlist feature.
2139	- Fix distinction between free and CRYPTO_free in dsa and ecdsa alloc.
2140	- Fix #752: retry resource temporarily unavailable on control pipe.
2141	- un-document localzone tags.
2142	- tag for release 1.5.9rc1.
2143	  And this also became release 1.5.9.
2144	- Fix (for 1.5.10): Fix unbound-anchor.exe file location defaults to
2145	  Program Files with (x86) appended.
2146	- re-documented localzone tags in example.conf.
2147
214831 May 2016: Wouter
2149	- Fix windows service to be created run with limited rights, as a
2150	  network service account, from Mario Turschmann.
2151	- compat strsep implementation.
2152	- generic edns option parse and store code.
2153	- and also generic edns options for upstream messages (and replies).
2154	  after parse use edns_opt_find(edns.opt_list, LDNS_EDNS_NSID),
2155	  to insert use edns_opt_append(edns, region, code, len, bindata) on
2156	  the opt_list passed to send_query, or in edns_opt_inplace_reply.
2157
215830 May 2016: Wouter
2159	- Fix time in case answer comes from cache in ub_resolve_event().
2160	- Attempted fix for #765: _unboundmodule missing for python3.
2161
216227 May 2016: Wouter
2163	- Fix #770: Small subgroup attack on DH used in unix pipe on localhost
2164	  if unbound control uses a unix local named pipe.
2165	- Document write permission to directory of trust anchor needed.
2166	- Fix #768:  Unbound Service Sometimes Can Not Shutdown
2167	  Completely, WER Report Shown Up.  Close handle before closing WSA.
2168
216926 May 2016: Wouter
2170	- Updated patch from Charles Walker.
2171
217224 May 2016: Wouter
2173	- disable-dnssec-lame-check config option from Charles Walker.
2174	- remove memory leak from lame-check patch.
2175	- iana portlist update.
2176
217723 May 2016: Wouter
2178	- Fix #767:  Reference to an expired Internet-Draft in
2179	  harden-below-nxdomain documentation.
2180
218120 May 2016: Ralph
2182	- No QNAME minimisation fall-back for NXDOMAIN answers from DNSSEC
2183	  signed zones.
2184	- iana portlist update.
2185
218619 May 2016: Wouter
2187	- Fix #766: dns64 should synthesize results on timeout/errors.
2188
218918 May 2016: Wouter
2190	- Fix #761: DNSSEC LAME false positive resolving nic.club.
2191
219217 May 2016: Wouter
2193	- trunk updated with output of flex 2.6.0.
2194
21956 May 2016: Wouter
2196	- Fix memory leak in out-of-memory conditions of local zone add.
2197
219829 April 2016: Wouter
2199	- Fix sldns with static checking fixes copied from getdns.
2200
220128 April 2016: Wouter
2202	- Fix #759: 0x20 capsforid no longer checks type PTR, for
2203	  compatibility with cisco dns guard.  This lowers false positives.
2204
220518 April 2016: Wouter
2206	- Fix some malformed responses to edns queries get fallback to nonedns.
2207
220815 April 2016: Wouter
2209	- cachedb module event handling design.
2210
221114 April 2016: Wouter
2212	- cachedb module framework (empty).
2213	- iana portlist update.
2214
221512 April 2016: Wouter
2216	- Fix #753: document dump_requestlist is for first thread.
2217
221824 March 2016: Wouter
2219	- Document permit-small-holddown for 5011 debug.
2220	- Fix #749: unbound-checkconf gets SIGSEGV when use against a
2221	  malformatted conf file.
2222
222323 March 2016: Wouter
2224	- OpenSSL 1.1.0 portability, --disable-dsa configure option.
2225
222621 March 2016: Wouter
2227	- Fix compile of getentropy_linux for SLES11 servicepack 4.
2228	- Fix dnstap-log-resolver-response-messages, from Nikolay Edigaryev.
2229	- Fix test for openssl to use HMAC_Update for 1.1.0.
2230	- acx_nlnetlabs.m4 to v33, with HMAC_Update.
2231	- acx_nlnetlabs.m4 to v34, with -ldl -pthread test for libcrypto.
2232	- ERR_remove_state deprecated since openssl 1.0.0.
2233	- OPENSSL_config is deprecated, removing.
2234
223518 March 2016: Ralph
2236	- Validate QNAME minimised NXDOMAIN responses.
2237	- If QNAME minimisation is enabled, do cache lookup for QTYPE NS in
2238	  harden-below-nxdomain.
2239
224017 March 2016: Ralph
2241	- Limit number of QNAME minimisation iterations.
2242
224317 March 2016: Wouter
2244	- Fix #746: Fix unbound sets CD bit on all forwards.
2245	  If no trust anchors, it'll not set CD bit when forwarding to another
2246	  server.  If a trust anchor, no CD bit on the first attempt to a
2247	  forwarder, but CD bit thereafter on repeated attempts to get DNSSEC.
2248	- iana portlist update.
2249
225016 March 2016: Wouter
2251	- Fix ip-transparent for ipv6 on FreeBSD, thanks to Nick Hibma.
2252	- Fix ip-transparent for tcp on freebsd.
2253
225415 March 2016: Wouter
2255	- ip_freebind: yesno option in unbound.conf sets IP_FREEBIND for
2256	  binding to an IP address while the interface or address is down.
2257
225814 March 2016: Wouter
2259	- Fix warnings in ifdef corner case, older or unknown libevent.
2260	- Fix compile for ub_event code with older libev.
2261
226211 March 2016: Wouter
2263	- Remove warning about unused parameter in event_pluggable.c.
2264	- Fix libev usage of dispatch return value.
2265	- No side effects in tolower() call, in case it is a macro.
2266	- For test put free in pluggable api in parenthesis.
2267
226810 March 2016: Wouter
2269	- Fixup backend2str for libev.
2270
227109 March 2016: Willem
2272	- User defined pluggable event API for libunbound
2273	- Fixup of compile fix for pluggable event API from P.Y. Adi
2274	  Prasaja.
2275
227609 March 2016: Wouter
2277	- Updated configure and ltmain.sh.
2278	- Updated L root IPv6 address.
2279
228007 March 2016: Wouter
2281	- Fix #747: assert in outnet_serviced_query_stop.
2282	- iana ports fetched via https.
2283	- iana portlist update.
2284
228503 March 2016: Wouter
2286	- configure tests for the weak attribute support by the compiler.
2287
228802 March 2016: Wouter
2289	- 1.5.8 release tag
2290	- trunk contains 1.5.9 in development.
2291	- iana portlist update.
2292	- Fix #745: unbound.py - idn2dname throws UnicodeError when idnname
2293	  contains trailing dot.
2294
229524 February 2016: Wouter
2296	- Fix OpenBSD asynclook lock free that gets used later (fix test code).
2297	- Fix that NSEC3 negative cache is used when there is no salt.
2298
229923 February 2016: Wouter
2300	- ub_ctx_set_stub() function for libunbound to config stub zones.
2301	- sorted ubsyms.def file with exported libunbound functions.
2302
230319 February 2016: Wouter
2304	- Print understandable debug log when unusable DS record is seen.
2305	- load gost algorithm if digest is seen before key algorithm.
2306	- iana portlist update.
2307
230817 February 2016: Wouter
2309	- Fix that "make install" fails due to "text file busy" error.
2310
231116 February 2016: Wouter
2312	- Set IPPROTO_IP6 for ipv6 sockets otherwise invalid argument error.
2313
231415 February 2016: Wouter
2315	- ip-transparent option for FreeBSD with IP_BINDANY socket option.
2316	- wait for sendto to drain socket buffers when they are full.
2317
23189 February 2016: Wouter
2319	- Test for type OPENPGPKEY.
2320	- insecure-lan-zones: yesno config option, patch from Dag-Erling
2321	  Smørgrav.
2322
23238 February 2016: Wouter
2324	- Fix patch typo in prevuous commit for 734 from Adi Prasaja.
2325	- RR Type CSYNC support RFC 7477, in debug printout and config input.
2326	- RR Type OPENPGPKEY support (draft-ietf-dane-openpgpkey-07).
2327
232829 January 2016: Wouter
2329	- Neater cmdline_verbose increment patch from Edgar Pettijohn.
2330
233127 January 2016: Wouter
2332	- Made netbsd sendmsg test nonfatal, in case of false positives.
2333	- Fix #741: log message for dnstap socket connection is more clear.
2334
233526 January 2016: Wouter
2336	- Fix #734: chown the pidfile if it resides inside the chroot.
2337	- Use arc4random instead of random in tests (because it is
2338	  available, possibly as compat, anyway).
2339	- Fix cmsg alignment for argument to sendmsg on NetBSD.
2340	- Fix that unbound complains about unimplemented IP_PKTINFO for
2341	  sendmsg on NetBSD (for interface-automatic).
2342
234325 January 2016: Wouter
2344	- Fix #738: Swig should not be invoked with CPPFLAGS.
2345
234619 January 2016: Wouter
2347	- Squelch 'cannot assign requested address' log messages unless
2348	  verbosity is high, it was spammed after network down.
2349
235014 January 2016: Wouter
2351	- Fix to simplify empty string checking from Michael McConville.
2352	- iana portlist update.
2353
235412 January 2016: Wouter
2355	- Fix #734: Do not log an error when the PID file cannot be chown'ed.
2356	  Patch from Simon Deziel.
2357
235811 January 2016: Wouter
2359	- Fix test if -pthreads unused to use better grep for portability.
2360
236106 January 2016: Wouter
2362	- Fix mingw crosscompile for recent mingw.
2363	- Update aclocal, autoconf output with new versions (1.15, 2.4.6).
2364
236505 January 2016: Wouter
2366	- #731: tcp-mss, outgoing-tcp-mss options for unbound.conf, patch
2367	  from Daisuke Higashi.
2368	- Support RFC7686: handle ".onion" Special-Use Domain. It is blocked
2369	  by default, and can be unblocked with "nodefault" localzone config.
2370
237104 January 2016: Wouter
2372	- Define DEFAULT_SOURCE together with BSD_SOURCE when that is defined,
2373	  for Linux glibc 2.20.
2374	- Fixup contrib/aaaa-filter-iterator.patch for moved contents in the
2375	  source code, so it applies cleanly again.  Removed unused variable
2376	  warnings.
2377
237815 December 2015: Ralph
2379	- Fix #729: omit use of escape sequences in echo since they are not
2380	  portable (unbound-control-setup).
2381
238211 December 2015: Wouter
2383	- remove NULL-checks before free, patch from Michael McConville.
2384	- updated ax_pthread.m4 to version 21 with clang support, this
2385	  removes a warning from compilation.
2386	- OSX portability, detect if sbrk is deprecated.
2387	- OSX clang, stop -pthread unused during link stage warnings.
2388	- OSX clang new flto check.
2389
239010 December 2015: Wouter
2391	- 1.5.7 release
2392	- trunk has 1.5.8 in development.
2393
23948 December 2015: Wouter
2395	- Fixup 724 for unbound-control.
2396
23977 December 2015: Ralph
2398	- Do not minimise forwarded requests.
2399
24004 December 2015: Wouter
2401	- Removed unneeded whitespace from example.conf.
2402
24033 December 2015: Ralph
2404	- (after rc1 tag)
2405	- Committed fix to qname minimisation and unit test case for it.
2406
24073 December 2015: Wouter
2408	- iana portlist update.
2409	- 1.5.7rc1 prerelease tag.
2410
24112 December 2015: Wouter
2412	- Fixup 724: Fix PCA prompt for unbound-service-install.exe.
2413	  re-enable stdout printout.
2414	- For 724: Add Changelog to windows binary dist.
2415
24161 December 2015: Ralph
2417	- Qname minimisation review fixes
2418
24191 December 2015: Wouter
2420	- Fixup 724 fix for fname_after_chroot() calls.
2421	- Remove stdout printout for unbound-service-install.exe
2422	- .gitignore for git users.
2423
242430 November 2015: Ralph
2425	- Implemented qname minimisation
2426
242730 November 2015: Wouter
2428	- Fix for #724: conf syntax to read files from run dir (on Windows).
2429
243025 November 2015: Wouter
2431	- Fix for #720, fix unbound-control-setup windows batch file.
2432
243324 November 2015: Wouter
2434	- Fix #720: add windows scripts to zip bundle.
2435	- iana portlist update.
2436
243720 November 2015: Wouter
2438	- Added assert on rrset cache correctness.
2439	- Fix that malformed EDNS query gets a response without malformed EDNS.
2440
244118 November 2015: Wouter
2442	- newer acx_nlnetlabs.m4.
2443	- spelling fixes from Igor Sobrado Delgado.
2444
244517 November 2015: Wouter
2446	- Fix #594. libunbound: optionally use libnettle for crypto.
2447	  Contributed by Luca Bruno.  Added --with-nettle for use with
2448	  --with-libunbound-only.
2449	- refactor nsec3 hash implementation to be more library-portable.
2450	- iana portlist update.
2451	- Fixup DER encoded DSA signatures for libnettle.
2452
245316 November 2015: Wouter
2454	- Fix for lenient accept of reverse order DNAME and CNAME.
2455
24566 November 2015: Wouter
2457	- Change example.conf: ftp.internic.net to https://www.internic.net
2458
24595 November 2015: Wouter
2460	- ACX_SSL_CHECKS no longer adds -ldl needlessly.
2461
24623 November 2015: Wouter
2463	- Fix #718: Fix unbound-control-setup with support for env
2464	  without HEREDOC bash support.
2465
246629 October 2015: Wouter
2467	- patch from Doug Hogan for SSL_OP_NO_SSLvx options.
2468	- Fix #716: nodata proof with empty non-terminals and wildcards.
2469
247028 October 2015: Wouter
2471	- Fix checklock testcode for linux threads on exit.
2472
247327 October 2015: Wouter
2474	- isblank() compat implementation.
2475	- detect libexpat without xml_StopParser function.
2476	- portability fixes.
2477	- portability, replace snprintf if return value broken.
2478
247923 October 2015: Wouter
2480	- Fix #714: Document config to block private-address for IPv4
2481	  mapped IPv6 addresses.
2482
248322 October 2015: Wouter
2484	- Fix #712: unbound-anchor appears to not fsync root.key.
2485
248620 October 2015: Wouter
2487	- 1.5.6 release.
2488	- trunk tracks development of 1.5.7.
2489
249015 October 2015: Wouter
2491	- Fix segfault in the dns64 module in the formaterror error path.
2492	- Fix sldns_wire2str_rdata_scan for malformed RRs.
2493	- tag for 1.5.6rc1 release.
2494
249514 October 2015: Wouter
2496	- ANY responses include DNAME records if present, as per Evan Hunt's
2497	  remark in dnsop.
2498	- Fix manpage to suggest using SIGTERM to terminate the server.
2499
25009 October 2015: Wouter
2501	- Default for ssl-port is port 853, the temporary port assignment
2502	  for secure domain name system traffic.
2503	  If you used to rely on the older default of port 443, you have
2504	  to put a clause in unbound.conf for that.  The new value is likely
2505	  going to be the standardised port number for this traffic.
2506	- iana portlist update.
2507
25086 October 2015: Wouter
2509	- 1.5.5 release.
2510	- trunk tracks the development of 1.5.6.
2511
251228 September 2015: Wouter
2513	- MAX_TARGET_COUNT increased to 64, to fix up sporadic resolution
2514	  failures.
2515	- tag for 1.5.5rc1 release.
2516	- makedist.sh: pgp sig echo commands.
2517
251825 September 2015: Wouter
2519	- Fix unbound-control flush that does not succeed in removing data.
2520
252122 September 2015: Wouter
2522	- Fix config globbed include chroot treatment, this fixes reload of
2523	  globs (patch from Dag-Erling Smørgrav).
2524	- iana portlist update.
2525	- Fix #702: New IPs for for h.root-servers.net.
2526	- Remove confusion comment from canonical_compare() function.
2527	- Fix #705: ub_ctx_set_fwd() return value mishandled on windows.
2528	- testbound selftest also works in non-debug mode.
2529	- Fix minor error in unbound.conf.5.in
2530	- Fix unbound.conf(5) access-control description for precedence
2531	  and default.
2532
253331 August 2015: Wouter
2534	- changed windows setup compression to be more transparent.
2535
253628 August 2015: Wouter
2537	- Fix #697: Get PY_MAJOR_VERSION failure at configure for python
2538	  2.4 to 2.6.
2539	- Feature #699: --enable-pie option to that builds PIE binary.
2540	- Feature #700: --enable-relro-now option that enables full read-only
2541	  relocation.
2542
254324 August 2015: Wouter
2544	- Fix deadlock for local data add and zone add when unbound-control
2545	  list_local_data printout is interrupted.
2546	- iana portlist update.
2547	- Change default of harden-algo-downgrade to off.  This is lenient
2548	  for algorithm rollover.
2549
255013 August 2015: Wouter
2551	- 5011 implementation does not insist on all algorithms, when
2552	  harden-algo-downgrade is turned off.
2553	- Reap the child process that libunbound spawns.
2554
255511 August 2015: Wouter
2556	- Fix #694: configure script does not detect LibreSSL 2.2.2
2557
25584 August 2015: Wouter
2559	- Document that local-zone nodefault matches exactly and transparent
2560	  can be used to release a subzone.
2561
25623 August 2015: Wouter
2563	- Document in the manual more text about configuring locally served
2564	  zones.
2565	- Fix 5011 anchor update timer after reload.
2566	- Fix mktime in unbound-anchor not using UTC.
2567
256830 July 2015: Wouter
2569	- please afl-gcc (llvm) for uninitialised variable warning.
2570	- Added permit-small-holddown config to debug fast 5011 rollover.
2571
257224 July 2015: Wouter
2573	- Fix #690: Reload fails when so-reuseport is yes after changing
2574	  num-threads.
2575	- iana portlist update.
2576
257721 July 2015: Wouter
2578	- Fix configure to detect SSL_CTX_set_ecdh_auto.
2579	- iana portlist update.
2580
258120 July 2015: Wouter
2582	- Enable ECDHE for servers.  Where available, use
2583	  SSL_CTX_set_ecdh_auto() for TLS-wrapped server configurations to
2584	  enable ECDHE.  Otherwise, manually offer curve p256.
2585	  Client connections should automatically use ECDHE when available.
2586	  (thanks Daniel Kahn Gillmor)
2587
258818 July 2015: Willem
2589	- Allow certificate chain files to allow for intermediate certificates.
2590	  (thanks Daniel Kahn Gillmor)
2591
259213 July 2015: Wouter
2593	- makedist produces sha1 and sha256 files for created binaries too.
2594
25959 July 2015: Wouter
2596	- 1.5.4 release tag
2597	- trunk has 1.5.5 in development.
2598	- Fix #681: Setting forwarders with unbound-control forward
2599	  implicitly turns on forward-first.
2600
260129 June 2015: Wouter
2602	- iana portlist update.
2603	- Fix alloc with log for allocation size checks.
2604
260526 June 2015: Wouter
2606	- Fix #677 Fix DNAME responses from cache that failed internal chain
2607	  test.
2608	- iana portlist update.
2609
261022 June 2015: Wouter
2611	- Fix #677 Fix CNAME corresponding to a DNAME was checked incorrectly
2612	  and was therefore always synthesized (thanks to Valentin Dietrich).
2613
26144 June 2015: Wouter
2615	- RFC 7553 RR type URI support, is now enabled by default.
2616
26172 June 2015: Wouter
2618	- Fix #674: Do not free pointers given by getenv.
2619
262029 May 2015: Wouter
2621	- Fix that unparseable error responses are ratelimited.
2622	- SOA negative TTL is capped at minimumttl in its rdata section.
2623	- cache-max-negative-ttl config option, default 3600.
2624
262526 May 2015: Wouter
2626	- Document that ratelimit works with unbound-control set_option.
2627
262821 May 2015: Wouter
2629	- iana portlist update.
2630	- documentation proposes ratelimit of 1000 (closer to what upstream
2631	  servers expect from us).
2632
263320 May 2015: Wouter
2634	- DLV is going to be decommissioned.  Advice to stop using it, and
2635	  put text in the example configuration and man page to that effect.
2636
263710 May 2015: Wouter
2638	- Change syntax of particular validator error to be easier for
2639	  machine parse, swap rrset and ip adres info so it looks like:
2640	  validation failure <www.example.nl. TXT IN>: signature crypto
2641	  failed from 2001:DB8:7:bba4::53 for <*.example.nl. NSEC IN>
2642
26431 May 2015: Wouter
2644	- caps-whitelist in unbound.conf allows whitelist of loadbalancers
2645	  that cannot work with caps-for-id or its fallback.
2646
264730 April 2015: Wouter
2648	- Unit test for type ANY synthesis.
2649
265022 April 2015: Wouter
2651	- Removed contrib/unbound_unixsock.diff, because it has been
2652	  integrated, use control-interface: /path in unbound.conf.
2653	- iana portlist update.
2654
265517 April 2015: Wouter
2656	- Synthesize ANY responses from cache.  Does not search exhaustively,
2657	  but MX,A,AAAA,SOA,NS also CNAME.
2658	- Fix leaked dns64prefix configuration string.
2659
266016 April 2015: Wouter
2661	- Add local-zone type inform_deny, that logs query and drops answer.
2662	- Ratelimit does not apply to prefetched queries, and ratelimit-factor
2663	  is default 10.  Repeated normal queries get resolved and with
2664	  prefetch stay in the cache.
2665	- Fix bug#664: libunbound python3 related fixes (from Tomas Hozza)
2666	  Use print_function also for Python2.
2667	  libunbound examples: produce sorted output.
2668	  libunbound-Python: libldns is not used anymore.
2669	  Fix issue with Python 3 mapping of FILE* using file_py3.i from ldns.
2670
267110 April 2015: Wouter
2672	- unbound-control ratelimit_list lists high rate domains.
2673	- ratelimit feature, ratelimit: 100, or some sensible qps, can be
2674	  used to turn it on.  It ratelimits recursion effort per zone.
2675	  For particular names you can configure exceptions in unbound.conf.
2676	- Fix that get_option for cache-sizes does not print double newline.
2677	- Fix#663: ssl handshake fails when using unix socket because dh size
2678	  is too small.
2679
26808 April 2015: Wouter
2681	- Fix crash in dnstap: Do not try to log TCP responses after timeout.
2682
26837 April 2015: Wouter
2684	- Libunbound skips dos-line-endings from etc/hosts.
2685	- Unbound exits with a fatal error when the auto-trust-anchor-file
2686	  fails to be writable.  This is seconds after startup.  You can
2687	  load a readonly auto-trust-anchor-file with trust-anchor-file.
2688	  The file has to be writable to notice the trust anchor change,
2689	  without it, a trust anchor change will be unnoticed and the system
2690	  will then become inoperable.
2691	- unbound-control list_insecure command shows the negative trust
2692	  anchors currently configured, patch from Jelte Jansen.
2693
26942 April 2015: Wouter
2695	- Fix #660: Fix interface-automatic broken in the presence of
2696	  asymmetric routing.
2697
269826 March 2015: Wouter
2699	- remote.c probedelay line is easier to read.
2700	- rename ldns subdirectory to sldns to avoid name collision.
2701
270225 March 2015: Wouter
2703	- Fix #657:  libunbound(3) recommends deprecated
2704	  CRYPTO_set_id_callback.
2705	- If unknown trust anchor algorithm, and libressl is used, error
2706	  message encourages upgrade of the libressl package.
2707
270823 March 2015: Wouter
2709	- Fix segfault on user not found at startup (from Maciej Soltysiak).
2710
271120 March 2015: Wouter
2712	- Fixed to add integer overflow checks on allocation (defense in depth).
2713
271419 March 2015: Wouter
2715	- Add ip-transparent config option for bind to non-local addresses.
2716
271717 March 2015: Wouter
2718	- Use reallocarray for integer overflow protection, patch submitted
2719	  by Loganaden Velvindron.
2720
272116 March 2015: Wouter
2722	- Fixup compile on cygwin, more portable openssl thread id.
2723
272412 March 2015: Wouter
2725	- Updated default keylength in unbound-control-setup to 3k.
2726
272710 March 2015: Wouter
2728	- Fix lintian warning in unbound-checkconf man page (from Andreas
2729	  Schulze).
2730	- print svnroot when building windows dist.
2731	- iana portlist update.
2732	- Fix warning on sign compare in getentropy_linux.
2733
27349 March 2015: Wouter
2735	- Fix #644: harden-algo-downgrade option, if turned off, fixes the
2736	  reported excessive validation failure when multiple algorithms
2737	  are present.  It allows the weakest algorithm to validate the zone.
2738	- iana portlist update.
2739
27405 March 2015: Wouter
2741	- contrib/unbound_smf22.tar.gz: Solaris SMF installation/removal
2742	  scripts.  Contributed by Yuri Voinov.
2743	- Document that incoming-num-tcp increase is good for large servers.
2744	- stats reports tcp usage, of incoming-num-tcp buffers.
2745
27464 March 2015: Wouter
2747	- Patch from Brad Smith that syncs compat/getentropy_linux with
2748	  OpenBSD's version (2015-03-04).
2749	- 0x20 fallback improved: servfail responses do not count as missing
2750	  comparisons (except if all responses are errors),
2751	  inability to find nameservers does not fail equality comparisons,
2752	  many nameservers does not try to compare more than max-sent-count,
2753	  parse failures start 0x20 fallback procedure.
2754	- store caps_response with best response in case downgrade response
2755	  happens to be the last one.
2756	- Document windows 8 tests.
2757
27583 March 2015: Wouter
2759	- tag 1.5.3rc1
2760	[ This became 1.5.3 on 10 March, trunk is 1.5.4 in development ]
2761
27622 March 2015: Wouter
2763	- iana portlist update.
2764
276520 February 2015: Wouter
2766	- Use the getrandom syscall introduced in Linux 3.17 (from Heiner
2767	  Kallweit).
2768	- Fix #645 Portability to Solaris 10, use AF_LOCAL.
2769	- Fix #646 Portability to Solaris, -lrt for getentropy_solaris.
2770	- Fix #647 crash in 1.5.2 because pwd.db no longer accessible after
2771	  reload.
2772
277319 February 2015: Wouter
2774	- 1.5.2 release tag.
2775	- svn trunk contains 1.5.3 under development.
2776
277713 February 2015: Wouter
2778	- Fix #643: doc/example.conf.in: unnecessary whitespace.
2779
278012 February 2015: Wouter
2781	- tag 1.5.2rc1
2782
278311 February 2015: Wouter
2784	- iana portlist update.
2785
278610 February 2015: Wouter
2787	- Fix scrubber with harden-glue turned off to reject NS (and other
2788	  not-address) records.
2789
27909 February 2015: Wouter
2791	- Fix validation failure in case upstream forwarder (ISC BIND) does
2792	  not have the same trust anchors and decides to insert unsigned NS
2793	  record in authority section.
2794
27952 February 2015: Wouter
2796	- infra-cache-min-rtt patch from Florian Riehm, for expected long
2797	  uplink roundtrip times.
2798
279930 January 2015: Wouter
2800	- Fix 0x20 capsforid fallback to omit gratuitous NS and additional
2801	  section changes.
2802	- Portability fix for Solaris ('sun' is not usable for a variable).
2803
280429 January 2015: Wouter
2805	- Fix pyunbound byte string representation for python3.
2806
280726 January 2015: Wouter
2808	- Fix unintended use of gcc extension for incomplete enum types,
2809	  compile with pedantic c99 compliance (from Daniel Dickman).
2810
281123 January 2015: Wouter
2812	- windows port fixes, no AF_LOCAL, no chown, no chmod(grp).
2813
281416 January 2015: Wouter
2815	- unit test for local unix connection.  Documentation and log_addr
2816	  does not inspect port for AF_LOCAL.
2817	- unbound-checkconf -f prints chroot with pidfile path.
2818
281913 January 2015: Wouter
2820	- iana portlist update.
2821
282212 January 2015: Wouter
2823	- Cast sun_len sizeof to socklen_t.
2824	- Fix pyunbound ord call, portable for python 2 and 3.
2825
28267 January 2015: Wouter
2827	- Fix warnings in pythonmod changes.
2828
28296 January 2015: Wouter
2830	- iana portlist update.
2831	- patch for remote control over local sockets, from Dag-Erling
2832	  Smorgrav, Ilya Bakulin.  Use control-interface: /path/sock and
2833	  control-use-cert: no.
2834	- Fixup that patch and uid lookup (only for daemon).
2835	- coded the default of control-use-cert, to yes.
2836
28375 January 2015: Wouter
2838	- getauxval test for ppc64 linux compatibility.
2839	- make strip works for unbound-host and unbound-anchor.
2840	- patch from Stephane Lapie that adds to the python API, that
2841	  exposes struct delegpt, and adds the find_delegation function.
2842	- print query name when max target count is exceeded.
2843	- patch from Stuart Henderson that fixes DESTDIR in
2844	  unbound-control-setup for installs where config is not in
2845	  the prefix location.
2846	- Fix #634: fix fail to start on Linux LTS 3.14.X, ignores missing
2847	  IP_MTU_DISCOVER OMIT option (fix from Remi Gacogne).
2848	- Updated contrib warmup.cmd/sh to support two modes - load
2849	  from pre-defined list of domains or (with filename as argument)
2850	  load from user-specified list of domains, and updated contrib
2851	  unbound_cache.sh/cmd to support loading/save/reload cache to/from
2852	  default path or (with secondary argument) arbitrary path/filename,
2853	  from Yuri Voinov.
2854	- Patch from Philip Paeps to contrib/unbound_munin_ that uses
2855	  type ABSOLUTE.  Allows munin.conf: [idleserver.example.net]
2856	  unbound_munin_hits.graph_period minute
2857
28589 December 2014: Wouter
2859	- svn trunk has 1.5.2 in development.
2860	- config.guess and config.sub update from libtoolize.
2861	- local-zone: example.com inform makes unbound log a message with
2862	  client IP for queries in that zone.  Eg. for finding infected hosts.
2863
28648 December 2014: Wouter
2865	- Fix CVE-2014-8602: denial of service by making resolver chase
2866	  endless series of delegations.
2867
28681 December 2014: Wouter
2869	- Fix bug#632: unbound fails to build on AArch64, protects
2870	  getentropy compat code from calling sysctl if it is has been removed.
2871
287229 November 2014: Wouter
2873	- Add include to getentropy_linux.c, hopefully fixing debian build.
2874
287528 November 2014: Wouter
2876	- Fix makefile for build from noexec source tree.
2877
287826 November 2014: Wouter
2879	- Fix libunbound undefined symbol errors for main.
2880	  Referencing main does not seem to be possible for libunbound.
2881
288224 November 2014: Wouter
2883	- Fix log at high verbosity and memory allocation failure.
2884	- iana portlist update.
2885
288621 November 2014: Wouter
2887	- Fix crash on multiple thread random usage on systems without
2888	  arc4random.
2889
289020 November 2014: Wouter
2891	- fix compat/getentropy_win.c check if CryptGenRandom works and no
2892	  immediate exit on windows.
2893
289419 November 2014: Wouter
2895	- Fix cdflag dns64 processing.
2896
289718 November 2014: Wouter
2898	- Fix that CD flag disables DNS64 processing, returning the DNSSEC
2899	  signed AAAA denial.
2900	- iana portlist update.
2901
290217 November 2014: Wouter
2903	- Fix #627: SSL_CTX_load_verify_locations return code not properly
2904	  checked.
2905
290614 November 2014: Wouter
2907	- parser with bison 2.7
2908
290913 November 2014: Wouter
2910	- Patch from Stephane Lapie for ASAHI Net that implements aaaa-filter,
2911	added to contrib/aaaa-filter-iterator.patch.
2912
291312 November 2014: Wouter
2914	- trunk has 1.5.1 in development.
2915	- Patch from Robert Edmonds to build pyunbound python module
2916	  differently.  No versioninfo, with -shared and without $(LIBS).
2917	- Patch from Robert Edmonds fixes hyphens in unbound-anchor man page.
2918	- Removed 'increased limit open files' log message that is written
2919	  to console.  It is only written on verbosity 4 and higher.
2920	  This keeps system bootup console cleaner.
2921	- Patch from James Raftery, always print stats for rcodes 0..5.
2922
292311 November 2014: Wouter
2924	- iana portlist update.
2925	- Fix bug where forward or stub addresses with same address but
2926	  different port number were not tried.
2927	- version number in svn trunk is 1.5.0
2928	- tag 1.5.0rc1
2929	- review fix from Ralph.
2930
29317 November 2014: Wouter
2932	- dnstap fixes by Robert Edmonds:
2933		dnstap/dnstap.m4: cosmetic fixes
2934		dnstap/: Remove compiled protoc-c output files
2935		dnstap/dnstap.m4: Error out if required libraries are not found
2936		dnstap: Fix ProtobufCBufferSimple usage that is incorrect as of
2937			protobuf-c 1.0.0
2938		dnstap/: Adapt to API changes in latest libfstrm (>= 0.2.0)
2939
29404 November 2014: Wouter
2941	- Add ub_ctx_add_ta_autr function to add a RFC5011 automatically
2942	  tracked trust anchor to libunbound.
2943	- Redefine internal minievent symbols to unique symbols that helps
2944	  linking on platforms where the linker leaks names across modules.
2945
294627 October 2014: Wouter
2947	- Disabled use of SSLv3 in remote-control and ssl-upstream.
2948	- iana portlist update.
2949
295016 October 2014: Wouter
2951	- Documented dns64 configuration in unbound.conf man page.
2952
295313 October 2014: Wouter
2954	- Fix #617: in ldns in unbound, lowercase WKS services.
2955	- Fix ctype invocation casts.
2956
295710 October 2014: Wouter
2958	- Fix unbound-checkconf check for module config with dns64 module.
2959	- Fix unbound capsforid fallback, it ignores TTLs in comparison.
2960
29616 October 2014: Wouter
2962	- Fix #614: man page variable substitution bug.
29636 October 2014: Willem
2964	- Whitespaces after $ORIGIN are not part of the origin dname (ldns).
2965	- $TTL's value starts at position 5 (ldns).
2966
29671 October 2014: Wouter
2968	- fix #613: Allow tab ws in var length last rdfs (in ldns str2wire).
2969
297029 September 2014: Wouter
2971	- Fix #612: create service with service.conf in present directory and
2972	  auto load it.
2973	- Fix for mingw compile openssl ranlib.
2974
297525 September 2014: Wouter
2976	- updated configure and aclocal with newer autoconf 1.13.
2977
297822 September 2014: Wouter
2979	- Fix swig and python examples for Python 3.x.
2980	- Fix for mingw compile with openssl-1.0.1i.
2981
298219 September 2014: Wouter
2983	- improve python configuration detection to build on Fedora 22.
2984
298518 September 2014: Wouter
2986	- patches to also build with Python 3.x (from Pavel Simerda).
2987
298816 September 2014: Wouter
2989	- Fix tcp timer waiting list removal code.
2990	- iana portlist update.
2991	- Updated the TCP_BACLOG from 5 to 256, so that the tcp accept queue
2992	  is longer and more tcp connections can be handled.
2993
299415 September 2014: Wouter
2995	- Fix unit test for CDS typecode.
2996
29975 September 2014: Wouter
2998	- type CDS and CDNSKEY types in sldns.
2999
300025 August 2014: Wouter
3001	- Fixup checklock code for log lock and its mutual initialization
3002	  dependency.
3003	- iana portlist update.
3004	- Removed necessity for pkg-config from the dnstap.m4, new are
3005	  the --with-libfstrm and --with-protobuf-c configure options.
3006
300719 August 2014: Wouter
3008	- Update unbound manpage with more explanation (from Florian Obser).
3009
301018 August 2014: Wouter
3011	- Fix #603: unbound-checkconf -o <option> should skip verification
3012	  checks.
3013	- iana portlist update.
3014	- Fixup doc/unbound.doxygen to remove obsolete 1.8.7 settings.
3015
30165 August 2014: Wouter
3017	- dnstap support, with a patch from Farsight Security, written by
3018	  Robert Edmonds. The --enable-dnstap needs libfstrm and protobuf-c.
3019	  It is BSD licensed (see dnstap/dnstap.c).
3020	  Building with --enable-dnstap needs pkg-config with this patch.
3021	- Noted dnstap in doc/README and doc/CREDITS.
3022	- Changes to the dnstap patch.
3023	  - lint fixes.
3024	  - dnstap/dnstap_config.h should not have been added to the repo,
3025	    because is it generated.
3026
30271 August 2014: Wouter
3028	- Patch add msg, rrset, infra and key cache sizes to stats command
3029	  from Maciej Soltysiak.
3030	- iana portlist update.
3031
303231 July 2014: Wouter
3033	- DNS64 from Viagenie (BSD Licensed), written by Simon Perrault.
3034	  Initial commit of the patch from the FreeBSD base (with its fixes).
3035	  This adds a module (for module-config in unbound.conf) dns64 that
3036	  performs DNS64 processing, see README.DNS64.
3037	- Changes from DNS64:
3038	  strcpy changed to memmove.
3039	  arraybound check fixed from prefix_net/8/4 to prefix_net/8+4.
3040	  allocation of result consistently in the correct region.
3041	  time_t is now used for ttl in unbound (since the patch's version).
3042	- testdata/dns64_lookup.rpl for unit test for dns64 functionality.
3043
304429 July 2014: Wouter
3045	- Patch from Dag-Erling Smorgrav that implements feature, unbound -dd
3046	  does not fork in the background and also logs to stderr.
3047
304821 July 2014: Wouter
3049	- Fix endian.h include for OpenBSD.
3050
305116 July 2014: Wouter
3052	- And Fix#596: Bail out of unbound-control dump_infra when ssl
3053	  write fails.
3054
305515 July 2014: Wouter
3056	- Fix #596: Bail out of unbound-control list_local_zones when ssl
3057	  write fails.
3058	- iana portlist update.
3059
306013 July 2014: Wouter
3061	- Configure tests if main can be linked to from getentropy compat.
3062
306312 July 2014: Wouter
3064	- Fix getentropy compat code, function refs were not portable.
3065	- Fix to check openssl version number only for OpenSSL.
3066	- LibreSSL provides compat items, check for that in configure.
3067	- Fix bug in fix for log locks that caused deadlock in signal handler.
3068	- update compat/getentropy and arc4random to the most recent ones from OpenBSD.
3069
307011 July 2014: Matthijs
3071	- fake-rfc2553 patch (thanks Benjamin Baier).
3072
307311 July 2014: Wouter
3074	- arc4random in compat/ and getentropy, explicit_bzero, chacha for
3075	  dependencies, from OpenBSD.  arc4_lock and sha512 in compat.
3076	  This makes arc4random available on all platforms, except when
3077	  compiled with LIBNSS (it uses libNSS crypto random).
3078	- fix strptime implicit declaration error on OpenBSD.
3079	- arc4random, getentropy and explicit_bzero compat for Windows.
3080
30814 July 2014: Wouter
3082	- Fix #593: segfault or crash upon rotating logfile.
3083
30843 July 2014: Wouter
3085	- DLV tests added.
3086	- signit tool fixup for compile with libldns library.
3087	- iana portlist updated.
3088
308927 June 2014: Wouter
3090	- so-reuseport is available on BSDs(such as FreeBSD 10) and OS/X.
3091
309226 June 2014: Wouter
3093	- unbound-control status reports if so-reuseport was successful.
3094	- iana portlist updated.
3095
309624 June 2014: Wouter
3097	- Fix caps-for-id fallback, and added fallback attempt when servers
3098	  drop 0x20 perturbed queries.
3099	- Fixup testsetup for VM tests (run testcode/run_vm.sh).
3100
310117 June 2014: Wouter
3102	- iana portlist updated.
3103
31043 June 2014: Wouter
3105	- Add AAAA for B root server to default root hints.
3106
31072 June 2014: Wouter
3108	- Remove unused define from iterator.h
3109
311030 May 2014: Wouter
3111	- Fixup sldns_enum_edns_option typedef definition.
3112
311328 May 2014: Wouter
3114	- Code cleanup patch from Dag-Erling Smorgrav, with compiler issue
3115	  fixes from FreeBSD's copy of Unbound, he notes:
3116	  Generate unbound-control-setup.sh at build time so it respects
3117	  prefix and sysconfdir from the configure script.  Also fix the
3118	  umask to match the comment, and the comment to match the umask.
3119	  Add const and static where needed.  Use unions instead of
3120	  playing pointer poker.  Move declarations that are needed in
3121	  multiple source files into a shared header.  Move sldns_bgetc()
3122	  from parse.c to buffer.c where it belongs.  Introduce a new
3123	  header file, worker.h, which declares the callbacks that
3124	  all workers must define.  Remove those declarations from
3125	  libworker.h.	Include the correct headers in the correct places.
3126	  Fix a few dummy callbacks that don't match their prototype.
3127	  Fix some casts.  Hide the sbrk madness behind #ifdef HAVE_SBRK.
3128	  Remove a useless printf which breaks reproducible builds.
3129	  Get rid of CONFIGURE_{TARGET,DATE,BUILD_WITH} now that they're
3130	  no longer used.  Add unbound-control-setup.sh to the list of
3131	  generated files.  The prototype for libworker_event_done_cb()
3132	  needs to be moved from libunbound/libworker.h to
3133	  libunbound/worker.h.
3134	- Fixup out-of-directory compile with unbound-control-setup.sh.in.
3135	- make depend.
3136
313723 May 2014: Wouter
3138	- unbound-host -D enabled dnssec and reads root trust anchor from
3139	  the default root key file that was compiled in.
3140
314120 May 2014: Wouter
3142	- Feature, unblock-lan-zones: yesno that you can use to make unbound
3143	  perform 10.0.0.0/8 and other reverse lookups normally, for use if
3144	  unbound is running service for localhost on localhost.
3145
314616 May 2014: Wouter
3147	- Updated create_unbound_ad_servers and unbound_cache scripts from
3148	  Yuri Voinov in the source/contrib directory. Added
3149	  warmup.cmd (and .sh): warm up the DNS cache with your MRU domains.
3150
31519 May 2014: Wouter
3152	- Implement draft-ietf-dnsop-rfc6598-rfc6303-01.
3153	- iana portlist updated.
3154
31558 May 2014: Wouter
3156	- Contrib windows scripts from Yuri Voinov added to src/contrib:
3157	  create_unbound_ad_servers.cmd: enters anti-ad server lists.
3158	  unbound_cache.cmd: saves and loads the cache.
3159	- Added unbound-control-setup.cmd from Yuri Voinov to the windows
3160	  unbound distribution set.  It requires openssl installed in %PATH%.
3161
31626 May 2014: Wouter
3163	- Change MAX_SENT_COUNT from 16 to 32 to resolve some cases easier.
3164
31655 May 2014: Wouter
3166	- More #567: remove : from output of stub and forward lists, this is
3167	  easier to parse.
3168
316929 April 2014: Wouter
3170	- iana portlist updated.
3171	- Add unbound-control flush_negative that flushed nxdomains, nodata,
3172	  and errors from the cache.  For dnssec-trigger and NetworkManager,
3173	  fixes cases where network changes have localdata that was already
3174	  negatively cached from the previous network.
3175
317623 April 2014: Wouter
3177	- Patch from Jeremie Courreges-Anglas to use arc4random_uniform
3178	  if available on the OS, it gets entropy from the OS.
3179
318015 April 2014: Wouter
3181	- Fix compile with libevent2 on FreeBSD.
3182
318311 April 2014: Wouter
3184	- Fix #502: explain that do-ip6 disable does not stop AAAA lookups,
3185	  but it stops the use of the ipv6 transport layer for DNS traffic.
3186	- iana portlist updated.
3187
318810 April 2014: Wouter
3189	- iana portlist updated.
3190	- Patch from Hannes Frederic Sowa for Linux 3.15 fragmentation
3191	  option for DNS fragmentation defense.
3192	- Document that dump_requestlist only prints queries from thread 0.
3193	- unbound-control stats prints num.query.tcpout with number of TCP
3194	  outgoing queries made in the previous statistics interval.
3195	- Fix #567: unbound lists if forward zone is secure or insecure with
3196	  +i annotation in output of list_forwards, also for list_stubs
3197	  (for NetworkManager integration.)
3198	- Fix #554: use unsigned long to print 64bit statistics counters on
3199	  64bit systems.
3200	- Fix #558: failed prefetch lookup does not remove cached response
3201	  but delays next prefetch (in lieu of caching a SERVFAIL).
3202	- Fix #545: improved logging, the ip address of the error is printed
3203	  on the same log-line as the error.
3204
32058 April 2014: Wouter
3206	- Fix #574: make test fails on Ubuntu 14.04.  Disabled remote-control
3207	  in testbound scripts.
3208	- iana portlist updated.
3209
32107 April 2014: Wouter
3211	- C.ROOT-SERVERS.NET has an IPv6 address, and we updated the root
3212	  hints (patch from Anand Buddhdev).
3213	- Fix #572: Fix unit test failure for systems with different
3214	  /etc/services.
3215
321628 March 2014: Wouter
3217	- Fix #569: do_tcp is do-tcp in unbound.conf man page.
3218
321925 March 2014: Wouter
3220	- Patch from Stuart Henderson to build unbound-host man from .1.in.
3221
322224 March 2014: Wouter
3223	- Fix print filename of encompassing config file on read failure.
3224
322512 March 2014: Wouter
3226	- tag 1.4.22
3227	- trunk has 1.4.23 in development.
3228
322910 March 2014: Wouter
3230	- Fix bug#561: contrib/cacti plugin did not report SERVFAIL rcodes
3231	  because of spelling.  Patch from Chris Coates.
3232
323327 February 2014: Wouter
3234	- tag 1.4.22rc1
3235
323621 February 2014: Wouter
3237	- iana portlist updated.
3238
323920 February 2014: Matthijs
3240	- Be lenient when a NSEC NameError response with RCODE=NXDOMAIN is
3241	  received. This is okay according 4035, but not after revising
3242	  existence in 4592.  NSEC empty non-terminals exist and thus the
3243	  RCODE should have been NOERROR. If this occurs, and the RRsets
3244	  are secure, we set the RCODE to NOERROR and the security status
3245	  of the response is also considered secure.
3246
324714 February 2014: Wouter
3248	- Works on Minix (3.2.1).
3249
325011 February 2014: Wouter
3251	- Fix parse of #553(NSD) string in sldns, quotes without spaces.
3252
32537 February 2014: Wouter
3254	- iana portlist updated.
3255	- add body to ifstatement if locks disabled.
3256	- add TXT string"string" test case to unit test.
3257	- Fix #551: License change "Regents" to "Copyright holder", matching
3258	  the BSD license on opensource.org.
3259
32606 February 2014: Wouter
3261	- sldns has type HIP.
3262	- code documentation on the module interface.
3263
32645 February 2014: Wouter
3265	- Fix sldns parse tests on osx.
3266
32673 February 2014: Wouter
3268	- Detect libevent2 install automatically by configure.
3269	- Fixup link with lib/event2 subdir.
3270	- Fix parse in sldns of quoted parenthesized text strings.
3271
327231 January 2014: Wouter
3273	- unit test for ldns wire to str and back with zones, root, nlnetlabs
3274	  and types.sidnlabs.
3275	- Fix for hex to string in unknown, atma and nsap.
3276	- fixup nss compile (no ldns in it).
3277	- fixup warning in unitldns
3278	- fixup WKS and rdata type service to print unsigned because strings
3279	  are not portable; they cannot be read (for sure) on other computers.
3280	- fixup type EUI48 and EUI64, type APL and type IPSECKEY in string
3281	  parse sldns.
3282
328330 January 2014: Wouter
3284	- delay-close does not act if there are udp-wait queries, so that
3285	  it does not make a socketdrain DoS easier.
3286
328728 January 2014: Wouter
3288	- iana portlist updated.
3289	- iana portlist test updated so it does not touch the source
3290	  if there are no changes.
3291	- delay-close: msec option that delays closing ports for which
3292	  the UDP reply has timed out.  Keeps the port open, only accepts
3293	  the correct reply.  This correct reply is not used, but the port
3294	  is open so that no port-denied ICMPs are generated.
3295
329627 January 2014: Wouter
3297	- reuseport is attempted, then fallback to without on failure.
3298
329924 January 2014: Wouter
3300	- Change unbound-event.h to use void* buffer, length idiom.
3301	- iana portlist updated.
3302	- unbound-event.h is installed if you configure --enable-event-api.
3303	- speed up unbound (reports say it could be up to 10%), by reducing
3304	  lock contention on localzones.lock.  It is changed to an rwlock.
3305	- so-reuseport: yesno option to distribute queries evenly over
3306	  threads on Linux (Thanks Robert Edmonds).
3307	- made lint clean.
3308
330921 January 2014: Wouter
3310	- Fix #547: no trustanchor written if filesystem full, fclose checked.
3311
331217 January 2014: Wouter
3313	- Fix isprint() portability in sldns, uses unsigned int.
3314	- iana portlist updated.
3315
331616 January 2014: Wouter
3317	- fix #544: Fixed +i causes segfault when running with module conf
3318	  "iterator".
3319	- Windows port, adjust %lld to %I64d, and warning in win_event.c.
3320
332114 January 2014: Wouter
3322	- iana portlist updated.
3323
33245 Dec 2013: Wouter
3325	- Fix bug in cachedump that uses sldns.
3326	- update pythonmod for ldns_ to sldns_ name change.
3327
33283 Dec 2013: Wouter
3329	- Fix sldns to use sldns_ prefix for all ldns_ variables.
3330	- Fix windows compile to compile with sldns.
3331
333230 Nov 2013: Wouter
3333	- Fix sldns to make globals use sldns_ prefix.  This fixes
3334	  linking with libldns that uses global variables ldns_ .
3335
333613 Nov 2013: Wouter
3337	- Fix bug#537: compile python plugin without ldns library.
3338
333912 Nov 2013: Wouter
3340	- Fix bug#536: acl_deny_non_local and refuse_non_local added.
3341
33425 Nov 2013: Wouter
3343	- Patch from Neel Goyal to fix async id assignment if callback
3344	  is called by libunbound in the mesh attach.
3345	- Accept ip-address: as an alternative for interface: for
3346	  consistency with nsd.conf syntax.
3347
33484 Nov 2013: Wouter
3349	- Patch from Neel Goyal to fix callback in libunbound.
3350
33513 Nov 2013: Wouter
3352	- if configured --with-libunbound-only fix make install.
3353
335431 Oct 2013: Wouter
3355	- Fix #531: Set SO_REUSEADDR so that the wildcard interface and a
3356	  more specific interface port 53 can be used at the same time, and
3357	  one of the daemons is unbound.
3358	- iana portlist update.
3359	- separate ldns into core ldns inside ldns/ subdirectory.  No more
3360	  --with-ldns is needed and unbound does not rely on libldns.
3361	- portability fixes for new USE_SLDNS ldns subdir codebase.
3362
336322 Oct 2013: Wouter
3364	- Patch from Neel Goyal: Add an API call to set an event base on an
3365	  existing ub_ctx.  This basically just destroys the current worker and
3366	  sets the event base to the current.  And fix a deadlock in
3367	  ub_resolve_event – the cfglock is held when libworker_create is
3368	  called.  This ends up trying to acquire the lock again in
3369	  context_obtain_alloc in the call chain.
3370	- Fix #528: if very high logging (4 or more) segfault on allow_snoop.
3371
337226 Sep 2013: Wouter
3373	- unbound-event.h is installed if configured --with-libevent.  It
3374	  contains low-level library calls, that use libevent's event_base
3375	  and an ldns_buffer for the wire return packet to perform async
3376	  resolution in the client's eventloop.
3377
337819 Sep 2013: Wouter
3379	- 1.4.21 tag created.
3380	- trunk has 1.4.22 number inside it.
3381	- iana portlist updated.
3382	- acx_nlnetlabs.m4 to 26; improve FLTO help text.
3383
338416 Sep 2013: Wouter
3385	- Fix#524: max-udp-size not effective to non-EDNS0 queries, from
3386	  Daisuke HIGASHI.
3387
338810 Sep 2013: Wouter
3389	- MIN_TTL and MAX_TTL also in time_t.
3390	- tag 1.4.21rc1 made again.
3391
339226 Aug 2013: Wouter
3393	- More fixes for bug#519: for the threaded case test if the bg
3394	  thread has been killed, on ub_ctx_delete, to avoid hangs.
3395
339622 Aug 2013: Wouter
3397	- more fixes that I overlooked.
3398	- review fixes from Willem.
3399
340021 Aug 2013: Wouter
3401	- Fix#520: Errors found by static analysis from Tomas Hozza(redhat).
3402
340320 Aug 2013: Wouter
3404	- Fix for 2038, with time_t instead of uint32_t.
3405
340619 Aug 2013: Wouter
3407	- Fix#519 ub_ctx_delete may hang in some scenarios (libunbound).
3408
340914 Aug 2013: Wouter
3410	- Fix uninit variable in fix#516.
3411
34128 Aug 2013: Wouter
3413	- Fix#516 dnssec lameness detection for answers that are improper.
3414
341530 Jun 2013: Wouter
3416	- tag 1.4.21rc1
3417
341829 Jun 2013: Wouter
3419	- Fix#512 memleak in testcode for testbound (if it fails).
3420	- Fix#512 NSS returned arrays out of setup function to be statics.
3421
342226 Jun 2013: Wouter
3423	- max include of 100.000 files (depth and globbed at one time).
3424	  This is to preserve system memory in bug cases, or endless cases.
3425	- iana portlist updated.
3426
342719 Jun 2013: Wouter
3428	- streamtcp man page, contributed by Tomas Hozza.
3429	- iana portlist updated.
3430	- libunbound documentation on how to avoid openssl race conditions.
3431
343225 Jun 2013: Wouter
3433	- Squelch sendto-permission denied errors when the network is
3434	  not connected, to avoid spamming syslog.
3435	- configure --disable-flto option (from Robert Edmonds).
3436
343718 Jun 2013: Wouter
3438	- Fix for const string literals in C++ for libunbound, from Karel
3439	  Slany.
3440	- iana portlist updated.
3441
344217 Jun 2013: Wouter
3443	- Fixup manpage syntax.
3444
344514 Jun 2013: Wouter
3446	- get_option and set_option support for log-time-ascii, python-script
3447	  val-sig-skew-min and val-sig-skew-max.  log-time-ascii takes effect
3448	  immediately.  The others are mostly useful for libunbound users.
3449
345013 Jun 2013: Wouter
3451	- get_option, set_option, unbound-checkconf -o and libunbound
3452	  getoption and setoption support cache-min-ttl and cache-max-ttl.
3453
345410 Jun 2013: Wouter
3455	- Fix#501: forward-first does not recurse, when forward name is ".".
3456	- iana portlist update.
3457	- Max include depth is unlimited.
3458
345927 May 2013: Wouter
3460	- Update acx_pthreads.m4 to ax_pthreads.4 (2013-03-29), and apply
3461	  patch to it to not fail when -Werror is also specified, from the
3462	  autoconf-archives.
3463	- iana portlist update.
3464
346521 May 2013: Wouter
3466	- Explain bogus and secure flags in libunbound more.
3467
346816 May 2013: Wouter
3469	- Fix#499 use-after-free in out-of-memory handling code (thanks Jake
3470	  Montgomery).
3471	- Fix#500 use on non-initialised values on socket bind failures.
3472
347315 May 2013: Wouter
3474	- Fix round-robin doesn't work with some Windows clients (from Ilya
3475	  Bakulin).
3476
34773 May 2013: Wouter
3478	- update acx_nlnetlabs.m4 to v23, sleep w32 fix.
3479
348026 April 2013: Wouter
3481	- add unbound-control insecure_add and insecure_remove for the
3482	  administration of negative trust anchors.
3483
348425 April 2013: Wouter
3485	- Implement max-udp-size config option, default 4096 (thanks
3486	  Daisuke Higashi).
3487	- Robust checks on dname validity from rdata for dname compare.
3488	- updated iana portlist.
3489
349019 April 2013: Wouter
3491	- Fixup snprintf return value usage, fixed libunbound_get_option.
3492
349318 April 2013: Wouter
3494	- fix bug #491: pick program name (0th argument) as syslog identity.
3495	- own implementation of compat/snprintf.c.
3496
349715 April 2013: Wouter
3498	- Fix so that for a configuration line of include: "*.conf" it is not
3499	  an error if there are no files matching the glob pattern.
3500	- unbound-anchor review: BIO_write can return 0 successfully if it
3501	  has successfully appended a zero length string.
3502
350311 April 2013: Wouter
3504	- Fix queries leaking up for stubs and forwards, if the configured
3505	  nameservers all fail to answer.
3506
350710 April 2013: Wouter
3508	- code improve for minimal responses, small speed increase.
3509
35109 April 2013: Wouter
3511	- updated iana portlist.
3512	- Fix crash in previous private address fixup of 22 March.
3513
351428 March 2013: Wouter
3515	- Make reverse zones easier by documenting the nodefault statements
3516	  commented-out in the example config file.
3517
351826 March 2013: Wouter
3519	- more fixes to lookup3.c endianness detection.
3520
352125 March 2013: Wouter
3522	- #492: Fix endianness detection, revert to older lookup3.c detection
3523	  and put new detect lines after previous tests, to avoid regressions
3524	  but allow new detections to succeed.
3525	  And add detection for machine/endian.h to it.
3526
352722 March 2013: Wouter
3528	- Fix resolve of names that use a mix of public and private addresses.
3529	- iana portlist update.
3530	- Fix makedist for new svn for -d option.
3531	- unbound.h header file has UNBOUND_VERSION_MAJOR define.
3532	- Fix windows RSRC version for long version numbers.
3533
353421 March 2013: Wouter
3535	- release 1.4.20
3536	- trunk has 1.4.21
3537	- committed libunbound version 4:1:2 for binary API updated in 1.4.20
3538	- install copy of unbound-control.8 man page for unbound-control-setup
3539
354014 March 2013: Wouter
3541	- iana portlist update.
3542	- tag 1.4.20rc1
3543
354412 March 2013: Wouter
3545	- Fixup makedist.sh for windows compile.
3546
354711 March 2013: Wouter
3548	- iana portlist update.
3549	- testcode/ldns-testpkts.c check for makedist is informational.
3550
355115 February 2013: Wouter
3552	- fix defines in lookup3 for bigendian bsd alpha
3553
355411 February 2013: Wouter
3555	- Fixup openssl_thread init code to only run if compiled with SSL.
3556
35577 February 2013: Wouter
3558	- detect endianness in lookup3 on BSD.
3559	- add libunbound.ttl at end of result structure, version bump for
3560	  libunbound and binary backwards compatible, but 1.4.19 is not
3561	  forward compatible with 1.4.20.
3562	- update iana port list.
3563
356430 January 2013: Wouter
3565	- includes and have_ssl fixes for nss.
3566
356729 January 2013: Wouter
3568	- printout name of zone with duplicate fwd and hint errors.
3569
357028 January 2013: Wouter
3571	- updated fwd_zero for newer nc. Updated common.sh for newer netstat.
3572
357317 January 2013: Wouter
3574	- unbound-anchors checks the emailAddress of the signer of the
3575	  root.xml file, default is dnssec@iana.org.  It also checks that
3576	  the signer has the correct key usage for a digital signature.
3577	- update iana port list.
3578
35793 January 2013: Wouter
3580	- Test that unbound-control checks client credentials.
3581	- Test that unbound can handle a CNAME at an intermediate node in
3582	  the chain of trust (where it seeks a DS record).
3583	- Check the commonName of the signer of the root.xml file in
3584	  unbound-anchor, default is dnssec@iana.org.
3585
35862 January 2013: Wouter
3587	- Fix openssl lock free on exit (reported by Robert Fleischman).
3588	- iana portlist updated.
3589	- Tested that unbound implements the RFC5155 Technical Errata id 3441.
3590	  Unbound already implements insecure classification of an empty
3591	  nonterminal in NSEC3 optout zone.
3592
359320 December 2012: Wouter
3594	- Fix unbound-anchor xml parse of entity declarations for safety.
3595
359619 December 2012: Wouter
3597	- iana portlist updated.
3598
359918 December 2012: Wouter
3600	- iana portlist updated.
3601
360214 December 2012: Wouter
3603	- Change of D.ROOT-SERVERS.NET A address in default root hints.
3604
360512 December 2012: Wouter
3606	- 1.4.19 release.
3607	- trunk has 1.4.20 under development.
3608
36095 December 2012: Wouter
3610	- note support for AAAA RR type RFC.
3611
36124 December 2012: Wouter
3613	- 1.4.19rc1 tag.
3614
361530 November 2012: Wouter
3616	- bug 481: fix python example0.
3617	- iana portlist updated.
3618
361927 November 2012: Wouter
3620	- iana portlist updated.
3621
36229 November 2012: Wouter
3623	- Fix unbound-control forward disables configured stubs below it.
3624
36257 November 2012: Wouter
3626	- Fixup ldns-testpkts, identical to ldns/examples.
3627	- iana portlist updated.
3628
362930 October 2012: Wouter
3630	- Fix bug #477: unbound-anchor segfaults if EDNS is blocked.
3631
363229 October 2012: Matthijs
3633	- Fix validation for responses with both CNAME and wildcard
3634	  expanded CNAME records in answer section.
3635
36368 October 2012: Wouter
3637	- update ldns-testpkts.c to ldns 1.6.14 version.
3638	- fix build of pythonmod in objdir, for unbound.py.
3639	- make clean and makerealclean remove generated python and docs.
3640
36415 October 2012: Wouter
3642	- fix build of pythonmod in objdir (thanks Jakob Schlyter).
3643
36443 October 2012: Wouter
3645	- fix text in unbound-anchor man page.
3646
36471 October 2012: Wouter
3648	- ignore trusted-keys globs that have no files (from Paul Wouters).
3649
365027 September 2012: Wouter
3651	- include: directive in config file accepts wildcards.  Patch from
3652	  Paul Wouters.  Suggested use: include: "/etc/unbound.d/conf.d/*"
3653	- unbound-control -q option is quiet, patch from Mariano Absatz.
3654	- iana portlist updated.
3655	- updated contrib/unbound.spec, patch from Valentin Bud.
3656
365721 September 2012: Wouter
3658	- chdir to / after chroot call (suggested by Camiel Dobbelaar).
3659
366017 September 2012: Wouter
3661	- patch_rsamd5_enable.diff: this patch enables RSAMD5 validation
3662	  otherwise it is treated as insecure.  The RSAMD5 algorithm is
3663	  deprecated (RFC6725).  The MD5 hash is considered weak for some
3664	  purposes, if you want to sign your zone, then RSASHA256 is an
3665	  uncontested hash.
3666
366730 August 2012: Wouter
3668	- RFC6725 deprecates RSAMD5: this DNSKEY algorithm is disabled.
3669	- iana portlist updated.
3670
367129 August 2012: Wouter
3672	- Nicer comments outgoing-port-avoid, thanks Stu (bug #465).
3673
367422 August 2012: Wouter
3675	- Fallback to 1472 and 1232, one fragment size without headers.
3676
367721 August 2012: Wouter
3678	- Fix timeouts so that when a server has been offline for a while
3679	  and is probed to see it works, it becomes fully available for
3680	  server selection again.
3681
368217 August 2012: Wouter
3683	- Add documentation to libunbound for default nonuse of resolv.conf.
3684
36852 August 2012: Wouter
3686	- trunk has 1.4.19 under development (fixes from 1 aug and 31 july
3687	are for 1.4.19).
3688	- iana portlist updated.
3689
36901 August 2012: Wouter
3691	- Fix openssl race condition, initializes openssl locks, reported
3692	  by Einar Lonn and Patrik Wallstrom.
3693
369431 July 2012: Wouter
3695	- Improved forward-first and stub-first documentation.
3696	- Fix that enables modules to register twice for the same
3697	  serviced_query, without race conditions or administration issues.
3698	  This should not happen with the current codebase, but it is robust.
3699	- Fix forward-first option where it sets the RD flag wrongly.
3700	- added manpage links for libunbound calls (Thanks Paul Wouters).
3701
370230 July 2012: Wouter
3703	- tag 1.4.18rc2 (became 1.4.18 release at 2 august 2012).
3704
370527 July 2012: Wouter
3706	- unbound-host works with libNSS
3707	- fix bogus nodata cname chain not reported as bogus by validator,
3708	  (Thanks Peter van Dijk).
3709
371026 July 2012: Wouter
3711	- iana portlist updated.
3712	- tag 1.4.18rc1.
3713
371425 July 2012: Wouter
3715	- review fix for libnss, check hash prefix allocation size.
3716
371723 July 2012: Wouter
3718	- fix missing break for GOST DS hash function.
3719	- implemented forward_first for the root.
3720
372120 July 2012: Wouter
3722	- Fix bug#452 and another assertion failure in mesh.c, makes
3723	  assertions in mesh.c resist duplicates.  Fixes DS NS search to
3724	  not generate duplicate sub queries.
3725
372619 July 2012: Willem
3727	- Fix bug#454: Remove ACX_CHECK_COMPILER_FLAG from configure.ac,
3728	  if CFLAGS is specified at configure time then '-g -O2' is not
3729	  appended to CFLAGS, so that the user can override them.
3730
373118 July 2012: Willem
3732	- Fix libunbound report of errors when in background mode.
3733
373411 July 2012: Willem
3735	- updated iana ports list.
3736
37379 July 2012: Willem
3738	- Add flush_bogus option for unbound-control
3739
37406 July 2012: Wouter
3741	- Fix validation of qtype DS queries that result in no data for
3742	  non-optout NSEC3 zones.
3743
37444 July 2012: Wouter
3745	- compile libunbound with libnss on Suse, passes regression tests.
3746
37473 July 2012: Wouter
3748	- FIPS_mode openssl does not use arc4random but RAND_pseudo_bytes.
3749
37502 July 2012: Wouter
3751	- updated iana ports list.
3752
375329 June 2012: Wouter
3754	- patch for unbound_munin_ script to handle arbitrary thread count by
3755	  Sven Ulland.
3756
375728 June 2012: Wouter
3758	- detect if openssl has FIPS_mode.
3759	- code review: return value of cache_store can be ignored for better
3760	  performance in out of memory conditions.
3761	- fix edns-buffer-size and msg-buffer-size manpage documentation.
3762	- updated iana ports list.
3763
376425 June 2012: Wouter
3765	- disable RSAMD5 if in FIPS mode (for openssl and for libnss).
3766
376722 June 2012: Wouter
3768	- implement DS records, NSEC3 and ECDSA for compile with libnss.
3769
377021 June 2012: Wouter
3771	- fix error handling of alloc failure during rrsig verification.
3772	- nss check for verification failure.
3773	- nss crypto works for RSA and DSA.
3774
377520 June 2012: Wouter
3776	- work on --with-nss build option (for now, --with-libunbound-only).
3777
377819 June 2012: Wouter
3779	- --with-libunbound-only build option, only builds the library and
3780	  not the daemon and other tools.
3781
378218 June 2012: Wouter
3783	- code review.
3784
378515 June 2012: Wouter
3786	- implement log-time-ascii on windows.
3787	- The key-cache bad key ttl is now 60 seconds.
3788	- updated iana ports list.
3789	- code review.
3790
379111 June 2012: Wouter
3792	- bug #452: fix crash on assert in mesh_state_attachment.
3793
379430 May 2012: Wouter
3795	- silence warning from swig-generated code (md set but not used in
3796	  swig initmodule, due to ifdefs in swig-generated code).
3797
379827 May 2012: Wouter
3799	- Fix debian-bugs-658021: Please enable hardened build flags.
3800
380125 May 2012: Wouter
3802	- updated iana ports list.
3803
380424 May 2012: Wouter
3805	- tag for 1.4.17 release.
3806	- trunk is 1.4.18 in development.
3807
380818 May 2012: Wouter
3809	- Review comments, removed duplicate memset to zero in delegpt.
3810
381116 May 2012: Wouter
3812	- Updated doc/FEATURES with RFCs that are implemented but not listed.
3813	- Protect if statements in val_anchor for compile without locks.
3814	- tag for 1.4.17rc1.
3815
381615 May 2012: Wouter
3817	- fix configure ECDSA support in ldns detection for windows compile.
3818	- fix possible uninitialised variable in windows pipe implementation.
3819
38209 May 2012: Wouter
3821	- Fix alignment problem in util/random on sparc64/freebsd.
3822
38238 May 2012: Wouter
3824	- Fix for accept spinning reported by OpenBSD.
3825	- iana portlist updated.
3826
38272 May 2012: Wouter
3828	- Fix validation of nodata for DS query in NSEC zones, reported by
3829	  Ondrej Mikle.
3830
383113 April 2012: Wouter
3832	- ECDSA support (RFC 6605) by default. Use --disable-ecdsa for older
3833	  openssl.
3834
383510 April 2012: Wouter
3836	- Applied patch from Daisuke HIGASHI for rrset-roundrobin and
3837	  minimal-responses features.
3838	- iana portlist updated.
3839
38405 April 2012: Wouter
3841	- fix bug #443: --with-chroot-dir not honoured by configure.
3842	- fix bug #444: setusercontext was called too late (thanks Bjorn
3843	  Ketelaars).
3844
384527 March 2012: Wouter
3846	- fix bug #442: Fix that Makefile depends on pythonmod headers
3847	  even using --without-pythonmodule.
3848
384922 March 2012: Wouter
3850	- contrib/validation-reporter follows rotated log file (patch from
3851	  Augie Schwer).
3852
385321 March 2012: Wouter
3854	- new approach to NS fetches for DS lookup that works with
3855	  cornercases, and is more robust and considers forwarders.
3856
385719 March 2012: Wouter
3858	- iana portlist updated.
3859	- fix to locate nameservers for DS lookup with NS fetches.
3860
386116 March 2012: Wouter
3862	- Patch for access to full DNS packet data in unbound python module
3863	  from Ondrej Mikle.
3864
38659 March 2012: Wouter
3866	- Applied line-buffer patch from Augie Schwer to validation.reporter.sh.
3867
38682 March 2012: Wouter
3869	- flush_infra cleans timeouted servers from the cache too.
3870	- removed warning from --enable-ecdsa.
3871
38721 March 2012: Wouter
3873	- forward-first option.  Tries without forward if a query fails.
3874	  Also stub-first option that is similar.
3875
387628 February 2012: Wouter
3877	- Fix from code review, if EINPROGRESS not defined chain if statement
3878	  differently.
3879
388027 February 2012: Wouter
3881	- Fix bug#434: on windows check registry for config file location
3882	  for unbound-control.exe, and unbound-checkconf.exe.
3883
388423 February 2012: Wouter
3885	- Fix to squelch 'network unreachable' errors from tcp connect in
3886	  logs, high verbosity will show them.
3887
388816 February 2012: Wouter
3889	- iter_hints is now thread-owned in module env, and thus threadsafe.
3890	- Fix prefetch and sticky NS, now the prefetch works.  It picks
3891	  nameservers that 'would be valid in the future', and if this makes
3892	  the NS timeout, it updates that NS by asking delegation from the
3893	  parent again.  If child NS has longer TTL, that TTL does not get
3894	  refreshed from the lookup to the child nameserver.
3895
389615 February 2012: Wouter
3897	- Fix forward-zone memory, uses malloc and frees original root dp.
3898	- iter hints (stubs) uses malloc inside for more dynamicity.
3899	- unbound-control forward_add, forward_remove, stub_add, stub_remove
3900	  can modify stubs and forwards for running unbound (on mobile computer)
3901	  they can also add and remove domain-insecure for the zone.
3902
390314 February 2012: Wouter
3904	- Fix sticky NS (ghost domain problem) if prefetch is yes.
3905	- iter forwards uses malloc inside for more dynamicity.
3906
390713 February 2012: Wouter
3908	- RT#2955. Fix for cygwin compilation.
3909	- iana portlist updated.
3910
391110 February 2012: Wouter
3912	- Slightly smaller critical region in one case in infra cache.
3913	- Fix timeouts to keep track of query type, A, AAAA and other, if
3914	  another has caused timeout blacklist, different type can still probe.
3915	- unit test fix for nomem_cnametopos.rpl race condition.
3916
39179 February 2012: Wouter
3918	- Fix AHX_BROKEN_MEMCMP for autoheader mess up of #undef in config.h.
3919
39208 February 2012: Wouter
3921	- implement draft-ietf-dnsext-ecdsa-04; which is in IETF LC; This
3922	  implementation is experimental at this time and not recommended
3923	  for use on the public internet (the protocol numbers have not
3924	  been assigned).  Needs recent ldns with --enable-ecdsa.
3925	- fix memory leak in errorcase for DSA signatures.
3926	- iana portlist updated.
3927	- workaround for openssl 0.9.8 ecdsa sha2 and evp problem.
3928
39293 February 2012: Wouter
3930	- fix for windows, rename() is not posix compliant on windows.
3931
39322 February 2012: Wouter
3933	- 1.4.16 release tag.
3934	- svn trunk is 1.4.17 in development.
3935	- iana portlist updated.
3936
39371 February 2012: Wouter
3938	- Fix validation failures (like: validation failure xx: no NSEC3
3939	  closest encloser from yy for DS zz. while building chain of trust,
3940	  because of a bug in the TTL-fix in 1.4.15, it picked the wrong rdata
3941	  for an NSEC3.  Now it does not change rdata, and fixes TTL.
3942
394330 January 2012: Wouter
3944	- Fix version-number in libtool to be version-info so it produces
3945	  libunbound.so.2 like it should.
3946
394726 January 2012: Wouter
3948	- Tag 1.4.15 (same as 1.4.15rc1), for 1.4.15 release.
3949	- trunk 1.4.16; includes changes memset testcode, #424 openindiana,
3950	  and keyfile write fixup.
3951	- applied patch to support outgoing-interface with ub_ctx_set_option.
3952
395323 January 2012: Wouter
3954	- Fix memset in test code.
3955
395620 January 2012: Wouter
3957	- Fix bug #424: compile on OpenIndiana OS with gcc 4.6.2.
3958
395919 January 2012: Wouter
3960	- Fix to write key files completely to a temporary file, and if that
3961	  succeeds, replace the real key file.  So failures leave a useful file.
3962
396318 January 2012: Wouter
3964	- tag 1.4.15rc1 created
3965	- updated libunbound/ubsyms.def and remade tag 1.4.15rc1.
3966
396717 January 2012: Wouter
3968	- Fix bug where canonical_compare of RRSIG did not downcase the
3969	  signer-name.  This is mostly harmless because RRSIGs do not have
3970	  to be sorted in canonical order, usually.
3971
397212 January 2012: Wouter
3973	- bug#428: add ub_version() call to libunbound.  API version increase,
3974	  with (binary) backwards compatibility for the previous version.
3975
397610 January 2012: Wouter
3977	- Fix bug #425: unbound reports wrong TTL in reply, it reports a TTL
3978	  that would be permissible by the RFCs but it is not the TTL in the
3979	  cache.
3980	- iana portlist updated.
3981	- uninitialised variable in reprobe for rtt blocked domains fixed.
3982	- lintfix and new flex output.
3983
39842 January 2012: Wouter
3985	- Fix to randomize hash function, based on 28c3 congress, reported
3986	  by Peter van Dijk.
3987
398824 December 2011: Wouter
3989	- Fix for memory leak (about 20 bytes when a tcp or udp send operation
3990	  towards authority servers failed, takes about 50.000 such failures to
3991	  leak one Mb, such failures are also usually logged), reported by
3992	  Robert Fleischmann.
3993	- iana portlist updated.
3994
399519 December 2011: Wouter
3996	- Fix for VU#209659 CVE-2011-4528: Unbound denial of service
3997	  vulnerabilities from nonstandard redirection and denial of existence
3998	  http://www.unbound.net/downloads/CVE-2011-4528.txt
3999	- robust checks for next-closer NSEC3s.
4000	- tag 1.4.14 created.
4001	- trunk has 1.4.15 in development.
4002
400315 December 2011: Wouter
4004	- remove uninit warning from cachedump code.
4005	- Fix parse error on negative SOA RRSIGs if badly ordered in the packet.
4006
400713 December 2011: Wouter
4008	- iana portlist updated.
4009	- svn tag 1.4.14rc1
4010	- fix infra cache comparison.
4011	- Fix to constrain signer_name to be a parent of the lookupname.
4012
40135 December 2011: Wouter
4014	- Fix getaddrinfowithincludes on windows with fedora16 mingw32-gcc.
4015	- Fix warnings with gcc 4.6 in compat/inet_ntop.c.
4016	- Fix warning unused in compat/strptime.c.
4017	- Fix malloc detection and double definition.
4018
40192 December 2011: Wouter
4020	- configure generated with autoconf 2.68.
4021
402230 November 2011: Wouter
4023	- Fix for tcp-upstream and ssl-upstream for if a laptop sleeps, causes
4024	  SERVFAILs.  Also fixed for UDP (but less likely).
4025
402628 November 2011: Wouter
4027	- Fix quartile time estimate, it was too low, (thanks Jan Komissar).
4028	- iana ports updated.
4029
403011 November 2011: Wouter
4031	- Makefile compat with SunOS make, BSD make and GNU make.
4032	- iana ports updated.
4033
403410 November 2011: Wouter
4035	- Makefile changed for BSD make compatibility.
4036
40379 November 2011: Wouter
4038	- added unit test for SSL service and SSL-upstream.
4039
40408 November 2011: Wouter
4041	- can configure ssl service to one port number, and not on others.
4042	- fixup windows compile with ssl support.
4043	- Fix double free in unbound-host, reported by Steve Grubb.
4044	- iana portlist updated.
4045
40461 November 2011: Wouter
4047	- dns over ssl support as a client, ssl-upstream yes turns it on.
4048	  It performs an SSL transaction for every DNS query (250 msec).
4049	- documentation for new options: ssl-upstream, ssl-service-key and
4050	  ssl-service.pem.
4051	- iana portlist updated.
4052	- fix -flto detection on Lion for llvm-gcc.
4053
405431 October 2011: Wouter
4055	- dns over ssl support, ssl-service-pem and ssl-service-key files
4056	  can be given and then TCP queries are serviced wrapped in SSL.
4057
405827 October 2011: Wouter
4059	- lame-ttl and lame-size options no longer exist, it is integrated
4060	  with the host info.  They are ignored (with verbose warning) if
4061	  encountered to keep the config file backwards compatible.
4062	- fix iana-update for changing gzip compression of results.
4063	- fix export-all-symbols on OSX.
4064
406526 October 2011: Wouter
4066	- iana portlist updated.
4067	- Infra cache stores information about ping and lameness per IP, zone.
4068	  This fixes bug #416.
4069	- fix iana_update target for gzipped file on iana site.
4070
407124 October 2011: Wouter
4072	- Fix resolve of partners.extranet.microsoft.com with a fix for the
4073	  server selection for choosing out of a (particular) list of bad
4074	  choices. (bug#415)
4075	- Fix make_new_space function so that the incoming query is not
4076	  overwritten if a jostled out query causes a waiting query to be
4077	  resumed that then fails and sends an error message.  (Thanks to
4078	  Matthew Lee).
4079
408021 October 2011: Wouter
4081	- fix --enable-allsymbols, fptr wlist is disabled on windows with this
4082	  option enabled because of memory layout exe vs dll.
4083
408419 October 2011: Wouter
4085	- fix unbound-anchor for broken strptime on OSX lion, detected
4086	  in configure.
4087	- Detect if GOST really works, openssl1.0 on OSX fails.
4088	- Implement ipv6%interface notation for scope_id usage.
4089
409017 October 2011: Wouter
4091	- better documentation for inform_super (Thanks Yang Zhe).
4092
409314 October 2011: Wouter
4094	- Fix for out-of-memory condition in libunbound (thanks
4095	  Robert Fleischman).
4096
409713 October 2011: Wouter
4098	- Fix --enable-allsymbols, it depended on link specifics of the
4099	  target platform, or fptr_wlist assertion failures could occur.
4100
410112 October 2011: Wouter
4102	- updated contrib/unbound_munin_ to family=auto so that it works with
4103	  munin-node-configure automatically (if installed as
4104	  /usr/local/share/munin/plugins/unbound_munin_ ).
4105
410627 September 2011: Wouter
4107	- unbound.exe -w windows option for start and stop service.
4108
410923 September 2011: Wouter
4110	- TCP-upstream calculates tcp-ping so server selection works if there
4111	  are alternatives.
4112
411320 September 2011: Wouter
4114	- Fix classification of NS set in answer section, where there is a
4115	  parent-child server, and the answer has the AA flag for dir.slb.com.
4116	  Thanks to Amanda Constant from Secure64.
4117
411816 September 2011: Wouter
4119	- fix bug #408: accept patch from Steve Snyder that comments out
4120	  unused functions in lookup3.c.
4121	- iana portlist updated.
4122	- fix EDNS1480 change memleak and TCP fallback.
4123	- fix various compiler warnings (reported by Paul Wouters).
4124	- max sent count.  EDNS1480 only for rtt < 5000.  No promiscuous
4125	  fetch if sentcount > 3, stop query if sentcount > 16.  Count is
4126	  reset when referral or CNAME happens.  This makes unbound better
4127	  at managing large NS sets, they are explored when there is continued
4128	  interest (in the form of queries).
4129
413015 September 2011: Wouter
4131	- release 1.4.13.
4132	- trunk contains 1.4.14 in development.
4133	- Unbound probes at EDNS1480 if there an EDNS0 timeout.
4134
413512 September 2011: Wouter
4136	- Reverted dns EDNS backoff fix, it did not help and needs
4137	  fragmentation fixes instead.
4138	- tag 1.4.13rc2
4139
41407 September 2011: Wouter
4141	- Fix operation in ipv6 only (do-ip4: no) mode.
4142
41436 September 2011: Wouter
4144	- fedora specfile updated.
4145
41465 September 2011: Wouter
4147	- tag 1.4.13rc1
4148
41492 September 2011: Wouter
4150	- iana portlist updated.
4151
415226 August 2011: Wouter
4153	- Fix num-threads 0 does not segfault, reported by Simon Deziel.
4154	- Fix validation failures due to EDNS backoff retries, the retry
4155	  for fetch of data has want_dnssec because the iter_indicate_dnssec
4156	  function returns true when validation failure retry happens, and
4157	  then the serviced query code does not fallback to noEDNS, even if
4158	  the cache says it has this.  This helps for DLV deployment when
4159	  the DNSSEC status is not known for sure before the lookup concludes.
4160
416124 August 2011: Wouter
4162	- Applied patch from Karel Slany that fixes a memory leak in the
4163	  unbound python module, in string conversions.
4164
416522 August 2011: Wouter
4166	- Fix validation of qtype ANY responses with CNAMEs (thanks Cathy
4167	  Zhang and Luo Ce).  Unbound responds with the RR types that are
4168	  available at the name for qtype ANY and validates those RR types.
4169	  It does not test for completeness (i.e. with NSEC or NSEC3 query),
4170	  and it does not follow the CNAME or DNAME to another name (with
4171	  even more data for the already large response).
4172	- Fix that internally, CNAMEs with NXDOMAIN have that as rcode.
4173	- Documented the options that work with control set_option command.
4174	- tcp-upstream yes/no option (works with set_option) for tunnels.
4175
417618 August 2011: Wouter
4177	- fix autoconf call in makedist crosscompile to RC or snapshot.
4178
417917 August 2011: Wouter
4180	- Fix validation of . DS query.
4181	- new xml format at IANA, new awk for iana_update.
4182	- iana portlist updated.
4183
418410 August 2011: Wouter
4185	- Fix python site-packages path to /usr/lib64.
4186	- updated patch from Tom.
4187	- fix memory and fd leak after out-of-memory condition.
4188
41899 August 2011: Wouter
4190	- patch from Tom Hendrikx fixes load of python modules.
4191
41928 August 2011: Wouter
4193	- make clean had ldns-src reference, removed.
4194
41951 August 2011: Wouter
4196	- Fix autoconf 2.68 warnings
4197
419814 July 2011: Wouter
4199	- Unbound implements RFC6303 (since version 1.4.7).
4200	- tag 1.4.12rc1 is released as 1.4.12 (without the other fixes in the
4201	  meantime, those are for 1.4.13).
4202	- iana portlist updated.
4203
420413 July 2011: Wouter
4205	- Quick fix for contrib/unbound.spec example, no ldns-builtin any more.
4206
420711 July 2011: Wouter
4208	- Fix wildcard expansion no-data reply under an optout NSEC3 zone is
4209	  validated as insecure, reported by Jia Li (lijia@cnnic.cn).
4210
42114 July 2011: Wouter
4212	- 1.4.12rc1 tag created.
4213
42141 July 2011: Wouter
4215	- version number in example config file.
4216	- fix that --enable-static-exe does not complain about it unknown.
4217
421830 June 2011: Wouter
4219	- tag relase 1.4.11, trunk is 1.4.12 development.
4220	- iana portlist updated.
4221	- fix bug#395: id bits of other query may leak out under conditions
4222	- fix replyaddr count wrong after jostled queries, which leads to
4223	  eventual starvation where the daemon has no replyaddrs left to use.
4224	- fix comment about rndc port, that referred to the old port number.
4225	- fix that the listening socket is not closed when too many remote
4226	  control connections are made at the same time.
4227	- removed ldns-src tarball inside the unbound tarball.
4228
422923 June 2011: Wouter
4230	- Changed -flto check to support clang compiler.
4231	- tag 1.4.11rc3 created.
4232
423317 June 2011: Wouter
4234	- tag 1.4.11rc1 created.
4235	- remove warning about signed/unsigned from flex (other flex version).
4236	- updated aclocal.m4 and libtool to match.
4237	- tag 1.4.11rc2 created.
4238
423916 June 2011: Wouter
4240	- log-queries: yesno option, default is no, prints querylog.
4241	- version is 1.4.11.
4242
424314 June 2011: Wouter
4244	- Use -flto compiler flag for link time optimization, if supported.
4245	- iana portlist updated.
4246
424712 June 2011: Wouter
4248	- IPv6 service address for d.root-servers.net (2001:500:2D::D).
4249
425010 June 2011: Wouter
4251	- unbound-control has version number in the header,
4252	  UBCT[version]_space_ is the header sent by the client now.
4253	- Unbound control port number is registered with IANA:
4254	  ub-dns-control  8953/tcp    unbound dns nameserver control
4255	  This is the new default for the control-port config setting.
4256	- statistics-interval prints the number of jostled queries to log.
4257
425830 May 2011: Wouter
4259	- Fix Makefile for U in environment, since wrong U is more common than
4260	  deansification necessity.
4261	- iana portlist updated.
4262	- updated ldns tarball to 1.6.10rc2 snapshot of today.
4263
426425 May 2011: Wouter
4265	- Fix assertion failure when unbound generates an empty error reply
4266	  in response to a query, CVE-2011-1922 VU#531342.
4267	- This fix is in tag 1.4.10.
4268	- defense in depth against the above bug, an error is printed to log
4269	  instead of an assertion failure.
4270
427110 May 2011: Wouter
4272	- bug#386: --enable-allsymbols option links all binaries to libunbound
4273	  and reduces install size significantly.
4274	- feature, ignore-cd-flag: yesno to provide dnssec to legacy servers.
4275	- iana portlist updated.
4276	- Fix TTL of SOA so negative TTL is separately cached from normal TTL.
4277
427814 April 2011: Wouter
4279	- configure created with newer autoconf 2.66.
4280
428112 April 2011: Wouter
4282	- bug#378: Fix that configure checks for ldns_get_random presence.
4283
42848 April 2011: Wouter
4285	- iana portlist updated.
4286	- queries with CD flag set cause DNSSEC validation, but the answer is
4287	  not withheld if it is bogus.  Thus, unbound will retry if it is bad
4288	  and curb the TTL if it is bad, thus protecting the cache for use by
4289	  downstream validators.
4290	- val-override-date: -1 ignores dates entirely, for NTP usage.
4291
429229 March 2011: Wouter
4293	- harden-below-nxdomain: changed so that it activates when the
4294	  cached nxdomain is dnssec secure.  This avoids backwards
4295	  incompatibility because those old servers do not have dnssec.
4296
429724 March 2011: Wouter
4298	- iana portlist updated.
4299	- release 1.4.9.
4300	- trunk is 1.5.0
4301
430217 March 2011: Wouter
4303	- bug#370: new unbound.spec for CentOS 5.x from Harold Jones.
4304	  Applied but did not do the --disable-gost.
4305
430610 March 2011: Wouter
4307	- tag 1.4.9 release candidate 1 created.
4308
43093 March 2011: Wouter
4310	- updated ldns to today.
4311
43121 March 2011: Wouter
4313	- Fix no ADflag for NXDOMAIN in NSEC3 optout. And wildcard in optout.
4314	- give config parse error for multiple names on a stub or forward zone.
4315	- updated ldns tarball to 1.6.9(todays snapshot).
4316
431724 February 2011: Wouter
4318	- bug #361: Fix, time.elapsed variable not reset with stats_noreset.
4319
432023 February 2011: Wouter
4321	- iana portlist updated.
4322	- common.sh to version 3.
4323
432418 February 2011: Wouter
4325	- common.sh in testdata updated to version 2.
4326
432715 February 2011: Wouter
4328	- Added explicit note on unbound-anchor usage:
4329	  Please note usage of unbound-anchor root anchor is at your own risk
4330	  and under the terms of our LICENSE (see that file in the source).
4331
433211 February 2011: Wouter
4333	- iana portlist updated.
4334	- tpkg updated with common.sh for common functionality.
4335
43367 February 2011: Wouter
4337	- Added regression test for addition of a .net DS to the root, and
4338	  cache effects with different TTL for glue and DNSKEY.
4339	- iana portlist updated.
4340
434128 January 2011: Wouter
4342	- Fix remove private address does not throw away entire response.
4343
434424 January 2011: Wouter
4345	- release 1.4.8
4346
434719 January 2011: Wouter
4348	- fix bug#349: no -L/usr for ldns.
4349
435018 January 2011: Wouter
4351	- ldns 1.6.8 tarball included.
4352	- release 1.4.8rc1.
4353
435417 January 2011: Wouter
4355	- add get and set option for harden-below-nxdomain feature.
4356	- iana portlist updated.
4357
435814 January 2011: Wouter
4359	- Fix so a changed NS RRset does not get moved name stuck on old
4360	  server, for type NS the TTL is not increased.
4361
436213 January 2011: Wouter
4363	- Fix prefetch so it does not get stuck on old server for moved names.
4364
436512 January 2011: Wouter
4366	- iana portlist updated.
4367
436811 January 2011: Wouter
4369	- Fix insecure CNAME sequence marked as secure, reported by Bert
4370	  Hubert.
4371
437210 January 2011: Wouter
4373	- faster lruhash get_mem routine.
4374
43754 January 2011: Wouter
4376	- bug#346: remove ITAR scripts from contrib, the service is discontinued, use the root.
4377	- iana portlist updated.
4378
437923 December 2010: Wouter
4380	- Fix in infra cache that could cause rto larger than TOP_TIMEOUT kept.
4381
438221 December 2010: Wouter
4383	- algorithm compromise protection using the algorithms signalled in
4384	  the DS record.  Also, trust anchors, DLV, and RFC5011 receive this,
4385	  and thus, if you have multiple algorithms in your trust-anchor-file
4386	  then it will now behave different than before.  Also, 5011 rollover
4387	  for algorithms needs to be double-signature until the old algorithm
4388	  is revoked.
4389	  It is not an option, because I see no use to turn the security off.
4390	- iana portlist updated.
4391
439217 December 2010: Wouter
4393	- squelch 'tcp connect: bla' in logfile, (set verbosity 2 to see them).
4394	- fix validation in this case: CNAME to nodata for co-hosted opt-in
4395	  NSEC3 insecure delegation, was bogus, fixed to be insecure.
4396
439716 December 2010: Wouter
4398	- Fix our 'BDS' license (typo reported by Xavier Belanger).
4399
440010 December 2010: Wouter
4401	- iana portlist updated.
4402	- review changes for unbound-anchor.
4403
44042 December 2010: Wouter
4405	- feature typetransparent localzone, does not block other RR types.
4406
44071 December 2010: Wouter
4408	- Fix bug#338: print address when socket creation fails.
4409
441030 November 2010: Wouter
4411	- Fix storage of EDNS failures in the infra cache.
4412	- iana portlist updated.
4413
441418 November 2010: Wouter
4415	- harden-below-nxdomain option, default off (because very old
4416	  software may be incompatible).  We could enable it by default in
4417	  the future.
4418
441917 November 2010: Wouter
4420	- implement draft-vixie-dnsext-resimprove-00, we stop on NXDOMAIN.
4421	- make test output nicer.
4422
442315 November 2010: Wouter
4424	- silence 'tcp connect: broken pipe' and 'net down' at low verbosity.
4425	- iana portlist updated.
4426	- so-sndbuf option for very busy servers, a bit like so-rcvbuf.
4427
44289 November 2010: Wouter
4429	- unbound-anchor compiles with openssl 0.9.7.
4430
44318 November 2010: Wouter
4432	- release tag 1.4.7.
4433	- trunk is version 1.4.8.
4434	- Be lenient and accept imgw.pl malformed packet (like BIND).
4435
44365 November 2010: Wouter
4437	- do not synthesize a CNAME message from cache for qtype DS.
4438
44394 November 2010: Wouter
4440	- Use central entropy to seed threads.
4441
44423 November 2010: Wouter
4443	- Change the rtt used to probe EDNS-timeout hosts to 1000 msec.
4444
44452 November 2010: Wouter
4446	- tag 1.4.7rc1.
4447	- code review.
4448
44491 November 2010: Wouter
4450	- GOST code enabled by default (RFC 5933).
4451
445227 October 2010: Wouter
4453	- Fix uninit value in dump_infra print.
4454	- Fix validation failure for parent and child on same server with an
4455	  insecure childzone and a CNAME from parent to child.
4456	- Configure detects libev-4.00.
4457
445826 October 2010: Wouter
4459	- dump_infra and flush_infra commands for unbound-control.
4460	- no timeout backoff if meanwhile a query succeeded.
4461	- Change of timeout code.  No more lost and backoff in blockage.
4462	  At 12sec timeout (and at least 2x lost before) one probe per IP
4463	  is allowed only.  At 120sec, the IP is blocked.  After 15min, a
4464	  120sec entry has a single retry packet.
4465
446625 October 2010: Wouter
4467	- Configure errors if ldns is not found.
4468
446922 October 2010: Wouter
4470	- Windows 7 fix for the installer.
4471
447221 October 2010: Wouter
4473	- Fix bug where fallback_tcp causes wrong roundtrip and edns
4474	  observation to be noted in cache.  Fix bug where EDNSprobe halted
4475	  exponential backoff if EDNS status unknown.
4476	- new unresponsive host method, exponentially increasing block backoff.
4477	- iana portlist updated.
4478
447920 October 2010: Wouter
4480	- interface automatic works for some people with ip6 disabled.
4481	  Therefore the error check is removed, so they can use the option.
4482
448319 October 2010: Wouter
4484	- Fix for request list growth, if a server has long timeout but the
4485	  lost counter is low, then its effective rtt is the one without
4486	  exponential backoff applied.  Because the backoff is not working.
4487	  The lost counter can then increase and the server is blacklisted,
4488	  or the lost counter does not increase and the server is working
4489	  for some queries.
4490
449118 October 2010: Wouter
4492	- iana portlist updated.
4493
449413 October 2010: Wouter
4495	- Fix TCP so it uses a random outgoing-interface.
4496	- unbound-anchor handles ADDPEND keystate.
4497
449811 October 2010: Wouter
4499	- Fix bug when DLV below a trust-anchor that uses NSEC3 optout where
4500	  the zone has a secure delegation hosted on the same server did not
4501	  verify as secure (it was insecure by mistake).
4502	- iana portlist updated.
4503	- ldns tarball updated (for reading cachedumps with bad RR data).
4504
45051 October 2010: Wouter
4506	- test for unbound-anchor. fix for reading certs.
4507	- Fix alloc_reg_release for longer uptime in out of memory conditions.
4508
450928 September 2010: Wouter
4510	- unbound-anchor working, it creates or updates a root.key file.
4511	  Use it before you start the validator (e.g. at system boot time).
4512
451327 September 2010: Wouter
4514	- iana portlist updated.
4515
451624 September 2010: Wouter
4517	- bug#329: in example.conf show correct ipv4 link-local 169.254/16.
4518
451923 September 2010: Wouter
4520	- unbound-anchor app, unbound requires libexpat (xml parser library).
4521
452222 September 2010: Wouter
4523	- compliance with draft-ietf-dnsop-default-local-zones-14, removed
4524	  reverse ipv6 orchid prefix from builtin list.
4525	- iana portlist updated.
4526
452717 September 2010: Wouter
4528	- DLV has downgrade protection again, because the RFC says so.
4529	- iana portlist updated.
4530
453116 September 2010: Wouter
4532	- Algorithm rollover operational reality intrudes, for trust-anchor,
4533	  5011-store, and DLV-anchor if one key matches it's good enough.
4534	- iana portlist updated.
4535	- Fix reported validation error in out of memory condition.
4536
453715 September 2010: Wouter
4538	- Abide RFC5155 section 9.2: no AD flag for replies with NSEC3 optout.
4539
454014 September 2010: Wouter
4541	- increased mesh-max-activation from 1000 to 3000 for crazy domains
4542	  like _tcp.slb.com with 262 servers.
4543	- iana portlist updated.
4544
454513 September 2010: Wouter
4546	- bug#327: Fix for cannot access stub zones until the root is primed.
4547
45489 September 2010: Wouter
4549	- unresponsive servers are not completely blacklisted (because of
4550	  firewalls), but also not probed all the time (because of the request
4551	  list size it generates).  The probe rate is 1%.
4552	- iana portlist updated.
4553
455420 August 2010: Wouter
4555	- openbsd-lint fixes: acl_list_get_mem used if debug-alloc enabled.
4556	  iterator get_mem includes priv_get_mem.  delegpt nodup removed.
4557	  listen_pushback, query_info_allocqname, write_socket, send_packet,
4558	  comm_point_set_cb_arg and listen_resume removed.
4559
456019 August 2010: Wouter
4561	- Fix bug#321: resolution of rs.ripe.net artifacts with 0x20.
4562	  Delegpt structures checked for duplicates always.
4563	  No more nameserver lookups generated when depth is full anyway.
4564	- example.conf notes how to do DNSSEC validation and track the root.
4565	- iana portlist updated.
4566
456718 August 2010: Wouter
4568	- Fix bug#322: configure does not respect CFLAGS on Solaris.
4569	  Pass CFLAGS="-xO4 -xtarget=generic" on the configure command line
4570	  if use sun-cc, but some systems need different flags.
4571
457216 August 2010: Wouter
4573	- Fix acx_nlnetlabs.m4 configure output for autoconf-2.66 AS_TR_CPP
4574	  changes, uses m4_bpatsubst now.
4575	- make test (or make check) should be more portable and run the unit
4576	  test and testbound scripts. (make longtest has special requirements).
4577
457813 August 2010: Wouter
4579	- More pleasant remote control command parsing.
4580	- documentation added for return values reported by doxygen 1.7.1.
4581	- iana portlist updated.
4582
45839 August 2010: Wouter
4584	- Fix name of rrset printed that failed validation.
4585
45865 August 2010: Wouter
4587	- Return NXDOMAIN after chain of CNAMEs ends at name-not-found.
4588
45894 August 2010: Wouter
4590	- Fix validation in case a trust anchor enters into a zone with
4591	  unsupported algorithms.
4592
45933 August 2010: Wouter
4594	- updated ldns tarball with bugfixes.
4595	- release tag 1.4.6.
4596	- trunk becomes 1.4.7 develop.
4597	- iana portlist updated.
4598
459922 July 2010: Wouter
4600	- more error details on failed remote control connection.
4601
460215 July 2010: Wouter
4603	- rlimit adjustments for select and ulimit can happen at the same time.
4604
460514 July 2010: Wouter
4606	- Donation text added to README.
4607	- Fix integer underflow in prefetch ttl creation from cache.  This
4608	  fixes a potential negative prefetch ttl.
4609
461012 July 2010: Wouter
4611	- Changed the defaults for num-queries-per-thread/outgoing-range.
4612	  For builtin-select: 512/960, for libevent 1024/4096 and for
4613	  windows 24/48 (because of win api).  This makes the ratio this way
4614	  to improve resilience under heavy load.  For high performance, use
4615	  libevent and possibly higher numbers.
4616
461710 July 2010: Wouter
4618	- GOST enabled if SSL is recent and ldns has GOST enabled too.
4619	- ldns tarball updated.
4620
46219 July 2010: Wouter
4622	- iana portlist updated.
4623	- Fix validation of qtype DNSKEY when a key-cache entry exists but
4624	  no rr-cache entry is used (it expired or prefetch), it then goes
4625	  back up to the DS or trust-anchor to validate the DNSKEY.
4626
46277 July 2010: Wouter
4628	- Neat function prototypes, unshadowed local declarations.
4629
46306 July 2010: Wouter
4631	- failure to chown the pidfile is not fatal any more.
4632	- testbound uses UTC timezone.
4633	- ldns tarball updated (ports and works on Minix 3.1.7).  On Minix, add
4634	  /usr/gnu/bin to PATH, use ./configure AR=/usr/gnu/bin/gar and gmake.
4635
46365 July 2010: Wouter
4637	- log if a server is skipped because it is on the donotquery list,
4638	  at verbosity 4, to enable diagnosis why no queries to 127.0.0.1.
4639	- added feature to print configure date, target and options with -h.
4640	- added feature to print event backend system details with -h.
4641	- wdiff is not actually required by make test, updated requirements.
4642
46431 July 2010: Wouter
4644	- Fix RFC4035 compliance with 2.2 statement that the DNSKEY at apex
4645	  must be signed with all algorithms from the DS rrset at the parent.
4646	  This is now checked and becomes bogus if not.
4647
464828 June 2010: Wouter
4649	- Fix jostle list bug found by Vince (luoce@cnnic), it caused the qps
4650	  in overload situations to be about 5 qps for the class of shortly
4651	  serviced queries.
4652	  The capacity of the resolver is then about (numqueriesperthread / 2)
4653	  / (average time for such long queries) qps for long queries.
4654	  And about (numqueriesperthread / 2)/(jostletimeout in whole seconds)
4655	  qps for short queries, per thread.
4656	- Fix the max number of reply-address count to be applied for duplicate
4657	  queries, and not for new query list entries.  This raises the memory
4658	  usage to a max of (16+1)*numqueriesperthread reply addresses.
4659
466025 June 2010: Wouter
4661	- Fix handling of corner case reply from lame server, follows rfc2308.
4662	  It could lead to a nodata reply getting into the cache if the search
4663	  for a non-lame server turned up other misconfigured servers.
4664	- unbound.h has extern "C" statement for easier include in c++.
4665
466623 June 2010: Wouter
4667	- iana portlist updated.
4668	- makedist upgraded cross compile openssl option, like this:
4669	  ./makedist.sh -s -wssl openssl-1.0.0a.tar.gz -w --enable-gost
4670
467122 June 2010: Wouter
4672	- Unbound reports libev or libevent correctly in logs in verbose mode.
4673	- Fix to unload gost dynamic library module for leak testing.
4674
467518 June 2010: Wouter
4676	- iana portlist updated.
4677
467817 June 2010: Wouter
4679	- Add AAAA to root hints for I.ROOT-SERVERS.NET.
4680
468116 June 2010: Wouter
4682	- Fix assertion failure reported by Kai Storbeck from XS4ALL, the
4683	  assertion was wrong.
4684	- updated ldns tarball.
4685
468615 June 2010: Wouter
4687	- tag 1.4.5 created.
4688	- trunk contains 1.4.6 in development.
4689	- Fix TCPreply on systems with no writev, if just 1 byte could be sent.
4690	- Fix to use one pointer less for iterator query state store_parent_NS.
4691	- makedist crosscompile to windows uses builtin ldns not host ldns.
4692	- Max referral count from 30 to 130, because 128 one character domains
4693	  is valid DNS.
4694	- added documentation for the histogram printout to syslog.
4695
469611 June 2010: Wouter
4697	- When retry to parent the retrycount is not wiped, so failed
4698	  nameservers are not tried again.
4699	- iana portlist updated.
4700
470110 June 2010: Wouter
4702	- Fix bug where a long loop could be entered, now cycle detection
4703	  has a loop-counter and maximum search amount.
4704
47054 June 2010: Wouter
4706	- iana portlist updated.
4707	- 1.4.5rc1 tag created.
4708
47093 June 2010: Wouter
4710	- ldns tarball updated, 1.6.5.
4711	- review comments, split dependency cycle tracking for parentside
4712	  last resort lookups for A and AAAA so there are more lookup options.
4713
47142 June 2010: Wouter
4715	- Fix compile warning if compiled without threads.
4716	- updated ldns-tarball with current ldns svn (pre 1.6.5).
4717	- GOST disabled-by-default, the algorithm number is allocated but the
4718	  RFC is still has to pass AUTH48 at the IETF.
4719
47201 June 2010: Wouter
4721	- Ignore Z flag in incoming messages too.
4722	- Fix storage of negative parent glue if that last resort fails.
4723	- libtoolize 2.2.6b, autoconf 2.65 applied to configure.
4724	- new splint flags for newer splint install.
4725
472631 May 2010: Wouter
4727	- Fix AD flag handling, it could in some cases mistakenly copy the AD
4728	  flag from upstream servers.
4729	- alloc_special_obtain out of memory is not a fatal error any more,
4730	  enabling unbound to continue longer in out of memory conditions.
4731	- parentside names are dispreferred but not said to be dnssec-lame.
4732	- parentside check for cached newname glue.
4733	- fix parentside and querytargets modulestate, for dump_requestlist.
4734	- unbound-control-setup makes keys -rw-r--- so not all users permitted.
4735	- fix parentside from cache to be marked dispreferred for bad names.
4736
473728 May 2010: Wouter
4738	- iana portlist updated.
4739	- parent-child disagreement approach altered.  Older fixes are
4740	  removed in place of a more exhaustive search for misconfigured data
4741	  available via the parent of a delegation.
4742	  This is designed to be throttled by cache entries, with TTL from the
4743	  parent if possible.  Additionally the loop-counter is used.
4744	  It also tests for NS RRset differences between parent and child.
4745	  The fetch of misconfigured data should be more reliable and thorough.
4746	  It should work reliably even with no or only partial data in cache.
4747	  Data received from the child (as always) is deemed more
4748	  authoritative than information received from the delegation parent.
4749	  The search for misconfigured data is not performed normally.
4750
475126 May 2010: Wouter
4752	- Contribution from Migiel de Vos (Surfnet): nagios patch for
4753	  unbound-host, in contrib/ (in the source tarball).  Makes
4754	  unbound-host suitable for monitoring dnssec(-chain) status.
4755
475621 May 2010: Wouter
4757	- EDNS timeout code will not fire if EDNS status already known.
4758	- EDNS failure not stored if EDNS status known to work.
4759
476019 May 2010: Wouter
4761	- Fix resolution for domains like safesvc.com.cn.  If the iterator
4762	  can not recurse further and it finds the delegation in a state
4763	  where it would otherwise have rejected it outhand if so received
4764	  from a cache lookup, then it can try to ask higherup (with loop
4765	  protection).
4766	- Fix comments in iter_utils:dp_is_useless.
4767
476818 May 2010: Wouter
4769	- Fix various compiler warnings from the clang llvm compiler.
4770	- iana portlist updated.
4771
47726 May 2010: Wouter
4773	- Fix bug#308: spelling error in variable name in parser and lexer.
4774
47754 May 2010: Wouter
4776	- Fix dnssec-missing detection that was turned off by server selection.
4777	- Conforms to draft-ietf-dnsop-default-local-zones-13.  Added default
4778	  reverse lookup blocks for IPv4 test nets 100.51.198.in-addr.arpa,
4779	  113.0.203.in-addr.arpa and Orchid prefix 0.1.1.0.0.2.ip6.arpa.
4780
478129 April 2010: Wouter
4782	- Fix for dnssec lameness detection to use the key cache.
4783	- infra cache entries that are expired are wiped clean.  Previously
4784	  it was possible to not expire host data (if accessed often).
4785
478628 April 2010: Wouter
4787	- ldns tarball updated and GOST support is detected and then enabled.
4788	- iana portlist updated.
4789	- Fix detection of gost support in ldns (reported by Chris Smith).
4790
479127 April 2010: Wouter
4792	- unbound-control get_option domain-insecure shows config file items.
4793	- fix retry sequence if prime hints are recursion-lame.
4794	- autotrust anchor file can be initialized with a ZSK key as well.
4795	- harden-referral-path does not result in failures due to max-depth.
4796	  You can increase the max-depth by adding numbers (' 0') after the
4797	  target-fetch-policy, this increases the depth to which is checked.
4798
479926 April 2010: Wouter
4800	- Compile fix using Sun Studio 12 compiler on Solaris 5.9, use
4801	  CPPFLAGS during configure process.
4802	- if libev is installed on the base system (not libevent), detect
4803	  it from the event.h header file and link with -lev.
4804	- configlexer.lex gets config.h, and configyyrename.h added by make,
4805	  no more double include.
4806	- More strict scrubber (Thanks to George Barwood for the idea):
4807	  NS set must be pertinent to the query (qname subdomain nsname).
4808	- Fix bug#307: In 0x20 backoff fix fallback so the number of
4809	  outstanding queries does not become -1 and block the request.
4810	  Fixed handling of recursion-lame in combination with 0x20 fallback.
4811	  Fix so RRsets are compared canonicalized and sorted if the immediate
4812	  comparison fails, this makes it work around round-robin sites.
4813
481423 April 2010: Wouter
4815	- Squelch log message: sendto failed permission denied for
4816	  255.255.255.255, it is visible in VERB_DETAIL (verbosity 2).
4817	- Fix to fetch data as last resort more tenaciously.  When cycle
4818	  targets cause the server selection to believe there are more options
4819	  when they really are not there, the server selection is reinitiated.
4820	- Fix fetch from blacklisted dnssec lame servers as last resort.  The
4821	  server's IP address is then given in validator errors as well.
4822	- Fix local-zone type redirect that did not use the query name for
4823	  the answer rrset.
4824
482522 April 2010: Wouter
4826	- tag 1.4.4.
4827	- trunk contains 1.4.5 in development.
4828	- Fix validation failure for qtype ANY caused by a RRSIG parse failure.
4829	  The validator error message was 'no signatures from ...'.
4830
483116 April 2010: Wouter
4832	- more portability defines for CMSG_SPACE, CMSG_ALIGN, CMSG_LEN.
4833	- tag 1.4.4rc1.
4834
483515 April 2010: Wouter
4836	- ECC-GOST algorithm number 12 that is assigned by IANA.  New test
4837	  example key and signatures for GOST.  GOST requires openssl-1.0.0.
4838	  GOST is still disabled by default.
4839
48409 April 2010: Wouter
4841	- Fix bug#305: pkt_dname_tolower could read beyond end of buffer or
4842	  get into an endless loop, if 0x20 was enabled, and buffers are small
4843	  or particular broken packets are received.
4844	- Fix chain of trust with CNAME at an intermediate step, for the DS
4845	  processing proof.
4846
48478 April 2010: Wouter
4848	- Fix validation of queries with wildcard names (*.example).
4849
48506 April 2010: Wouter
4851	- Fix EDNS probe for .de DNSSEC testbed failure, where the infra
4852	  cache timeout coincided with a server update, the current EDNS
4853	  backoff is less sensitive, and does not cache the backoff unless
4854	  the backoff actually works and the domain is not expecting DNSSEC.
4855	- GOST support with correct algorithm numbers.
4856
48571 April 2010: Wouter
4858	- iana portlist updated.
4859
486024 March 2010: Wouter
4861	- unbound control flushed items are not counted when flushed again.
4862
486323 March 2010: Wouter
4864	- iana portlist updated.
4865
486622 March 2010: Wouter
4867	- unbound-host disables use-syslog from config file so that the
4868	  config file for the main server can be used more easily.
4869	- fix bug#301: unbound-checkconf could not parse interface
4870	  '0.0.0.0@5353', even though unbound itself worked fine.
4871
487219 March 2010: Wouter
4873	- fix fwd_ancil test to pass if the socket options are not supported.
4874
487518 March 2010: Wouter
4876	- Fixed random numbers for port, interface and server selection.
4877	  Removed very small bias.
4878	- Refer to the listing in unbound-control man page in the extended
4879	  statistics entry in the unbound.conf man page.
4880
488116 March 2010: Wouter
4882	- Fix interface-automatic for OpenBSD: msg.controllen was too small,
4883	  also assertions on ancillary data buffer.
4884	- check for IP_SENDSRCADDR for interface-automatic or IP_PKTINFO.
4885	- for NSEC3 check if signatures are cached.
4886
488715 March 2010: Wouter
4888	- unit test for util/regional.c.
4889
489012 March 2010: Wouter
4891	- Reordered configure checks so fork and -lnsl -lsocket checks are
4892	  earlier, and thus later checks benefit from and do not hinder them.
4893	- iana portlist updated.
4894	- ldns tarball updated.
4895	- Fix python use when multithreaded.
4896	- Fix solaris python compile.
4897	- Include less in config.h and include per code file for ldns, ssl.
4898
489911 March 2010: Wouter
4900	- another memory allocation option: --enable-alloc-nonregional.
4901	  exposes the regional allocations to other memory purifiers.
4902	- fix for memory alignment in struct sock_list allocation.
4903	- Fix for MacPorts ldns without ssl default, unbound checks if ldns
4904	  has dnssec functionality and uses the builtin if not.
4905	- Fix daemonize on Solaris 10, it did not detach from terminal.
4906	- tag 1.4.3 created.
4907	- trunk is 1.4.4 in development.
4908	- spelling fix in validation error involving cnames.
4909
491010 March 2010: Wouter
4911	- --enable-alloc-lite works with test set.
4912	- portability in the testset: printf format conversions, prototypes.
4913
49149 March 2010: Wouter
4915	- tag 1.4.2 created.
4916	- trunk is 1.4.3 in development.
4917	- --enable-alloc-lite debug option.
4918
49198 March 2010: Wouter
4920	- iana portlist updated.
4921
49224 March 2010: Wouter
4923	- Fix crash in control channel code.
4924
49253 March 2010: Wouter
4926	- better casts in pipe code, brackets placed wrongly.
4927	- iana portlist updated.
4928
49291 March 2010: Wouter
4930	- make install depends on make all.
4931	- Fix 5011 auto-trust-anchor-file initial read to skip RRSIGs.
4932	- --enable-checking: enables assertions but does not look nonproduction.
4933	- nicer VERB_DETAIL (verbosity 2, unbound-host -d) output, with
4934	  nxdomain and nodata distinguished.
4935	- ldns tarball updated.
4936	- --disable-rpath fixed for libtool not found errors.
4937	- new fedora specfile from Fedora13 in contrib from Paul Wouters.
4938
493926 February 2010: Wouter
4940	- Fixup prototype for lexer cleanup in daemon code.
4941	- unbound-control list_stubs, list_forwards, list_local_zones and
4942	  list_local_data.
4943
494424 February 2010: Wouter
4945	- Fix scrubber bug that potentially let NS records through.  Reported
4946	  by Amanda Constant.
4947	- Also delete potential poison references from additional.
4948	- Fix: no classification of a forwarder as lame, throw away instead.
4949
495023 February 2010: Wouter
4951	- libunbound ub_ctx_get_option() added.
4952	- unbound-control set_option and get_option commands.
4953	- iana portlist updated.
4954
495518 February 2010: Wouter
4956	- A little more strict DS scrubbing.
4957	- No more blacklisting of unresponsive servers, a 2 minute timeout
4958	  is backed off to.
4959	- RD flag not enabled for dnssec-blacklisted tries, unless necessary.
4960	- pickup ldns compile fix, libdl for libcrypto.
4961	- log 'tcp connect: connection timed out' only in high verbosity.
4962	- unbound-control log_reopen command.
4963	- moved get_option code from unbound-checkconf to util/config_file.c
4964
496517 February 2010: Wouter
4966	- Disregard DNSKEY from authority section for chain of trust.
4967	  DS records that are irrelevant to a referral scrubbed.  Anti-poison.
4968	- iana portlist updated.
4969
497016 February 2010: Wouter
4971	- Check for 'no space left on device' (or other errors) when
4972	  writing updated autotrust anchors and print errno to log.
4973
497415 February 2010: Wouter
4975	- Fixed the requery protection, the TTL was 0, it is now 900 seconds,
4976	  hardcoded.  We made the choice to send out more conservatively,
4977	  protecting against an aggregate effect more than protecting a
4978	  single user (from their own folly, perhaps in case of misconfig).
4979
498012 February 2010: Wouter
4981	- Re-query pattern changed on validation failure.  To protect troubled
4982	  authority servers, unbound caches a failure for the DNSKEY or DS
4983	  records for the entire zone, and only retries that 900 seconds later.
4984	  This implies that only a handful of packets are sent extra to the
4985	  authority if the zone fails.
4986
498711 February 2010: Wouter
4988	- ldns tarball update for long label length syntax error fix.
4989	- iana portlist updated.
4990
49919 February 2010: Wouter
4992	- Fixup in compat snprintf routine, %f 1.02 and %g support.
4993	- include math.h for testbound test compile portability.
4994
49952 February 2010: Wouter
4996	- Updated url of IANA itar, interim trust anchor repository, in script.
4997
49981 February 2010: Wouter
4999	- iana portlist updated.
5000	- configure test for memcmp portability.
5001
500227 January 2010: Wouter
5003	- removed warning on format string in validator error log statement.
5004	- iana portlist updated.
5005
500622 January 2010: Wouter
5007	- libtool finish the install of unbound python dynamic library.
5008
500921 January 2010: Wouter
5010	- acx_nlnetlabs.m4 synchronised with nsd's version.
5011
501220 January 2010: Wouter
5013	- Fixup lookup trouble for parent-child domains on the first query.
5014
501514 January 2010: Wouter
5016	- Fixup ldns detection to also check for header files.
5017
501813 January 2010: Wouter
5019	- prefetch-key option that performs DNSKEY queries earlier in the
5020	  validation process, and that could halve the latency on DNSSEC
5021	  queries.  It takes some extra processing (CPU, a cache is needed).
5022
502312 January 2010: Wouter
5024	- Fix unbound-checkconf for auto-trust-anchor-file present checks.
5025
50268 January 2010: Wouter
5027	- Fix for parent-child disagreement code which could have trouble
5028	  when (a) ipv6 was disabled and (b) the TTL for parent and child
5029	  were different.  There were two bugs, the parent-side information
5030	  is fixed to no longer block lookup of child side information and
5031	  the iterator is fixed to no longer attempt to get ipv6 when it is
5032	  not enabled and then give up in failure.
5033	- test and fixes to make prefetch actually store the answer in the
5034	  cache.  Considers some rrsets 'already expired' but does not allow
5035	  overwriting of rrsets considered more secure.
5036
50377 January 2010: Wouter
5038	- Fixup python documentation (thanks Leo Vandewoestijne).
5039	- Work on cache prefetch feature.
5040	- Stats for prefetch, in log print stats, unbound-control stats
5041	  and in unbound_munin plugin.
5042
50436 January 2010: Wouter
5044	- iana portlist updated.
5045	- bug#291: DNS wireformat max is 255. dname_valid allowed 256 length.
5046	- verbose output includes parent-side-address notion for lameness.
5047	- documented val-log-level: 2 setting in example.conf and man page.
5048	- change unbound-control-setup from 1024(sha1) to 1536(sha256).
5049
50501 January 2010: Wouter
5051	- iana portlist updated.
5052
505322 December 2009: Wouter
5054	- configure with newer libtool 2.2.6b.
5055
505617 December 2009: Wouter
5057	- review comments.
5058	- tag 1.4.1.
5059	- trunk to version 1.4.2.
5060
506115 December 2009: Wouter
5062	- Answer to qclass=ANY queries, with class IN contents.
5063	  Test that validation also works.
5064	- updated ldns snapshot tarball with latest fixes (parsing records).
5065
506611 December 2009: Wouter
5067	- on IPv4 UDP turn off DF flag.
5068
506910 December 2009: Wouter
5070	- requirements.txt updated with design choice explanations.
5071	- Reading fixes: fix to set unlame when child confirms parent glue,
5072	  and fix to avoid duplicate addresses in delegation point.
5073	- verify_rrsig routine checks expiration last.
5074
50759 December 2009: Wouter
5076	- Fix Bug#287(reopened): update of ldns tarball with fix for parse
5077	  errors generated for domain names like '.example.com'.
5078	- Fix SOA excluded from negative DS responses.  Reported by Hauke
5079	  Lampe.  The negative cache did not include proper SOA records for
5080	  negative qtype DS responses which makes BIND barf on it, such
5081	  responses are now only used internally.
5082	- Fix negative cache lookup of closestencloser check of DS type bit.
5083
50848 December 2009: Wouter
5085	- Fix for lookup of parent-child disagreement domains, where the
5086	  parent-side glue works but it does not provide proper NS, A or AAAA
5087	  for itself, fixing domains such as motorcaravanners.eu.
5088	- Feature: you can specify a port number in the interface: line, so
5089	  you can bind the same interface multiple times at different ports.
5090
50917 December 2009: Wouter
5092	- Bug#287: Fix segfault when unbound-control remove nonexistent local
5093	  data.  Added check to tests.
5094
50951 December 2009: Wouter
5096	- Fix crash with module-config "iterator".
5097	- Added unit test that has "iterator" module-config.
5098
509930 November 2009: Wouter
5100	- bug#284: fix parse of # without end-of-line at end-of-file.
5101
510226 November 2009: Wouter
5103	- updated ldns with release candidate for version 1.6.3.
5104	- tag for 1.4.0 release.
5105	- 1.4.1 version in trunk.
5106	- Fixup major libtool version to 2 because of why_bogus change.
5107	  It was 1:5:0 but should have been 2:0:0.
5108
510923 November 2009: Wouter
5110	- Patch from David Hubbard for libunbound manual page.
5111	- Fixup endless spinning in unbound-control stats reported by
5112	  Attila Nagy.  Probably caused by clock reversal.
5113
511420 November 2009: Wouter
5115	- contrib/split-itar.sh contributed by Tom Hendrikx.
5116
511719 November 2009: Wouter
5118	- better argument help for unbound-control.
5119	- iana portlist updated.
5120
512117 November 2009: Wouter
5122	- noted multiple entries for multiple domain names in example.conf.
5123	- iana portlist updated.
5124
512516 November 2009: Wouter
5126	- Fixed signer detection of CNAME responses without signatures.
5127	- Fix#282 libunbound memleak on error condition by Eric Sesterhenn.
5128	- Tests for CNAMEs to deeper trust anchors, secure and bogus.
5129	- svn tag 1.4.0rc1 made.
5130
513113 November 2009: Wouter
5132	- Fixed validation failure for CNAME to optout NSEC3 nodata answer.
5133	- unbound-host does not fail on type ANY.
5134	- Fixed wireparse failure to put RRSIGs together with data in some
5135	  long ANY mix cases, which fixes validation failures.
5136
513712 November 2009: Wouter
5138	- iana portlist updated.
5139	- fix manpage errors reported by debian lintian.
5140	- review comments.
5141	- fixup very long vallog2 level error strings.
5142
514311 November 2009: Wouter
5144	- ldns tarball updated (to 1.6.2).
5145	- review comments.
5146
514710 November 2009: Wouter
5148	- Thanks to Surfnet found bug in new dnssec-retry code that failed
5149	  to combine well when combined with DLV and a particular failure.
5150	- Fixed unbound-control -h output about argument optionality.
5151	- review comments.
5152
51535 November 2009: Wouter
5154	- lint fixes and portability tests.
5155	- better error text for multiple domain keys in one autotrust file.
5156
51572 November 2009: Wouter
5158	- Fix bug where autotrust does not work when started with a DS.
5159	- Updated GOST unit tests for unofficial algorithm number 249
5160	  and DNSKEY-format changes in draft version -01.
5161
516229 October 2009: Wouter
5163	- iana portlist updated.
5164	- edns-buffer-size option, default 4096.
5165	- fixed do-udp: no.
5166
516728 October 2009: Wouter
5168	- removed abort on prealloc failure, error still printed but softfail.
5169	- iana portlist updated.
5170	- RFC 5702: RSASHA256 and RSASHA512 support enabled by default.
5171	- ldns tarball updated (which also enables rsasha256 support).
5172
517327 October 2009: Wouter
5174	- iana portlist updated.
5175
51768 October 2009: Wouter
5177	- please doxygen
5178	- add val-log-level print to corner case (nameserver.epost.bg).
5179	- more detail to errors from insecure delegation checks.
5180	- Fix double time subtraction in negative cache reported by
5181	  Amanda Constant and Hugh Mahon.
5182	- Made new validator error string available from libunbound for
5183	  applications.  It is in result->why_bogus, a zero-terminated string.
5184	  unbound-host prints it by default if a result is bogus.
5185	  Also the errinf is public in module_qstate (for other modules).
5186
51877 October 2009: Wouter
5188	- retry for validation failure in DS and prime results. Less mem use.
5189	  unit test.  Provisioning in other tests for requeries.
5190	- retry for validation failure in DNSKEY in middle of chain of trust.
5191	  unit test.
5192	- retry for empty non terminals in chain of trust and unit test.
5193	- Fixed security bug where the signatures for NSEC3 records were not
5194	  checked when checking for absence of DS records.  This could have
5195	  enabled the substitution of an insecure delegation.
5196	- moved version number to 1.4.0 because of 1.3.4 release with only
5197	  the NSEC3 patch from the entry above.
5198	- val-log-level: 2 shows extended error information for validation
5199	  failures, but still one (longish) line per failure.  For example:
5200	  validation failure <example.com. DNSKEY IN>: signature expired from
5201	  192.0.2.4 for trust anchor example.com. while building chain of trust
5202	  validation failure <www.example.com. A IN>: no signatures from
5203	  192.0.2.6 for key example.com. while building chain of trust
5204
52056 October 2009: Wouter
5206	- Test set updated to provide additional ns lookup result.
5207	  The retry would attempt to fetch the data from other nameservers
5208	  for bogus data, and this needed to be provisioned in the tests.
5209
52105 October 2009: Wouter
5211	- first validation failure retry code.  Retries for data failures.
5212	  And unit test.
5213
52142 October 2009: Wouter
5215	- improve 5011 modularization.
5216	- fix unbound-host so -d can be given before -C.
5217	- iana portlist updated.
5218
521928 September 2009: Wouter
5220	- autotrust-anchor-file can read multiline input and $ORIGIN.
5221	- prevent integer overflow in holddown calculation. review fixes.
5222	- fixed race condition in trust point revocation. review fix.
5223	- review fixes to comments, removed unused code.
5224
522525 September 2009: Wouter
5226	- so-rcvbuf: 4m option added.  Set this on large busy servers to not
5227	  drop the occasional packet in spikes due to full socket buffers.
5228	  netstat -su keeps a counter of UDP dropped due to full buffers.
5229	- review of validator/autotrust.c, small fixes and comments.
5230
523123 September 2009: Wouter
5232	- 5011 query failed counts verification failures, not lookup failures.
5233	- 5011 probe failure handling fixup.
5234	- test unbound reading of original autotrust data.
5235	  The metadata per-key, such as key state (PENDING, MISSING, VALID) is
5236	  picked up, otherwise performs initial probe like usual.
5237
523822 September 2009: Wouter
5239	- autotrust test with algorithm rollover, new ordering of checks
5240	  assists in orderly rollover.
5241	- autotrust test with algorithm rollover to unknown algorithm.
5242	  checks if new keys are supported before adding them.
5243	- autotrust test with trust point revocation, becomes unsigned.
5244	- fix DNSSEC-missing-signature detection for minimal responses
5245	  for qtype DNSKEY (assumes DNSKEY occurs at zone apex).
5246
524718 September 2009: Wouter
5248	- autotrust tests, fix trustpoint timer deletion code.
5249	  fix count of valid anchors during missing remove.
5250	- autotrust: pick up REVOKE even if not signed with known other keys.
5251
525217 September 2009: Wouter
5253	- fix compile of unbound-host when --enable-alloc-checks.
5254	- Fix lookup problem reported by Koh-ichi Ito and Jaap Akkerhuis.
5255	- Manual page fixes reported by Tony Finch.
5256
525716 September 2009: Wouter
5258	- Fix memory leak reported by Tao Ma.
5259	- Fix memstats test tool for log-time-ascii log format.
5260
526115 September 2009: Wouter
5262	- iana portlist updated.
5263
526410 September 2009: Wouter
5265	- increased MAXSYSLOGLEN so .bg key can be printed in debug output.
5266	- use linebuffering for log-file: output, this can be significantly
5267	  faster than the previous fflush method and enable some class of
5268	  resolvers to use high verbosity (for short periods).
5269	  Not on windows, because line buffering does not work there.
5270
52719 September 2009: Wouter
5272	- Fix bug where DNSSEC-bogus messages were marked with too high TTL.
5273	  The RRsets would still expire at the normal time, but this would
5274	  keep messages bogus in the cache for too long.
5275	- regression test for that bug.
5276	- documented that load_cache is meant for debugging.
5277
52788 September 2009: Wouter
5279	- fixup printing errors when load_cache, they were printed to the
5280	  SSL connection which broke, now to the log.
5281	- new ldns - with fixed parse of large SOA values.
5282
52837 September 2009: Wouter
5284	- autotrust testbound scenarios.
5285	- autotrust fix that failure count is written to file.
5286	- autotrust fix that keys may become valid after add holddown time
5287	  alone, before the probe returns.
5288
52894 September 2009: Wouter
5290	- Changes to make unbound work with libevent-2.0.3 alpha. (in
5291	  configure detection due to new ssl dependency in libevent)
5292	- do not call sphinx for documentation when python is disabled.
5293	- remove EV_PERSIST from libevent timeout code to make the code
5294	  compatible with the libevent-2.0.  Works with older libevent too.
5295	- fix memory leak in python code.
5296
52973 September 2009: Wouter
5298	- Got a patch from Luca Bruno for libunbound support on windows to
5299	  pick up the system resolvconf nameservers and hosts there.
5300	- included ldns updated (enum warning fixed).
5301	- makefile fix for parallel makes.
5302	- Patch from Zdenek Vasicek and Attila Nagy for using the source IP
5303	  from python scripts.  See pythonmod/examples/resip.py.
5304	- doxygen comment fixes.
5305
53062 September 2009: Wouter
5307	- TRAFFIC keyword for testbound. Simplifies test generation.
5308	  ${range lower val upper} to check probe timeout values.
5309	- test with 5011-prepublish rollover and revocation.
5310	- fix revocation of RR for autotrust, stray exclamation mark.
5311
53121 September 2009: Wouter
5313	- testbound variable arithmetic.
5314	- autotrust probe time is randomised.
5315	- autotrust: the probe is active and does not fetch from cache.
5316
531731 August 2009: Wouter
5318	- testbound variable processing.
5319
532028 August 2009: Wouter
5321	- fixup unbound-control lookup to print forward and stub servers.
5322
532327 August 2009: Wouter
5324	- autotrust: mesh answer callback is empty.
5325
532626 August 2009: Wouter
5327	- autotrust probing.
5328	- iana portlist updated.
5329
533025 August 2009: Wouter
5331	- fixup memleak in trust anchor unsupported algorithm check.
5332	- iana portlist updated.
5333	- autotrust options: add-holddown, del-holddown, keep-missing.
5334	- autotrust store revoked status of trust points.
5335	- ctime_r compat definition.
5336	- detect yylex_destroy() in configure.
5337	- detect SSL_get_compression_methods declaration in configure.
5338	- fixup DS lookup at anchor point with unsigned parent.
5339	- fixup DLV lookup for DS queries to unsigned domains.
5340
534124 August 2009: Wouter
5342	- cleaner memory allocation on exit. autotrust test routines.
5343	- free all memory on program exit, fix for ssl and flex.
5344
534521 August 2009: Wouter
5346	- autotrust: debug routines. Read,write and conversions work.
5347
534820 August 2009: Wouter
5349	- autotrust: save and read trustpoint variables.
5350
535119 August 2009: Wouter
5352	- autotrust: state table updates.
5353	- iana portlist updated.
5354
535517 August 2009: Wouter
5356	- autotrust: process events.
5357
535817 August 2009: Wouter
5359	- Fix so that servers are only blacklisted if they fail to reply
5360	  to 16 queries in a row and the timeout gets above 2 minutes.
5361	- autotrust work, split up DS verification of DNSKEYs.
5362
536314 August 2009: Wouter
5364	- unbound-control lookup prints out infra cache information, like RTT.
5365	- Fix bug in DLV lookup reported by Amanda from Secure64.
5366	  It could sometimes wrongly classify a domain as unsigned, which
5367	  does not give the AD bit on replies.
5368
536913 August 2009: Wouter
5370	- autotrust read anchor files. locked trust anchors.
5371
537212 August 2009: Wouter
5373	- autotrust import work.
5374
537511 August 2009: Wouter
5376	- Check for openssl compatible with gost if enabled.
5377	- updated unit test for GOST=211 code.
5378	  Nicer naming of test files.
5379	- iana portlist updated.
5380
53817 August 2009: Wouter
5382	- call OPENSSL_config() in unbound and unit test so that the
5383	  operator can use openssl.cnf for configuration options.
5384	- removed small memory leak from config file reader.
5385
53866 August 2009: Wouter
5387	- configure --enable-gost for GOST support, experimental
5388	  implementation of draft-dolmatov-dnsext-dnssec-gost-01.
5389	- iana portlist updated.
5390	- ldns tarball updated (with GOST support).
5391
53925 August 2009: Wouter
5393	- trunk moved to 1.3.4.
5394
53954 August 2009: Wouter
5396	- Added test that the examples from draft rsasha256-14 verify.
5397	- iana portlist updated.
5398	- tagged 1.3.3
5399
54003 August 2009: Wouter
5401	- nicer warning when algorithm not supported, tells you to upgrade.
5402	- iana portlist updated.
5403
540427 July 2009: Wouter
5405	- Updated unbound-cacti contribution from Dmitriy Demidov, with
5406	  the queue statistics displayed in its own graph.
5407	- iana portlist updated.
5408
540922 July 2009: Wouter
5410	- Fix bug found by Michael Tokarev where unbound would try to
5411	  prime the root servers even though forwarders are configured for
5412	  the root.
5413	- tagged 1.3.3rc1
5414
541521 July 2009: Wouter
5416	- Fix server selection, so that it waits for open target queries when
5417	  faced with lameness.
5418
541920 July 2009: Wouter
5420	- Ignore transient sendto errors, no route to host, and host, net down.
5421	- contrib/update-anchor.sh has -r option for root-hints.
5422	- feature val-log-level: 1 prints validation failures so you can
5423	  keep track of them during dnssec deployment.
5424
542516 July 2009: Wouter
5426	- fix replacement malloc code.  Used in crosscompile.
5427	- makedist -w creates crosscompiled setup.exe on fedora11.
5428
542915 July 2009: Wouter
5430	- dependencies for compat items, for crosscompile.
5431	- mingw32 crosscompile changes, dependencies and zipfile creation.
5432	  and with System.dll from the windows NSIS you can make setup.exe.
5433	- package libgcc_s_sjlj exception handler for NSISdl.dll.
5434
543514 July 2009: Wouter
5436	- updated ldns tarball for solaris x64 compile assistance.
5437	- no need to define RAND_MAX from config.h.
5438	- iana portlist updated.
5439	- configure changes and ldns update for mingw32 crosscompile.
5440
544113 July 2009: Wouter
5442	- Fix for crash at start on windows.
5443	- tag for release 1.3.2.
5444	- trunk has version 1.3.3.
5445	- Fix for ID bits on windows to use all 16. RAND_MAX was not
5446	  defined like you'd expect on mingw. Reported by Mees de Roo.
5447
54489 July 2009: Wouter
5449	- tag for release 1.3.1.
5450	- trunk has version 1.3.2.
5451
54527 July 2009: Wouter
5453	- iana portlist updated.
5454
54556 July 2009: Wouter
5456	- prettier error handling in SSL setup.
5457	- makedist.sh uname fix (same as ldns).
5458	- updated fedora spec file.
5459
54603 July 2009: Wouter
5461	- fixup linking when ldnsdir is "".
5462
546330 June 2009: Wouter
5464	- more lenient truncation checks.
5465
546629 June 2009: Wouter
5467	- ldns trunk r2959 imported as tarball, because of solaris cc compile
5468	  support for c99.  r2960 for better configure.
5469	- better wrongly_truncated check.
5470	- On Linux, fragment IPv6 datagrams to the IPv6 minimum MTU, to
5471	  avoid dropped packets at routers.
5472
547326 June 2009: Wouter
5474	- Fix EDNS fallback when EDNS works for short answers but long answers
5475	  are dropped.
5476
547722 June 2009: Wouter
5478	- fixup iter priv strict aliasing while preserving size of sockaddr.
5479	- iana portlist updated.  (one less port allocated, one more fraction
5480	  of a bit for security!)
5481	- updated fedora specfile in contrib from Paul Wouters.
5482
548319 June 2009: Wouter
5484	- Fixup strict aliasing warning in iter priv code.
5485	  and config_file code.
5486	- iana portlist updated.
5487	- harden-referral-path: handle cases where NS is in answer section.
5488
548918 June 2009: Wouter
5490	- Fix of message parse bug where (specifically) an NSEC and RRSIG
5491	  in the wrong order would be parsed, but put wrongly into internal
5492	  structures so that later validation would fail.
5493	- Extreme lenience for wrongly truncated replies where a positive
5494	  reply has an NS in the authority but no signatures.  They are
5495	  turned into minimal responses with only the (secure) answer.
5496	- autoconf 2.63 for configure.
5497	- python warnings suppress.  Keep python API away from header files.
5498
549917 June 2009: Wouter
5500	- CREDITS entry for cz.nic, sponsoring a 'summer of code' that was
5501	  used for the python code in unbound. (http://www.nic.cz/vip/ in cz).
5502
550316 June 2009: Wouter
5504	- Fixup opportunistic target query generation to it does not
5505	  generate queries that are known to fail.
5506	- Touchup on munin total memory report.
5507	- messages picked out of the cache by the iterator are checked
5508	  if their cname chain is still correct and if validation status
5509	  has to be reexamined.
5510
551115 June 2009: Wouter
5512	- iana portlist updated.
5513
551414 June 2009: Wouter
5515	- Fixed bug where cached responses would lose their security
5516	  status on second validation, which especially impacted dlv
5517	  lookups.  Reported by Hauke Lampe.
5518
551913 June 2009: Wouter
5520	- bug #254. removed random whitespace from example.conf.
5521
552212 June 2009: Wouter
5523	- Fixup potential wrong NSEC picked out of the cache.
5524	- If unfulfilled callbacks are deleted they are called with an error.
5525	- fptr wlist checks for mesh callbacks.
5526	- fwd above stub in configuration works.
5527
552811 June 2009: Wouter
5529	- Fix queries for type DS when forward or stub zones are there.
5530	  They are performed to higherup domains, and thus treated as if
5531	  going to higher zones when looking up the right forward or stub
5532	  server.  This makes a stub pointing to a local server that has
5533	  a local view of example.com signed with the same keys as are
5534	  publicly used work.  Reported by Johan Ihren.
5535	- Added build-unbound-localzone-from-hosts.pl to contrib, from
5536	  Dennis DeDonatis.  It converts /etc/hosts into config statements.
5537	- same thing fixed for forward-zone and DS, chain of trust from
5538	  public internet into the forward-zone works now.  Added unit test.
5539
55409 June 2009: Wouter
5541	- openssl key files are opened apache-style, when user is root and
5542	  before chrooting.  This makes permissions on remote-control key
5543	  files easier to set up.  Fixes bug #251.
5544	- flush_type and flush_name remove msg cache entries.
5545	- codereview - dp copy bogus setting fix.
5546
55478 June 2009: Wouter
5548	- Removed RFC5011 REVOKE flag support. Partial 5011 support may cause
5549	  inadvertant behaviour.
5550	- 1.3.0 tarball for release created.
5551	- 1.3.1 development in svn trunk.
5552	- iana portlist updated.
5553	- fix lint from complaining on ldns/sha.h.
5554	- help compiler figure out aliasing in priv_rrset_bad() routine.
5555	- fail to configure with python if swig is not found.
5556	- unbound_munin_ in contrib uses ps to show rss if sbrk does not work.
5557
55583 June 2009: Wouter
5559	- fixup bad free() when wrongly encoded DSA signature is seen.
5560	  Reported by Paul Wouters.
5561	- review comments from Matthijs.
5562
55632 June 2009: Wouter
5564	- --enable-sha2 option. The draft rsasha256 changed its algorithm
5565	  numbers too often.  Therefore it is more prudent to disable the
5566	  RSASHA256 and RSASHA512 support by default.
5567	- ldns trunk included as new tarball.
5568	- recreated the 1.3.0 tag in svn. rc1 tarball generated at this point.
5569
557029 May 2009: Wouter
5571	- fixup doc bug in README reported by Matthew Dempsky.
5572
557328 May 2009: Wouter
5574	- update iana port list
5575	- update ldns lib tarball
5576
557727 May 2009: Wouter
5578	- detect lack of IPv6 support on XP (with a different error code).
5579	- Fixup a crash-on-exit which was triggered by a very long queue.
5580	  Unbound would try to re-use ports that came free, but this is
5581	  of course not really possible because everything is deleted.
5582	  Most easily triggered on XP (not Vista), maybe because of the
5583	  network stack encouraging large messages backlogs.
5584	- change in debug statements.
5585	- Fixed bug that could cause a crash if root prime failed when there
5586	  were message backlogs.
5587
558826 May 2009: Wouter
5589	- Thanks again to Brett Carr, found an assertion that was not true.
5590	  Assertion checked if recursion parent query still existed.
5591
559229 April 2009: Wouter
5593	- Thanks to Brett Carr, caught windows resource leak, use
5594	  closesocket() and not close() on sockets or else the network stack
5595	  starts to leak handles.
5596	- Removed usage of windows Mutex because windows cannot handle enough
5597	  mutexes open.  Provide own mutex implementation using primitives.
5598
559928 April 2009: Wouter
5600	- created svn tag for 1.3.0.
5601
560227 April 2009: Wouter
5603	- optimised cname from cache.
5604	- ifdef windows functions in testbound.
5605
560623 April 2009: Wouter
5607	- fix for threadsafety in solaris thr_key_create() in tests.
5608	- iana portlist updated.
5609	- fix pylib test for Darwin.
5610	- fix pymod test for Darwin and a python threading bug in pymod init.
5611	- check python >= 2.4 in configure.
5612	- -ldl check for libcrypto 1.0.0beta.
5613
561421 April 2009: Wouter
5615	- fix for build outside sourcedir.
5616	- fix for configure script swig detection.
5617
561817 April 2009: Wouter
5619	- Fix reentrant in minievent handler for unix. Could have resulted
5620	  in spurious event callbacks.
5621	- timers do not take up a fd slot for winsock handler.
5622	- faster fix for winsock reentrant check.
5623	- fix rsasha512 unit test for new (interim) algorithm number.
5624	- fix test:ldns doesn't like DOS line endings in keyfiles on unix.
5625	- fix compile warning on ubuntu (configlexer fwrite return value).
5626	- move python include directives into CPPFLAGS instead of CFLAGS.
5627
562816 April 2009: Wouter
5629	- winsock event handler exit very quickly on signal, even if
5630	  under heavy load.
5631	- iana portlist updated.
5632	- fixup windows winsock handler reentrant problem.
5633
563414 April 2009: Wouter
5635	- bug #245: fix munin plugin, perform cleanup of stale lockfiles.
5636	- makedist.sh; better help text.
5637	- cache-min-ttl option and tests.
5638	- mingw detect error condition on TCP sockets (NOTCONN).
5639
56409 April 2009: Wouter
5641	- Fix for removal of RSASHA256_NSEC3 protonumber from ldns.
5642	- ldns tarball updated.
5643	- iana portlist update.
5644	- detect GOST support in openssl-1.0.0-beta1, and fix compile problem
5645	  because that openssl defines the name STRING for itself.
5646
56476 April 2009: Wouter
5648	- windows compile fix.
5649	- Detect FreeBSD jail without ipv6 addresses assigned.
5650	- python libunbound wrapper unit test.
5651	- installs the following files. Default is to not build them.
5652	  	from configure --with-pythonmodule:
5653	  /usr/lib/python2.x/site-packages/unboundmodule.py
5654	  	from configure --with-pyunbound:
5655	  /usr/lib/python2.x/site-packages/unbound.py
5656	  /usr/lib/python2.x/site-packages/_unbound.so*
5657	  The example python scripts (pythonmod/examples and
5658	  libunbound/python/examples) are not installed.
5659	- python invalidate routine respects packed rrset ids and locks.
5660	- clock skew checks in unbound, config statements.
5661	- nxdomain ttl considerations in requirements.txt
5662
56633 April 2009: Wouter
5664	- Fixed a bug that caused messages to be stored in the cache too
5665	  long.  Hard to trigger, but NXDOMAINs for nameservers or CNAME
5666	  targets have been more vulnerable to the TTL miscalculation bug.
5667	- documentation test fixed for python addition.
5668
56692 April 2009: Wouter
5670	- pyunbound (libunbound python plugin) compiles using libtool.
5671	- documentation for pythonmod and pyunbound is generated in doc/html.
5672	- iana portlist updated.
5673	- fixed bug in unbound-control flush_zone where it would not flush
5674	  every message in the target domain.  This especially impacted
5675	  NXDOMAIN messages which could remain in the cache regardless.
5676	- python module test package.
5677
56781 April 2009: Wouter
5679	- suppress errors when trying to contact authority servers that gave
5680	  ipv6 AAAA records for their nameservers with ipv4 mapped contents.
5681	  Still tries to do so, could work when deployed in intranet.
5682	  Higher verbosity shows the error.
5683	- new libunbound calls documented.
5684	- pyunbound in libunbound/python. Removed compile warnings.
5685	  Makefile to make it.
5686
568730 March 2009: Wouter
5688	- Fixup LDFLAGS from libevent sourcedir compile configure restore.
5689	- Fixup so no non-absolute rpaths are added.
5690	- Fixup validation of RRSIG queries, they are let through.
5691	- read /dev/random before chroot
5692	- checkconf fix no python checks when no python module enabled.
5693	- fix configure, pthread first, so other libs do not change outcome.
5694
569527 March 2009: Wouter
5696	- nicer -h output. report linked libraries and modules.
5697	- prints modules in intuitive order (config file friendly).
5698	- python compiles easily on BSD.
5699
570026 March 2009: Wouter
5701	- ignore swig varargs warnings with gcc.
5702	- remove duplicate example.conf text from python example configs.
5703	- outofdir compile fix for python.
5704	- pyunbound works.
5705	- print modules compiled in on -h. manpage.
5706
570725 March 2009: Wouter
5708	- initial import of the python contribution from Zdenek Vasicek and
5709	  Marek Vavrusa.
5710	- pythonmod in Makefile; changes to remove warnings/errors for 1.3.0.
5711
571224 March 2009: Wouter
5713	- more neat configure.ac. Removed duplicate config.h includes.
5714	- neater config.h.in.
5715	- iana portlist updated.
5716	- fix util/configlexer.c and solaris -std=c99 flag.
5717	- fix postcommit aclocal errors.
5718	- spaces stripped. Makefile cleaner, /usr omitted from -I, -L, -R.
5719	- swap order of host detect and libtool generation.
5720
572123 March 2009: Wouter
5722	- added launchd plist example file for MacOSX to contrib.
5723	- deprecation test for daemon(3).
5724	- moved common configure actions to m4 include, prettier Makefile.
5725
572620 March 2009: Wouter
5727	- bug #239: module-config entries order is important. Documented.
5728	- build fix for test asynclook.
5729
573019 March 2009: Wouter
5731	- winrc/README.txt dos-format text file.
5732	- iana portlist updated.
5733	- use _beginthreadex() when available (performs stack alignment).
5734	- defaults for windows baked into configure.ac (used if on mingw).
5735
573618 March 2009: Wouter
5737	- Added tests, unknown algorithms become insecure. fallback works.
5738	- Fix for and test for unknown algorithms in a trust anchor
5739	  definition.  Trust anchors with no supported algos are ignored.
5740	  This means a (higher)DS or DLV entry for them could succeed, and
5741	  otherwise they are treated as insecure.
5742	- domain-insecure: "example.com" statement added. Sets domain
5743	  insecure regardless of chain of trust DSs or DLVs. The inverse
5744	  of a trust-anchor.
5745
574617 March 2009: Wouter
5747	- unit test for unsupported algorithm in anchor warning.
5748	- fixed so queries do not fail on opportunistic target queries.
5749
575016 March 2009: Wouter
5751	- fixup diff error printout in contrib/update-itar.sh.
5752	- added contrib/unbound_cacti for statistics support in cacti,
5753	  contributed by Dmitriy Demidov.
5754
575513 March 2009: Wouter
5756	- doxygen and lex/yacc on linux.
5757	- strip update-anchor on makedist -w.
5758	- fix testbound on windows.
5759	- default log to syslog for windows.
5760	- uninstaller can stop unbound - changed text on it to reflect that.
5761	- remove debugging from windows 'cron' actions.
5762
576312 March 2009: Wouter
5764	- log to App.logs on windows prints executable identity.
5765	- fixup tests.
5766	- munin plugin fix benign locking error printout.
5767	- anchor-update for windows, called every 24 hours; unbound reloads.
5768
576911 March 2009: Wouter
5770	- winsock event handler resets WSAevents after signalled.
5771	- winsock event handler tests if signals are really signalled.
5772	- install and service with log to file works on XP and Vista on
5773	  default install location.
5774	- on windows logging to the Application logbook works (as a service).
5775	- fix RUN_DIR on windows compile setting in makedist.
5776	- windows registry has Software\Unbound\ConfigFile element.
5777	  If does not exist, the default is used. The -c switch overrides it.
5778	- fix makedist version cleanup function.
5779
578010 March 2009: Wouter
5781	- makedist -w strips out old rc.. and snapshot info from version.
5782	- setup.exe starts and stops unbound after install, before uninstall.
5783	- unbound-checkconf recognizes absolute pathnames on windows (C:...).
5784
57859 March 2009: Wouter
5786	- Nullsoft NSIS installer creation script.
5787
57885 March 2009: Wouter
5789	- fixup memory leak introduced on 18feb in mesh reentrant fix.
5790
57913 March 2009: Wouter
5792	- combined icon with 16x16(4) 32x32(4) 48x48(8) 64x64(8).
5793	- service works on xp/vista, no config necessary (using defaults).
5794	- windows registry settings.
5795
57962 March 2009: Wouter
5797	- fixup --export-symbols to be -export-symbls for libtool.
5798	  This should fix extraneous symbols exported from libunbound.
5799	  Thanks to Ondrej Sury and Robert Edmonds for finding it.
5800	- iana portlist updated.
5801	- document FAQ entry on stub/forward zones and default blocking.
5802	- fix asynclook test app for libunbound not exporting symbols.
5803	- service install and remove utils that work with vista UAC.
5804
580527 February 2009: Wouter
5806	- Fixup lexer, to not give warnings about fwrite. Appeared in
5807	  new lexer features.
5808	- makedistro functionality for mingw. Has RC support.
5809	- support spaces and backslashes in configured defaults paths.
5810	- register, deregister in service control manager.
5811
581225 February 2009: Wouter
5813	- windres usage for application resources.
5814
581524 February 2009: Wouter
5816	- isc moved their dlv key download location.
5817	- fixup warning on vista/mingw.
5818	- makedist -w for window zip distribution first version.
5819
582020 February 2009: Wouter
5821	- Fixup contrib/update-itar.sh, the exit codes 1 and 0 were swapped.
5822	  Nicer script layout.  Added url to site in -h output.
5823
582419 February 2009: Wouter
5825	- unbound-checkconf and unbound print warnings when trust anchors
5826	  have unsupported algorithms.
5827	- added contrib/update-itar.sh  This script is similar to
5828	  update-anchor.sh, and updates from the IANA ITAR repository.
5829	  You can provide your own PGP key and trust repo, or can use the
5830	  builtin.  The program uses wget and gpg to work.
5831	- iana portlist updated.
5832	- update-itar.sh: using ftp:// urls because https godaddy certificate
5833	  is not available everywhere and then gives fatal errors.  The
5834	  security is provided by pgp signature.
5835
583618 February 2009: Wouter
5837	- more cycle detection. Also for target queries.
5838	- fixup bug where during deletion of the mesh queries the callbacks
5839	  that were reentrant caused assertion failures. Keep the mesh in
5840	  a reentrant safe state.  Affects libunbound, reload of server,
5841	  on quit and flush_requestlist.
5842	- iana portlist updated.
5843
584413 February 2009: Wouter
5845	- forwarder information now per-thread duplicated.
5846	  This keeps it read only for speed, with no locking necessary.
5847	- forward command for unbound control to change forwarders to use
5848	  on the fly.
5849	- document that unbound-host reads no config file by default.
5850	- updated iana portlist.
5851
585212 February 2009: Wouter
5853	- call setusercontext if available (on BSD).
5854	- small refactor of stats clearing.
5855	- #227: flush_stats feature for unbound-control.
5856	- stats_noreset feature for unbound-control.
5857	- flush_requestlist feature for unbound-control.
5858	- libunbound version upped API (was changed 5 feb).
5859	- unbound-control status shows if root forwarding is in use.
5860	- slightly nicer memory management in iter-fwd code.
5861
586210 February 2009: Wouter
5863	- keys with rfc5011 REVOKE flag are skipped and not considered when
5864	  validating data.
5865	- iana portlist updated
5866	- #226: dump_requestlist feature for unbound-control.
5867
58686 February 2009: Wouter
5869	- contrib contains specfile for fedora 1.2.1 (from Paul Wouters).
5870	- iana portlist updated.
5871	- fixup EOL in include directive (reported by Paul Wouters).
5872	  You can no longer specify newlines in the names of included files.
5873	- config parser changed. Gives some syntax errors closer to where they
5874	  occurred. Does not enforce a space after keyword anymore.
5875	  Does not allow literal newlines inside quoted strings anymore.
5876	- verbosity level 5 logs customer IP for new requestlist entries.
5877	- test fix, lexer and cancel test.
5878	- new option log-time-ascii: yes  if you enable it prints timestamps
5879	  in the log file as Feb 06 13:45:26 (like syslog does).
5880	- detect event_base_new in libevent-1.4.1 and later and use it.
5881	- #231 unbound-checkconf -o option prints that value from config file.
5882	  Useful for scripting in management scripts and the like.
5883
58845 February 2009: Wouter
5885	- ldns 1.5.0 rc as tarball included.
5886	- 1.3.0 development continues:
5887	  change in libunbound API: ub_cancel can return an error, that
5888	  the async_id did not exist, or that it was already delivered.
5889	  The result could have been delivered just before the cancel
5890	  routine managed to acquire the lock, so a caller may get the
5891	  result at the same time they call cancel.  For this case,
5892	  ub_cancel tries to return an error code.
5893	  Fixes race condition in ub_cancel() libunbound function.
5894	- MacOSX Leopard cleaner text output from configure.
5895	- initgroups(3) is called to drop secondary group permissions, if
5896	  applicable.
5897	- configure option --with-ldns-builtin forces the use of the
5898	  inluded ldns package with the unbound source.  The -I include
5899	  is put before the others, so it avoids bad include files from
5900	  an older ldns install.
5901	- daemon(3) posix call is used when available.
5902	- testbound test for older fix added.
5903
59044 February 2009: Wouter
5905	- tag for release 1.2.1.
5906	- trunk setup for 1.3.0 development.
5907
59083 February 2009: Wouter
5909	- noted feature requests in doc/TODO.
5910	- printout more detailed errors on ssl certificate loading failures.
5911	- updated IANA portlist.
5912
591316 January 2009: Wouter
5914	- more quiet about ipv6 network failures, i.e. when ipv6 is not
5915	  available (network unreachable). Debug still printed on high
5916	  verbosity.
5917	- unbound-host -4 and -6 options. Stops annoying ipv6 errors when
5918	  debugging with unbound-host -4 -d ...
5919	- more cycle detection for NS-check, addr-check, root-prime and
5920	  stub-prime queries in the iterator.  Avoids possible deadlock
5921	  when priming fails.
5922
592315 January 2009: Wouter
5924	- bug #229: fixup configure checks for compilation with Solaris
5925	  Sun cc compiler, ./configure CC=/opt/SUNWspro/bin/cc
5926	- fixup suncc warnings.
5927	- fix bug where unbound could crash using libevent 1.3 and older.
5928	- update testset for recent retry change.
5929
593014 January 2009: Wouter
5931	- 1.2.1 feature: negative caching for failed queries.
5932	  Queries that failed are cached for 5 seconds (NORR_TTL).
5933	  If the failure is local, like out of memory, it is not cached.
5934	- the TTL comparison for the cache used different comparisons,
5935	  causing many cache responses that used the iterator and validator
5936	  state machines unnecessarily.
5937	- retry from 4 to 5 so that EDNS drop retry is part of the first
5938	  query resolve attempt, and cached error does not stop EDNS fallback.
5939	- remove debug prints that protect against bad referrals.
5940	- honor QUIET=no on make commandline (or QUIET=yes ).
5941
594213 January 2009: Wouter
5943	- fixed bug in lameness marking, removed printouts.
5944	- find NS rrset more cleanly for qtype NS.
5945	- Moved changes to 1.2.0 for release. Thanks to Mark Zealey for
5946	  reporting and logs.
5947	- 1.2.1 feature: stops resolving AAAAs promiscuously when they
5948	  are in the negative cache.
5949
595012 January 2009: Wouter
5951	- fixed bug in infrastructure lameness cache, did not lowercase
5952	  name of zone to hash when setting lame.
5953	- lameness debugging printouts.
5954
59559 January 2009: Wouter
5956	- created svn tag for 1.2.0 release.
5957	- svn trunk contains 1.2.1 version number.
5958	- iana portlist updated for todays list.
5959	- removed debug print.
5960
59618 January 2009: Wouter
5962	- new version of ldns-trunk (today) included as tarball, fixed
5963	  bug #224, building with -j race condition.
5964	- remove possible race condition in the test for race conditions.
5965
59667 January 2009: Wouter
5967	- version 1.2.0 in preparation.
5968	- feature to allow wildcards (*, ?, [], {}. ~) in trusted-keys-file
5969	  statements. (Adapted from patch by Paul Wouters).
5970	- typo fix and iana portlist updated.
5971	- porting testsuite; unused var warning, and type fixup.
5972
59736 January 2009: Wouter
5974	- fixup packet-of-death when compiled with --enable-debug.
5975	  A malformed packet could cause an internal assertion failure.
5976	- added test for HINFO canonicalisation behaviour.
5977	- fixup reported problem with transparent local-zone data where
5978	  queries with different type could get nxdomain. Now queries
5979	  with a different name get resolved normally, with different type
5980	  get a correct NOERROR/NODATA answer.
5981	- HINFO no longer downcased for validation, making unbound compatible
5982	  with bind and ldns.
5983	- fix reading included config files when chrooted.
5984	  Give full path names for include files.
5985	  Relative path names work if the start dir equals the working dir.
5986	- fix libunbound message transport when no packet buffer is available.
5987
59885 January 2009: Wouter
5989	- fixup getaddrinfo failure handling for remote control port.
5990	- added L.ROOT-SERVERS.NET. AAAA 2001:500:3::42 to builtin root hints.
5991	- fixup so it works with libev-3.51 from http://dist.schmorp.de/libev/
5992	- comm_timer_set performs base_set operation after event_add.
5993
599418 December 2008: Wouter
5995	- fixed bug reported by Duane Wessels: error in DLV lookup, would make
5996	  some zones that had correct DLV keys as insecure.
5997	- follows -rc makedist from ldns changes (no _rc).
5998	- ldns tarball updated with 1.4.1rc for DLV unit test.
5999	- verbose prints about recursion lame detection and server selection.
6000	- fixup BSD port for infra host storage. It hashed wrongly.
6001	- fixup makedist snapshot name generation.
6002	- do not reopen syslog to avoid dev/log dependency.
6003
600417 December 2008: Wouter
6005	- follows ldns makedist.sh. -rc option. autom4te dir removed.
6006	- unbound-control status command.
6007	- extended statistics has a number of ipv6 queries counter.
6008	  contrib/unbound_munin_ was updated to draw ipv6 in the hits graph.
6009
601016 December 2008: Wouter
6011	- follow makedist improvements from ldns, for maintainers prereleases.
6012	- snapshot version uses _ not - to help rpm distinguish the
6013	  version number.
6014
601511 December 2008: Wouter
6016	- better fix for bug #219: use LOG_NDELAY with openlog() call.
6017	  Thanks to Tamas Tevesz.
6018
60199 December 2008: Wouter
6020	- bug #221 fixed: unbound checkconf checks if key files exist if
6021	  remote control is enabled. Also fixed NULL printf when not chrooted.
6022	- iana portlist updated.
6023
60243 December 2008: Wouter
6025	- Fix problem reported by Jaco Engelbrecht where unbound-control stats
6026	  freezes up unbound if this was compiled without threading, and
6027	  was using multiple processes.
6028	- iana portlist updated.
6029	- test for remote control with interprocess communication.
6030	- created command distribution mechanism so that remote control
6031	  commands other than 'stats' work on all processes in a nonthreaded
6032	  compiled version. dump/load cache work, on the first process.
6033	- fixup remote control local_data addition memory corruption bug.
6034
60351 December 2008: Wouter
6036	- SElinux policy files in contrib/selinux for the unbound daemon,
6037	  by Paul Wouters and Adam Tkac.
6038
603925 November 2008: Wouter
6040	- configure complains when --without-ssl is given (bug #220).
6041	- skip unsupported feature tests on vista/mingw.
6042	- fixup testcode/streamtcp to work on vista/mingw.
6043	- root-hints test checks version of dig required.
6044	- blacklisted servers are polled at a low rate (1%) to see if they
6045	  come back up. But not if there is some other working server.
6046
604724 November 2008: Wouter
6048	- document that the user of the server daemon needs read privileges
6049	  on the keys and certificates generated by unbound-control-setup.
6050	  This is different per system or distribution, usually, running the
6051	  script under the same username as the server uses suffices.
6052	  i.e.  sudo -u unbound unbound-control-setup
6053	- testset port to vista/mingw.
6054	- tcp_sigpipe to freebsd port.
6055
605621 November 2008: Wouter
6057	- fixed tcp accept, errors were printed when they should not.
6058	- unbound-control-setup.sh removes read/write permissions other
6059	  from the keys it creates (as suggested by Dmitriy Demidov).
6060
606120 November 2008: Wouter
6062	- fixup fatal error due to faulty error checking after tcp accept.
6063	- add check in rlimit to avoid integer underflow.
6064	- rlimit check with new formula; better estimate for number interfaces
6065	- nicer comments in rlimit check.
6066	- tag 1.1.1 created in svn.
6067	- trunk label is 1.1.2
6068
606919 November 2008: Wouter
6070	- bug #219: fixed so that syslog which delays opening until the first
6071	  log line is written, gets a log line while not chroot'ed yet.
6072
607318 November 2008: Wouter
6074	- iana portlist updated.
6075	- removed cast in unit test debug print that was not 64bit safe.
6076	- trunk back to 1.1.0; copied to tags 1.1.0 release.
6077	- trunk to has version number 1.1.1 again.
6078	- in 1.1.1; make clean nicer. grammar in manpage.
6079
608017 November 2008: Wouter
6081	- theoretical fix for problems reported on mailing list.
6082	  If a delegation point has no A but only AAAA and do-ip6 is no,
6083	  resolution would fail. Fixed to ask for the A and AAAA records.
6084	  It has to ask for both always, so that it can fail quietly, from
6085	  TLD perspective, when a zone is only reachable on one transport.
6086	- test for above, only AAAA and doip6 is no. Fix causes A record
6087	  for nameserver to be fetched.
6088	- fixup address duplication on cache fillup for delegation points.
6089	- testset updated for new query answer requirements.
6090
609114 November 2008: Wouter
6092	- created 1.1.0 release tag in svn.
6093	- trunk moved to 1.1.1
6094	- fixup unittest-neg for locking.
6095
609613 November 2008: Wouter
6097	- added fedora init and specfile to contrib (by Paul Wouters).
6098	- added configure check for ldns 1.4.0 (using its compat funcs).
6099	- neater comments in worker.h.
6100	- removed doc/plan and updated doc/TODO.
6101	- silenced EHOSTDOWN (verbosity 2 or higher to see it).
6102	- review comments from Jelte, Matthijs. Neater code.
6103
610412 November 2008: Wouter
6105	- add unbound-control manpage to makedist replace list.
6106
610711 November 2008: Wouter
6108	- unit test for negative cache, stress tests the refcounting.
6109	- fix for refcounting error that could cause fptr_wlist fatal exit
6110	  in the negative cache rbtree (upcoming 1.1 feature). (Thanks to
6111	  Attila Nagy for testing).
6112	- nicer comments in cachedump about failed RR to string conversion.
6113	- fix 32bit wrap around when printing large (4G and more) mem usage
6114	  for extended statistics.
6115
611610 November 2008: Wouter
6117	- fixup the getaddrinfo compat code rename.
6118
61198 November 2008: Wouter
6120	- added configure check for eee build warning.
6121
61227 November 2008: Wouter
6123	- fix bug 217: fixed, setreuid and setregid do not work on MacOSX10.4.
6124	- detect nonblocking problems in network stack in configure script.
6125
61266 November 2008: Wouter
6127	- dname_priv must decompress the name before comparison.
6128	- iana portlist updated.
6129
61305 November 2008: Wouter
6131	- fixed possible memory leak in key_entry_key deletion.
6132	  Would leak a couple bytes when trust anchors were replaced.
6133	- if query and reply qname overlap, the bytes are skipped not copied.
6134	- fixed file descriptor leak when messages were jostled out that
6135	  had outstanding (TCP) replies.
6136	- DNAMEs used from cache have their synthesized CNAMEs initialized
6137	  properly.
6138	- fixed file descriptor leak for localzone type deny (for TCP).
6139	- fixed memleak at exit for nsec3 negative cached zones.
6140	- fixed memleak for the keyword 'nodefault' when reading config.
6141	- made verbosity of 'edns incapable peer' warning higher, so you
6142	  do not get spammed by it.
6143	- caught elusive Bad file descriptor error bug, that would print the
6144	  error while unnecessarily try to listen to a closed fd. Fixed.
6145
61464 November 2008: Wouter
6147	- fixed -Wwrite-strings warnings that result in better code.
6148
61493 November 2008: Wouter
6150	- fixup build process for Mac OSX linker, use ldns b32 compat funcs.
6151	- generated configure with autoconf-2.61.
6152	- iana portlist updated.
6153	- detect if libssl needs libdl.  For static linking with libssl.
6154	- changed to use new algorithm identifiers for sha256/sha512
6155	  from ldns 1.4.0 (need very latest version).
6156	- updated the included ldns tarball.
6157	- proper detection of SHA256 and SHA512 functions (not just sizes).
6158
615923 October 2008: Wouter
6160	- a little more debug info for failure on signer names. prints names.
6161
616222 October 2008: Wouter
6163	- CFLAGS are picked up by configure from the environment.
6164	- iana portlist updated.
6165	- updated ldns to use 1.4.0-pre20081022 so it picks up CFLAGS too.
6166	- new stub-prime: yesno option. Default is off, so it does not prime.
6167	  can be turned on to get same behaviour as previous unbound release.
6168	- made automated test that checks if builtin root hints are uptodate.
6169	- finished draft-wijngaards-dnsext-resolver-side-mitigation
6170	  implementation. The unwanted-reply-threshold can be set.
6171	- fixup so fptr_whitelist test in alloc.c works.
6172
617321 October 2008: Wouter
6174	- fix update-anchors.sh, so it does not report different RR order
6175	  as an update.  Sorts the keys in the file.  Updated copyright.
6176	- fixup testbound on windows, the command control pipe doesn't exist.
6177	- skip 08hostlib test on windows, no fork() available.
6178	- made unbound-remote work on windows.
6179
618020 October 2008: Wouter
6181	- quench a log message that is debug only.
6182	- iana portlist updated.
6183	- do not query bogus nameservers.  It is like nameservers that have
6184	  the NS or A or AAAA record bogus are listed as donotquery.
6185	- if server selection is faced with only bad choices, it will
6186	  attempt to get more options to be fetched.
6187	- changed bogus-ttl default value from 900 to 60 seconds.
6188	  In anticipation that operator caused failures are more likely than
6189	  actual attacks at this time.  And thus repeated validation helps
6190	  the operators get the problem fixed sooner.  It makes validation
6191	  failures go away sooner (60 seconds after the zone is fixed).
6192	  Also it is likely to try different nameserver targets every minute,
6193	  so that if a zone is bad on one server but not another, it is
6194	  likely to pick up the 'correct' one after a couple minutes,
6195	  and if the TTL is big enough that solves validation for the zone.
6196	- fixup unbound-control compilation on windows.
6197
619817 October 2008: Wouter
6199	- port Leopard/G5: fixup type conversion size_t/uint32.
6200	  please ranlib, stop file without symbols warning.
6201	- harden referral path now also validates the root after priming.
6202	  It looks up the root NS authoritatively as well as the root servers
6203	  and attemps to validate the entries.
6204
620516 October 2008: Wouter
6206	- Fixup negative TTL values appearing (reported by Attila Nagy).
6207
620815 October 2008: Wouter
6209	- better documentation for 0x20; remove fallback TODO, it is done.
6210	- harden-referral-path feature includes A, AAAA queries for glue,
6211	  as well as very careful NS caching (only when doing NS query).
6212	  A, AAAA use the delegation from the NS-query.
6213
621414 October 2008: Wouter
6215	- fwd_three.tpkg test was flaky.  If the three requests hit the
6216	  wrong threads by chance (or bad OS) then the test would fail.
6217	  Made less flaky by increasing number of retries.
6218	- stub_udp.tpkg changed to work, give root hints. fixed ldns_dname_abs.
6219	- ldns tarball is snapshot of ldns r2759 (1.4.0-pre-20081014).
6220	  Which includes the ldns_dname_absolute fix.
6221	- fwd_three test remains flaky now that unbound does not stop
6222	  listening when full.  Thus, removed timeout problem.
6223	  It may be serviced by three threads, or maybe by one.
6224	  Mostly only useful for lock-check testing now.
6225
622613 October 2008: Wouter
6227	- fixed recursion servers deployed as authoritative detection, so
6228	  that as a last resort, a +RD query is sent there to get the
6229	  correct answer.
6230	- iana port list update.
6231	- ldns tarball is snapshot of ldns r2759 (1.4.0-pre-20081013).
6232
623310 October 2008: Wouter
6234	- fixup tests - the negative cache contained the correct NSEC3s for
6235	  two tests that are supposed to fail to validate.
6236
62379 October 2008: Wouter
6238	- negative cache caps max iterations of NSEC3 done.
6239	- NSEC3 negative cache for qtype DS works.
6240
62418 October 2008: Wouter
6242	- NSEC negative cache for DS.
6243
62446 October 2008: Wouter
6245	- jostle-timeout option, so you can config for slow links.
6246	- 0x20 fallback code.  Tries 3xnumber of nameserver addresses
6247	  queries that must all be the same.  Sent to random nameservers.
6248	- documented choices for DoS, EDNS, 0x20.
6249
62502 October 2008: Wouter
6251	- fixup unlink of pidfile.
6252	- fixup SHA256 algorithm collation code.
6253	- contrib/update-anchor.sh does not overwrite anchors if not needed.
6254	  exits 0 when a restart is needed, other values if not.
6255	  so,  update-anchor.sh -d mydir && /etc/rc.d/unbound restart
6256	  can restart unbound exactly when needed.
6257
625830 September 2008: Wouter
6259	- fixup SHA256 DS downgrade, no longer possible to downgrade to SHA1.
6260	- tests for sha256 support and downgrade resistance.
6261	- RSASHA256 and RSASHA512 support (using the draft in dnsext),
6262	  using the drafted protocol numbers.
6263	- when using stub on localhost (127.0.0.1@10053) unbound works.
6264	  Like when running NSD to host a local zone, on the same machine.
6265	  The noprime feature. manpages more explanation. Added a test for it.
6266	- shorthand for reverse PTR,  local-data-ptr: "1.2.3.4 www.ex.com"
6267
626829 September 2008: Wouter
6269	- EDNS lameness detection, if EDNS packets are dropped this is
6270	  detected, eventually.
6271	- multiple query timeout rtt backoff does not backoff too much.
6272
627326 September 2008: Wouter
6274	- tests for remote-control.
6275	- small memory leak in exception during remote control fixed.
6276	- fixup for lock checking but not unchecking in remote control.
6277	- iana portlist updated.
6278
627923 September 2008: Wouter
6280	- Msg cache is loaded. A cache load enables cache responses.
6281	- unbound-control flush [name], flush_type and flush_zone.
6282
628322 September 2008: Wouter
6284	- dump_cache and load_cache statements in unbound-control.
6285	  RRsets are dumped and loaded correctly.
6286	  Msg cache is dumped.
6287
628819 September 2008: Wouter
6289	- locking on the localdata structure.
6290	- add and remove local zone and data with unbound-control.
6291	- ldns trunk snapshot updated, make tests work again.
6292
629318 September 2008: Wouter
6294	- fixup error in time calculation.
6295	- munin plugin improvements.
6296	- nicer abbreviations for high query types values (ixfr, axfr, any...)
6297	- documented the statistics output in unbound-control man page.
6298	- extended statistics prints out histogram, over unbound-control.
6299
630017 September 2008: Wouter
6301	- locking for threadsafe bogus rrset counter.
6302	- ldns trunk no longer exports b32 functions, provide compat.
6303	- ldns tarball updated.
6304	- testcode/ldns-testpkts.c const fixups.
6305	- fixed rcode stat printout.
6306	- munin plugin in contrib.
6307	- stats always printout uptime, because stats plugins need it.
6308
630916 September 2008: Wouter
6310	- extended-statistics: yesno config option.
6311	- unwanted replies spoof nearmiss detector.
6312	- iana portlist updated.
6313
631415 September 2008: Wouter
6315	- working start, stop, reload commands for unbound-control.
6316	- test for unbound-control working; better exit value for control.
6317	- verbosity control via unbound-control.
6318	- unbound-control stats.
6319
632012 September 2008: Wouter
6321	- removed browser control mentions. Proto speccy.
6322
632311 September 2008: Wouter
6324	- set nonblocking on new TCP streams, because linux does not inherit
6325	  the socket options to the accepted socket.
6326	- fix TCP timeouts.
6327	- SSL protected connection between server and unbound-control.
6328
632910 September 2008: Wouter
6330	- remove memleak in privacy addresses on reloads and quits.
6331	- remote control work.
6332
63339 September 2008: Wouter
6334	- smallapp/unbound-control-setup.sh script to set up certificates.
6335
63364 September 2008: Wouter
6337	- scrubber scrubs away private addresses.
6338	- test for private addresses. man page entry.
6339	- code refactored for name and address tree lookups.
6340
63413 September 2008: Wouter
6342	- options for 'DNS Rebinding' protection: private-address and
6343	  private-domain.
6344	- dnstree for reuse of routines that help with domain, addr lookups.
6345	- private-address and private-domain config option read, stored.
6346
63472 September 2008: Wouter
6348	- DoS protection features. Queries are jostled out to make room.
6349	- testbound can pass time, increasing the internal timer.
6350	- do not mark unsigned additionals bogus, leave unchecked, which
6351	  is removed too.
6352
63531 September 2008: Wouter
6354	- disallow nonrecursive queries for cache snooping by default.
6355	  You can allow is using access-control: <subnet> allow_snoop.
6356	  The defaults do allow access no authoritative data without RD bit.
6357	- two tests for it and fixups of tests for nonrec refused.
6358
635929 August 2008: Wouter
6360	- version 1.1 number in trunk.
6361	- harden-referral-path option for query for NS records.
6362	  Default turns off expensive, experimental option.
6363
636428 August 2008: Wouter
6365	- fixup logfile handling; it is created with correct permissions
6366	  again. (from bugfix#199).
6367	  Some errors are not written to logfile (pidfile writing, forking),
6368	  and these are only visible by using the -d commandline flag.
6369
637027 August 2008: Wouter
6371	- daemon(3) is causing problems for people. Reverting the patch.
6372	  bug#200, and 199 and 203 contain sideline discussion on it.
6373	- bug#199 fixed: pidfile can be outside chroot. openlog is done before
6374	  chroot and drop permissions.
6375	- config option to set size of aggressive negative cache,
6376	  neg-cache-size.
6377	- bug#203 fixed: dlv has been implemented.
6378
637926 August 2008: Wouter
6380	- test for insecure zone when DLV is in use, also does negative cache.
6381	- test for trustanchor when DLV is in use (the anchor works).
6382	- test for DLV used for a zone below a trustanchor.
6383	- added scrub filter for overreaching NSEC records and unit test.
6384	- iana portlist update
6385	- use of setresuid or setreuid when available.
6386	- use daemon(3) if available.
6387
638825 August 2008: Wouter
6389	- realclean patch from Robert Edmonds.
6390
639122 August 2008: Wouter
6392	- nicer debuglogging of DLV.
6393	- test with secure delegation inside the DLV repository.
6394
639521 August 2008: Wouter
6396	- negative cache code linked into validator, for DLV use.
6397	  negative cache works for DLV.
6398	- iana portlist update.
6399	- dlv-anchor option for unit tests.
6400	- fixup NSEC_AT_APEX classification for short typemaps.
6401	- ldns-testns has subdomain checks, for unit tests.
6402
640320 August 2008: Wouter
6404	- negative cache code, reviewed.
6405
640618 August 2008: Wouter
6407	- changes info: in logfile to notice: info: or debug: depending on
6408	  the verbosity of the statements.  Better logfile message
6409	  classification.
6410	- bug #208: extra rc.d unbound flexibility for freebsd/nanobsd.
6411
641215 August 2008: Wouter
6413	- DLV nsec code fixed for better detection of closest existing
6414	  enclosers from NSEC responses.
6415	- DLV works, straight to the dlv repository, so not for production.
6416	- Iana port update.
6417
641814 August 2008: Wouter
6419	- synthesize DLV messages from the rrset cache, like done for DS.
6420
642113 August 2008: Wouter
6422	- bug #203: nicer do-auto log message when user sets incompatible
6423	  options.
6424	- bug #204: variable name ameliorated in log.c.
6425	- bug #206: in iana_update, no egrep, but awk use.
6426	- ldns snapshot r2699 taken (includes DLV type).
6427	- DLV work, config file element, trust anchor read in.
6428
642912 August 2008: Wouter
6430	- finished adjusting testset to provide qtype NS answers.
6431
643211 August 2008: Wouter
6433	- Fixup rrset security updates overwriting 2181 trust status.
6434	  This makes validated to be insecure data just as worthless as
6435	  nonvalidated data, and 2181 rules prevent cache overwrites to them.
6436	- Fix assertion fail on bogus key handling.
6437	- dnssec lameness detection works on first query at trust apex.
6438	- NS queries get proper cache and dnssec lameness treatment.
6439	- fixup compilation without pthreads on linux.
6440
64418 August 2008: Wouter
6442	- NS queries are done after every referral.
6443	  validator is used on those NS records (if anchors enabled).
6444
64457 August 2008: Wouter
6446	- Scrubber more strict. CNAME chains, DNAMEs from cache, other
6447	  irrelevant rrsets removed.
6448	- 1.0.2 released from 1.0 support branch.
6449	- fixup update-anchor.sh to work both in BSD shell and bash.
6450
64515 August 2008: Wouter
6452	- fixup DS test so apex nodata works again.
6453
64544 August 2008: Wouter
6455	- iana port update.
6456	- TODO update.
6457	- fix bug 201: null ptr deref on cleanup while udp pkts wait for port.
6458	- added explanatory text for outgoing-port-permit in manpage.
6459
646030 July 2008: Wouter
6461	- fixup bug qtype DS for unsigned zone and signed parent validation.
6462
646325 July 2008: Wouter
6464	- added original copyright statement of OpenBSD arc4random code.
6465	- created tube signaling solution on windows, as a pipe replacement.
6466	  this makes background asynchronous resolution work on windows.
6467	- removed very insecure socketpair compat code. It also did not
6468	  work with event_waiting. Solved by pipe replacement.
6469	- unbound -h prints openssl version number as well.
6470
647122 July 2008: Wouter
6472	- moved pipe actions to util/tube.c. easier porting and shared code.
6473	- check _raw() commpoint callbacks with fptr_wlist.
6474	- iana port update.
6475
647621 July 2008: Wouter
6477	- #198: nicer entropy warning message. manpage OS hints.
6478
647919 July 2008: Wouter
6480	- #198: fixup man page to suggest chroot entropy fix.
6481
648218 July 2008: Wouter
6483	- branch for 1.0 support.
6484	- trunk work on tube.c.
6485
648617 July 2008: Wouter
6487	- fix bug #196, compile outside source tree.
6488	- fix bug #195, add --with-username=user configure option.
6489	- print error and exit if started with config that requires more
6490	  fds than the builtin minievent can handle.
6491
649216 July 2008: Wouter
6493	- made svn tag 1.0.1, trunk now 1.0.2
6494	- sha256 checksums enabled in makedist.sh
6495
649615 July 2008: Wouter
6497	- Follow draft-ietf-dnsop-default-local-zones-06 added reverse
6498	  IPv6 example prefix to AS112 default blocklist.
6499	- fixup lookup of DS records by client with trustanchor for same.
6500	- libunbound ub_resolve, fix handling of error condition during setup.
6501	- lowered log_hex blocksize to fit through BSD syslog linesize.
6502	- no useless initialisation if getpwnam not available.
6503	- iana, ldns snapshot updated.
6504
65053 July 2008: Wouter
6506	- Matthijs fixed memory leaks in root hints file reading.
6507
650826 June 2008: Wouter
6509	- fixup streamtcp bounds setting for udp mode, in the test framework.
6510	- contrib item for updating trust anchors.
6511
651225 June 2008: Wouter
6513	- fixup fwd_ancil test typos.
6514	- Fix for newegg lameness : ok for qtype=A, but lame for others.
6515	- fixup unit test for infra cache, test lame merging.
6516	- porting to mingw, bind, listen, getsockopt and setsockopt error
6517	  handling.
6518
651924 June 2008: Wouter
6520	- removed testcode/checklocks from production code compilation path.
6521	- streamtcp can use UDP mode (connected UDP socket), for testing IPv6
6522	  on windows.
6523	- fwd_ancil test fails if platform support is lacking.
6524
652523 June 2008: Wouter
6526	- fixup minitpkg to cleanup on windows with its file locking troubles.
6527	- minitpkg shows skipped tests in report.
6528	- skip ipv6 tests on ipv4 only hosts (requires only ipv6 localhost not
6529	  ipv6 connectivity).
6530	- winsock event handler keeps track of sticky TCP events, that have
6531	  not been fully handled yet. when interest in the event(s) resumes,
6532	  they are sent again. When WOULDBLOCK is returned events are cleared.
6533	- skip tests that need signals when testing on mingw.
6534
653518 June 2008: Wouter
6536	- open testbound replay files in binary mode, because fseek/ftell
6537	  do not work in ascii-mode on windows. The b does nothing on unix.
6538	  unittest and testbound tests work on windows (xp too).
6539	- ioctlsocket prints nicer error message.
6540	- fixed up some TCP porting for winsock.
6541	- lack of IPv6 gives a warning, no fatal error.
6542	- use WSAGetLastError() on windows instead of errno for some errors.
6543
654417 June 2008: Wouter
6545	- outgoing num fds 32 by default on windows ; it supports less
6546	  fds for waiting on than unixes.
6547	- winsock_event minievent handler for windows. (you could also
6548	  attempt to link with libevent/libev ports for windows).
6549	- neater crypto check and gdi32 detection.
6550	- unbound.exe works to resolve and validate www.nlnetlabs.nl on vista.
6551
655216 June 2008: Wouter
6553	- on windows, use windows threads, mutex and thread-local-storage(Tls).
6554	- detect if openssl needs gdi32.
6555	- if no threading, THREADS_DISABLED is defined for use in the code.
6556	- sets USE_WINSOCK if using ws2_32 on windows.
6557	- wsa_strerror() function for more readable errors.
6558	- WSA Startup and Cleanup called in unbound.exe.
6559
656013 June 2008: Wouter
6561	- port mingw32, more signal ifdefs, detect sleep, usleep,
6562	  random, srandom (used inside the tests).
6563	- signed or unsigned FD_SET is cast.
6564
656510 June 2008: Wouter
6566	- fixup warnings compiling on eeepc xandros linux.
6567
65689 June 2008: Wouter
6569	- in iteration response type code
6570	  * first check for SOA record (negative answer) before NS record
6571	    and lameness.
6572	  * check if no AA bit for non-forwarder, and thus lame zone.
6573	    In response to error report by Richard Doty for mail.opusnet.com.
6574	- fixup unput warning from lexer on freeBSD.
6575	- bug#183. pidfile, rundir, and chroot configure options. Also the
6576	  example.conf and manual pages get the configured defaults.
6577	  You can use: (or accept the defaults to /usr/local/etc/unbound/)
6578	  --with-conf-file=filename
6579	  --with-pidfile=filename
6580	  --with-run-dir=path
6581	  --with-chroot-dir=path
6582
65838 June 2008: Wouter
6584	- if multiple CNAMEs, use the first one. Fixup akamai CNAME bug.
6585	  Reported by Robert Edmonds.
6586	- iana port updated.
6587
65884 June 2008: Wouter
6589	- updated libtool files with newer version.
6590	- iana portlist updated.
6591
65923 June 2008: Wouter
6593	- fixup local-zone: "30.172.in-addr.arpa." nodefault, so that the
6594	  trailing dot is not used during comparison.
6595
65962 June 2008: Wouter
6597	- Jelte fixed bugs in my absence
6598	  - bug 178: fixed unportable shell usage in configure (relied on
6599	    bash shell).
6600	  - bug 180: fixed buffer overflow in unbound-checkconf use of strncat.
6601	  - bug 181: fixed buffer overflow in ldns (called by unbound to parse
6602	    config file parts).
6603	- fixes by Wouter
6604	  - bug 177: fixed compilation failure on opensuse, the
6605	    --disable-static configure flag caused problems.  (Patch from
6606	    Klaus Singvogel)
6607	  - bug 179: same fix as 177.
6608	  - bug 185: --disable-shared not passed along to ldns included with
6609	    unbound. Fixed so that configure parameters are passed to the
6610	    subdir configure script.
6611	    fixed that ./libtool is used always, you can still override
6612	    manually with ./configure libtool=mylibtool or set $libtool in
6613	    the environment.
6614	- update of the ldns tarball to current ldns svn version (fix 181).
6615	- bug 184: -r option for unbound-host, read resolv.conf for
6616	  forwarder. (Note that forwarder must support DNSSEC for validation
6617	  to succeed).
6618
661923 May 2008: Wouter
6620	- mingw32 porting.
6621	  - test for sys/wait.h
6622	  - WSAEWOULDBLOCK test after nonblocking TCP connect.
6623	  - write_iov_buffer removed: unused and no struct iov on windows.
6624	  - signed/unsigned warning fixup mini_event.
6625	  - use ioctlsocket to set nonblocking I/O if fnctl is unavailable.
6626	  - skip signals that are not defined
6627	  - detect pwd.h.
6628	  - detect getpwnam, getrlimit, setsid, sbrk, chroot.
6629	  - default config has no chroot if chroot() unavailable.
6630	  - if no kill() then no pidfile is read or written.
6631	  - gmtime_r is replaced by nonthreadsafe alternative if unavail.
6632	    used in rrsig time validation errors.
6633
663422 May 2008: Wouter
6635	- contrib unbound.spec from Patrick Vande Walle.
6636	- fixup bug#175: call tzset before chroot to have correct timestamps
6637	  in system log.
6638	- do not generate lex input and lex unput functions.
6639	- mingw port. replacement functions labelled _unbound.
6640	- fix bug 174 - check for tcp_sigpipe that ldns-testns is installed.
6641
664219 May 2008: Wouter
6643	- fedora 9, check in6_pktinfo define in configure.
6644	- CREDITS fixup of history.
6645	- ignore ldns-1.2.2 if installed, use builtin 1.3.0-pre alternative.
6646
664716 May 2008: Wouter
6648	- fixup for MacOSX hosts file reading (reported by John Dickinson).
6649	- created 1.0.0 svn tag.
6650	- trunk version 1.0.1.
6651
665214 May 2008: Wouter
6653	- accepted patch from Ondrej Sury for library version libtool option.
6654	- configure --disable-rpath fixes up libtool for rpath trouble.
6655	  Adapted from debian package patch file.
6656
665713 May 2008: Wouter
6658	- Added root ipv6 addresses to builtin root hints.
6659	- TODO modified for post 1.0 plans.
6660	- trunk version set to 1.0.0.
6661	- no unnecessary linking with librt (only when libevent/libev used).
6662
66637 May 2008: Wouter
6664	- fixup no-ip4 problem with error callback in outside network.
6665
666625 April 2008: Wouter
6667	- DESTDIR is honored by the Makefile for rpms.
6668	- contrib files unbound.spec and unbound.init, builds working RPM
6669	  on FC7 Linux, a chrooted caching resolver, and libunbound.
6670	- iana ports update.
6671
667224 April 2008: Wouter
6673	- chroot checks improved. working directory relative to chroot.
6674	  checks if config file path is inside chroot. Documentation on it.
6675	- nicer example.conf text.
6676	- created 0.11 tag.
6677
667823 April 2008: Wouter
6679	- parseunbound.pl contrib update from Kai Storbeck for threads.
6680	- iana ports update
6681
668222 April 2008: Wouter
6683	- ignore SIGPIPE.
6684	- unit test for SIGPIPE ignore.
6685
668621 April 2008: Wouter
6687	- FEATURES document.
6688	- fixup reread of config file if it was given as a full path
6689	  and chroot was used.
6690
669116 April 2008: Wouter
6692	- requirements doc, updated clean query returns.
6693	- parseunbound.pl update from Kai Storbeck.
6694	- sunos4 porting changes.
6695
669615 April 2008: Wouter
6697	- fixup default rc.d pidfile location to /usr/local/etc.
6698	- iana ports updated.
6699	- copyright updated in ldns-testpkts to keep same as in ldns.
6700	- fixup checkconf chroot tests a bit more, chdir must be inside
6701	  chroot dir.
6702	- documented 'gcc: unrecognized -KPIC option' errors on Solaris.
6703	- example.conf values changed to /usr/local/etc/unbound
6704	- DSA test work.
6705	- DSA signatures: unbound is compatible with both encodings found.
6706	  It will detect and convert when necessary.
6707
670814 April 2008: Wouter
6709	- got update for parseunbound.pl statistics script from Kai Storbeck.
6710	- tpkg tests for udp wait list.
6711	- documented 0x20 status.
6712	- fixup chroot and checkconf, it is much smarter now.
6713	- fixup DSA EVP signature decoding. Solution that Jelte found copied.
6714	- and check first sig byte for the encoding type.
6715
671611 April 2008: Wouter
6717	- random port selection out of the configged ports.
6718	- fixup threadsafety for libevent-1.4.3+ (event_base_get_method).
6719	- removed base_port.
6720	- created 256-port ephemeral space for the OS, 59802 available.
6721	- fixup consistency of port_if out array during heavy use.
6722
672310 April 2008: Wouter
6724	- --with-libevent works with latest libevent 1.4.99-trunk.
6725	- added log file statistics perl script to contrib.
6726	- automatic iana ports update from makefile. 60058 available.
6727
67289 April 2008: Wouter
6729	- configure can detect libev(from its build directory) when passed
6730	  --with-libevent=/home/wouter/libev-3.2
6731	  libev-3.2 is a little faster than libevent-1.4.3-stable (about 5%).
6732	- unused commpoints not listed in epoll list.
6733	- statistics-cumulative option so that the values are not reset.
6734	- config creates array of available ports, 61841 available,
6735	  it excludes <1024 and iana assigned numbers.
6736	  config statements to modify the available port numbers.
6737
67388 April 2008: Wouter
6739	- unbound tries to set the ulimit fds when started as server.
6740	  if that does not work, it will scale back its requirements.
6741
674227 March 2008: Wouter
6743	- documented /dev/random symlink from chrootdir as FAQ entry.
6744
674526 March 2008: Wouter
6746	- implemented AD bit signaling. If a query sets AD bit (but not DO)
6747	  then the AD bit is set in the reply if the answer validated.
6748	  Without including DNSSEC signatures. Useful if you have a trusted
6749	  path from the client to the resolver. Follows dnssec-updates draft.
6750
675125 March 2008: Wouter
6752	- implemented check that for NXDOMAIN and NOERROR answers a query
6753	  section must be present in the reply (by the scrubber). And it must
6754	  be equal to the question sent, at least lowercase folded.
6755	  Previously this feature happened because the cache code refused
6756	  to store such messages. However blocking by the scrubber makes
6757	  sure nothing gets into the RRset cache. Also, this looks like a
6758	  timeout (instead of an allocation failure) and this retries are
6759	  done (which is useful in a spoofing situation).
6760	- RTT banding. Band size 400 msec, this makes band around zero (fast)
6761	  include unknown servers. This makes unbound explore unknown servers.
6762
67637 March 2008: Wouter
6764	- -C config feature for harvest program.
6765	- harvest handles CNAMEs too.
6766
67675 March 2008: Wouter
6768	- patch from Hugo Koji Kobayashi for iterator logs spelling.
6769
67704 March 2008: Wouter
6771	- From report by Jinmei Tatuya, rfc2181 trust value for remainder
6772	  of a cname trust chain is lower; not full answer_AA.
6773	- test for this fix.
6774	- default config file location is /usr/local/etc/unbound.
6775	  Thus prefix is used to determine the location. This is also the
6776	  chroot and pidfile default location.
6777
67783 March 2008: Wouter
6779	- Create 0.10 svn tag.
6780	- 0.11 version in trunk.
6781	- indentation nicer.
6782
678329 February 2008: Wouter
6784	- documentation update.
6785	- fixup port to Solaris of perf test tool.
6786	- updated ldns-tarball with decl-after-statement fixes.
6787
678828 February 2008: Wouter
6789	- fixed memory leaks in libunbound (during cancellation and wait).
6790	- libunbound returns the answer packet in full.
6791	- snprintf compat update.
6792	- harvest performs lookup.
6793	- ldns-tarball update with fix for ldns_dname_label.
6794	- installs to sbin by default.
6795	- install all manual pages (unbound-host and libunbound too).
6796
679727 February 2008: Wouter
6798	- option to use caps for id randomness.
6799	- config file option use-caps-for-id: yes
6800	- harvest debug tool
6801
680226 February 2008: Wouter
6803	- delay utility delays TCP as well. If the server that is forwarded
6804	  to has a TCP error, the delay utility closes the connection.
6805	- delay does REUSE_ADDR, and can handle a server that closes its end.
6806	- answers use casing from query.
6807
680825 February 2008: Wouter
6809	- delay utility works. Gets decent thoughput too (>20000).
6810
681122 February 2008: Wouter
6812	- +2% for recursions, if identical queries (except for destination
6813	  and query ID) in the reply list, avoid re-encoding the answer.
6814	- removed TODO items for optimizations that do not show up in
6815	  profile reports.
6816	- default is now minievent - not libevent. As its faster and
6817	  not needed for regular installs, only for very large port ranges.
6818	- loop check different speedup pkt-dname-reading, 1% faster for
6819	  nocache-recursion check.
6820	- less hashing during msg parse, 4% for recursion.
6821	- small speed fix for dname_count_size_labels, +1 or +2% recursion.
6822	- some speed results noted:
6823	  optimization resulted in +40% for recursion (cache miss) and
6824	  +70 to +80 for cache hits, and +96% for version.bind.
6825	  zone nsec3 example, 100 NXDOMAIN queries, NSD 35182.8 Ub 36048.4
6826	  www.nlnetlabs.nl from cache: BIND 8987.99 Ub 31218.3
6827	  www with DO bit set : BIND 8269.31 Ub 28735.6 qps.
6828	  So, unbound can be about equal qps to NSD in cache hits.
6829	  And about 3.4x faster than BIND in cache performance.
6830	- delay utility for testing.
6831
683221 February 2008: Wouter
6833	- speedup of root-delegation message encoding by 15%.
6834	- minor speedup of compress tree_lookup, maybe 1%.
6835	- speedup of dname_lab_cmp and memlowercmp - the top functions in
6836	  profiler output, maybe a couple percent when it matters.
6837
683820 February 2008: Wouter
6839	- setup speec_cache for need-ldns-testns in dotests.
6840	- check number of queued replies on incoming queries to avoid overload
6841	  on that account.
6842	- fptr whitelist checks are not disabled in optimize mode.
6843	- do-daemonize config file option.
6844	- minievent time share initializes time at start.
6845	- updated testdata for nsec3 new algorithm numbers (6, 7).
6846	- small performance test of packet encoding (root delegation).
6847
684819 February 2008: Wouter
6849	- applied patch to unbound-host man page from Jan-Piet Mens.
6850	- fix donotquery-localhost: yes default (it erroneously was switched
6851	  to default 'no').
6852	- time is only gotten once and the value is shared across unbound.
6853	- unittest cleans up crypto, so that it has no memory leaks.
6854	- mini_event shares the time value with unbound this results in
6855	  +3% speed for cache responses and +9% for recursions.
6856	- ldns tarball update with new NSEC3 sign code numbers.
6857	- perform several reads per UDP operation. This improves performance
6858	  in DoS conditions, and costs very little in normal conditions.
6859	  improves cache response +50%, and recursions +10%.
6860	- modified asynclook test. because the callback from async is not
6861	  in any sort of lock (and thus can use all library functions freely),
6862	  this causes a tiny race condition window when the last lock is
6863	  released for a callback and a new cancel() for that callback.
6864	  The only way to remove this is by putting callbacks into some
6865	  lock window. I'd rather have the small possibility of a callback
6866	  for a cancelled function then no use of library functions in
6867	  callbacks. Could be possible to only outlaw process(), wait(),
6868	  cancel() from callbacks, by adding another lock, but I'd rather not.
6869
687018 February 2008: Wouter
6871	- patch to unbound-host from Jan-Piet Mens.
6872	- unbound host prints errors if fails to configure context.
6873	- fixup perf to resend faster, so that long waiting requests do
6874	  not hold up the queue, they become lost packets or SERVFAILs,
6875	  or can be sent a little while later (i.e. processing time may
6876	  take long, but throughput has to be high).
6877	- fixup iterator operating in no cache conditions (RD flag unset
6878	  after a CNAME).
6879	- streamlined code for RD flag setting.
6880	- profiled code and changed dname compares to be faster.
6881	  The speedup is about +3% to +8% (depending on the test).
6882	- minievent tests for eintr and eagain.
6883
688415 February 2008: Wouter
6885	- added FreeBSD rc.d script to contrib.
6886	- --prefix option for configure also changes directory: pidfile:
6887	  and chroot: defaults in config file.
6888	- added cache speed test, for cache size OK and cache too small.
6889
689014 February 2008: Wouter
6891	- start without a config file (will complain, but start with
6892	  defaults).
6893	- perf test program works.
6894
689513 February 2008: Wouter
6896	- 0.9 released.
6897	- 1.0 development. Printout ldns version on unbound -h.
6898	- start of perf tool.
6899	- bugfix to read empty lines from /etc/hosts.
6900
690112 February 2008: Wouter
6902	- fixup problem with configure calling itself if ldns-src tarball
6903	  is not present.
6904
690511 February 2008: Wouter
6906	- changed library to use ub_ instead of ub_val_ as prefix.
6907	- statistics output text nice.
6908	- etc/hosts handling.
6909	- library function to put logging to a stream.
6910	- set any option interface.
6911
69128 February 2008: Wouter
6913	- test program for multiple queries over a TCP channel.
6914	- tpkg test for stream tcp queries.
6915	- unbound replies to multiple TCP queries on a TCP channel.
6916	- fixup misclassification of root referral with NS in answer
6917	  when validating a nonrec query.
6918	- tag 0.9
6919	- layout of manpages, spelling fix in header, manpages process by
6920	  makedist, list asynclook and tcpstream tests as ldns-testns
6921	  required.
6922
69237 February 2008: Wouter
6924	- moved up all current level 2 to be level 3. And 3 to 4.
6925	  to make room for new debug level 2 for detailed information
6926	  for operators.
6927	- verbosity level 2. Describes recursion and validation.
6928	- cleaner configure script and fixes for libevent solaris.
6929	- signedness for log output memory sizes in high verbosity.
6930
69316 February 2008: Wouter
6932	- clearer explanation of threading configure options.
6933	- fixup asynclook test for nothreading (it creates only one process
6934	  to do the extended test).
6935	- changed name of ub_val_result_free to ub_val_resolve_free.
6936	- removes warning message during library linking, renamed
6937	  libunbound/unbound.c -> libunbound.c and worker to libworker.
6938	- fallback without EDNS if result is NOTIMPL as well as on FORMERR.
6939
69405 February 2008: Wouter
6941	- statistics-interval: seconds option added.
6942	- test for statistics option
6943	- ignore errors making directories, these can occur in parallel builds
6944	- fixup Makefile strip command and libunbound docs typo.
6945
694631 January 2008: Wouter
6947	- bg thread/process reads and writes the pipe nonblocking all the time
6948	  so that even if the pipe is buffered or so, the bg thread does not
6949	  block, and services both pipes and queries.
6950
695130 January 2008: Wouter
6952	- check trailing / on chrootdir in checkconf.
6953	- check if root hints and anchor files are in chrootdir.
6954	- no route to host tcp error is verbosity level 2.
6955	- removed unused send_reply_iov. and its configure check.
6956	- added prints of 'remote address is 1.2.3.4 port 53' to errors
6957	  from netevent; the basic socket errors.
6958
695928 January 2008: Wouter
6960	- fixup uninit use of buffer by libunbound (query id, flags) for
6961	  local_zone answers.
6962	- fixup uninit warning from random.c; also seems to fix sporadic
6963	  sigFPE coming out of openssl.
6964	- made openssl entropy warning more silent for library use. Needs
6965	  verbosity 1 now.
6966	- fixup forgotten locks for rbtree_searches on ctx->query tree.
6967	- random generator cleanup - RND_STATE_SIZE removed, and instead
6968	  a super-rnd can be passed at init to chain init random states.
6969	- test also does lock checks if available.
6970	- protect config access in libworker_setup().
6971	- libevent doesn't like comm_base_exit outside of runloop.
6972	- close fds after removing commpoints only (for epoll, kqueue).
6973
697425 January 2008: Wouter
6975	- added tpkg for asynclook and library use.
6976	- allows localhost to be queried when as a library.
6977	- fixup race condition between cancel and answer (in case of
6978	  really fast answers that beat the cancel).
6979	- please doxygen, put doxygen comment in one place.
6980	- asynclook -b blocking mode and test.
6981	- refactor asynclook, nicer code.
6982	- fixup race problems from opensll in rand init from library, with
6983	  a mutex around the rand init.
6984	- fix pass async_id=NULL to _async resolve().
6985	- rewrote _wait() routine, so that it is threadsafe.
6986	- cancelation is threadsafe.
6987	- asynclook extended test in tpkg.
6988	- fixed two races where forked bg process waits for (somehow shared?)
6989	  locks, so does not service the query pipe on the bg side.
6990	  Now those locks are only held for fg_threads and for bg_as_a_thread.
6991
699224 January 2008: Wouter
6993	- tested the cancel() function.
6994	- asynclook -c (cancel) feature.
6995	- fix fail to allocate context actions.
6996	- make pipe nonblocking at start.
6997	- update plane for retry mode with caution to limit bandwidth.
6998	- fix Makefile for concurrent make of unbound-host.
6999	- renamed ub_val_ctx_wait/poll/process/fd to ub_val*.
7000	- new calls to set forwarding added to header and docs.
7001
700223 January 2008: Wouter
7003	- removed debug prints from if-auto, verb-algo enables some.
7004	- libunbound QUIT setup, remove memory leaks, when using threads
7005	  will share memory for passing results instead of writing it over
7006	  the pipe, only writes ID number over the pipe (towards the handler
7007	  thread that does process() ).
7008
700922 January 2008: Wouter
7010	- library code for async in libunbound/unbound.c.
7011	- fix link testbound.
7012	- fixup exit bug in mini_event.
7013	- background worker query enter and result functions.
7014	- bg query test application asynclook, it looks up multiple
7015	  hostaddresses (A records) at the same time.
7016
701721 January 2008: Wouter
7018	- libworker work, netevent raw commpoints, write_msg, serialize.
7019
702018 January 2008: Wouter
7021	- touch up of manpage for libunbound.
7022	- support for IP_RECVDSTADDR (for *BSD ip4).
7023	- fix for BSD, do not use ip4to6 mapping, make two sockets, once
7024	  ip6 and once ip4, uses socket options.
7025	- goodbye ip4to6 mapping.
7026	- update ldns-testpkts with latest version from ldns-trunk.
7027	- updated makedist for relative ldns pathnames.
7028	- library API with more information inside the result structure.
7029	- work on background resolves.
7030
703117 January 2008: Wouter
7032	- fixup configure in case -lldns is installed.
7033	- fixup a couple of doxygen warnings, about enum variables.
7034	- interface-automatic now copies the interface address from the
7035	  PKT_INFO structure as well.
7036	- manual page with library API, all on one page 'man libunbound'.
7037	- rewrite of PKTINFO structure, it also captures IP4 PKTINFO.
7038
703916 January 2008: Wouter
7040	- incoming queries to the server with TC bit on are replied FORMERR.
7041	- interface-automatic replied the wrong source address on localhost
7042	  queries. Seems to be due to ifnum=0 in recvmsg PKTINFO. Trying
7043	  to use ifnum=-1 to mean 'no interface, use kernel route'.
7044
704515 January 2008: Wouter
7046	- interface-automatic feature. experimental. Nice for anycast.
7047	- tpkg test for ip6 ancillary data.
7048	- removed debug prints.
7049	- porting experience, define for Solaris, test refined for BSD
7050	  compatibility. The feature probably will not work on OpenBSD.
7051	- makedist fixup for ldns-src in build-dir.
7052
705314 January 2008: Wouter
7054	- in no debug sets NDEBUG to remove asserts.
7055	- configure --enable-debug is needed for dependency generation
7056	  for assertions and for compiler warnings.
7057	- ldns.tgz updated with ldns-trunk (where buffer.h is updated).
7058	- fix lint, unit test in optimize mode.
7059	- default access control allows ::ffff:127.0.0.1 v6mapped localhost.
7060
706111 January 2008: Wouter
7062	- man page, warning removed.
7063	- added text describing the use of stub zones for private zones.
7064	- checkconf tests for bad hostnames (IP address), and for doubled
7065	  interface lines.
7066	- memory sizes can be given with 'k', 'Kb', or M or G appended.
7067
706810 January 2008: Wouter
7069	- typo in example.conf.
7070	- made using ldns-src that is included the package more portable
7071	  by linking with .lo instead of .o files in the ldns package.
7072	- nicer do-ip6: yes/no documentation.
7073	- nicer linking of libevent .o files.
7074	- man pages render correctly on solaris.
7075
70769 January 2008: Wouter
7077	- fixup openssl RAND problem, when the system is not configured to
7078	  give entropy, and the rng needs to be seeded.
7079
70808 January 2008: Wouter
7081	- print median and quartiles with extensive logging.
7082
70834 January 2008: Wouter
7084	- document misconfiguration in private network.
7085
70862 January 2008: Wouter
7087	- fixup typo in requirements.
7088	- document that 'refused' is a better choice than 'drop' for
7089	  the access control list, as refused will stop retries.
7090
70917 December 2007: Wouter
7092	- unbound-host has a -d option to show what happens. This can help
7093	  with debugging (why do I get this answer).
7094	- fixup CNAME handling, on nodata, sets and display canonname.
7095	- dot removed from CNAME display.
7096	- respect -v for NXDOMAINs.
7097	- updated ldns-src.tar.gz with ldns-trunk today (1.2.2 fixes).
7098	- size_t to int for portability of the header file.
7099	- fixup bogus handling.
7100	- dependencies and lint for unbound-host.
7101
71026 December 2007: Wouter
7103	- library resolution works in foreground mode, unbound-host app
7104	  receives data.
7105	- unbound-host prints rdata using ldns.
7106	- unbound-host accepts trust anchors, and prints validation
7107	  information when you give -v.
7108
71095 December 2007: Wouter
7110	- locking in context_new() inside the function.
7111	- setup of libworker.
7112
71134 December 2007: Wouter
7114	- minor Makefile fixup.
7115	- moved module-stack code out of daemon/daemon into services/modstack,
7116	  preparing for code-reuse.
7117	- move context into own header file.
7118	- context query structure.
7119	- removed unused variable pwd from checkconf.
7120	- removed unused assignment from outside netw.
7121	- check timeval length of string.
7122	- fixup error in val_utils getsigner.
7123	- fixup same (*var) error in netblocktostr.
7124	- fixup memleak on parse error in localzone.
7125	- fixup memleak on packet parse error.
7126	- put ; after union in parser.y.
7127	- small hardening in iter_operate against iq==NULL.
7128	- hardening, if error reply with rcode=0 (noerror) send servfail.
7129	- fixup same (*var) error in find_rrset in msgparse, was harmless.
7130	- check return value of evtimer_add().
7131	- fixup lockorder in lruhash_reclaim(), building up a list of locked
7132	  entries one at a time. Instead they are removed and unlocked.
7133	- fptr_wlist for markdelfunc.
7134	- removed is_locked param from lruhash delkeyfunc.
7135	- moved bin_unlock during bin_split purely to please.
7136
71373 December 2007: Wouter
7138	- changed checkconf/ to smallapp/ to make room for more support tools.
7139	  (such as unbound-host).
7140	- install dirs created with -m 755 because they need to be accessible.
7141	- library extensive featurelist added to TODO.
7142	- please doxygen, lint.
7143	- library test application, with basic functionality.
7144	- fix for building in a subdirectory.
7145	- link lib fix for Leopard.
7146
714730 November 2007: Wouter
7148	- makefile that creates libunbound.la, basic file or libunbound.a
7149	  when creating static executables (no libtool).
7150	- more API setup.
7151
715229 November 2007: Wouter
7153	- 0.9 public API start.
7154
715528 November 2007: Wouter
7156	- Changeup plan for 0.8 - no complication needed, a simple solution
7157	  has been chosen for authoritative features.
7158	- you can use single quotes in the config file, so it is possible
7159	  to specify TXT records in local data.
7160	- fixup small memory problem in implicit transparent zone creation.
7161	- test for implicit zone creation and multiple RR RRsets local data.
7162	- local-zone nodefault test.
7163	- show testbound testlist on commit.
7164	- iterator normalizer changes CNAME chains ending in NXDOMAIN where
7165	  the packet got rcode NXDOMAIN into rcode NOERROR. (since the initial
7166	  domain exists).
7167	- nicer verbosity: 0 and 1 levels.
7168	- lower nonRDquery chance of eliciting wrongly typed validation
7169	  requiring message from the cache.
7170	- fix for nonRDquery validation typing; nodata is detected when
7171	  SOA record in auth section (all validation-requiring nodata messages
7172	  have a SOA record in authority, so this is OK for the validator),
7173	  and NS record is needed to be a referral.
7174	- duplicate checking when adding NSECs for a CNAME, and test.
7175	- created svn tag 0.8, after completing testbed tests.
7176
717727 November 2007: Wouter
7178	- per suggestion in rfc2308, replaced default max-ttl value with 1 day.
7179	- set size of msgparse lookup table to 32, from 1024, so that its size
7180	  is below the 2048 regional large size threshold, and does not cause
7181	  a call to malloc when a message is parsed.
7182	- update of memstats tool to print number of allocation calls.
7183	  This is what is taking time (not space) and indicates the avg size
7184	  of the allocations as well. region_alloc stat is removed.
7185
718622 November 2007: Wouter
7187	- noted EDNS in-the-middle dropping trouble as a TODO.
7188	  At this point theoretical, no user trouble has been reported.
7189	- added all default AS112 zones.
7190	- answers from local zone content.
7191		* positive answer, the rrset in question
7192		* nodata answer (exist, but not that type).
7193		* nxdomain answer (domain does not exist).
7194		* empty-nonterminal answer.
7195		* But not: wildcard, nsec, referral, rrsig, cname/dname,
7196			or additional section processing, NS put in auth.
7197	- test for correct working of static and transparent and couple
7198	  of important defaults (localhost, as112, reverses).
7199	  Also checks deny and refuse settings.
7200	- fixup implicit zone generation and AA bit for NXDOMAIN on localdata.
7201
720221 November 2007: Wouter
7203	- local zone internal data setup.
7204
720520 November 2007: Wouter
7206	- 0.8 - str2list config support for double string config options.
7207	- local-zone and local-data options, config storage and documentation.
7208
720919 November 2007: Wouter
7210	- do not downcase NSEC and RRSIG for verification. Follows
7211	  draft-ietf-dnsext-dnssec-bis-updates-06.txt.
7212	- fixup leaking unbound daemons at end of tests.
7213	- README file updated.
7214	- nice libevent not found error.
7215	- README talks about gnu make.
7216	- 0.8: unit test for addr_mask and fixups for it.
7217	  and unit test for addr_in_common().
7218	- 0.8: access-control config file element.
7219	  and unit test rpl replay file.
7220	- 0.8: fixup address reporting from netevent.
7221
722216 November 2007: Wouter
7223	- privilege separation is not needed in unbound at this time.
7224	  TODO item marked as such.
7225	- created beta-0.7 branch for support.
7226	- tagged 0.7 for beta release.
7227	- moved trunk to 0.8 for 0.8(auth features) development.
7228	- 0.8: access control list setup.
7229
723015 November 2007: Wouter
7231	- review fixups from Jelte.
7232
723314 November 2007: Wouter
7234	- testbed script does not recreate configure, since its in svn now.
7235	- fixup checkconf test so that it does not test
7236	  /etc/unbound/unbound.conf.
7237	- tag 0.6.
7238
723913 November 2007: Wouter
7240	- remove debug print.
7241	- fixup testbound exit when LIBEVENT_SIGNAL_PROBLEM exists.
7242
724312 November 2007: Wouter
7244	- fixup signal handling where SIGTERM could be ignored if a SIGHUP
7245	  arrives later on.
7246	- bugreports to unbound-bugs@nlnetlabs.nl
7247	- fixup testbound so it exits cleanly.
7248	- cleanup the caches on a reload, so that rrsetID numbers won't clash.
7249
72509 November 2007: Wouter
7251	- took ldns snapshot in repo.
7252	- default config file is /etc/unbound/unbound.conf.
7253	  If it doesn't exist, it is installed with the doc/example.conf file.
7254	  The file is not deleted on uninstall.
7255	- default listening is not all, but localhost interfaces.
7256
72578 November 2007: Wouter
7258	- Fixup chroot and drop user privileges.
7259	- new L root ip address in default hints.
7260
72611 November 2007: Wouter
7262	- Fixup of crash on reload, due to anchors in env not NULLed after
7263	  dealloc during deinit.
7264	- Fixup of chroot call. Happens after privileges are dropped, so
7265	  that checking the passwd entry still works.
7266	- minor touch up of clear() hashtable function.
7267	- VERB_DETAIL prints out what chdir, username, chroot is being done.
7268	- when id numbers run out, caches are cleared, as in design notes.
7269	  Tested with a mock setup with very few bits in id, it worked.
7270	- harden-dnssec-stripped: yes is now default. It insists on dnssec
7271	  data for trust anchors. Included tests for the feature.
7272
727331 October 2007: Wouter
7274	- cache-max-ttl config option.
7275	- building outside sourcedir works again.
7276	- defaults more secure:
7277		username: "unbound"
7278		chroot: "/etc/unbound"
7279	  The operator can override them to be less secure ("") if necessary.
7280	- fix horrible oversight in sorting rrset references in a message,
7281	  sort per reference key pointer, not on referencepointer itself.
7282	- pidfile: "/etc/unbound/unbound.pid" is now the default.
7283	- tests changed to reflect the updated default.
7284	- created hashtable clear() function that respects locks.
7285
728630 October 2007: Wouter
7287	- fixup assertion failure that relied on compressed names to be
7288	  smaller than uncompressed names. A packet from comrite.com was seen
7289	  to be compressed to a larger size. Added it as unit test.
7290	- quieter logging at low verbosity level for common tcp messages.
7291	- no greedy TTL update.
7292
729323 October 2007: Wouter
7294	- fixup (grand-)parent problem for dnssec-lameness detection.
7295	- fixup tests to do additional section processing for lame replies,
7296	  since the detection needs that.
7297	- no longer trust in query section in reply during dnssec lame detect.
7298	- dnssec lameness does not make the server never ever queried, but
7299	  non-preferred. If no other servers exist or answer, the dnssec lame
7300	  server is used; the fastest dnssec lame server is chosen.
7301	- added test then when trust anchor cannot be primed (nodata), the
7302	  insecure mode from unbound works.
7303	- Fixup max queries per thread, any more are dropped.
7304
730522 October 2007: Wouter
7306	- added donotquerylocalhost config option. Can be turned off for
7307	  out test cases.
7308	- ISO C compat changes.
7309	- detect RA-no-AA lameness, as LAME.
7310	- DNSSEC-lameness detection, as LAME.
7311	  See notes in requirements.txt for choices made.
7312	- tests for lameness detection.
7313	- added all to make test target; need unbound for fwd tests.
7314	- testbound does not pollute /etc/unbound.
7315
731619 October 2007: Wouter
7317	- added configure (and its files) to svn, so that the trunk is easier
7318	  to use. ./configure, config.guess, config.sub, ltmain.sh,
7319	  and config.h.in.
7320	- added yacc/lex generated files, util/configlexer.c,
7321	  util/configparser.c util/configparser.h, to svn.
7322	- without lex no attempt to use it.
7323	- unsecure response validation collated into one block.
7324	- remove warning about const cast of cfgfile name.
7325	- outgoing-interfaces can be different from service interfaces.
7326	- ldns-src configure is done during unbound configure and
7327	  ldns-src make is done during unbound make, and so inherits the
7328	  make arguments from the unbound make invocation.
7329	- nicer error when libevent problem causes instant exit on signal.
7330	- read root hints from a root hint file (like BIND does).
7331
733218 October 2007: Wouter
7333	- addresses are logged with errors.
7334	- fixup testcode fake event to remove pending before callback
7335	  since the callback may create new pending items.
7336	- tests updated because retries are now in iterator module.
7337	- ldns-testpkts code is checked for differences between unbound
7338	  and ldns by makedist.sh.
7339	- ldns trunk from today added in svn repo for fallback in case
7340	  no ldns is installed on the system.
7341	  make download_ldns refreshes the tarball with ldns svn trunk.
7342	- ldns-src.tar.gz is used if no ldns is found on the system, and
7343	  statically linked into unbound.
7344	- start of regional allocator code.
7345	- regional uses less memory and variables, simplified code.
7346	- remove of region-allocator.
7347	- alloc cache keeps a cache of recently released regional blocks,
7348	  up to a maximum.
7349	- make unit test cleanly free memory.
7350
735117 October 2007: Wouter
7352	- fixup another cycle detect and ns-addr timeout resolution bug.
7353	  This time by refusing delegations from the cache without addresses
7354	  when resolving a mandatory-glue nameserver-address for that zone.
7355	  We're going to have to ask a TLD server anyway; might as well be
7356	  the TLD server for this name. And this resolves a lot of cases where
7357	  the other nameserver names lead to cycles or are not available.
7358	- changed random generator from random(3) clone to arc4random wrapped
7359	  for thread safety. The random generator is initialised with
7360	  entropy from the system.
7361	- fix crash where failure to prime DNSKEY tried to print null pointer
7362	  in the log message.
7363	- removed some debug prints, only verb_algo (4) enables them.
7364	- fixup test; new random generator took new paths; such as one
7365	  where no scripted answer was available.
7366	- mark insecure RRs as insecure.
7367	- fixup removal of nonsecure items from the additional.
7368	- reduced timeout values to more realistic, 376 msec (262 msec has
7369	  90% of roundtrip times, 512 msec has 99% of roundtrip times.)
7370	- server selection failover to next server after timeout (376 msec).
7371
737216 October 2007: Wouter
7373	- no malloc in log_hex.
7374	- assertions around system calls.
7375	- protect against gethostname without ending zero.
7376	- ntop output is null terminated by unbound.
7377	- pidfile content null termination
7378	- various snprintf use sizeof(stringbuf) instead of fixed constant.
7379	- changed loopdetect % 8 with & 0x7 since % can become negative for
7380	  weird negative input and particular interpretation of integer math.
7381	- dname_pkt_copy checks length of result, to protect result buffers.
7382	  prints an error, this should not happen. Bad strings should have
7383	  been rejected earlier in the program.
7384	- remove a size_t underflow from msgreply size func.
7385
738615 October 2007: Wouter
7387	- nicer warning.
7388	- fix IP6 TCP, wrong definition check. With test package.
7389	- fixup the fact that the query section was not compressed to,
7390	  the code was there but was called by value instead of by reference.
7391	  And test for the case, uses xxd and nc.
7392	- more portable ip6 check for sockaddr types.
7393
73948 October 2007: Wouter
7395	- --disable-rpath option in configure for 64bit systems with
7396	  several dynamic lib dirs.
7397
73987 October 2007: Wouter
7399	- fixup tests for no AD bit in non-DO queries.
7400	- test that makes sure AD bit is not set on non-DO query.
7401
74026 October 2007: Wouter
7403	- removed logfile open early. It did not have the proper permissions;
7404	  it was opened as root instead of the user. And we cannot change user
7405	  id yet, since chroot and bind ports need to be done.
7406	- callback checks for event callbacks done from mini_event. Because
7407	  of deletions cannot do this from netevent. This means when using
7408	  libevent the protection does not work on event-callbacks.
7409	- fixup too small reply (did not zero counts).
7410	- fixup reply no longer AD bit when query without DO bit.
7411
74125 October 2007: Wouter
7413	- function pointer whitelist.
7414
74154 October 2007: Wouter
7416	- overwrite sensitive random seed value after use.
7417	- switch to logfile very soon if not -d (console attached).
7418	- error messages do not reveal the trustanchor contents.
7419	- start work on function pointer whitelists.
7420
74213 October 2007: Wouter
7422	- fix for multiple empty nonterminals, after multiple DSes in the
7423	  chain of trust.
7424	- mesh checks if modules are looping, and stops them.
7425	- refetch with CNAMEd nameserver address regression test added.
7426	- fixup line count bug in testcode, so testbound prints correct line
7427	  number with parse errors.
7428	- unit test for multiple ENT case.
7429	- fix for cname out of validated unsec zone.
7430	- fixup nasty id=0 reuse. Also added assertions to detect its
7431	  return (the assertion catches in the existing test cases).
7432
74331 October 2007: Wouter
7434	- skip F77, CXX, objC tests in configure step.
7435	- fixup crash in refetch glue after a CNAME.
7436	  and protection against similar failures (with error print).
7437
743828 September 2007: Wouter
7439	- test case for unbound-checkconf, fixed so it also checks the
7440	  interface: statements.
7441
744226 September 2007: Wouter
7443	- SIGHUP will reopen the log file.
7444	- Option to log to syslog.
7445	- please lint, fixup tests (that went to syslog on open, oops).
7446	- config check program.
7447
744825 September 2007: Wouter
7449	- tests for NSEC3. Fixup bitmap checks for NSEC3.
7450	- positive ANY response needs to check if wildcard expansion, and
7451	  check that original data did not exist.
7452	- tests for NSEC3 that wrong use of OPTOUT is bad. For insecure
7453	  delegation, for abuse of child zone apex nsec3.
7454	- create 0.5 release tag.
7455
745624 September 2007: Wouter
7457	- do not make test programs by default.
7458	- But 'make test' will perform all of the tests.
7459	- Advertise builtin select libevent alternative when no libevent
7460	  is found.
7461	- signit can generate NSEC3 hashes, for generating tests.
7462	- multiple nsec3 parameters in message test.
7463	- too high nsec3 iterations becomes insecure test.
7464
746521 September 2007: Wouter
7466	- fixup empty_DS_name allocated in wrong region (port DEC Alpha).
7467	- fixup testcode lock safety (port FreeBSD).
7468	- removes subscript has type char warnings (port Solaris 9).
7469	- fixup of field with format type to int (port MacOS/X intel).
7470	- added test for infinite loop case in nonRD answer validation.
7471	  It was a more general problem, but hard to reproduce. When an
7472	  unsigned rrset is being validated and the key fetched, the DS
7473	  sequence is followed, but if the final name has no DS, then no
7474	  proof is possible - the signature has been stripped off.
7475
747620 September 2007: Wouter
7477	- fixup and test for NSEC wildcard with empty nonterminals.
7478	- makedist.sh fixup for svn info.
7479	- acl features request in plan.
7480	- improved DS empty nonterminal handling.
7481	- compat with ANS nxdomain for empty nonterminals. Attempts the nodata
7482	  proof anyway, which succeeds in ANS failure case.
7483	- striplab protection in case it becomes -1.
7484	- plans for static and blacklist config.
7485
748619 September 2007: Wouter
7487	- comments about non-packed usage.
7488	- plan for overload support in 0.6.
7489	- added testbound tests for a failed resolution from the logs
7490	  and for failed prime when missing glue.
7491	- fixup so useless delegation points are not returned from the
7492	  cache. Also the safety belt is used if priming fails to complete.
7493	- fixup NSEC rdata not to be lowercased, bind compat.
7494
749518 September 2007: Wouter
7496	- wildcard nsec3 testcases, and fixup to get correct wildcard name.
7497	- validator prints subtype classification for debug.
7498
749917 September 2007: Wouter
7500	- NSEC3 hash cache unit test.
7501	- validator nsec3 nameerror test.
7502
750314 September 2007: Wouter
7504	- nsec3 nodata proof, nods proof, wildcard proof.
7505	- nsec3 support for cname chain ending in noerror or nodata.
7506	- validator calls nsec3 proof routines if no NSECs prove anything.
7507	- fixup iterator bug where it stored the answer to a cname under
7508	  the wrong qname into the cache. When prepending the cnames, the
7509	  qname has to be reset to the original qname.
7510
751113 September 2007: Wouter
7512	- nsec3 find matching and covering, ce proof, prove namerror msg.
7513
751412 September 2007: Wouter
7515	- fixup of manual page warnings, like for NSD bugreport.
7516	- nsec3 work, config, max iterations, filter, and hash cache.
7517
75186 September 2007: Wouter
7519	- fixup to find libevent on mac port install.
7520	- fixup size_t vs unsigned portability in validator/sigcrypt.
7521	- please compiler on different platforms, for unreachable code.
7522	- val_nsec3 file.
7523	- pthread_rwlock type is optional, in case of old pthread libs.
7524
75255 September 2007: Wouter
7526	- cname, name error validator tests.
7527	- logging of qtype ANY works.
7528	- ANY type answers get RRSIG in answer section of replies (but not
7529	  in other sections, unless DO bit is on).
7530	- testbound can replay a TCP query (set MATCH TCP in the QUERY).
7531	- DS and noDS referral validation test.
7532	- if you configure many trust anchors, parent trust anchors can
7533	  securely deny existence of child trust anchors, if validated.
7534	- not all *.name NSECs are present because a wildcard was matched,
7535	  and *.name NSECs can prove nodata for empty nonterminals.
7536	  Also, for wildcard name NSECs, check they are not from the parent
7537	  zone (for wildcarded zone cuts), and check absence of CNAME bit,
7538	  for a nodata proof.
7539	- configure option for memory allocation debugging.
7540	- port configure option for memory allocation to solaris10.
7541
75424 September 2007: Wouter
7543	- fixup of Leakage warning when serviced queries processed multiple
7544	  callbacks for the same query from the same server.
7545	- testbound removes config file from /tmp on failed exit.
7546	- fixup for referral cleanup of the additional section.
7547	- tests for cname, referral validation.
7548	- neater testbound tpkg output.
7549	- DNAMEs no longer match their apex when synthesized from the cache.
7550	- find correct signer name for DNAME responses.
7551	- wildcarded DNAME test and fixup code to detect.
7552	- prepend NSEC and NSEC3 rrsets in the iterator while chasing CNAMEs.
7553	  So that wildcarded CNAMEs get their NSEC with them to the answer.
7554	- test for a CNAME to a DNAME to a CNAME to an answer, all from
7555	  different domains, for key fetching and signature checking of
7556	  CNAME'd messages.
7557
75583 September 2007: Wouter
7559	- Fixed error in iterator that would cause assertion failure in
7560	  validator. CNAME to a NXDOMAIN response was collated into a response
7561	  with both a CNAME and the NXDOMAIN rcode. Added a test that the
7562	  rcode is changed to NOERROR (because of the CNAME).
7563	- timeout on tcp does not lead to spurious leakage detect.
7564	- account memory for name of lame zones, so that memory leakages does
7565	  not show lame cache growth as a leakage growth.
7566	- config setting for lameness cache expressed in bytes, instead of
7567	  number of entries.
7568	- tool too summarize allocations per code line.
7569
757031 August 2007: Wouter
7571	- can read bind trusted-keys { ... }; files, in a compatibility mode.
7572	- iterator should not detach target queries that it still could need.
7573	  the protection against multiple outstanding queries is moved to a
7574	  current_query num check.
7575	- validator nodata, positive, referral tests.
7576	- dname print can print '*' wildcard.
7577
757830 August 2007: Wouter
7579	- fixup override date config option.
7580	- config options to control memory usage.
7581	- caught bad free of un-alloced data in worker_send error case.
7582	- memory accounting for key cache (trust anchors and temporary cache).
7583	- memory accounting fixup for outside network tcp pending waits.
7584	- memory accounting fixup for outside network tcp callbacks.
7585	- memory accounting for iterator fixed storage.
7586	- key cache size and slabs config options.
7587	- lib crypto cleanups at exit.
7588
758929 August 2007: Wouter
7590	- test tool to sign rrsets for testing validator with.
7591	- added RSA and DSA test keys, public and private pairs, 512 bits.
7592	- default configuration is with validation enabled.
7593	  Only a trust-anchor needs to be configured for DNSSEC to work.
7594	- do not convert to DER for DSA signature verification.
7595	- validator replay test file, for a DS to DNSKEY DSA key prime and
7596	  positive response.
7597
759828 August 2007: Wouter
7599	- removed double use for udp buffers, that could fail,
7600	  instead performs a malloc to do the backup.
7601	- validator validates referral messages, by validating all the rrsets
7602	  and stores the rrsets in the cache. Further referral (nonRD queries)
7603	  replies are made from the rrset cache directly. Unless unchecked
7604	  rrsets are encountered, there are then validated.
7605	- enforce that signing is done by a parent domain (or same domain).
7606	- adjust TTL downwards if rrset TTL bigger than signature allows.
7607	- permissive mode feature, sets AD bit for secure, but bogus does
7608	  not give servfail (bogus is changed into indeterminate).
7609	- optimization of rrset verification. rr canonical sorting is reused,
7610	  for the same rrset. canonical rrset image in buffer is reused for
7611	  the same signature.
7612	- if the rrset is too big (64k exactly + large owner name) the
7613	  canonicalization routine will fail if it does not fit in buffer.
7614	- faster verification for large sigsets.
7615	- verb_detail mode reports validation failures, but not the entire
7616	  algorithm for validation. Key prime failures are reported as
7617	  verb_ops level.
7618
761927 August 2007: Wouter
7620	- do not garble the edns if a cache answer fails.
7621	- answer norecursive from cache if possible.
7622	- honor clean_additional setting when returning secure non-recursive
7623	  referrals.
7624	- do not store referral in msg cache for nonRD queries.
7625	- store verification status in the rrset cache to speed up future
7626	  verification.
7627	- mark rrsets indeterminate and insecure if they are found to be so.
7628	  and store this in the cache.
7629
763024 August 2007: Wouter
7631	- message is bogus if unsecure authority rrsets are present.
7632	- val-clean-additional option, so you can turn it off.
7633	- move rrset verification out of the specific proof types into one
7634	  routine. This makes the proof routines prettier.
7635	- fixup cname handling in validator, cname-to-positive and cname-to-
7636	  nodata work.
7637	- Do not synthesize DNSKEY and DS responses from the rrset cache if
7638	  the rrset is from the additional section. Signatures may have
7639	  fallen off the packet, and cause validation failure.
7640	- more verbose signature date errors (with the date attached).
7641	- increased default infrastructure cache size. It is important for
7642	  performance, and 1000 entries are only 212k (or a 400 k total cache
7643	  size). To 10000 entries (for 2M entries, 4M cache size).
7644
764523 August 2007: Wouter
7646	- CNAME handling - move needs_validation to before val_new().
7647	  val_new() setups the chase-reply to be an edited copy of the msg.
7648	  new classification, and find signer can find for it.
7649	  removal of unsigned crap from additional, and query restart for
7650	  cname.
7651	- refuse to follow wildcarded DNAMEs when validating.
7652	  But you can query for qtype ANY, or qtype DNAME and validate that.
7653
765422 August 2007: Wouter
7655	- bogus TTL.
7656	- review - use val_error().
7657
765821 August 2007: Wouter
7659	- ANY response validation.
7660	- store security status in cache.
7661	- check cache security status and either send the query to be
7662	  validated, return the query to client, or send servfail to client.
7663	  Sets AD bit on validated replies.
7664	- do not examine security status on an error reply in mesh_done.
7665	- construct DS, DNSKEY messages from rrset cache.
7666	- manual page entry for override-date.
7667
766820 August 2007: Wouter
7669	- validate and positive validation, positive wildcard NSEC validation.
7670	- nodata validation, nxdomain validation.
7671
767218 August 2007: Wouter
7673	- process DNSKEY response in FINDKEY state.
7674
767517 August 2007: Wouter
7676	- work on DS2KE routine.
7677	- val_nsec.c for validator NSEC proofs.
7678	- unit test for NSEC bitmap reading.
7679	- dname iswild and canonical_compare with unit tests.
7680
768116 August 2007: Wouter
7682	- DS sig unit test.
7683	- latest release libevent 1.3c and 1.3d have threading fixed.
7684	- key entry fixup data pointer and ttl absolute.
7685	- This makes a key-prime succeed in validator, with DS or DNSKEY as
7686	  trust-anchor.
7687	- fixup canonical compare byfield routine, fix bug and also neater.
7688	- fixed iterator response type classification for queries of type
7689	  ANY and NS.
7690	  dig ANY gives sometimes NS rrset in AN and NS section, and parser
7691	  removes the NS section duplicate. dig NS gives sometimes the NS
7692	  in the answer section, as referral.
7693	- validator FINDKEY state.
7694
769515 August 2007: Wouter
7696	- crypto calls to verify signatures.
7697	- unit test for rrsig verification.
7698
769914 August 2007: Wouter
7700	- default outgoing ports changed to avoid port 2049 by default.
7701	  This port is widely blocked by firewalls.
7702	- count infra lameness cache in memory size.
7703	- accounting of memory improved
7704	- outbound entries are allocated in the query region they are for.
7705	- extensive debugging for memory allocations.
7706	- --enable-lock-checks can be used to enable lock checking.
7707	- protect undefs in config.h from autoheaders ministrations.
7708	- print all received udp packets. log hex will print on multiple
7709	  lines if needed.
7710	- fixed error in parser with backwards rrsig references.
7711	- mark cycle targets for iterator did not have CD flag so failed
7712	  its task.
7713
771413 August 2007: Wouter
7715	- fixup makefile, if lexer is missing give nice error and do not
7716	  mess up the dependencies.
7717	- canonical compare routine updated.
7718	- canonical hinfo compare.
7719	- printout list of the queries that the mesh is working on.
7720
772110 August 2007: Wouter
7722	- malloc and free overrides that track total allocation and frees.
7723	  for memory debugging.
7724	- work on canonical sort.
7725
77269 August 2007: Wouter
7727	- canonicalization, signature checks
7728	- dname signature label count and unit test.
7729	- added debug heap size print to memory printout.
7730	- typo fixup in worker.c
7731	- -R needed on solaris.
7732	- validator override option for date check testing.
7733
77348 August 2007: Wouter
7735	- ldns _raw routines created (in ldns trunk).
7736	- sigcrypt DS digest routines
7737	- val_utils uses sigcrypt to perform signature cryptography.
7738	- sigcrypt keyset processing
7739
77407 August 2007: Wouter
7741	- security status type.
7742	- security status is copied when rdata is equal for rrsets.
7743	- rrset id is updated to invalidate all the message cache entries
7744	  that refer to NSEC, NSEC3, DNAME rrsets that have changed.
7745	- val_util work
7746	- val_sigcrypt file for validator signature checks.
7747
77486 August 2007: Wouter
7749	- key cache for validator.
7750	- moved isroot and dellabel to own dname routines, with unit test.
7751
77523 August 2007: Wouter
7753	- replanning.
7754	- scrubber check section of lame NS set.
7755	- trust anchors can be in config file or read from zone file,
7756	  DS and DNSKEY entries.
7757	- unit test trust anchor storage.
7758	- trust anchors converted to packed rrsets.
7759	- key entry definition.
7760
77612 August 2007: Wouter
7762	- configure change for latest libevent trunk version (needs -lrt).
7763	- query_done and walk_supers are moved out of module interface.
7764	- fixup delegation point duplicates.
7765	- fixup iterator scrubber; lame NS set is let through the scrubber
7766	  so that the classification is lame.
7767	- validator module exists, and does nothing but pass through,
7768	  with calling of next module and return.
7769	- validator work.
7770
77711 August 2007: Wouter
7772	- set version to 0.5
7773	- module work for module to module interconnections.
7774	- config of modules.
7775	- detect cycle takes flags.
7776
777731 July 2007: Wouter
7778	- updated plan
7779	- release 0.4 tag.
7780
778130 July 2007: Wouter
7782	- changed random state init, so that sequential process IDs are not
7783	  cancelled out by sequential thread-ids in the random number seed.
7784	- the fwd_three test, which sends three queries to unbound, and
7785	  unbound is kept waiting by ldns-testns for 3 seconds, failed
7786	  because the retry timeout for default by unbound is 3 seconds too,
7787	  it would hit that timeout and fail the test. Changed so that unbound
7788	  is kept waiting for 2 seconds instead.
7789
779027 July 2007: Wouter
7791	- removed useless -C debug option. It did not work.
7792	- text edit of documentation.
7793	- added doc/CREDITS file, referred to by the manpages.
7794	- updated planning.
7795
779626 July 2007: Wouter
7797	- cycle detection, for query state dependencies. Will attempt to
7798	  circumvent the cycle, but if no other targets available fails.
7799	- unit test for AXFR, IXFR response.
7800	- test for cycle detection.
7801
780225 July 2007: Wouter
7803	- testbound read ADDRESS and check it.
7804	- test for version.bind and friends.
7805	- test for iterator chaining through several referrals.
7806	- test and fixup for refetch for glue. Refetch fails if glue
7807	  is still not provided.
7808
780924 July 2007: Wouter
7810	- Example section in config manual.
7811	- Addr stored for range and moment in replay.
7812
781320 July 2007: Wouter
7814	- Check CNAME chain before returning cache entry with CNAMEs.
7815	- Option harden-glue, default is on. It will discard out of zone
7816	  data. If disabled, performance is faster, but spoofing attempts
7817	  become a possibility. Note that still normalize scrubbing is done,
7818	  and that the potentially spoofed data is used for infrastructure
7819	  and not returned to the client.
7820	- if glue times out, refetch by asking parent of delegation again.
7821	  Much like asking for DS at the parent side.
7822	- TODO items from forgery-resilience draft.
7823	  and on memory handling improvements.
7824	- renamed module_event_timeout to module_event_noreply.
7825	- memory reporting code; reports on memory usage after handling
7826	  a network packet (not on cache replies).
7827
782819 July 2007: Wouter
7829	- shuffle NS selection when getting nameserver target addresses.
7830	- fixup of deadlock warnings, yield cpu in checklock code so that
7831	  freebsd scheduler selects correct process to run.
7832	- added identity and version config options and replies.
7833	- store cname messages complete answers.
7834
783518 July 2007: Wouter
7836	- do not query addresses, 127.0.0.1, and ::1 by default.
7837
783817 July 2007: Wouter
7839	- forward zone options in config file.
7840	- forward per zone in iterator. takes precedence over stubs.
7841	- fixup commithooks.
7842	- removed forward-to and forward-to-port features, subsumed by
7843	  new forward zones.
7844	- fix parser to handle absent server: clause.
7845	- change untrusted rrset test to account for scrubber that is now
7846	  applied during the test (which removes the poison, by the way).
7847	- feature, addresses can be specified with @portnumber, like nsd.conf.
7848	- test config files changed over to new forwarder syntax.
7849
785027 June 2007: Wouter
7851	- delete of mesh does a postorder traverse of the tree.
7852	- found and fixed a memory leak. For TTL=0 messages, that would
7853	  not be cached, instead the msg-replyinfo structure was leaked.
7854	- changed server selection so it will filter out hosts that are
7855	  unresponsive. This is defined as a host with the maximum rto value.
7856	  This means that unbound tried the host for retries up to 120 secs.
7857	  The rto value will time out after host-ttl seconds from the cache.
7858	  This keeps such unresolvable queries from taking up resources.
7859	- utility for keeping histogram.
7860
786126 June 2007: Wouter
7862	- mesh is called by worker, and iterator uses it.
7863	  This removes the hierarchical code.
7864	  QueryTargets state and Finished state are merged for iterator.
7865	- forwarder mode no longer sets AA bit on first reply.
7866	- rcode in walk_supers is not needed.
7867
786825 June 2007: Wouter
7869	- more mesh work.
7870	- error encode routine for ease.
7871
787222 June 2007: Wouter
7873	- removed unused _node iterator value from rbtree_t. Takes up space.
7874	- iterator can handle querytargets state without a delegation point
7875	  set, so that a priming(stub) subquery error can be handled.
7876	- iterator stores if it is priming or not.
7877	- log_query_info() neater logging.
7878	- changed iterator so that it does not alter module_qstate.qinfo
7879	  but keeps a chase query info. Also query_flags are not altered,
7880	  the iterator uses chase_flags.
7881	- fixup crash in case no ports for the family exist.
7882
788321 June 2007: Wouter
7884	- Fixup secondary buffer in case of error callback.
7885	- cleanup slumber list of runnable states.
7886	- module_subreq_depth fails to work in slumber list.
7887	- fixup query release for cached results to sub targets.
7888	- neater error for tcp connection failure, shows addr in verbose.
7889	- rbtree_init so that it can be used with preallocated memory.
7890
789120 June 2007: Wouter
7892	- new -C option to enable coredumps after forking away.
7893	- doc update.
7894	- fixup CNAME generation by scrubber, and memory allocation of it.
7895	- fixup deletion of serviced queries when all callbacks delete too.
7896	- set num target queries to 0 when you move them to slumber list.
7897	- typo in check caused subquery errors to be ignored, fixed.
7898	- make lint happy about rlim_t.
7899	- freeup of modules after freeup of module-states.
7900	- duplicate replies work, this uses secondary udp buffer in outnet.
7901
790219 June 2007: Wouter
7903	- nicer layout in stats.c, review 0.3 change.
7904	- spelling improvement, review 0.3 change.
7905	- uncapped timeout for server selection, so that very fast or slow
7906	  servers will stand out from the rest.
7907	- target-fetch-policy: "3 2 1 0 0" config setting.
7908	- fixup queries answered without RD bit (for root prime results).
7909	- refuse AXFR and IXFR requests.
7910	- fixup RD flag in error reply from iterator. fixup RA flag from
7911	  worker error reply.
7912	- fixup encoding of very short edns buffer sizes, now sets TC bit.
7913	- config options harden-short-bufsize and harden-large-queries.
7914
791518 June 2007: Wouter
7916	- same, move subqueries to slumber list when first has resolved.
7917	- fixup last fix for duplicate callbacks.
7918	- another offbyone in targetcounter. Also in Java prototype by the way.
7919
792015 June 2007: Wouter
7921	- if a query asks to be notified of the same serviced query result
7922	  multiple times, this will succeed. Only one callback will happen;
7923	  multiple outbound-list entries result (but the double cleanup of it
7924	  will not matter).
7925	- when iterator moves on due to CNAME or referral, it will remove
7926	  the subqueries (for other targets). These are put on the slumber
7927	  list.
7928	- state module wait subq is OK with no new subqs, an old one may have
7929	  stopped, with an error, and it is still waiting for other ones.
7930	- if a query loops, halt entire query (easy way to clean up properly).
7931
793214 June 2007: Wouter
7933	- num query targets was > 0 , not >= 0 compared, so that fetch
7934	  policy of 0 did nothing.
7935
793613 June 2007: Wouter
7937	- debug option: configure --enable-static-exe for compile where
7938	  ldns and libevent are linked statically. Default is off.
7939	- make install and make uninstall. Works with static-exe and without.
7940	  installation of unbound binary and manual pages.
7941	- alignment problem fix on solaris 64.
7942	- fixup address in case of TCP error.
7943
794412 June 2007: Wouter
7945	- num target queries was set to 0 at a bad time. Default it to 0 and
7946	  increase as target queries are done.
7947	- synthesize CNAME and DNAME responses from the cache.
7948	- Updated doxygen config for doxygen 1.5.
7949	- aclocal newer version.
7950	- doxygen 1.5 fixes for comments (for the strict check on docs).
7951
795211 June 2007: Wouter
7953	- replies on TCP queries have the address field set in replyinfo,
7954	  for serviced queries, because the initiator does not know that
7955	  a TCP fallback has occured.
7956	- omit DNSSEC types from nonDO replies, except if qtype is ANY or
7957	  if qtype directly queries for the type (and then only show that
7958	  'unknown type' in the answer section).
7959	- fixed message parsing where rrsigs on their own would be put
7960	  in the signature list over the rrsig type.
7961
79627 June 2007: Wouter
7963	- fixup error in double linked list insertion for subqueries and
7964	  for outbound list of serviced queries for iterator module.
7965	- nicer printout of outgoing port selection.
7966	- fixup cname target readout.
7967	- nicer debug output.
7968	- fixup rrset counts when prepending CNAMEs to the answer.
7969	- fixup rrset TTL for prepended CNAMEs.
7970	- process better check for looping modules, and which submodule to
7971	  run next.
7972	- subreq insertion code fixup for slumber list.
7973	- VERB_DETAIL, verbosity: 2 level gives short but readable output.
7974	  VERB_ALGO, verbosity: 3 gives extensive output.
7975	- fixup RA bit in cached replies.
7976	- fixup CNAME responses from the cache no longer partial response.
7977	- error in network send handled without leakage.
7978	- enable ip6 from config, and try ip6 addresses if available,
7979	  if ip6 is not connected, skips to next server.
7980
79815 June 2007: Wouter
7982	- iterator state finished.
7983	- subrequests without parent store in cache and stop.
7984	- worker slumber list for ongoing promiscuous queries.
7985	- subrequest error handling.
7986	- priming failure returns SERVFAIL.
7987	- priming gives LAME result, returns SERVFAIL.
7988	- debug routine to print dns_msg as handled by iterator.
7989	- memleak in config file stubs fixup.
7990	- more small bugs, in scrubber, query compare no ID for lookup,
7991	  in dname validation for NS targets.
7992	- sets entry.key for new special allocs.
7993	- lognametypeclass can display unknown types and classes.
7994
79954 June 2007: Wouter
7996	- random selection of equally preferred nameserver targets.
7997	- reply info copy routine. Reuses existing code.
7998	- cache lameness in response handling.
7999	- do not touch qstate after worker_process_query because it may have
8000	  been deleted by that routine.
8001	- Prime response state.
8002	- Process target response state.
8003	- some memcmp changed to dname_compare for case preservation.
8004
80051 June 2007: Wouter
8006	- normalize incoming messages. Like unbound-java, with CNAME chain
8007	  checked, DNAME checked, CNAME's synthesized, glue checked.
8008	- sanitize incoming messages.
8009	- split msgreply encode functions into own file msgencode.c.
8010	- msg_parse to queryinfo/replyinfo conversion more versatile.
8011	- process_response, classify response, delegpt_from_message.
8012
801331 May 2007: Wouter
8014	- querytargets state.
8015	- dname_subdomain_c() routine.
8016	- server selection, based on RTT. ip6 is filtered out if not available,
8017	  and lameness is checked too.
8018	- delegation point copy routine.
8019
802030 May 2007: Wouter
8021	- removed FLAG_CD from message and rrset caches. This was useful for
8022	  an agnostic forwarder, but not for a sophisticated (trust value per
8023	  rrset enabled) cache.
8024	- iterator response typing.
8025	- iterator cname handle.
8026	- iterator prime start.
8027	- subquery work.
8028	- processInitRequest and processInitRequest2.
8029	- cache synthesizes referral messages, with DS and NSEC.
8030	- processInitRequest3.
8031	- if a request creates multiple subrequests these are all activated.
8032
803329 May 2007: Wouter
8034	- routines to lock and unlock array of rrsets moved to cache/rrset.
8035	- lookup message from msg cache (and copy to region).
8036	- fixed cast error in dns msg lookup.
8037	- message with duplicate rrset does not increase its TTLs twice.
8038	- 'qnamesize' changed to 'qname_len' for similar naming scheme.
8039
804025 May 2007: Wouter
8041	- Acknowledge use of unbound-java code in iterator. Nicer readme.
8042	- services/cache/dns.c DNS Cache. Hybrid cache uses msgcache and
8043	  rrset cache from module environment.
8044	- packed rrset key has type and class as easily accessible struct
8045	  members. They are still kept in network format for fast msg encode.
8046	- dns cache find_delegation routine.
8047	- iterator main functions setup.
8048	- dns cache lookup setup.
8049
805024 May 2007: Wouter
8051	- small changes to prepare for subqueries.
8052	- iterator forwarder feature separated out.
8053	- iterator hints stub code, config file stub code, so that first
8054	  testing can proceed locally.
8055	- replay tests now have config option to enable forwarding mode.
8056
805723 May 2007: Wouter
8058	- outside network does precise timers for roundtrip estimates for rtt
8059	  and for setting timeout for UDP. Pending_udp takes milliseconds.
8060	- cleaner iterator sockaddr conversion of forwarder address.
8061	- iterator/iter_utils and iter_delegpt setup.
8062	- root hints.
8063
806422 May 2007: Wouter
8065	- outbound query list for modules and support to callback with the
8066	  outbound entry to the module.
8067	- testbound support for new serviced queries.
8068	- test for retry to TCP cannot use testbound any longer.
8069	- testns test for EDNS fallback, test for TCP fallback already exists.
8070	- fixes for no-locking compile.
8071	- mini_event timer precision and fix for change in timeouts during
8072	  timeout callback. Fix for fwd_three tests, performed nonexit query.
8073
807421 May 2007: Wouter
8075	- small comment on hash table locking.
8076	- outside network serviced queries, contain edns and tcp fallback,
8077	  and udp retries and rtt timing.
8078
807916 May 2007: Wouter
8080	- lruhash_touch() would cause locking order problems. Fixup in
8081	  lock-verify in case locking cycle is found.
8082	- services/cache/rrset.c for rrset cache code.
8083	- special rrset_cache LRU updating function that uses the rrset id.
8084	- no dependencies calculation when make clean is called.
8085	- config settings for infra cache.
8086	- daemon code slightly cleaner, only creates caches once.
8087
808815 May 2007: Wouter
8089	- host cache code.
8090	- unit test for host cache.
8091
809214 May 2007: Wouter
8093	- Port to OS/X and Dec Alpha. Printf format and alignment fixes.
8094	- extensive lock debug report on join timeout.
8095	- proper RTT calculation, in utility code.
8096	- setup of services/cache/infra, host cache.
8097
809811 May 2007: Wouter
8099	- iterator/iterator.c module.
8100	- fixup to pass reply_info in testcode and in netevent.
8101
810210 May 2007: Wouter
8103	- created release-0.3 svn tag.
8104	- util/module.h
8105	- fixed compression - no longer compresses root name.
8106
81079 May 2007: Wouter
8108	- outside network cleans up waiting tcp queries on exit.
8109	- fallback to TCP.
8110	- testbound replay with retry in TCP mode.
8111	- tpkg test for retry in TCP mode, against ldns-testns server.
8112	- daemon checks max number of open files and complains if not enough.
8113	- test where data expires in the cache.
8114	- compiletests: fixed empty body ifstatements in alloc.c, in case
8115	  locks are disabled.
8116
81178 May 2007: Wouter
8118	- outgoing network keeps list of available tcp buffers for outgoing
8119	  tcp queries.
8120	- outgoing-num-tcp config option.
8121	- outgoing network keeps waiting list of queries waiting for buffer.
8122	- netevent supports outgoing tcp commpoints, nonblocking connects.
8123
81247 May 2007: Wouter
8125	- EDNS read from query, used to make reply smaller.
8126	- advertised edns value constants.
8127	- EDNS BADVERS response, if asked for too high edns version.
8128	- EDNS extended error responses once the EDNS record from the query
8129	  has successfully been parsed.
8130
81314 May 2007: Wouter
8132	- msgreply sizefunc is more accurate.
8133	- config settings for rrset cache size and slabs.
8134	- hashtable insert takes argument so that a thread can use its own
8135	  alloc cache to store released keys.
8136	- alloc cache special_release() locks if necessary.
8137	- rrset trustworthiness type added.
8138	- thread keeps a scratchpad region for handling messages.
8139	- writev used in netevent to write tcp length and data after another.
8140	  This saves a roundtrip on tcp replies.
8141	- test for one rrset updated in the cache.
8142	- test for one rrset which is not updated, as it is not deemed
8143	  trustworthy enough.
8144	- test for TTL refreshed in rrset.
8145
81463 May 2007: Wouter
8147	- fill refs. Use new parse and encode to answer queries.
8148	- stores rrsets in cache.
8149	- uses new msgreply format in cache.
8150
81512 May 2007: Wouter
8152	- dname unit tests in own file and spread out neatly in functions.
8153	- more dname unit tests.
8154	- message encoding creates truncated TC flagged messages if they do
8155	  not fit, and will leave out (whole)rrsets from additional if needed.
8156
81571 May 2007: Wouter
8158	- decompress query section, extremely lenient acceptance.
8159	  But only for answers from other servers, not for plain queries.
8160	- compression and decompression test cases.
8161	- some stats added.
8162	- example.conf interface: line is changed from 127.0.0.1 which leads
8163	  to problems if used (restricting communication to the localhost),
8164	  to a documentation and test address.
8165
816627 April 2007: Wouter
8167	- removed iov usage, it is not good for dns message encoding.
8168	- owner name compression more optimal.
8169	- rrsig owner name compression.
8170	- rdata domain name compression.
8171
817226 April 2007: Wouter
8173	- floating point exception fix in lock-verify.
8174	- lint uses make dependency
8175	- fixup lint in dname owner domain name compression code.
8176	- define for offset range that can be compressed to.
8177
817825 April 2007: Wouter
8179	- prettier code; parse_rrset->type kept in host byte order.
8180	- datatype used for hashvalue of converted rrsig structure.
8181	- unit test compares edns section data too.
8182
818324 April 2007: Wouter
8184	- ttl per RR, for RRSIG rrsets and others.
8185	- dname_print debug function.
8186	- if type is not known, size calc will skip DNAME decompression.
8187	- RRSIG parsing and storing and putting in messages.
8188	- dnssec enabled unit tests (from nlnetlabs.nl and se queries).
8189	- EDNS extraction routine.
8190
819120 April 2007: Wouter
8192	- code comes through all of the unit tests now.
8193	- disabled warning about spurious extra data.
8194	- documented the RRSIG parse plan in msgparse.h.
8195	- rrsig reading and outputting.
8196
819719 April 2007: Wouter
8198	- fix unit test to actually to tests.
8199	- fix write iov helper, and fakevent code.
8200	- extra builtin testcase (small packet).
8201	- ttl converted to network format in packets.
8202	- flags converted correctly
8203	- rdatalen off by 2 error fixup.
8204	- uses less iov space for header.
8205
820618 April 2007: Wouter
8207	- review of msgparse code.
8208	- smaller test cases.
8209
821017 April 2007: Wouter
8211	- copy and decompress dnames.
8212	- store calculated hash value too.
8213	- routine to create message out of stored information.
8214	- util/data/msgparse.c for message parsing code.
8215	- unit test, and first fixes because of test.
8216		* forgot rrset_count addition.
8217		* did & of ptr on stack for memory position calculation.
8218		* dname_pkt_copy forgot to read next label length.
8219	- test from file and fixes
8220		* double frees fixed in error conditions.
8221		* types with less than full rdata allowed by parser.
8222		  Some dynamic update packets seem to use it.
8223
822416 April 2007: Wouter
8225	- following a small change in LDNS, parsing code calculates the
8226	  memory size to allocate for rrs.
8227	- code to handle ID creation.
8228
822913 April 2007: Wouter
8230	- parse routines. Code that parses rrsets, rrs.
8231
823212 April 2007: Wouter
8233	- dname compare routine that preserves case, with unit tests.
8234
823511 April 2007: Wouter
8236	- parse work - dname packet parse, msgparse, querysection parse,
8237	  start of sectionparse.
8238
823910 April 2007: Wouter
8240	- Improved alignment of reply_info packet, nice for 32 and 64 bit.
8241	- Put RRset counts in reply_info, because the number of RRs can change
8242	  due to RRset updates.
8243	- import of region-allocator code from nsd.
8244	- set alloc special type to ub_packed_rrset_key.
8245	  Uses lruhash entry overflow chain next pointer in alloc cache.
8246	- doxygen documentation for region-allocator.
8247	- setup for parse scratch data.
8248
82495 April 2007: Wouter
8250	- discussed packed rrset with Jelte.
8251
82524 April 2007: Wouter
8253	- moved to version 0.3.
8254	- added util/data/dname.c
8255	- layout of memory for rrsets.
8256
82573 April 2007: Wouter
8258	- detect sign of msghdr.msg_iovlen so that the cast to that type
8259	  in netevent (which is there to please lint) can be correct.
8260	  The type on several OSes ranges from int, int32, uint32, size_t.
8261	  Detects unsigned or signed using math trick.
8262	- constants for DNS flags.
8263	- compilation without locks fixup.
8264	- removed include of unportable header from lookup3.c.
8265	- more portable use of struct msghdr.
8266	- casts for printf warning portability.
8267	- tweaks to tests to port them to the testbed.
8268	- 0.2 tag created.
8269
82702 April 2007: Wouter
8271	- check sizes of udp received messages, not too short.
8272	- review changes. Some memmoves can be memcpys: 4byte aligned.
8273	  set id correctly on cached answers.
8274	- review changes msgreply.c, memleak on error condition. AA flag
8275	  clear on cached reply. Lowercase queries on hashing.
8276	  unit test on lowercasing. Test AA bit not set on cached reply.
8277	  Note that no TTLs are managed.
8278
827929 March 2007: Wouter
8280	- writev or sendmsg used when answering from cache.
8281	  This avoids a copy of the data.
8282	- do not do useless byteswap on query id. Store reply flags in uint16
8283	  for easier access (and no repeated byteswapping).
8284	- reviewed code.
8285	- configure detects and config.h includes sys/uio.h for writev decl.
8286
828728 March 2007: Wouter
8288	- new config option: num-queries-per-thread.
8289	- added tpkg test for answering three queries at the same time
8290	  using one thread (from the query service list).
8291
829227 March 2007: Wouter
8293	- added test for cache and not cached answers, in testbound replays.
8294	- testbound can give config file and commandline options from the
8295	  replay file to unbound.
8296	- created test that checks if items drop out of the cache.
8297	- added word 'partitioned hash table' to documentation on slab hash.
8298	  A slab hash is a partitioned hash table.
8299	- worker can handle multiple queries at a time.
8300
830126 March 2007: Wouter
8302	- config settings for slab hash message cache.
8303	- test for cached answer.
8304	- Fixup deleting fake answer from testbound list.
8305
830623 March 2007: Wouter
8307	- review of yesterday's commits.
8308	- covered up memory leak of the entry locks.
8309	- answers from the cache correctly. Copies flags correctly.
8310	- sanity check for incoming query replies.
8311	- slabbed hash table. Much nicer contention, need dual cpu to see.
8312
831322 March 2007: Wouter
8314	- AIX configure check.
8315	- lock-verify can handle references to locks that are created
8316	  in files it has not yet read in.
8317	- threaded hash table test.
8318	- unit test runs lock-verify afterwards and checks result.
8319	- need writelock to update data on hash_insert.
8320	- message cache code, msgreply code.
8321
832221 March 2007: Wouter
8323	- unit test of hash table, fixup locking problem in table_grow().
8324	- fixup accounting of sizes for removing items from hashtable.
8325	- unit test for hash table, single threaded test of integrity.
8326	- lock-verify reports errors nicely. More quiet in operation.
8327
832816 March 2007: Wouter
8329	- lock-verifier, checks consistent order of locking.
8330
833114 March 2007: Wouter
8332	- hash table insert (and subroutines) and lookup implemented.
8333	- hash table remove.
8334	- unit tests for hash internal bin, lru functions.
8335
833613 March 2007: Wouter
8337	- lock_unprotect in checklocks.
8338	- util/storage/lruhash.h for LRU hash table structure.
8339
834012 March 2007: Wouter
8341	- configure.ac moved to 0.2.
8342	- query_info and replymsg util/data structure.
8343
83449 March 2007: Wouter
8345	- added rwlock writelock checking.
8346	  So it will keep track of the writelock, and readlocks are enforced
8347	  to not change protected memory areas.
8348	- log_hex function to dump hex strings to the logfile.
8349	- checklocks zeroes its destroyed lock after checking memory areas.
8350	- unit test for alloc.
8351	- identifier for union in checklocks to please older compilers.
8352	- created 0.1 tag.
8353
83548 March 2007: Wouter
8355	- Reviewed checklock code.
8356
83577 March 2007: Wouter
8358	- created a wrapper around thread calls that performs some basic
8359	  checking for data race and deadlock, and basic performance
8360	  contention measurement.
8361
83626 March 2007: Wouter
8363	- Testbed works with threading (different machines, different options).
8364	- alloc work, does the special type.
8365
83662 March 2007: Wouter
8367	- do not compile fork funcs unless needed. Otherwise will give
8368	  type errors as their typedefs have not been enabled.
8369	- log shows thread numbers much more nicely (and portably).
8370	- even on systems with nonthreadsafe libevent signal handling,
8371	  unbound will exit if given a signal.
8372	  Reloads will not work, and exit is not graceful.
8373	- start of alloc framework layout.
8374
83751 March 2007: Wouter
8376	- Signals, libevent and threads work well, with libevent patch and
8377	  changes to code (close after event_del).
8378	- set ipc pipes nonblocking.
8379
838027 February 2007: Wouter
8381	- ub_thread_join portable definition.
8382	- forking is used if no threading is available.
8383	  Tested, it works, since pipes work across processes as well.
8384	  Thread_join is replaced with waitpid.
8385	- During reloads the daemon will temporarily handle signals,
8386	  so that they do not result in problems.
8387	- Also randomize the outgoing port range for tests.
8388	- If query list is full, will stop selecting listening ports for read.
8389	  This makes all threads service incoming requests, instead of one.
8390	  No memory is leaking during reloads, service of queries, etc.
8391	- test that uses ldns-testns -f to test threading. Have to answer
8392	  three queries at the same time.
8393	- with verbose=0 operates quietly.
8394
839526 February 2007: Wouter
8396	- ub_random code used to select ID and port.
8397	- log code prints thread id.
8398	- unbound can thread itself, with reload(HUP) and quit working
8399	  correctly.
8400	- don't open pipes for #0, doesn't need it.
8401	- listens to SIGTERM, SIGQUIT, SIGINT (all quit) and SIGHUP (reload).
8402
840323 February 2007: Wouter
8404	- Can do reloads on sigHUP. Everything is stopped, and freed,
8405	  except the listening ports. Then the config file is reread.
8406	  And everything is started again (and listening ports if needed).
8407	- Ports for queries are shared.
8408	- config file added interface:, chroot: and username:.
8409	- config file: directory, logfile, pidfile. And they work too.
8410	- will daemonize by default now. Use -d to stay in the foreground.
8411	- got BSD random[256 state] code, made it threadsafe. util/random.
8412
841322 February 2007: Wouter
8414	- Have a config file. Removed commandline options, moved to config.
8415	- tests use config file.
8416
841721 February 2007: Wouter
8418	- put -c option in man page.
8419	- minievent fd array capped by FD_SETSIZE.
8420
842120 February 2007: Wouter
8422	- Added locks code and pthread spinlock detection.
8423	- can use no locks, or solaris native thread library.
8424	- added yacc and lex configure, and config file parsing code.
8425	  also makedist.sh, and manpage.
8426	- put include errno.h in config.h
8427
842819 February 2007: Wouter
8429	- Created 0.0 svn tag.
8430	- added acx_pthread.m4 autoconf check for pthreads from
8431	  the autoconf archive. It is GPL-with-autoconf-exception Licensed.
8432	  You can specify --with-pthreads, or --without-pthreads to configure.
8433
843416 February 2007: Wouter
8435	- Updated testbed script, works better by using make on remote end.
8436	- removed check decls, we can compile without them.
8437	- makefile supports LIBOBJ replacements.
8438	- docs checks ignore compat code.
8439	- added util/mini-event.c and .h, a select based alternative used with
8440	  ./configure --with-libevent=no
8441	  It is limited to 1024 file descriptors, and has less features.
8442	- will not create ip6 sockets if ip6 not on the machine.
8443
844415 February 2007: Wouter
8445	- port to FreeBSD 4.11 Dec Alpha. Also works on Solaris 10 sparc64,
8446	  Solaris 9, FreeBSD 6, Linux i386 and OSX powerpc.
8447	- malloc rndstate, so that it is aligned for access.
8448	- fixed rbtree cleanup with postorder traverse.
8449	- fixed pending messages are deleted when handled.
8450	- You can control verbosity; default is not verbose, every -v
8451	  adds more verbosity.
8452
845314 February 2007: Wouter
8454	- Included configure.ac changes from ldns.
8455	- detect (some) headers before the standards check.
8456	- do not use isblank to test c99, since its not available on solaris9.
8457	- review of testcode.
8458		* entries in a RANGE are no longer reversed.
8459		* print name of file with replay entry parse errors.
8460	- port to OSX: cast to int for some prints of sizet.
8461	- Makefile copies ldnstestpkts.c before doing dependencies on it.
8462
846313 February 2007: Wouter
8464	- work on fake events, first fwd replay works.
8465	- events can do timeouts and errors on queries to servers.
8466	- test package that runs replay scenarios.
8467
846812 February 2007: Wouter
8469	- work on fake events.
8470
84719 February 2007: Wouter
8472	- replay file reading.
8473	- fake event setup, it creates fake structures, and teardowns,
8474	  added signal callbacks to reply to be able to fake those,
8475	  and main structure of event replay routines.
8476
84778 February 2007: Wouter
8478	- added tcp test.
8479	- replay storage.
8480	- testcode/fake_event work.
8481
84827 February 2007: Wouter
8483	- return answer with the same ID as query was sent with.
8484	- created udp forwarder test. I've done some effort to make it perform
8485	  quickly. After servers are created, no big sleep statements but
8486	  it checks the logfiles to see if servers have come up. Takes 0.14s.
8487	- set addrlen value when calling recvfrom.
8488	- comparison of addrs more portable.
8489	- LIBEVENT option for testbed to set libevent directory.
8490	- work on tcp input.
8491
84926 February 2007: Wouter
8493	- reviewed code and improved in places.
8494
84955 February 2007: Wouter
8496	- Picked up stdc99 and other define tests from ldns. Improved
8497	  POSIX define test to include getaddrinfo.
8498	- defined constants for netevent callback error code.
8499	- unit test for strisip6.
8500
85012 February 2007: Wouter
8502	- Created udp4 and udp6 port arrays to provide service for both
8503	  address families.
8504	- uses IPV6_USE_MIN_MTU for udp6 ,IPV6_V6ONLY to make ip6 sockets.
8505	- listens on both ip4 and ip6 ports to provide correct return address.
8506	- worker fwder address filled correctly.
8507	- fixup timer code.
8508	- forwards udp queries and sends answer.
8509
85101 February 2007: Wouter
8511	- outside network more UDP work.
8512	- moved * closer to type.
8513	- comm_timer object and events.
8514
851531 January 2007: Wouter
8516	- Added makedist.sh script to make release tarball.
8517	- Removed listen callback layer, did not add anything.
8518	- Added UDP recv to netevent, worker callback for udp.
8519	- netevent communication reply storage structure.
8520	- minimal query header sanity checking for worker.
8521	- copied over rbtree implementation from NSD (BSD licensed too).
8522	- outgoing network query service work.
8523
852430 January 2007: Wouter
8525	- links in example/ldns-testpkts.c and .h for premade packet support.
8526	- added callback argument to listen_dnsport and daemon/worker.
8527
852829 January 2007: Wouter
8529	- unbound.8 a short manpage.
8530
853126 January 2007: Wouter
8532	- fixed memleak.
8533	- make lint works on BSD and Linux (openssl defines).
8534	- make tags works.
8535	- testbound program start.
8536
853725 January 2007: Wouter
8538	- fixed lint so it may work on BSD.
8539	- put license into header of every file.
8540	- created verbosity flag.
8541	- fixed libevent configure flag.
8542	- detects event_base_free() in new libevent 1.2 version.
8543	- getopt in daemon. fatal_exit() and verbose() logging funcs.
8544	- created log_assert, that throws assertions to the logfile.
8545	- listen_dnsport service. Binds ports.
8546
854724  January 2007: Wouter
8548	- cleaned up configure.ac.
8549
855023  January 2007: Wouter
8551	- added libevent to configure to link with.
8552	- util/netevent setup work.
8553	- configure searches for libevent.
8554	- search for libs at end of configure (when other headers and types
8555	  have been found).
8556	- doxygen works with ATTR_UNUSED().
8557	- util/netevent implementation.
8558
855922  January 2007: Wouter
8560	- Designed header file for network communication.
8561
856216  January 2007: Wouter
8563	- added readme.svn and readme.tests.
8564
85654 January 2007: Wouter
8566	- Testbed script (run on multiple platforms the test set).
8567	  Works on Sunos9, Sunos10, FreeBSD 6.1, Fedora core 5.
8568	- added unit test tpkg.
8569
85703 January 2007: Wouter
8571	- committed first set of files into subversion repository.
8572	  svn co svn+ssh://unbound.net/svn/unbound
8573	  You need a ssh login.  There is no https access yet.
8574	- Added LICENSE, the BSD license.
8575	- Added doc/README with compile help.
8576	- main program stub and quiet makefile.
8577	- minimal logging service (to stderr).
8578	- added postcommit hook that serves emails.
8579	- added first test 00-lint. postcommit also checks if build succeeds.
8580	- 01-doc: doxygen doc target added for html docs. And stringent test
8581	  on documented files, functions and parameters.
8582
858315 December 2006: Wouter
8584	- Created Makefile.in and configure.ac.
8585