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