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