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