fix segv in unhide_value
[l2tpns.git] / Changes
1 * Tue Jun 14 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.1
2 - Add missing newline to backtrace macro.
3 - Don't send CDN for each session when shutting down tunnels (this is
4   implicit).
5 - Move tunnel shutdown from SIGQUIT signal handler to be run once from
6   still_busy().  Reject new tunnels/sessions while in the process of
7   shutting down.
8 - Clarify usage of shutdown signals in documentation.
9 - Always initialise PRNG.
10 - Sanity check length of random_vector.
11 - Fix segv in unhide_value.
12
13 * Sun Jun 5 2005 Brendan O'Dea <bod@optusnet.com.au> 2.1.0
14 - Add IPv6 support from Jonathan McDowell.
15 - Add CHAP support from Jordan Hrycaj.
16 - Add interim accounting support from Vladislav Bjelic.
17 - Negotiate MRU, default 1458 to avoid fragmentation.
18 - Sanity check that cluster_send_session is not called from a child
19   process.
20 - Use bounds-checking lookup functions for string constants.
21 - Add enum for RADIUS codes.
22 - Make "call_" prefix implict in CSTAT() macro.
23 - Fix some format string problems.
24 - Remove "save_state" option.  Not maintained anymore; use clustering
25   to retain state across restarts.
26 - Simplify AVP unhiding code.
27 - Add optional "username" parameter to ungarden control, allowing the
28   username to be reset before going online.
29 - Add result/error codes and message to StopCCN when shutting down tunnels.
30 - Add result/error codes to CDN when shutting down sessions.  Sends 2/7
31   (general error, try another LNS) when out of IP addresses, and 3
32   (adminstrative) for everything else (suggestion from Chris Gates).
33 - Use cli_error() for error messages and help.
34 - Don't use LOG() macro in initdata() until the config struct has been
35   allocated (uses config->debug).
36 - Initialise log_stream to stderr to catch errors before the config file
37   is read.
38 - Make "show running-config" a privileged command (contains clear text
39   shared secrets).
40 - Add sessionctl plugin to provide drop/kill via nsctl.
41 - New config option: allow_duplicate_users which determines whether
42   or not to kill older sessions with the same username.
43 - Fix byte counters in accounting records.
44 - Add Acct-Output-Gigawords, Acct-Input-Gigawords attributes to RADIUS
45   accounting packets.
46 - Fix icmp host unreachable to use router address.
47 - Include endpoint address in accounting dump files.
48 - Convert mainloop to use epoll rather than select.
49 - Add note about fragmentation in Docs/manual.html, and a sample
50   iptables rule for MSS clamping.
51 - Merge 2.0.22:
52   + Show session open time in "show session"/"show user" detailed output.
53   + Have slaves with BGP configured drop BGP on receipt of a shutdown
54     signal, but hang about for an additional 5s to process any remaining
55     traffic.
56   + Run regular_cleanups after processing the results of the select,
57     looking at a sufficient slice of each table to ensure that all
58     entries are examined at least once per second.
59 - Merge 2.0.21:
60   + Cluster changes from Michael, intended to prevent a stray master
61     from trashing a cluster:
62     = Ignore heartbeats from peers claiming to be the master before the
63       timeout on the old master has expired.
64     = A master receiving a stray heartbeat sends a unicast HB back, which
65       should cause the rogue to die due to the tie-breaker code.
66     = Keep probing the master for late heartbeats.
67     = Drop BGP as soon as we become master with the minumum required peers.
68     = Any PING seen from a master forces an election (rather than just
69       where basetime is zero).
70     = A slave which receives a LASTSEEN message (presumably a restarted
71       master) sends back new message type, C_MASTER which indicates the
72       address of the current master.
73   + New config option: cluster_master_min_adv which determines the minimum
74     number of up to date slaves required before the master will drop
75     routes.
76 - Merge 2.0.20:
77   + Add handling of "throttle=N" RADIUS attributes.
78   + Fix RADIUS indexing (should have 16K entries with 64 sockets).
79 - Merge 2.0.19:
80   + Fix leak in session freelist when initial RADIUS session allocation
81     fails.
82 - Merge 2.0.18:
83   + Add a Cisco-Avpair with intercept details to RADIUS Start/Stop
84     records.
85 - Merge 2.0.17:
86   + Only send RADIUS stop record in sessionshutdown when there's an ip address.
87   + Reset .die on master takeover (so that dying sessions don't have to
88     hang around until the new master has the same uptime as the old one).
89   + Update .last_packet in cluster_handle_bytes only when there have
90     been bytes received from the modem (dead sessions were having the
91     idle timeout reset by stray packets).
92 - Merge 2.0.16:
93   + Ensure that sessionkill is not called on an unopened session (borks
94     the freelist).
95   + Bump MAXSESSION to 60K.
96   + Fix off-by-one errors in session/tunnel initialisation and
97     sessiont <-> sessionidt functions.
98   + Use session[s].opened consistently when checking for in-use sessions
99     (rather than session[s].tunnel).
100   + Use <= cluster_highest_sessionid rather than < MAXSESSION in a
101     couple of loops.
102   + Don't kill a whole tunnel if we're out of sessions.
103   + Change session[s].ip to 0 if set from RADIUS to 255.255.255.254;
104     avoids the possibility that it will be interpreted as a valid IP
105     address.
106   + Avoid a possible buffer overflow in processpap.
107   + Kill session if authentication was rejected.
108 - Merge 2.0.15:
109   + More DoS prevention:  add packet_limit option to apply a hard limit
110     to downstream packets per session.
111   + Fix "clear counters".
112   + Log "Accepted connection to CLI" at 4 when connection is from localhost
113     to reduce noise in logs.
114   + Show time since last counter reset in "show counters".
115 - Merge 2.0.14:
116   + Throttle outgoing LASTSEEN packets to at most one per second for a
117     given seq#.
118
119 * Fri Dec 17 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.13
120 - Better cluster master collision resolution: keep a counter of state
121   changes, propagated in the heartbeats; the master with the highest #
122   of changes (that has kept in contact with the LAC through the
123   outage) prevails.
124 - Skip newlines in ringbuffer messages to CLI.
125 - Drop "Session N is closing" message level to 4; don't process PPPIP
126   packets in this state.
127 - Use gzip --best for man pages, include pid_file in sample
128   startup-config (from Jonathan's Debian package patches).
129 - Read multiple packets off cluster_sockfd as well as udpfd, tunfd in an
130   attempt to avoid losing the cluster in high load (DoS) conditions.
131 - Add counters for select_called, multi_read_used and multi_read_exceeded.
132 - Compress logs.
133 - Retain counters of shutdown sessions to dump once per minute.
134 - Use standard uintN_t types for portability.
135
136 * Wed Dec 1 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.12
137 - The "This time, for sure!" release.
138 - Fix throttlectl plugin argument parsing.
139
140 * Wed Dec 1 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.11
141 - Don't send a RADIUS start record when ungardening on shutdown.
142
143 * Wed Dec 1 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.10
144 - Fix byte ordering of LCP header length (thanks Yuri).
145 - Increase ip_conntrack_max due to dropped packets.
146
147 * Tue Nov 30 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.9
148 - Revise CCP, send ConfigReq once only.
149 - Don't copy the old buffer into Config{Nak,Rej} LCP responses (oops);
150   add length checks when appending.
151 - Do copy the identifier from the request and update length.
152 - Have makeppp print a backtrace on overflow.
153 - Check control serial before clearing window, prevents looping tunnel
154   setup in some instances.
155 - Implement named access-lists which may be applied to a session
156   either via Filter-Id RADIUS responses, or using the CLI.
157 - Drop ip address from LOG.
158 - autothrottle: revise parsing; ignore lcp:interface-config avpairs
159   which don't start with serv[ice-policy].
160 - Add THANKS file.
161
162 * Sat Nov 20 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.8
163 - Ignore gateway address in Framed-Route (from Jonathan McDowell).
164 - Don't route Framed-IP-Address if contained in a Framed-Route.
165 - Call sessionshutdown() when a tunnel is dropped rather than
166   sessionkill() to ensure that RADIUS stop records are sent.
167 - Cleanup: make a bunch of global functions/variables static.
168 - Remove reference to old -a command line argument.
169 - Add l2tpns(8) and nsctl(8) manpages from Jonathan McDowell.
170 - Add startup-config(5) manpage.
171 - Revise nsctl to allow arbitrary strings/args to be passed to plugins.
172 - Add snoopctl, throttlectl plugins.
173 - Fix deletion from linked list.
174 - Allow LCP re-negotiation after connection completes (thanks Yuri).
175
176 * Mon Nov 15 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.7
177 - Fix socket creation in host_unreachable() (thanks to Bjørn Augestad)
178 - Don't assume BGP peer sends back negotiated hold time, pick smallest
179
180 * Thu Nov 11 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.6
181 - Make BGP keepalive/hold time configurable
182 - Revise BGP config to use "router bgp AS" syntax (requires libcli >= 1.8.2)
183
184 * Tue Nov 9 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.5
185 - Handle routing properly in lone-master case 
186 - Fix intercepts:  don't double-snoop throttled customers, ensure
187   byte/packet counts are only updated once
188 - Add a callback to allow plugins to fetch values from the running config
189
190 * Mon Nov 8 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.4
191 - Added setrxspeed plugin
192 - Added peer_address config option
193 - Rename wrapper macros to LOG()/LOG_HEX(), use p->log() in plugins
194 - Replace some PPP{PAP,CHAP} magic numebrs with constants
195 - Nak asyncmap (unless == 0)
196 - Bundle ConfigRej options
197 - Clean up initlcp handling
198
199 * Wed Nov 3 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.3
200 - Added support for hidden AVPs by Robert Clark
201 - l2tpns-chap-response.patch from Robert Clark
202 - Merge l2tpns-config-hostname.patch from Robert Clark
203 - l2tpns-dont-timeshift-unidirectional-traffic.patch from Robert Clark - Dump accounting data if cin OR cout is non-zero
204 - Don't write accounting files if no accounting dir is set - Yuri
205 - Fix checking for mmap success
206 - Renegotiate MRU - Yuri
207 - Take LCP ConfigReq length from the packet length field - Yuri
208 - Hostname set via command line not config
209 - Make number of throttle buckets configurable
210 - Shared_malloc returns NULL on failure
211 - Sync changes
212 - Unfsck 4->8 indenting change
213 - Use 2 seperate u16 values for throttle rate in/out
214 - Defer adding radius fds to the select loop until become_master
215
216 * Thu Sep 02 2004 David Parrish <david@dparrish.com> 2.0.2
217 - Combined LCP patches from Iain and Yuri. This should allow Windows 2k/XP
218   clients to connect, as well Linksys DSL modems.
219 - Apply patch to fix -v option from Juergen Kammer.
220 - Makefile fix from Juergen Kammer to not overwrite existing config files on
221   make install
222 - Configurable radius port patch from Juergen Kammer.
223 - Send my_address if no bind_address when doing IPCP
224 - Write pid file if filename is set
225 - Add startup script and monitor script from Yuri
226 - Some logging correctness fixes from Iain Wade
227 - Add support for LCP Ident and CallBack (rejection only) from Yuri
228 - Initiate LCP if not attempted by the client, or in renegotiation - Yuri
229 - Indentation and style cleanups
230 - Per-user upload and download throttle rates - Yuri
231 - Make autothrottle.so understand cisco lcp:interface-config - Yuri
232 - Show filter stats in show session - Yuri
233 - Cleanup from Michael to change sid to unique_id
234 - Add plugin to remove domain name from auth requests
235 - Add .spec file for RPM generation
236
237 * Tue Jul 13 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.1
238 - Update INSTALL, Docs/manual.html documentation.
239 - Add INTERNALS documentation.
240 - Add lock_pages option.
241 - TerminateAck fix from Yuri
242 - Adject cli_loop args for libcli 1.8.0
243 - Allow for backward compatabity in C_PING packets
244 - Don't send RADIUS stop messages from sessionshutdown when called from
245   sessionkill.
246 - s/tap/tun/ .
247 - Fix for LASTSEEN breakage:  don't do anything in the CLI other than
248   flag changes to be made by the parent.
249 - Split out master parts from cluster_check_master() into cluster_check_slaves().
250 - Set hostname in CLI prompt.
251 - Make cluster_hb_interval work; include interval/timeout in heartbeats
252   so that a change on the master is propagated immediately to the slaves.
253 - Use fast heartbeats when there are slaves not up to date.
254 - Ensure basetime of shut down master is set to zero (prevent delayed election).
255 - Fix radius session leak on IPCP timeout.
256 - Fix some off-by-one errors in tunnel/session loops.
257 - Add "limp along" fix for when a slave drops temporarily from the mcast group.
258 - Rename l2tpns.cfg as startup-config to match CONFIGFILE.
259 - Update cli callbacks to work with libcli 1.6.
260   This supports privileged and unprivileged commands, as well as a configuration
261   mode.
262 - Add help for all cli commands.
263 - Add "show version" command.
264 - Fix uptime counter display.
265 - Fix nasty bug where cluster basetime can be set to 0 when sending initial
266   heartbeat.
267 - Don't rmmod ip_conntrack, as this can take a lot of time.
268 - Re-order logging in routeset such that the action is given before any error.
269 - Use the correct gateway address when deleting routes.
270 - Remove any routes when address changes.
271 - Require authentication if telnet from remote ip.
272 - Require enable password always.
273 - Return error if show pool done on slave.
274 - We MUST immediately exit if we're the wrong master!
275
276 * Wed Jun 23 2004 David Parrish <david@dparrish.com> 2.0.0
277 - Major release
278 - Completely replace active/standby clustering with a new peer-to-peer
279   clustering method which allows much greater throughput and is a lot more fault
280   tolerant
281 - Add internal tbf implementation for throttling without relying on tc and
282   kernel HTB
283 - Add support for iBGP and eBGP to advertise routes
284 - Add cli commands "show cluster", "show bgp", "show ipcache", "show throttle",
285   "show tbf", "suspend bgp", "restart bgp", "show user"
286 - Interception destination must be set per-user
287 - If SMP machine, allow use of SCHED_FIFO, which should improve performance
288 - Added config option to send GARP at startup
289 - Added plugin_become_master and plugin_new_session_master plugin hooks
290 - Remove useless sessionsendarp(). This isn't needed now that we are using TUN
291   instead of TAP.
292 - ICMP rate limiting so not every unreachable packet is replied with an ICMP
293   unreachable message
294 - mangle table is not required on anything but the cluster master, so slaves
295   will drop the mangle table and attempt to unload the ip_conntrack module
296 - Statically assigned IP addresses (by Radius) work now
297 - Add -d command-line flag to detach and become a daemon
298 - Configuration file is now "/etc/l2tpns/startup-config"
299 - Reduced MIN_IP_SIZE to 0x19 to stop a pile of Short IP warnings
300 - Resend initial IPCP request until it's acknowleged by the client
301 - Better radius session cleanup logic
302 - Many miscellaenous bugfixes and performance enhancements
303 - Thanks to Michael O'Reilly and Brendan O'Dea for most of these new features
304
305 * Mon May 24 2004 David Parrish <david@dparrish.com> 1.2.0
306 - Fix SEGFAULT in garden module
307 - Use multiple radius sockets to allow more concurrent authentication requests
308 - Add username parameter to "show users" command
309 - Fix counting tunnel rx errors as tunnel tx errors
310 - Add "show throttle" command
311 - Add gcc __attribute__ to logging functions
312 - Fix warnings shown by __attribute__
313 - Make sure regular cleanup happens regularly under high load
314 - Add variable cleanup_interval for changing cleanup interval
315 - Add support for reading more than one packet per fd in each processing loop
316 - This is configurable with the multi_read_count variable
317 - Remove segv handler so core dumps can happen
318 - Use nonblocking sockets
319 - Increase tun queue length
320 - Fix minimum length of IP packets
321 - Remove per-packet plugin hooks (they are slow)
322 - Don't drop session if no free RADIUS
323 - Don't expire more than 1000 sessions per cleanup interval
324 - Remove -a and -c command-line options. They don't work anyway
325 - Don't require file: in log_filename
326 - Bump version to 1.2.0
327 - Check return code when throttling users
328
329 * Mon Apr 5 2004 David Parrish <david@dparrish.com> 1.1.1
330 - Don't mention configure anymore, it's not used
331 - Added the autosnoop and autothrottle modules
332 - Don't default to using a htb for the class root
333
334 * Fri Mar 5 2004 David Parrish <david@dparrish.com> 1.1.0
335 - Change all strcpy() calls to strncpy() to avoid buffer overflow potential
336 - Add ICMP host unreachable support
337 - Logging to syslog if log_file = "syslog:facility"
338 - Now requires libcli 1.5
339 - All configuration moves to a config structure
340 - Ability to modify and write config on the fly through command-line interface
341 - Config file support is removed, and now handled by the cli
342 - Show hostname in cli prompt
343 - Keep current state type for tunnels
344 - Add uptime command do CLI, which also shows real-time bandwidth utilisation
345 - Add goodbye command to cluster master, which forces droppping a slave
346 - Cache IP address allocation, so that reconnecting users get the same address
347 - Fix tunnel resend timeouts, so that dead tunnels will be cleaned up
348 - Allocate tunnels and radius without using a linked list which had issues
349 - Fix some off-by-one errors in tunnel and session and radius arrays
350 - Save and reload ip address pool when dieing
351 - Check version and size of reloaded data when restarting
352 - Remove plugin_config support
353 - Remove old support for TBF which didn't work anyway. HTB is required to do throttling now.
354 - Add COPYING and Changes files