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