blob: c3c20461cfbb5c9db19a5559829b234b0d702b17 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
3
willy tarreaufe2c5c12005-12-17 14:14:34 +010042003/10/27 : 1.1.27
5 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
6 bug : the code still assumed that HTTP requests were the same size as the
7 original ones (22 bytes), and failed if they were not.
8 - added support for pidfiles.
9
willy tarreauc58fc692005-12-17 14:13:08 +0100102003/10/22 : 1.1.26
11 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
12 broke almost all compatibility with POST requests, because the proxy
13 stopped to read anything from the client as soon as it got all of its
14 headers.
15
willy tarreauc1cae632005-12-17 14:12:23 +0100162003/10/15 : 1.1.25
17 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
18 generic TCP proxies, or lighter logs for HTTP proxies.
19 - fixed a time-out condition wrongly reported as client time-out in data
20 phase if the client timeout was lower than the connect timeout times the
21 number of retries.
22
willy tarreau197e8ec2005-12-17 14:10:59 +0100232003/09/21 : 1.1.24
24 - if a client sent a full request then shut its write connection down, then
25 the request was aborted. This case was detected only when using haproxy
26 both as health-check client and as a server.
27 - if 'option httpchk' is used in a 'health' mode server, then responses will
28 change from 'OK' to 'HTTP/1.0 200 OK'.
29 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
30 server response followed by a close could be ignored, and the server seen
31 as failed.
32
willy tarreaueedaa9f2005-12-17 14:08:03 +0100332003/09/19 : 1.1.23
34 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
35 'default' sections to keep previous parameters, and not initialize logs
36 correctly.
37 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
38 relying on 'dispatch' mode to segfault at the first connection.
39 - 'option httpchk' now supports method, HTTP version and a few headers.
40 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
41 'defaults' section
42
432003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +010044 - 'listen' now supports optionnal address:port-range lists
45 - 'bind' introduced to add new listen addresses
46 - fixed a bug which caused a session to be kept established on a server till
47 it timed out if the client closed during the DATA phase.
48 - the port part of each server address can now be empty to make the proxy
49 connect to the server on the same port it was connected to, be an absolute
50 unsigned number to reflect a single port (as in older versions), or an
51 explicitly signed number (+N/-N) to indicate that this offset must be
52 applied to the port the proxy was connected to, when connecting to the
53 server.
54 - the 'port' server option allows the user to specify a different
55 health-check port than the service one. It is mandatory when only relative
56 ports have been specified and check is required. By default, the checks are
57 sent to the service port.
58 - new 'defaults' section which is rather similar to 'listen' except that all
59 values are only used as default values for future 'listen' sections, until
60 a new 'defaults' resets them. At the moment, server options, regexes,
61 cookie names and captures cannot be set in the 'defaults' section.
62
willy tarreau2f6ba652005-12-17 13:57:42 +0100632003/05/06 : 1.1.21
64 - changed the debug output format so that it now includes the session unique
65 ID followed by the instance name at the beginning of each line.
66 - in debug mode, accept now shows the client's IP and port.
67 - added one 3 small debugging scripts to search and pretty print debug output
68 - changed the default health check request to "OPTIONS /" instead of
69 "OPTIONS *" since not all servers implement the later one.
70 - "option httpchk" now accepts an optional parameter allowing the user to
71 specify and URI other than '/' during health-checks.
72
willy tarreaub1ff9db2005-12-17 13:51:03 +0100732003/04/21 : 1.1.20
74 - fixed two problems with time-outs, one where a server would be logged as
75 timed out during transfer that take longer to complete than the fixed
76 time-out, and one where clients were logged as timed-out during the data
77 phase because they didn't have anything to send. This sometimes caused
78 slow client connections to close too early while in fact there was no
79 problem. The proper fix would be to have a per-fd time-out with
80 conditions depending on the state of the HTTP FSM.
81
willy tarreau906b2682005-12-17 13:49:52 +0100822003/04/16 : 1.1.19
83 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
84 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
85 cookie persistence because it uses "cookie:". Two memcmp() have been
86 replaced with strncasecmp().
87
willy tarreau036e1ce2005-12-17 13:46:33 +0100882003/04/02 : 1.1.18
89 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
90 REGEX=pcre on the make command line.
91 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
92 - when explicit source address binding is required, it is now also used for
93 health-checks.
94 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
95 itself.
96 - factored several strings to reduce binary size by about 2 kB.
97 - replaced setreuid() and setregid() with more standard setuid() and setgid().
98 - added 4 status flags to the log line indicating who ended the connection
99 first, the sessions state, the validity of the cookie, and action taken on
100 the set-cookie header.
101
1022002/10/18 : 1.1.17
103 - add the notion of "backup" servers, which are used only when all other
104 servers are down.
105 - make Set-Cookie return "" instead of "(null)" when the server has no
106 cookie assigned (useful for backup servers).
107 - "log" now supports an optionnal level name (info, notice, err ...) above
108 which nothing is sent.
109 - replaced some strncmp() with memcmp() for better efficiency.
110 - added "capture cookie" option which logs client and/or server cookies
111 - cleaned up/down messages and dump servers states upon SIGHUP
112 - added a redirection feature for errors : "errorloc <errnum> <url>"
113 - now we won't insist on connecting to a dead server, even with a cookie,
114 unless option "persist" is specified.
115 - added HTTP/408 response for client request time-out and HTTP/50[234] for
116 server reply time-out or errors.
117
1182002/09/01 : 1.1.16
119 - implement HTTP health checks when option "httpchk" is specified.
120
1212002/08/07 : 1.1.15
122 - replaced setpgid()/setpgrp() with setsid() for better portability, because
123 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
124
1252002/07/20 : 1.1.14
126 - added "postonly" cookie mode
127
1282002/07/15 : 1.1.13
129 - tv_diff used inverted parameters which led to negative times !
130
1312002/07/13 : 1.1.12
132 - fixed stats monitoring, and optimized some tv_* for most common cases.
133 - replaced temporary 'newhdr' with 'trash' to reduce stack size
134 - made HTTP errors more HTML-fiendly.
135 - renamed strlcpy() to strlcpy2() because of a slightly difference between
136 their behaviour (return value), to avoid confusion.
137 - restricted HTTP messages to HTTP proxies only
138 - added a 502 message when the connection has been refused by the server,
139 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
140 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
141 inserting a cookie, because some caches (apache) don't understand it.
142 - fixed processing of server headers when client is in SHUTR state
143
1442002/07/04 :
145 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
146 setpgid()
147
1482002/06/04 : 1.1.11
149 - fixed multi-cookie handling in client request to allow clean deletion
150 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +0100151 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +0100152 - added a "nocache" option to "cookie" to specify that we explicitly want
153 to add a "cache-control" header when we add a cookie.
154 It is also possible to add an "Expires: <old-date>" to keep compatibility
155 with old/broken caches.
156
1572002/05/10 : 1.1.10
158 - if a cookie is used in insert+indirect mode, it's desirable that the
159 the servers don't see it. It was not possible to remove it correctly
160 with regexps, so now it's removed automatically.
161
1622002/04/19 : 1.1.9
163 - don't use snprintf()'s return value as an end of message since it may
164 be larger. This caused bus errors and segfaults in internal libc's
165 getenv() during localtime() in send_log().
166 - removed dead insecure send_syslog() function and all references to it.
167 - fixed warnings on Solaris due to buggy implementation of isXXXX().
168
1692002/04/18 : 1.1.8
170 - option "dontlognull"
171 - fixed "double space" bug in config parser
172 - fixed an uninitialized server field in case of dispatch
173 with no existing server which could cause a segfault during
174 logging.
175 - the pid logged was always the father's, which was wrong for daemons.
176 - fixed wrong level "LOG_INFO" for message "proxy started".
177
1782002/04/13 :
179 - http logging is now complete :
180 - ip:port, date, proxy, server
181 - req_time, conn_time, hdr_time, tot_time
182 - status, size, request
183 - source address
184
1852002/04/12 : 1.1.7
186 - added option forwardfor
187 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
188 - added "log global" in "listen" section.
189
1902002/04/09 :
191 - added a new "global" section :
192 - logs
193 - debug, quiet, daemon modes
194 - uid, gid, chroot, nbproc, maxconn
195
1962002/04/08 : 1.1.6
197 - regex are now chained and not limited anymore.
198 - unavailable server now returns HTTP/502.
199 - increased per-line args limit to 40
200 - added reqallow/reqdeny to block some request on matches
201 - added HTTP 400/403 responses
202
2032002/04/03 : 1.1.5
204 - connection logging displayed incorrect source address.
205 - added proxy start/stop and server up/down log events.
206 - replaced log message short buffers with larger trash.
207 - enlarged buffer to 8 kB and replace buffer to 4 kB.
208
2092002/03/25 : 1.1.4
210 - made rise/fall/interval time configurable
211
2122002/03/22 : 1.1.3
213 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
214 which could lead to loops.
215
2162002/03/21 : 1.1.2
217 - fixed a bug in buffer management where we could have a loop
218 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
219 => implemented an adjustable buffer limit.
220 - fixed a bug : expiration of tasks in wait queue timeout is used again,
221 and running tasks are skipped.
222 - added some debug lines for accept events.
223 - send warnings for servers up/down.
224
2252002/03/12 : 1.1.1
226 - fixed a bug in total failure handling
227 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
228
2292002/03/10 : 1.1.0
230 - fixed a few timeout bugs
231 - rearranged the task scheduler subsystem to improve performance,
232 add new tasks, and make it easier to later port to librt ;
233 - allow multiple accept() for one select() wake up ;
234 - implemented internal load balancing with basic health-check ;
235 - cookie insertion and header add/replace/delete, with better strings
236 support.
237
2382002/03/08
239 - reworked buffer handling to fix a few rewrite bugs, and
240 improve overall performance.
241 - implement the "purge" option to delete server cookies in direct mode.
242
2432002/03/07
244 - fixed some error cases where the maxfd was not decreased.
245
2462002/02/26
247 - now supports transparent proxying, at least on linux 2.4.
248
2492002/02/12
250 - soft stop works again (fixed select timeout computation).
251 - it seems that TCP proxies sometimes cannot timeout.
252 - added a "quiet" mode.
253 - enforce file descriptor limitation on socket() and accept().
254
2552001/12/30 : release of version 1.0.2 : fixed a bug in header processing
2562001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
2572001/12/16 : release of version 1.0.0.
2582001/12/16 : added syslog capability for each accepted connection.
2592001/11/19 : corrected premature end of files and occasional SIGPIPE.
2602001/10/31 : added health-check type servers (mode health) which replies OK then closes.
2612001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
262 with or without cookies (use keyword http for this).
2632001/09/01 : added client/server header replacing with regexps.
264 eg:
265 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
266 srvexp ^Server:\ .* Server:\ Apache
2672000/11/29 : first fully working release with complete FSMs and timeouts.
2682000/11/28 : major rewrite
2692000/11/26 : first write