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