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