Update ChangeLog
[freeradius.git] / doc / ChangeLog
1 FreeRADIUS 3.0.9 Wed 22 Apr 2015 13:30:00 EDT urgency=medium
2         Feature improvements
3         * Make "pool" configurations more consistent, and
4           update documentation for them.
5         * Move connection pool logic to "most recently started",
6           instead of MRU.  This should help with pool stability.
7         * More VSAs for 3GPP2
8         * Added examples of multi-value attributes to rlm_perl.
9         * LDAP-Group and SQL-Group attributes are now dynamically
10           allocated.
11         * Only the "sql" module registers SQL-Group.  Other instances
12           register "instance-name-SQL-Group", similarly to "ldap".
13         * Unknown attributes are now complained about more often
14           when used in unlang statements.  e.g. if (Foo-Bar == 3)
15           used to be a string to string comparison.  It is now a
16           parse error.
17         * Rename RLM_COMPONENT_* to MOD_* in the code.
18           This makes many things easier.
19         * Move to C99 initializers for modules.
20         * Load modules in raddb/mods-enabled.  This allows attributes
21           like "LDAP-Group" to be used in the "files" module,
22           without explicit ordering or listing in "instantiate".
23         * Added 'bootstrap' section to modules.  Third-party modules
24           will need to be updated.
25         * When adding clients from a DB, add them to a virtual server
26           if that virtual server has a "listen" section.  Otherwise,
27           add the clients to the global list.
28         * When reading dynamic clients from a file, don't expire them
29           if the underlying file is unchanged.
30         * Allow the server to originate CoA requests from the post-auth
31           stage.
32         * The server creates ${run_dir} and ${logdir} in daemon mode,
33           if they do not already exist.
34         * Add dictionary for Wi-Fi Alliance Hotspot 2.0.  The server
35           now supports all mandatory and optional attributes for this
36           specification.
37         * HUP now re-loads the configuration only if the files have
38           changed.  If all files are unchanged, HUP re-opens the
39           log file, and does nothing else.
40         * Much better debug messages for EAP-TLS, including which
41           attributes are cached, and when they are retrieved.
42         * Increase default max_requests to 16384.  Memory is cheap now.
43         * Added "stats memory" commands to radmin.  Debug build only.
44         * Aptilo controller dictionary updates.
45         * SQL modules now use Acct-Unique-Session-Id everywhere.
46         * The redis modules are now stable.
47         * The LDAP module now supports SASL "interactive bind" method.
48           This allows Kerberos based administrator and user binds.
49         * DHCP code is now in libfreeradius-dhcp.
50         * More DHCP encoding / decoding unit tests.
51         * rlm_replicate can now be listed in the "accounting" section.
52         * Better sqlite debugging output.
53
54         Bug fixes
55         * Be more careful about unused config item warnings
56           when using -Xx.
57         * Move more defines to be auto-generated.
58         * Allow virtual servers in proxy fallback.
59         * Allow %{module:} to work.
60         * Don't crash in RadSec.  Closes #980.
61         * Return better errors when a unix group / user
62           is not found.
63         * Re-enable detail module "locking" parameter.
64         * Don't crash when logging replies from Status-Server packets.
65         * The couchbase module now uses "update" instead of "map",
66           for consistent with the rest of the server.  See
67           raddb/mods-available/couchbase
68         * Don't require NT-Password for MS-CHAP password changes.
69         * Be a bit more careful about decrypting MS-CHAP-MPPE-Key
70           attributes. Closes #1013.  There is no perfect fix, tho.
71         * Fix security issues with EAP-PWD.
72           See http://freeradius.org/security.html#eap-pwd-2015
73         * Fix dynamic clients read from SQL in non-debug mode
74         * MS-CHAP now allows retries (i.e. password change) when
75           passwords are expired.
76         * Allow "user=radiusd" when the server is already user
77           "radiusd"
78         * suid up/down works on non-Linux systems.  This means
79           that the control socket should have the correct
80           ownership.
81         * Fix issue which caused the server to sometimes have problems
82           when a home server was marked zombie.
83         * Fix format.pl because Perl is now more picky.
84         * Fix proxy to Packet-Dst-IP-Address, so that it uses the
85           correct destination port.
86         * Fix corner case with cursor functions and removal.
87         * OpenDirectory fixes and documentation.
88         * Fix leaks in rlm_redis.
89         * RFC 6929 "evs" attributes are now encoded / decoded
90           properly.
91         * Fix talloc pool leaks when receiving malformed or
92           retransmitted Accounting/CoA requests.
93         * Printed attributes again use double quotes instead of
94           single quotes.
95         * Set X509_V_FLAG_CRL_CHECK_ALL, and add "check_all_crl"
96           to eap.conf.  Fixes oCert CVE-2015-4680.
97         * rlm_expr now errors out correctly on malformed attribute
98           references instead of triggering an assert.
99         * Make "break" work in "foreach" loops
100         * Re-urlencode the path portion of ldapi:// urls before
101           passing it to ldap_initialise.
102
103 FreeRADIUS 3.0.8 Wed 22 Apr 2015 13:30:00 EDT urgency=medium
104         Feature improvements
105         * Allow syslog_severity to be set in rlm_linelog.
106         * Allow defaults to be set for bulk clients in LDAP and couchbase.
107         * Updates to dhcpclient.  Patches from Nicolas C.
108         * rlm_mschap now supports direct connections to winbind, which
109           is faster than ntlm_auth.  See raddb/mods-available/mschap.
110           Patch from Matthew Newton.
111         * Recommend /dev/urandom for TLS randomness, instead of
112           ${certdir}/random
113         * Allow TLSv1 to be disabled via "disable_tlsv1" in tls{}.
114         * Allow Expanded EAP types where vendor is 0 (IETF) and
115           type is normal EAP type.  Supplicants sending Expanded
116           EAP types like this are broken.
117         * Add support for server side sort controls when searching for
118           user objects in rlm_ldap.
119
120         Bug fixes
121         * Don't complain about "authorize" in "server {}" blocks, but
122           only if there's no "server" block.
123         * Fix cosmetic issue where debug from the first packet read by
124           a detail reader thread would be emited during config parsing.
125         * Fix ASSERT on truncated detail packets.
126         * Don't use main server log functions from within panic_action,
127           as in the case of syslog this would cause deadlocks if the
128           fault was triggered from within a malloc.
129         * Fix issue in "switch" when "correct_escapes = false".
130           Fixes #911.
131         * Fix sqlcounter configuration to use "%%b" instead of "%b",
132           otherwise the new syntax validation will fail.
133         * Allow forward references in configuration items.  Modules
134           aren't always loaded in a sane order.
135         * Fix more escaping issues.  Closes #912.
136         * Decode MAC addresses correctly for VMPS.
137         * Fix memory leak with TLS connections.
138         * Fix state machine threading issues for conflicting packets.
139         * Fix copy_request_to_tunnel issues for tagged attributes.
140         * Allow "ok" to over-ride "updated" inside of Auth-Type sections.
141         * Update state machine so that post-proxy is run though child
142           threads for performance, instead of blocking the main thread.
143         * Allow "netmask" to work again in client definitions.
144         * Relax restrictions on SQL group queries.
145         * track outgoing proxy sockets and clean them up more aggressively.
146         * track proxy statistics, including CoA and Disconnect.
147         * If radmin has a connection failure when running a command,
148           it re-connects and runs the command again.
149         * mark home servers "unknown" less aggressively.
150         * Fix potential SEGV in PostgreSQL driver on error.
151         * Fix issue where fields like nas_type would not be accessible via
152           the %{client:} xlat, for dynamic clients.
153         * Set default busy_timeout (of 200ms) in the sqlite driver, so writes
154           don't cause selects to fail in multithreaded mode. This is user
155           configurable, and may be increased if required.
156         * Convert Password-With-Header attributes to binary (from hex or
157           base64), in the authorize method of rlm_pap.
158         * Fix invalid assert in state.c, that could cause abort in
159           post-auth.
160         * Fix double free when -m flag is used, and connection pools are
161           referenced by multiple modules.
162         * RADIUS over TLS accounting uses the same port as authentication.
163         * Regularized return codes from radmin commands.
164         * Fix RHEL spec file so it works correctly for Centos7 which uses
165           systemd, and didn't like the SystemV init script.
166         * radwho and radlast now have a -D option to load dictionaries
167         * DHCP packets are no longer checked for duplicates.
168         * Don't crash in sql module group comparisons in corner case.
169         * Calculate MPPE keys correctly when using TLS 1.2.
170         * Fix load-balance sections.  Closes #945
171         * TLS certificates are available again in the post-auth section.
172           They are not available for session resumption.
173         * radclient encodes CHAP-Password properly when using -c.
174           Closes #955.
175         * Fix issue in rlm_cache_memcached driver that caused variable
176           length values to be truncated.
177         * Fix track functionality in detail reader, so it no longer
178           fails with a "Failed marking detail request as done: Bad file
179           descriptor" error.
180         * Actually add the peer identity (as User-Name) to the inner
181           tunnel in EAP-PWD requests, so it's available for lookups.
182         * Fixes to PostgreSQL queries.  Patches from Santiago Gimeno.
183
184 FreeRADIUS 3.0.7 Thu 19 Feb 2015 12:00:00 EDT urgency=medium
185         Feature improvements
186         * Allow coa home_servers to be derived from client
187           sections if a coa_server section is provided.
188         * Automatically determine the correct port if no port is
189           provided for a home server.
190         * Allow foreach to operate over lists.
191         * Add compile time features to ${feature.*} and versions
192           of core libraries to ${version.*}.  Feature and version
193           names match output of radiud -xv. %v is now deprecated.
194         * Add support for PATCH method in rlm_rest.
195         * Validate more module xlats on startup, and warn if an
196           xlat expansion is found in a double quoted config item
197           which will not be expanded.
198         * Add support for sub-second timeouts in rlm_rest.
199         * Add support for connection timeouts in rlm_rest.
200         * Add %{jsonquote:<str>} xlat to escape strings for insertion
201           into json documents.
202         * Add %{ldapquote:<str>} xlat to escape strings for insertion
203           into ldap DNs.
204         * Add %{explode:&ref <char>}, splits value of &ref on
205           <char> and creates new &ref type attributes with the
206           fragments.
207         * Allow rlm_ldap to use attribute references for base_dn and
208           filter config items. The attribute references are not
209           escaped, allowing DNs and filters to be created dynamically.
210         * Add %{nexttime:[<int>]h|d|w|y} to calculate the number of
211           seconds before the next <int> hour(s), day(s), week(s),
212           or year(s).
213         * Allow the left side of update sections to be xlat expansions.
214           The result of the expansion is then used to reference the
215           attribute to be modified.
216         * Added %{lpad:&Attribute-Name 7 x} and rpad.  These produce
217           fixed-width output strings, with padding to the left (lpad)
218           or the right (rpad).
219         * For some SQL drivers (MySQL, sqlite) distinguish between
220           constraints violations (on insert), invalid queries, and
221           server errors, and return noop, invalid, and error respectively.
222         * Call SHOW WARNINGS in the MySQL driver and write them to
223           the request log, if libmysqlclient indicates warnings are
224           available on the server.
225         * Forbid the creation of Vendor-Specific for non-standard
226           VSAs.  Use Attr-26 = 0x... instead.
227         * Make dhcpclient work with raw sockets and various other
228           improvements - Contributed by nchaigne
229         * Add support for SSHA2 - Contributed by PDD.
230         * Add perle dictionary - Contributed by Hachmer
231         * Modernise init scripts for RHEL, SUSE and Debian.
232         * radmin now tracks the return code of commands, and exits
233           with status "1" if any command failed to execute.
234         * radmin now sends error messages from the server to
235           stderr, instead of to stdout.
236         * radmin now looks for sockets matching it's UID and GID,
237           rather than just always using the first one it finds.
238         * radmin can how delete clients which are tied to a listener.
239         * Moved RADIUS attribute definitions to src/include/rfc*.h
240         * Move to talloc pools for requests.  For in-memory tests
241           (default config, 'users' file), performance increases by 30%.
242         * In rlm_ldap allow sasl_mech to be specified for admin and
243           user binds. Only non-interactive mechs (like EXTERNAL)
244           are currently supported.
245         * Remove support for ephemeral RSA keys.  They were "export only",
246           and should not be used by anyone.
247         * Syntax errors in the "users" file now produce better
248           error messages.
249
250         Bug fixes
251         * Fix issues parsing LDAP hostnames with non-standard ports.
252         * Fix issues with realms containing regular expressions.
253         * Allow unary negation before parantheses in rlm_expr.
254         * Fix infinite loop in kevent event loop code. Issue only
255           presented on FreeBSD.
256         * Be more careful to define Auth-Types before loading modules.
257         * Link libfreeradius-radius against OpenSSL too, to avoid
258           multi-version symbols in SSL libraries.
259         * When rlm_ldap rebinds a connection, it should use bind
260           credentials from the module that created the connection
261           pool, not credentials from the module referencing it.
262         * Empty server config pairs should be allowed in rlm_ldap
263           instances that reference another module's connection pool.
264         * Mark rlm_always as huppable, so its rcode can be changed
265           via radmin (allows policy toggles).
266         * Emit warnings when ignoring user configured pool values.
267         * Fix issue that would cause radclient to complain
268           intermittently about differing numbers of filters and
269           requests.
270         * Fix cosmetic issues in connection pool logging, that made
271           it appear as if the same connection was being opened
272           multiple times.
273         * Fix threadsafety issues in SQL drivers, where a static
274           buffer was used to store error messages.
275         * Log RERROR, RWARN, RINFO to the global log if request
276           logging is not enabled.
277         * Link to libldap instead of libldap_r. libldap_r
278           is not supported for use by projects outside of OpenLDAP.
279         * Set connection timeout correctly in rlm_sql_mysql.
280         * Build with older versions of libcurl, and use CFLAGS from
281           curl-config.
282         * Honour Packet-Src-Port and Packet-Src-IP-address in radclient.
283         * Initialise ldapai_info_version field, so libldap will report
284           its vendor and version.
285         * Fix log rotation scripts by using the copyrotate option.
286         * Fix issue that caused opening control sockets to always
287           fail on non-Linux systems, if a user or group was set.
288         * Save Session-State after proxying.
289         * Additional fixes for reading CoA/DM requests from detail
290           files.
291         * Create dynamic clients if the dynamic clients virtual server
292           returns ok *or* updated. Emit useful messages for other codes.
293         * Compile bare "authorize" statements, and issue errors saying
294           using them isn't a good idea.
295
296 FreeRADIUS 3.0.6 Wed 17 Dec 2014 16:00:00 EDT urgency=medium
297         Feature improvements
298         * radmin / raddebug conditional errors are printed
299           to the output, instead of being discarded.
300         * raddebug will exit if condition set with -c was invalid.
301         * radmin auto-reconnects if the connection to the server
302           has gone away.
303         * rlm_cache now has submodule support.  See
304           raddb/mods-available/cache
305         * New memcached driver for rlm_cache. See
306           raddb/mods-available/cache
307         * Add support for &Attribute-Name[*] in conditions.
308           See "man unlang" for details.
309         * Add &Attribute-Name[n] which gets the last instance
310           of an attribute e.g. Module-Failure-Message[n].
311         * Allow for redundant string expansions.  See the
312           "instantiate" section of radiusd.conf.
313         * When checking IP addresses in conditions, make the
314           right side be parsed as an IP prefix.
315         * Support JIT compilation of compiled regular expressions
316           when built with libpcre.
317         * Support named capture groups with "%{regex:<name>}"
318           when built with libpcre.
319         * Increase regular expression capture groups from 8 to 32.
320         * Emit error markers for badly formed regular expressions.
321         * Allow 'm' flag to enable multiline mode in regular
322           expressions.
323         * Support limited implicit attribute conversion in update
324           sections.
325         * Support casting between IPv6 and IPv4 where the IPv6
326           address has the v4/v6 mapping prefix (::ffff:).
327
328         Bug fixes
329         * PEAP works again.  As does proxying EAP-MSCHAPv2
330           from inside of a PEAP tunnel.
331         * "group" is allowed inside of "instantiate" sections.
332         * update disconnect {} with
333           disconnect:Packet-Dst-IP-Address now works correctly.
334         * Regular expression comparisons of non string attributes
335           are now disallowed in the files module.  Previously
336           they would silently fail or produce undefined behaviour.
337         * Fix parsing of old regular expressions.  Closes #842
338         * Fix off by one error in ascend filters.  Closes #843.
339         * Handle NT-Hash in rlm_pap.  This allows passwords to
340           have backslashes in them.
341         * Fix infinite loop on "Fall-Through = yes" when
342           processing SQL groups.
343         * Correct the check of SQL query return code.
344         * Run "Post-Auth-Type Reject" if the request was rejected
345           in post-auth
346         * Write "Login OK" only if the post-auth section passed.
347         * Create TLS-Cert-* certificates, even when EAP session
348           caching is disabled.
349         * Finalize the "correct_escapes" with many more tests.
350         * Move to the new OpenLDAP libldap API, fixes more issues
351           with binary values.
352         * Fix potential memory corruption in rlm_ldap if start
353           connections were set to 0, and the server was running
354           in threaded mode. The fix is a workaround for an issue
355           in libldap and was suggested by Howard Chu.
356         * Give parse errors on "%{...", without the closing brace.
357         * Allow spaces in certificate passwords for build rules
358           in raddb/certs//
359         * Make all regular expression evaluation binary safe.
360           Where that's not possible, emit an error if the pattern
361           or subject contains an embedded null byte.
362         * Fix various issues around masking IPv6 addresses.
363         * Give descriptive error if unknown attributes are used
364           in "update" sections.
365         * Deal with cases where ldap_initialize isn't available
366           gracefully, and use it exclusively when it's available.
367
368 FreeRADIUS 3.0.5 Fri 21 Nov 2014 15:30:00 EDT urgency=medium
369         Feature improvements
370         * Large update to Huawei dictionary.
371         * Added dictionary.rfc7155
372         * Regular expressions like /%{User-Name}/ are now parsed
373           and validated when the server starts.
374         * All configuration items which are dynamically expanded
375           are now parsed and validated when the server starts.
376         * %{expr:...} expressions can now do bit shifting and more.
377           See raddb/mods-available/expr.
378         * The detail file reader can now track packets which have
379           had replies, so they are never re-transmitted.  See
380           raddb/sites-available/buffered-sql, the "track" config item.
381         * CoA and Disconnect packets can now be sent to a specific
382           home server by setting control:Packet-Dst-IP-Address and
383           (optionally) control:Packet-Dst-Port.
384         * Allow CoA and Disconnect packets to be read from the
385           detail file.
386         * Allow LDAP to specify arbitrary attributes for dynamic
387           clients.
388         * Convert all unused attributes in the control: list to config
389           pairs in dynamic clients. This allows arbitrary client
390           attributes to be set for dynamic clients too.
391         * rlm_couchbase now supports bulk loading of clients on startup
392           in a similar way to rlm_ldap. Contributed by Aaron Hurt.
393         * Allow one level of backslashes (finally).  See radiusd.conf,
394           "correct_escapes" setting.
395         * Rename dictionary.redback to dictionary.ericsson.ab
396         * Add --disable-openssl-version-check option to configure.
397           So vendors can disable the check.  Patch from
398           Nikolai Kondrashov.
399         * Do context-specific indenting in debug messages.  This makes
400           the debug output easier to read.
401         * Make configuration a separate RPM, just like for Debian.
402         * better decoding of unknown VSAs
403         * When supported by OpenSSL, allow TLS 1.1 and TLS 1.2
404           in EAP methods.
405         * Allow multiple new connections to be spawned simultaneously
406           in the connection pool, to cope with spikes in traffic.
407         * Document retry_delay in connection pools.
408         * Allow checksimul in rlm_couchbase.
409         * Use kqueue on systems which support it.  This allows for
410           better scaling when using many sockets.
411
412         Bug fixes
413         * Parse list qualifiers in generic LDAP 'valuepair_attribute'
414           attributes correctly.
415         * Fix issue where prefix length would be ignored for dynamic
416           or static clients if the address matched INADDR_ANY
417           (0.0.0.0).
418         * Allow null user object filter in rlm_ldap, it's valid to
419           specify a complete object DN and use the base scope.
420         * Don't SEGV if a received attribute value in a JSON structure
421           is null, or a value can't be stringified.
422         * Don't assert if the server returns a JSON content-type and
423           the server hasn't been built with support for JSON.
424           Closes #808.
425         * Set CURLOPT_NOSIGNAL to prevent curl from handling signals
426           and causing a longjmp error when the server was running with
427           threads.
428         * Allow tabs after attribute names in the "users" file.
429           Closes #796.
430         * Free unknown DICT_ATTRs.  Closes #795
431         * Handle unknown attributes in the conditions and "update"
432           sections.  e.g. Attr-1.2.3.4 = foo.
433         * Use correct array size for MS-CHAP new password.
434         * In rlm_rest, check for older versions of libraries at start
435           time, rather than when a packet comes in.
436         * Don't call detach on parse error in rlm_perl.  Closes #802.
437         * Integer fixes for big-endian systems.  Closes #803.
438         * Don't optimize %{Packet-Src-IP-Address}.  Closes #804.
439         * dhcpclient loads dictionaries correclty.  Closes #805.
440         * double quotes are no longer escaped in single-quoted
441           strings.  e.g. 'foo "hello" bar'.
442         * Fixes for proxying to virtual servers broke the detail file
443           reader.  Now they both work.
444         * Typos and fixes from Nikolai Kondrashov.
445         * Fixes to OpenSSL version checks, for cross-platform issues.
446         * cppcheck fixes from Herwin Weststrate.
447         * Fix build for OSX Yosemite
448         * Merge DHCP sub-options.  Closes #812.
449         * Fix decoding of Starent attributes.
450         * When a module asks for a connection, don't return idle
451           connections.
452         * LDAP connection timeouts will now retry, instead of failing.
453         * Prevent race conditions between fork and wait for child.
454           Patch from James Rouzier.
455         * Fix triggers for connection pools.  Patches from
456           Nikolai Kondrashov.
457         * Fix SEGV when comparing non string type check items.
458         * Build with newer versions of libmysqlclient.
459         * make the %{escape:} and %{unescape:} xlat functions UTF8
460           safe.
461         * Don't escape UTF8 chars in SQL query strings.
462         * Fix issue in cached LDAP group comparisons, which caused
463           checks to sometimes fail.
464         * Fix use after free issue in unlang switch evaluation.
465         * Respect operators in rlm_cache when merging into the current
466           request.
467         * Update Cache-Entry-Hits each time rlm_cache is called.
468         * Produce WARN messages if SQL queries are empty strings.
469         * Fix invalid assertion when proxying CoA requests.
470         * Allow empty strings in "case" statements.  Closes #836.
471         * Normalize escaping for string expansions.  i.e. don't do
472           double escaping in rare situations.
473         * Normalize LDAP escaping.  LDAP servers have multiple ways
474           to escape things, so the data has to be normalized before
475           we can compare two LDAP DNs.
476         * Don't go to high debug level if we're proxying inner EAP
477           as EAP.  Closes #839.
478         * Fix rlm_rest state handling.  Closes #835.
479
480 FreeRADIUS 3.0.4 Wed 10 Sep 2014 12:00:00 EDT urgency=medium
481         Feature improvements
482         * Home server "response_window" can now take fractions of a
483           second.  See proxy.conf.
484         * radmin now supports "show module status", as thee counterpart
485           to "set module status"
486         * Added dictionary ericsson.packet.ccore.networks, bluecoat,
487           citrix, compatible, riverbed, ruckus, and RFC 7268.
488         * Add %{tag:} expansion to get the tag value of an attribute.
489         * Report 'application_name' in connections to PostgreSQL servers.
490           FreeRADIUS connections will now appear as
491           'FreeRADIUS <version> - <name>' in pg_stat_activity.
492         * All config item fields are now type checked at compile time
493           to prevent issues similar to #634 occuring again.
494         * Modify pairparsevalue to deal with embedded NULLs better,
495           and use the binary versions of attribute values in rlm_ldap.
496         * "ipaddr" will now use v6 if no v4 address is present.  You should
497           use "ipv4addr" or "ipv6addr" to force v4/v6 addresses.
498         * The above applies to "listen", "home_server", and "client" sections.
499         * "client" sections will allow "ipaddr = 192.192.0/24".  The old
500           "netmask" is still accepted, but the new format is preferred.
501         * Allow custom HTTP headers to be set for rlm_rest requests using
502           control:REST-HTTP-Header (attributes consumed after use).
503         * Extend format of %{rest:} expansion to allow HTTP method and POST
504           data to be specified
505           e.g. %{rest:POST http://example.org/api foo=bar&baz=boink}.
506         * Add %{hmacsha1:&data &key} and %{hmacmd5:&data &key} expansions
507           for signing data in requests.
508         * rlm_cache now consumes its control attributes to make runtime
509           configuration easier.
510         * Add control:Cache-Read-Only which when set to 'yes' will make the
511           cache module merge existing cache data, but not create new entries.
512         * Add %{unescape:} and %{urlunquote:} expansions to reverse escaping
513           and urlquoting.
514         * Add support for aliases in rlm_ldap.
515         * Add support for connection pool sharing to all modules that use
516           the connection pool (pool = <instance>).
517         * "tls" sections now have a "psk_query" configuration item, for dynamic
518           queries to discover a key from a PSK identity.
519         * Preliminary support for EAP channel bindings.
520         * Foundational work for dynamic home servers.  They do not yet work,
521           but this is now only a matter of updating the "realm" module in
522           a future release.
523         * Support &attr[*] syntax to copy all instances of an attribute when
524           used with the += operator in an update section. May be qualified with
525           a tag.
526         * The logintime and expiration modules can now be listed in the
527           post-auth section.  This makes some configurations simpler.
528         * Allow comparison of integer attributes of different sizes,
529           without requiring a cast.
530         * rlm_sqlippool is now IPV6 capable.  Set "ipv6 = yes" to get
531           Framed-IPv6-Prefix returned.  The SQL queries have NOT been updated.
532           Please submit patches.
533         * The debian build now checks for the OpenSSL package with the heartbleed
534           fix, and if found, sets: allow_vulnerable_openssl = 'CVE-2014-0160'
535         * allow bootstrap from multiple files in sqlite driver.
536
537         Bug fixes
538         * make case-insensitive regular expressions work again, and add tests
539           for them.
540         * A few more talloc parenting issues
541         * Fix delayed proxy reply handling.  Closes #637
542         * Fix OpenSSL initialization order when using
543           RADIUS/TLS.  Fixes #646
544         * Don't double-quote strings in debugging messages
545         * Fix foreach / break.  Fixes #639
546         * Chargeable-User-Identifier, ADSL-Agent-Circuit-Id and
547           ADSL-Agent-Remote-Id should be "octets" types in the default
548           dictionary.
549         * Fix typo in mainconfig.  Fixes #634
550         * More rlm_perl fixes.  Fixes #635
551         * Free OpenSSL memory on clean exit.
552         * Fix <attr>[0] !* ANY - Was removing all instances of <attr>
553         * Fix case where multiple attributes were returned from RHS of
554           mapping, as with rlm_ldap. Fixes #652
555         * Fix corner case in cursor where using fr_cursor_next_by_da
556           after calling fr_cursor_remove may of resulted in a read of
557           uninitialised memory.
558         * Don't SEGV if all connections to a database server go away.
559           Fixes #651.
560         * Fix issue where <attr> -= <value> was not removing tagged
561           instances of <attr> equal to <value> (only untagged).
562         * Fix issue where tag values were not being set on attributes
563           created with unlang/ldap update blocks.
564         * Create rlm_sqlcounter attributes as integer64 types instead
565           of integer types, so large counter values can be specified.
566         * Fix issue where specifying a dynamic client IP addresss using
567           FreeRADIUS-Client-IPv6-Prefix or FreeRADIUS-Client-IP-Prefix
568           may have caused a validation error.
569         * Don't print two "&" for messages about attribute or list
570           references in debug output.
571         * Fix urlquote and escape to encode Unicode characters correctly.
572         * Fix redundant-load-balance blocks to try other modules in
573           the group if one fails.
574         * Fix issue with rlm_pap password normalisation where
575           'known good' password strings stored in octets type attributes,
576           would be sometimes misnormalised as base64.
577         * Don't stop processing DHCP options if we find a 0x00 padding
578           option.
579         * Fix issue where modifying the value of an attribute created
580           from a template with a literal value, may have resulted in the
581           template literal being freed.
582         * Fix parenting issues in tls code which may have resulted in
583           memory corruption and crashes.
584         * Fix issue in radsniff where writing to PCAP files and using
585           -R response filters, where the requests would still be written
586           to the PCAP for non matching responses.
587         * Define __APPLE_USE_RFC_2292 so that the server builds with IPv6
588           support on OSX.
589         * Fix LDAP group lookups for named rlm_ldap instances.
590           Note that attribute references should be used when
591           checking LDAP-Group attributes. e.g. if (&LDAP-Group == 'foo').
592         * Delayed attribute references can now be used in unlang
593           existence checks.  i.e. if (&Attribute-Name) { ... }
594         * Fix issues in EAP-PWD.  CVE-2014-4731, CVE-2014-4732, and
595           CVE-2014-4733.  There is no external authentication bypass.
596         * Fix a number of uses of the talloc parent/child reference.
597         * Release connection used for reading bulk clients in rlm_ldap.
598         * rlm_rest is now fail-safe if it's used without any configuration
599         * Pull in build fixes for FreeBSD from ports.
600         * Fix error in sqlite postauth query
601         * Evaluate argument to "switch" statements once, instead of for each
602           "case" statement.
603         * Define sig_t on systems without it.  Closes #765.
604         * Fix boundary issue with rlm_rest.  Closes #768
605         * Optimize "%{Attribute-Name}" in comparisons only if the dictionary
606           types match.
607         * Don't do chmod() in rad_mkdir() if the directory already exists.
608           We might not have permission to change it.
609         * Use getpwnam_r() and getgrnam_r() on systems which support it.
610           Closes #775.
611         * Clients loaded from SQL are now tied to the "listen" section
612           of a virtual server, instead of being global.
613         * Check for -lpcre.  The system might have pcre.h without -lpcre.
614         * When proxying to a virtual server, use the proxy_reply instead
615           of ignoring it.
616         * Fixed typos in DHCP SQL IPPool.
617         * Fix crash when passing multiple arguments to Perl xlat.
618
619 FreeRADIUS 3.0.3 Mon 12 May 2014 15:30:00 EDT urgency=medium
620         Feature improvements
621         * Everything now builds with no warnings from the C compiler,
622           clang static analyzer, or cppcheck.
623         * rlm_ldap now supports defining the LDAP attribute name via
624           backticked expansion (i.e. shell command) in
625           RADIUS <-> LDAP mappings.
626         * rlm_ldap now supports older style generic attributes.
627         * dynamic expansions (e.g. "%{expr:1 + 2}" are now parsed
628           when the server starts.  Syntax errors in the strings
629           are caught, and a descriptive error is printed.
630         * Static regular expressions (e.g. /a*b/) are now parsed
631           when the server starts.  Syntax errors in the strings
632           are caught, and a descriptive error is printed.
633         * dynamic expansions are cached after being parsed.  They are
634           no longer re-parsed at run-time for every request.
635         * regular expressions are now parsed and cached when the server
636           starts.
637         * Added the %{rest:} expansion to rlm_rest, which will send
638           a GET request to the URL passed as the format string.
639           Any body text will be written to the expansion buffer.
640         * rlm_rest now available as a debian package.
641         * When an 'if' condition statically evaluates to true/false,
642           unlang does more static optimization.  For examples, see
643           src/tests/keywords/if-skip
644         * All modules are marked as safe for '-C', which lets the
645           dynamic expansion checks work in more situations.
646         * Added 'none' and 'custom' rlm_rest body types. 'custom'
647           allows sending of arbitrary expanded text and content-type
648           headers.
649         * Added "config" section to Perl.  See mods-available/perl
650         * Added '%v' which expands to the server version - Patch
651           from Alan Buxey.
652         * more mis-matched casts are caught in "if" conditions,
653           and descriptive errors are printed.
654         * Support basic response validation in radclient. This allows
655           administrators to write local test cases for their
656           site-specific configurations.
657         * Removed radconf2xml and radmin "show client config" and
658           "show home_server config".
659         * Forbid running with vulnerable versions of OpenSSL.
660           See "allow_vulnerable_openssl" in the "security"
661           subsection of "radiusd.conf"
662         * Catch underlying "heartbleed" problem, so that nothing bad
663           happens even when using a vulnerable version of OpenSSL.
664         * Add locking API for sql_null, linelog, and detail modules,
665           which should improve performance and work around issues
666           on platforms with bad file locking.
667         * Allow DHCP NAKs to be delayed, via setting
668           reply:FreeRADIUS-Response-Delay = 1
669         * Allow tag and array references anywhere attributes
670           are allowed in "unlang".
671         * many enhancements to radsniff, including output
672           to collectd, ipv6 support and packet loss statistics.
673         * Many dictionary updates (ZTE, Brocade, Motorola).
674         * rlm_yubikey now automatically splits passwords from OTP
675           strings.
676         * The detail file reader is now threaded by default.
677           This should improve performance reading the files.
678
679         Bug fixes
680         * Fix xlat expression %{attribute[n]} so that it actually
681           returns the n'th attribute instead of the first one.
682         * Don't parse string on RHS of update {} when using unary
683           operators (!*).  The RHS should always be ignored.
684         * Check for more optional functions in json-c so we can
685           Build with libjson0, which is the name of the json-c package
686           on debian/ubuntu.
687         * Fix issue in radmin where the main dictionaries would
688           not be loaded which, depending on the configuration, may
689           have caused validation errors.
690         * Fix handling of "%{reply:3GPP-*}"
691         * Fix rlm_perl garbage attributes
692         * Fix oracle SQL queries, which amongst other things still
693           used the old expansion format, which is no longer
694           supported/parsed.
695         * Truncate long format strings and error markers instead of
696           omitting them.
697         * Fix multiple attribute parsing in rlm_rest JSON.
698         * Don't crash in rlm_rest if connect_uri is commented out
699           in the configuration.
700         * Don't double-escape strings to / from Perl.  You may need
701           to double-check your Perl scripts if they use "\" characters.
702           See mods-available/perl for documentation.
703         * Don't re-run "authorize" if a home server fails to respond.
704         * Don't append "0x" to hex output of octets types, for xlat
705           expansions.  This is the same as v2, and makes it easier
706           to concatenate multiple attributes of type "octets"
707         * FreeBSD fixes for execinfo linking.
708         * Make some of the module configurations more consistent.
709         * Fix corner cases where STDOUT wouldn't be closed in
710           daemon mode.
711         * Re-enable "update coa" and originating CoA requests.
712         * Prevent multiple threads writing to the sql query logs.
713         * Fix zombie period calculation.  Closes #579
714         * Properly parent VPs for talloc, when moving them in map2request.
715         * Various fixes for talloc parent / child relationships
716         * Allow rlm_counter to support VSAs.
717         * Normalize return codes for many modules. "do nothing" is noop,
718           not "ok".
719         * Run Post-Proxy-Type Fail.  Closes #576
720         * Fix DHCP destination port for replies to relays.  Closes #591
721         * Do-Not-Respond policy works again  Closes #593
722         * Proxy-To-Virtual-Server works again.  Closes #596
723         * Build fixes for ancient systems.  Closes #607, #608, #609.
724         * %{Module-Return-Code} works again.  Closes #610.
725         * Don't increment statistics for Status-Server responses.
726           Closes #612.
727         * A duplicate request isn't a duplicate if the original one
728           is marked "done".  This should lower retransmissions from
729           clients.
730         * Fix multiple regular expression and glob memory leaks.
731         * Don't allocate any memory in fr_fault() as it can cause malloc
732           to deadlock.
733         * Temporarily set dumpable flag before calling system in fr_fault()
734           else the debugger may not be able to attach.
735         * Set nonblock on all TCP client sockets.
736         * Fix minor buffer overrun in mschapv2 where some attribute strings
737           were not correctly \0 terminated.
738         * Fix crash on authentication failure with MIT kerberos.
739         * Fix code so that octal escape sequences aren't prematurely unescaped
740           in rlm_sql, radclient, preprocess, and other places. This may
741           require configuration changes, as these sequences will no longer
742           need double escaping (\\) of the backslash.
743         * The connection pools no longer have one connection used twice
744           in certain rare conditions.
745         * Use self pipes for internal signals.  The code was there, but was
746           unused.
747         * Don't crash if there are outstanding EAP sessions and were told to
748           exit gracefully.
749         * Fix typo in dictionary.rfc4072
750
751 FreeRADIUS 3.0.2 Fri 21 Mar 2014 08:30:00 EDT urgency=medium
752         Feature improvements
753         * secret keys and LDAP / SQL passwords are now printed as
754           '<<< secret >>>' in debugging mode.  Use -Xx to see the
755           actual passwords.
756         * Print out more information about passwords in -Xx,
757           including hashes, comparisons, etc.
758         * Allow cast (and implicit conversion) of integers to IPv4 addresses
759         * More xlats allow attribute references.  This means they can
760           operate on binary data.  e.g. expr, base64, md5, sha1.
761         * Added more tests.
762         * The dictionaries are now auto-loaded.  raddb/dictionary
763           should no longer have $INCLUDE ${prefix}/share/dictionary
764         * A "panic_action" can be set to have the server dump a gdb
765           log on SEGV or other fatal error.  See radiusd.conf
766         * Add support for SHA-224, SHA-256, SHA-384, SHA-512 to rlm_pap.
767         * Add "%{sha256:}" and "%{sha512:}" xlat functions.
768         * Cache CUI in EAP session resumption.
769         * templates can now have sub-sections, which will be included
770           in the section referencing the template.
771         * Update more dictionaries.
772         * Added more instances of the "always" module, for all return
773           codes.
774         * Suppress broken NASes when proxying.  Retransmits which occur
775           more than once per second are rate-limited to once per second.
776         * Allow '&' in more xlat expansions.
777         * Update PostgreSQL schema and queries to record last updated
778           time, and accounting interim.
779         * Optimize more "if" conditions when the server loads.  This will
780           avoid work at run time.  e.g. ("foo" == "bar") --> FALSE.
781         * Allow removal of all attributes within a list with !* operator.
782         * Allow list to list copies with request qualifiers (outer.).
783         * Add support for ipv4 prefixes and ipv6 addresses and prefixes to
784           %{integer:}.
785         * allow radmin command "set module status <module> <code>"
786           which can be used to forcibly enable/disable modules.
787         * pap module now assumes Cleartext-Password if Password-With-Header
788           doesn't have a {...} header.
789         * Added "unpack" module.  It can unpack binary data from horrible
790           VSA formats.  See raddb/mods-available/unpack
791         * Added example IP Pool for DHCP, using sqlite.  From Matthew Newton
792           See raddb/mods-config/sql/ippool-dhcp/
793
794         Bug fixes
795         * Fix SQL groups.
796         * Fix operation of fr_strerror() with RE*() macros.
797         * Don't assert if the connection we're trying to reconnect
798           is not in_use.
799         * Fix %{mschap:User-Name} xlat.
800         * Allow comparisons of signed integers and of ethernet addresses.
801         * Fix parsing of text-based ascend binary filters.
802         * Fix a few minor Coverity and clang analyzer issues.
803         * Log WARNING and ERROR prefixes only once, not twice.
804         * Fix attribute truncation seen in Perl and other places.
805         * Use correct port when DHCP relaying.
806         * Fix behaviour on FreeBSD where sending packets from an interface
807           bound to an IP address would fail when the server was built with
808           udpfromto.
809         * Don't abort() when freeing home servers on exit.
810         * Fix edge case in pairmove() when some attributes could be over-
811           written.
812         * Do checks for individual sqlite v2 functions so rlm_sqlite builds
813           correctly with more versions of the library.
814         * In heimdal kerberos, create MEMORY ccaches on a per context basis.
815           This prevents issues with the root ccache being used.
816         * Fix corner case with proxying, where home server goes down.
817         * Rate-limit "max_requests" complaint.  We don't want to fill the
818           logs when something goes wrong.
819         * Use /dev/urandom for raddb/certs/random, if it exists.
820         * Issue WARNING that old-style clients should no longer be used.
821         * Auto-set secret to "radsec" for tcp+tls home servers.
822         * Fix double free in home_server_add when there is a parse error
823           on startup.
824         * rlm_unix checks if the dictionaries are broken, instead of crashing
825         * Fix potential memory corruption when normalising salted password
826           hashes from hex, where the combined hash and salt was > 64 bytes.
827         * Register sqlcounter attributes correctly, and other issues with it
828         * treat 127.0.0.1/32 as being identical to 127.0.0.1
829         * Don't mangle error output of SQL drivers like PostgreSQL
830         * Fix usage of "tls = ${tls}".  It could previously cause problems
831           when the reference was used multiple times.
832         * Fix TLS session leak for incoming sockets.
833         * Try harder to clean up memory on exit when using "-mM"
834         * Fix memory leak when home server is down for RadSec connections
835         * rate-limit outgoing connection attempts when the home server
836           is down.  It will retry no more than once per second.
837         * When parsing ipv6 address prefixes, always mask off the host
838           portion.
839         * Fix rlm_counter so that it does not create two reply
840           attributes.
841         * Fix issues with DHCP Sub-TLVs where the value of the first
842           Sub-TLV would appear corrupted, and subsequent TLVs would
843           not appear in debug output.
844         * Initialize scope in IP address parsing
845         * Prevent vendor attributes and RFC space attributes from clashing
846           in rlm_attr_filter.
847         * Set source IP address for DHCP packets from DHCP-Server-IP-Address,
848           or DHCP-DHCP-Server-Identifier, if we're unable to otherwise
849           determine the source IP.
850         * Fix POST attribute parsing in rlm_rest.
851         * Fix JSON attribute parsing in rlm_rest.
852         * Don't append trailing & to POST options in rlm_rest (minor).
853         * Process HTTP 100 Continue messages correctly in rlm_rest
854         * Fix generation of long > 512 byte POST payloads, where attribute
855           values on the chunk boundary may have been omitted in rlm_rest.
856         * Remove duplicate escape sequence parsing in rlm_sqlippool and
857           rlm_sqlcounter which caused issues with escaping %. Escape
858           sequence parsing is now handled purely by the xlat functions.
859         * Ensure %% is treated as a string literal, and so not passed to any
860           xlat escape functions for processing.
861         * Correct calculation of Message-Authenticator
862           for CoA packets.  Closes #556
863
864 FreeRADIUS 3.0.1 Mon 13 Jan 2014 14:30:00 EDT urgency=medium
865         Feature improvements
866         * Add "timeout" to exec, and "ntlm_auth_timeout" to mschap.
867           So that run-away child processes are caught earlier.
868         * Allow TLS clients to use "proto = tls", in which case
869           TLS is required.  The shared secret is then set to "radsec".
870         * More documentation in the tls virtual server.
871         * Add "date" module for date formatting.
872           See raddb/mods-available/date.
873         * Added unit test suite for internal server functionality
874         * When loading "update" sections, check if the RHS is a literal
875           value.  If so, syntax check it immediately.
876         * Update LDAP module documentation and functionality.
877           The generic attribute can now update lists.
878         * Updated dictionary.extreme.
879         * Update sqlippool to do clears as a separate transaction,
880           and at most once per second.  This should help MySQL.
881         * Respect control:Response-Packet-Type for all types of
882           requests.
883         * Add support for SSL encryption to the MySQL driver.
884         * Allow arbitrary connection parameters to be used with the
885           PostgreSQL driver.
886         * Changes to the OpenLDAP schema to fully expose functionality
887           of the new LDAP module.
888         * Update debian packaging to include a freeradius-config
889           package. This package may be provided as a site local
890           package to avoid fighting with the preinstalled config
891           files.
892
893         Bug fixes
894         * Use correct field for ARP setting in DHCP.
895         * Fix crash on debug condition (#454).
896         * Fix a number of minor issues caught by the clang
897           analyzer.
898         * Set WARNING messages to yellow instead of normal text.
899         * Correct debug colorise logic.  Patch from Phil Mayers.
900         * Encode attributes of type "ethernet".  No one uses them,
901           but it makes sense.
902         * Work around regex initialization issues.
903         * Fix build when linking against OpenSSL.
904         * Print IDs as positive numbers, which helps for large DHCP
905           XIDs.
906         * Fix issue with sql_ippool.
907         * sqlcounter now uses 64-bit counters, to deal with 4G overflow.
908         * Fix issues with DHCP subsystem.
909         * Don't build / install disabled modules, or their config
910           files.
911         * Fix build for OSX Mavericks, which hid the header files
912           in a magical place.
913         * Fix LEAP buffer issue.  You should still avoid LEAP.
914         * Mark "unknown" WiMAX attributes as being WiMAX.
915         * Fix typo in packet decoder for fragmented extended attrs
916         * RPM spec fixes.
917         * Fix rlm_perl build issues when not using threads.
918         * Enable %{Response-Packet-Type} again.
919         * Update configuration file parser to handle "bool"
920           consistently.
921         * Update declarations of global boolean variables to use
922           "bool" consistently. This fixes an issue where some
923           modules were instantiated in "config check" mode and
924           did not work correctly.
925         * Make more messages debug instead of info, to avoid
926           polluting the logs with messages that can't be fixed.
927         * Set operator in internal unlang code to suppress spurious
928           warning messages.
929         * Fix debian packaging.
930         * Added "status" to Debian init script.
931         * Fix "update outer.request" to update the outer request.
932         * Don't print TLS debugging messages when not in debug mode.
933         * Correctly manage counters for "limit" sections of TCP / TLS
934           "listen" sockets.
935         * Fix libldap debug output.
936         * Fix rlm_ldap tls functionality.
937         * Initialise OpenSSL globals early to avoid issues with the
938           PostgreSQL library.
939         * Fix typo in sqlcounter expansion code.  Fixes #463
940         * Overwrite previous instances of SQL-User-Name when adding
941           it to the request.
942         * Work around bugs in both MIT and heimdal versions of
943           krb5_copy_context(), which caused segfaults in
944           multithreaded mode.
945         * Provide meaningful error messages if Heimdal krb5 is used.
946         * Fix attribute supression in rlm_detail.
947         * Exit with error code if child fails to complete server
948           initialisation after forking.  This allows init scripts to
949           correctly report whether the server started ok.
950
951 FreeRADIUS 3.0.0 Mon  7 Oct 2013 15:48:14 EDT urgency=medium
952         Feature improvements
953         * Documentation for upgrading from 2.x is in raddb/README.rst
954           Please follow it.  It will make the upgrade easier.
955         * Moved configuration entries in radiusd.conf to make more sense.
956         * Added the "integer64" and "ipv4prefix" data types.
957         * Added RADIUS over TLS (i.e. RadSec). See raddb/sites-available/tls
958         * Updated internal API to support new attributes and formats
959         * Added code to send SNMP Traps.  See raddb/trigger.conf.
960         * Added preliminary support for Apple's Grand Central Dispatch
961         * Added provisions for raddb/dictionary.local, for local changes.
962           See raddb/dictionary for more details.
963         * Added packet/s tracking. See max_pps in the "listen" section.
964         * The %{} expansions and "unlang" conditions are now parsed at server
965           start. Descriptive errors are produced for syntax and format errors.
966         * Casting is now supported for "unlang" comparisons.  See "man unlang"
967           e.g. <ipaddr>127.0.0.1 == Framed-IP-Address.
968         * Direct comparison of attribute references is now supported.
969           e.g. &Foo == &Bar.  This avoids stringification of the attributes.
970         * Direct assignment of attributes is now supported.
971           e.g. Foo := &Bar.  It also works for "octets" data types.
972         * Comparisons of IPv4 and IPv6 prefixes are now supported.
973           The "<" operator means "within the prefix" for comparisons.
974         * New sha1 xlat expansion (thanks to Alan Buxey)
975         * Colourised log messages when logging to stdout.  Look for yellow
976           warnings and red errors.  Doing this will save you a LOT of grief.
977         * If the PCRE library is available, use it (insted of the POSIX
978           functions) to process regular expressions (thanks to Phil Mayers).
979         * -xv now displays all the features the server was built with, and
980           the versions of the core libraries (libtalloc, libssl).
981
982         Module Changes
983         * Moved raddb/modules/ to raddb/mods-available/, and raddb/mods-enabled/,
984           following the examples of other projects.
985         * Additional files for each module are now in raddb/mods-config/.
986           See raddb/mods-config/README.rst for documentation.
987         * Moved "users" to raddb/mods-config/files/authorize
988         * Moved "hints" and "huntgroups" to raddb/mods-config/preprocess/
989         * Moved eap.conf to mods-available/eap
990         * Moved sql.conf to mods-available/sql
991         * Moved TLS configuration for EAP into a common subsection.
992           See raddb/mods-available/eap, "tls-config" section.
993         * Added for MS-CHAP Change Password from Phil Mayers.
994           See raddb/mods-available/mschap, "passchange" subsection.
995         * Added EAP-PWD implementation from Dan Harkins
996         * Added connection pools for modules. This unifies connection
997           management which was previously different for different modules.
998 l       * SQL now uses the connection pool.  See mods-available/sql
999         * SQL now supports arbitrary Acct-Status-Types.
1000           These changes are not compatible with 2.x.
1001         * SQL now has full support for SQLite.  See raddb/sql/main/sqlite/
1002         * SQLite supports auto-creation of new databases on server startup for
1003           bootstrapping purposes.
1004         * LDAP now uses the connection pool.  The LDAP module has been
1005           completely re-written for performance and simplicity.
1006         * LDAP now caches groups.  This makes multiple group checks MUCH
1007           faster.
1008         * Removed all limitations on 253 octet attributes.  RFC 6929 allows
1009           for attributes up to 4K in length.
1010         * New rlm_idn module providing an expansion for performing IDNA encoding
1011         of internationalized domain names.  Thanks to 'skids'.
1012         * New rlm_yubikey module to validate yubikey OTP tokens.
1013           See raddb/modules/yubikey
1014
1015         Bug fixes
1016         * All known bug fixes from 2.2.x are included.
1017         * Removed "addport" functionality.
1018         * Removed many unused or duplicate modules.  See raddb/README.rst.
1019
1020         Internal / API changes:
1021         * All traces of the old build system have been removed.
1022           The new build system is faster and simpler.
1023         * clang is fully supported.
1024         * We now use "talloc" for memory management.  A number of new
1025           features required this change.  Thanks to the Samba people!
1026         * Many internal APIs have been updated to use talloc.
1027         * New API for iterating over VALUE_PAIRs.  This is in preparation
1028           for attributes, in version 3.1.
1029         * No new code should directly modify any field of a VALUE_PAIR.
1030         * VALUE_PAIRs contain pointers to DICT_ATTR instead of containing
1031           attribute and vendor fields.  This will allow nested attributes.
1032         * Some protocol specific code has been moved out into proto_* modules.
1033           More will come in subsequent versions.  See proto_dhcp and proto_vmps.
1034         * Standardised internal logging macros.  radlog() should not be used.
1035           See src/include/log.h
1036         * Use OpenSSL hashing functions when available.
1037         * The server now builds with no warnings on most platforms.
1038         * New RADIUS encoder/decoder, to support new formats.
1039         * Added RFC 6929 "extended attributes", via the new encoder/decoder.
1040         * Added full WiMAX support, via the new encoder/decoder.  The old
1041           code could not handle some unusual corner cases.