Added latest set of changes
[freeradius.git] / doc / ChangeLog
1 FreeRADIUS 1.0.2 ; $Date$, urgency=medium
2         * Novell eDirectoty support.  Patch from Novell.
3         * localweb & Trapeze dictionary updates.
4         * EAP-SIM fixes.
5         * Make "Strip-User-Name = No" work.
6         * Don't declare zero-length arrays in rlm_passwd
7         * Bug fix to make udpfromto code work
8         * radrelay shouldn't dump core if it can't read a VP from the
9           detail file.
10         * Only initialize the random pool once.
11         * In rlm_sql, don't escape characters twice.
12         * Fix MD4 calculation on big-endian machines.
13         * In rlm_ldap, only claim Auth-Type if a plain text password is present.
14         * Treat Quintium VSAs like Cisco VSAs
15         * Locking fixes in threading code
16         * rlm_krb5 includes /usr/include/et for Fedora Core
17         * Fix post-auth REJECT stanza processing for rejections from external
18           processes or home RADIUS servers
19         * Fix building on gcc-4.0 by not trying to access static auth_port from
20           other files.
21
22 FreeRADIUS 1.0.1 ; Date: 2004/09/02 10:52:03 , urgency=high
23         Denial-of-Service Security Fix
24         * Fix two remote crashes and a memory leak in RADIUS packet
25           decoding.
26
27         Bug fixes.
28         * Fix premature "success" during EAP/TLS handshake.
29         * Dictionary handling now complains about identically named
30           values with different values, and rejects dictionary
31           entries with bad data
32         * Update dictionaries to deal with the above change.
33
34 FreeRADIUS 1.0.0 ; Date: 2004/07/17 06:31:32, urgency=low
35         pre3 -> release
36         * Fix LDAP dictionary map loading.
37         * Check login time allowance to packet timestampe where available.
38         * Compilation fix for machines withouth <pthread.h>.
39         * Man page improvements.
40         * Grab latest config.sub and config.guess (2004-03-12).
41
42         pre2 -> pre3
43         * Make IPv6 support work better.
44         * Updated 3com dictionary.
45         * Fixed MD5 code to be more portable.
46
47         pre1 -> pre2
48         * Updated SQL onoff query
49         * Updated Nomadix, RedBack and Valemont dictionaries.
50         * MD4/MD5 fixes.
51         * Don't complain about ports we're listening on when HUP'd.
52         * Permit -i to work for radclient.
53         * Fix bug in new proxy code.
54         * rlm_passwd is now a little friendlier.
55         
56         Non source-code changes
57         * Preliminary tests indicate that the server builds and runs on
58           Interix (SFU on Windows XP).
59         * EAP module configuration is now in "raddb/eap.conf", as it was
60           getting large.
61         * Updated GPL boilerplate in the source.
62         * Added new RFC's to doc/rfc/
63         * Added more "man" pages for many of the modules.  Many of the
64           'doc/rlm_*' files have been deleted, and replaced with 'man' pages.
65         * Added many new dictionaries: 3GPP, 3GPP2, Propel, Karlnet,
66           Sonicwall, Navini, Bristol University, Valemont, Mikrotik.
67         * doc/configurable_failover is now understandable by mere humans.
68         * Update scripts/rc.radiusd with examples of how to deal with
69           shared library issues.
70         * Added demo certs.
71         * Updates to configure scripts for MySQL.
72         * Updated doc/tuning_guide, with comments about SQL.
73
74         Core feature improvements
75         * Many, many minor bug fixes and feature enhancements.
76         * Added "reject" action in configurable failover for modules
77         * Added a "listen" directive, which supersedes the old
78           "bind_address" and "port" directives.  "listen" allows much
79           finer-grained control over what IP's, ports, and packets the
80           server pays attention to.
81         * The proxy code has been updated to work properly, and to
82           allocate new sockets for proxying packets when there are more
83           than 256 requests outstanding to a home server.  Many thanks
84           to Stephen Jaeger for help in debugging the new feature.
85         * Regular expression matches in brackets can now be referenced
86           as in Perl, via %{1}, %{2}, etc.
87         * added ability for mschap module to use ntlm_auth, to perform
88           MS-CHAPv1 and MS-CHAPv2 authentication against a Windows
89           Domain Controller.
90         * Check return value from registered xlat functions. If return
91           value is 0, treat the attribute as not found.  This lets things
92           like %{sql: select... :-FAILED} work.
93         * Realms can now be configured to ignore DEFAULT and NULL
94           realms.  This makes prefix/suffix realms co-exists a little
95           better.
96         * Added red-black tree implementation to src/lib.  The
97           dictionaries now use it, rather than singly linked lists.  Tests
98           indicate that the server is up to 30% faster.
99         * Updated MSCHAP module to be able to better deal with Windows
100           machines which put a username with domain into User-Name, but
101           which use only the username to create the MS-CHAP-Response.
102         * Made "hints" file more generic and flexible, without changing
103           old functionality.
104         * Enhanced configuration file variable handling.  See
105           doc/variables.txt for details.
106         * Checks for OpenSSL now enforce version number, and are common
107           across all modules, rather than being duplicated.
108         * Implement "udpfromto", which allows the server to work better in
109           LVS.  Code from Jan Berkel and Miquel van Smoorenburg.  To use
110           it, do:   ./configure --with-udpfromto=yes
111         * Re-arranged "walk over cached requests" code for clarity.
112         * The server now keeps more SNMP statistics about the packets it
113           has processed.
114         * De-coupled the queue of input requests from the pool of threads.
115           This allows "spikes" of requests to be queued, even though all
116           threads are busy.  This change significantly increases the
117           servers ability to process large numbers of requests on a
118           multi-CPU machine.
119         * Re-arranged the internal "core" request handling code, to
120           make a little more sense.
121         * Removed support for Replicate-To-Realm.  Use radrelay.
122         * Print & parse unknown attributes as Attr-%d, Vendor-%d-Attr-%d,
123           or VendorName-Attr-%d.
124         * rlm_passwd is now marked "stable", and has many bugs fixed.
125         * More flexible configuration for rlm_ldap.
126         * New implementation of parser for Ascend's data filter
127           attributes, that is now thread-safe and GPL'd.
128         * Preliminary (not entirely complete) support for IPv6 attributes,
129           including IFID.
130         * Added support for rejected packets to run an Post-Auth-Type REJECT
131           stanza instead of skipping post-auth entirely.
132         * Added support for %{*:Packet-Type} translation. (Not for %{check:})
133         * Added support for %{check:Attribute-Name} to go with
134           %{request:Attribute-Name} and the like.
135         * Add support to rlm_sql for post-authentication query execution.
136         * Add support to rlm_sql for accounting_update_query_alt
137         * Add support for supplementary groups of switched-to user
138         * Add support for xlat-ing backquoted reply values from SQL queries.
139         * Add Public Domain MD5 implementation by Colin Plumb
140         * Add Public Domain MD4 implementation by Colin Plumb and
141           Todd C. Miller
142         * Remove smbdes.c from libradius, and add to rlm_mschap and
143           rlm_eap_leap
144         * Replace GPL'd snprintf.c in libradius with LGPL'd snprintf.[ch]
145
146         EAP-module feature improvements
147         * Allow checking of EAP identity against certificate.
148         * EAP-TLS now checks Certificate Revocation List
149         * Added EAP-TTLS support in rlm_eap.  Tested with many clients,
150           and with tunneled PAP, CHAP, MS-CHAP, MSCHAPv2, EAP-MD5,
151           EAP-MSCHAPv2, and EAP-GTC.
152         * Added EAP-PEAP support, with tunneled EAP-MSCHAP-V2, and EAP-GTC.
153           Patch from Masao Nishiku.  (Many, many thanks!)
154         * Added EAP-SIM.
155         * Enabled proxying of the authentication request which is tunneled
156           inside of PEAP and TTLS.
157
158         Utility improvements
159         * Add support to checkrad.pl for mikrotik-brand NASs over SNMP
160         * Added rlm_ippool_tool, by Edwin Groothuis.
161         * Updates to radclient, so that you can specify multiple '-f'
162           options, and it will send those packets in parallel.  This
163           allows for significantly higher packet rates when load testing.
164
165         Bug fixes
166         * Fix a bug in the attr_filter module, which would throw away
167           the tag from tagged attributes.
168         * Bug fixes to thread handling from Malcolm Caldwell.
169         * Fixed a bug in libltdl which printed the wrong error message
170           when trying to link to a library.  Found by Paul Stewart.
171         * Correct error condition in rlm_krb5.  Patch from Jon Moore.
172         * Updates for 64-bit systems.
173         * Patch to make ctime_r work on non-compliant platforms.
174           Patch from Oliver Graf.
175         * Updates to rlm_ippool for stability.
176         * Catch packets which are just about 4K in size.
177            Bug found by Nils-Henner Krueger.
178         * Many fixes to the SQL module & sub-modules.
179
180 FreeRADIUS 0.9.3 ; Date: 2003/11/20 20:15:48, urgency=high
181
182         * Change rlm_eap to not log an error if given a non-EAP packet
183         * Fix rlm_ippool's call to pod2man for perl versions before 5.6
184         * Fix a remote DoS and due to mis-handling of tagged attributes,
185           and Tunnel-Password attribute.
186
187 FreeRADIUS 0.9.2 ; Date: 2003/10/14 19:00:09, urgency=low
188
189         * New rlm_ippool code to fix IP leaks
190         * New rlm_ippool_tool for manipulation of rlm_ippool databases
191
192         * Change radrelay to reject records without an Acct-Status-Type attribute
193         * Change rlm_counter to reject packets which predate last server reset
194         * Change version output to include GNU GPL information
195         * Change rlm_ldap to output bad search filters
196
197         * Fix compilation of various modules when not building with pthreads
198         * Fix segfault due to poorly initialised value in rlm_mschap
199         * Fix to only reject packets once
200         * Fix rlm_exec to work when wait=no
201         * Fix rlm_attr_filter to work in post-proxy (as intended)
202         * Fix rlm_sql to only try to load SQL drivers
203         * Fix to orrectly limit size of RADIUS packets
204         * Fix usage information to output to stdout when used with -h flag
205         * Fix configure to assume gethostbyname is BSD-Style on FreeBSD
206
207 FreeRADIUS 0.9.1 ; Date: 2003/09/04 14:56:34, urgency=low
208
209         * Replicate-To-Realm is deprecated, and hence no longer documented
210         * Document rlm_detail support for authorize and post-auth sections
211         * Improve slightly MySQL accounting record SQL query
212         * Opaquefied CHAP-Challenge
213         * Add attributes to Nomadix dictionary
214         * Fix rlm_exec's parsing of non-attribute return values
215         * Fix for a segfault while reading config files
216         * Fix for a segfault regarding hostname lengths
217         * Fix for a segfault while reading deprecated config files
218         * Fix compilation of radiusd.c when threads are disabled
219         * Recover from inability to relay
220         * Stop complaining in error log when a system call is interrupted.
221         * Don't print binary CHAP-Passwords into the logs
222         * Successfully detect GNU dbm >= 1.8.1's dbm compatibility library
223         * Fix rlm_unix to deal with requests without a username
224         * Fix "uninmplemented function" crash in postgresql driver on -HUP
225         * Revert INTERVAL types to BIGINT in postgresql example schema
226         * Fix radrelay to notice when it's out of IDs
227         * Fix radrelay to correctly skip bad attributes
228         * Fix radrelay to not leak IDs when discarding packets
229         * Fix configure to correctly identify systems without SYSV or GNU-style
230           gethostby{addr,name}_r.
231
232 FreeRADIUS 0.9.0 ; Date: 2003/07/04 21:01:29, urgency=low
233
234         * Many, many, bug fixes and feature enhancements.
235         * radrelay now updates packet 'id' on retransmissions.
236         * More checks for thread-safe functions.
237         * Fix CHAP related buffer overflow (ouch!), thanks to Masao NISHIKU.
238         * Issue warnings if deprecated configuration files are used.
239         * rlm_passwd can now add items to the reply, request, or config items.
240         * The rlm_digest, rlm_exec, and rlm_ippool modules are now marked
241           as 'stable', and included in the default build.
242         * Removed 'raduse'.  No one has used it for years.
243         * Massive fixes for Debian packaging.
244         * radclient can now send "disconnect" packets, to NASes which
245           support it.  The server, however, CANNOT send disconnect packets.
246         * Made Auth-Type, Acct-Type, etc. names consistent across
247           dictionary files and radiusd.conf.  The old (inconsistent) names
248           are still allowed for backwards compatibility.
249         * Cleaned up problems with the rlm_sql module.
250         * Updates to the rlm_ldap module.
251         * rlm_mschap no longer reads SMB password files.  See rlm_passwd,
252           instead.
253         * Changed default entry in the 'users' file to 'Auth-Type = System',
254           to allow EAP and Digest authentication to work automagically.
255         * Support for Cisco LEAP.
256         * Added many new dictionaries (Extreme, Wispr, ERX, Netscreen...)
257         * Removed support for ATTRIB_NMC.  It is now handled (better)
258           in a different manner.
259         * Dictionaries have been moved from /etc/raddb to /usr/share/freeradius
260         * Many documentation updates
261         * Ignore whitespace-only lines in the 'users' file.
262         * Patch to fix 'rlm_realm' from returning the DEFAULT entry when
263           we are looking for the NULL entry and it doesn't exist. Bug
264           noted by Nathan Miller.
265         * Disable child process spawning if we don't have threads.
266           The code doesn't work, so it's better to force the server
267           to run in single-process mode.
268         * New rlm_exec module, which allows a more generic way of
269           executing external programs.
270         * Preliminary large file support in 'configure' and in the server,
271           to support 2G+ detail files.
272         * Install documentation into /usr/local/share/doc/freeradius
273         * New/updated dictionaries for RedCreek, Bintec, Alcatel,
274           ITK, Telebit, and Cabletron.
275         * Updates to allow building on MAC OSX.
276         * Add support for Acct-Type,Session-Type and PostAuth-Type
277         * Removed builddbm.  It hasn't been used for ages.
278         * Added new post_proxy section, based on patch from Chris Brotsos.
279         * rlm_counter shouldn't reset the counters on instantiation,
280           if the reset is set to 'never'.
281         * Significant updates to the rlm_python and rlm_perl modules
282         * Fix the rlm_pap module to handle password lengths properly.
283         * Do SQL 'close' on bad sockets, to prevent descriptor leaks
284         * Case insensitivity option for rlm_radutmp
285         * New pseudo-round-robin load balancing for realms.
286         * Suppress empty SQL queries.
287         * Include strong PRNG
288         * Create 'snmp' configuration directive, so that we can disable
289           SNMP at run time, even if it's built into the server.
290         * Refresh realm as 'active' when we see a response from it,
291            Based on a patch by Angelos Karageorgiou.
292         * Don't core dump if Status-Server is received, but it's disabled.
293         * Support more variants of character fields in Oracle.
294           Patch from Stocker Gernot.
295         * Better parsing of dictionary files.
296         * Alteon web switch dictionary, from Thomas Linden
297
298 FreeRADIUS 0.8 ; Date: 2002/11/18 15:37:24, urgency=low
299
300         * Added Oracle-specific queries.
301         * Updated SQL queries to match schema.
302         * PostGreSQL reconnect patch.
303         * Added documentation on how to build on MAC OSX.
304         * Allowed SQL module to ignore unknown Acct-Status-Type values.
305         * Updated PostGreSQL queries and schema.
306         * Updated the log rotation configuration files.
307         * Colubris and updated Nomadix dictionaries, from Marko Myllynen.
308         * Normalized error messages from the SQL modules, so that they're
309           more informative.
310         * Added Suse specific directory and configuration files, from
311           Peter Nixon
312         * SQL fail-over patch, so that the module returns FAIL if
313           the back-end database is down.  Based on a patch from
314           Thomas Jalsovsky.
315         * Cleaned up the internal handling of the configuration
316           information, in preparation for better handling SIGHUP.
317         * Updated rlm_krb5 configuration to better find it's libraries
318           and include files.
319         * radclient now complains if it receives a reply from a machine
320           other than the one to which it sent the request.
321         * Updated Postgresql SQL queries to get the operator, too.
322         * Added Juniper dictionary.
323         * Added Cisco VPN3000, VPN5000, and BBSM dictionaries.
324         * New platform-neutral 'rc.radiusd'
325         * Configuration files with private information get chmod'd
326           0600 after installation.
327         * Preliminary support for clean shutdowns when a SIGTERM is
328           received.
329         * SNMP timeouts for checkrad, so there will be fewer situations
330           where it hangs for 30 seconds...
331         * Added code to clean up modules and memory when asked to exit
332           via SIGTERM.
333         * Removed all need for the old-style 'naslist' and 'client' files,
334           and noted that they are deprecated.
335         * Added support for Status-Server packets, stolen shamelessly
336           from Cistron RADIUSD.  This is despite the RFC's saying such
337           things are wrong.
338         * Bug fixes to rlm_dbm.
339         * Updates for checkrad, max40xx routine, from Aleksandr Kuzminsky.
340         * Disable caching of passwords for the Unix module.  It was
341           causing too much confusion.
342         * Fix a memory leak when proxying Authentication-Request's
343         * Attributes which are not found in the dictionary are now of
344           type 'octets', instead of 'string'.
345         * Support for "round-robin" load balancing, when proxying requests
346           to multiple servers for one realm.
347         * Minor changes for better HPUX support.
348         * Updated the documentation and README's
349         * Made FreeTDS build ONLY after hand-editing, as the FreeTDS
350           libraries are in a state of flux, due to active development.
351         * Fixes to help build the server on MAC OSX
352         * Cisco VPN 3000 dictionary, as posted to the list by Chris Deramus.
353         * Fix EAP problems with retransmission, from Rainer Weikusat.
354         * Updates to the Oracle module, from Andrea Gabellini.
355         * In xlat, Unix timestamps are unsigned ints.
356         * Security fixes for the Kerberos Module.
357         * New 'post-auth' section, to do additional processing of
358           requests after they've been authenticated.
359         * doc/aaa.txt describes how the server works.
360         * More uniform encoding/decoding of passwords, so that they will
361           be seen as clear-text where possible.
362         * radwho and radzap now read 'radiusd.conf' to discover where the
363           radutmp files are located.  Patch from Andrea Gabellini.
364         * Preliminary 'expression' module, to allow you to do cool things
365           like:    Session-Timeout = `%{expr:3600 - %{sql:SELECT ...}}`
366         * Added ability to do xlat on check items, and reply items,
367           so that the value of the reply attributes can be dynamically
368           generated.
369         * Added MIBs, taken from the RFC's.  This makes SNMP queries to
370           the server a little easier to set up.
371         * Don't SEGV when we receive a packet which is larger than the
372           size claimed in the RADIUS portion.  Patch from Vaughn Skinner.
373         * SNMP patches from Harrie Hazewinkel.
374         * Added Altiga dictionary, from Calum <calum.aug02@umtstrial.co.uk>
375         * New Rewrite-Rule for rlm_attr_rewrite, to selectively choose
376           which rewrite rule is performed, and when.
377         * Minor bug fixes for radrelay.
378         * Bug fixes in SQL and sub-modules.
379         * Major updates to dialup_admin.
380         * Fixed handling of tagged string attributes, so that the server
381           doesn't go off into never-never land.
382         * Cleaned up experimental rlm_smb, so that it builds on more
383           platforms.
384         * Don't over-write request->reply->vps with the Reply-Message,
385           when doing authentication rejects with Exec-Program-Wait.
386         * Added 'instantiate' section, so that modules like 'expr',
387           with only an 'xlat' function can be registered.
388         * Allow '{' and '}' in xlat'd strings.
389         * C++ compatibility patch from Andrey Kotrekhov, for libradius.
390         * Automatically decrypt/encrypt User-Password, so that debugging
391           mode will print out the text password, and not the random
392           garbage it previously showed.
393         * Cleaned up header files and function prototypes for the SQL
394           sub-modules.
395
396 FreeRADIUS 0.7 ; Date: 2002/07/26 18:01:50 , urgency=high
397
398         * Allow attributes of type 'date' to be sent in outgoing packets.
399           Bug found by Loh John Wu <ljwu@sandvine.com>
400         * Add 'Realm' attribute, even if it's a LOCAL realm.
401           Bug noted by Chris Brotsos.
402         * Added experimental SMB authentication module, which uses
403           PAP passwords to authenticate against an NT-Domain.
404           NT/LM-passwords are not currently supported.
405         * More documentation for rlm_passwd, rlm_mschap, and rlm_digest.
406         * 'configure' changes to better find sem_init and friends.
407         * Allow the use of previously installed libtool, and libltdl.
408           This appears to help a lot on FreeBSD.
409         * Fixes to work on non-threaded builds.
410           Patch from Rainer Weikusat.
411         * SQL now re-connects to the server, if the connection is lost.
412           Currently only MySQL is fixed, but other patches will follow.
413           Patch from Todd T. Fries.
414         * Added experimental use of dynamicly translated variables,
415           CallBack-Number = `%{request:Calling-Station-Id}`
416           sets the value of the CallBack-Number attribute to the value of
417           the Calling-Station-Id in the original request.
418         * Cute hack: Allow regex matching on IP addresses, by placing
419           the string representation of the IP address (1.2.3.4) into
420           the internal data structure.  This allows things like
421           NAS-IP-Address =~ "^192\.168", which may be useful.
422         * Add documentation for experimental rlm_dbm module.
423         * Added experimental Perl module.
424         * Added the relevant IETF RFC's (standards documents) to 'doc/rfc',
425           along with some simple perl scripts to convert them to cross-
426           referenced HTML.
427         * Updated the experimental Python module.
428         * Added Cisco SSG VSA's
429         * When rejecting authentication due to external Exec-Program, do
430           NOT free the reply pairs, as the server core will take care of
431           doing that.  Bug noted by Thomas Jalsovsky
432         * New experimental module: rlm_cram
433           Supports APOP, CRAM-MD5, CRAM-MD4, CRAM-SHA1 with it's own
434           VSA's. This module may be used for SMTP/POP3/IMAP4 server
435           authentication.
436         * Make Exec-Program and Exec-Program-Wait work in debugging mode.
437         * Finalize the radrelay additions, based on Cistron RADIUS
438           Patches from Simon <lists@routemeister.net>
439         * Fix issues with linking, by making libradius shared.
440         * Fix issues with MD4, MD5, SHA1, and use of OpenSSL
441         * Update rlm_x99_token module to compile.
442
443 FreeRADIUS 0.6.0 ; Date: Date: 2002/07/03 14:16:33 , urgency=high
444
445         * Many bug fixes.  For explicit details, see:
446                 http://www.freeradius.org/cvs-log/
447         * Change to the user/group specified in the config file in all
448           modes ( debug and daemon ).
449         * SQL sockets are rotated so that all are used, to prevent the
450           SQL server timing out and closing unused sockets.  Patch from
451           Todd T. Fries
452         * Sybase driver from mattias@nogui.se.
453         * Modules are now versioned.
454         * Delete garbage Proxy-Reply attributes sent by the home server
455           before performing our own reply.
456         * Fix race conditions when duplicate packets resulted in a request
457           being processed by two threads, at the same time.
458         * Add '-d' command-line option to radwho
459           Bug noted by Matthew Schumacher
460         * Corrected issue that when a home server never replied to a
461           proxied request, the server may die.
462         * In SQL, look in radcheck, if not found there, try radgroupcheck.
463           Patch from Thomas Jalsovsky.
464         * Set sql user name for ALIVE accounting packets, too.
465           Patch from Simon <lists@routemeister.net>.
466         * Use port-specific checking for realms, now that we can proxy to
467           different auth/acct servers for the same realms.
468           Patch from Eddie Stassen.
469         * Minor updates to encrypted tunnel passwords.
470         * Default 'run_dir' is now /var/run/radiusd, not var/run.
471           /var/run is writeable only by root, and radiusd may be run suid.
472         * Modules are now versioned, so that upgrading the server
473           ensures that the new modules are installed.
474         * Fix sql code, so that magic SQL characters don't get the
475           SQL server excited.
476         * Remove references to "UNKNOWN-NAS" in log messages.
477         * Properly handle fork() and obtaining child processes exit
478           status when using threads.  (pthread is broken w.r.t. signals)
479         * Correct code which would send erroneous reject, when the reject
480           was delayed, and a new request came in.
481         * Fix race condition where proxied requests would sometimes never
482           be re-sent.  Bug noted by Eddie Stassen.
483         * Corrected LDAP3 schema
484         * Implemented Digest authentication, as per IETF document
485           draft-sterman-aaa-sip-00.txt, to perform authentication against
486           a Cisco SIP server.
487         * If no password or group files have been specified in the config,
488           use the standard system calls to find them, rather than giving
489           up.  Patch from Steve Langasek.       
490         * Return Proxy-State attributes in a delated Access-Reject
491         * Corrected 'session zap' logic, when an old and unused session
492           is deleted from the databases.  Accounting packets with garbage
493           Client-IP-Address attributes should no longer be a problem.
494         * Bug fixed in LDAP attribute map, for MS-CHAP related attributes.
495         * Fixes to the EAP module to work better with XP.
496         * Support for MS-SQL, using the FreeTDS library,
497           from Dmitri Ageev
498         * New operators =* and !*.  See 'man 5 users' for details.
499         * Added translation for %{config:section.subsection.item}, to
500           allow run-time translation of internal configuration parameters.
501         * New rlm_sqlcounter module, to keep counters based on SQL data.
502         * Fix rlm_realm, to allow seperate proxying of accounting and
503           authentication requests.
504         * Bug fixes in PostgreSQL back-end, from Andrew Kukhta.
505         * Increase internal buffers, to allow large SQL query strings.
506         * Added debug level 3 (-xxx), where debug messages have time stamps.
507         * Fix 'radwho' to use the correct radutmp file, as found by
508           'configure' (but radwho still doesn't read radiusd.conf)
509         * Fix bugs in tunnel (tagged attribute) code, which would prevent
510           tagged attributes from being generated correctly in a packet.
511         * Build only 'stable' modules by default.  Experimental modules
512           require --with-experimental-modules to be passed to 'configure'
513         * New module rlm_ippool, to do server-side IP pooling.
514         * Fix rlm_eap module for portability, to work on non-x86 platforms.
515         * Re-connect to the LDAP server if the connection idles out
516         * Increased the visibility of the warning messages when doing
517           'make install'
518         * Fixed EAP module to use 16-bit integers, so that it will
519           work on big-endian architectures.
520
521 FreeRADIUS 0.5.0 ; Date: 2002/03/14 22:18:22, urgency=medium
522
523         * Many bug fixes.  For explicit details, see:
524                 http://www.freeradius.org/cvs-log/
525         * Added Foundry dictionary, from Thomas Keitel
526         * Fix a logic bug in the 'walk over request list' code, which
527           would sometimes result in a request being deleted while it
528           was still being processed.  Found by Rainer Clasen
529         * New 'tuning' guide, for optimizing the server's speed.
530         * The default ports are now 1812/1813, which is the standard.
531         * Fix a bug which would hang the server when many SQL connections
532           were open.  Found by Cvetan Ivanov <zezo@spnet.net>
533         * Updated MySQL schema, with sanity checks, based on a schema from
534           Thomas Huehn <huehn@eozaen.net>
535         * Added 'Aptis' (Nortel CVX) dictionary.
536         * Added Ipv6 attributes (as 'octets' type for now)
537         * 'xlat' capability for SQL, so other modules can do SQL queries.
538         * We don't need a shared secret for LOCAL realms.
539         * Added better description of internal variables.
540         * Configurable fail-over to DEFAULT realm.  Sometimes we don't
541           want to use the DEFAULT realm, if all configured realms are
542           marked dead.  From Rainer Clasen.
543         * new configuration items 'max_attributes' and 'reject_delay'
544           If the packet contains too many attributes, it can be rejected.
545           We can also delay sending an Access-Reject, which slows down
546           certain DoS attacks.
547         * Updates to redhat scripts and spec file, from Marko Myllynen.
548         * Python module (EXPERIMENTAL) from migs paraz <mparaz@yahoo.com>
549         * Add ability to find *best* match when comparing attributes.
550           If there is more than one attribute in a request and the first
551           one doesn't match, go check the second one, instead of failing.
552         * unixODBC support for SQL, from Dmitri Ageev <d_ageev@ortcc.ru>
553         * Use thread-safe versions of library calls.  This work is still
554           on-going.
555         * New rlm_passwd module, to allow general parsing of passwd-style
556           files.
557         * Preliminary EAP-TLS support.
558         * Updated LDAPv3 schema
559         * Correct checks for Odbc, and fix bugs in the module.
560           Andreas Kainz <aka@maxxio.at>
561         * MAN page fixes and updates
562         * Added PHP web interface 'dialup_admin'
563         * Password = "UNIX" or "PAM" backwards compatibility removed.
564         * Use the operators in the SQL schema and queries, and bug
565           fixes in the SQL module.
566           Randy Moore <ramoore@axion-it.net>
567         * fgetpwent() compatibility, for systems without it,
568           from Daniel Carroll <freeradius@defiant.mesastate.edu>
569         * Added PAP authentication module, as a step to removing
570           most authentication handlers in other modules.
571         * Send a Access-Reject after max_request_time
572         * Multiple fixes in the LDAP module.
573         * Quintum dictionary by Jeremy McNamara <jj@indie.org>
574         * Preliminary EAP Module with MD5 support
575           Contributed by Raghu <raghud@hereuare.com>
576         * Better sanity checking for bad VSA's when receiving a packet
577         * new 'xlat register' so that attribute values may be pulled
578           out of configurable databases at run-time.
579           e.g. %{ldap:ldap:///dc=company,dc=com?uid?sub?uid=%u}
580         * Minor fixes to debian package rules
581         * Attribute 'Password' deprecated in favor of 'User-Password'.
582         * MS-CHAP and MS-CHAPv2 MPPE support added.
583           Contributed by Takahiro Wagatsuma <waga@sic.shibaura-it.ac.jp>.
584         * X9.9 token enhancements (several).
585
586   --  Alan DeKok <aland@ox.org>
587
588 FreeRADIUS 0.4.0 ; urgency=low
589
590         * Allow the MS-CHAP module to work, and to read /etc/smbpass
591           3APA3A <3APA3A@SECURITY.NNOV.RU>
592         * Remove the server requirement that one of User-Password
593           or CHAP-Password exist when doing authentication.  These
594           checks should be handled by the modules.  This change
595           also prepares us for EAP.
596           Patch from Raghu <raghud@hereuare.com>
597         * Make NAS-Port-ID in radwho, raduse, etc. unsigned,
598           instead of signed.
599           Patch from John Morrissey <jwm@horde.net>
600         * Allow \t and \n inside of configuration strings.
601           Frank Cusack <fcusack@fcusack.com>
602         * X9.9 Challenge-Response token card support.
603           For now, only CRYPTOCard tokens are supported.
604           Frank Cusack <fcusack@fcusack.com>
605         * Fix core dump on Solaris in radwho.c
606           Patch from Eddie Stassen <eddies@saix.net>
607         * Fix leak / core dump in Oracle module.
608         * Fix memory leak in rlm_counter
609           Kostas Kalevras <kkalev@noc.ntua.gr>
610         * "LOCAL" realms do not need to have an entry in the 'clients'
611           file.  Philippe Levan <levan@epix.net>
612
613   --  Alan DeKok <aland@ox.org>
614
615 FreeRADIUS 0.3.0 ; urgency=low
616
617         * Added ability to send debug messages to the log file, when
618           running in daemon mode.
619         * Miscellaneous fixes to get Debian packaging working.
620         * When trapping a signal, don't SIGKILL children on a SIGTERM,
621           SIGTERM them, instead.  This allows Exec-Program scripts to
622           catch the signal, and finish processing, instead of dying.
623           Bug noted by Michael Chernyakhovsky <magmike@mail.ru>
624         * Increased limit on length of user name read from /etc/passwd,
625           to match the maximum allowed by RADIUS.
626           Bug noted by "Gonzalez B., Fernando" <fgonzalez@manquehue.cl>
627         * Configurable fail-over when proxying packets.  If the
628           home server doesn't respond to a repeated proxied request,
629           it's marked as 'dead', and the next one in the list is used.
630           Patch by Eddie Stassen <eddies@saix.net> and <spirn@21cn.com>
631         * Pass Access-Challenge attributes through the server, in
632           preparation for EAP.
633           Raghu <raghud@hereuare.com>
634         * More fixes for RFC compliance on the Message-Authenticator
635           Raghu <raghud@hereuare.com>
636         * Merged OSFC2/OSFSIA authentication patches from Cistron.
637           (Bug # 104)  The patches are not well tested, however.
638         * IBM DB2 UDB V7.1 SQL driver, contributed by
639           Joerg Wendland <wendland@scan-plus.de>
640         * Fix the IP + Port address assignment.
641           Bug found by "John Padula" <john_padula@aviancommunications.com>
642         * Patch to avoid smashing the contents of Ascend binary filters.
643           Michael Chernyakhovsky <magmike@mail.ru>
644         * Create and Validate Message-Authenticator attribute, in
645           preparation for EAP.
646         * Initialize variables properly in rlm_attr_filter.
647           Patch from Andriy I Pilipenko <bamby@marka.net.ua>
648         * Renamed RedHat init script from 'radiusd.init' to 'radiusd'.
649           This allows it to work properly with the RedHat rc system.
650           Patch from Christian Vogel <chris@amor.iksys.de>
651         * Fix the configure script checks for PostgreSQL, so that
652           they use the 'test' command properly.
653           Bug found by Robert Haskins <rhaskins@ziplink.net>
654         * Change instances of 'assert' to 'rad_assert', so that it
655           can log the error to the standard radius log files.
656           Patch from Vesselin Atanasov <vesselin@bgnet.bg>
657         * Patch to prevent segv when freeing results, from
658           Tomas Heredia <tomas@intermediasp.com>
659         * Added support for Exec-Program to acct.  Bug found by
660           <magmike@mail.ru>
661         * Corrected rlm_files so that raddb/acct_users works
662         * When doing synchronous proxying, update proxy next try
663           entries, so that the server doesn't eat CPU time.
664           Raghu <raghud@hereuare.com>
665         * Add primitive dictionary.nomadix <CBoyd@apogeetelecom.com>
666         * Log messages to console, if the logger hasn't been
667           initialized.  <vesselin@bgnet.bg>
668         * Log invalid user for proxy rejects, too. <help@visp.net>
669         * Fixed Expiration attribute handling.
670         * Added code to handle Ascend-Send-Secret and Ascend-Receive-Secret
671         * Removed non thread-pool code.  If we have threads, we now force
672           the use of thread pools.
673         * Update version number
674         * correct bug where proxied accounting packets would never have a
675           reply sent back to the NAS, or the reply would be sent twice.
676
677   --  Alan DeKok <aland@ox.org>
678         
679 FreeRADIUS Alpha 0.2.0, July 30, 2001.
680
681         * call openlog() again when using PAM, to get the correct log
682         facility.
683         * Update child thread code, to minimize race conditions.
684         * Make thread pools the default.  Using plain child threads is NOT
685         recommended.
686         * Ignore SIGPIPE to get ride of crashes when using ldap.
687         * Update proxying code to work better.
688         * Platform independent pthread_cancel()ling
689         * Fix 'unresponsive child pid' erroneous warning messages.
690         * Many changes to get various SQL modules working.
691         Note that there may still be some issues with Oracle.
692         * Added configure options 'with-rlm-FOO-include/lib-dir', so that
693         lower-level rlm_FOO modules can be configured via the top-level
694         configuration file.  This isn't completely done yet.
695         * Fix check for shared library using libtool info, instead of
696         assuming extension being ".so".
697         * Fixes for HPUX.  We probably need more.
698         * Many additional bug fixes and changes.