Document more changes
[freeradius.git] / doc / ChangeLog
1 FreeRADIUS 2.2.0 Fri 31 Dec 2011 21:00:00 CEST, urgency=medium
2         Feature improvements
3         * 100% configuration file compatible with 2.1.x.
4           The only fix needed is to disallow "hashsize=0" for rlm_passwd
5         * Update Aruba, Alcatel Lucent, APC, BT, PaloAlto, Pureware, 
6           Redback, and Mikrotik dictionaries
7         * Switch to using SHA1 for certificate digests instead of MD5.
8           See raddb/certs/*.cnf
9         * Added copyright statements to the dictionaries, so that we know
10           when people are using them.
11         * Better documentation for radrelay and detail file writer.
12           See raddb/modules/radrelay and raddb/radrelay.conf
13         * Added TLS-Cert-Subject-Alt-Name-Email from patch by Luke Howard
14         * Added -F <file> to radwho
15         * Added query timeouts to MySQL driver.  Patch from Brian De Wolf.
16         * Add /etc/default/freeradius to debian package.
17           Patch from Matthew Newton
18         * Finalize DHCP and DHCP relay code.  It should now work everywhere.
19           See raddb/sites-available/dhcp, src_ipaddr and src_interface.
20         * DHCP capabilitiies are now compiled in by default.
21           It runs as a DHCP server ONLY when manually enabled.
22         * Added one letter expansions: %G - request minute and %I request
23           ID.
24         * Added script to convert ISC DHCP lease files to SQL pools.
25           See scripts/isc2ippool.pl
26         * Added rlm_cache to cache arbitrary attributes.
27         * Added max_use to rlm_ldap to force connection to be re-established
28           after a given number of queries.
29         * Added configtest option to Debian init scripts, and automatic
30           config test on restart.
31         * Added cache config item to rlm_krb5. When set to "no" ticket
32           caching is disabled which may increase performance.
33
34         Bug fixes
35         * Fix typo in detail file writer, to skip writing if the packet
36           was read from this detail file.
37         * Free cached replies when closing resumed SSL sessions.
38         * Fix a number of issues found by Coverity.
39         * Fix memory leak and race condition in the EAP-TLS session cache.
40           Thanks to Phil Mayers for tracking down OpenSSL APIs.
41         * Restrict ATTRIBUTE names to character sets that make sense.
42         * Fix EAP-TLS session Id length so that OpenSSL doesn't get
43           excited.
44         * Fix SQL IPPool logic for non-timer attributes.  Closes bug #181
45         * Change some informational messages to DEBUG rather than error.
46         * Portability fixes for FreeBSD.  Closes bug #177
47         * A much better fix for the _lt__PROGRAM__LTX_preloaded_symbols
48           nonsense.
49         * Safely handle extremely long lines in conf file variable expansion
50         * Fix for Debian bug #606450
51         * Mutex lock around rlm_perl Clone routines. Patch from Eike Dehling
52         * The passwd module no longer permits "hashsize = 0".  Setting that
53           is pointless for a host of reasons.  It will also break the server.
54         * Fix proxied inner-tunnel packets sometimes having zero authentication
55           vector.  Found by Brian Julin.
56         * Added $(EXEEXT) to Makefiles for portability.  Closes bug #188.
57         * Fix minor build issue which would cause rlm_eap to be built twice.
58         * When using "status_check=request" for a home server, the username
59           and password must be specified, or the server will not start.
60         * EAP-SIM now calculates keys from the SIM identity, not from the
61           EAP-Identity.  Changing the EAP type via NAK may result in
62           identities changing.  Bug reported by Microsoft EAP team.
63         * Use home server src_ipaddr when sending Status-Server packets
64         * Decrypt encrypted ERX attributes in CoA packets.
65         * Fix registration of internal xlat's so %{mschap:...} doesn't
66           disappear after a HUP.
67         * Can now reference tagged attributes in expansions.
68           e.g. %{Tunnel-Type:1} and %{Tunnel-Type:1[0]} now work.
69         * Correct calculation of Message-Authenticator for CoA and Disconnect
70           replies.  Patch from Jouni Malinen
71         * Install rad_counter, for managing rlm_counter files.
72         * Add unique index constraint to all SQL flavours so that alternate
73           queries work correctly.
74         * The TTLS diameter decoder is now more lenient.  It ignores
75           unknown attributes, instead of rejecting the TTLS session.
76         * Use "globfree" in detail file reader.  Prevents very slow leak.
77           Closes bug #207.
78         * Operator =~ shouldn't copy the attribute, like :=.  It should
79           instead behave more like ==.
80         * Build main Debian package without SQL dependencies
81         * Use max_queue_size in threading code
82         * Update permissions in raddb/sql/postgresql/admin.sql
83         * Added OpenSSL_add_all_algorithms() to fix issues where OpenSSL
84           wouldn't use methods it knew about.
85         * Add more sanity checks in dynamic_clients code so the server won't
86           crash if it attempts to load a badly formated client definition.
87
88 FreeRADIUS 2.1.12 Fri 30 Sept 2011 16:57:38 CEST, urgency=medium
89         Feature improvements
90         * Updates to dictionary.erx, dictionary.siemens, dictionary.starent,
91           dictionary.starent.vsa1, dictionary.zyxel, added dictionary.symbol
92         * Added support for PCRE from Phil Mayers
93         * Configurable file permission in rlm_linelog
94         * Added "relaxed" option to rlm_attr_filter.  This copies attributes
95           if at least one match occurred.
96         * Added documentation on dynamic clients.
97           See raddb/modules/dynamic_clients.
98         * Added support for elliptical curve cryptography.
99           See ecdh_curve in raddb/eap.conf.
100         * Added support for 802.1X MIBs in checkrad
101         * Added support for %{rand:...}, which generates a uniformly
102           distributed number between 0 and the number you specify.
103         * Created "man" pages for all installed commands, and documented
104           options for all commands.  Patch from John Dennis.
105         * Allow radsniff to decode encrypted VSAs and CoA packets.
106           Patch from Bjorn Mork.
107         * Always send Message-Authenticator in radtest. Patch from John Dennis.
108           radclient continues to be more flexible.
109         * Updated Oracle schema and queries
110         * Added SecurID module.  See src/modules/rlm_securid/README
111
112         Bug fixes
113         * Fix memory leak in rlm_detail
114         * Fix "failed to insert event"
115         * Allow virtual servers to be reloaded on HUP.
116           It no longer complains about duplicate virtual servers.
117         * Fix %{string:...} expansion
118         * Fix "server closed socket" loop in radmin
119         * Set ownership of control socket when starting up
120         * Always allow root to connect to control socket, even if
121           "uid" is set.  They're root.  They can already do anything.
122         * Save all attributes in Access-Accept when proxying inner-tunnel
123           EAP-MSCHAPv2
124         * Fixes for DHCP relaying.
125         * Check certificate validity when using OCSP.
126         * Updated Oracle "configure" script
127         * Fixed typos in dictionary.alvarion
128         * WARNING on potential proxy loop.
129         * Be more aggressive about clearing old requests from the
130           internal queue
131         * Don't open network sockets when using -C
132
133 FreeRADIUS 2.1.11 Mon 20 Jun 2011 12:57:38 CEST, urgency=medium
134         Feature improvements
135         * Added doc/rfc/rfc6158.txt: RADIUS Design Guidelines.
136           All vendors need to read it and follow its directions.
137         * Microsoft SoH support for PEAP from Phil Mayers.
138           See doc/SoH.txt
139         * Certificate "bootstrap" script now checks for certificate expiry.
140           See comments in raddb/eap.conf, and then "make_cert_command".
141         * Support for dynamic expansion of EAP-GTC challenges.
142           Patch from Alexander Clouter.
143         * OCSP support from Alex Bergmann.  See raddb/eap.conf, "ocsp"
144           section.
145         * Updated dictionary.huawei, dictionary.3gpp, dictionary.3gpp3.
146         * Added dictionary.eltex, dictionary.motorola, and dictionary.ukerna.
147         * Experimental redis support from Gabriel Blanchard.
148           See raddb/modules/redis and raddb/modules/rediswho
149         * Add "key" to rlm_fastusers.  Closes bug #126.
150         * Added scripts/radtee from original software at
151           http://horde.net/~jwm/software/misc/comparison-tee
152         * Updated radmin "man" page for new commands.
153         * radsniff now prints the hex decoding of the packet (-x -x -x)
154         * mschap module now reloads its configuration on HUP
155         * Added experimental "replicate" module.  See raddb/modules/replicate
156         * Policy "foo" can now refer to module "foo".  This lets you
157           over-ride the behavior of a module.
158         * Policy "foo.authorize" can now over-ride the behavior of module
159           "foo", "authorize" method.
160         * Produce errors in more situations when the configuration files
161           have invalid syntax.
162
163         Bug fixes
164         * Ignore pre/post-proxy sections if proxying is disabled
165         * Add configure checks for pcap_fopen*.
166         * Fix call to otp_write in rlm_otp
167         * Fix issue with Access-Challenge checking from 2.1.10, when the
168           debug flag was set after server startup.  Closes #116 and #117.
169         * Fix typo in zombie period start time.
170         * Fix leak in src/main/valuepair.c.  Patch from James Ballantine.
171         * Allow radtest to use spaces in shared secret.
172           Patch from Cedric Carree.
173         * Remove extra calls to HMAC_CTX_init() in rlm_wimax, fixing leak.
174           Patch from James Ballantine.
175         * Remove MN-FA key generation.  The NAS does this, not AAA.
176           Patch from Ben Weichman.
177         * Include dictionary.mikrotik by default.  Closes bug #121.
178         * Add group membership query to MS-SQL examples.  Closes bug #120.
179         * Don't cast NAS-Port to integer in Postgresql queries.
180           Closes bug #112.
181         * Fixes for libtool and autoconf from Sam Hartman.
182         * radsniff should read the dictionaries in more situations.
183         * Use fnmatch to check for detail file reader==writer.
184           Closes bug #128.
185         * Check for short writes (i.e. disk full) in rlm_detail.
186           Closes bug #130.  Patches and testing from John Morrissey.
187         * Fix typo in src/lib/token.c.  Closes bug #124
188         * Allow workstation trust accounts to use MS-CHAP.
189           Closes bug #123.
190         * Assigning foo=`/bin/echo hello` now produces a syntax error
191           if it is done outside of an "update" section.
192         * Fix "too many open file descriptors" problem when using
193           "verify client" in eap.conf.
194         * Many fixes to dialup_admin for PHP5, by Stefan Winter.
195         * Allow preprocess module to have "hints = " and "huntgroups =",
196           which allows them to be empty or non-existent.
197         * Renamed "php3" files to "php" in dialup_admin/
198         * Produce error when sub-TLVs are used in a dictionary.  They are
199           supported only in the "master" branch, and not in 2.1.x.
200         * Minor fix in dictionary.redback.  Closes bug #138.
201         * Fixed MySQL "NULL" issues in ippool.conf.  Closes bug #129.
202         * Fix to Access-Challenge warning from Ken-ichirou Matsuzawa.
203           Closes bug #118.
204         * DHCP fixes to send unicast packets in more situations.
205         * Fix to udpfromto, to enable it to work on IPv6 networks.
206         * Fixes to the Oracle accounting_onoff_query.
207         * When using both IPv4 and IPv6 home servers, ensure that we use the
208           correct local socket for proxying.  Closes bug #143.
209         * Suppress messages when thread pool is nearly full, all threads
210           are busy, and we can't create new threads.
211         * IPv6 is now enabled for udpfromto.  Closes bug #141
212         * Make sqlippool query buffer the same size as sql module.
213           Closes bug #139.
214         * Make Coa / Disconnect proxying work again.
215         * Configure scripts for rlm_caching from Nathaniel McCallum
216         * src/lib/dhcp.c and src/include/libradius.h are LGPL, not GPL.
217         * Updated password routines to use time-insensitive comparisons.
218           This prevents timing attacks (though none are known).
219         * Allow sqlite module to do normal SELECT queries.
220         * rlm_wimax now has a configure script
221         * Moved Ascend, USR, and Motorola "illegal" dictionaries to separate
222           files.  See share/dictionary for explanations.
223         * Check for duplicate module definitions in the modules{} section,
224           and refuse to start if duplicates are found.
225         * Check for duplicate virtual servers, and refuse to start if
226           duplicates are found.
227         * Don't use udpfromto if source is INADDR_ANY.  Closes bug #148.
228         * Check pre-conditions before running radmin "inject file".
229         * Don't over-ride "no match" with "match" for regexes.
230           Closes bug #152.
231         * Make retry and error message configurable in mschap.
232           See raddb/modules/mschap
233         * Allow EAP-MSCHAPv2 to send error message to client.  This change
234           allows some clients to prompt the user for a new password.
235           See raddb/eap.conf, mschapv2 section, "send_error".
236         * Load the default virtual server before any others.
237           This matches what users expect, and reduces confusion.
238         * Fix configure checks for udpfromto.  Fixes Debian bug #606866
239         * Definitive fix for bug #35, where the server could crash under
240           certain loads.  Changes src/lib/packet.c to use RB trees.
241         * Updated "configure" checks to allow IPv6 udpfromto on Linux.
242         * SQL module now returns NOOP if the accounting start/interim/stop
243           queries don't do anything.
244         * Allow %{outer.control: ... } in string expansions
245         * home_server coa config now matches raddb/proxy.conf
246         * Never send a reply to a DHCP Release.
247
248 FreeRADIUS 2.1.10 Tue 28 Sep 12:00:00 CEST 2010, urgency=medium
249         Feature improvements
250         * Install the "radcrypt" program.
251         * Enable radclient to send requests containing MS-CHAPv1
252           Send packets with: MS-CHAP-Password = "password".  It will
253           be automatically converted to the correct MS-CHAP attributes.
254         * Added "-t" command-line option to radtest.  You can use "-t pap",
255          "-t chap", "-t mschap", or "-t eap-md5".  The default is "-t pap"
256         * Make the "inner-tunnel" virtual server listen on 127.0.0.1:18120
257           This change and the previous one makes PEAP testing much easier.
258         * Added more documentation and examples for the "passwd" module.
259         * Added dictionaries for RFC 5607 and RFC 5904.
260         * Added note in proxy.conf that we recommend setting
261           "require_message_authenticator = yes" for all home servers.
262         * Added example of second "files" configuration, with documentation.
263           This shows how and where to use two instances of a module.
264         * Updated radsniff to have it write pcap files, too.  See '-w'.
265         * Print out large WARNING message if we send an Access-Challenge
266           for EAP, and receive no follow-up messages from the client.
267         * Added Cached-Session-Policy for EAP session resumption.  See
268           raddb/eap.conf.
269         * Added support for TLS-Cert-* attributes. For details, see
270           raddb/sites-available/default, "post-auth" section.
271         * Added sample raddb/modules/{opendirectory,dynamic_clients}
272         * Updated Cisco and Huawei, HP, Redback, and ERX dictionaries.
273         * Added RFCs 5607, 5904, and 5997.
274         * For EAP-TLS, client certificates can now be validated using an
275           external command.  See eap.conf, "validate" subsection of "tls".
276         * Made rlm_pap aware of {nthash} prefix, for compatibility with
277           legacy RADIUS systems.
278         * Add Module-Failure-Message for mschap module (ntlm_auth)
279         * made rlm_sql_sqlite database configurable.  Use "filename"
280           in sql{} section.
281         * Added %{tolower: ...string ... }, which returns the lowercase
282           version of the string.  Also added %{toupper: ... } for uppercase.
283
284         Bug fixes
285         * Fix endless loop when there are multiple sub-options for
286           DHCP option 82.
287         * More debug output when sending / receiving DHCP packets.
288         * EAP-MSCHAPv2 should return the MPPE keys when used outside
289           of a TLS tunnel.  This is needed for IKE.
290         * Added SSL "no ticket" option to prevent SSL from creating sessions
291           without IDs.  We need the IDs, so this option should be set.
292         * Fix proxying of packets from inside a TTLS/PEAP tunnel.
293           Closes bug #25.
294         * Allow IPv6 address attributes to be created from domain names
295           Closes bug #82.
296         * Set the string length to the correct value when parsing double
297           quotes.  Closes bug #88.
298         * No longer look users up in /etc/passwd in the default configuration.
299           This can be reverted by enabling "unix" in the "authorize" section.
300         * More #ifdef's to enable building on systems without certain
301           features.
302         * Fixed SQL-Group comparison to register only if the group
303           query is defined.
304         * Fixed SQL-Group comparison to register <instance>-SQL-Group,
305           just like rlm_ldap.  This lets you have multiple SQL group checks.
306         * Fix scanning of octal numbers in "unlang".  Closes bug #89.
307         * Be less aggressive about freeing "stuck" requests.  Closes bug #35.
308         * Fix example in "originate-coa" to refer to the correct packet.
309         * Change default timeout for dynamic clients to 1 hour, not 1 day.
310         * Allow passwd module to map IP addresses, too.
311         * Allow passwd module to be used for CoA packets
312         * Put boot filename into DHCP header when DHCP-Boot-Filename
313           is specified.
314         * raddb/certs/Makefile no longer has certs depend on index.txt and
315            serial.  Closes bug #64.
316         * Ignore NULL errorcode in PostgreSQL client.  Closes bug #39
317         * Made Exec-Program and Exec-Program-Wait work in accounting
318           section again.  See sites-available/default.
319         * Fix long-standing memory leak in esoteric conditions.  Found
320           by Jerry Nichols.
321         * Added "Password-With-Header == userPassword" to raddb/ldap.attrmap
322           This will automatically convert more passwords.
323         * Updated rlm_pap to decode Password-With-Header, if it was base64
324           encoded, and to treat the contents as potentially binary data.
325         * Fix Novell eDir code to use the right function parameters.
326           Closes bug #86.
327         * Allow spaces to be escaped when executing external programs.
328           Closes bug #93.
329         * Be less restrictive about checking permissions on control socket.
330           If we're root, allow connecting to a non-root socket.
331         * Remove control socket on normal server exit.  If the server isn't
332           running, the control socket should not exist.
333         * Use MS-CHAP-User-Name as Name field from EAP-MSCHAPv2 for MS-CHAP
334           calculations.  It *MAY* be different (upper / lower case) from
335           the User-Name attribute.  Closes bug #17.
336         * If the EAP-TLS methods have problems, more SSL errors are now
337           available in the Module-Failure-Message attribute.
338         * Update Oracle configure scripts.  Closes bug #57.
339         * Added text to DESC fields of doc/examples/openldap.schema
340         * Updated more documentation to use "Restructured Text" format.
341           Thanks to James Lockie.
342         * Fixed typos in raddb/sql/mssql/dialup.conf.  Closes bug #11.
343         * Return error for potential proxy loops when using "-XC"
344         * Produce better error messages when slow databases block
345           the server.
346         * Added notes on DHCP broadcast packets for FreeBSD.
347         * Fixed crash when parsing some date strings.  Closes bug #98
348         * Improperly formatted Attributes are now printed as "Attr-##".
349           If they are not correct, they should not use the dictionary name.
350         * Fix rlm_digest to be check the format of the Digest attributes,
351           and return "noop" rather than "fail" if they're not right.
352         * Enable "digest" in raddb/sites-available/default.  This change
353           enables digest authentication to work "out of the box".
354         * Be less aggressive about marking home servers as zombie.
355           If they are responding to some packets, they are still alive.
356         * Added Packet-Transmit-Counter, to track detail file retransmits.
357           Closes bug #13.
358         * Added configure check for lt_dladvise_init().  If it exists, then
359           using it solves some issues related to libraries loading libraries.
360         * Added indexes to the MySQL IP Pool schema.
361         * Print WARNING message if too many attributes are put into a packet.
362         * Include dhcp test client (not built by default)
363         * Added checks for LDAP constraint violation.  Closes bug #18.
364         * Change default raddebug timeout to 60 seconds.
365         * Made error / warning messages more consistent.
366         * Correct back-slash handling in variable expansion.  Closes bug #46.
367           You SHOULD check your configuration for backslash expansion!
368         * Fix typo in "configure" script (--enable-libltdl-install)
369         * Use local libltdl in more situations.  This helps to avoid
370           compile issues complaining about lt__PROGRAM__LTX_preloaded_symbols.
371         * Fix hang on startup when multiple home servers were defined
372           with "src_ipaddr" field.
373         * Fix 32/64 bit issue in rlm_ldap.  Closes bug #105.
374         * If the first "listen" section defines 127.0.0.1, don't use that
375           as a source IP for proxying.  It won't work.
376         * When Proxy-To-Realm is set to a non-existent realm, the EAP module
377           should handle the request, rather than expecting it to be proxied.
378         * Fix IPv4 issues with udpfromto.  Closes bug #110.
379         * Clean up child processes of raddebug.  Closes bugs #108 and #109
380         * retry OTP if the OTP daemon fails.  Closes bug #58.
381         * Multiple calls to ber_printf seem to work better.  Closes #106.
382         * Fix "unlang" so that "attribute not found" is treated as a "false"
383           comparison, rather than a syntax error in the configuration.
384         * Fix issue with "Group" attribute.
385
386 FreeRADIUS 2.1.9 Mon 24 May 8:00:00 CEST 2010, urgency=medium
387         Feature improvements
388         * Add radmin command "stats detail <file>" to see what
389           is going on inside of a detail file reader.
390         * Added documentation for CoA.  See raddb/sites-available/coa
391         * Add sub-option support for Option 82.  See dictionary.dhcp
392         * Add "server" field to default SQL NAS table, and documented it.
393
394         Bug fixes
395         * Reset "received ping" counter for Status-Server checks.  In some
396           corner cases it was not getting reset.
397         * Handle large VMPS attributes.
398         * Count accounting responses from a home server in SNMP / statistics
399           code.
400         * Set EAP-Session-Resumed = Yes, not "No" when session is resumed.
401         * radmin packet counter statistics are now unsigned, for numbers
402           2^31..2^32.  After that they roll over to zero.
403         * Be more careful about expanding data in PAP and MS-CHAP modules.
404           This prevents login failures when passwords contain '{'.
405         * Clean up zombie children if there were many "exec" modules being
406           run for one packet, all with "wait = no".
407         * re-open log file after HUP.  Closes bug #63.
408         * Fix "no response to proxied packet" complaint for Coa / Disconnect
409           packets.  It shouldn't ignore replies to packets it sent.
410         * Calculate IPv6 netmasks correctly.  Closes bug #69.
411         * Fix SQL module to re-open sockets if they unexpectedly close.
412         * Track scope for IPv6 addresses.  This lets us use link-local
413           addresses properly.  Closes bug #70.
414         * Updated Makefiles to no longer use the shell for recursing into
415           subdirs.  "make -j 2" should now work.
416         * Updated raddb/sql/mysql/ippool.conf to use "= NULL".  Closes
417           bug #75.
418         * Updated Makefiles so that "make reconfig" no longer uses the shell
419           for recursing into subdirs, and re-builds all "configure" files.
420         * Used above method to regenerate all configure scripts.
421           Closes bug #34.
422         * Updated SQL module to allow "server" field of "nas" table
423           to be blank: "".  This means the same as it being NULL.
424         * Fixed regex realm example.  Create Realm attribute with value
425           of realm from User-Name, not from regex.  Closes bug #40.
426         * If processing a DHCP Discover returns "fail / reject", ignore
427           the packet rather than sending a NAK.
428         * Allow '%' to be escaped in sqlcounter module.
429         * Fix typo internal hash table.
430         * For PEAP and TTLS, the tunneled reply is added to the reply,
431           rather than integrated via the operators.  This allows multiple
432           VSAs to be added, where they would previously be discarded.
433         * Make request number unsigned.  This changes nothing other than
434           the debug output when the server receives more than 2^31 packets.
435         * Don't block when reading child output in 'exec wait'.  This means
436           that blocked children get killed, instead of blocking the server.
437         * Enabled building without any proxy functionality
438         * radclient now prefers IPv4, to match the default server config.
439         * Print useful error when a realm regex is invalid
440         * relaxed rules for preprocess module "with_cisco_vsa_hack".  The
441           attributes can now be integer, ipaddr, etc.  (i.e. non-string)
442         * Allow rlm_ldap to build if ldap_set_rebind_proc() has only
443           2 arguments.
444         * Update configure script for rlm_python to avoid dynamic linking
445           problems on some platforms.
446         * Work-around for bug #35
447         * Do suid to "user" when running in debug mode as root
448         * Make "allow_core_dumps" work in more situations.
449         * In detail file reader, treat bad records as EOF.
450           This allows it to continue working when the disk is full.
451         * Fix Oracle default accounting queries to work when there are no
452           gigawords attributes.  Other databases already had the fix.
453         * Fix rlm_sql to show when it opens and closes sockets.  It already
454           says when it cannot connect, so it should say when it can connect.
455         * "chmod -x" for a few C source files.
456         * Pull update spec files, etc. from RedHat into the redhat/ directory.
457         * Allow spaces when parsing integer values.  This helps people who
458           put "too much" into an SQL value field.
459
460 FreeRADIUS 2.1.8 Wed 30 Dec 16:44:50 CEST 2009, urgency=medium
461         Feature improvements
462         * Print more descriptive error message for too many EAP sessions.
463           This gives hints on what to do when "failed to store handler"
464         * Commands received from radmin are now printed on stdout when
465           in debugging mode.
466         * Allow accounting packets to be written to a detail file, even
467           if they were read from a different detail file.
468         * Added OpenSSL license exception (src/LICENSE.openssl)
469
470         Bug fixes
471         * DHCP sockets can now set the broadcast flag before binding to a
472           socket.  You need to set "broadcast = yes" in the DHCP listener.
473         * Be more restrictive on string parsing in the config files
474         * Fix password length in scripts/create-users.pl
475         * Be more flexible about parsing the detail file.  This allows
476           it to read files where the attributes have been edited.
477         * Ensure that requests read from the detail file are cleaned up
478           (i.e. don't leak) if they are proxied without a response.
479         * Write the PID file after opening sockets, not before
480           (closes bug #29)
481         * Proxying large numbers of packets no longer gives error
482           "unable to open proxy socket".
483         * Avoid mutex locks in libc after fork
484         * Retry packet from detail file if there was no response.
485         * Allow old-style dictionary formats, where the vendor name is the
486           last field in an ATTRIBUTE definition.
487         * Removed all recursive use of mutexes.  Some systems just don't
488           support this.
489         * Allow !* to work as documented.
490         * make templates work (see templates.conf)
491         * Enabled "allow_core_dumps" to work again
492         * Print better errors when reading invalid dictionaries
493         * Sign client certificates with CA, rather than server certs.
494         * Fix potential crash in rlm_passwd when file was closed
495         * Fixed corner cases in conditional dynamic expansion.
496         * Use InnoDB for MySQL IP Pools, to gain transactional support
497         * Apply patch to libltdl for CVE-2009-3736.
498         * Fixed a few issues found by LLVM's static checker
499         * Keep track of "bad authenticators" for accounting packets
500         * Keep track of "dropped packets" for auth/acct packets
501         * Synced the "debian" directory with upstream
502         * Made "unlang" use unsigned 32-bit integers, to match the
503           dictionaries.
504
505 FreeRADIUS 2.1.7 Mon Sept 14 11:20:00 CEST 2009;  , urgency=medium
506         Feature improvements
507         * Full support for CoA and Disconnect packets as per RFC 3576
508           and RFC 5176.  Both receiving and proxying CoA is supported.
509         * Added "src_ipaddr" configuration to "home_server".  See
510           proxy.conf for details.
511         * radsniff now accepts -I, to read from a filename instead of
512           a device.
513         * radsniff also prints matching requests and any responses to those
514           requests when '-r' is used.
515         * Added example of attr_filter for Access-Challenge packets
516         * Added support for udpfromto in DHCP code
517         * radmin can now selectively mark modules alive/dead.
518           See "set module state".
519         * Added customizable messages on login success/fail.
520           See msg_goodpass && msg_badpass in log{} section of radiusd.conf
521         * Document "chase_referrals" and "rebind" in raddb/modules/ldap
522         * Preliminary implementation of DHCP relay.
523         * Made thread pool section optional.  If it doesn't exist,
524           the server will run single-threaded.
525         * Added sample radrelay.conf for people upgrading from 1.x
526         * Made proxying more stable by failing over, rather than
527           rejecting the first request.  See "response_window" in proxy.conf
528         * Allow home_server_pools to exist without realms.
529         * Add dictionary.iea (closes bug #7)
530         * Added support for RFC 5580
531         * Added experimental sql_freetds module from Gabriel Blanchard.
532         * Updated dictionary.foundry
533         * Added sample configuration for MySQL cluster in raddb/sql/ndb
534           See the README file for explanations.
535
536         Bug fixes
537         * Fixed corner case where proxied packets could have extra
538           character in User-Password attribute.  Fix from Niko Tyni.
539         * Extended size of "attribute" field in SQL to 64.
540         * Fixes to ruby module to be more careful about when it builds.
541         * Updated Perl module "configure" script to check for broken
542           Perl installations.
543         * Fix "status_check = none".  It would still send packets
544           in some cases.
545         * Set recursive flag on the proxy mutex, which enables safer
546           cleanup on some platforms.
547         * Copy the EAP username verbatim, rather than escaping it.
548         * Update handling so that robust-proxy-accounting works when
549           all home servers are down for extended periods of time.
550         * Look for DHCP option 53 anywhere in the packet, not just 
551           at the start.
552         * Fix processing of proxy fail handler with virtual servers.
553         * DHCP code now prints out correct src/dst IP addresses
554           when sending packets.
555         * Removed requirement for DHCP to have clients
556         * Fixed handling of DHCP packets with message-type buried in the packet
557         * Fixed corner case with negation in unlang.
558         * Minor fixes to default MySQL & PostgreSQL schemas
559         * Suppress MSCHAP complaints in debugging mode.
560         * Fix SQL module for multiple instance, and possible crash on HUP
561         * Fix permissions for radius.log for sites that change user/group,
562           but which don't create the file before starting radiusd.
563         * Fix double counting of packets when proxying
564         * Make %l work
565         * Fix pthread keys in rlm_perl
566         * Log reasons for EAP failure (closes bug #8)
567         * Load home servers and pools that aren't referenced from a realm.
568         * Handle return codes from virtual attributes in "unlang"
569           (e.g. LDAP-Group).  This makes "!(expr)" work for them.
570         * Enable VMPS to see contents of virtual server again
571         * Fix WiMAX module to be consistent with examples.  (closes bug #10)
572         * Fixed crash with policies dependent on NAS-Port comparisons
573         * Allowed vendor IDs to be be higher than 32767.
574         * Fix crash on startup with certain regexes in "hints" file.
575         * Fix crash in attr_filter module when packets don't exist
576         * Allow detail file reader to be faster when "load_factor = 100"
577         * Add work-around for build failures with errors related to
578           lt__PROGRAM__LTX_preloaded_symbols.  libltdl / libtool are horrible.
579         * Made ldap module "rebind" option aware of older, incompatible
580           versions of OpenLDAP.
581         * Check value of Fall-Through in attr_filter module.
582
583 FreeRADIUS 2.1.6 Mon May 18 10:00:00 CEST 2009;   urgency=medium
584         Feature improvements
585         * radclient exits with 0 on successful (accept / ack), and 1
586           otherwise (no response / reject)
587         * Added support for %{sql:UPDATE ..}, and insert/delete
588           Patch from Arran Cudbard-Bell
589         * Added sample "do not respond" policy.  See raddb/policy.conf
590           and raddb/sites-available/do_not_respond
591         * Cleanups to Suse spec file from Norbert Wegener
592         * New VSAs for Juniper from Bjorn Mork
593         * Include more RFC dictionaries in the default install
594         * More documentation for the WiMAX module
595         * Added "chase_referrals" and "rebind" configuration to rlm_ldap.
596           This helps with Active Directory.  See raddb/modules/ldap
597         * Don't load pre/post-proxy if proxying is disabled.
598         * Added %{md5:...}, which returns MD5 hash in hex.
599         * Added configurable "retry_interval" and "poll_interval"
600           for "detail" listeners.
601         * Added "delete_mppe_keys" configuration option to rlm_wimax.
602           Apparently some WiMAX clients misbehave when they see those keys.
603         * Added experimental rlm_ruby from
604           http://github.com/Antti/freeradius-server/tree/master
605         * Add Tunnel attributes to ldap.attrmap
606         * Enable virtual servers to be reloaded on HUP.  For now, only
607           the "authorize", "authenticate", etc. processing sections are
608           reloaded.  Clients and "listen" sections are NOT reloaded.
609         * Updated "radwatch" script to be more robust.  See scripts/radwatch
610         * Added certificate compatibility notes in raddb/certs/README,
611           for compatibility with different operating systems. (i.e. Windows)
612
613         Bug fixes
614         * Minor changes to allow building without VQP.
615         * Minor fixes from John Center
616         * Fixed raddebug example
617         * Don't crash when deleting attributes via unlang
618         * Be friendlier to very fast clients
619         * Updated the "detail" listener so that it only polls once,
620           and not many times in a row, leaking memory each time...
621         * Update comparison for Packet-Src-IP-Address (etc.) so that
622           the operators other than '==' work.
623         * Did autoconf magic to work around weird libtool bug
624         * Make rlm_perl keep tags for tagged attributes in more situations
625         * Update UID checking for radmin
626         * Added "include_length" field for TTLS.  It's needed for RFC
627           compliance, but not (apparently) for interoperability.
628
629 FreeRADIUS 2.1.5 Sun Jan 1 1:1:00 CEST 2009;  , urgency=medium
630         * Release number skipped due to procedural issues.
631
632 FreeRADIUS 2.1.4 Tue Mar 10 17:05:00 CEST 2009;  , urgency=medium
633         Feature improvements
634         * Permit multiple "-e" in radmin.
635         * Add support for originating CoA-Request and Disconnect-Request.
636           See raddb/sites-available/originate-coa.
637         * Added "lifetime" and "max_queries" to raddb/sql.conf.
638           This helps address the problem of hung SQL sockets.
639         * Allow packets to be injected via radmin.  See "inject help"
640           in radmin.
641         * Answer VMPS reconfirmation request.  Patch from Hermann Lauer.
642         * Sample logrotate script in scripts/logrotate.freeradius
643         * Add configurable poll interval for "detail" listeners
644         * New "raddebug" command.  This prints debugging information from
645           a running server.  See "man raddebug.
646         * Add "require_message_authenticator" configuration to home_server
647           configuration.  This makes the server add Message-Authenticator
648           to all outgoing Access-Request packets.
649         * Added smsotp module, as contributed by Siemens.
650         * Enabled the administration socket in the default install.
651           See raddb/sites-available/control-socket, and "man radmin"
652         * Handle duplicate clients, such as with replicated or
653           load-balanced SQL servers and "readclients = yes"
654
655         Bug fixes
656         * Clean up control sockets when they are closed, so that we don't
657           leak memory.
658         * Define SUN_LEN for systems that don't have it.
659         * Correct some boundary conditions in the conditional checker ("if")
660           in "unlang".  Bug noted by Arran Cudbard-Bell.
661         * Work around minor building issues in gmake.  This should only
662           have affected developers.
663         * Change how we manage unprivileged user/group, so that we do not
664           create control sockets owned by root.
665         * Fixed more minor issues found by Coverity.
666         * Allow raddb/certs/bootstrap to run when there is no "make"
667           command installed.
668         * In radiusd.conf, run_dir depends on the name of the program,
669           and isn't hard-coded to "..../radiusd"
670         * Check for EOF in more places in the "detail" file reader.
671         * Added Freeswitch dictionary.
672         * Chop ethernet frames in VMPS, rather than droppping packets.
673         * Fix EAP-TLS bug.  Patch from Arnaud Ebalard
674         * Don't lose string for regex-compares in the "users" file.
675         * Expose more functions in rlm_sql to rlm_sqlippool, which 
676           helps on systems where RTLD_GLOBAL is off.
677         * Fix typos in MySQL schemas for ippools.
678         * Remove macro that was causing build issues on some platforms.
679         * Fixed issues with dead home servers.  Bug noted by Chris Moules.
680         * Fixed "access after free" with some dynamic clients.
681
682 FreeRADIUS 2.1.3 Fri Dec 5 17:40:00 CEST 2008;  , urgency=medium
683         Feature improvements
684         * Allow running with "user=radiusd" and binding to secure
685           sockets.
686         * Start sending Status-Server "are you alive" messages earlier,
687           which helps with proxying multiple realms to a home server.
688         * Removed thread pool code from rlm_perl.  It's not necessary.
689         * Added example Perl configuration to raddb/modules/perl
690         * Force OpenSSL to support certificates with SHA256.
691           This seems to be necessary for WiMAX certs.
692
693         Bug fixes
694         * Fix Debian patch to allow it to build.
695         * Fix potential NULL dereference in debugging mode on certain
696           platforms for TTLS and PEAP inner tunnels.
697         * Fix uninitialized memory in handling of vendor definitions
698         * Fix parsing of quoted (but non-string) attributes in the "users"
699           file.
700         * Initialize uknown NAS IP to 255.255.255.255, rather than 0.0.0.0
701         * use SUN_LEN in control socket, to avoid truncation on some
702           platforms.
703         * Correct internal handling of "debug condition" to prevent it
704           from being over-written.
705         * Check return code of regcomp in "unlang", so that invalid
706           regular expressions are caught rather than mishandled.
707         * Make rlm_sql use <ltdl.h>.  Addresses bug #610.
708         * Document list "type = status" better.  Closes bug #580.
709         * Set "default days" for certificates, because OpenSSL won't
710           do it.  This closes bug #615.
711         * Reference correct list in example raddb/modules/ldap.
712           Closes #596.
713         * Increase default schema size for Acct-Session-Id to 64.
714           Closes #540.
715         * Fix use of temporary files in dialup-admin.  Closes #605
716           and addresses CVE-2008-4474.
717         * Addressed a number of minor issues found by Coverity.
718         * Added DHCP option 150 to the dictionary.  Closes #618.
719
720 FreeRADIUS 2.1.2 Thurs Dec 3 10:47:00 CEST 2008;  , urgency=medium
721         Due to packaging issues, 2.1.2 has been pulled from the net.
722
723 FreeRADIUS 2.1.1 Thu Sep 25 11:03:00 CEST 2008;  , urgency=medium
724         Feature improvements
725         * Many more options and features in radmin.  See "man radmin" and
726           raddb/sites-available/control-socket
727         * Many more commands available via the control socket.  Connect
728           via "radmin", and type "help" for more information.
729         * Added dictionary.networkphysics and dictionary.lancom.
730         * Calculate WiMAX MIP keys, and added sample WiMAX SQL tables.
731
732         Bug fixes
733         * Fixed bug that made radmin not work
734         * Fixed Suse && Debian package scripts
735         * Fixed issues with dynamic clients
736         * Fixed configure checks for -lreadline
737         * rlm_sqlippool no longer needs to be linked to rlm_sql.
738         * Add statistics for detail file listeners.  This closes bug #593.
739         * Fixed printing of some WiMAX attributes.
740         * Fix double free on exit() in rlm_attr_filter
741         * Fixed build issues on Solaris.
742         * Fixed fast session resumption for EAP-TLS
743
744 FreeRADIUS 2.1.0 Fri Sep  5 13:20:01 CEST 2008;  , urgency=medium
745         Feature improvements
746         * Clients may now be defined dynamically, based on IP address.
747           See raddb/sites-available/dynamic-clients.
748         * SNMP support is now available through an experimental Perl script.
749           See scripts/snmp-proxy/README
750         * SNMP statistics are available through Status-Server packets.
751           See raddb/sites-available/status
752         * Added more Microsoft attributes from bug #568.
753         * The "linelog" module has more functionality and flexibility.
754           See raddb/modules/linelog.
755         * The debugging output has been sanitized.  It should be much
756           more readable.
757         * Debug logs can now be turned on/off while the server is running, for
758           a user, group, realm, etc.  See the "log" section of radiusd.conf.
759         * Added support for WiMAX Forum attributes.  The dynamic keys
760           are not yet calculated.  See share/dictionary.wimax
761         * Added session resumption for PEAP and TTLS.
762           See raddb/eap.conf, "cache" sub-section.
763         * Added "radmin" command-line tool for administering a running server.
764           See "man radmin" and raddb/sites-available/control-socket.
765
766         Bug fixes
767         * Double escaping of '\\' in the "users" (and some other) files
768           has been fixed.  If you have '\\' in the "users" file, your
769           configuration WILL NEED TO BE CHECKED, AND FIXED!
770         * Parse "security" section in radiusd.conf.  This was accidentally
771           deleted in 2.0.5.  Closes bug #566.
772         * Bind to interface before IP, which allows DHCP sockets to
773           listen on "*" for multiple interfaces.
774         * Fix handling of giaddr in DHCP responses.
775         * Corrected parsing of status_check in home_server so that it works.
776         * Fix hints so that "Puser" works again.
777         * Removed length restrictions on attribute names in the dictionaries.
778         * Update socket code to avoid C compiler optimizations.
779
780 FreeRADIUS 2.0.5 ; Date: 2008/06/07 17:17:00 , urgency=medium
781         Feature improvements
782         * Permit SQL authorize_reply_query to be empty.
783         * Allow setting response packet type in Post-Proxy-Type Fail
784           handler.
785         * Added install-chown target to set correct permission and ownership
786           make RADMIN=radmin RGROUP=radius install-chown
787         * Support for LDAP-Group and other dynamic comparison attributes
788           in unlang.  Developed from a patch by Jason Alderfer.
789         * Added chroot support.  See radiusd.conf for comments.
790         * Allow clients of 0/0.  We do not recommend using this, though.
791         * Moved many module configurations into raddb/modules/*
792         
793         Bug fixes
794         * Allow proxying to virtual servers for accounting packets, too.
795         * Added "num fields" function to PostgreSQL client.
796         * Updated proxy fallback mechanism to validate fallback servers,
797           and to process fallback requests in a child thread.
798         * rlm_realm returns "ok" for LOCAL realms, not "noop".
799         * Fixed some DHCP code handling.  The examples should now work.
800
801 FreeRADIUS 2.0.4 ; Date: 2008/04/30 08:56:40  , urgency=medium
802         Feature improvements
803         * Allow "virtual_server" in "realm" and "home_server" sections.
804           See raddb/proxy.conf and raddb/sites-available/virtual.example.com.
805         * Allow "passwd" module to be listed in "accounting" and "post-auth".
806         * Added "fallback" to "home_server_pool" configuration, to handle
807           the case of all home servers being dead.  See raddb/proxy.conf.
808         * Added sample text to raddb/sites-available/inner-tunnel which
809           can simplify debugging of inner tunnel configurations.
810         * Added regular expression matching in realm names.  See
811           raddb/proxy.conf for examples.
812         * Added simple DHCP server functionality.  For comments, see
813           raddb/sites-available/dhcp.
814         * Added file globbing capabilities to detail file reader
815         * Added sample raddb/sites-available/robust-proxy-accounting
816         * Clients in SQL can now refer to a virtual server.
817           Patch from Michael Bretterklieber.
818         * Added some examples of creating RADIUS administrator in SQL,
819           and assigning appropriate access rights.
820         
821         Bug fixes
822         * Install all files in raddb/sites-available
823         * Allow non-threaded builds.
824         * Don't treat '0x' as special for known attributes that are not
825           of type "octets".
826         * Fix log error in rlm_pap.
827         * Remove documentation about non-existent functionality.
828         * Updated warning messages in debug output.
829         * Fix handling of timeouts in rlm_ldap that affected 64-bit systems.
830           This fix was supposed to go into 2.0.3, but did not make it.
831         * Fix event handling in debug mode for failed proxy requests.
832         * Fix memleak in fifos.  Closes #537.
833         * Fix memleak on blocked threads.  Closes #538.
834         * Perform additional checks on NULL realms.  Closes #541.
835         * Fix handling of "clients" in "listen" section.
836         * When detail file cannot process a packet, sleep for longer
837           to let the rest of the server do something.
838         * Add missing table to raddb/sql/mssql/schema.sql.  Closes #545.
839         * Updated rlm_sql_postgresql to build with PostgreSQL 7.x. 
840           Closes #533.
841         * Fix "postauth" of rlm_ldap to look for LDAP-UserDn in the
842           correct place.
843         * Update rlm_attr_filter for some corner cases.  Closes #543.
844         * Fixed memory leak in libfreeradius event handler.
845         * In the SQL Accounting on/off queries, remove the restriction
846           that the session time had to be zero.
847         
848 FreeRADIUS 2.0.3 ; Date: 2008/03/17 09:22:17  , urgency=medium
849         Feature improvements
850         * Updated raddb/certs/ca.cnf with extensions to allow ca.der
851           to be imported as a CA on Symbian and Windows Mobile devices.
852           Closes bug #524
853         * Enable multiple matches in "hints" via Fall-Through = Yes.
854           Closes bug #477
855         * Added preliminary SQLite driver, contibuted by Apple.
856           Untested, with no sample configuration.  This address bug #470.
857         * Updated logging sub-system so that log messages from libfreeradius
858           can go to the log file, and not stdout.
859         * Added dictionary.rfc5176
860         * EAP module now checks for instance name, and uses that for
861           authentication.  This avoids the need to set Auth-Type when
862           there are multiple instances of the EAP module.
863         * Added Module-Return-Code attribute, which contains the value
864           returned by the previous module (ok/fail/update/etc.)
865
866         Bug fixes
867         * Corrected typos in rlm_dbm.  Closes bugs #521 and #522.
868         * Detail file "listen" sections now work much better.
869         * Don't allow old "log_*" to over-ride new format.  Closes bug #525
870         * Initialize allocated memory in Oracle SQL driver.  This fixes
871           occasional crashes on some systems.  Closes bug #518
872         * Call correct function in rlm_protocol_filter.  This enables the
873           module to build.  Closes bug #512.
874         * Added deprecated flag to build for rlm_krb5.  This allows it to
875           run on 64-bit systems.  Closes bug #491
876         * Corrected error message when parsing invalid configurations
877           so it doesn't crash.  Closes bug #527
878         * Fix handling of timeouts in rlm_ldap that affected 64-bit systems.
879         * Handle $INCLUDE's in "instantiate" section.  Closes #528.
880         * Format updates to "man" pages from Stephen Gran.
881
882 FreeRADIUS 2.0.2 ; Date: 2008/02/14 11:13:48  , urgency=medium
883         Feature improvements
884         * Added notes on how to debug the server in radiusd.conf
885         * Moved all "log_*" in radiusd.conf to log{} section.
886           The old configurations are still accepted, though.
887         * Added ca.der target in raddb/certs/Makefile.  This is
888           needed for importing CA certs into Windows.
889         * Added ability send raw attributes via "Raw-Attribute = 0x0102..."
890           This is available only debug builds.  It can be used
891           to create invalid packets! Use it with care.
892         * Permit "unlang" policies inside of Auth-Type{} sub-sections
893           of the authenticate{} section.  This makes some policies easier
894           to implement.
895         * "listen" sections can now have "type = proxy".  This lets you
896           control which IP is used for sending proxied requests.
897         * Added note on SSL performance to raddb/certs/README
898
899         Bug fixes
900         * Fixed reading of "detail" files.
901         * Allow inner EAP tunneled sessions to be proxied.
902         * Corrected MySQL schemas
903         * syslog now works in log{} section.
904         * Corrected typo in raddb/certs/client.cnf
905         * Updated raddb/sites-available/proxy-inner-tunnel to
906           permit authentication to work.
907         * Ignore zero-length attributes in received packets.
908         * Correct memcpy when dealing with unknown attributes.
909         * Corrected debugging messages in attr_rewrite.
910         * Corrected generation of State attribute in EAP.  This
911           fixes the "failed to remember handler" issues.
912         * Fall back to DEFAULT realm if no realm was found.
913           Based on a patch from Vincent Magnin.
914         * Updated example raddb/sites-available/proxy-inner-tunnel
915         * Corrected behavior of attr_filter to match documentation.
916           This is NOT backwards compatible with previous versions!
917           See "man rlm_attr_filter" for details.
918
919 FreeRADIUS 2.0.1 ; Date: 2008/01/22 13:29:37  , urgency=low
920         Feature improvements
921         * "unlang" has been expanded to do less run-time expansion,
922           and to have better handling of typed data.  See "man unlang"
923           for documentation and new examples.
924         
925         Bug fixes
926         * The 'acct_unique' module has been updated to understand
927           the deprecated (but still used) Client-IP-Address attribute.
928         * The EAP-MSCHAPv2 module no longer leaks MS-CHAP2-Success in
929           packets.
930         * Fixed crash in rlm_dbm.
931         * Fixed parsing of syslog configuration.
932
933 FreeRADIUS 2.0.0 ; Date: 2007/11/24 08:33:09 , urgency=low
934         Feature improvements
935         * Debugging mode is much clearer and easier to read.
936         * A new policy language makes many configurations trivial.
937           See "man unlang" for a complete description.
938         * Virtual servers are now supported.  This permits clear separation
939           of policies.  See raddb/sites-available/README
940         * EAP-TLS (PEAP, EAP-TTLS) and OpenSSL certificates "just work".
941           See raddb/certs/README for details.
942         * Proxying is much more configurable than before.
943           See proxy.conf for documentation on pools, and new config items.
944         * Full support for IPv6.
945         * Much more complete support for the RADIUS SNMP MIBs.
946         * HUP now works.  Only some modules are re-loaded,
947           and the server configuation is *not* reloaded.
948         * "check config" option now works.  See "man radiusd"
949         * radrelay functionality is now included in the server core.
950           See raddb/sites-available/copy-acct-to-home-server
951         * VMPS support.  It is minimal, but functional.
952         * Cleaned up internal API's and names, including library names.
953         
954         Bug fixes
955         * Many.