blob: 2719dee65687a2e0bb31353b5a72bb295a6a778c [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
Willy Tarreaue7a24382007-01-22 08:57:44 +010042007/01/22 : 1.3.6.1
5 - change in the header chaining broke cookies and authentication
6
Willy Tarreau49e1ee82007-01-22 00:56:46 +010072007/01/22 : 1.3.6
8 - stats now support the HEAD method too
9 - extracted http request from the session
10 - huge rework of the HTTP parser which is now a 28-state FSM.
11 - linux-style likely/unlikely macros for optimization hints
12 - do not create a server socket when there's no server
13 - imported lots of docs
14
Willy Tarreau5871f8e2007-01-07 02:47:01 +0100152007/01/07 : 1.3.5
16 - stats: swap color sets for active and backup servers
17 - try to guess server check port when unset
18 - added complete support and doc for TCP Splicing
19 - replace the wait-queue linked list with an rbtree.
20 - a few bugfixes and cleanups
21
Willy Tarreau85270da2007-01-02 00:59:39 +0100222007/01/02 : 1.3.4
23 - support for cttproxy on the server side to present the client
24 address to the server.
25 - added support for SO_REUSEPORT on Linux (needs kernel patch)
26 - new RFC2616-compliant HTTP request parser with header indexing
27 - split proxies in frontends, rulesets and backends
28 - implemented the 'req[i]setbe' to select a backend depending
29 on the contents
30 - added the 'default_backend' keyword to select a default BE.
31 - new stats page featuring FEs and BEs + bytes in both dirs
32 - improved log format to indicate the backend and the time in ms.
33 - lots of cleanups
34
Willy Tarreau9c9fea42006-10-16 00:03:35 +0200352006/10/15 : 1.3.3
36 - fix broken redispatch option in case the connection has already
37 been marked "in progress" (ie: nearly always).
38 - support regparm on x86 to speed up some often called functions
39 - removed a few useless calls to gettimeofday() in log functions.
40 - lots of 'const char*' cleanups
41 - turn every FD_* into functions which are faster on recent CPUs
42
Willy Tarreau690f9aa2006-09-03 11:23:06 +0200432006/09/03 : 1.3.2
44 - started the changes towards I/O completion callbacks. stream_sock* have
45 replaced event_*.
46 - added the new "reqtarpit" and "reqitarpit" protection features
47
Willy Tarreau8f2b8552006-07-09 17:11:39 +0200482006/07/09 : 1.3.1 (1.2.15)
49 - now, haproxy warns about missing timeout during startup to try to
50 eliminate all those buggy configurations.
51 - added "Content-Type: text/html" in responses wherever appropriate, as
52 suggested by Cameron Simpson.
53 - implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to
54 test server's health
55 - implemented "monitor-uri" so that haproxy can reply to a specific URI with
56 an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies
57 at once.
58
Willy Tarreaub9e98b62006-07-03 10:32:46 +0200592006/06/29 : 1.3.0
60 - exploded the whole file into multiple .c and .h. No functionnal
Willy Tarreau8f2b8552006-07-09 17:11:39 +020061 difference is expected at all.
62 - fixed a bug by which neither stats nor error messages could be returned if
63 'clitimeout' was missing.
Willy Tarreaub9e98b62006-07-03 10:32:46 +020064
willy tarreau7e6328d2006-05-21 23:26:20 +0200652006/05/21 : 1.2.14
66 - new HTML status report with the 'stats' keyword.
67 - added the 'abortonclose' option to better resist traffic surges
68 - implemented dynamic traffic regulation with the 'minconn' option
69 - show request time on denied requests
70 - definitely fixed hot reconf on OpenBSD by the use of SO_REUSEPORT
71 - now a proxy instance is allowed to run without servers, which is
72 useful to dedicate one instance to stats
73 - added lots of error counters
74 - a missing parenthesis preventd matching of cacheable cookies
75 - a missing parenthesis in poll_loop() might have caused missed events.
76
Willy TARREAU4404b7e2006-05-14 10:00:09 +0200772006/05/14 : 1.2.13.1
78 - an uninitialized field in the struct session could cause a crash when
79 the session was freed. This has been encountered on Solaris only.
80 - Solaris and OpenBSD no not support shutdown() on listening socket. Let's
81 be nice to them by performing a soft stop if pause fails.
82
willy tarreauc3a2e072006-05-13 18:51:38 +0200832006/05/13 : 1.2.13
84 - 'maxconn' server parameter to do per-server session limitation
85 - queueing to support non-blocking session limitation
86 - fixed removal of cookies for cookie-less servers such as backup servers
87 - two separate wait queues for expirable and non-expirable tasks provide
88 better performance with lots of sessions.
89 - some code cleanups and performance improvements
90 - made state dumps a bit more verbose
91 - fixed missing checks for NULL srv in dispatch mode
92 - load balancing on backup servers was not possible in source hash mode.
93 - two session flags shared the same bit, but fortunately they were not
94 compatible.
95
willy tarreauc0d4bbd2006-04-15 21:47:50 +0200962006/04/15 : 1.2.12
97 Very few changes preparing for more important changes to support per-server
98 session limitations and queueing :
99 - ignore leading empty lines in HTTP requests as suggested by RFC2616.
100 - added the 'weight' parameter to the servers, limited to 1..256. It applies
101 to roundrobin and source hash.
102 - the optional '-s' option could clobber '-st' and '-sf' if compiled in.
103
willy tarreaue0dd2692006-03-30 16:27:34 +02001042006/03/30 : 1.2.11.1
105 - under some conditions, it might have been possible that when the
106 last dead server became available, it would not have been used
107 till another one would have changed state. Could not be reproduced
108 at all, however seems possible from the code.
109
willy tarreaud2058dc2006-03-25 20:35:41 +01001102006/03/25 : 1.2.11
111 - added the '-db' command-line option to disable backgrounding.
112 - added the -sf/-st command-line arguments which are used to specify
113 a list of pids to send a FINISH or TERMINATE signal upon startup.
114 They will also be asked to release their port if a bind fails.
115 - reworked the startup mechanism to allow the sending of a signal to a list
116 of old pids if a socket cannot be bound, with a retry for a limited amount
117 of time (1 second by default).
118 - added the ability to enforce limits on memory usage.
119 - added the 'source' load-balancing algorithm which uses the source IP(v4|v6)
120 - re-architectured the server round-robin mechanism to ease integration of
121 other algorithms. It now relies on the number of active and backup servers.
122 - added a counter for the number of active and backup servers, and report
123 these numbers upon SIGHUP or state change.
124
willy tarreaubfad5742006-03-23 14:19:11 +01001252006/03/23 : 1.2.10.1
126 - while fixing the backup server round-robin "feature", a new bug was
127 introduced which could miss some backup servers.
128 - the displayed proxy name was wrong when dumping upon SIGHUP.
129
willy tarreauaaff30e2006-03-19 21:30:41 +01001302006/03/19 : 1.2.10
131 - assert.h is needed when DEBUG is defined.
132 - ENORMOUS long standing bug affecting the epoll polling system :
133 event_data is a union, not a structure !
134 - Make fd management more robust and easier to debug. Also some
135 micro-optimisations.
136 - Limit the number of consecutive accept() in multi-process mode.
137 This produces a more evenly distributed load across the processes and
138 slightly improves performance by reducing bottlenecks.
139 - Make health-checks be more regular, and faster to retry after a timeout.
140 - Fixed some messages to ease parsing of alerts.
141 - provided a patch to enable epoll on RHEL3 kernels.
142 - Separated OpenBSD build from the main Makefile into a new one.
143
willy tarreau50be0172006-03-15 19:41:19 +01001442006/03/15 : 1.2.9
145 - haproxy could not be stopped after being paused, it had to be woken up
146 first. This has been fixed.
147 - the 'ulimit-n' parameter is now optional and by default computed from
148 maxconn + the number of listeners + the number of health-checks.
149 - it is now possible to specify a maximum number of connections at build
150 time with the SYSTEM_MAXCONN define. The value set in the configuration
151 file will then be limited to this value, and only the command-line '-n'
152 option will be able to bypass it. It will prevent against accidental
153 high memory usage on small systems.
154 - RFC2616 expects that any HTTP agent accepts multi-line headers. Earlier
155 versions did not detect a line beginning with a space as the continuation
156 of previous header. It is now correct.
157 - health checks sent to servers configured with identical intervals were
158 sent in perfect synchronisation because the initial time was the same
159 for all. This could induce high load peaks when fragile servers were
160 hosting tens of instances for the same application. Now the load is
161 spread evenly across the smallest interval amongst a listener.
162 - a new 'forceclose' option was added to make the proxy close the outgoing
163 channel to the server once it has sent all its headers and the server
164 starts responding. This helps some servers which don't close upon the
165 'Connection: close' header. It implies 'option httpclose'.
166 - there was a bug in the way the backup servers were handled. They were
167 erroneously load-balanced while the doc said the opposite. Since
168 load-balanced backup servers is one of the features some people have
169 been asking for, the problem was fixed to reflect the documented
170 behaviour and a new option 'allbackups' was introduced to provide the
171 feature to those who need it.
172 - a never ending connect() could lead to a fast select() loop if its
173 timeout times the number of retransmits exceeded the server read or write
174 timeout, because the later was used to compute select()'s timeout while
175 the connection timeout was not reached.
176 - now we initialize the libc's localtime structures very early so that even
177 under OOM conditions, we can still send dated error messages without
178 segfaulting.
179 - the 'daemon' mode implies 'quiet' and disables 'verbose' because file
180 descriptors are closed.
181
willy tarreau065f1c02006-01-29 22:10:07 +01001822006/01/29 : 1.2.8
183 - fixed a nasty bug affecting poll/epoll which could return unmodified data
184 from the server to the client, and sometimes lead to memory corruption
185 crashing the process.
186 - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
187
1882005/12/18 : 1.2.7.1
189 - the "retries" option was ignored because connect() could not return an
190 error if the connection failed before the timeout.
191 - TCP health-checks could not detect a connection refused in poll/epoll
192 mode.
193
willy tarreaua56eca72005-12-18 01:34:42 +01001942005/11/13 : 1.2.7
willy tarreau77bc8542005-12-18 01:31:43 +0100195 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
196 least on Solaris, this caused the libc's regex primitives to be used instead
197 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +0100198 - delayed the quiet mode during startup so that most of the startup alerts can
199 be displayed even in quiet mode.
200 - display an alert when a listener has no address, invalid or no port, or when
201 there are no enabled listeners upon startup.
willy tarreau4373b962005-12-18 01:32:31 +0100202 - added "static-pcre" to the list of supported regex options in the Makefile.
willy tarreau77bc8542005-12-18 01:31:43 +0100203
willy tarreaub952e1d2005-12-18 01:31:20 +01002042005/10/09 : 1.2.7rc (1.1.33rc)
205 - second batch of socklen_t changes.
206 - clean-ups from Cameron Simpson.
207 - because tv_remain() does not know about eternity, using no timeout can
208 make select() spin around a null time-out. Bug reported by Cameron Simpson.
209 - client read timeout was not properly set to eternity initialized after an
210 accept() if it was not set in the config. It remained undetected so long
211 because eternity is 0 and newly allocated pages are zeroed by the system.
212 - do not call get_original_dst() when not in transparent mode.
213 - implemented a workaround for a bug in certain epoll() implementations on
214 linux-2.4 kernels (epoll-lt <= 0.21).
215 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
216
willy tarreauc5f73ed2005-12-18 01:26:38 +01002172005/08/07 : 1.2.6
218 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
219
2202005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +0100221 - added the number of active sessions (proxy/process) in the logs
222
2232005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +0100224 - the time-out fix introduced in 1.1.25 caused a corner case where it was
225 possible for a client to keep a connection maintained regardless of the
226 timeout if the server closed the connection during the HEADER phase,
227 while the client ignored the close request while doing nothing in the
228 other direction. This has been fixed now by ensuring that read timeouts
229 are re-armed when switching to any SHUTW state.
230
2312005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
232 - enhanced error reporting in the logs. Now the proxy will precisely detect
233 various error conditions related to the system and/or process limits, and
234 generate LOG_EMERG logs indicating that a resource has been exhausted.
235 - logs will contain two new characters for the error cause : 'R' indicates
236 a resource exhausted, and 'I' indicates an internal error, though this
237 one should never happen.
238 - server connection timeouts can now be reported in the logs (sC), as well
239 as connections refused because of maxconn limitations (PC).
240
2412005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
242 - new global configuration keyword "ulimit-n" may be used to raise the FD
243 limit to usable values.
244 - a warning is now displayed on startup if the FD limit is lower than the
245 configured maximum number of sockets.
246
2472005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
248 - new configuration keyword "monitor-net" makes it possible to be monitored
249 by external devices which connect to the proxy without being logged nor
250 forwarded to any server. Particularly useful on generic TCPv4 relays.
251
willy tarreau5dffb602005-12-18 01:15:23 +01002522005/06/21 : 1.2.5.2
253 - fixed build on PPC where chars are unsigned by default
254
willy tarreau08dedbe2005-12-18 01:13:48 +01002552005/05/02 : 1.2.5.1
256 - dirty hack to fix a bug introduced with epoll : if we close an FD and
257 immediately reassign it to another session through a connect(), the
258 Prev{Read,Write}Events are not updated, which causes trouble detecting
259 changes, thus leading to many timeouts at high loads.
260
willy tarreau64a3cc32005-12-18 01:13:11 +01002612005/04/30 : 1.2.5 (1.1.31)
262 - changed the runtime argument to disable epoll() to '-de'
263 - changed the runtime argument to disable poll() to '-dp'
264 - added global options 'nopoll' and 'noepoll' to do the same at the
265 configuration level.
266 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
267 support epoll().
268 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
269 - conditionned signals redirection to #ifdef DEBUG_MEMORY
270
willy tarreau1c2ad212005-12-18 01:11:29 +01002712005/04/26 : 1.2.5-pre4
272 - made epoll() support a compile-time option : ENABLE_EPOLL
273 - provided a very little libc replacement for a possibly missing epoll()
274 implementation which can be enabled by -DUSE_MY_EPOLL
275 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
276 The equivalent runtime argument becomes '-P'. A few tests show that it
277 performs like select() with many fds, but slightly slower (certainly
278 because of the higher amount of memory involved).
279 - separated the 3 polling methods and the tasks scheduler into 4 distinct
280 functions which makes the code a lot more modular.
281 - moved some event tables to private static declarations inside the poller
282 functions.
283 - the poller functions can now initialize themselves, run, and cleanup.
284 - changed the runtime argument to enable epoll() to '-E'.
285 - removed buggy epoll_ctl() code in the client_retnclose() function. This
286 function was never meant to remove anything.
287 - fixed a typo which caused glibc to yell about a double free on exit.
288 - removed error checking after epoll_ctl(DEL) because we can never know if
289 the fd is still active or already closed.
290 - added a few entries in the makefile
291
willy tarreauad90a0c2005-12-18 01:09:15 +01002922005/04/25 : 1.2.5-pre3
293 - experimental epoll() support (use temporary '-e' argument)
294
2952005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +0100296 - implemented the HTTP 303 code for error redirection. This forces the
297 browser to fetch the given URI with a GET request. The new keyword for
298 this is 'errorloc303', and a new 'errorloc302' keyword has been created
299 to make them easily distinguishable.
300 - added more controls in the parser for valid use of '\x' sequence.
301 - few fixes from Alex & Klaus
302
willy tarreauad90a0c2005-12-18 01:09:15 +01003032005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +0100304 - fixed a few errors in the documentation
305
3062005/02/13
307 - do not pre-initialize unused file-descriptors before select() anymore.
308
willy tarreau12350152005-12-18 01:03:27 +01003092005/01/22 : 1.2.4
310 - merged Alexander Lazic's and Klaus Wagner's work on application
311 cookie-based persistence. Since this is the first merge, this version is
312 not intended for general use and reports are more than welcome. Some
313 documentation is really needed though.
314
willy tarreau0174f312005-12-18 01:02:42 +01003152005/01/22 : 1.2.3 (1.1.30)
316 - add an architecture guide to the documentation
317 - released without any changes
318
3192004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
320 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
321 compatible with Apache. This limit can be configured in the makefile now.
322 Thanks to Eric Fehr for the checks.
323 - added a per-server "source" option which now makes it possible to bind to
324 a different source for each (potentially identical) server.
325 - changed cookie-based server selection slightly to allow several servers to
326 share a same cookie, thus making it possible to associate backup servers to
327 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
328 - added the cookie 'prefix' mode which makes it possible to use persistence
329 with thin clients which support only one cookie. The server name is prefixed
330 before the application cookie, and restore back.
331 - fixed the order of servers within an instance to match documentation. Now
332 the servers are *really* used in the order of their declaration. This is
333 particularly important when multiple backup servers are in use.
334
willy tarreau4302f492005-12-18 01:00:37 +01003352004/10/18 : 1.2.2 (1.1.29)
336 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
337 option was enabled without the 'tcplog' option.
338 - encode_string() would use hdr_encode_map instead of the map argument.
339
3402004/08/10 : (1.1.29-pre2)
341 - the logged request is now encoded with '#XX' for unprintable characters
342 - new keywords 'capture request header' and 'capture response header' enable
343 logging of arbitrary HTTP headers in requests and responses
344 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
345
willy tarreau982249e2005-12-18 00:57:06 +01003462004/06/06 : 1.2.1 (1.1.28)
347 - added the '-V' command line option to verbosely report errors even though
348 the -q or 'quiet' options are specified. This is useful with '-c'.
349 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +0100350
willy tarreau982249e2005-12-18 00:57:06 +01003512004/06/05 :
352 - added the "logasap" option which produces a log without waiting for the data
353 to be transferred from the server to the client.
354 - added the "httpclose" option which removes any "connection:" header and adds
355 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +0100356 - added the 'checkcache' option which blocks cacheable responses containing
357 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +0100358 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
359 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +0100360
3612004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +0100362 - send an EMERG log when no server is available for a given proxy
363 - added the '-c' command line option to syntactically check the
364 configuration file without starting the service.
365
willy tarreau8a86dbf2005-12-18 00:45:59 +01003662003/11/09 : 1.2.0
367 - the same as 1.1.27 + IPv6 support on the client side
368
willy tarreaufe2c5c12005-12-17 14:14:34 +01003692003/10/27 : 1.1.27
370 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
371 bug : the code still assumed that HTTP requests were the same size as the
372 original ones (22 bytes), and failed if they were not.
373 - added support for pidfiles.
374
willy tarreauc58fc692005-12-17 14:13:08 +01003752003/10/22 : 1.1.26
376 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
377 broke almost all compatibility with POST requests, because the proxy
378 stopped to read anything from the client as soon as it got all of its
379 headers.
380
willy tarreauc1cae632005-12-17 14:12:23 +01003812003/10/15 : 1.1.25
382 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
383 generic TCP proxies, or lighter logs for HTTP proxies.
384 - fixed a time-out condition wrongly reported as client time-out in data
385 phase if the client timeout was lower than the connect timeout times the
386 number of retries.
387
willy tarreau197e8ec2005-12-17 14:10:59 +01003882003/09/21 : 1.1.24
389 - if a client sent a full request then shut its write connection down, then
390 the request was aborted. This case was detected only when using haproxy
391 both as health-check client and as a server.
392 - if 'option httpchk' is used in a 'health' mode server, then responses will
393 change from 'OK' to 'HTTP/1.0 200 OK'.
394 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
395 server response followed by a close could be ignored, and the server seen
396 as failed.
397
willy tarreaueedaa9f2005-12-17 14:08:03 +01003982003/09/19 : 1.1.23
399 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
400 'default' sections to keep previous parameters, and not initialize logs
401 correctly.
402 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
403 relying on 'dispatch' mode to segfault at the first connection.
404 - 'option httpchk' now supports method, HTTP version and a few headers.
405 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
406 'defaults' section
407
4082003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +0100409 - 'listen' now supports optionnal address:port-range lists
410 - 'bind' introduced to add new listen addresses
411 - fixed a bug which caused a session to be kept established on a server till
412 it timed out if the client closed during the DATA phase.
413 - the port part of each server address can now be empty to make the proxy
414 connect to the server on the same port it was connected to, be an absolute
415 unsigned number to reflect a single port (as in older versions), or an
416 explicitly signed number (+N/-N) to indicate that this offset must be
417 applied to the port the proxy was connected to, when connecting to the
418 server.
419 - the 'port' server option allows the user to specify a different
420 health-check port than the service one. It is mandatory when only relative
421 ports have been specified and check is required. By default, the checks are
422 sent to the service port.
423 - new 'defaults' section which is rather similar to 'listen' except that all
424 values are only used as default values for future 'listen' sections, until
425 a new 'defaults' resets them. At the moment, server options, regexes,
426 cookie names and captures cannot be set in the 'defaults' section.
427
willy tarreau2f6ba652005-12-17 13:57:42 +01004282003/05/06 : 1.1.21
429 - changed the debug output format so that it now includes the session unique
430 ID followed by the instance name at the beginning of each line.
431 - in debug mode, accept now shows the client's IP and port.
432 - added one 3 small debugging scripts to search and pretty print debug output
433 - changed the default health check request to "OPTIONS /" instead of
434 "OPTIONS *" since not all servers implement the later one.
435 - "option httpchk" now accepts an optional parameter allowing the user to
436 specify and URI other than '/' during health-checks.
437
willy tarreaub1ff9db2005-12-17 13:51:03 +01004382003/04/21 : 1.1.20
439 - fixed two problems with time-outs, one where a server would be logged as
440 timed out during transfer that take longer to complete than the fixed
441 time-out, and one where clients were logged as timed-out during the data
442 phase because they didn't have anything to send. This sometimes caused
443 slow client connections to close too early while in fact there was no
444 problem. The proper fix would be to have a per-fd time-out with
445 conditions depending on the state of the HTTP FSM.
446
willy tarreau906b2682005-12-17 13:49:52 +01004472003/04/16 : 1.1.19
448 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
449 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
450 cookie persistence because it uses "cookie:". Two memcmp() have been
451 replaced with strncasecmp().
452
willy tarreau036e1ce2005-12-17 13:46:33 +01004532003/04/02 : 1.1.18
454 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
455 REGEX=pcre on the make command line.
456 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
457 - when explicit source address binding is required, it is now also used for
458 health-checks.
459 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
460 itself.
461 - factored several strings to reduce binary size by about 2 kB.
462 - replaced setreuid() and setregid() with more standard setuid() and setgid().
463 - added 4 status flags to the log line indicating who ended the connection
464 first, the sessions state, the validity of the cookie, and action taken on
465 the set-cookie header.
466
4672002/10/18 : 1.1.17
468 - add the notion of "backup" servers, which are used only when all other
469 servers are down.
470 - make Set-Cookie return "" instead of "(null)" when the server has no
471 cookie assigned (useful for backup servers).
472 - "log" now supports an optionnal level name (info, notice, err ...) above
473 which nothing is sent.
474 - replaced some strncmp() with memcmp() for better efficiency.
475 - added "capture cookie" option which logs client and/or server cookies
476 - cleaned up/down messages and dump servers states upon SIGHUP
477 - added a redirection feature for errors : "errorloc <errnum> <url>"
478 - now we won't insist on connecting to a dead server, even with a cookie,
479 unless option "persist" is specified.
480 - added HTTP/408 response for client request time-out and HTTP/50[234] for
481 server reply time-out or errors.
482
4832002/09/01 : 1.1.16
484 - implement HTTP health checks when option "httpchk" is specified.
485
4862002/08/07 : 1.1.15
487 - replaced setpgid()/setpgrp() with setsid() for better portability, because
488 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
489
4902002/07/20 : 1.1.14
491 - added "postonly" cookie mode
492
4932002/07/15 : 1.1.13
494 - tv_diff used inverted parameters which led to negative times !
495
4962002/07/13 : 1.1.12
497 - fixed stats monitoring, and optimized some tv_* for most common cases.
498 - replaced temporary 'newhdr' with 'trash' to reduce stack size
499 - made HTTP errors more HTML-fiendly.
500 - renamed strlcpy() to strlcpy2() because of a slightly difference between
501 their behaviour (return value), to avoid confusion.
502 - restricted HTTP messages to HTTP proxies only
503 - added a 502 message when the connection has been refused by the server,
504 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
505 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
506 inserting a cookie, because some caches (apache) don't understand it.
507 - fixed processing of server headers when client is in SHUTR state
508
5092002/07/04 :
510 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
511 setpgid()
512
5132002/06/04 : 1.1.11
514 - fixed multi-cookie handling in client request to allow clean deletion
515 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +0100516 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +0100517 - added a "nocache" option to "cookie" to specify that we explicitly want
518 to add a "cache-control" header when we add a cookie.
519 It is also possible to add an "Expires: <old-date>" to keep compatibility
520 with old/broken caches.
521
5222002/05/10 : 1.1.10
523 - if a cookie is used in insert+indirect mode, it's desirable that the
524 the servers don't see it. It was not possible to remove it correctly
525 with regexps, so now it's removed automatically.
526
5272002/04/19 : 1.1.9
528 - don't use snprintf()'s return value as an end of message since it may
529 be larger. This caused bus errors and segfaults in internal libc's
530 getenv() during localtime() in send_log().
531 - removed dead insecure send_syslog() function and all references to it.
532 - fixed warnings on Solaris due to buggy implementation of isXXXX().
533
5342002/04/18 : 1.1.8
535 - option "dontlognull"
536 - fixed "double space" bug in config parser
537 - fixed an uninitialized server field in case of dispatch
538 with no existing server which could cause a segfault during
539 logging.
540 - the pid logged was always the father's, which was wrong for daemons.
541 - fixed wrong level "LOG_INFO" for message "proxy started".
542
5432002/04/13 :
544 - http logging is now complete :
545 - ip:port, date, proxy, server
546 - req_time, conn_time, hdr_time, tot_time
547 - status, size, request
548 - source address
549
5502002/04/12 : 1.1.7
551 - added option forwardfor
552 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
553 - added "log global" in "listen" section.
554
5552002/04/09 :
556 - added a new "global" section :
557 - logs
558 - debug, quiet, daemon modes
559 - uid, gid, chroot, nbproc, maxconn
560
5612002/04/08 : 1.1.6
562 - regex are now chained and not limited anymore.
563 - unavailable server now returns HTTP/502.
564 - increased per-line args limit to 40
565 - added reqallow/reqdeny to block some request on matches
566 - added HTTP 400/403 responses
567
5682002/04/03 : 1.1.5
569 - connection logging displayed incorrect source address.
570 - added proxy start/stop and server up/down log events.
571 - replaced log message short buffers with larger trash.
572 - enlarged buffer to 8 kB and replace buffer to 4 kB.
573
5742002/03/25 : 1.1.4
575 - made rise/fall/interval time configurable
576
5772002/03/22 : 1.1.3
578 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
579 which could lead to loops.
580
5812002/03/21 : 1.1.2
582 - fixed a bug in buffer management where we could have a loop
583 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
584 => implemented an adjustable buffer limit.
585 - fixed a bug : expiration of tasks in wait queue timeout is used again,
586 and running tasks are skipped.
587 - added some debug lines for accept events.
588 - send warnings for servers up/down.
589
5902002/03/12 : 1.1.1
591 - fixed a bug in total failure handling
592 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
593
5942002/03/10 : 1.1.0
595 - fixed a few timeout bugs
596 - rearranged the task scheduler subsystem to improve performance,
597 add new tasks, and make it easier to later port to librt ;
598 - allow multiple accept() for one select() wake up ;
599 - implemented internal load balancing with basic health-check ;
600 - cookie insertion and header add/replace/delete, with better strings
601 support.
602
6032002/03/08
604 - reworked buffer handling to fix a few rewrite bugs, and
605 improve overall performance.
606 - implement the "purge" option to delete server cookies in direct mode.
607
6082002/03/07
609 - fixed some error cases where the maxfd was not decreased.
610
6112002/02/26
612 - now supports transparent proxying, at least on linux 2.4.
613
6142002/02/12
615 - soft stop works again (fixed select timeout computation).
616 - it seems that TCP proxies sometimes cannot timeout.
617 - added a "quiet" mode.
618 - enforce file descriptor limitation on socket() and accept().
619
6202001/12/30 : release of version 1.0.2 : fixed a bug in header processing
6212001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
6222001/12/16 : release of version 1.0.0.
6232001/12/16 : added syslog capability for each accepted connection.
6242001/11/19 : corrected premature end of files and occasional SIGPIPE.
6252001/10/31 : added health-check type servers (mode health) which replies OK then closes.
6262001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
627 with or without cookies (use keyword http for this).
6282001/09/01 : added client/server header replacing with regexps.
629 eg:
630 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
631 srvexp ^Server:\ .* Server:\ Apache
6322000/11/29 : first fully working release with complete FSMs and timeouts.
6332000/11/28 : major rewrite
6342000/11/26 : first write