blob: 288a68797c5ed3119cf1a300da753d0f98aca055 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
willy tarreau77bc8542005-12-18 01:31:43 +010042005/10/25
5 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
6 least on Solaris, this caused the libc's regex primitives to be used instead
7 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +01008 - delayed the quiet mode during startup so that most of the startup alerts can
9 be displayed even in quiet mode.
10 - display an alert when a listener has no address, invalid or no port, or when
11 there are no enabled listeners upon startup.
willy tarreau77bc8542005-12-18 01:31:43 +010012
willy tarreaub952e1d2005-12-18 01:31:20 +0100132005/10/09 : 1.2.7rc (1.1.33rc)
14 - second batch of socklen_t changes.
15 - clean-ups from Cameron Simpson.
16 - because tv_remain() does not know about eternity, using no timeout can
17 make select() spin around a null time-out. Bug reported by Cameron Simpson.
18 - client read timeout was not properly set to eternity initialized after an
19 accept() if it was not set in the config. It remained undetected so long
20 because eternity is 0 and newly allocated pages are zeroed by the system.
21 - do not call get_original_dst() when not in transparent mode.
22 - implemented a workaround for a bug in certain epoll() implementations on
23 linux-2.4 kernels (epoll-lt <= 0.21).
24 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
25
willy tarreauc5f73ed2005-12-18 01:26:38 +0100262005/08/07 : 1.2.6
27 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
28
292005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +010030 - added the number of active sessions (proxy/process) in the logs
31
322005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +010033 - the time-out fix introduced in 1.1.25 caused a corner case where it was
34 possible for a client to keep a connection maintained regardless of the
35 timeout if the server closed the connection during the HEADER phase,
36 while the client ignored the close request while doing nothing in the
37 other direction. This has been fixed now by ensuring that read timeouts
38 are re-armed when switching to any SHUTW state.
39
402005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
41 - enhanced error reporting in the logs. Now the proxy will precisely detect
42 various error conditions related to the system and/or process limits, and
43 generate LOG_EMERG logs indicating that a resource has been exhausted.
44 - logs will contain two new characters for the error cause : 'R' indicates
45 a resource exhausted, and 'I' indicates an internal error, though this
46 one should never happen.
47 - server connection timeouts can now be reported in the logs (sC), as well
48 as connections refused because of maxconn limitations (PC).
49
502005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
51 - new global configuration keyword "ulimit-n" may be used to raise the FD
52 limit to usable values.
53 - a warning is now displayed on startup if the FD limit is lower than the
54 configured maximum number of sockets.
55
562005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
57 - new configuration keyword "monitor-net" makes it possible to be monitored
58 by external devices which connect to the proxy without being logged nor
59 forwarded to any server. Particularly useful on generic TCPv4 relays.
60
willy tarreau5dffb602005-12-18 01:15:23 +0100612005/06/21 : 1.2.5.2
62 - fixed build on PPC where chars are unsigned by default
63
willy tarreau08dedbe2005-12-18 01:13:48 +0100642005/05/02 : 1.2.5.1
65 - dirty hack to fix a bug introduced with epoll : if we close an FD and
66 immediately reassign it to another session through a connect(), the
67 Prev{Read,Write}Events are not updated, which causes trouble detecting
68 changes, thus leading to many timeouts at high loads.
69
willy tarreau64a3cc32005-12-18 01:13:11 +0100702005/04/30 : 1.2.5 (1.1.31)
71 - changed the runtime argument to disable epoll() to '-de'
72 - changed the runtime argument to disable poll() to '-dp'
73 - added global options 'nopoll' and 'noepoll' to do the same at the
74 configuration level.
75 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
76 support epoll().
77 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
78 - conditionned signals redirection to #ifdef DEBUG_MEMORY
79
willy tarreau1c2ad212005-12-18 01:11:29 +0100802005/04/26 : 1.2.5-pre4
81 - made epoll() support a compile-time option : ENABLE_EPOLL
82 - provided a very little libc replacement for a possibly missing epoll()
83 implementation which can be enabled by -DUSE_MY_EPOLL
84 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
85 The equivalent runtime argument becomes '-P'. A few tests show that it
86 performs like select() with many fds, but slightly slower (certainly
87 because of the higher amount of memory involved).
88 - separated the 3 polling methods and the tasks scheduler into 4 distinct
89 functions which makes the code a lot more modular.
90 - moved some event tables to private static declarations inside the poller
91 functions.
92 - the poller functions can now initialize themselves, run, and cleanup.
93 - changed the runtime argument to enable epoll() to '-E'.
94 - removed buggy epoll_ctl() code in the client_retnclose() function. This
95 function was never meant to remove anything.
96 - fixed a typo which caused glibc to yell about a double free on exit.
97 - removed error checking after epoll_ctl(DEL) because we can never know if
98 the fd is still active or already closed.
99 - added a few entries in the makefile
100
willy tarreauad90a0c2005-12-18 01:09:15 +01001012005/04/25 : 1.2.5-pre3
102 - experimental epoll() support (use temporary '-e' argument)
103
1042005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +0100105 - implemented the HTTP 303 code for error redirection. This forces the
106 browser to fetch the given URI with a GET request. The new keyword for
107 this is 'errorloc303', and a new 'errorloc302' keyword has been created
108 to make them easily distinguishable.
109 - added more controls in the parser for valid use of '\x' sequence.
110 - few fixes from Alex & Klaus
111
willy tarreauad90a0c2005-12-18 01:09:15 +01001122005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +0100113 - fixed a few errors in the documentation
114
1152005/02/13
116 - do not pre-initialize unused file-descriptors before select() anymore.
117
willy tarreau12350152005-12-18 01:03:27 +01001182005/01/22 : 1.2.4
119 - merged Alexander Lazic's and Klaus Wagner's work on application
120 cookie-based persistence. Since this is the first merge, this version is
121 not intended for general use and reports are more than welcome. Some
122 documentation is really needed though.
123
willy tarreau0174f312005-12-18 01:02:42 +01001242005/01/22 : 1.2.3 (1.1.30)
125 - add an architecture guide to the documentation
126 - released without any changes
127
1282004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
129 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
130 compatible with Apache. This limit can be configured in the makefile now.
131 Thanks to Eric Fehr for the checks.
132 - added a per-server "source" option which now makes it possible to bind to
133 a different source for each (potentially identical) server.
134 - changed cookie-based server selection slightly to allow several servers to
135 share a same cookie, thus making it possible to associate backup servers to
136 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
137 - added the cookie 'prefix' mode which makes it possible to use persistence
138 with thin clients which support only one cookie. The server name is prefixed
139 before the application cookie, and restore back.
140 - fixed the order of servers within an instance to match documentation. Now
141 the servers are *really* used in the order of their declaration. This is
142 particularly important when multiple backup servers are in use.
143
willy tarreau4302f492005-12-18 01:00:37 +01001442004/10/18 : 1.2.2 (1.1.29)
145 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
146 option was enabled without the 'tcplog' option.
147 - encode_string() would use hdr_encode_map instead of the map argument.
148
1492004/08/10 : (1.1.29-pre2)
150 - the logged request is now encoded with '#XX' for unprintable characters
151 - new keywords 'capture request header' and 'capture response header' enable
152 logging of arbitrary HTTP headers in requests and responses
153 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
154
willy tarreau982249e2005-12-18 00:57:06 +01001552004/06/06 : 1.2.1 (1.1.28)
156 - added the '-V' command line option to verbosely report errors even though
157 the -q or 'quiet' options are specified. This is useful with '-c'.
158 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +0100159
willy tarreau982249e2005-12-18 00:57:06 +01001602004/06/05 :
161 - added the "logasap" option which produces a log without waiting for the data
162 to be transferred from the server to the client.
163 - added the "httpclose" option which removes any "connection:" header and adds
164 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +0100165 - added the 'checkcache' option which blocks cacheable responses containing
166 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +0100167 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
168 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +0100169
1702004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +0100171 - send an EMERG log when no server is available for a given proxy
172 - added the '-c' command line option to syntactically check the
173 configuration file without starting the service.
174
willy tarreau8a86dbf2005-12-18 00:45:59 +01001752003/11/09 : 1.2.0
176 - the same as 1.1.27 + IPv6 support on the client side
177
willy tarreaufe2c5c12005-12-17 14:14:34 +01001782003/10/27 : 1.1.27
179 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
180 bug : the code still assumed that HTTP requests were the same size as the
181 original ones (22 bytes), and failed if they were not.
182 - added support for pidfiles.
183
willy tarreauc58fc692005-12-17 14:13:08 +01001842003/10/22 : 1.1.26
185 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
186 broke almost all compatibility with POST requests, because the proxy
187 stopped to read anything from the client as soon as it got all of its
188 headers.
189
willy tarreauc1cae632005-12-17 14:12:23 +01001902003/10/15 : 1.1.25
191 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
192 generic TCP proxies, or lighter logs for HTTP proxies.
193 - fixed a time-out condition wrongly reported as client time-out in data
194 phase if the client timeout was lower than the connect timeout times the
195 number of retries.
196
willy tarreau197e8ec2005-12-17 14:10:59 +01001972003/09/21 : 1.1.24
198 - if a client sent a full request then shut its write connection down, then
199 the request was aborted. This case was detected only when using haproxy
200 both as health-check client and as a server.
201 - if 'option httpchk' is used in a 'health' mode server, then responses will
202 change from 'OK' to 'HTTP/1.0 200 OK'.
203 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
204 server response followed by a close could be ignored, and the server seen
205 as failed.
206
willy tarreaueedaa9f2005-12-17 14:08:03 +01002072003/09/19 : 1.1.23
208 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
209 'default' sections to keep previous parameters, and not initialize logs
210 correctly.
211 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
212 relying on 'dispatch' mode to segfault at the first connection.
213 - 'option httpchk' now supports method, HTTP version and a few headers.
214 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
215 'defaults' section
216
2172003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +0100218 - 'listen' now supports optionnal address:port-range lists
219 - 'bind' introduced to add new listen addresses
220 - fixed a bug which caused a session to be kept established on a server till
221 it timed out if the client closed during the DATA phase.
222 - the port part of each server address can now be empty to make the proxy
223 connect to the server on the same port it was connected to, be an absolute
224 unsigned number to reflect a single port (as in older versions), or an
225 explicitly signed number (+N/-N) to indicate that this offset must be
226 applied to the port the proxy was connected to, when connecting to the
227 server.
228 - the 'port' server option allows the user to specify a different
229 health-check port than the service one. It is mandatory when only relative
230 ports have been specified and check is required. By default, the checks are
231 sent to the service port.
232 - new 'defaults' section which is rather similar to 'listen' except that all
233 values are only used as default values for future 'listen' sections, until
234 a new 'defaults' resets them. At the moment, server options, regexes,
235 cookie names and captures cannot be set in the 'defaults' section.
236
willy tarreau2f6ba652005-12-17 13:57:42 +01002372003/05/06 : 1.1.21
238 - changed the debug output format so that it now includes the session unique
239 ID followed by the instance name at the beginning of each line.
240 - in debug mode, accept now shows the client's IP and port.
241 - added one 3 small debugging scripts to search and pretty print debug output
242 - changed the default health check request to "OPTIONS /" instead of
243 "OPTIONS *" since not all servers implement the later one.
244 - "option httpchk" now accepts an optional parameter allowing the user to
245 specify and URI other than '/' during health-checks.
246
willy tarreaub1ff9db2005-12-17 13:51:03 +01002472003/04/21 : 1.1.20
248 - fixed two problems with time-outs, one where a server would be logged as
249 timed out during transfer that take longer to complete than the fixed
250 time-out, and one where clients were logged as timed-out during the data
251 phase because they didn't have anything to send. This sometimes caused
252 slow client connections to close too early while in fact there was no
253 problem. The proper fix would be to have a per-fd time-out with
254 conditions depending on the state of the HTTP FSM.
255
willy tarreau906b2682005-12-17 13:49:52 +01002562003/04/16 : 1.1.19
257 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
258 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
259 cookie persistence because it uses "cookie:". Two memcmp() have been
260 replaced with strncasecmp().
261
willy tarreau036e1ce2005-12-17 13:46:33 +01002622003/04/02 : 1.1.18
263 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
264 REGEX=pcre on the make command line.
265 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
266 - when explicit source address binding is required, it is now also used for
267 health-checks.
268 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
269 itself.
270 - factored several strings to reduce binary size by about 2 kB.
271 - replaced setreuid() and setregid() with more standard setuid() and setgid().
272 - added 4 status flags to the log line indicating who ended the connection
273 first, the sessions state, the validity of the cookie, and action taken on
274 the set-cookie header.
275
2762002/10/18 : 1.1.17
277 - add the notion of "backup" servers, which are used only when all other
278 servers are down.
279 - make Set-Cookie return "" instead of "(null)" when the server has no
280 cookie assigned (useful for backup servers).
281 - "log" now supports an optionnal level name (info, notice, err ...) above
282 which nothing is sent.
283 - replaced some strncmp() with memcmp() for better efficiency.
284 - added "capture cookie" option which logs client and/or server cookies
285 - cleaned up/down messages and dump servers states upon SIGHUP
286 - added a redirection feature for errors : "errorloc <errnum> <url>"
287 - now we won't insist on connecting to a dead server, even with a cookie,
288 unless option "persist" is specified.
289 - added HTTP/408 response for client request time-out and HTTP/50[234] for
290 server reply time-out or errors.
291
2922002/09/01 : 1.1.16
293 - implement HTTP health checks when option "httpchk" is specified.
294
2952002/08/07 : 1.1.15
296 - replaced setpgid()/setpgrp() with setsid() for better portability, because
297 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
298
2992002/07/20 : 1.1.14
300 - added "postonly" cookie mode
301
3022002/07/15 : 1.1.13
303 - tv_diff used inverted parameters which led to negative times !
304
3052002/07/13 : 1.1.12
306 - fixed stats monitoring, and optimized some tv_* for most common cases.
307 - replaced temporary 'newhdr' with 'trash' to reduce stack size
308 - made HTTP errors more HTML-fiendly.
309 - renamed strlcpy() to strlcpy2() because of a slightly difference between
310 their behaviour (return value), to avoid confusion.
311 - restricted HTTP messages to HTTP proxies only
312 - added a 502 message when the connection has been refused by the server,
313 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
314 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
315 inserting a cookie, because some caches (apache) don't understand it.
316 - fixed processing of server headers when client is in SHUTR state
317
3182002/07/04 :
319 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
320 setpgid()
321
3222002/06/04 : 1.1.11
323 - fixed multi-cookie handling in client request to allow clean deletion
324 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +0100325 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +0100326 - added a "nocache" option to "cookie" to specify that we explicitly want
327 to add a "cache-control" header when we add a cookie.
328 It is also possible to add an "Expires: <old-date>" to keep compatibility
329 with old/broken caches.
330
3312002/05/10 : 1.1.10
332 - if a cookie is used in insert+indirect mode, it's desirable that the
333 the servers don't see it. It was not possible to remove it correctly
334 with regexps, so now it's removed automatically.
335
3362002/04/19 : 1.1.9
337 - don't use snprintf()'s return value as an end of message since it may
338 be larger. This caused bus errors and segfaults in internal libc's
339 getenv() during localtime() in send_log().
340 - removed dead insecure send_syslog() function and all references to it.
341 - fixed warnings on Solaris due to buggy implementation of isXXXX().
342
3432002/04/18 : 1.1.8
344 - option "dontlognull"
345 - fixed "double space" bug in config parser
346 - fixed an uninitialized server field in case of dispatch
347 with no existing server which could cause a segfault during
348 logging.
349 - the pid logged was always the father's, which was wrong for daemons.
350 - fixed wrong level "LOG_INFO" for message "proxy started".
351
3522002/04/13 :
353 - http logging is now complete :
354 - ip:port, date, proxy, server
355 - req_time, conn_time, hdr_time, tot_time
356 - status, size, request
357 - source address
358
3592002/04/12 : 1.1.7
360 - added option forwardfor
361 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
362 - added "log global" in "listen" section.
363
3642002/04/09 :
365 - added a new "global" section :
366 - logs
367 - debug, quiet, daemon modes
368 - uid, gid, chroot, nbproc, maxconn
369
3702002/04/08 : 1.1.6
371 - regex are now chained and not limited anymore.
372 - unavailable server now returns HTTP/502.
373 - increased per-line args limit to 40
374 - added reqallow/reqdeny to block some request on matches
375 - added HTTP 400/403 responses
376
3772002/04/03 : 1.1.5
378 - connection logging displayed incorrect source address.
379 - added proxy start/stop and server up/down log events.
380 - replaced log message short buffers with larger trash.
381 - enlarged buffer to 8 kB and replace buffer to 4 kB.
382
3832002/03/25 : 1.1.4
384 - made rise/fall/interval time configurable
385
3862002/03/22 : 1.1.3
387 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
388 which could lead to loops.
389
3902002/03/21 : 1.1.2
391 - fixed a bug in buffer management where we could have a loop
392 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
393 => implemented an adjustable buffer limit.
394 - fixed a bug : expiration of tasks in wait queue timeout is used again,
395 and running tasks are skipped.
396 - added some debug lines for accept events.
397 - send warnings for servers up/down.
398
3992002/03/12 : 1.1.1
400 - fixed a bug in total failure handling
401 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
402
4032002/03/10 : 1.1.0
404 - fixed a few timeout bugs
405 - rearranged the task scheduler subsystem to improve performance,
406 add new tasks, and make it easier to later port to librt ;
407 - allow multiple accept() for one select() wake up ;
408 - implemented internal load balancing with basic health-check ;
409 - cookie insertion and header add/replace/delete, with better strings
410 support.
411
4122002/03/08
413 - reworked buffer handling to fix a few rewrite bugs, and
414 improve overall performance.
415 - implement the "purge" option to delete server cookies in direct mode.
416
4172002/03/07
418 - fixed some error cases where the maxfd was not decreased.
419
4202002/02/26
421 - now supports transparent proxying, at least on linux 2.4.
422
4232002/02/12
424 - soft stop works again (fixed select timeout computation).
425 - it seems that TCP proxies sometimes cannot timeout.
426 - added a "quiet" mode.
427 - enforce file descriptor limitation on socket() and accept().
428
4292001/12/30 : release of version 1.0.2 : fixed a bug in header processing
4302001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
4312001/12/16 : release of version 1.0.0.
4322001/12/16 : added syslog capability for each accepted connection.
4332001/11/19 : corrected premature end of files and occasional SIGPIPE.
4342001/10/31 : added health-check type servers (mode health) which replies OK then closes.
4352001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
436 with or without cookies (use keyword http for this).
4372001/09/01 : added client/server header replacing with regexps.
438 eg:
439 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
440 srvexp ^Server:\ .* Server:\ Apache
4412000/11/29 : first fully working release with complete FSMs and timeouts.
4422000/11/28 : major rewrite
4432000/11/26 : first write