package fixing
[profile/ivi/dhcp.git] / RELNOTES
1               Internet Systems Consortium DHCP Distribution
2                              Version 4.2.3-P2
3                               4 January 2012
4
5                               Release Notes
6
7                               NEW FEATURES
8
9 ISC DHCP 4.2.x includes features that were not included in DHCP 4.1.x.
10 These include:
11
12 Processing the DHCP to DNS server transactions in an asynchronous fashion.
13 The DHCP server or client can now continue with its processing while
14 awaiting replies from the DNS server.
15
16 There are a number of DHCPv6 limitations and features missing in this
17 release, which will be addressed in the future:
18
19 - Only Solaris, Linux, FreeBSD, NetBSD, and OpenBSD are supported.
20
21 - DHCPv6 includes human-readable text in status code messages, in
22   English.  A method to reconfigure or support other languages would
23   be preferable.
24
25 - The "host-identifier" option is limited to a simple token.
26
27 - The client and server can only operate DHCPv4 or DHCPv6 at a time,
28   not both.  To use both protocols simultaneously, two instances of the
29   relevant daemon are required, one with the '-6' command line option.
30
31 For information on how to install, configure and run this software, as
32 well as how to find documentation and report bugs, please consult the
33 README file.
34
35 ISC DHCP uses standard GNU configure for installation. Please review the
36 output of "./configure --help" to see what options are available.
37
38 The system has only been tested on Linux, FreeBSD, and Solaris, and may not
39 work on other platforms. Please report any problems and suggested fixes to
40 <dhcp-users@isc.org>.
41
42                         Changes since 4.2.3-P1
43
44 ! Modify the DDNS handling code.  In a previous patch we added logging
45   code to the DDNS handling.  This code included a bug that caused it
46   to attempt to dereference a NULL pointer and eventually segfault.
47   While reviewing the code as we addressed this problem, we determined
48   that some of the updates to the lease structures would not work as
49   planned since the structures being updated were in the process of
50   being freed: these updates were removed.  In addition we removed an
51   incorrect call to the DDNS removal function that could cause a failure
52   during the removal of DDNS information from the DNS server.
53   Thanks to Jasper Jongmans for reporting this issue.
54   [ISC-Bugs #27078]
55   CVE: CVE-2011-4868
56
57                         Changes since 4.2.3
58
59 ! Add a check for a null pointer before calling the regexec function.
60   Without out this check we could, under some circumstances, pass
61   a null pointer to the regexec function causing it to segfault.
62   Thanks to a report from BlueCat Networks.
63   [ISC-Bugs #26704].
64   CVE: CVE-2011-4539
65
66                         Changes since 4.2.2
67
68 - Fix the code that checks for an existing DDNS transaction to cancel
69   when removing DDNS information, so that we will continue with the
70   processing if we have a lease even if it doesn't have an outstanding
71   transaction.  [ISC-Bugs #24682]
72
73 - Add AM_MAINTAINER_MODE to configure.ac to avoid rebuilding
74   configuration files.  [ISC-Bugs #24107]
75
76 - Add support for passing DDNS information to a DNS server over
77   an IPv6 address.  [ISC-Bugs #22647]
78
79 - Enhanced patch for 23595 to handle IPv4 fixed addresses more
80   cleanly.  [ISC-Bugs #23595]
81
82                         Changes since 4.2.2rc1
83
84 ! Two packets were found that cause a server to halt.  The code
85   has been updated to properly process or reject the packets as
86   appropriate.  Thanks to David Zych at University of Illinois
87   for reporting this issue.  [ISC-Bugs #24960]
88   One CVE number for each class of packet.
89   CVE-2011-2748
90   CVE-2011-2749
91
92                         Changes since 4.2.2b1
93
94 - Strict checks for content of domain-name DHCPv4 option can now be 
95   configured during compilation time. Even though RFC2132 does not allow 
96   to store more than one domain in domain-name option, such behavior is 
97   now enabled by default, but this may change some time in the future.
98   See ACCEPT_LIST_IN_DOMAIN_NAME define in includes/site.h.
99   [ISC-Bugs #24167]
100
101 - DNS Update fix. A misconfigured server could crash during DNS update
102   processing if the configuration included overlapping pools or
103   multiple fixed-address entries for a single address.  This issue
104   affected both IPv4 and IPv6. The fix allows a server to detect such
105   conditions, provides the user with extra information and recommended
106   steps to fix the problem.  If the user enables the appropriate option
107   in site.h then server will be terminated
108   [ISC-Bugs #23595]
109
110                         Changes since 4.2.1
111
112 ! In dhclient check the data for some string options for
113   reasonableness before passing it along to the script that
114   interfaces with the OS.
115   [ISC-Bugs #23722]
116   CVE: CVE-2011-0997
117
118 - DHCPv6 server now responds properly if client asks for a prefix that
119   is already assigned to a different client. [ISC-Bugs #23948]
120
121 - Add the option "--no-pid" to the client, relay and server code,
122   to disable writing a pid file.  Add the option "-pf pidfile"
123   to the relay to allow the user to supply the pidfile name at
124   runtime.  Add the "with-relay6-pid-file" option to configure
125   to allow the user to supply the pidfile name for the relay
126   in v6 mode at configure time.
127   [ISC-Bugs #23351] [ISC-Bugs #17541]
128
129 - 'dhclient' no longer waits a random interval after first starting up to
130   begin in the INIT state.  This conforms to RFC 2131, but elects not to
131   implement a 'SHOULD' direction in section 4.1. [ISC-Bugs #19660]
132   
133 - Added 'initial-delay' parameter that specifies maximum amount of time 
134   before client goes to the INIT state. The default value is 0. In previous 
135   versions of the code client could wait up to 5 seconds. The old behavior 
136   may be restored by using 'initial-delay 5;' in the client config file.
137   [ISC-Bugs #19660]
138
139 - ICMP ping-check should now sit closer to precisely the number of seconds
140   configured (or default 1), due to making use of the new microsecond
141   scale timer internally to dhcpd.  This corrects a bug where the server
142   may immediately timeout an ICMP ping-check if it was made late in the
143   current second. [ISC-Bugs #19660]
144
145 - The DHCP client will schedule renewal and rebinding events in
146   microseconds if the DHCP server provided a lease-time that would result
147   in sub-1-second timers.  This corrects a bug where a 2-second or lower
148   lease-time would cause the DHCP client to enter an infinite loop by
149   scheduling renewal at zero seconds. [ISC-Bugs #19660]
150
151 - Client lease records are recorded at most once every 15 seconds.  This
152   keeps the client from filling the lease database disk quickly on very small
153   lease times. [ISC-Bugs #19660]
154
155 - To defend against RFC 2131 non-compliant DHCP servers which fail to
156   advertise a lease-time (either mangled, or zero in value) the DHCP
157   client now adds the server to the reject list ACL and returns to INIT
158   state to hopefully find an RFC 2131 compliant server (or retry in INIT
159   forever). [ISC-Bugs #19660]
160
161 - Parameters configured to evaluate from user defined function calls can
162   now be correctly written to dhcpd.leases (as on 'on events' or dynamic
163   host records inserted via OMAPI).  [ISC-Bugs #22266]
164
165 - If a 'next-server' parameter is configured in a dynamic host record via
166   OMAPI as a domain name, the syntax written to disk is now correctly parsed
167   upon restart.  [ISC-Bugs #22266]
168
169 - The DHCP server now responds to DHCPLEASEQUERY messages from agents using
170   IP addresses not covered by a subnet in configuration.  Whether or not to
171   respond to such an agent is still governed by the 'allow leasequery;'
172   configuration parameter, in the case of an agent not covered by a configured
173   subnet the root configuration area is examined. Server now also returns
174   vendor-class-id option, if client sent it. [ISC-Bugs #21094]
175   
176 - Documentation fixes
177   [ISC-Bugs #17959] add text to AIX section describing how to have it send
178   responses to the all-ones address.
179   [ISC-Bugs #19615] update the includes in dhcpctl/dhcpctl.3 to be more correct
180   [ISC-Bugs #20676] update dhcpd.conf.5 to include the RFC numbers for DDNS
181
182 - Linux Packet Filter interface improvement. sockaddr_pkt structure is used, 
183   rather than sockaddr. Packet etherType is now forced to ETH_P_IP. 
184   [ISC-Bugs #18975]
185
186 - Minor code cleanups - but note port change for #23196
187   [ISC-Bugs #23470] - Modify when an ignore return macro is defined to
188   handle unsed error return warnings for more versions of gcc.
189   [ISC-Bugs #23196] - Modify the reply handling in the server code to
190   send to a specified port rather than to the source port for the incoming
191   message.  Sending to the source port was test code that should have
192   been removed.  The previous functionality may be restored by defining
193   REPLY_TO_SOURCE_PORT in the includes/site.h file.  We suggest you don't
194   enable this except for testing purposes.
195   [ISC-Bugs #22695] - Close a file descriptor in an error path.
196   [ISC-Bugs #19368] - Tidy up variable types in validate_port.
197
198 - Code cleanup
199   [ISC-Bugs #13151] remove obsolete PROTO, KandR, INLINE and ANSI_DECL macros
200
201 - Compilation problem with gcc4.5 and omshell.c resolved. [ISC-Bugs #23831]
202
203 - Client Script fixes
204   [ISC-Bugs #23045] Typos in client/scripts/openbsd
205   [ISC-Bugs #23565] In the client scripts add a zone id (interface id) if
206   the domain search address is link local.
207   [ISC-Bugs #1277] In some of the client scripts add code to handle the
208   case of the default router information being changed without the address
209   being changed.
210
211 - Documentation cleanup
212   [ISC-Bugs #23326] Updated References document, several man page updates
213
214 - Server no longer complains about NULL pointer when configured 
215   server-identifier expression fails to evaluate. [ISC-Bugs #24547]
216
217 - Convert ISC_R_INPROGRESS status to ISC_R_SUCCESS when called from other
218   than the dispatch handler.  This fixes an issue where omshell, when
219   run from the same platform as the server, would appear to fail to
220   connect.  This is a companion to #21839.  [ISC-Bugs #23592]
221
222 - Enlarge the buffer size used by the Omshell code and some of the
223   print routines to allow for greater than 60 characters or, when
224   printing as hex strings, 20 characters.  [ISC-Bugs #22743]
225
226 - In Solaris 11 switch to using sockets instead of DLPI, thanks
227   to a patch form Oracle.  [ISC-Bugs #24634].
228
229                         Changes since 4.2.1rc1
230
231 - None
232
233                         Changes since 4.2.1b1
234
235 - Removed the restriction on using IPv6 addresses in IPv4 mode.  This
236   allows IPv4 options which contain IPv6 addresses to be specified.  For
237   example the 6rd option can be specified and used like this:
238   [ISC-Bugs #23039]
239
240         option 6rd code 212 = { integer 8, integer 8,
241                                 ip6-address, array of ip-address };
242         option 6rd 16 10 2001:: 1.2.3.4, 5.6.7.8;
243
244 - Handle some DDNS corner cases better.  Maintain the DDNS transaction
245   information when updating a lease and cancel any existing transactions
246   when removing the ddns information.  
247   [ISC-Bugs #23103]
248
249 - Some fixes for LDAP
250   [ISC-Bugs #21783] - Include lber library when building ldap
251   [ISC-Bugs #22888] - Enable the ldap code when buidling common
252   The above fixes are from Jiri Popelka at Red Hat.
253
254 - Modify the dlpi code to accept getmsg() returning a positive value.
255   [ISC-Bugs #22824]
256
257                         Changes since 4.2.0
258
259 - 'get-host-names true;' now also works even if 'use-host-decl-names true;'
260   was also configured.  The nature of this repair also fixes another
261   error; the host-name supplied by a client is no longer overridden by a
262   reverse lookup of the lease address.  Thanks to a patch from Wilco Baan
263   Hofman supplied to us by the Debian package maintenance team.
264   [ISC-Bugs #21691] {Debian Bug#509445}
265
266 - The .TH tag for the dhcp-options manpage was typo repaired
267   thanks to a report from jidanni and the Debian package maintenance
268   team.  [ISC-Bugs #21676] {Debian Bug#563613}
269
270 - More documentation changes - primarily to put the options in the dhclient
271   and dhcpd man pages into the standard form.  Thanks in part to a patch
272   from David Cantrell at Red Hat.
273   [ISC-Bugs #20264] and parts of [ISC-Bugs #17744] dhclient.8 changes
274
275 - Add code to clear the pointer to an object in an OMAPI handle when the
276   object is freed due to a dereference.  [ISC-Bugs #21306]
277
278 - Fixed a bug that leaks host record references onto lease structures,
279   causing the server to apply configuration intended for one host to any
280   other innocent clients that come along later.  [ISC-Bugs #22018]
281
282 - Minor code fixes
283   [ISC-Bugs #19566] When trying to find the zone for a name for ddns allow
284   the name to be at the apex of the zone.
285   [ISC-Bugs #19617] Restrict length of interface name read from command line
286   in dhcpd - based on a patch from David Cantrell at Red Hat.
287   [ISC-Bugs #20039] Correct some error messages in dhcpd.c
288   [ISC-Bugs #20070] Better range check on values when creating a DHCID.
289   [ISC-Bugs #20198] Avoid writing past the end of the field when adding 
290   overly long file or server names to a packet and add a log message
291   if the configuration supplied overly long names for these fields.
292   Thanks to Martin Pala.
293   [ISC-Bugs #21497] Add a little more randomness to rng seed in client
294   thanks to a patch from Jeremiah Jinno.
295
296 - Correct error handling in DLPI [ISC-Bugs #20378]
297
298 - Remove __sun__ and __hpux__ typedefs in osdep.h as they are now being
299   checked in configure.  [ISC-Bugs #20443]
300
301 - Modify how the cmsg header is allocated the v6 send and received routines
302   to compile on more compilers.  [ISC-Bugs #20524]
303
304 - When parsing a domain name free the memory for the name after we are
305   done with it.  [ISC-Bugs #20824]
306
307 - Add an elapsed time option to the release message and refactor the
308   code to move most of the common code to a single routine.
309   [ISC-Bugs #21171].
310
311 - Parse date strings more properly - the code now handles semi-colons in
312   date strings correctly.  Thanks to a patch from Jiri Popelka at Red Hat.
313   [ISC-Bugs #21501, #20598]
314
315 - Fixes to lease input and output.
316   [ISC-Bugs #20418] - Some systems don't support the "%s" argument to
317   strftime, paste together the same string using mktime instead.
318   [ISC-Bugs #19596] - When parsing iaid values accept printable
319   characters.
320   [ISC-Bugs #21585] - Always print time values in omshell as hex
321   instead of ascii if the values happen to be printable characters.
322
323 - Minor changes for scripts, configure.ac and Makefiles
324   [ISC-Bugs #19147] Use domain-search instead of domain-name in manual and
325                     example conf file.  Thanks to a patch from David Cantrell
326                     at Red Hat.
327   [ISC-Bugs #19761] Restore address when doing a rebind in DHCPv6
328   [ISC-Bugs #19945] Properly close the quote on some arguments.
329   [ISC-Bugs #20952] Add 64 bit types to configure.ac
330   [ISC-Bugs #21308] Add "PATH=" to CLIENT_PATH envrionment variable
331
332 - Update the code to parse dhcpv6 lease files to accept a semi-colon at
333   the end of the max-life and preferred-life clauses.  In order to be
334   backwards compatible with older lease files not finding a semi-colon
335   is also accepted.  [ISC-Bugs #22303].
336
337 ! Handle a relay forward message with an unspecified address in the
338   link address field.  Previously such a message would cause the
339   server to crash.  Thanks to a report from John Gibbons.  [ISC-Bugs #21992]
340   CERT: VU#102047 CVE: CVE-2010-3611
341
342 - ./configure on longer searches for -lcrypto to explicitly link against.
343   This fixes a bug where 'dhclient' would have shared library dependencies
344   on '/usr/lib'.  [ISC-Bugs #21967]
345
346 - Handle pipe failures more gracefully.  Some OSes pass a SIGPIPE
347   signal to a process and will kill the process if the signal isn't
348   caught.  This patch adds code to turn off the SIGPIPE signal via
349   a setsockopt() call.  The signal is already being ignored as part
350   of the ISC library.  [ISC-Bugs #22269]
351
352 - Restore printing of values in omshell to the style pre 21585.  For
353   21585 we changed the print routines to always display time values
354   as a hex list.  This had a side effect of printing all data strings
355   as a hex list.  We shall investigate other ways of displaying time
356   values more usefully.  [ISC-Bugs #22626]
357
358 ! Fix the handling of connection requests on the failover port.
359   Previously a connection request from a source that wasn't
360   listed as a failover peer would cause the server to become
361   non-responsive.  Thanks to a report from Brad Bendily, brad@bendily.com.
362   [ISC-Bugs #22679]
363   CERT: VU#159528 CVE: CVE-2010-3616 
364
365 - Don't pass the ISC_R_INPROGRESS status to the omapi signal handlers.
366   Passing it through to the handlers caused the omshell program to fail
367   to connect to the server.  [ISC-Bugs #21839]
368
369 - Fix the paranthesis in the code to process configuration statements
370   beginning with "auth".  The previous arrangement caused
371   "auto-partner-down" to be processed incorrectly.  [ISC-Bugs #21854]
372
373 - Limit the timeout period allowed in the dispatch code to 2^^32-1 seconds.
374   Thanks to a report from Jiri Popelka at Red Hat.
375   [ISC-Bugs #22033], [Red Hat Bug #628258]
376
377 - When processing the format flags for a given option consume the
378   flag indicating an optional value correctly.  A symptom of this
379   bug was an infinite loop when trying to parse the slp-service-scope
380   option.  Thanks to a patch from Marius Tomaschewski.
381   [ISC-Bugs #22055]
382
383 - Disable the use of kqueue in the ISC library.  This avoids a problem
384   between the fork and socket code that caused the dhcpd process to
385   use all available cpu if the program daemonized itself.
386   [ISC-Bugs #21911]
387
388 ! When processing a request in the DHCPv6 server code that specifies
389   an address that is tagged as abandoned (meaning we received a
390   decline request for it previously) don't attempt to move it from
391   the inactive to active pool as doing so can result in the server
392   crashing on an assert failure.  Also retag the lease as active
393   and reset its timeout value.
394   [ISC-Bugs #21921]
395
396 - Relay no longer crashes, when DHCP packet is received over interface without
397   any IPv4 address assigned. [ISC-Bugs #22409]
398  
399                         Changes since 4.2.0rc1
400
401 - Documentation cleanup covering multiple tickets
402   [ISC-Bugs #20265] [ISC-Bugs #20259] minor cleanup
403   [ISC-Bugs #20263] add text describing some default values
404   [ISC-Bugs #20193] single quotes at the start of a line indicate a control
405   line to nroff, escape them if we actually want a quote.
406   [ISC-Bugs #18916] sync the pointer to web pages amongst the different docs
407
408                         Changes since 4.2.0b2
409
410 - Add declaration for variable in debug code in alloc.c.  [ISC-Bugs #21472]
411
412                         Changes since 4.2.0b1
413
414 - Prohibit including lease time information in a response to a DHCP INFORM.
415   [ISC-Bugs #21092]
416
417 ! Accept a client id of length 0 while hashing.  Previously the server would
418   exit if it attempted to hash a zero length client id, providing attackers
419   with a simple denial of service attack.  [ISC-Bugs #21253]
420   CERT: VU#541921 - CVE: CVE-2010-2156
421
422 - A memory leak in ddns processing was closed.  [ISC-Bugs #21377]
423
424 - Modify the exception handling for initial context creation.  Previously
425   we would try and clean up before exiting.  This could present problems
426   when the cleanup required part of the context that wasn't available.  It
427   also didn't do much as we exited afterwards anyway.   Now we simply log
428   the error and exit. [ISC-Bugs #21093]
429
430 - A bug was fixed that could cause the DHCPv6 server to advertise/assign a
431   previously allocated (active) lease to a client that has changed subnets,
432   despite being on different shared networks.  Dynamic prefixes specifically
433   allocated in shared networks also now are not offered if the client has
434   moved.  [ISC-Bugs #21152]
435
436 - Add some debugging output for use with the DDNS code. [ISC-Bugs #20916]
437
438 - Fix the trace code to handle timing events better and to truncate a file
439   before using instead of overwriting it.  [ISC-Bugs #20969]
440
441 - Modify the determination of the default TTL to use for DDNS updates.
442   The user may still configure the ttl via ddns-ttl.  The default for
443   both v4 and v6 is now 1/2 the (preferred) lease time with a limit.  The
444   previous defaults (1/2 lease time without a limit for v4 and a default
445   value for v6) may be used by defining USE_OLD_DDNS_TTL in site.h
446   [ISC-Bugs #21126]
447
448 - libisc/libdns is now brought up to version 9.7.1rc1.  This corrects
449   three reported flaws in ISC DHCP;
450
451   o DHCP processes (dhcpd, dhclient) fail to start if one of either the
452     IPv4 or IPv6 address families is not present.  [ISC-Bugs #21122]
453
454   o Assertion failure when attempting to cancel a previously running DDNS
455     update.  [ISC-Bugs #21133]
456
457   o Compilation failure of libisc/libdns due to the use of a flexible
458     array member.  [ISC-Bugs #21316]
459
460                         Changes since 4.2.0a2
461
462 - Update the fsync code to work with the changes to the DDNS code.  It now
463   uses a timer instead of noticing if there are no more packets to process.
464
465 - When constructing the DNS name structure from a text string append
466   the root to relative names.  This satisfies a requirement in the DNS
467   library that names be absolute instead of relative and prevents DHCP
468   from crashing.  [ISC-Bugs #21054]
469
470 - "The LDAP Patch" that has been circulating for some time, written by
471   Brian Masney and S.Kalyanasundraram and maintained for application to
472   the DHCP-4 sources by David Cantrell has been included.  Please be
473   advised that these sources were contributed, and do not yet meet the
474   high standards we place on production sources we include by default.
475   As a result, the LDAP features are only included by using a compile-time
476   option which defaults off, and if you enable it you do so under your
477   own recognizance.  We will be improving this software over time.
478   [ISC-Bugs #17741]
479
480                         Changes since 4.2.0a1
481
482 - When using 'ignore client-updates;', the FQDN returned to the client
483   is no longer truncated to one octet.
484
485 - Cleaned up an unused hardware address variable in nak_lease().
486
487 - Manpage entries for the ia-pd and ia-prefix options were updated to
488   reflect support for prefix delegation.
489
490 - Cleaned up some compiler warnings
491
492 - An optimization described in the failover protocol draft is now included,
493   which permits a DHCP server operating in communications-interrupted state
494   to 'rewind' a lease to the state most recently transmitted to its peer,
495   greatly increasing a server's endurance in communications-interrupted.
496   This is supported using a new 'rewind state' record on the dhcpd.leases
497   entry for each lease.
498
499 - Fix the trace code which was broken by the changes to the DDNS code.
500
501                         Changes since 4.1.0 (new features)
502
503 - Failover port configuration can now be left to defaults (port 647) as
504   described in the -12 revision of the Failover draft (and assigned by
505   IANA).  Thanks in part to a patch from David Cantrell at Red Hat.
506
507 - If configured, dhclient may now transmit to an anycast MAC address,
508   rather than using a broadcast address.  Thanks to a patch from David
509   Cantrell at Red Hat.
510
511 - Added client support for setting interface MTU and metric, thanks to
512   Roy "UberLord" Marples <roy@marples.name>.
513
514 - Added client -D option to specify DUID type to send.
515
516 - A new failover configuration parameter has been introduced for those
517   environments where DHCP servers can be reasonably guaranteed to be
518   "down" when the failover TCP socket is severed, "auto-partner-down".
519   This parameter is not generally safe, and by default is disabled, so
520   please carefully review the documentation of this parameter in the
521   dhcpd.conf(5) manpage before determining to use it yourself.
522
523 - Added a configuration function, 'gethostname()', which calls the system
524   function of the same name and presents the results as a data expression.
525   This function can be used to incorporate the system level hostname of
526   the system the DHCP software is operating on in responses or queries (such
527   as including a failover partner's hostname in a dhcp message or binding
528   scope, or having a DHCP client send any system hostname in the host-name or
529   FQDN options by default).
530
531 - The dhcp-renewal-time and dhcp-rebinding-time options may now be configured
532   for DHCPv4 operation and used independently of the dhcp-lease-time
533   calculations.  Invalid renew and rebinding times (e.g., greater than the
534   determined lease time) are omitted.
535
536 - Processing the DHCP to DNS server transactions in an asyncrhonous fashion.
537   The DHCP server or client can now continue with its processing while
538   awaiting replies from the DNS server.
539
540 - The 'hardware [ethernet|etc] ...;' parameter in host records has been
541   extended to attempt to match DHCPv6 clients by the last octets of a
542   DUID-LL or DUID-LLT provided by the client.
543
544                         Changes since 4.1.0 (bug fixes)
545
546 - Remove infinite loop in token_print_indent_concat().
547
548 - Validate the argument to the -p option.
549
550 - The notorious 'option <unknown> ... larger than buffer' log line,
551   which is seen in some malformed DHCP client packets, was modified.
552   It now logs the universe name, and does not log the length values
553   (which are bogus corruption read from the packet anyway).  It also
554   carries a hopefully more useful explanation.
555
556 - Suppress spurious warnings from configure about --datarootdir
557
558 - A bug was fixed that caused the server not to answer some valid Solicit
559   and Request packets, if the dynamic range covering any requested addresses
560   had been deleted from configuration.
561
562 - Update the code to deal with GCC 4.3.  This included two sets of changes.
563   The first is to the configuration files to include the use of
564   AC_USE_SYSTEM_EXTENSIONS.  The second is to deal with return values that
565   were being ignored.
566
567 - The db-time-format option was documented in manpages.
568
569 - Using reserved leases no longer results in 'lease with binding state
570   free not on its queue' error messages, thanks to a patch from Frode
571   Nordahl.
572
573 - Fix a build error in dhcrelay, using older versions of gcc with
574   dhcpv6 disabled.
575
576 - Two uninitialized stack structures are now memset to zero, thanks to a
577   patch from David Cantrell at Red Hat.
578
579 - Fixed a cosmetic bug where pretty-printing valid domain-search options would
580   result in an erroneous error log message ('garbage in format string').
581
582 - A bug in DLPI packet transmission (Solaris, HP/UX) that caused the server
583   to stop receiving packets is fixed.  The same fix also means that the MAC
584   address will no longer appear 'bogus' on DLPI-based systems.
585
586 - A bug in select handling was discovered where the results of one select()
587   call were discarded, causing the server to process the next select() call
588   and use more system calls than required.  This has been repaired - the
589   sockets will be handled after the first return from select(), resulting in
590   fewer system calls.
591
592 - The update-conflict-detection feature would leave an FQDN updated without
593   a DHCID (still currently implemented as a TXT RR).  This would cause later
594   expiration or release events to fail to remove the domain name.  The feature
595   now also inserts the client's up to date DHCID record, so records may safely
596   be removed at expiration or release time.  Thanks to a patch submitted by
597   Christof Chen.
598
599 - Memory leak in the load_balance_mine() function is fixed.  This would
600   leak ~20-30 octets per DHCPDISCOVER packet while failover was in use
601   and in normal state.
602
603 - Various compilation fixes have been included for the memory related
604   DEBUG #defines in includes/site.h.
605
606 - Fixed Linux client script 'unary operator expected' errors with DHCPv6.
607
608 - Fixed setting hostname in Linux hosts that require hostname argument
609   to be double-quoted.  Also allow server-provided hostname to
610   override hostnames 'localhost' and '(none)'.
611
612 - Fixed failover reconnection retry code to continue to retry to reconnect
613   rather than restarting the listener.
614
615 - Compilation on Solaris with USE_SOCKETS defined in includes/site.h has
616   been repaired.  Other USE_ overrides should work better.
617
618 - A check for the local flavor of IFNAMSIZ had a broken 'else' condition,
619   that probably still resulted in the correct behaviour (but wouldn't use
620   a larger defined value provided by the host OS).
621
622 - Fixed a bug where an OMAPI socket disconnection message would not result
623   in scheduling a failover reconnection, if the link had not negotiated a
624   failover connect yet (e.g.: connection refused, asynch socket connect()
625   timeouts).
626
627 - A bug was fixed that caused the 'conflict-done' state to fail to be parsed
628   in failover state records.
629
630 ! A stack overflow vulnerability was fixed in dhclient that could allow
631   remote attackers to execute arbitrary commands as root on the system,
632   or simply terminate the client, by providing an over-long subnet-mask
633   option.  CERT VU#410676 - CVE-2009-0692
634
635 - Fixed a bug where relay agent options would never be returned when
636   processing a DHCPINFORM.
637
638 - Versions 3.0.x syntax with multiple name->code option definitions is now
639   supported.  Note that, similarly to 3.0.x, for by-code lookups only the
640   last option definition is used.
641
642 - Fixed a bug where a time difference of greater than 60 seconds between a
643   failover pair could cause the primary to crash on contact with the
644   secondary.  Thanks to a patch from Steinar Haug.
645
646 - Don't look for IPv6 interfaces on Linux when running in DHCPv4 mode.
647   Thanks to patches from Matthew Newton and David Cantrell.
648
649 - Secondary servers in a failover pair will now perform ddns removals if
650   they had performed ddns updates on a lease that is expiring, or was
651   released through the primary.  As part of the same fix, stale binding scopes
652   will now be removed if a change in identity of a lease's active client is
653   detected, rather than simply if a lease is noticed to have expired (which it
654   may have expired without a failover server noticing in some situations).
655
656 - A patch supplied by David Cantrell at RedHat was applied that detects
657   invalid calling parameters given to the ns_name_ntop() function.
658   Specifically, it detects if the caller passed a pointer and size pair
659   that causes the pointer to integer-wrap past zero.
660
661 ! Fixed a fenceposting bug when a client had two host records configured,
662   one using 'uid' and the other using 'hardware ethernet'.  CVE-2009-1892
663
664 - Fixed the check in the dhcp_interface_signal_handler routine to verify
665   the existence of the linked signal handler before calling it.
666
667 - Both host and subnet6 configuration groups are now included whether a
668   fixed-address6 (DHCPv6) is in use or not.  Host scoped configuration takes
669   precedence.  This fixes two bugs, one where host scoped configuration
670   would not be included from a non-fixed-address6 host record, and the equal
671   and opposite bug where subnet6 scoped configuration would not be used when
672   over-riding values were not present in a matching fixed-address6 host
673   configuration.
674
675 - ./configure now checks to ensure the intX_t and u_intX_t types are defined,
676   correcting a compilation failure when using Sun's compiler.
677
678 - Modified the handling of a connection to avoid releasing the omapi io
679   object for the connection while it is still in use.  One symptom from
680   this error was a segfault when a failover secondary attempted to connect
681   to the failover primary if their clocks were not synchronized.
682
683 - Clean up to allow compilation with gcc 2.95.4 on FreeBSD.  Remove an
684   extra semi-colon from common/dns.c and moved setting a variable to NULL
685   in server/dhcpv6.c to allow the compiler to decide that the variable
686   was always properly set.  
687
688                         Changes since 4.1.0b1
689
690 - A missing "else" in dhcrelay.c could have caused an interface not to
691   be recognized.
692
693                         Changes since 4.1.0a2
694
695 - A cosmetic bug in DHCPDECLINE processing was fixed which caused all
696   successful DHCPDECLINEs to be logged as "not found" rather than
697   "abandoned".
698
699 - Added configuration file examples for DHCPv6.
700
701 - Some failover debugging #defines have been better defined and some
702   high frequency messages moved to a deeper debugging symbol.
703
704 - The CLTT parameter in failover is now only updated by client activity,
705   and not by failover binding updates (taking on the peer's CLTT).
706
707 - Failover BNDUPD messages are now discarded if they conflict with an
708   update that has been transmitted, but not acknowledged.
709
710 - A bug cleaning up unknown-xxx temporary option definitions was fixed.
711
712 - Delayed-ack is now a compile-time option, compiled out by default.
713   This feature is simply too experimental for right now, and causes
714   some problems to some failover installations.  We will revisit this
715   in future releases.
716
717 - The !inet_pton() call in res_mkupdrec was adjusted to '<= 0' as
718   inet_pton returns either 1, 0, or -1.
719
720 - A dhclient-script for MacOS X has been included, which enables
721   'dhclient -6' support.
722
723 - DDNS removal routines were updated so that the DHCID is not removed until
724   the client has been deprived of all A and AAAA records (not only the last
725   one of either of those).  This resolves a bug where dual stack clients
726   would not be able to regain their names after either expiration event.
727
728                         Changes since 4.1.0a1
729
730 - Corrected list of failover state values in dhcpd man page.
731
732 - Fixed a bug that caused some request types to be logged incorrectly.
733
734 - Clients that sent a parameter request list containing the
735   routers option before the subnet mask option were receiving
736   only the latter.  Fixed.
737
738 - The server wasn't always sending the FQDN option when it should.
739
740 - A partner-down failover server no longer emits 'peer holds all free leases'
741   if it is able to newly-allocate one of the peer's leases.
742
743 - Fixed a coredump when adding a class via OMAPI.
744
745 - Check whether files are zero length before trying to parse them.
746
747 - Ari Edelkind's PARANOIA patch has been included and may be compiled in
748   via two ./configure parameters, --enable-paranoia and
749   --enable-early-chroot.
750
751 - ./configure was extended to cover many optional build features, such
752   as failover, server tracing, debugging, and the execute() command.
753
754 - There is now a default 1/4 of a second scheduled delay between delayed
755   fsync()'s, it can be configured by the max-ack-delay configuration
756   parameter.
757
758 - A bug was fixed where the length of a hostname was miscalculated, so that
759   hosts were given odd-looking domain names ("foo.bar.ba.example.com").
760
761 - Shared network selection should be done from the innermost relay
762   valid link-address field, rather than the outermost.
763
764 - Prefix pools are attached to shared network scopes.
765
766 - Merged IA_XX related structures.
767
768 - Add DHCPv6 files in configure.
769
770 - A memory leak when using omapi has been fixed.
771
772 - DHCPv6 vendor-class options (VSIO) are now only sent when they appear
773   on the DHCPv6 ORO.  This resolves a bug where VSIO options were placed
774   in IA_NA encapsulated options fields.
775
776 - Integrated client with stateless, temporary address and prefix delegation
777   support.
778
779 - A double-dereference in dhclient transmission of DHCPDECLINEs was
780   repaired.
781
782 - Fix handling of format code 'Z'.
783
784 - Support "-1" argument in DHCPv6.
785
786 - Merge DHCPv6-only "dhcrelay6" into general-purpose "dhcrelay" (use
787   "-6" option to select DHCPv6 mode).
788
789 - Fix handling of -A and -a flags in dhcrelay; it was failing to expand
790   packet size as needed to add relay agent options.
791
792 - A bug in subnet6 parsing where options contained in subnet6 clauses would
793   not be applied to clients addressed within that network was repaired.
794
795 - When configuring a "subnet {}" or "subnet6 {}" without an explicit
796   shared-network enclosing it, the DHCP software would synthesize a
797   shared-network to contain the subnet.  However, all configuration
798   parameters within the subnet more intuitively belong "to any client
799   on that interface", or rather the synthesized shared-network.  So,
800   when a shared-network is synthesized, it is used to contain the
801   configuration present inside the subnet {} clause.  This means that
802   the configuration will be valid for all clients on that network, not
803   just those addressed out of the stated subnet.  If you intended the
804   opposite, the workaround is to explicitly configure an empty
805   shared-network.
806
807 - A bug was fixed where Information-Request processing was not sourcing
808   configured option values.
809
810 - A warning was added since the DHCPv6 processing software does not yet
811   support class statements.
812
813 - Compliation warnings on GCC 4.3 relating to bootp source address
814   selection were repaired.
815
816 - The v6 BSD socket method was updated to use a single UDP BSD socket
817   no matter how many interfaces are involved, differentiating the
818   interfaces the packets were received on by the interface index supplied
819   by the OS.
820
821 - The relay agent no longer listens to the All DHCP Servers Multicast
822   address.
823
824 - A bug was fixed in data_string_sprintfa() where va_start was only called
825   once for two invocations of vsprintf() variants.
826
827 - ERO (RFC 4994) server support.
828
829 - Basic and partial DHCPv6 leasequery support.
830
831 - Reliable DHCPv6 release (previous behavior, send release and exit, is
832   still available with dhclient -6 -1 -r).
833
834                         Changes since 4.0.0 (new features)
835
836 - Added DHCPv6 rapid commit support.
837
838 - Added explicit parser support for zero-length DHCP options, such as
839   rapid-commit, via format code 'Z'.
840
841 - It's now possible to update the "ends" field of a lease with OMAPI.
842   This is useful if you want not only to release a lease, but also make
843   it available for reuse right away.  Hat tip to Christof Chen.
844
845 - Fixed definition of the iaaddr hash functions to use the correct 
846   functions when referencing and dereferencing memory.
847
848 - Some definitions not in phase with the IANA registry were updated.
849
850 - Allocated interface IDs are better controlled ('u' bit set to zero,
851   reserved IDs avoided).
852
853 - Unicast options are taken into account only for RENEWs.
854
855 - NoAddrsAvail answers to SOLICITs are always ADVERTISEs even when a SOLICIT
856   carries a rapid-commit option.
857
858 - Return in place of raise an impossible condition when one tries to release
859   an empty active lease.
860
861 - Timer granularity is now 1/100s in the DHCPv6 client.
862
863 - The dhclient-script was updated to create a host route for the default
864   gateway if the supplied subnet mask for an IPv4 address was a /32.  This
865   allows the client to work in 'captive' network environments, where the
866   operator does not want clients to crosstalk directly.
867
868 - MINUS tokens should be parseable again.
869
870 - Multiple (up to "delayed-ack x;" maximum) DHCPv4 packets are now queued and
871   released in bursts after single fsync() events when the upper limit is
872   reached or if the receiving sockets go dry.  The practical upshot is
873   that fsync-coupled server performance is now multiplicitively increased.
874   The default delayed ack limit is 28.  Thanks entirely to a patch from
875   Christof Chen.
876
877                         Changes since 4.0.0 (bug fixes)
878
879 - DHCP now builds on AIX.
880
881 - Exit with warning when DHCPv6-specific statements are used in the
882   config file but -6 is not specified.
883
884 - Fixed "--version" flag in dhcrelay
885
886 - The 'min-secs' configuration parameter's log message has been updated to
887   be more helpful.
888
889 - The warning logged when an address range doesn't fit in the subnets
890   they were declared has been updated to be more helpful and identify the
891   typo in configuration that created the spanning addresses.
892
893 - A bug in failover pool rebalancing that caused POOLREQ message ping-pongs
894   was repaired.
895
896 - A flaw in failover pool rebalancing that could cause POOLREQ messages to
897   be sent outside of the min-balance/max-balance scheduled intervals has
898   been repaired.
899
900 - A cosmetic bug during potential-conflict recovery that caused the peer's
901   'conflict-done' state message to be logged as 'unknown-state' has been
902   repaired.  It is now logged correctly.
903
904 - A bug was fixed where the 'giaddr' may be used to find the client's subnet
905   rather than its own 'ciaddr'.
906
907 - A log message was introduced to clarify the situation where a failover
908   'address' parameter (the server's local address) did not resolve to an
909   IPv4 address.
910
911 - The minimum site code value was set to 224 in 3.1.0 to track RFC3942.  This
912   broke a lot of legacy site local configurations.  The new code in place will
913   track site local space minimum option codes and logs a warning to encourage
914   updates and exploration of site local code migration problems.  Option
915   codes less than 128 in site local spaces remain inaccessible.
916
917 - A possible relay agent option bug was repaired where random server
918   initialization state may have been used to signal the relay agent
919   information options sub-option code for the 'END' of the option space.
920
921 - Fixes to allow code to compile and run on Solaris 9.
922
923 - Fixes to allow code to compile on Mac OS X Leopard (10.5).
924
925 - When server is configured with options that it overrides, a warning is
926   issued when the configuration file is read, rather than at the time the
927   option is overridden. This was important, because the warning was given
928   every time the option was overridden, which could create a lot of 
929   unnecessary logging.
930
931 - Fixed a compilation problems on platforms that define a value for FDDI,
932   which conflicts with a dhcp configuration syntax token by the same name.
933
934 - When a failover server suspects it has encountered a peer running a
935   version 3.0.x failover server, a warning that the failover wire protocol
936   is incompatible is printed.
937
938 - The failover server no longer issues a floating point error if it encounters
939   a previously undefined option code.
940
941 - Fix startup error messages to report a missing "subnet6 declaration", rather
942   than a missing "subnet declaration", when running as a DHCPv6 server.
943
944 - DHCPv6 client timestamp in DUID was based on the year 1970 rather 
945   than the year 2000.
946
947 - Warn when attempting to use a hardware parameter in DHCPv6.
948
949 - DHCPv6 released resources are now marked as released by the client.
950
951 - 'Soft' bindings have no more side-effects.
952
953                         Changes since 4.0.0b3
954
955 - The reverse dns name for PTR updates on IPv6 addresses has been fixed to
956   use ip6.arpa. rather than default to in-addr.arpa and require user
957   configuration.
958
959 - dhc6_lease_destroy() and dhc6_ia_destroy() now set lease and IA pointers
960   to NULL after freeing, to prevent subsequent accesses to freed memory.
961
962 - The DHCPv6 server would not send the preference option unless the 
963   client requested it, via the ORO. This has been fixed, so the DHCPv6
964   server will always send the preference value if it is configured.
965
966 - When addresses were passed as hints to the server in an IA, they were 
967   incorrectly handled, sometimes being treated as an error. Now the 
968   server will treat these as hints and ignore them if it cannot supply
969   a requested address.
970
971 - If the client had multiple addresses, and one expired (was not renewed
972   by the server), the client would continue to attempt to renew the same
973   old address over and over.  Now, the client will omit any expired
974   addresses from future Confirm, Renew, or Rebind messages.
975
976 - dhclient -6 will now select renew/rebind timers based upon the longest
977   address expiration time rather than the shortest expiration time, in
978   order to avoid cascading renewals in the event a server elects not to
979   extend one of multiple IAADDR leases.
980
981 - The server now limits clients that request multiple addresses to one
982   address per IA by default, which can be adjusted through the
983   "limit-addrs-per-ia" configuration option.
984
985 - The DHCPv6 client now issues fresh transaction IDs on Renew and Rebind
986   message exchanges, rather than using the most recent ID.
987
988 - The DHCPv6 server now replies to Information-Request messages.
989
990 - A bug was fixed in the dhclient-script for BSDs to correctly carry error
991   codes through some conditions.
992
993 - The parsing of some options in the dhclient lease file, in particular
994   the success DHCPv6 status-code, was fixed.
995
996 - A bug was fixed that caused the DHCPv6 ORO option to be corrupted with
997   seemingly random values.
998
999 - A reference overleak in DHCPv6 shared network processing was repaired.
1000
1001 - ./configure now autodetects local database locations rather than trying
1002   to put dhcpd.leases and dhclient.leases in /usr/local/var/db, which no
1003   one ever has.
1004
1005 - Regression fix for bug where server advertised a IPv6 address in 
1006   response to a SOLICIT but would not return the address in response 
1007   to a REQUEST.
1008
1009 - A bug was fixed where the DHCPv6 server puts the NoAddrsAvail status
1010   code in the IA_NA was fixed.  The status code now appears in the root
1011   level.
1012
1013                         Changes since 4.0.0b2
1014
1015 - Clarified error message when lease limit exceeded
1016
1017 - Relative time may now be used as a qualifier for 'allow' and 'deny' access
1018   control lists.  These directives may be used to assist in re-addressing
1019   address pools without having to constantly reconfigure the server.  Please
1020   see 'man dhcpd.conf' for more information on allow/deny 'after time' syntax.
1021   Thanks to a patch from Christof Chen.
1022
1023 - The server will now include multiple IA_NA's and multiple IAADDRs within
1024   them, if advertised by the client.  It still only seeks to allocate one
1025   new address.
1026
1027                         Changes since 4.0.0b1
1028
1029 - Use different paths for PID and lease files when running in DHCPv4
1030   or DHCPv6 mode, so that servers for both protcols can be run
1031   simultaneously on a single interface.
1032
1033 - Fixed a buffer overflow error which could have allowed a denial
1034   of service under unusual server configurations
1035
1036 - Eliminated a spurious error message from the client
1037
1038 - A number of bugs with the internal handling of lease state on the 
1039   server have been fixed. Some of these could cause server crashes.
1040
1041 - The peer_wants_leases() changes pulled up from 3.1.0 were corrected,
1042   'never used' leases will no longer consistently shift between servers
1043   on every pool rebalance run.
1044
1045 - sendmsg()/recvmsg() control buffers are now declared in such a way to
1046   ensure they are correctly aligned on all (esp. 64-bit) architectures.
1047
1048 - The client leasing subsystem was streamlined and corrected to account
1049   more closely for changes in client link attachment selection.
1050
1051                         Changes since 4.0.0a3
1052
1053 - The DHCP server no longer requires a "ddns-update-style" statement, 
1054   and now defaults to "none", which means DNS updates are disabled.
1055
1056 - Log messages when failover peer names mismatch have been improved to
1057   point out the problem.
1058
1059 - Bug where server advertised a IPv6 address in response to a SOLICIT 
1060   but would not return the address in response to a REQUEST. Thanks to
1061   Dennis Kou for finding the bug.
1062
1063 - Fixed an error causing the server to lock up on lease expiration,
1064   reported independently by Jothilingam Vasu and Dennis Kou.
1065
1066 - Fixed a ./configure bug where compile tests were failing due to
1067   "-Werror" (unused variable) rather than the actual test failure.  Lead
1068   to inconsistent and unworkable auto-configurations.
1069
1070 - Compilation with DLPI and -Werror has been repaired.
1071
1072 - Error in decoding IA_NA option if multiple interfaces are present 
1073   fixed by Marcus Goller.
1074
1075 - DHCPv6 server Confirm message processing has been enhanced - it no
1076   longer replies only to clients with host {} records, it now replies
1077   as directed in RFC3315 section 18.2.2 - that is, to all clients
1078   regardless of the existence of bindings.
1079
1080 - A core dump during expired lease cleanup has been repaired.
1081
1082 - DDNS updates state information are now stored in 'binding scopes' that
1083   follow the leases through their lifecycles.  This enables DDNS teardowns
1084   on leases that are assigned and expired inbetween a server restart (the
1085   state is recovered from dhcpd.leases).  Arbitrary user-specified binding
1086   scopes ('set var = "value";') are not yet supported.
1087
1088 - Additional compilation problems on HP/UX have been repaired.
1089
1090                         Changes since 4.0.0a2
1091
1092 - Fix for startup where there are no IPv4 addresses on an interface.
1093   Thanks to Marcus Goller for reporting the bug.
1094
1095 - Fixed file descriptor leak on listen failure. Thanks to Tom Clark.
1096
1097 - Bug in server configuration parser caused server to get stuck on
1098   startup for certain bad pool declarations. Thanks to Guillaume 
1099   Knispel for the bug report and fix.
1100
1101 - Code cleaned to remove warnings reported by "gcc -Wall".
1102
1103 - DHCPv6 is now the default. You can disable DHCPv6 support using the
1104   "--disable-dhcpv6" flag when you run the configure script.
1105
1106 - An internal database inconsistency bug was repaired where the server
1107   would segfault if a client attempted to renew a lease that had been
1108   loaded from persistent storage.
1109
1110 - 'request' and 'also request' syntaxes have been added to accommodate
1111   the DHCPv6 client configuration.  'send dhcp6.oro' is no longer
1112   necessary.
1113
1114 - Bug fixed where configuration file parsing did not work with 
1115   zero-length options; this made it impossible to set the 
1116   rapid-commit option.
1117
1118 - Bogus messages about host records with IPv4 fixed-addresses being of
1119   non-128-bits in length were removed.
1120
1121                         Changes since 4.0.0a1
1122
1123 - Bug in octal parsing fixed. Thanks to Bernd Fuhrmann for the report
1124   and fix.
1125
1126 - Autoconf now supplies proper flags for Solaris DHCPv6 builds.
1127
1128 - Fix for parsing error on some IPv6 addresses.
1129
1130 - Invalid CIDR representation for IPv6 subnets or ranges now checked
1131   for when loading configuration.
1132
1133 - Compilation on HP/UX has been repaired.  The changes should generally
1134   apply to any architecture that supplies SIOCGLIFCONF but does not
1135   use 'struct lifconf' structures to pass values.
1136
1137 - Two new operators, ~= and ~~, have been integrated to implement
1138   boolean matches by regular expression (such as may be used in
1139   class matching statements).  Thanks to a patch by Alexandr S.
1140   Agranovsky, which underwent slight modification.
1141
1142 - Fix for icmp packets on 64-bit systems (bug introduced in 4.0).
1143
1144 - A bug was fixed in interface discovery wherein an error identifying
1145   a server-configured interface with no IPv4 addresses would SEGV.
1146
1147 - Fixed a bug in which write_lease() might report a failure incorrectly
1148
1149 - Added support for DHCPv6 Release messages
1150
1151 - Added -x option to dhclient, which triggers dhclient processes
1152   to exit gracefully without releasing leases first
1153
1154 - All binaries (client, server, relay) now change directories
1155   to / before going into daemon mode, so as not to hold $CWD open
1156
1157 - Fixed a bug parsing DHCPv6 client-id's in host-identifier statements
1158
1159 - Fixed a bug with the 'ddns-updates' boolean server configuration
1160   parameter, which caused the server to fail.
1161
1162                         Changes since 4.0.0-20070413
1163
1164 - Old (expired) leases are now cleaned.
1165
1166 - IPv6 subnets now have support for arbitrary allocation ranges via
1167   a new 'range6' configuration directive.
1168
1169 - An obviated option code hash lookup to find D6O_CLIENTID was removed.
1170
1171 - Corrected some situations where variables might be used without being
1172   initialized.
1173
1174 - Silenced several other compiler warnings.
1175
1176 - Include the more standard sys/uio.h rather than rely upon other
1177   header files to include it (fixes a BSD 4.2 compile failure).
1178
1179 - Duplicate dhclient-script updates for DHCPv6 to all provided scripts.
1180
1181 - DHCPv4 I/O methods that failed to sense hardware address were corrected.
1182
1183 - DHCPv4 is now the default (as documented) rather than DHCPv6.  The default
1184   was set to DHCPv6 to facilitate ease early development, and forgotten.
1185
1186 - Corrected a segmentation violation in DHCPv4 socket processing.
1187
1188 - dhclient will now fork() into the background once it binds to an
1189   IPv6 address, or immediately if the -n flag is supplied.
1190
1191 - -q is now the default behaviour on dhclient, with -d or -v enabling
1192   non-quiet (stderr logging) mode.
1193
1194 - Fix documentation of the domain-search atom (quoted, with commas).
1195
1196 - Document DHCPv6 options presently in the default table.
1197
1198 - Replaced ./configure shellscripting with GNU Autoconf.
1199
1200                      Changes since 3.1.0 (NEW FEATURES)
1201
1202 - DHCPv6 Client and Server protocol support.  Use '-6' to run the daemons
1203   as v6-only.  Use '-4' to run the daemons as v4-only (default.  There is
1204   no support currently for both.
1205
1206 - Server support for multiple IA_NA options, containing at most one
1207   IAADDR option.
1208
1209 - Client support for one IA_NA option, containing any number of IAADDR
1210   options.
1211
1212 - Server support for the DHCPv6 Information-request message.
1213
1214 - Inappropriate unicast DHCPv6 messages sent to the server are now
1215   discarded, and this has rearchitected the IO system slightly.
1216
1217 - The DHCPv6 server DUID defaults to type 1, is persistently stored in
1218   the leases database, and can be over-ridden (either completely, or by
1219   specifying type 1 or type 2).
1220
1221 - The server only uses Rapid-Commit if it has been configured with the
1222   Rapid-Commit option and the client requests it.
1223
1224 - DDNS support. We now update AAAA records in the same place we would
1225   update A records, if we have an IPv6 address. We also generate IP6.ARPA
1226   style names for PTR records if we're dealing with an IPv6 address.  Both
1227   A and AAAA updates are done using the same 'fqdn.' virtual option space
1228   (although the DHCPv4 FQDN and DHCPv6 FQDN options are formatted
1229   differently, they both use the same code here).
1230
1231 - The Linux dhclient-script attempts to set and remove assigned addresses,
1232   and to configure /etc/resolv.conf from nameserver and domain name
1233   configurations.  It can be extended to configure other parameters.
1234
1235 - Initial DHCPv6 lease support.
1236
1237 - The IO system now tracks all local IP addresses, so that the DHCP
1238   applications (particularly the dhcrelay) can discern between what frames
1239   were transmitted to it, and what frames are being carried through it which
1240   it should not intercept.
1241
1242                         Changes since 3.1.0 (Maintenance)
1243
1244 - A bug was repaired where MAC Address Affinity for virgin leases always
1245   mapped to the primary.  Virgin leases now have an interleaved preference
1246   between primary and secondary.
1247
1248 - A bug was repaired where MAC Address Affinity for clients with no client
1249   identifier was sometimes mishashed to the peer.  Load balancing during
1250   runtime and pool rebalancing were opposing.
1251
1252 - An assertion in lease counting relating to reserved leases was repaired.
1253
1254 - The subnet-mask option inclusion now conforms with RFC2132 section 3.3;
1255   it will only appear prior to the routers option if it is present on the
1256   Parameter-Request-List.  The subnet-mask option will also only be
1257   included by default (if it is not on the PRL) in response to DISCOVER
1258   or REQUEST messages.
1259
1260 - The FQDN option is only supplied if the client supplied an FQDN option or
1261   if the FQDN option was explicitly requested on the PRL.
1262
1263 - Dynamic BOOTP leases are now load balanced in failover.
1264
1265                         Changes since 3.1.0rc1
1266
1267 - The parse warning that 'deny dyanmic bootp;' must be configured for
1268   failover protected subnets was removed.
1269
1270                         Changes since 3.1.0b2
1271
1272 - Failover rebalance events no longer play ping pong with round errors
1273   (moving leases between free and back to backup where there are an
1274   odd number of leases).
1275
1276 - The 'pool' log line has been split into two messages, one before the
1277   rebalance run, and one after.
1278
1279 - Any queued BNDACKs are transmitted before transmitting new BNDUPDs.
1280   This enforces the correct sequence of events for the remote server
1281   processing these messages.
1282
1283                         Changes since 3.1.0b1
1284
1285 - Fixed a bug that caused OMAPI clients to freeze when opening lease
1286   objects.
1287
1288 - A new server config option "fqdn-reply" specifies whether the server
1289   should send out option 81 (FQDN).  Defaults to "on".  If set to "off",
1290   the FQDN option is not sent, even if the client requested it.  This is
1291   needed because some clients misbehave otherwise.  Thanks to Christof Chen
1292   at Allianz.
1293
1294 - Allow trace output files (-tf option) to be overwritten, rather than
1295   crashing dhcpd if the file already exists
1296
1297 - A bug was fixed that caused dhcpd to segfault if a pool was declared
1298   outside the scope of a subnet in dhcpd.conf.
1299
1300 - Some uninitialized values were repaired in dhcpleasequery.c that
1301   caused the server to abort.
1302
1303 - A new server config option, 'do-reverse-updates', has been added
1304   which causes the server to abstain from performing updates on PTR
1305   records.  Thanks to a patch from Christof Chen at Allianz.
1306
1307 - A bug was repaired in subencapsulation support, where spaces separated
1308   by empty spaces would not get included.
1309
1310 - A bug in dhclient was repaired which caused it to send parameter request
1311   lists of 55 bytes in length no matter how long the declared PRL was.
1312
1313 - 'dhcp.c(3953): non-null pointer' has been repaired.  This fixes a flaw
1314   wherein the DHCPv4 server may ignore a configured server-identifier.
1315
1316 - A flaw in failover startup sequences was repaired that sometimes left
1317   the primary DHCP server's pool rebalance schedules unscheduled.
1318
1319 - Corrected a flaw that broke encapsulated spaces included due to presence
1320   on the parameter request list.
1321
1322                         Changes since 3.1.0a3
1323
1324 - Some spelling fixes.
1325
1326                         Changes since 3.1.0a2
1327
1328 - A bug was fixed where attempting to permit leasequeries results in a
1329   fatal internal error, "Unable to find server option 49".
1330
1331 - A bug was fixed in dhclient rendering the textual output form of the
1332   domain-search option syntax.
1333
1334                         Changes since 3.1.0a1
1335
1336 - A bug in the FQDN universe that added FQDN codes to the NWIP universe's
1337   hash table was repaired.
1338
1339 - The servers now try harder to transmit pending binding updates when
1340   entering normal state.
1341
1342 - UPDREQ/UPDREQALL handling was optimized - it no longer dequeues and
1343   requeues all pending updates.  This should reduce the number of spurious
1344   'xid mismatch' log messages.
1345
1346 - An option definition referencing leak was fixed, which resulted in early
1347   termination of dhclient upon the renewal event.
1348
1349 - Some default hash table sizes were tweaked, some upwards, some downwards.
1350   3.1.0a1's tables resulted in a reduction in default server memory use.
1351   The new selected values provide more of a zero sum (increasing the size
1352   of tables likely to be populated, decreasing the size of tables unlikely).
1353
1354 - Lease structures appear in three separate hashes: by IP address, by UID,
1355   and by hardware address.  One type of table was used for all three, and
1356   improvements to IP address hashing were applied to all three (so UID and
1357   hardware addresses were treated like 4-byte integers).  There are now two
1358   types of tables, and the uid/hw hashes use functions more appropriate
1359   to their needs.
1360
1361 - The max-lease-misbalance percentage no longer causes scheduled rebalance
1362   runs to be skipped: it still governs the schedule, but every scheduled
1363   run will attempt balance.
1364
1365 - A segfault bug in recursive encapsulation support has been corrected.
1366
1367                         Changes since 3.0 (New Features)
1368
1369 - A workaround for certain STSN servers that send a mangled domain-name
1370   option was introduced for dhclient.  The client will now accept corrupted
1371   server responses, if they contain a valid DHCP_MESSAGE_TYPE (OFFER, ACK,
1372   or NAK).  The server will continue to not accept corrupt client packets.
1373
1374 - Support for 'reserved' (pseudo-static) and BOOTP leases via failover
1375   was introduced.
1376
1377 - Support for adding, removing, and managing class and subclass statements
1378   via OMAPI.
1379
1380 - The failover implementation was updated to comply with revision 12 of
1381   the protocol draft.
1382
1383 - 'make install' now creates the initial zero-length dhcpd.leases file if
1384   one does not already exist on the system.
1385
1386 - RFC3942 compliance, site-local option spaces start at 224 now, not 128.
1387
1388 - The Load Balance Algorithm was misimplemented.  The current implementation
1389   matches RFC 3074.
1390
1391 - lcase() and ucase() configuration expressions have been added which adjust
1392   their arguments from upper to lower and lower to upper cases respectively.
1393   Thanks to a patch from Albert Herranz.
1394
1395 - The dhclient 'reject ...;' statement, which rejects leases given by named
1396   server-identifiers, now permits address ranges to be specified in CIDR
1397   notation.  Thanks to a patch from David Boyce.
1398
1399 - The subnet-mask option is now supplied by default, but at lowest
1400   priority.  This helps a small minority of clients that provide parameter
1401   request lists, but do not list the subnet-mask option because they were
1402   designed to interoperate with a server that behaves in this manner.
1403
1404 - The FQDN option is similarly supplied even if it does not appear on the
1405   parameter request list, but not to the exclusion of options that do
1406   appear at the parameter request list.  Up until now it had ultimate
1407   priority over the client's parameter request list.
1408
1409 - Varying option space code and length bit widths (8/16/32) are now
1410   supported.  This is a milestone in achieving RFC 3925 "VIVSO" and
1411   DHCPv6 support.
1412
1413 - A new common (server or client) option, 'db-time-format local;', has
1414   been added which prints the local time in /var/db/dhcpd.leases rather
1415   than UTC.  Thanks to a patch from Ken Lalonde.
1416
1417 - Some patches to improve DHCP Server startup speed from Andrew Matheson
1418   have been incorporated.
1419
1420 - Failover pairs now implement 'MAC Affinity' on leases moving from the
1421   active to free states.  Leases that belonged to the failover secondary
1422   are moved to BACKUP state rather than FREE upon exiting EXPIRED state.
1423   If lease rebalancing must move leases, it tries first to move leases
1424   that belong to the peer in need.
1425
1426 - The server no longer sends POOLREQ messages unless the pool is severely
1427   misbalanced in the peer's favor (see 'man dhcpd.conf' for more details).
1428
1429 - Pool rebalance events no longer happen upon successfully allocating a
1430   lease.  Instead, they happen on a schedule.  See 'man dhcpd.conf' for the
1431   min-balance and max-balance statements for more information.
1432
1433 - The DHCP Relay Agent Information Option / Link Selection Sub-Option
1434   is now supported.  (See RFC3527 for details).
1435
1436 - A new DDNS related server option, update-conflict-detection, has been
1437   added.  If this option is enabled, dhcpd will perform normal DHCID
1438   conflict resolution (the default).  If this option is disabled, it will
1439   instead trust the assigned name implicitly (removing any other bindings
1440   on that name).  This option has not been made available in dhclient.
1441
1442 - In those cases where the DHCP software manufactures an IP header (to
1443   transmit via bpf, lpf, etc), the IP TTL the software selects has been
1444   increased from 16 to 128.  This is intended to match Microsoft Windows
1445   DHCP Client behaviour, to increase compatibility.
1446
1447 - 'ignore client-updates;' now has behaviour that is different from
1448   'deny client-updates;'.  The client's request is not truly ignored,
1449   rather it is encouraged.  Should this value be configured, the server
1450   updates DNS as though client-updates were set to 'deny'.  That is, it
1451   enters into DNS whatever it is configured to do already, provided it is
1452   configured to.  Then it sends a response to the client that lets the
1453   client believe it is performing client updates (which it will), probably
1454   for a different name.  In essence, this lets the client do as it will,
1455   ignoring this aspect of their request.
1456
1457 - Support for compressed 'domain name list' style DHCP option contents, and
1458   in particular the domain search option (#119) was added.
1459
1460 - The DHCP LEASEQUERY protocol as defined in RFC4388 is now implemented.
1461   LEASEQUERY lets you query the DHCP server for information about a lease,
1462   using either an IP address, MAC address, or client identifier.  Thanks
1463   to a patch from Justin Haddad.
1464
1465 - DHCPD is now RFC2131 section 4.1 compliant (broadcast to all-ones ip and
1466   ethernet mac address) on the SCO platform specifically without any strange
1467   ifconfig hacks.  Many thanks go to the Kroger Co. for donating the
1468   hardware and funding the development.
1469
1470 - A new common configuration executable statement, execute(), has been
1471   added.  This permits dhcpd or dhclient to execute a named external
1472   program with command line arguments specified from other configuration
1473   language.  Thanks to a patch written by Mattias Ronnblom, gotten to us
1474   via Robin Breathe.
1475
1476 - A new dhcp server option 'adaptive-lease-time-threshold' has been added
1477   which causes the server to substantially reduce lease-times if there are
1478   few (configured percentage) remaining leases.  Thanks to a patch submitted
1479   from Christof Chen.
1480
1481 - Encapsulated option spaces within encapsulated option spaces is now
1482   formally supported.
1483
1484                         Changes since 3.0.6rc1
1485
1486 - supersede_lease() now requeues leases in their respective hardware
1487   address hash bucket.  This mirrors client identifier behaviour.
1488
1489                         Changes since 3.0.5
1490
1491 - Assorted fixes for broken network devices:  Packet length is now
1492   determined from the IP header length field to finally calculate the
1493   UDP payload length, because some NIC drivers return more data than
1494   they actually received.
1495
1496 - UDP packets are now stored in aligned data structures.
1497
1498 - A logic error in omapi interface code was repaired that might result in
1499   incorrectly indicating 'up' state when any flags were set, rather than
1500   specifically the INTERFACE_REQUESTED flag.  Thanks to a patch from
1501   Jochen Voss which got to us via Andrew Pollock at Debian.
1502
1503 - A reference leak on binding scopes set by ddns updates was repaired.
1504
1505 - A memory leak in the minires_nsendsigned() function call was repaired.
1506   Effectively, this leaked ~176 bytes per DDNS update.
1507
1508 - In the case where an "L2" DHCP Relay Agent (one that does not set giaddr)
1509   was directly attached to the same broadcast domain as the DHCP server,
1510   the RFC3046 relay agent information option was not being returned to the
1511   relay in the server's replies.  This was fixed; the dhcp server no longer
1512   requires the giaddr to reply with relay agent information.  Note that
1513   this also improves compatibility with L2 devices that "intercept" DHCP
1514   packets and expect relay agent information even in unicast (renewal)
1515   replies.  Thanks to a patch from Pekka Silvonen.
1516
1517 - A bug was fixed where the BOOTP header 'sname' field had a value, the
1518   copy written to persistent storage was actually the contents of the
1519   'file' field.
1520
1521 - A bug was fixed where the nwip virtual option space was referencing
1522   the fqdn option's virtual option space's option cache.
1523
1524 - Timestamp parsing errors that indicated missing "minutes" fields rather
1525   than the actually missing "seconds" fields have been repaired thanks to
1526   a patch from Kevin Steves.
1527
1528 - A grammar error in the dhclient.8 manpage was repaired thanks to a patch
1529   from Chris Wagner.
1530
1531 - Several spelling typos were repaired, and some cross-references to other
1532   relevant documents were included in the manpages, thanks to a patch
1533   by Andrew Pollock which got to us via Tomas Pospisek.
1534
1535 - Some bugs were fixed in the 'emergency relay agent options hologram'
1536   which is used to retain relay agent option contents from when the
1537   client was in INIT or REBIND states.  This should solve problems where
1538   relay agent options were not echoed from the server, even when giaddr
1539   was set.
1540
1541 - dhclient now closes its descriptor to dhclient.leases prior to executing
1542   dhclient-script.  Thanks to a patch from Tomas Pospisek.
1543
1544 - The server's "by client-id" and "by hardware address" hash table lists
1545   are now sorted according to the preference to re-allocate that lease to
1546   returning clients.  This should eliminate pool starvation problems
1547   arising when "INIT" clients were given new leases rather than presently
1548   active ones.
1549
1550                         Changes since 3.0.5rc1
1551
1552 - A bug was repaired in fixes to the dhclient, which sought to run the
1553   dhclient-script with the 'EXPIRE' state should it receive a NAK in
1554   response to a REQUEST.  The client now iterates the PREINIT state
1555   after the EXPIRE state, so that interfaces that might be configured
1556   'down' can be brought back 'up' and initialized.
1557
1558 - DHCPINFORM handling for clients that properly set ciaddr and come to the
1559   server via a relay aget has been repaired.
1560
1561                         Changes since 3.0.4
1562
1563 - A warning that host statements declared within subnet or shared-network
1564   scopes are actually global has been added.
1565
1566 - The default minimum lease time (if min-lease-time was not specified)
1567   was raised from 0 to 300.  0 is not thought to be sensible, and is
1568   known to be damaging.
1569
1570 - Added additional fatal error sanity checks surrounding lease binding
1571   state count calculations (free/active counts used for failover pool
1572   balancing).
1573
1574 - Some time value size fixes in 3.0.4 brought on from FreeBSD /usr/ports were
1575   misapplied to server values rather than client values.  The server no longer
1576   advertises 8-byte lease-time options when on 64-bit platforms.
1577
1578 - A bug where leases not in ACTIVE state would get billed to billed classes
1579   (classes with lease limitations) was fixed.  Non-active leases OFFERed
1580   to clients are no longer billed (but billing is checked before offering).
1581
1582 - The dhcpd.conf.5 manpage was updated in regard to the ddns-domainname
1583   configuration option - the default configuration and results should be
1584   more clear now.
1585
1586 - If the dhclient were to receive a DHCPNAK while it was in the RENEW
1587   state (and consequently, had an active, 'bound' address and related
1588   configuration options), it would fail to 'tear down' this information
1589   before proceeding into INIT state.  dhclient now iterates the dhclient-
1590   script with the 'EXPIRE' action to cause these teardowns prior to entering
1591   INIT state.  Thanks to a patch from Chris Zimmerman.
1592
1593 - The omapi.1 manpage had some formatting errors repaired thanks to a patch
1594   from Yoshihiko Sarumaru.
1595
1596 - A few lines of code that were failover-specific were moved within
1597   #if defined() clauses so that compilation without failover could be
1598   made possible.
1599
1600 - The log message emitted when the 'leased-address' value was not available
1601   in dhcpd.conf "executable statements" has been updated to be more helpful.
1602   Manpage information for this value has also been updated.
1603
1604 - Abandoned or dissociated (err condition) leases now remove any related
1605   dynamic dns bindings.  Thanks to a patch from Patrick Schoo.
1606
1607 - Attempting to write a new lease file to replace a corrupt (due to
1608   encountering non-retryable errors during writing) lease file should
1609   no longer result in an infinite recursion.
1610
1611 - Host declaration hardware addresses and client identifiers may only be
1612   configured once.  dhcpd will now fail to load config files that specify
1613   multiple identifiers (previous versions would silently over-ride the
1614   value with the later configured value).
1615
1616 - Several option codes that have been allocated since our last release
1617   have been named and documented.
1618
1619 - Option names of the form "unknown-123" have been removed from the in-
1620   memory hash tables.  In order to support options of these names that
1621   may appear in dhclient.leases or similar in previous versions, the
1622   parser will now find the new option code definition, or mock up a
1623   generic option code definition.  This should result in a smooth
1624   transition from one name to the other, as the new name is used to
1625   write new output.
1626
1627                         Changes since 3.0.4rc1
1628
1629 - The dhcp-options.5 manpage was updated to correct indentation errors
1630   thanks to a patch from Jean Delvare.
1631
1632                         Changes since 3.0.4b3
1633
1634 - Some manual pages were clarified pursuant to discussion on the dhcp-server
1635   mailing list.
1636
1637                         Changes since 3.0.4b2
1638
1639 - Null-termination sensing for certain clients that unfortunately require
1640   it in DHCPINFORM processing was repaired.
1641
1642 - The host-name option and a few others were moved from "X" format to "t"
1643   format to be compatible with new NULL handling functions.
1644
1645 - DHCPINFORM processing is a little more careful about return addressing
1646   its responses, or if responding via a relay.  The INFORM related
1647   messages also log the 'effective client ip address' rather than the
1648   client's supplied ciaddr (since some clients produce null ciaddrs).
1649
1650 - The server was inappropriately sending leases to the RESET state in the
1651   event that multiple active leases were found to match a singly-identified
1652   client.  This was changed to RELEASED (by accepting a different, ACTIVE
1653   binding, the client is implicitly releasing its lease).  This repairs a
1654   bug wherein secondary servers in failover pairs detecting this condition
1655   move leases to RESET, and primaries refuse to accept that state
1656   transition (properly).
1657
1658 - The memset-after-dmalloc() changes made in 3.0.4b1 have been backed out.
1659
1660                         Changes since 3.0.4b1
1661
1662 - Command line parsing in omshell was repaired - it no longer closes
1663   STDIN after reading one line.
1664
1665 - The resolver library no longer closes the /etc/resolv.conf file
1666   descriptor it opened twice.
1667
1668 - Changes to trailing NULL removal in 't' option-atoms has been rethought,
1669   it now includes 'd' (domain name) types, and tries hard not to rewind an
1670   option beyond the start of the text field it is un-terminating.
1671
1672                         Changes since 3.0.3
1673
1674 - A DDNS update handling function was misusing the DNS error codes, rather
1675   than the internal generic result enumeration.  The result is a confusing
1676   syslog line, logging the wrong condition.
1677
1678 - The DHCP Server was not checking pool balance in the case where it brought
1679   a non-ACTIVE lease out of storage for a client that was returning to use
1680   a lease it once had long ago, and had since expired.
1681
1682 - Failover peers no longer bother to look for free leases to allocate when
1683   they already found the client's ACTIVE lease.  DISCOVERs are load balanced
1684   whether freely-allocated or not, unless the server doubts the peer has
1685   leases to allocate.
1686
1687 - Fixed a bug in dhcrelay agent addition code that suppressed trailing
1688   PAD options - it was suppressing only one trailing PAD option, rather
1689   than the entire block of them.
1690
1691 ! Fixed some unlikely overlapping-region memcpy() bugs in dhcrelay agent
1692   option addition and stripping code.  Added a few sanity checks.  Although
1693   highly improbable, due to requiring the reception of a DHCP datagram well
1694   in excess of all known to be used physical MTU limitations, it is possible
1695   this may have been used in a stack overflow security vulnerability.  Thanks
1696   to a patch from infamous42md.
1697
1698 ! Added some sanity checks to OMAPI connection/authentication code.
1699   Although highly improbable, due to having to deliver in excess of 2^32
1700   bytes of data via the OMAPI channel, not to mention requiring dhcpd to
1701   be able to malloc() a memory region 2^32 bytes in size, it was possible
1702   this might have resulted in a heap overflow security vulnerability.
1703   Thanks to a patch from infamous42md.
1704
1705 - dmalloc() memset()'s the non-debug (data) portion of the allocated
1706   memory to zero.  Code that memset()'s the result returned by dmalloc() to
1707   zero is redundant.  These redundancies were removed.
1708
1709 - Some type declaration corrections to u_int16_t were made in common/tr.c
1710   (Token Ring support) thanks to a patch from Jason Vas Dias at Red Hat.
1711
1712 - A failover bug that was allowing leases that EXPIRED or were RELEASED
1713   where tsfp and tstp are identical timestamps to languish in these
1714   transitional states has been repaired.  As a side effect, lease
1715   databases should be kept more consistent overall, not just for these
1716   transitional states.
1717
1718 - If the lease db is deleted out from under the daemon, and it moves to rewrite
1719   the db, it will go ahead with the operation and move the new db into place
1720   once it detects the old db does not exist.
1721
1722 - dhclient now ignores IRDA, SIT, and IEEE1394 network interfaces, as it
1723   is either nonsensical or (in the case of IEEE1394) is not known to support
1724   these interfaces.  Thanks to Marius Gedminas and Andrew Pollock of Debian.
1725
1726 - Some previously undocumented reasons for dhclient-script invoking has
1727   been documented in the dhclient-script.8 manpage.
1728
1729 - Failover potential expiry calculations (TSTP) have been corrected.  Results
1730   should be substantially more consistent, and proper given the constraints.
1731
1732 - Adjusted lease state validation checks in potential-conflict, to
1733   account for possible clock skew similarly to normal state, and several
1734   previously illegal transitions were made legal (ex: active->released).
1735
1736 - An impossible sanity check was removed from omapi/buffer.c, thanks to a
1737   patch from 'infamous42md'.
1738
1739 - An OMAPI host/network byte order problem in lease time values has been
1740   repaired.
1741
1742 - Several minor bugs, largely relating to treating 8-byte time values as
1743   4-byte entities, have been repaired after careful review of the FreeBSD
1744   ports collection's patch set.  Thanks to the nameless entities who have
1745   contributed to the FreeBSD ports.
1746
1747 - When writing a trace file, the file is now created with permissions 0600,
1748   to help administrators avoid accidentally publicising sensitive config
1749   data.
1750
1751 - The calculation of the maximum size of DHCP packets no longer includes
1752   Ethernet framing overhead.  The result is that the 'Maximum Message
1753   Size' option advertised by clients, or the default value 576, is no
1754   longer reduced by 14 bytes, and instead directly reflects the IP level
1755   MTU (and the default, minimum allowed IP MTU of 576).
1756
1757 - The special status of RELEASED/EXPIRED/RESET leases when a server
1758   is operating in partner-down was fixed.  It no longer requires a
1759   lease be twice the MCLT beyond STOS to 'reallocate', and the expiry
1760   event to turn these into FREE leases without peer acknowledgement
1761   (after STOS+MCLT) has been repaired.
1762
1763 - Compilation on older Solaris systems (lacking /usr/include/sys/int_types.h)
1764   has been repaired.
1765
1766 - "append"ing a string onto the end of a "t" type option (such as the
1767   domain-name field) that had been improperly NULL-terminated by the
1768   DHCP server will no longer result in a truncated string containing
1769   only the option from the server, and not the expected appended value.
1770   Thanks to a patch from Jason Vas Dias at Red Hat.
1771
1772 - File handlers on configuration state (config files and lease dbs) should
1773   be treated consistently, regardless of whether TRACING is defined or not.
1774
1775 - The Linux build environment has had some minor improvements - better
1776   sensing of 64-bit pointer sizes (only used for establishing an icmp_id),
1777   and corrections to #if operators regarding LINUX_MAJOR should it ever
1778   move to 3.[01].x.
1779
1780 - The server now tries harder to survive the condition where it is unable
1781   to open a new lease file to rewrite the lease state database.
1782
1783                         Changes since 3.0.3b3
1784
1785 - dhclient.conf documentation for interface {} was updated to reflect recent
1786   discussion on the dhcp-hackers mailing list.
1787
1788 - In response to reports that the software does not compile on GCC 4.0.0,
1789   -Werror was removed from Makefile.conf for all platforms that used it.
1790   We will address the true problem in a future release; this is a temporary
1791   workaround.
1792
1793                         Changes since 3.0.3b2
1794
1795 - An error in code changes introduced in 3.0.3b2 was corrected, which caused
1796   static BOOTP clients to receive random addresses.
1797
1798                         Changes since 3.0.3b1
1799
1800 - A bug was fixed in BOOTPREQUEST handling code wherein stale references to
1801   host records would be left behind on leases that were not allocated to the
1802   client currently booting (eg in the case where the host was denied booting).
1803
1804 - The dhcpd.conf.5 manpage was updated to be more clear in regards to
1805   multiple host declarations (thanks to Vincent McIntyre).  'Interim' style
1806   dynamic updates were also retouched.
1807
1808                         Changes since 3.0.2
1809
1810 - A bug was fixed where a server might load balance a DHCP REQUEST to its
1811   peer after already choosing not to load balance the preceding DISCOVER.
1812   The peer cannot allocate the originating server's lease.
1813
1814 - In the case where a secondary server lost its stable storage while the
1815   primary was still in communications-interrupted, and came back online,
1816   the lease databases would not be fully transferred to the secondary.
1817   This was due to the secondary errantly sending an extra UPDREQ message
1818   when the primary made its state transition to PARTNER-DOWN known.
1819
1820 - The package will now compile cleanly in gcc 3.3 and 3.4.  As a side effect,
1821   lease structures will be 9 bytes smaller on all platforms.  Thanks to
1822   Jason Vas Dias at Red Hat.
1823
1824 - Interface discovery code in DISCOVER_UNCONFIGURED mode is now
1825   properly restricted to only detecting broadcast interfaces.  Thanks
1826   to a patch from Jason Vas Dias at Red Hat.
1827
1828 - decode_udp_ip_header was changed so that the IP address was copied out
1829   to a variable, rather than referenced by a pointer.  This enforces 4-byte
1830   alignment of the 32-bit IP address value.  Thanks to a patch from Dr.
1831   Peter Poeml.
1832
1833 - An incorrect log message was corrected thanks to a patch from
1834   Dr. Peter Poeml.
1835
1836 - A bug in DDNS was repaired, where if the server's first DDNS action was
1837   a DDNS removal rather than a DDNS update, the resolver library's
1838   retransmit timer and retry timer was set to the default, implying a
1839   15 second timeout interval.  Which is a little excessive in a synchronous,
1840   single-threaded system.  In all cases, ISC DHCP should now hold fast to
1841   a 1-second timeout, trying only once.
1842
1843 - The siaddr field was being improperly set to the server-identifier when
1844   responding to DHCP messages.  RFC2131 clarified the siaddr field as
1845   meaning the 'next server in the bootstrap process', eg a tftp server.
1846   The siaddr field is now left zeroed unless next-server is configured.
1847
1848 - mockup_lease() could have returned in an error condition (or in the
1849   condition where no fixed-address was found matching the shared
1850   network) with stale references to a host record.  This is probably not
1851   a memory leak since host records generally never die anyway.
1852
1853 - A bug was repaired where failover servers would let stale client identifiers
1854   persist on leases that were reallocated to new clients not sending an id.
1855
1856 - Binding scopes ("set var = value;") are now removed from leases allocated
1857   by failover peers if the lease had expired.  This should help reduce the
1858   number of stale binding scopes on leases.
1859
1860 - A small memory leak was closed involving client identifiers larger than
1861   7 bytes, and failover.
1862
1863 - Configuring a subnet in dhcpd.conf with a subnet mask of 32 bits might
1864   cause an internal function to overflow heap.  Thanks to Jason Vas Dias
1865   at Red Hat.
1866
1867 - Some inconsistencies in treating numbers that the lexer parsed as 'NUMBER'
1868   or 'NUMBER_OR_NAME' was repaired.  Hexadecimal parsing is affected, and
1869   should work better.
1870
1871 - In several cases, parse warnings were being issued before the lexical
1872   token had been advanced to the token whose value was causing an error...
1873   causing parse warnings to claim the problem is on the wrong token.
1874
1875 - Host declarations matching on client identifier for dynamic leases will
1876   no longer match fixed-address host declarations (this is now identical
1877   to behaviour for host records matching on hardware address).
1878
1879                         Changes since 3.0.2rc3
1880
1881 - A previously undocumented configuration directive, 'local-address',
1882   was documented in the dhcpd.conf manpage.
1883
1884                         Changes since 3.0.2rc2
1885
1886 - Two variables introduced in 3.0.2b1 were used without being initialized
1887   in the case where neither the FILE nor SNAME fields were available for
1888   overloading.  This was repaired.
1889
1890 - A heretofore believed to be impossible corner case of the option
1891   overloading implementation turned out to be possible ("Unable to sort
1892   overloaded options after 10 tries.").  The implementation was reworked
1893   to consider the case of an option so large it would require more than
1894   three chunks to fit.
1895
1896 - Many other instances of variables being used without being initialized
1897   were repaired.
1898
1899 - An uninitialized variable in omapi_io_destroy() led to the discovery
1900   that this function may result in orphaned pointers (and hence, a memory
1901   leak).
1902
1903                         Changes since 3.0.2rc1
1904
1905 - allocate_lease() was rewritten to repair a bug in which the server would
1906   try to allocate an ABANDONED lease when FREE leases were available.
1907
1908                         Changes since 3.0.2b1
1909
1910 - Some dhcp-eval.5 manpage formatting was repaired.
1911
1912                         Changes since 3.0.1
1913
1914 - A bug was fixed in the server's 'option overloading' implementation,
1915   where options loaded into the 'file' and 'sname' packet fields were
1916   not aligned precisely as rfc2131 dictates.
1917
1918 - The FreeBSD client script was changed to support the case where a domain
1919   name was not provided by the server.
1920
1921 - A memory leak in 'omshell' per each command line parsed was
1922   repaired, thanks to a patch from Jarkko Torppa.
1923
1924 - Log functions writing to stderr were adjusted to use the STDERR_FILENO
1925   system definition rather than '2'.  This is a no-op for 90% of platforms.
1926
1927 - One call to trace_write_packet_iov() counted the number of io vectors
1928   incorrectly, causing inconsistent tracefiles.  This was fixed.
1929
1930 - Some expression parse failure memory leaks were closed.
1931
1932 - A host byte order problem in tracefiles was repaired.
1933
1934 - Pools configured in DHCPD for failover possessing permission lists that
1935   previously were assumed to not include dyanmic bootp clients are now
1936   a little more pessimistic.  The result is, dhcpd will nag you about just
1937   about most pools that possess a 'allow' statement with no 'deny' that
1938   would definitely match a dynamic bootp client.
1939
1940 - The 'ddns-update-style' configuration warning bit now insists that
1941   the configuration be globally scoped.
1942
1943 - Two memory leaks in dhclient were closed thanks to a patch from Felix
1944   Farkas.
1945
1946 - Some minor but excellently pedantic documentation errors were fixed
1947   thanks to a patch from Thomas Klausner.
1948
1949 - Bugs in operator precedence in executable statements have been repaired
1950   once again.  More legal syntaxes should be parsed legally.
1951
1952 - Failing to initialize a tracefile for any reason if a tracefile was
1953   specified is now a fatal error.  Thanks to a patch from Albert Herranz.
1954
1955 - Corrected a bug in which the number of leases transferred as calculated
1956   by the failover primary and sent to peers in POOLRESP responses may be
1957   incorrect.  This value is not believed to be used by other failover
1958   implementations, excepting perhaps as logged information.
1959
1960 - Corrected a bug in which 'dhcp_failover_send_poolresp()' was in fact
1961   sending POOLREQ messages instead of POOLRESP mesasges.  This message
1962   was essentially ignored since failover secondaries effectively do not
1963   respond to POOLREQ messages.
1964
1965 - Type definitions for various bitwidths of integers in the sunos5-5
1966   build of ISC DHCP have been fixed.  It should compile and run more
1967   easily when built in 64-bit for this platform.
1968
1969 - "allow known-clients;" is now a legal syntax, to avoid confusion.
1970
1971 - If one dhcp server chooses to 'load balance' a request to its failover
1972   peer, it first checks to see if it believes said peer has a free
1973   lease to allocate before ignoring the DISCOVER.
1974
1975 - log() was logging a work buffer, rather than the value returned by
1976   executing the statements configured by the user.  In some cases,
1977   the work buffer and the intended results were the same.  In some other
1978   cases, they were not.  This was fixed thanks to a patch from Gunnar
1979   Fjone and directconnect.no.
1980
1981 - Compiler warnings for some string type conversions was fixed, thanks
1982   to Andreas Gustafsson.
1983
1984 - The netbsd build environments were simplified to one, in which
1985   -Wconversion is not used, thanks to Andreas Gustafsson.
1986
1987 - How randomness in the backoff-cutoff dhclient configuration variable
1988   is implemented was better documented in the manpage, and the behaviour
1989   of dhclient in REQUEST timeout handling was changed to match that of
1990   DISCOVER timeout handling.
1991
1992 - Omapi was hardened against clients that pass in null values, thanks
1993   to a patch from Mark Jason Dominus.
1994
1995 - A bug was fixed in dhclient that kept it from doing client-side
1996   ddns updates.  Thanks to a patch from Andreas Gustafsson, which
1997   underwent some modification after review by Jason Vas Dias.
1998
1999 - Failover implementations disconnected due to the network between
2000   them (rather than one of the two shutting down) will now try to
2001   re-establish the failover connection every 5 seconds, rather than
2002   to simply try once and give up until one of them is restarted.
2003   Thanks to a patch from Ulf Ekberg from Infoblox, and field testing
2004   by Greger V. Teigre which led to an enhancement to it.
2005
2006 - A problem that kept DHCP Failover secondaries from tearing down
2007   ddns records was repaired.  Thanks to a patch from Ulf Ekberg from
2008   Infoblox.
2009
2010 - 64bit pointer sizes are detected properly on FreeBSD now.
2011
2012 - A bug was repaired where the DHCP server would leave stale references
2013   to host records on leases it once thought about offering to certain
2014   clients.  The result would be to apply host and 'known' scopes to the
2015   wrong clients (possibly denying booting).  NOTE:  The 'mis-host' patch
2016   that was being circulated as a workaround is not the way this bug was
2017   fixed.  If you were a victim of this bug in 3.0.1, you are cautioned
2018   to proceed carefully and see if it fixes your problem.
2019
2020 - A bug was repaired in the server's DHCPINFORM handling, where it
2021   tried to divine the client's address from the source packet and
2022   would get it wrong.  Thanks to Anshuman Singh Rawat.
2023
2024 - A log message was introduced to help illuminate the case where the
2025   server was unable to find a lease to assign to any BOOTP client.
2026   Thanks to Daniel Baker.
2027
2028 - A minor dhcpd.conf.5 manpage error was fixed.
2029
2030                         Changes since 3.0.1rc14
2031
2032 - The global variable 'cur_time' was centralized and is now uniformly of a
2033   type #defined in system-dependent headers.  It had previously been defined
2034   in one of many places as a 32-bit value, and this causes mayhem on 64-bit
2035   big endian systems.  It probably wasn't too healthy on little endian
2036   systems either.
2037
2038 - A printf format string error introduced in rc14 was repaired.
2039
2040 - AIX system-dependent header file was altered to only define NO_SNPRINTF
2041   if the condition used to #ifdef in vsnprintf in AIX' header files
2042   is false.
2043
2044 - The Alpha/OSF system-dependent header file was altered to define
2045   NO_SNPRINTF on OS revisions older than 4.0G.
2046
2047 - omapip/test.c had string.h added to its includes.
2048
2049                         Changes since 3.0.1rc13
2050
2051 ! CAN-2004-0460 - CERT VU#317350: Five stack overflow exploits were closed
2052   in logging messages with excessively long hostnames provided by the
2053   clients.  It is highly probable that these could have been used by
2054   attackers to gain arbitrary root access on systems using ISC DHCP 3.0.1
2055   release candidates 12 or 13.  Special thanks to Gregory Duchemin for
2056   both finding and solving the problem.
2057
2058 ! CAN-2004-0461 - CERT VU#654390: Once the above was closed, an opening
2059   in log_*() functions was evidenced, on some specific platforms where
2060   vsnprintf() was not believed to be available and calls were wrapped to
2061   sprintf() instead.  Again, credit goes to Gregory Duchemin for finding
2062   the problem.  Calls to snprintf() are now linked to a distribution-local
2063   snprintf implementation, only in those cases where the architecture is
2064   not known to provide one (see includes/cf/[arch].h).  If you experience
2065   linking problems with snprintf/vsnprintf or 'isc_print_' functions, this
2066   is where to look.  This vulnerability did not exist in any previously
2067   published version of ISC DHCP.
2068
2069 - Compilation on hpux 11.11 was repaired.
2070
2071 - 'The cross-compile bug fix' was backed out.
2072
2073                         Changes since 3.0.1rc12
2074
2075 - Fixed a bug in omapi lease lookup function, to form the hardware
2076   address for the hash lookup correctly, thanks to a patch from
2077   Richard Hirst.
2078
2079 - Fixed a bug where dhcrelay was sending relayed responses back to the
2080   broadcast address, but with the source's unicast mac address.  Should
2081   now conform to rfc2131 section 4.1.
2082
2083 - Cross-compile bug fix; use $(AR) instead of ar.  Thanks to Morten Brorup.
2084
2085 - Fixed a crash bug in dhclient where dhcpd servers that do not provide
2086   renewal times results in an FPE.  As a side effect, dhclient can now
2087   properly handle 0xFFFFFFFF (-1) expiry times supplied by servers.  Thanks
2088   to a patch from Burt Silverman.
2089
2090 - The 'ping timeout' debugs from rc12 were removed to -DDEBUG only,
2091   and reformatted to correct a compilation error on Solaris platforms.
2092
2093 - A patch was applied which fixes a case where leases read from the
2094   leases database do not properly over-ride previously read leases.
2095
2096 - dhcpctl.3 manpage was tweaked.
2097
2098                         Changes since 3.0.1rc11
2099
2100 - A patch from Steve Campbell was applied with minor modifications to
2101   permit reverse dns PTR record updates with values containing spaces.
2102
2103 - A patch from Florian Lohoff was applied with some modifications to
2104   dhcrelay.  It now discards packets whose hop count exceeds 10 by default,
2105   and a command-line option (-c) can be used to set this threshold.
2106
2107 - A failover bug relating to identifying peers by name length instead of
2108   by name was fixed.
2109
2110 - Declaring failover configs within shared-network statements should no
2111   longer result in error.
2112
2113 - The -nw command line option to dhclient now works.
2114
2115 - Thanks to a patch from Michael Richardson:
2116         - Some problems with long option processing have been fixed.
2117         - Some fixes to minires so that updates of KEY records will work.
2118
2119 - contrib/ms2isc was updated by Shu-Min Chang of the Intel Corporation.
2120   see contrib/ms2isc/readme.txt for revision notes.
2121
2122 - Dhclient no longer uses shell commands to kill another instance of
2123   itself, it sends the signal directly.  Thanks to a patch from Martin
2124   Blapp.
2125
2126 - The FreeBSD dhclient-script was changed so that a failure to write to
2127   /etc/resolv.conf does not prematurely end the script.  This keeps dhclient
2128   from looping infinitely when this is the case.  Thanks to a patch from
2129   Martin Blapp.
2130
2131 - A patch from Bill Stephens was applied which resolves a problem with lease
2132   expiry times in failover configurations.
2133
2134 - A memory leak in configuration parsing was closed thanks to a patch from
2135   Steve G.
2136
2137 - The function which discovers interfaces will now skip non-broadcast or
2138   point-to-point interfaces, thanks to a patch from David Brownlee.
2139
2140 - Options not yet known by the dhcpd or dhclient have had their names
2141   changed such that they do not contain # symbols, in case they should ever
2142   appear in a lease file.  An option that might have been named "#144" is
2143   now "unknown-144".
2144
2145 - Another patch from Bill Stephens which allows the ping-check timeout to
2146   be configured as 'ping-timeout'.  Defaults to 1.
2147
2148                         Changes since 3.0.1rc10
2149
2150 - Potential buffer overflows in minires repaired.
2151
2152 - A change to the linux client script to use /bin/bash, since /bin/sh may
2153   not be bash.
2154
2155 - Some missing va_end cleanups thanks to a patch from Thomas Klausner.
2156
2157 - A correction of boolean parsing syntax validation - some illegal syntaxes
2158   that worked before are now detected and produce errs, some legal syntaxes
2159   that errored before will now work properly.
2160
2161 - Some search-and-replace errors that caused some options to change their
2162   names was repaired.
2163
2164 - Shu-min Chang of the Intel corporation has contributed a perl script and
2165   module that converts the MS NT4 DHCP configuration to a ISC DHCP3
2166   configuration file.
2167
2168 - Applied the remainder of the dhcpctl memory leak patch provided by Bill
2169   Squier at ReefEdge, Inc.  (groo@reefedge.com).
2170
2171 - Missing non-optional failover peer configurations will now result in a soft
2172   error rather than a null dereference.
2173
2174                         Changes since 3.0.1rc9
2175
2176 - A format string was corrected to fix compiler warnings.
2177
2178 - A number of spelling corrections were made in the man pages.
2179
2180 - The dhclient.conf.5 man page was changed to refer to do-forward-updates
2181   rather than a configuration option that doesn't exist.
2182
2183 - A FreeBSD-specific bug in the interface removal handling was fixed.
2184
2185 - A Linux-specific Token Ring detection problem was fixed.
2186
2187 - Hashes removed from as-yet-unknown agent options, having those options
2188   appear in reality before we know about them will no longer produce
2189   self-corrupting lease databases.
2190
2191 - dhclient will use the proper port numbers now when using the -g option.
2192
2193 - A order-of-operations bug with 2 match clauses in 1 class statement is
2194   fixed thanks to a patch from Andrew Matheson.
2195
2196 - Compilation problems on Solaris were fixed.
2197
2198 - Compilation problems when built with DEBUG or DEBUG_PACKET were repaired.
2199
2200 - A fix to the dhcp ack process which makes certain group options will be
2201   included in the first DHCPOFFER message was made thanks to a patch from
2202   Ling Gou.
2203
2204 - A few memory leaks were repaired thanks to patches from Bill Squier at
2205   ReefEdge, Inc.  (groo@reefedge.com).
2206
2207 - A fix for shared-networks that sometimes give clients options for the
2208   wrong subnets (in particular, 'option routers') was applied, thanks to
2209   Ted Lemon for the patch.
2210
2211 - Omshell's handling of dotted octets as values was changed such that dots
2212   one after the other produce zero values in the integer string.
2213
2214                         Changes since 3.0.1rc8
2215
2216 - Fix a format string vulnerability in the server that could lead to a
2217   remote root compromise (discovered by NGSEC Research Team, www.ngsec.com).
2218
2219 - Add additional support for NetBSD/sparc64.
2220
2221 - Fix a bug in the command-line parsing of the client.  Also, resolve
2222   a memory leak.
2223
2224 - Add better support for shells other than bash in the Linux client
2225   script.
2226
2227 - Various build fixes for modern versions of FreeBSD and Linux.
2228
2229 - Fix a bad bounds check when printing binding state names.
2230
2231 - Clarify documentation about fixed-address and multiple addresses.
2232
2233 - Fix a typo in the authoritative error message.
2234
2235 - Make a log entry when we can't write a billing class.
2236
2237 - Use conversion targets that are the right size on all architectures.
2238
2239 - Increment the hop count when relaying.
2240
2241 - Log a message when lease state is changed through OMAPI.
2242
2243 - Don't rerun the shared_network when evaluating the pool.
2244
2245 - Fix a reversed test in the parser.
2246
2247 - Change the type of rbuf_max.
2248
2249 - Make FTS_LAST a manifest constant to quiet warnings.
2250
2251                         Changes since 3.0.1rc7
2252
2253 - Fix two compiler warnings that are generated when compiling on Solaris
2254   with gcc.   These stop the build, even though they weren't actually
2255   errors, because we prefer that our builds generate no warnings.
2256
2257                         Changes since 3.0.1rc6
2258
2259 - Don't allow a lease that's in the EXPIRED, RELEASED or RESET state
2260   to be renewed.
2261
2262 - Implement lease stealing for cases where the primary has fewer leases
2263   than the secondary, as called for by the standard.
2264
2265 - Add a fudge factor to the lease expiry acceptance code, (suggested
2266   by Kevin Miller of CMU).
2267
2268 - Fix a bug in permit_list_match that made it much too willing to say
2269   that two permit lists matched.
2270
2271 - Unless DEBUG_DNS_UPDATES is defined, print more user-friendly (and
2272   also more compact) messages about DNS updates.
2273
2274 - Fix a bug in generating wire-format domain names for the FQDN option.
2275
2276 - Fix a bug where the FQDN option would not be returned if the client
2277   requested it, contrary to the standard.
2278
2279 - On Darwin, use the FreeBSD DHCP client script.
2280
2281 - On NetBSD/sparc, don't check for casting warnings.
2282
2283 - Add a flag in the DHCP client to disable updating the client's A
2284   record when sending an FQDN option indicating that the client is
2285   going to update its A record.
2286
2287 - In the client, don't attempt a DNS update until one second after
2288   configuring the new IP address, and if the update times out, keep
2289   trying until a response, positive or negative, is received from the
2290   DNS server.
2291
2292 - Fix an uninitialized memory bug in the DHCP client.
2293
2294 - Apply some FreeBSD-specific bug fixes suggested by Murray Stokely.
2295
2296 - Fix a bug in ns_parserr(), where it was returning the wrong sort
2297   of result code in some cases (suggested by Ben Harris of the
2298   NetBSD project).
2299
2300 - Fix a bug in is_identifier(), where it was checking against EOF
2301   instead of the END_OF_FILE token (also suggested by Ben Harris).
2302
2303 - Fix a bug where if an option universe contained no options, the
2304   DHCP server could dump core (Walter Steiner).
2305
2306 - Fix a bug in the handling of encapsulated options.
2307
2308 - Fix a bug that prevented NWIP suboptions from being processed.
2309
2310 - Delete the FTS_BOOTP and FTS_RESERVED states and implement them
2311   as modifier flags to the FTS_ACTIVE state, as called for in the
2312   failover protocol standard.
2313
2314 - Fix bugs in the pool merging code that resulted in references and
2315   dereferences of null pointers.   This bug had no impact unless the
2316   POINTER_DEBUG flag was defined.
2317
2318 - In the server, added a do-forward-updates flag that can be used to
2319   disable forward updates in all cases, so that sites that want the
2320   clients to take sole responsibility for updating their A record can
2321   do so.
2322
2323 - Make it possible to disable optimization of PTR record updates.
2324
2325                         Changes since 3.0.1rc5
2326
2327 - Include some new documentation and changes provided by Karl Auer.
2328
2329 - Add a workaround for some Lexmark printers that send a double-NUL-
2330   terminated host-name option, which would break DNS updates.
2331
2332 - Fix an off-by-one error in the MAC-address checking code for
2333   DHCPRELEASE that was added in 3.0.1rc5.
2334
2335 - Fix a bug where client-specific information was not being discarded
2336   from the lease when it expired or was released, resulting in
2337   problems if the lease was reallocated to a different client.
2338
2339 - If more than one allocation pool is specified that has the same set
2340   of constraints as another allocation pool on the same shared
2341   network, merge the two pools.
2342
2343 - Don't print an error in fallback_discard, since this just causes
2344   confusion and does not appear to be helping to encourage anyone to
2345   fix this bug.
2346
2347                         Changes since 3.0.1rc4
2348
2349 - Fix a bug that would cause the DHCP server to spin if asked to parse
2350   a certain kind of incorrect statement.
2351
2352 - Fix a related bug that would prevent an error from being reported in
2353   the same case.
2354
2355 - Additional documentation.
2356
2357 - Make sure that the hardware address matches the lease when
2358   processing a DHCPRELEASE message.
2359
2360                         Changes since 3.0.1rc3
2361
2362 - A minor bug fix in the arguments to a logging function call.
2363 - Documentation update for dhcpd.conf.
2364
2365                         Changes since 3.0.1rc2
2366
2367 - Allow the primary to send a POOLREQ message.   This isn't what the current
2368   failover draft says to do, so we may have to back it out if I can't get the
2369   authors to relent, but the scheme for balancing that's specified in the
2370   current draft seems needlessly hairy, so I'm floating a trial balloon.
2371   The rc1 code did not implement the method described in the draft either.
2372
2373                         Changes since 3.0.1rc1
2374
2375 - Treat NXDOMAIN and NXRRSET as success when we are trying to delete a
2376   domain or RRSET.   This allows the DHCP server to forget about a name
2377   it added to the DNS once it's been removed, even if the DHCP server
2378   wasn't the one that removed it.
2379
2380 - Install defaults for failover maximum outstanding updates and maximum
2381   silent time.   This prevents problems that might occur if these values
2382   were not configured.
2383
2384 - Don't do DDNS deletes if ddns-update-style is none.
2385
2386 - Return relay agent information options in DHCPNAK.   This prevents DHCPNAK
2387   messages from being dropped when the relay agent information option contains
2388   routing information.
2389
2390 - Fix a problem where coming up in recover wouldn't result in an update
2391   request being sent.
2392
2393 - Add some more chatty messages when we start a recovery update and when it's
2394   done.
2395
2396 - Fix a possible problem where some state might have been left around
2397   after the peer lost contact and regained contact about how many updates
2398   were pending.
2399
2400 - Don't nix a lease update because of a lease conflict.   This test has
2401   never (as far as I know) prevented a mistake, and it appears to cause
2402   problems with failover.
2403
2404 - Add support in rc history code for keeping a selective history, rather
2405   than a history of all references and dereferences.   This code is only used
2406   when extensive additional debugging is enabled.
2407
2408                            Changes since 3.0
2409
2410 - Make allocators for hash tables.   As a side effect, this fixes a memory
2411   smash in the subclass allocation code.
2412
2413 - Fix a small bug in omshell where if you try to close an object when
2414   no object is open, it dumps core.
2415
2416 - Fix an obscure coredump that could occur on shutdown.
2417
2418 - Fix a bug in the recording of host declaration rubouts in the lease file.
2419
2420 - Fix two potential spins in the host deletion code.
2421
2422 - Fix a core dump that would happen if an application tried to update
2423   a host object attribute with a null value.
2424
2425                 Changes since 3.0 Release Candidate 12
2426
2427 - Fix a memory leak in the evaluation code.
2428
2429 - Fix an obscure core dump.
2430
2431 - Print a couple of new warnings when parsing the configuration file
2432   when crucial information is left out.
2433
2434 - Log "no free leases" as an error.
2435
2436 - Documentation updates.
2437
2438                 Changes since 3.0 Release Candidate 11
2439
2440 - Always return a subnet selection option if one is sent.
2441
2442 - Fix a warning that was being printed because an automatic data
2443   structure wasn't zeroed.
2444
2445 - Fix some failover state transitions that were being handled
2446   incorrectly.
2447
2448 - When supersede_lease is called on a lease whose end time has already
2449   expired, but for which a state transition has not yet been done, do
2450   a state transition.   This fixes the case where if the secondary
2451   allocated a lease to a client and the lease "expired" while the
2452   secondary was in partner-down, no expiry event would actually
2453   happen, so the lease would remain active until the primary was
2454   restarted.
2455
2456                 Changes since 3.0 Release Candidate 10
2457
2458 - Fix a bug that was preventing released leases from changing state
2459   in failover-enabled pools.
2460
2461 - Fix a core dump in the client identifier finder code (for host
2462   declarations).
2463
2464 - Finish fixing a bug where bogus data would sometimes get logged to
2465   the dhclient.leases file because it was opened as descriptor 2.
2466
2467 - Fix the Linux dhclient-script according to suggestions made by
2468   several people on the dhcp-client mailing list.
2469
2470 - Log successful DNS updates at LOG_INFO, not LOG_ERROR.
2471
2472 - Print an error message and refuse to run if a failover peer is
2473   defined but not referenced by any pools.
2474
2475 - Correct a confusing error message in failover.
2476
2477                 Changes since 3.0 Release Candidate 9
2478
2479 - Fix a bug in lease allocation for Dynamic BOOTP clients.
2480
2481           Changes since 3.0 Release Candidate 8 Patchlevel 2
2482
2483 - Fix a bug that prevented update-static-leases from working.
2484
2485 - Document failover-state OMAPI object.
2486
2487 - Fix a compilation error on SunOS 4.
2488
2489           Changes since 3.0 Release Candidate 8 Patchlevel 1
2490
2491 - Fix a parsing bug that broke dns updates (both interim and ad-hoc).
2492   This was introduced in rc8pl1 as an unintended result of the memory
2493   leakage fixes that were in pl1.
2494
2495 - Fix a long-standing bug where the server would record that an update
2496   had been done for a client with no name, even though no update had
2497   been done, and then when the client's lease expired the deletion of
2498   that nonexistant record would time out because the name was the null
2499   string. 
2500
2501 - Clean up the omshell, dhcpctl and omapi man pages a bit.
2502
2503                 Changes since 3.0 Release Candidate 8
2504
2505 - Fix a bug that could cause the DHCP server to spin if
2506   one-lease-per-client was enabled.
2507
2508 - Fix a bug that was causing core dumps on BSD/os in the presence of
2509   malformed packets.
2510
2511 - In partner-down state, don't restrict lease lengths to MCLT.
2512
2513 - On the failover secondary, record the MCLT received from the primary
2514   so that if we come up without a connection to the primary we don't
2515   wind up giving out zero-length leases.
2516
2517 - Fix some compilation problems on BSD/os.
2518
2519 - Fix a bunch of memory leaks.
2520
2521 - Fix a couple of bugs in the option printer.
2522
2523 - Fix an obscure error reporting bug in the dns update code, and also
2524   make the message clearer when a key algorithm isn't supported.
2525
2526 - Fix a bug in the tracing code that prevented trace runs that used
2527   tcp connections from being played back.
2528
2529 - Add some additional debugging capability for catching memory leaks
2530   on exit.
2531
2532 - Make the client release the lease correctly on shutdown.
2533
2534 - Add some configurability to the build system.
2535
2536 - Install omshell manual page in man1, not man8.
2537
2538 - Craig Gwydir sent in a patch that fixes a long-standing bug in the
2539   DHCP client that could cause core dumps, but that for some reason
2540   hadn't been noticed until now.
2541
2542                 Changes since 3.0 Release Candidate 7
2543
2544 - Fix a bug in failover where we weren't sending updates after a
2545   transition from communications-interrupted to normal.
2546
2547 - Handle expired/released/reset -> free transition according to the
2548   protocol specification (this works - the other way not only wasn't
2549   conformant, but also didn't work).
2550
2551 - Add a control object in both client and server that allows either
2552   daemon to be shut down cleanly.
2553
2554 - When writing a lease, if we run out of disk space, shut down the
2555   output file and insist on writing a new one before proceeding.
2556
2557 - In the server, if the OMAPI listener port is occupied, keep trying
2558   to get it, rather than simply giving up and exiting.
2559
2560 - Support fetching variables from leases and also updating and adding
2561   variables to leases via OMAPI.
2562
2563 - If two failover peers have wildly different clocks, refuse to start
2564   doing failover.
2565
2566 - Fix a bug in the DNS update code that could cause core dumps when
2567   running on alpha processors.
2568
2569 - Fixed a bug in ddns updates for static lease entries, thanks to a
2570   patch from Andrey M Linkevitch.
2571
2572 - Add support for Darwin/MacOS X
2573
2574 - Install omshell (including new documentation).
2575
2576 - Support DNS updates in the client (this is a very obscure feature
2577   that most DHCP client users probably will not be able to use).
2578
2579 - Somewhat cleaner status logging in the client.
2580
2581 - Make OMAPI key naming syntax compatible with the way keys are
2582   actually named (key names are domain names).
2583
2584 - Fix a bug in the lease file writer.
2585
2586 - Install DHCP ISC headers in a different place than BIND 9 ISC
2587   headers, to avoid causing trouble in BIND 9 builds.
2588
2589 - Don't send updates for attributes on an object when the attributes
2590   haven't changed.   Support deleting attributes on remote objects.
2591
2592 - Fix a number of bugs in omshell, and add the unset and refresh
2593   statements.
2594
2595 - Handle disconnects in OMAPI a little bit more intelligently (so that
2596   the caller gets ECONNRESET instead of EINVAL).
2597
2598 - Fix a bunch of bugs in the handling of clients that have existing
2599   leases when the try to renew their leases while failover is
2600   operating.
2601
2602                 Changes since 3.0 Release Candidate 6
2603
2604 - Fix a core dump that could happen when processing a DHCPREQUEST from
2605   a client that had a host declaration that contained both a
2606   fixed-address declaration and a dhcp-client-identifier option
2607   declaration, if the client identifier was longer than nine bytes.
2608
2609 - Fix a memory leak that could happen in certain obscure cases when
2610   using omapi to manipulate leases.
2611
2612 - Fix some bugs and omissions in omshell.
2613
2614                 Changes since 3.0 Release Candidate 5
2615
2616 - Fix a bug in omapi_object_dereference that prevented objects in
2617   chains from having their reference counts decreased on dereference.
2618
2619 - Fix a bug in omapi_object_dereference that would prevent object
2620   chains from being freed upon removal of the last reference external
2621   to the chain.
2622
2623 - Fix a number of other memory leaks in the OMAPI protocol subsystem.
2624
2625 - Add code in the OMAPI protocol handler to trace memory leakage.
2626
2627 - Clean up the memory allocation/reference history printer.
2628
2629 - Support input of dotted quads and colon-separated hex lists as
2630   attribute values in omshell.
2631
2632 - Fix a typo in the Linux interface discovery code.
2633
2634 - Conditionalize a piece of trace code that wasn't conditional.
2635
2636                 Changes since 3.0 Release Candidate 4
2637
2638 - Fix a bug that would prevent leases from being abandoned properly on
2639   DHCPDECLINE.
2640
2641 - Fix failover peer OMAPI support.
2642
2643 - In failover, correctly handle expiration of leases.   Previously,
2644   leases would never be reclaimed because they couldn't make the
2645   transition from EXPIRED to FREE.
2646
2647 - Fix some broken failover state transitions.
2648
2649 - Documentation fixes.
2650
2651 - Take out an unnecessary check in DHCP relay agent information option
2652   stashing code that was preventing REBINDING clients from rebinding.
2653
2654 - Prevent failover peers from allocating leases in DHCPREQUEST
2655   processing if the lease belongs to the other server.
2656
2657 - Record server version in lease file introductory comment.
2658
2659 - Correctly report connection errors in OMAPI and failover.
2660
2661 - Make authentication signature algorithm name comparisons in OMAPI
2662   case-insensitive.
2663
2664 - Fix compile problem on SunOS 4.x
2665
2666 - If a signature algorithm is not terminated with '.', terminate it so
2667   that comparisons between fully-qualified names will work
2668   consistently.
2669
2670 - Different SIOCGIFCONF probe code, may "fix" problem on some Linux
2671   systems with the probe not working correctly.
2672
2673 - Don't allow user to type omapi key on command line of omshell.
2674
2675                 Changes since 3.0 Release Candidate 3
2676
2677 - Do lease billing on startup in a way that I *think* will finally do
2678   the billing correctly - the previous method could overbill as a
2679   result of duplicate leases.
2680
2681 - Document OMAPI server objects.
2682
2683           Changes since 3.0 Release Candidate 2 Patchlevel 1
2684
2685 - Fix some problems in the DDNS update code.   Thanks to Albert
2686   Herranz for figuring out the main problem.
2687
2688 - Fix some reference counting errors on host entries that were causing
2689   core dumps.
2690
2691 - Fix a byte-swap bug in the token ring code, thanks to Jochen
2692   Friedrich.
2693
2694 - Fix a bug in lease billing, thanks to Jonas Bulow.
2695
2696                 Changes since 3.0 Release Candidate 2
2697
2698 - Change the conditions under which a DHCPRELEASE is actually
2699   committed to be consistent with lease binding states rather than
2700   using the lease end time.   This may fix some problems with the
2701   billing class code.
2702
2703 - Fix a bug where lease updates would fail on Digital Unix (and maybe
2704   others) because malloc was called with a size of zero.
2705
2706 - Fix a core dump that happens when the DHCP server can't create its
2707   trace file.
2708
2709           Changes since 3.0 Release Candidate 1 Patchlevel 1
2710
2711 - Fix the dhcp_failover_put_message to not attempt to allocate a
2712   zero-length buffer.   Some versions of malloc() fail if you try to
2713   allocate a zero-length buffer, and this was causing problems on,
2714   e.g., Digital Unix.
2715
2716 - Fix a case where the failover code was printing an error message
2717   when no error had occurred.
2718
2719 - Fix a problem where when a server went down and back up again, the
2720   peer would not see a state transition and so would stay in the
2721   non-communicating state.
2722
2723 - Be smart about going into recover_wait.
2724
2725 - Fix a problem in the failover implementation where peers would fail
2726   to come into sync if interrupted in the RECOVER state.   This could
2727   have been the cause of some problems people have reported recently.
2728
2729 - Fix a problem with billing classes where they would not be unbilled
2730   when the client lease expired.
2731
2732 - If select fails, figure out which descriptor is bad, and cut it out
2733   of the I/O loop.   This prevents a potentially nasty spin.  I
2734   haven't heard any report it in a while, but it came up consistently
2735   in testing.
2736
2737 - Fix a bug in the relay agent where if you specified interfaces on
2738   the command line, it would fail.
2739
2740 - Fix a couple of small bugs in the omapi connection object (no known
2741   user impact).
2742
2743 - Add the missing 3.0 Beta 1 lease conversion script.
2744
2745 - Read dhcp client script hooks if they exist, rather than only if
2746   they're executable.
2747
2748                 Changes since 3.0 Release Candidate 1
2749
2750 - Fix a memory smash that happens when fixed-address leases are used.
2751   ANY SITE AT WHICH FIXED-ADDRESS STATEMENTS ARE BEING USED SHOULD
2752   UPGRADE IMMEDIATELY.   This has been a long-standing bug - thanks to
2753   Alvise Nobile for discovering it and helping me to find it!
2754
2755 - Fix a small bug in binary-to-ascii, thanks to H. Peter Anvin of
2756   Transmeta.
2757
2758 - There is a known problem with the DHCP server doing failover on
2759   Compaq Alpha systems.   This patchlevel is not a release candidate
2760   because of this bug.   The bug should be straightforward to fix, so
2761   a new release candidate is expected shortly.
2762
2763 - There is a known problem in the DDNS update code that is probably a
2764   bug, and is not, as far as we know, fixed in this patchlevel.
2765
2766                 Changes since 3.0 Beta 2 Patchlevel 24
2767
2768 - Went over problematic failover state transitions and made them all
2769   work, so that failover should now much less fragile.
2770
2771 - Add some dhcpctl and omapi documentation
2772
2773 - Fix compile errors when compiling with unusual predefines.
2774
2775 - Make Token Ring work on Linux 2.4
2776
2777 - Fix the Digital Unix BPF_WORDALIGN bug.
2778
2779 - Fix some dhcp client documentation errors.
2780
2781 - Update some parts of the README file.
2782
2783 - Support GCC on SCO.
2784
2785                 Changes since 3.0 Beta 2 Patchlevel 23
2786
2787 - Fix a bug in the DNS update code where a status code was not being
2788   checked.   This may have been causing core dumps.
2789
2790 - When parsing the lease file, if a lease declaration includes a
2791   billing class statement, and the lease already has a billing class,
2792   unbill the old class.
2793
2794 - When processing failover transactions, where acks will be deferred,
2795   process the state transition immediately.
2796
2797 -  Don't try to use the new SIOCGIFCONF buffer size detection code on
2798    Linux 2.0, which doesn't provide this functionality.
2799
2800 - Apply a patch suggested by Tuan Uong for a problem in dlpi.c.
2801
2802 - Fix a problem in using the which command in the configure script.
2803
2804 - Fix a parse error in the client when setting up an omapi listener.
2805
2806 - Document the -n and -g flags to the client.
2807
2808 - Make sure there is always a stdin and stdout on startup.   This
2809   prevents shell scripts from accidentally writing error messages into
2810   configuration files that happen to be opened as stderr.
2811
2812 - If an interface is removed, the client will now notice that it is
2813   gone rather than spinning.   This has only been tested on NetBSD.
2814
2815 - The client will attempt to get an address even if it can't create a
2816   lease file.
2817
2818 - Don't overwrite tracefiles.
2819
2820 - Fix some memory allocation bugs in failover.
2821
2822                 Changes since 3.0 Beta 2 Patchlevel 22
2823
2824 - Apply some patches suggested by Cyrille Lefevre, who is maintaining
2825   the FreeBSD ISC DHCP Distribution port.
2826
2827 - Fix a core dump in DHCPRELEASE.
2828
2829                 Changes since 3.0 Beta 2 Patchlevel 21
2830
2831 - This time for sure: fix the spin described in the changes for pl20.
2832
2833                 Changes since 3.0 Beta 2 Patchlevel 20
2834
2835 - Fix a problem with Linux detecting large numbers of interfaces (Ben)
2836
2837 - Fix a memory smash in the quotify code, which was introduced in
2838   pl19.
2839
2840 - Actually fix the spin described in the changes for pl20.   The
2841   previous fix only partially fixed the problem - enough to get it
2842   past the regression test.
2843
2844                 Changes since 3.0 Beta 2 Patchlevel 19
2845
2846 - Fix a bug that could cause the server to abort if compiled with
2847   POINTER_DEBUG enabled.
2848
2849 - Fix a bug that could cause the server to spin when responding to a
2850   DHCPREQUEST.
2851
2852 - Apply Joost Mulders' suggested patches for DLPI on x86.
2853
2854 - Support NUL characters in quoted strings.
2855
2856 - Install unformatted man pages on SunOS.
2857
2858                 Changes since 3.0 Beta 2 Patchlevel 18
2859
2860 - Allow the server to be placed in partner-down state using OMAPI.
2861   (Damien Neil)
2862
2863 - Implement omshell, which can be used to do arbitrary things to the
2864   server (in theory). (Damien Neil)
2865
2866 - Fix a case where if a client had two different leases the server could
2867   actually dereference the second one when it hadn't been referenced,
2868   leading to memory corruption and a core dump. (James Brister)
2869
2870 - Fix a case where a client could request the address of another client's
2871   lease, but find_lease wouldn't detect that the other client had it, and
2872   would attempt to allocate it to the client, resulting in a lease conflict
2873   message.
2874
2875 - Fix a case where a client with more than one client identifier could be
2876   given a lease where the hardware address was correct but the client
2877   identifier was not, resulting in a lease conflict message.
2878
2879 - Fix a problem where the server could write out a colon-separated
2880   hex list as a value for a variable, which would then not parse.
2881   The fix is to always write strings as quoted strings, with any
2882   non-printable characters quoted as octal escape sequences.   So
2883   a file written the old way still won't work, but new files written
2884   this way will work.
2885
2886 - Fix documentation for sending non-standard options.
2887
2888 - Use unparsable names for unknown options.    WARNING: this will
2889   break any configuration files that use the option-nnn convention.
2890   If you want to continue to use this convention for some options,
2891   please be sure to write a definition, like this:
2892
2893   option option-nnn code nnn = string;
2894
2895   You can use a descriptive name instead of option-nnn if you like.
2896
2897 - Fix a problem where we would see a DHCPDISCOVER/DHCPOFFER/
2898   DHCPREQUEST/DHCPACK/DHCPREQUEST/DHCPNAK sequence.   This was the
2899   result of a deceptively silly bug in supersede_lease.
2900
2901 - Fix client script exit status check, according to a fix supplied by
2902   Hermann Lauer.
2903
2904 - Fix an endianness bug in the tracefile support, regarding ICMP
2905   messages.
2906
2907 - Fix a bug in the client where the medium would not work correctly if
2908   it contained quoted strings.
2909
2910                        ** there was no pl17 **
2911
2912                 Changes since 3.0 Beta 2 Patchlevel 16
2913
2914 - Add support for transaction tracing.   This allows the state of the
2915   DHCP server on startup, and all the subsequent transactions, to be
2916   recorded in a file which can then be played back to reproduce the
2917   behaviour of the DHCP server.   This can be used to quickly
2918   reproduce bugs that cause core dumps or corruption, and also for
2919   tracking down memory leaks.
2920
2921 - Incorporate some bug fixes provided by Joost Mulders for the DLPI
2922   package which should clear up problems people have been seeing on
2923   Solaris.
2924
2925 - Fix bugs in the handling of options stored as linked lists (agent
2926   options, fqdn options and nwip options) that could cause memory
2927   corruption and core dumps.
2928
2929 - Fix a bug in DHCPREQUEST handling that resulted in DHCPNAK messages
2930   not being send in some cases when they were needed.
2931
2932 - Make the lease structure somewhat more compact.
2933
2934 - Make initial failover startup *much* faster.   This was researched
2935   and implemented by Damien Neil.
2936
2937 - Add a --version flag to all executables, which prints the program
2938   name and version to standard output.
2939
2940 - Don't rewrite the lease file every thousand leases.
2941
2942 - A bug in nit.c for older SunOS machines was fixed by a patch sent in
2943   by Takeshi Hagiwara.
2944
2945 - Fix a memory corruption bug in the DHCP client.
2946
2947 - Lots of documentation updates.
2948
2949 - Add a feature allowing environment variables to be passed to the
2950   DHCP client script on the DHCP client command line.
2951
2952 - Fix client medium support, which had been broken for some time.
2953
2954 - Fix a bug in the DHCP client initial startup backoff interval, which
2955   would cause two DHCPDISCOVERS to be sent back-to-back on startup.
2956
2957                 Changes since 3.0 Beta 2 Patchlevel 15
2958
2959 - Some documentation tweaks.
2960
2961 - Maybe fix a problem in the DLPI code.
2962
2963 - Fix some error code space inconsistencies in ddns update code.
2964
2965 - Support relay agents that intercept unicast DHCP messages to stuff
2966   agent options into them.
2967
2968 - Fix a small memory leak in the relay agent option support code.
2969
2970 - Fix a core dump that would occur if a packet was sent with no
2971   options.
2972
2973                 Changes since 3.0 Beta 2 Patchlevel 14
2974
2975 - Finish fixing a long-standing bug in the agent options code.   This
2976   was causing core dumps and failing to operate correctly - in
2977   particular, agent option stashing wasn't working.   Agent option
2978   stashing should now be working, meaning that agent options can be
2979   used in class statements to control address allocation.
2980
2981 - Fix up documentation.
2982
2983 - Fix a couple of small memory leaks that would have added up
2984   significantly in a high-demand situation.
2985
2986 - Add a log-facility configuration parameter.
2987
2988 - Fix a compile error on some older operating systems.
2989
2990 - Add the ability in the client to execute certain statements before
2991   transmitting packets to the server.   Handy for debugging; not much
2992   practical use otherwise.
2993
2994 - Don't send faked-out giaddr when renewing or bound - again, useful
2995   for debugging.
2996
2997                 Changes since 3.0 Beta 2 Patchlevel 13
2998
2999 - Fixed a problem where the fqdn decoder would sometimes try to store
3000   an option with an (unsigned) negative length, resulting in a core
3001   dump on some systems.
3002
3003 - Work around the Win98 DHCP client, which NUL-terminates the FQDN
3004   option.
3005
3006 - Work around Win98 and Win2k clients that will claim they want to do
3007   the update even when they don't have any way to do it.
3008
3009 - Fix some log messages that can be printed when failover is operating
3010   that were not printing enough information.
3011
3012 - It was possible for a DHCPDISCOVER to get an allocation even when
3013   the state machine said the server shouldn't be responding.
3014
3015 - Don't load balance DHCPREQUESTs from clients in RENEWING and
3016   REBINDING, since in RENEWING, if we heard it, it's for us, and in
3017   REBINDING, the client wouldn't have got to REBINDING if its primary
3018   were answering.
3019
3020 - When we get a bogus state lease binding state transition, don't do
3021   the transition.
3022   
3023
3024                 Changes since 3.0 Beta 2 Patchlevel 12
3025
3026 - Fixed a couple of silly compile errors.
3027
3028                 Changes since 3.0 Beta 2 Patchlevel 11
3029
3030 - Albert Herranz tracked down and fixed a subtle bug in the base64
3031   decoder that would prevent any key with an 'x' in its base64
3032   representation from working correctly.
3033
3034 - Thanks to Chris Cheney and Michael Sanders, we have a fix for the
3035   hang that they both spotted in the DHCP server - when
3036   one-lease-per-client was set, the code to release the "other" lease
3037   could spin.
3038
3039 - Fix a problem with alignment of the input buffer in bpf in cases
3040   where two packets arrive in the same bpf read.
3041
3042 - Fix a problem where the relay agent would crash if you specified an
3043   interface name on the command line.
3044
3045 - Add the ability to conditionalize client behaviour based on the
3046   client state.
3047
3048 - Add support for the FQDN option, and added support for a new way of
3049   doing ddns updates (ddns update style interim) that allows more than
3050   one DHCP server to update the DNS for the same network(s).   This
3051   was implemented by Damien Neil with some additional functionality
3052   added by Ted Lemon.
3053
3054 - Damien added a "log" statement, so that the configuration file can
3055   be made to log debugging information and other information.
3056
3057 - Fixed a bug that caused option buffers not to be terminated with an
3058   end option.
3059
3060 - Fixed a long-standing bug in the support for option spaces where the
3061   options are stored as an ordered list rather than in a hash table,
3062   which could theoretically result in memory pool corruption.
3063
3064 - Prevent hardware declarations with no actual hardware address from
3065   being written as something unparsable, and behave correctly in the
3066   face of a null hardware address on input.
3067
3068 - Allow key names to be FQDNs, and qualify the algorithm name if it is
3069   specified unqualified.
3070
3071 - Modify the DDNS update code so that it never prints the "resolver
3072   failed" message, but instead says *why* the resolver failed.
3073
3074 - Officially support the subnet selection option, which now has an
3075   RFC.
3076
3077 - Fix a build bug on MacOS X.
3078
3079 - Allow administrator to disable ping checking.
3080
3081 - Clean up dhcpd.conf documentation and add more information about how
3082   it works.
3083
3084                 Changes since 3.0 Beta 2 Patchlevel 10
3085
3086 - Fix a bug introduced during debugging (!) and accidentally committed
3087   to CVS.
3088
3089                 Changes since 3.0 Beta 2 Patchlevel 9
3090
3091 - Fix DHCP client handling of vendor encapsulated options.
3092
3093 - Fix a bug in the handling of relay agent information options introduced
3094   in patchlevel 9.
3095
3096 - Stash agent options on client leases by default, and use the stashed
3097   options at renewal time.
3098
3099 - Add the ability to test the client's binding state in the client
3100   configuration language.
3101
3102 - Fix a core dump in the DNS update code.
3103
3104 - Fix some expression evaluation bugs that were causing updates to be
3105   done when no client hostname was received.
3106
3107 - Fix expression evaluation debugging printfs.
3108
3109 - Teach pretty_print_option to print options in option spaces other than
3110   the DHCP option space.
3111
3112 - Add a warning message if the RHS of a not is not boolean.
3113
3114 - Never select for more than a day, because some implementations of
3115   select will just fail if the timeout is too long (!).
3116
3117 - Fix a case where a DHCPDISCOVER from an unknown network would be
3118   silently dropped.
3119
3120 - Fix a bug where if a client requested an IP address for which a different
3121   client had the lease, the DHCP server would reallocate it anyway.
3122
3123 - Fix the DNS update code so that if the client changes its name, the DNS
3124   will be correctly updated.
3125
3126                 Changes since 3.0 Beta 2 Patchlevel 8
3127
3128 - Oops, there was another subtle math error in the header-length
3129   bounds-checking.
3130
3131                 Changes since 3.0 Beta 2 Patchlevel 7
3132
3133 - Oops, forgot to byte-swap udp header length before bounds-checking it.
3134
3135                 Changes since 3.0 Beta 2 Patchlevel 6
3136
3137 - Fix a possible DoS attack where a client could cause the checksummer
3138   to dump core.   This was a read, not a write, so it shouldn't be
3139   possible to exploit it any further than that.
3140
3141 - Implement client- and server-side support for using the Client FQDN
3142   option.
3143
3144 - Support for other option spaces in the client has been added.   This
3145   means that it is now possible to define a vendor option space on the
3146   client, request options in that space from the server (which must
3147   define the same option space), and then use those options in the
3148   client.   This also allows NWIP and Client FQDN options to be used
3149   meaningfully.
3150
3151 - Add object initializer support.   This means that objects can now be
3152   initialized to something other than all-zeros when allocated, which
3153   makes, e.g., the interface object support code a little more robust.
3154
3155 - Fix an off-by-one bug in the host stuffer.   This was causing host
3156   deletes not the work, and may also have been causing OMAPI
3157   connections to get dropped.   Thanks to James Brister for tracking
3158   this one down!
3159
3160 - Fixed a core dump in the interface discovery code that is triggered
3161   when there is no subnet declaration for an interface, but the server
3162   decides to continue running.   Thanks to Shane Kerr for tracking
3163   down and fixing this problem.
3164
3165                 Changes since 3.0 Beta 2 Patchlevel 5
3166
3167 - Fix a bug in the recent enhancement to the interface discovery code
3168   to support arbitrary-length interface lists.
3169
3170 - Support NUL-terminated DHCP options when initializing client-script
3171   environment.
3172
3173 - Fix suffix operator.
3174
3175 - Fix NetWare/IP option parsing.
3176
3177 - Better error/status checking in dhcpctl initialization and omapi
3178   connection code.
3179
3180 - Fix a potential memory smash in dhcpctl code.
3181
3182 - Fix SunOS4 and (maybe) Ultrix builds.
3183
3184 - Fix a bug where a certain sort of incoming packet could cause a core
3185   dump on Solaris (and probably elsewhere).
3186
3187 - Add some more safety checks in error logging code.
3188
3189 - Add support for ISC_R_INCOMPLETE in OMAPI protocol connection code.
3190
3191 - Fix relay agent so that if an interface is specified on the command
3192   line, the relay agent does not dump core.
3193
3194 - Fix class matching so that match if can be combined with match or
3195   spawn with.
3196
3197 - Do not allow spurious leases in the lease database to introduce
3198   potentially bogus leases into the in-memory database.
3199
3200 - Fix a byte-order problem in the client hardware address type code
3201   for OMAPI.
3202
3203 - Be slightly less picky about what sort of hardware addresses OMAPI
3204   can install in host declarations.
3205
3206                 Changes since 3.0 Beta 2 Patchlevel 4
3207
3208 - Incorporated Peter Marschall's proposed change to array/record
3209   parsing, which allows things like the slp-agent option to be encoded
3210   correctly.   Thanks very much to Peter for taking the initiative to
3211   do this, and for doing such a careful job of it (e.g., updating the
3212   comments)!
3213
3214 - Added an encoding for the slp-agent option.   :')
3215
3216 - Fixed SunOS 4 build.  Thanks to Robert Elz for responding to my
3217   request for help on this with patches!
3218
3219 - Incorporated a change that should fix a problem reported by Philippe
3220   Jumelle where when the network connection between two servers is
3221   lost, they never reconnect.
3222
3223 - Fix client script files other than that for NetBSD to actually use
3224   make_resolv_conf as documented in the manual page.
3225
3226 - Fix a bug in the packet handling code that could result in a core
3227   dump.
3228
3229 - Fix a bug in the bootp code where responses on the local net would
3230   be sent to the wrong MAC address.   Thanks to Jerry Schave for
3231   catching this one.
3232
3233                 Changes since 3.0 Beta 2 Patchlevel 3
3234
3235 - In the DHCP client, execute client statements prior to using the values
3236   of options, so that the client configuration can overridden, e.g., the
3237   lease renewal time.
3238
3239 - Fix a reference counting error that would result in very reproducible
3240   failures in updates, as well as occasional core dumps, if a zone was
3241   declared without a key.
3242
3243 - Fix some Linux 2.0 compilation problems.
3244
3245 - Fix a bug in scope evaluation during execution of "on" statements that
3246   caused values not to be recorded on leases.
3247
3248 - If the dhcp-max-message-size option is specified in scope, and the
3249   client didn't send this option, use the one specified in scope to
3250   determine the maximum size of the response.
3251
3252                 Changes since 3.0 Beta 2 Patchlevel 2
3253
3254 - Fix a case where spawning subclasses were being allocated
3255   incorrectly, resulting in a core dump.
3256
3257 - Fix a case where the DHCP server might inappropriately NAK a
3258   RENEWING client.
3259
3260 - Fix a place dhcprequest() where static leases could leak.
3261
3262 - Include memory.h in omapip_p.h so that we don't get warnings about
3263   using memcmp().
3264
3265                 Changes since 3.0 Beta 2 Patchlevel 1
3266
3267 - Notice when SIOCFIGCONF returns more data than fit in the buffer -
3268   allocate a larger buffer, and retry.   Thanks to Greg Fausak for
3269   pointing this out.
3270
3271 - In the server, if no interfaces were configured, report an error and
3272   exit.
3273
3274 - Don't ever record a state of 'startup'.
3275
3276 - Don't try to evaluate the local failover binding address if none was
3277   specified.   Thanks to Joseph Breu for finding this.