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