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