Update ChangeLog
[freeradius.git] / doc / ChangeLog
1 FreeRADIUS 3.0.4 Mon 12 May 2014 15:30:00 EDT urgency=medium
2         Feature improvements
3         * Home server "response_window" can now take fractions of a
4           second.  See proxy.conf.
5         * radmin now supports "show module status", as the counterpart
6           to "set module status"
7         * Added dictionary ericsson.packet.ccore.networks
8         * Add %{tag:} expansion to get the tag value of an attribute.
9         * Report 'application_name' in connections to PostgreSQL servers.
10           FreeRADIUS connections will now appear as
11           'FreeRADIUS <version> - <name>' in pg_stat_activity.
12         * All config item fields are now type checked at compile time
13           to prevent issues similar to #634 occuring again.
14         * Modify pairparsevalue to deal with embedded NULLs better,
15           and use the binary versions of attribute values in rlm_ldap.
16         * "ipaddr" will now use v6 if no v4 address is present.  You should
17           use "ipv4addr" or "ipv6addr" to force v4/v6 addresses.
18         * The above applies to "listen", "home_server", and "client" sections.
19         * "client" sections will allow prefixes as "192.192.0/24".  The old
20           "netmask" is still accepted, but the new format is preferred.
21         * Allow custom HTTP headers to be set for rlm_rest requests using
22           control:REST-HTTP-Header (attributes consumed after use).
23         * Extend format of %{rest:} expansion to allow HTTP method and POST
24           data to be specified
25           e.g. %{rest:POST http://example.org/api foo=bar&baz=boink}.
26         * Add %{hmacsha1:&data &key} and %{hmacmd5:&data &key} expansions
27           for signing data in requests.
28         * rlm_cache now consumes its control attributes to make runtime
29           configuration easier.
30         * Add control:Cache-Read-Only which when set to 'yes' will make the
31           cache module merge existing cache data, but not create new entries.
32         * Add %{unescape:} and %{urlunquote:} expansions to reverse escaping
33           and urlquoting.
34         * Add support for aliases in rlm_ldap.
35
36         Bug fixes
37         * make case-insensitive regular expressions work again.
38         * Added tests for the above
39         * A few more talloc parenting issues
40         * Fix delayed proxy reply handling.  Closes #637
41         * Fix OpenSSL initialization order when using
42           RADIUS/TLS.  Fixes #646
43         * Don't double-quote strings in debugging messages
44         * Fix foreach / break.  Fixes #639
45         * Chargeable-User-Identifier, ADSL-Agent-Circuit-Id and
46           ADSL-Agent-Remote-Id should be "octets" types in the default
47           dictionary.
48         * Fix typo in mainconfig.  Fixes #634
49         * More rlm_perl fixes.  Fixes #635
50         * Free OpenSSL memory on clean exit.
51         * Fix <attr>[0] !* ANY - Was removing all instances of <attr>
52         * Fix case where multiple attributes were returned from LHS of
53           mapping, as with rlm_ldap. Fixes #652
54         * Fix corner case in cursor where using fr_cursor_next_by_da
55           after calling fr_cursor_remove may of resulted in a read of
56           uninitialised memory.
57         * Don't SEGV if all connections to a database server go away.
58           Fixes #651.
59         * Fix issue where <attr> -= <value> was not removing tagged
60           instances of <attr> equal to <value> (only untagged).
61         * Fix issue where tag values were not being set on attributes
62           created with unlang/ldap update blocks.
63         * Create rlm_sqlcounter attributes as integer64 types instead
64           of integer types, so large counter values can be specified.
65         * Fix issue where specifying a dynamic client IP addresss using
66           FreeRADIUS-Client-IPv6-Prefix or FreeRADIUS-Client-IP-Prefix
67           may have caused a validation error.
68         * Don't print two "&" for messages about attribute or list
69           references.
70         * Fix urlquote and escape to encode Unicode characters correctly.
71         * Fix redundant-load-balance blocks to try other modules in
72           the group if one fails.
73         * Fix issue with rlm_pap password normalisation where
74           'known good' password strings stored in octets type attributes,
75           would be sometimes misnormalised as base64.
76         * Don't stop processing DHCP options if we find a 0x00 padding
77           option.
78         * Fix issue where modifying the value of an attribute created
79           from a template with a literal value, may have resulted in the
80           template literal being freed.
81         * Fix parenting issues in tls code which may have resulted in
82           memory corruption and crashes.
83         * Fix issue in radsniff where writing to PCAP files and using
84           -R response filters, where the requests would still be written
85           to the PCAP for non matching responses.
86         * Define __APPLE_USE_RFC_2292 so that the server builds with IPv6
87           support on OSX.
88         * Fix LDAP group lookups for named rlm_ldap instances.
89           Note that attribute references should be used when
90           checking LDAP-Group attributes. e.g. if (&LDAP-Group == 'foo').
91
92 FreeRADIUS 3.0.3 Mon 12 May 2014 15:30:00 EDT urgency=medium
93         Feature improvements
94         * Everything now builds with no warnings from the C compiler,
95           clang static analyzer, or cppcheck.
96         * rlm_ldap now supports defining the LDAP attribute name via
97           backticked expansion (i.e. shell command) in
98           RADIUS <-> LDAP mappings.
99         * rlm_ldap now supports older style generic attributes.
100         * dynamic expansions (e.g. "%{expr:1 + 2}" are now parsed
101           when the server starts.  Syntax errors in the strings
102           are caught, and a descriptive error is printed.
103         * Static regular expressions (e.g. /a*b/) are now parsed
104           when the server starts.  Syntax errors in the strings
105           are caught, and a descriptive error is printed.
106         * dynamic expansions are cached after being parsed.  They are
107           no longer re-parsed at run-time for every request.
108         * regular expressions are now parsed and cached when the server
109           starts.
110         * Added the %{rest:} expansion to rlm_rest, which will send
111           a GET request to the URL passed as the format string.
112           Any body text will be written to the expansion buffer.
113         * rlm_rest now available as a debian package.
114         * When an 'if' condition statically evaluates to true/false,
115           unlang does more static optimization.  For examples, see
116           src/tests/keywords/if-skip
117         * All modules are marked as safe for '-C', which lets the
118           dynamic expansion checks work in more situations.
119         * Added 'none' and 'custom' rlm_rest body types. 'custom'
120           allows sending of arbitrary expanded text and content-type
121           headers.
122         * Added "config" section to Perl.  See mods-available/perl
123         * Added '%v' which expands to the server version - Patch
124           from Alan Buxey.
125         * more mis-matched casts are caught in "if" conditions,
126           and descriptive errors are printed.
127         * Support basic response validation in radclient. This allows
128           administrators to write local test cases for their
129           site-specific configurations.
130         * Removed radconf2xml and radmin "show client config" and
131           "show home_server config".
132         * Forbid running with vulnerable versions of OpenSSL.
133           See "allow_vulnerable_openssl" in the "security"
134           subsection of "radiusd.conf"
135         * Catch underlying "heartbleed" problem, so that nothing bad
136           happens even when using a vulnerable version of OpenSSL.
137         * Add locking API for sql_null, linelog, and detail modules,
138           which should improve performance and work around issues
139           on platforms with bad file locking.
140         * Allow DHCP NAKs to be delayed, via setting
141           reply:FreeRADIUS-Response-Delay = 1
142         * Allow tag and array references anywhere attributes
143           are allowed in "unlang".
144         * many enhancements to radsniff, including output
145           to collectd, ipv6 support and packet loss statistics.
146         * Many dictionary updates (ZTE, Brocade, Motorola).
147         * rlm_yubikey now automatically splits passwords from OTP
148           strings.
149         * The detail file reader is now threaded by default.
150           This should improve performance reading the files.
151
152         Bug fixes
153         * Fix xlat expression %{attribute[n]} so that it actually
154           returns the n'th attribute instead of the first one.
155         * Don't parse string on RHS of update {} when using unary
156           operators (!*).  The RHS should always be ignored.
157         * Check for more optional functions in json-c so we can
158           Build with libjson0, which is the name of the json-c package
159           on debian/ubuntu.
160         * Fix issue in radmin where the main dictionaries would
161           not be loaded which, depending on the configuration, may
162           have caused validation errors.
163         * Fix handling of "%{reply:3GPP-*}"
164         * Fix rlm_perl garbage attributes
165         * Fix oracle SQL queries, which amongst other things still
166           used the old expansion format, which is no longer
167           supported/parsed.
168         * Truncate long format strings and error markers instead of
169           omitting them.
170         * Fix multiple attribute parsing in rlm_rest JSON.
171         * Don't crash in rlm_rest if connect_uri is commented out
172           in the configuration.
173         * Don't double-escape strings to / from Perl.  You may need
174           to double-check your Perl scripts if they use "\" characters.
175           See mods-available/perl for documentation.
176         * Don't re-run "authorize" if a home server fails to respond.
177         * Don't append "0x" to hex output of octets types, for xlat
178           expansions.  This is the same as v2, and makes it easier
179           to concatenate multiple attributes of type "octets"
180         * FreeBSD fixes for execinfo linking.
181         * Make some of the module configurations more consistent.
182         * Fix corner cases where STDOUT wouldn't be closed in
183           daemon mode.
184         * Re-enable "update coa" and originating CoA requests.
185         * Prevent multiple threads writing to the sql query logs.
186         * Fix zombie period calculation.  Closes #579
187         * Properly parent VPs for talloc, when moving them in map2request.
188         * Various fixes for talloc parent / child relationships
189         * Allow rlm_counter to support VSAs.
190         * Normalize return codes for many modules. "do nothing" is noop,
191           not "ok".
192         * Run Post-Proxy-Type Fail.  Closes #576
193         * Fix DHCP destination port for replies to relays.  Closes #591
194         * Do-Not-Respond policy works again  Closes #593
195         * Proxy-To-Virtual-Server works again.  Closes #596
196         * Build fixes for ancient systems.  Closes #607, #608, #609.
197         * %{Module-Return-Code} works again.  Closes #610.
198         * Don't increment statistics for Status-Server responses.
199           Closes #612.
200         * A duplicate request isn't a duplicate if the original one
201           is marked "done".  This should lower retransmissions from
202           clients.
203         * Fix multiple regular expression and glob memory leaks.
204         * Don't allocate any memory in fr_fault() as it can cause malloc
205           to deadlock.
206         * Temporarily set dumpable flag before calling system in fr_fault()
207           else the debugger may not be able to attach.
208         * Set nonblock on all TCP client sockets.
209         * Fix minor buffer overrun in mschapv2 where some attribute strings
210           were not correctly \0 terminated.
211         * Fix crash on authentication failure with MIT kerberos.
212         * Fix code so that octal escape sequences aren't prematurely unescaped
213           in rlm_sql, radclient, preprocess, and other places. This may
214           require configuration changes, as these sequences will no longer
215           need double escaping (\\) of the backslash.
216         * The connection pools no longer have one connection used twice
217           in certain rare conditions.
218         * Use self pipes for internal signals.  The code was there, but was
219           unused.
220         * Don't crash if there are outstanding EAP sessions and were told to
221           exit gracefully.
222         * Fix typo in dictionary.rfc4072
223
224 FreeRADIUS 3.0.2 Fri 21 Mar 2014 08:30:00 EDT urgency=medium
225         Feature improvements
226         * secret keys and LDAP / SQL passwords are now printed as
227           '<<< secret >>>' in debugging mode.  Use -Xx to see the
228           actual passwords.
229         * Print out more information about passwords in -Xx,
230           including hashes, comparisons, etc.
231         * Allow cast (and implicit conversion) of integers to IPv4 addresses
232         * More xlats allow attribute references.  This means they can
233           operate on binary data.  e.g. expr, base64, md5, sha1.
234         * Added more tests.
235         * The dictionaries are now auto-loaded.  raddb/dictionary
236           should no longer have $INCLUDE ${prefix}/share/dictionary
237         * A "panic_action" can be set to have the server dump a gdb
238           log on SEGV or other fatal error.  See radiusd.conf
239         * Add support for SHA-224, SHA-256, SHA-384, SHA-512 to rlm_pap.
240         * Add "%{sha256:}" and "%{sha512:}" xlat functions.
241         * Cache CUI in EAP session resumption.
242         * templates can now have sub-sections, which will be included
243           in the section referencing the template.
244         * Update more dictionaries.
245         * Added more instances of the "always" module, for all return
246           codes.
247         * Suppress broken NASes when proxying.  Retransmits which occur
248           more than once per second are rate-limited to once per second.
249         * Allow '&' in more xlat expansions.
250         * Update PostgreSQL schema and queries to record last updated
251           time, and accounting interim.
252         * Optimize more "if" conditions when the server loads.  This will
253           avoid work at run time.  e.g. ("foo" == "bar") --> FALSE.
254         * Allow removal of all attributes within a list with !* operator.
255         * Allow list to list copies with request qualifiers (outer.).
256         * Add support for ipv4 prefixes and ipv6 addresses and prefixes to
257           %{integer:}.
258         * allow radmin command "set module status <module> <code>"
259           which can be used to forcibly enable/disable modules.
260         * pap module now assumes Cleartext-Password if Password-With-Header
261           doesn't have a {...} header.
262         * Added "unpack" module.  It can unpack binary data from horrible
263           VSA formats.  See raddb/mods-available/unpack
264         * Added example IP Pool for DHCP, using sqlite.  From Matthew Newton
265           See raddb/mods-config/sql/ippool-dhcp/
266
267         Bug fixes
268         * Fix SQL groups.
269         * Fix operation of fr_strerror() with RE*() macros.
270         * Don't assert if the connection we're trying to reconnect
271           is not in_use.
272         * Fix %{mschap:User-Name} xlat.
273         * Allow comparisons of signed integers and of ethernet addresses.
274         * Fix parsing of text-based ascend binary filters.
275         * Fix a few minor Coverity and clang analyzer issues.
276         * Log WARNING and ERROR prefixes only once, not twice.
277         * Fix attribute truncation seen in Perl and other places.
278         * Use correct port when DHCP relaying.
279         * Fix behaviour on FreeBSD where sending packets from an interface
280           bound to an IP address would fail when the server was built with
281           udpfromto.
282         * Don't abort() when freeing home servers on exit.
283         * Fix edge case in pairmove() when some attributes could be over-
284           written.
285         * Do checks for individual sqlite v2 functions so rlm_sqlite builds
286           correctly with more versions of the library.
287         * In heimdal kerberos, create MEMORY ccaches on a per context basis.
288           This prevents issues with the root ccache being used.
289         * Fix corner case with proxying, where home server goes down.
290         * Rate-limit "max_requests" complaint.  We don't want to fill the
291           logs when something goes wrong.
292         * Use /dev/urandom for raddb/certs/random, if it exists.
293         * Issue WARNING that old-style clients should no longer be used.
294         * Auto-set secret to "radsec" for tcp+tls home servers.
295         * Fix double free in home_server_add when there is a parse error
296           on startup.
297         * rlm_unix checks if the dictionaries are broken, instead of crashing
298         * Fix potential memory corruption when normalising salted password
299           hashes from hex, where the combined hash and salt was > 64 bytes.
300         * Register sqlcounter attributes correctly, and other issues with it
301         * treat 127.0.0.1/32 as being identical to 127.0.0.1
302         * Don't mangle error output of SQL drivers like PostgreSQL
303         * Fix usage of "tls = ${tls}".  It could previously cause problems
304           when the reference was used multiple times.
305         * Fix TLS session leak for incoming sockets.
306         * Try harder to clean up memory on exit when using "-mM"
307         * Fix memory leak when home server is down for RadSec connections
308         * rate-limit outgoing connection attempts when the home server
309           is down.  It will retry no more than once per second.
310         * When parsing ipv6 address prefixes, always mask off the host
311           portion.
312         * Fix rlm_counter so that it does not create two reply
313           attributes.
314         * Fix issues with DHCP Sub-TLVs where the value of the first
315           Sub-TLV would appear corrupted, and subsequent TLVs would
316           not appear in debug output.
317         * Initialize scope in IP address parsing
318         * Prevent vendor attributes and RFC space attributes from clashing
319           in rlm_attr_filter.
320         * Set source IP address for DHCP packets from DHCP-Server-IP-Address,
321           or DHCP-DHCP-Server-Identifier, if we're unable to otherwise
322           determine the source IP.
323         * Fix POST attribute parsing in rlm_rest.
324         * Fix JSON attribute parsing in rlm_rest.
325         * Don't append trailing & to POST options in rlm_rest (minor).
326         * Process HTTP 100 Continue messages correctly in rlm_rest
327         * Fix generation of long > 512 byte POST payloads, where attribute
328           values on the chunk boundary may have been omitted in rlm_rest.
329         * Remove duplicate escape sequence parsing in rlm_sqlippool and
330           rlm_sqlcounter which caused issues with escaping %. Escape
331           sequence parsing is now handled purely by the xlat functions.
332         * Ensure %% is treated as a string literal, and so not passed to any
333           xlat escape functions for processing.
334         * Correct calculation of Message-Authenticator
335           for CoA packets.  Closes #556
336
337 FreeRADIUS 3.0.1 Mon 13 Jan 2014 14:30:00 EDT urgency=medium
338         Feature improvements
339         * Add "timeout" to exec, and "ntlm_auth_timeout" to mschap.
340           So that run-away child processes are caught earlier.
341         * Allow TLS clients to use "proto = tls", in which case
342           TLS is required.  The shared secret is then set to "radsec".
343         * More documentation in the tls virtual server.
344         * Add "date" module for date formatting.
345           See raddb/mods-available/date.
346         * Added unit test suite for internal server functionality
347         * When loading "update" sections, check if the RHS is a literal
348           value.  If so, syntax check it immediately.
349         * Update LDAP module documentation and functionality.
350           The generic attribute can now update lists.
351         * Updated dictionary.extreme.
352         * Update sqlippool to do clears as a separate transaction,
353           and at most once per second.  This should help MySQL.
354         * Respect control:Response-Packet-Type for all types of
355           requests.
356         * Add support for SSL encryption to the MySQL driver.
357         * Allow arbitrary connection parameters to be used with the
358           PostgreSQL driver.
359         * Changes to the OpenLDAP schema to fully expose functionality
360           of the new LDAP module.
361         * Update debian packaging to include a freeradius-config
362           package. This package may be provided as a site local
363           package to avoid fighting with the preinstalled config
364           files.
365
366         Bug fixes
367         * Use correct field for ARP setting in DHCP.
368         * Fix crash on debug condition (#454).
369         * Fix a number of minor issues caught by the clang
370           analyzer.
371         * Set WARNING messages to yellow instead of normal text.
372         * Correct debug colorise logic.  Patch from Phil Mayers.
373         * Encode attributes of type "ethernet".  No one uses them,
374           but it makes sense.
375         * Work around regex initialization issues.
376         * Fix build when linking against OpenSSL.
377         * Print IDs as positive numbers, which helps for large DHCP
378           XIDs.
379         * Fix issue with sql_ippool.
380         * sqlcounter now uses 64-bit counters, to deal with 4G overflow.
381         * Fix issues with DHCP subsystem.
382         * Don't build / install disabled modules, or their config
383           files.
384         * Fix build for OSX Mavericks, which hid the header files
385           in a magical place.
386         * Fix LEAP buffer issue.  You should still avoid LEAP.
387         * Mark "unknown" WiMAX attributes as being WiMAX.
388         * Fix typo in packet decoder for fragmented extended attrs
389         * RPM spec fixes.
390         * Fix rlm_perl build issues when not using threads.
391         * Enable %{Response-Packet-Type} again.
392         * Update configuration file parser to handle "bool"
393           consistently.
394         * Update declarations of global boolean variables to use
395           "bool" consistently. This fixes an issue where some
396           modules were instantiated in "config check" mode and
397           did not work correctly.
398         * Make more messages debug instead of info, to avoid
399           polluting the logs with messages that can't be fixed.
400         * Set operator in internal unlang code to suppress spurious
401           warning messages.
402         * Fix debian packaging.
403         * Added "status" to Debian init script.
404         * Fix "update outer.request" to update the outer request.
405         * Don't print TLS debugging messages when not in debug mode.
406         * Correctly manage counters for "limit" sections of TCP / TLS
407           "listen" sockets.
408         * Fix libldap debug output.
409         * Fix rlm_ldap tls functionality.
410         * Initialise OpenSSL globals early to avoid issues with the
411           PostgreSQL library.
412         * Fix typo in sqlcounter expansion code.  Fixes #463
413         * Overwrite previous instances of SQL-User-Name when adding
414           it to the request.
415         * Work around bugs in both MIT and heimdal versions of
416           krb5_copy_context(), which caused segfaults in
417           multithreaded mode.
418         * Provide meaningful error messages if Heimdal krb5 is used.
419         * Fix attribute supression in rlm_detail.
420         * Exit with error code if child fails to complete server
421           initialisation after forking.  This allows init scripts to
422           correctly report whether the server started ok.
423
424 FreeRADIUS 3.0.0 Mon  7 Oct 2013 15:48:14 EDT urgency=medium
425         Feature improvements
426         * Documentation for upgrading from 2.x is in raddb/README.rst
427           Please follow it.  It will make the upgrade easier.
428         * Moved configuration entries in radiusd.conf to make more sense.
429         * Added the "integer64" and "ipv4prefix" data types.
430         * Added RADIUS over TLS (i.e. RadSec). See raddb/sites-available/tls
431         * Updated internal API to support new attributes and formats
432         * Added code to send SNMP Traps.  See raddb/trigger.conf.
433         * Added preliminary support for Apple's Grand Central Dispatch
434         * Added provisions for raddb/dictionary.local, for local changes.
435           See raddb/dictionary for more details.
436         * Added packet/s tracking. See max_pps in the "listen" section.
437         * The %{} expansions and "unlang" conditions are now parsed at server
438           start. Descriptive errors are produced for syntax and format errors.
439         * Casting is now supported for "unlang" comparisons.  See "man unlang"
440           e.g. <ipaddr>127.0.0.1 == Framed-IP-Address.
441         * Direct comparison of attribute references is now supported.
442           e.g. &Foo == &Bar.  This avoids stringification of the attributes.
443         * Direct assignment of attributes is now supported.
444           e.g. Foo := &Bar.  It also works for "octets" data types.
445         * Comparisons of IPv4 and IPv6 prefixes are now supported.
446           The "<" operator means "within the prefix" for comparisons.
447         * New sha1 xlat expansion (thanks to Alan Buxey)
448         * Colourised log messages when logging to stdout.  Look for yellow
449           warnings and red errors.  Doing this will save you a LOT of grief.
450         * If the PCRE library is available, use it (insted of the POSIX
451           functions) to process regular expressions (thanks to Phil Mayers).
452         * -xv now displays all the features the server was built with, and
453           the versions of the core libraries (libtalloc, libssl).
454
455         Module Changes
456         * Moved raddb/modules/ to raddb/mods-available/, and raddb/mods-enabled/,
457           following the examples of other projects.
458         * Additional files for each module are now in raddb/mods-config/.
459           See raddb/mods-config/README.rst for documentation.
460         * Moved "users" to raddb/mods-config/files/authorize
461         * Moved "hints" and "huntgroups" to raddb/mods-config/preprocess/
462         * Moved eap.conf to mods-available/eap
463         * Moved sql.conf to mods-available/sql
464         * Moved TLS configuration for EAP into a common subsection.
465           See raddb/mods-available/eap, "tls-config" section.
466         * Added for MS-CHAP Change Password from Phil Mayers.
467           See raddb/mods-available/mschap, "passchange" subsection.
468         * Added EAP-PWD implementation from Dan Harkins
469         * Added connection pools for modules. This unifies connection
470           management which was previously different for different modules.
471         * SQL now uses the connection pool.  See mods-available/sql
472         * SQL now supports arbitrary Acct-Status-Types.
473           These changes are not compatible with 2.x.
474         * SQL now has full support for SQLite.  See raddb/sql/main/sqlite/
475         * SQLite supports auto-creation of new databases on server startup for
476           bootstrapping purposes.
477         * LDAP now uses the connection pool.  The LDAP module has been
478           completely re-written for performance and simplicity.
479         * LDAP now caches groups.  This makes multiple group checks MUCH
480           faster.
481         * Removed all limitations on 253 octet attributes.  RFC 6929 allows
482           for attributes up to 4K in length.
483         * New rlm_idn module providing an expansion for performing IDNA encoding
484         of internationalized domain names.  Thanks to 'skids'.
485         * New rlm_yubikey module to validate yubikey OTP tokens.
486           See raddb/modules/yubikey
487
488         Bug fixes
489         * All known bug fixes from 2.2.x are included.
490         * Removed "addport" functionality.
491         * Removed many unused or duplicate modules.  See raddb/README.rst.
492
493         Internal / API changes:
494         * All traces of the old build system have been removed.
495           The new build system is faster and simpler.
496         * clang is fully supported.
497         * We now use "talloc" for memory management.  A number of new
498           features required this change.  Thanks to the Samba people!
499         * Many internal APIs have been updated to use talloc.
500         * New API for iterating over VALUE_PAIRs.  This is in preparation
501           for attributes, in version 3.1.
502         * No new code should directly modify any field of a VALUE_PAIR.
503         * VALUE_PAIRs contain pointers to DICT_ATTR instead of containing
504           attribute and vendor fields.  This will allow nested attributes.
505         * Some protocol specific code has been moved out into proto_* modules.
506           More will come in subsequent versions.  See proto_dhcp and proto_vmps.
507         * Standardised internal logging macros.  radlog() should not be used.
508           See src/include/log.h
509         * Use OpenSSL hashing functions when available.
510         * The server now builds with no warnings on most platforms.
511         * New RADIUS encoder/decoder, to support new formats.
512         * Added RFC 6929 "extended attributes", via the new encoder/decoder.
513         * Added full WiMAX support, via the new encoder/decoder.  The old
514           code could not handle some unusual corner cases.