blob: 59731cc1aa952ff4c7abdb2acc8899159ad27c30 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
3
willy tarreau2f6ba652005-12-17 13:57:42 +010042003/05/06 : 1.1.21
5 - changed the debug output format so that it now includes the session unique
6 ID followed by the instance name at the beginning of each line.
7 - in debug mode, accept now shows the client's IP and port.
8 - added one 3 small debugging scripts to search and pretty print debug output
9 - changed the default health check request to "OPTIONS /" instead of
10 "OPTIONS *" since not all servers implement the later one.
11 - "option httpchk" now accepts an optional parameter allowing the user to
12 specify and URI other than '/' during health-checks.
13
willy tarreaub1ff9db2005-12-17 13:51:03 +0100142003/04/21 : 1.1.20
15 - fixed two problems with time-outs, one where a server would be logged as
16 timed out during transfer that take longer to complete than the fixed
17 time-out, and one where clients were logged as timed-out during the data
18 phase because they didn't have anything to send. This sometimes caused
19 slow client connections to close too early while in fact there was no
20 problem. The proper fix would be to have a per-fd time-out with
21 conditions depending on the state of the HTTP FSM.
22
willy tarreau906b2682005-12-17 13:49:52 +0100232003/04/16 : 1.1.19
24 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
25 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
26 cookie persistence because it uses "cookie:". Two memcmp() have been
27 replaced with strncasecmp().
28
willy tarreau036e1ce2005-12-17 13:46:33 +0100292003/04/02 : 1.1.18
30 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
31 REGEX=pcre on the make command line.
32 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
33 - when explicit source address binding is required, it is now also used for
34 health-checks.
35 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
36 itself.
37 - factored several strings to reduce binary size by about 2 kB.
38 - replaced setreuid() and setregid() with more standard setuid() and setgid().
39 - added 4 status flags to the log line indicating who ended the connection
40 first, the sessions state, the validity of the cookie, and action taken on
41 the set-cookie header.
42
432002/10/18 : 1.1.17
44 - add the notion of "backup" servers, which are used only when all other
45 servers are down.
46 - make Set-Cookie return "" instead of "(null)" when the server has no
47 cookie assigned (useful for backup servers).
48 - "log" now supports an optionnal level name (info, notice, err ...) above
49 which nothing is sent.
50 - replaced some strncmp() with memcmp() for better efficiency.
51 - added "capture cookie" option which logs client and/or server cookies
52 - cleaned up/down messages and dump servers states upon SIGHUP
53 - added a redirection feature for errors : "errorloc <errnum> <url>"
54 - now we won't insist on connecting to a dead server, even with a cookie,
55 unless option "persist" is specified.
56 - added HTTP/408 response for client request time-out and HTTP/50[234] for
57 server reply time-out or errors.
58
592002/09/01 : 1.1.16
60 - implement HTTP health checks when option "httpchk" is specified.
61
622002/08/07 : 1.1.15
63 - replaced setpgid()/setpgrp() with setsid() for better portability, because
64 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
65
662002/07/20 : 1.1.14
67 - added "postonly" cookie mode
68
692002/07/15 : 1.1.13
70 - tv_diff used inverted parameters which led to negative times !
71
722002/07/13 : 1.1.12
73 - fixed stats monitoring, and optimized some tv_* for most common cases.
74 - replaced temporary 'newhdr' with 'trash' to reduce stack size
75 - made HTTP errors more HTML-fiendly.
76 - renamed strlcpy() to strlcpy2() because of a slightly difference between
77 their behaviour (return value), to avoid confusion.
78 - restricted HTTP messages to HTTP proxies only
79 - added a 502 message when the connection has been refused by the server,
80 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
81 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
82 inserting a cookie, because some caches (apache) don't understand it.
83 - fixed processing of server headers when client is in SHUTR state
84
852002/07/04 :
86 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
87 setpgid()
88
892002/06/04 : 1.1.11
90 - fixed multi-cookie handling in client request to allow clean deletion
91 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +010092 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +010093 - added a "nocache" option to "cookie" to specify that we explicitly want
94 to add a "cache-control" header when we add a cookie.
95 It is also possible to add an "Expires: <old-date>" to keep compatibility
96 with old/broken caches.
97
982002/05/10 : 1.1.10
99 - if a cookie is used in insert+indirect mode, it's desirable that the
100 the servers don't see it. It was not possible to remove it correctly
101 with regexps, so now it's removed automatically.
102
1032002/04/19 : 1.1.9
104 - don't use snprintf()'s return value as an end of message since it may
105 be larger. This caused bus errors and segfaults in internal libc's
106 getenv() during localtime() in send_log().
107 - removed dead insecure send_syslog() function and all references to it.
108 - fixed warnings on Solaris due to buggy implementation of isXXXX().
109
1102002/04/18 : 1.1.8
111 - option "dontlognull"
112 - fixed "double space" bug in config parser
113 - fixed an uninitialized server field in case of dispatch
114 with no existing server which could cause a segfault during
115 logging.
116 - the pid logged was always the father's, which was wrong for daemons.
117 - fixed wrong level "LOG_INFO" for message "proxy started".
118
1192002/04/13 :
120 - http logging is now complete :
121 - ip:port, date, proxy, server
122 - req_time, conn_time, hdr_time, tot_time
123 - status, size, request
124 - source address
125
1262002/04/12 : 1.1.7
127 - added option forwardfor
128 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
129 - added "log global" in "listen" section.
130
1312002/04/09 :
132 - added a new "global" section :
133 - logs
134 - debug, quiet, daemon modes
135 - uid, gid, chroot, nbproc, maxconn
136
1372002/04/08 : 1.1.6
138 - regex are now chained and not limited anymore.
139 - unavailable server now returns HTTP/502.
140 - increased per-line args limit to 40
141 - added reqallow/reqdeny to block some request on matches
142 - added HTTP 400/403 responses
143
1442002/04/03 : 1.1.5
145 - connection logging displayed incorrect source address.
146 - added proxy start/stop and server up/down log events.
147 - replaced log message short buffers with larger trash.
148 - enlarged buffer to 8 kB and replace buffer to 4 kB.
149
1502002/03/25 : 1.1.4
151 - made rise/fall/interval time configurable
152
1532002/03/22 : 1.1.3
154 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
155 which could lead to loops.
156
1572002/03/21 : 1.1.2
158 - fixed a bug in buffer management where we could have a loop
159 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
160 => implemented an adjustable buffer limit.
161 - fixed a bug : expiration of tasks in wait queue timeout is used again,
162 and running tasks are skipped.
163 - added some debug lines for accept events.
164 - send warnings for servers up/down.
165
1662002/03/12 : 1.1.1
167 - fixed a bug in total failure handling
168 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
169
1702002/03/10 : 1.1.0
171 - fixed a few timeout bugs
172 - rearranged the task scheduler subsystem to improve performance,
173 add new tasks, and make it easier to later port to librt ;
174 - allow multiple accept() for one select() wake up ;
175 - implemented internal load balancing with basic health-check ;
176 - cookie insertion and header add/replace/delete, with better strings
177 support.
178
1792002/03/08
180 - reworked buffer handling to fix a few rewrite bugs, and
181 improve overall performance.
182 - implement the "purge" option to delete server cookies in direct mode.
183
1842002/03/07
185 - fixed some error cases where the maxfd was not decreased.
186
1872002/02/26
188 - now supports transparent proxying, at least on linux 2.4.
189
1902002/02/12
191 - soft stop works again (fixed select timeout computation).
192 - it seems that TCP proxies sometimes cannot timeout.
193 - added a "quiet" mode.
194 - enforce file descriptor limitation on socket() and accept().
195
1962001/12/30 : release of version 1.0.2 : fixed a bug in header processing
1972001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
1982001/12/16 : release of version 1.0.0.
1992001/12/16 : added syslog capability for each accepted connection.
2002001/11/19 : corrected premature end of files and occasional SIGPIPE.
2012001/10/31 : added health-check type servers (mode health) which replies OK then closes.
2022001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
203 with or without cookies (use keyword http for this).
2042001/09/01 : added client/server header replacing with regexps.
205 eg:
206 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
207 srvexp ^Server:\ .* Server:\ Apache
2082000/11/29 : first fully working release with complete FSMs and timeouts.
2092000/11/28 : major rewrite
2102000/11/26 : first write