blob: a3f5023c9d055113bc3b5a871651abe0e5660045 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
Willy Tarreau60612eb2011-09-10 23:43:11 +020042011/09/10 : 1.5-dev7
5 - [BUG] fix binary stick-tables
6 - [MINOR] http: *_dom matching header functions now also split on ":"
7 - [BUG] checks: fix support of Mysqld >= 5.5 for mysql-check
8 - [MINOR] acl: add srv_conn acl to count connections on a specific backend server
9 - [MINOR] check: add redis check support
10 - [DOC] small fixes to clearly distinguish between keyword and variables
11 - [MINOR] halog: add support for termination code matching (-tcn/-TCN)
12 - [DOC] Minor spelling fixes and grammatical enhancements
13 - [CLEANUP] dumpstats: make symbols static where possible
14 - [MINOR] Break out dumping table
15 - [MINOR] Break out processing of clear table
16 - [MINOR] Allow listing of stick table by key
17 - [MINOR] Break out all stick table socat command parsing
18 - [MINOR] More flexible clearing of stick table
19 - [MINOR] Allow showing and clearing by key of ipv6 stick tables
20 - [MINOR] Allow showing and clearing by key of integer stick tables
21 - [MINOR] Allow showing and clearing by key of string stick tables
22 - [CLEANUP] Remove assigned but unused variables
23 - [CLEANUP] peers.h: fix declarations
24 - [CLEANUP] session.c: Make functions static where possible
25 - [MINOR] Add active connection list to server
26 - [MINOR] Allow shutdown of sessions when a server becomes unavailable
27 - [MINOR] Add down termination condition
28 - [MINOR] Make appsess{,ion}_refresh static
29 - [MINOR] Add rdp_cookie pattern fetch function
30 - [CLEANUP] Remove unnecessary casts
31 - [MINOR] Add non-stick server option
32 - [MINOR] Consistently use error in tcp_parse_tcp_req()
33 - [MINOR] Consistently free expr on error in cfg_parse_listen()
34 - [MINOR] Free rdp_cookie_name on denint()
35 - [MINOR] Free tcp rules on denint()
36 - [MINOR] Free stick table pool on denint()
37 - [MINOR] Free stick rules on denint()
38 - [MEDIUM] Fix stick-table replication on soft-restart
39 - [MEDIUM] Correct ipmask() logic
40 - [MINOR] Correct type in table dump examples
41 - [MINOR] Fix build error in stream_int_register_handler()
42 - [MINOR] Use DPRINTF in assign_server()
43 - [BUG] checks: http-check expect could fail a check on multi-packet responses
44 - [DOC] fix minor typo in the "dispatch" doc
45 - [BUG] proto_tcp: fix address binding on remote source
46 - [MINOR] http: don't report the "haproxy" word on the monitoring response
47 - [REORG] http: move HTTP error codes back to proto_http.h
48 - [MINOR] http: make the "HTTP 200" status code configurable.
49 - [MINOR] http: partially revert the chunking optimization for now
50 - [MINOR] stream_sock: always clear BF_EXPECT_MORE upon complete transfer
51 - [CLEANUP] stream_sock: remove unneeded FL_TCP and factor out test
52 - [MEDIUM] http: add support for "http-no-delay"
53 - [OPTIM] http: optimize chunking again in non-interactive mode
54 - [OPTIM] stream_sock: avoid fast-forwarding of partial data
55 - [OPTIM] stream_sock: don't use splice on too small payloads
56 - [MINOR] config: make it possible to specify a cookie even without a server
57 - [BUG] stats: support url-encoded forms
58 - [MINOR] config: automatically compute a default fullconn value
59 - [CLEANUP] config: remove some left-over printf debugging code from previous patch
60 - [DOC] add missing entry or stick store-response
61 - [MEDIUM] http: add support for 'cookie' and 'set-cookie' patterns
62 - [BUG] halog: correctly handle truncated last line
63 - [MINOR] halog: make SKIP_CHAR stop on field delimiters
64 - [MINOR] halog: add support for HTTP log matching (-H)
65 - [MINOR] halog: gain back performance before SKIP_CHAR fix
66 - [OPTIM] halog: cache some common fields positions
67 - [OPTIM] halog: check once for correct line format and reuse the pointer
68 - [OPTIM] halog: remove many 'if' by using a function pointer for the filters
69 - [OPTIM] halog: remove support for tab delimiters in input data
70 - [BUG] session: risk of crash on out of memory (1.5-dev regression)
71 - [MINOR] session: try to emit a 500 response on memory allocation errors
72 - [OPTIM] stream_sock: reduce the default number of accepted connections at once
73 - [BUG] stream_sock: disable listener when system resources are exhausted
74 - [MEDIUM] proxy: add a PAUSED state to listeners and move socket tricks out of proxy.c
75 - [BUG] stream_sock: ensure orphan listeners don't accept too many connections
76 - [MINOR] listeners: add listen_full() to mark a listener full
77 - [MINOR] listeners: add support for queueing resource limited listeners
78 - [MEDIUM] listeners: put listeners in queue upon resource shortage
79 - [MEDIUM] listeners: queue proxy-bound listeners at the proxy's
80 - [MEDIUM] listeners: don't stop proxies when global maxconn is reached
81 - [MEDIUM] listeners: don't change listeners states anymore in maintain_proxies
82 - [CLEANUP] proxy: rename a few proxy states (PR_STIDLE and PR_STRUN)
83 - [MINOR] stats: report a "WAITING" state for sockets waiting for resource
84 - [MINOR] proxy: make session rate-limit more accurate
85 - [MINOR] sessions: only wake waiting listeners up if rate limit is OK
86 - [BUG] proxy: peers must only be stopped once, not upon every call to maintain_proxies
87 - [CLEANUP] proxy: merge maintain_proxies() operation inside a single loop
88 - [MINOR] task: new function task_schedule() to schedule a wake up
89 - [MAJOR] proxy: finally get rid of maintain_proxies()
90 - [BUG] proxy: stats frontend and peers were missing many initializers
91 - [MEDIUM] listeners: add a global listener management task
92 - [MINOR] proxy: make findproxy() return proxies from numeric IDs too
93 - [DOC] fix typos, "#" is a sharp, not a dash
94 - [MEDIUM] stats: add support for changing frontend's maxconn at runtime
95 - [MEDIUM] checks: group health checks methods by values and save option bits
96 - [MINOR] session-counters: add the ability to clear the counters
97 - [BUG] check: http-check expect + regex would crash in defaults section
98 - [MEDIUM] http: make x-forwarded-for addition conditional
99 - [REORG] build: move syscall redefinition to specific places
100 - [CLEANUP] update the year in the copyright banner
101 - [BUG] possible crash in 'show table' on stats socket
102 - [BUG] checks: use the correct destination port for sending checks
103 - [BUG] backend: risk of picking a wrong port when mapping is used with crossed families
104 - [MINOR] make use of set_host_port() and get_host_port() to get rid of family mismatches
105 - [DOC] fixed a few "sensible" -> "sensitive" errors
106 - [MINOR] make use of addr_to_str() and get_host_port() to replace many inet_ntop()
107 - [BUG] http: trailing white spaces must also be trimmed after headers
108 - [MINOR] stats: display "<NONE>" instead of the frontend name when unknown
109 - [MINOR] http: take a capture of too large requests and responses
110 - [MINOR] http: take a capture of truncated responses
111 - [MINOR] http: take a capture of bad content-lengths.
112 - [DOC] add a few old and uncommitted docs
113 - [CLEANUP] cfgparse: fix reported options for the "bind" keyword
114 - [MINOR] halog: add -hs/-HS to filter by HTTP status code range
115 - [MINOR] halog: support backslash-escaped quotes
116 - [CLEANUP] remove dirty left-over of a debugging message
117 - [MEDIUM] stats: disable complex socket reservation for stats socket
118 - [CLEANUP] remove a useless test in manage_global_listener_queue()
119 - [MEDIUM] stats: add the "set maxconn" setting to the command line interface
120 - [MEDIUM] add support for global.maxconnrate to limit the per-process conn rate.
121 - [MINOR] stats: report the current and max global connection rates
122 - [MEDIUM] stats: add the ability to adjust the global maxconnrate
123 - [BUG] peers: don't pre-allocate 65000 connections to each peer
124 - [MEDIUM] don't limit peers nor stats socket to maxconn nor maxconnrate
125 - [BUG] peers: the peer frontend must not emit any log
126 - [CLEANUP] proxy: make pause_proxy() perform the required controls and emit the logs
127 - [BUG] peers: don't keep a peers section which has a NULL frontend
128 - [BUG] peers: ensure the peers are resumed if they were paused
129 - [MEDIUM] stats: add the ability to enable/disable/shutdown a frontend at runtime
130 - [MEDIUM] session: make session_shutdown() an independant function
131 - [MEDIUM] stats: offer the possibility to kill a session from the CLI
132 - [CLEANUP] stats: centralize tests for backend/server inputs on the CLI
133 - [MEDIUM] stats: offer the possibility to kill sessions by server
134 - [MINOR] halog: do not consider byte 0x8A as end of line
135 - [MINOR] frontend: ensure debug message length is always initialized
136 - [OPTIM] halog: make fgets parse more bytes by blocks
137 - [OPTIM] halog: add assembly version of the field lookup code
138 - [MEDIUM] poll: add a measurement of idle vs work time
139 - [CLEANUP] startup: report only the basename in the usage message
140 - [MINOR] startup: add an option to change to a new directory
141 - [OPTIM] task: don't scan the run queue if we know it's empty
142 - [BUILD] stats: stdint is not present on solaris
143 - [DOC] update the README file to reflect new naming rules for patches
144 - [MINOR] stats: report the number of requests intercepted by the frontend
145 - [DOC] update ROADMAP file
146
Willy Tarreau04df1122011-04-08 00:56:41 +02001472011/04/08 : 1.5-dev6
148 - [BUG] stream_sock: use get_addr_len() instead of sizeof() on sockaddr_storage
149 - [BUG] TCP source tracking was broken with IPv6 changes
150 - [BUG] stick-tables did not work when converting IPv6 to IPv4
151 - [CRITICAL] fix risk of crash when dealing with space in response cookies
152
Willy Tarreaub06ed2c2011-03-29 01:10:33 +02001532011/03/29 : 1.5-dev5
154 - [BUG] standard: is_addr return value for IPv4 was inverted
155 - [MINOR] update comment about IPv6 support for server
156 - [MEDIUM] use getaddrinfo to resolve names if gethostbyname fail
157 - [DOC] update IPv6 support for bind
158 - [DOC] document IPv6 support for server
159 - [DOC] fix a minor typo
160 - [MEDIUM] IPv6 support for syslog
161 - [DOC] document IPv6 support for syslog
162 - [MEDIUM] IPv6 support for stick-tables
163 - [DOC] document IPv6 support for stick-tables
164 - [DOC] update ROADMAP file
165 - [BUG] session: src_conn_cur was returning src_conn_cnt instead
166 - [MINOR] frontend: add a make_proxy_line function
167 - [MEDIUM] stream_sock: add support for sending the proxy protocol header line
168 - [MEDIUM] server: add support for the "send-proxy" option
169 - [DOC] update the spec on the proxy protocol
170 - [BUILD] proto_tcp: fix build issue with CTTPROXY
171 - [DOC] update ROADMAP file
172 - [MEDIUM] config: rework the IPv4/IPv6 address parser to support host-only addresses
173 - [MINOR] cfgparse: better report wrong listening addresses and make use of str2sa_range
174 - [BUILD] add the USE_GETADDRINFO build option
175 - [TESTS] provide a test case for various address formats
176 - [BUG] session: conn_retries was not always initialized
177 - [BUG] log: retrieve the target from the session, not the SI
178 - [BUG] http: fix possible incorrect forwarded wrapping chunk size (take 2)
179 - [MINOR] tools: add two macros MID_RANGE and MAX_RANGE
180 - [BUG] http: fix content-length handling on 32-bit platforms
181 - [OPTIM] buffers: uninline buffer_forward()
182 - [BUG] stream_sock: fix handling for server side PROXY protocol
183 - [MINOR] acl: add support for table_cnt and table_avl matches
184 - [DOC] update ROADMAP file
185
Willy Tarreaue0052cc2011-03-13 22:15:02 +01001862011/03/13 : 1.5-dev4
187 - [MINOR] cfgparse: Check whether the path given for the stats socket actually fits into the sockaddr_un structure to avoid truncation.
188 - [MINOR] unix sockets : inherits the backlog size from the listener
189 - [CLEANUP] unix sockets : move create_uxst_socket() in uxst_bind_listener()
190 - [DOC] fix a minor typo
191 - [DOC] fix ignore-persist documentation
192 - [MINOR] add warnings on features not compatible with multi-process mode
193 - [BUG] http: fix http-pretend-keepalive and httpclose/tunnel mode
194 - [MINOR] stats: add support for several packets in stats admin
195 - [BUG] stats: admin commands must check the proxy state
196 - [BUG] stats: admin web interface must check the proxy state
197 - [MINOR] http: add pattern extraction method to stick on query string parameter
198 - [MEDIUM] add internal support for IPv6 server addresses
199 - [MINOR] acl: add be_id/srv_id to match backend's and server's id
200 - [MINOR] log: add support for passing the forwarded hostname
201 - [MINOR] log: ability to override the syslog tag
202 - [MINOR] checks: add PostgreSQL health check
203 - [DOC] update ROADMAP file
204 - [BUILD] pattern: use 'int' instead of 'int32_t'
205 - [OPTIM] linux: add support for bypassing libc to force using vsyscalls
206 - [BUG] debug: report the correct poller list in verbose mode
207 - [BUG] capture: do not capture a cookie if there is no memory left
208 - [BUG] appsession: fix possible double free in case of out of memory
209 - [CRITICAL] cookies: mixing cookies in indirect mode and appsession can crash the process
210 - [BUG] http: correctly update the header list when removing two consecutive headers
211 - [BUILD] add the CPU=native and ARCH=32/64 build options
212 - [BUILD] add -fno-strict-aliasing to fix warnings with gcc >= 4.4
213 - [CLEANUP] hash: move the avalanche hash code globally available
214 - [MEDIUM] hash: add support for an 'avalanche' hash-type
215 - [DOC] update roadmap file
216 - [BUG] http: do not re-enable the PROXY analyser on keep-alive
217 - [OPTIM] http: don't send each chunk in a separate packet
218 - [DOC] fix minor typos reported recently in the peers section
219 - [DOC] fix another typo in the doc
220 - [MINOR] stats: report HTTP message state and buffer flags in error dumps
221 - [BUG] http chunking: don't report a parsing error on connection errors
222 - [BUG] stream_interface: truncate buffers when sending error messages
223 - [MINOR] http: support wrapping messages in error captures
224 - [MINOR] http: capture incorrectly chunked message bodies
225 - [MINOR] stats: add global event ID and count
226 - [BUG] http: analyser optimizations broke pipelining
227 - [CLEANUP] frontend: only apply TCP-specific settings to TCP/TCP6 sockets
228 - [BUG] http: fix incorrect error reporting during data transfers
229 - [CRITICAL] session: correctly leave turn-around and queue states on abort
230 - [BUG] session: release slot before processing pending connections
231 - [MINOR] tcp: add support for dynamic MSS setting
232 - [BUG] stick-table: correctly terminate string keys during lookups
233 - [BUG] acl: fix handling of empty lines in pattern files
234 - [BUG] stick-table: use the private buffer when padding strings
235 - [BUG] ebtree: fix ebmb_lookup() with len smaller than the tree's keys
236 - [OPTIM] ebtree: ebmb_lookup: reduce stack usage by moving the return code out of the loop
237 - [OPTIM] ebtree: inline ebst_lookup_len and ebis_lookup_len
238 - [REVERT] undo the stick-table string key lookup fixes
239 - [MINOR] http: improve url_param pattern extraction to ignore empty values
240 - [BUILD] frontend: shut a warning with TCP_MAXSEG
241 - [BUG] http: update the header list's tail when removing the last header
242 - [DOC] fix minor typo in the proxy protocol doc
243 - [DOC] fix typos (http-request instead of http-check)
244 - [BUG] http: use correct ACL pointer when evaluating authentication
245 - [BUG] cfgparse: correctly count one socket per port in ranges
246 - [BUG] startup: set the rlimits before binding ports, not after.
247 - [BUG] acl: srv_id must return no match when the server is NULL
248 - [MINOR] acl: add ability to check for internal response-only parameters
249 - [MINOR] acl: srv_id is only valid in responses
250 - [MINOR] config: warn if response-only conditions are used in "redirect" rules
251 - [BUG] acl: fd leak when reading patterns from file
252 - [DOC] fix minor typo in "usesrc"
253 - [BUG] http: fix possible incorrect forwarded wrapping chunk size
254 - [BUG] http: fix computation of message body length after forwarding has started
255 - [BUG] http: balance url_param did not work with first parameters on POST
256 - [TESTS] update the url_param regression test to test check_post too
257 - [DOC] update ROADMAP
258 - [DOC] internal: reflect the fact that SI_ST_ASS is transient
259 - [BUG] config: don't crash on empty pattern files.
260 - [MINOR] stream_interface: make use of an applet descriptor for IO handlers
261 - [REORG] stream_interface: move the st0, st1 and private members to the applet
262 - [REORG] stream_interface: split the struct members in 3 parts
263 - [REORG] session: move client and server address to the stream interface
264 - [REORG] tcp: make tcpv4_connect_server() take the target address from the SI
265 - [MEDIUM] stream_interface: store the target pointer and type
266 - [CLEANUP] stream_interface: remove the applet.handler pointer
267 - [MEDIUM] log: take the logged server name from the stream interface
268 - [CLEANUP] session: remove data_source from struct session
269 - [CLEANUP] stats: make all dump functions only rely on the stream interface
270 - [REORG] session: move the data_ctx struct to the stream interface's applet
271 - [MINOR] proxy: add PR_O2_DISPATCH to detect dispatch mode
272 - [MINOR] cfgparse: only keep one of dispatch, transparent, http_proxy
273 - [MINOR] session: add a pointer to the new target into the session
274 - [MEDIUM] session: remove s->prev_srv which is not needed anymore
275 - [CLEANUP] stream_interface: use inline functions to manipulate targets
276 - [MAJOR] session: remove the ->srv pointer from struct session
277 - [MEDIUM] stats: split frontend and backend stats
278 - [MEDIUM] http: always evaluate http-request rules before stats http-request
279 - [REORG] http: move the http-request rules to proto_http
280 - [BUG] http: stats were not incremented on http-request deny
281 - [MINOR] checks: report it if checks fail due to socket creation error
282
Willy Tarreau442e8342010-11-11 23:29:35 +01002832010/11/11 : 1.5-dev3
284 - [DOC] fix http-request documentation
285 - [MEDIUM] enable/disable servers from the stats web interface
286 - [MEDIUM] stats: add an admin level
287 - [DOC] stats: document the "stats admin" statement
288 - [MINOR] startup: print the proxy socket which caused an error
289 - [CLEANUP] Remove unneeded chars allocation
290 - [MINOR] config: detect options not supported due to compilation options
291 - [MINOR] Add pattern's fetchs payload and payload_lv
292 - [MINOR] frontend: improve accept-proxy header parsing
293 - [MINOR] frontend: add tcpv6 support on accept-proxy bind
294 - [MEDIUM] Enhance message errors management on binds
295 - [MINOR] Manage unix socket source field on logs
296 - [MINOR] Manage unix socket source field on session dump on sock stats
297 - [MINOR] Support of unix listener sockets for debug and log event messages on frontend.c
298 - [MINOR] Add some tests on sockets family for port remapping and mode transparent.
299 - [MINOR] Manage socket type unix for some logs
300 - [MINOR] Enhance controls of socket's family on acls and pattern fetch
301 - [MINOR] Support listener's sockets unix on http logs.
302 - [MEDIUM] Add supports of bind on unix sockets.
303 - [BUG] stick table purge failure if size less than 255
304 - [BUG] stick table entries expire on counters updates/read or show table, even if there is no "expire" parameter
305 - [MEDIUM] Implement tcp inspect response rules
306 - [DOC] tcp-response content and inspect
307 - [MINOR] new acls fetch req_ssl_hello_type and rep_ssl_hello_type
308 - [DOC] acls rep_ssl_hello and req_ssl_hello
309 - [MEDIUM] Create new protected pattern types CONSTSTRING and CONSTDATA to force memcpy if data from protected areas need to be manipulated.
310 - [DOC] new type binary in stick-table
311 - [DOC] stick store-response and new patterns payload and payload_lv
312 - [MINOR] Manage all types (ip, integer, string, binary) on cli "show table" command
313 - [MEDIUM] Create updates tree on stick table to manage sync.
314 - [MAJOR] Add new files src/peer.c, include/proto/peers.h and include/types/peers.h for sync stick table management
315 - [MEDIUM] Manage peers section parsing and stick table registration on peers.
316 - [MEDIUM] Manage soft stop on peers proxy
317 - [DOC] add documentation for peers section
318 - [MINOR] checks: add support for LDAPv3 health checks
319 - [MINOR] add better support to "mysql-check"
320 - [BUG] Restore info about available active/backup servers
321 - [CONTRIB] Update haproxy.pl
322 - [CONTRIB] Update Cacti Tempates
323 - [CONTRIB] add templates for Cacti.
324 - [BUG] http: don't consider commas as a header delimitor within quotes
325 - [MINOR] support a global jobs counter
326 - [DOC] add a summary about cookie incompatibilities between specs and browsers
327 - [DOC] fix description of cookie "insert" and "indirect" modes
328 - [MEDIUM] http: fix space handling in the request cookie parser
329 - [MEDIUM] http: fix space handling in the response cookie parser
330 - [DOC] fix typo in the queue() definition (backend, not frontend)
331 - [BUG] deinit: unbind listeners before freeing them
332 - [BUG] stream_interface: only call si->release when both dirs are closed
333 - [MEDIUM] buffers: rework the functions to exchange between SI and buffers
334 - [DOC] fix typo in the avg_queue() and be_conn() definition (backend, not frontend)
335 - [MINOR] halog: add '-tc' to sort by termination codes
336 - [MINOR] halog: skip non-traffic logs for -st and -tc
337 - [BUG] stream_sock: cleanly disable the listener in case of resource shortage
338 - [BUILD] stream_sock: previous fix lacked the #include, causing a warning.
339 - [DOC] bind option is "defer-accept", not "defer_accept"
340 - [DOC] missing index entry for http-check send-state
341 - [DOC] tcp-request inspect-delay is for backends too
342 - [BUG] ebtree: string_equal_bits() could return garbage on identical strings
343 - [BUG] stream_sock: try to flush any extra pending request data after a POST
344 - [BUILD] proto_http: eliminate some build warnings with gcc-2.95
345 - [MEDIUM] make it possible to combine http-pretend-keepalived with httpclose
346 - [MEDIUM] tcp-request : don't wait for inspect-delay to expire when the buffer is full
347 - [MEDIUM] checks: add support for HTTP contents lookup
348 - [TESTS] add test-check-expect to test various http-check methods
349 - [MINOR] global: add "tune.chksize" to change the default check buffer size
350 - [MINOR] cookie: add options "maxidle" and "maxlife"
351 - [MEDIUM] cookie: support client cookies with some contents appended to their value
352 - [MINOR] http: make some room in the transaction flags to extend cookies
353 - [MINOR] cookie: add the expired (E) and old (O) flags for request cookies
354 - [MEDIUM] cookie: reassign set-cookie status flags to store more states
355 - [MINOR] add encode/decode function for 30-bit integers from/to base64
356 - [MEDIUM] cookie: check for maxidle and maxlife for incoming dated cookies
357 - [MEDIUM] cookie: set the date in the cookie if needed
358 - [DOC] document the cookie maxidle and maxlife parameters
359 - [BUG] checks: don't log backend down for all zero-weight servers
360 - [MEDIUM] checks: set server state to one state from failure when leaving maintenance
361 - [BUG] config: report correct keywords for "observe"
362 - [MINOR] checks: ensure that we can inherit binary checks from the defaults section
363 - [MINOR] acl: add the http_req_first match
364 - [DOC] fix typos about bind-process syntax
365 - [BUG] cookie: correctly unset default cookie parameters
366 - [MINOR] cookie: add support for the "preserve" option
367 - [BUG] ebtree: fix duplicate strings insertion
368 - [CONTRIB] halog: report per-url counts, errors and times
369 - [CONTRIB] halog: minor speed improvement in timer parser
370 - [MINOR] buffers: add a new request analyser flag for PROXY mode
371 - [MINOR] listener: add the "accept-proxy" option to the "bind" keyword
372 - [MINOR] standard: add read_uint() to parse a delimited unsigned integer
373 - [MINOR] standard: change arg type from const char* to char*
374 - [MINOR] frontend: add a new analyser to parse a proxied connection
375 - [MEDIUM] session: call the frontend_decode_proxy analyser on proxied connections
376 - [DOC] add the proxy protocol's specifications
377 - [DOC] document the 'accept-proxy' bind option
378 - [MINOR] cfgparse: report support of <path> for the 'bind' statements
379 - [DOC] add references to unix socket handling
380 - [MINOR] move MAXPATHLEN definition to compat.h
381 - [MEDIUM] unix sockets: cleanup the error reporting path
382 - [BUG] session: don't stop forwarding of data upon last packet
383 - [CLEANUP] accept: replace some inappropriate Alert() calls with send_log()
384 - [BUILD] peers: shut a printf format warning (key_size is a size_t)
385 - [BUG] accept: don't close twice upon error
386 - [OPTIM] session: don't recheck analysers when buffer flags have not changed
387 - [OPTIM] stream_sock: don't clear FDs that are already cleared
388 - [BUG] proto_tcp: potential bug on pattern fetch dst and dport
389
Willy Tarreau37242fa2010-08-28 19:21:00 +02003902010/08/28 : 1.5-dev2
391 - [MINOR] startup: release unused structs after forking
392 - [MINOR] startup: don't wait for nothing when no old pid remains
393 - [CLEANUP] reference product branch 1.5
394 - [MEDIUM] signals: add support for registering functions and tasks
395 - [MEDIUM] signals: support redistribution of signal zero when stopping
396 - [BUG] http: don't set auto_close if more data are expected
397
Willy Tarreaufc815fd2010-08-25 10:56:53 +02003982010/08/25 : 1.5-dev1
399 - [BUG] stats: session rate limit gets garbaged in the stats
400 - [DOC] mention 'option http-server-close' effect in Tq section
401 - [DOC] summarize and highlight persistent connections behaviour
402 - [DOC] add configuration samples
403 - [BUG] http: dispatch and http_proxy modes were broken for a long time
404 - [BUG] http: the transaction must be initialized even in TCP mode
405 - [BUG] tcp: dropped connections must be counted as "denied" not "failed"
406 - [BUG] consistent hash: balance on all servers, not only 2 !
407 - [CONTRIB] halog: report per-server status codes, errors and response times
408 - [BUG] http: the transaction must be initialized even in TCP mode (part 2)
409 - [BUG] client: always ensure to zero rep->analysers
410 - [BUG] session: clear BF_READ_ATTACHED before next I/O
411 - [BUG] http: automatically close response if req is aborted
412 - [BUG] proxy: connection rate limiting was eating lots of CPU
413 - [BUG] http: report correct flags in case of client aborts during body
414 - [TESTS] refine non-regression tests and add 4 new tests
415 - [BUG] debug: wrong pointer was used to report a status line
416 - [BUG] debug: correctly report truncated messages
417 - [DOC] document the "dispatch" keyword
418 - [BUG] stick_table: fix possible memory leak in case of connection error
419 - [CLEANUP] acl: use 'L6' instead of 'L4' in ACL flags relying on contents
420 - [MINOR] accept: count the incoming connection earlier
421 - [CLEANUP] tcp: move some non tcp-specific layer6 processing out of proto_tcp
422 - [CLEANUP] client: move some ACLs away to their respective locations
423 - [CLEANUP] rename client -> frontend
424 - [MEDIUM] separate protocol-level accept() from the frontend's
425 - [MINOR] proxy: add a list to hold future layer 4 rules
426 - [MEDIUM] config: parse tcp layer4 rules (tcp-request accept/reject)
427 - [MEDIUM] tcp: check for pure layer4 rules immediately after accept()
428 - [OPTIM] frontend: tell the compiler that errors are unlikely to occur
429 - [MEDIUM] frontend: check for LI_O_TCP_RULES in the listener
430 - [MINOR] frontend: only check for monitor-net rules if LI_O_CHK_MONNET is set
431 - [CLEANUP] buffer->cto is not used anymore
432 - [MEDIUM] session: finish session establishment sequence in with I/O handlers
433 - [MEDIUM] session: initialize server-side timeouts after connect()
434 - [MEDIUM] backend: initialize the server stream_interface upon connect()
435 - [MAJOR] frontend: don't initialize the server-side stream_int anymore
436 - [MEDIUM] session: move the conn_retries attribute to the stream interface
437 - [MEDIUM] session: don't assign conn_retries upon accept() anymore
438 - [MINOR] frontend: rely on the frontend and not the backend for INDEPSTR
439 - [MAJOR] frontend: reorder the session initialization upon accept
440 - [MINOR] proxy: add an accept() callback for the application layer
441 - [MAJOR] frontend: split accept() into frontend_accept() and session_accept()
442 - [MEDIUM] stats: rely on the standard session_accept() function
443 - [MINOR] buffer: refine the flags that may wake an analyser up.
444 - [MINOR] stream_sock: don't dereference a non-existing frontend
445 - [MINOR] session: differenciate between accepted connections and received connections
446 - [MEDIUM] frontend: count the incoming connection earlier
447 - [MINOR] frontend: count denied TCP requests separately
448 - [CLEANUP] stick_table: add/clarify some comments
449 - [BUILD] memory: add a few missing parenthesis to the pool management macros
450 - [MINOR] stick_table: add support for variable-sized data
451 - [CLEANUP] stick_table: rename some stksess struct members to avoid confusion
452 - [CLEANUP] stick_table: move pattern to key functions to stick_table.c
453 - [MEDIUM] stick_table: add room for extra data types
454 - [MINOR] stick_table: add support for "conn_cum" data type.
455 - [MEDIUM] stick_table: don't overwrite data when storing an entry
456 - [MINOR] config: initialize stick tables after all the parsing
457 - [MINOR] stick_table: provide functions to return stksess data from a type
458 - [MEDIUM] stick_table: move the server ID to a generic data type
459 - [MINOR] stick_table: enable it for frontends too
460 - [MINOR] stick_table: export the stick_table_key
461 - [MINOR] tcp: add per-source connection rate limiting
462 - [MEDIUM] stick_table: separate storage and update of session entries
463 - [MEDIUM] stick-tables: add a reference counter to each entry
464 - [MINOR] session: add a pointer to the tracked counters for the source
465 - [CLEANUP] proto_tcp: make the config parser a little bit more flexible
466 - [BUG] config: report the correct proxy type in tcp-request errors
467 - [MINOR] config: provide a function to quote args in a more friendly way
468 - [BUG] stick_table: the fix for the memory leak caused a regression
469 - [MEDIUM] backend: support servers on 0.0.0.0
470 - [BUG] stick-table: correctly refresh expiration timers
471 - [MEDIUM] stream-interface: add a ->release callback
472 - [MINOR] proxy: add a "parent" member to the structure
473 - [MEDIUM] session: make it possible to call an I/O handler on both SI
474 - [MINOR] tools: add a fast div64_32 function
475 - [MINOR] freq_ctr: add new types and functions for periods different from 1s
476 - [MINOR] errors: provide new status codes for config parsing functions
477 - [BUG] http: denied requests must not be counted as denied resps in listeners
478 - [MINOR] tools: add a get_std_op() function to parse operators
479 - [MEDIUM] acl: make use of get_std_op() to parse intger ranges
480 - [MAJOR] stream_sock: better wakeup conditions on read()
481 - [BUG] session: analysers must be checked when SI state changes
482 - [MINOR] http: reset analysers to listener's, not frontend's
483 - [MEDIUM] session: support "tcp-request content" rules in backends
484 - [BUILD] always match official tags when doing git-tar
485 - [MAJOR] stream_interface: fix the wakeup conditions for embedded iohandlers
486 - [MEDIUM] buffer: make buffer_feed* support writing non-contiguous chunks
487 - [MINOR] tcp: src_count acl does not have a permanent result
488 - [MAJOR] session: add track-counters to track counters related to the session
489 - [MINOR] stick-table: provide a table lookup function
490 - [MINOR] stick-table: use suffix "_cnt" for cumulated counts
491 - [MEDIUM] session: move counter ACL fetches from proto_tcp
492 - [MEDIUM] session: add concurrent connections counter
493 - [MEDIUM] session: add data in and out volume counters
494 - [MINOR] session: add the trk_conn_cnt ACL keyword to track connection counts
495 - [MEDIUM] session-counters: automatically update tracked connection count
496 - [MINOR] session: add the trk_conn_cur ACL keyword to track concurrent connection
497 - [MINOR] session: add trk_kbytes_* ACL keywords to track data size
498 - [MEDIUM] session: add a counter on the cumulated number of sessions
499 - [MINOR] config: support a comma-separated list of store data types in stick-table
500 - [MEDIUM] stick-tables: add support for arguments to data_types
501 - [MEDIUM] stick-tables: add stored data argument type checking
502 - [MEDIUM] session counters: add conn_rate and sess_rate counters
503 - [MEDIUM] session counters: add bytes_in_rate and bytes_out_rate counters
504 - [MINOR] stktable: add a stktable_update_key() function
505 - [MINOR] session-counters: add a general purpose counter (gpc0)
506 - [MEDIUM] session-counters: add HTTP req/err tracking
507 - [MEDIUM] stats: add "show table [<name>]" to dump a stick-table
508 - [MEDIUM] stats: add "clear table <name> key <value>" to clear table entries
509 - [CLEANUP] stick-table: declare stktable_data_types as extern
510 - [MEDIUM] stick-table: make use of generic types for stored data
511 - [MINOR] stats: correctly report errors on "show table" and "clear table"
512 - [MEDIUM] stats: add the ability to dump table entries matching criteria
513 - [DOC] configuration: document all the new tracked counters
514 - [DOC] stats: document "show table" and "clear table"
515 - [MAJOR] session-counters: split FE and BE track counters
516 - [MEDIUM] tcp: accept the "track-counters" in "tcp-request content" rules
517 - [MEDIUM] session counters: automatically remove expired entries.
518 - [MEDIUM] config: replace 'tcp-request <action>' with "tcp-request connection"
519 - [MEDIUM] session-counters: make it possible to count connections from frontend
520 - [MINOR] session-counters: use "track-sc{1,2}" instead of "track-{fe,be}-counters"
521 - [MEDIUM] session-counters: correctly unbind the counters tracked by the backend
522 - [CLEANUP] stats: use stksess_kill() to remove table entries
523 - [DOC] update the references to session counters and to tcp-request connection
524 - [DOC] cleanup: split a few long lines
525 - [MEDIUM] http: forward client's close when abortonclose is set
526 - [BUG] queue: don't dequeue proxy-global requests on disabled servers
527 - [BUG] stats: global stats timeout may be specified before stats socket.
528 - [BUG] conf: add tcp-request content rules to the correct list
529
Willy Tarreau21475e32010-05-23 08:46:08 +02005302010/05/23 : 1.5-dev0
531 - exact copy of 1.4.6
532
Willy Tarreau5fdd77d2010-05-16 22:34:28 +02005332010/05/16 : 1.4.6
534 - [BUILD] ebtree: update to v6.0.1 to remove references to dprintf()
535 - [CLEANUP] acl: make use of eb_is_empty() instead of open coding the tree's emptiness test
536 - [MINOR] acl: add srv_is_up() to check that a specific server is up or not
537 - [DOC] add a few precisions about the use of RDP cookies
538
Willy Tarreau9d4d9e32010-05-13 22:17:08 +02005392010/05/13 : 1.4.5
540 - [DOC] report minimum kernel version for tproxy in the Makefile
541 - [MINOR] add the "ignore-persist" option to conditionally ignore persistence
542 - [DOC] add the "ignore-persist" option to conditionally ignore persistence
543 - [DOC] fix ignore-persist/force-persist documentation
544 - [BUG] cttproxy: socket fd leakage in check_cttproxy_version
545 - [DOC] doc/configuration.txt: fix typos
546 - [MINOR] option http-pretend-keepalive is both for FEs and BEs
547 - [MINOR] fix possible crash in debug mode with invalid responses
548 - [MINOR] halog: add support for statisticts on status codes
549 - [OPTIM] halog: use a faster zero test in fgets()
550 - [OPTIM] halog: minor speedup by using unlikely()
551 - [OPTIM] halog: speed up fgets2-64 by about 10%
552 - [DOC] refresh the README file and merge the CONTRIB file into it
553 - [MINOR] acl: support loading values from files
554 - [MEDIUM] ebtree: upgrade to version 6.0
555 - [MINOR] acl trees: add flags and union members to store values in trees
556 - [MEDIUM] acl: add ability to insert patterns in trees
557 - [MEDIUM] acl: add tree-based lookups of exact strings
558 - [MEDIUM] acl: add tree-based lookups of networks
559 - [MINOR] acl: ignore empty lines and comments in pattern files
560 - [MINOR] stick-tables: add support for "stick on hdr"
561
Willy Tarreau9508c1c2010-04-07 23:12:24 +02005622010/04/07 : 1.4.4
563 - [BUG] appsession should match the whole cookie name
564 - [CLEANUP] proxy: move PR_O_SSL3_CHK to options2 to release one flag
565 - [MEDIUM] backend: move the transparent proxy address selection to backend
566 - [MINOR] add very fast IP parsing functions
567 - [MINOR] add new tproxy flags for dynamic source address binding
568 - [MEDIUM] add ability to connect to a server from an IP found in a header
569 - [BUILD] config: last patch breaks build without CONFIG_HAP_LINUX_TPROXY
570 - [MINOR] http: make it possible to pretend keep-alive when doing close
571 - [MINOR] config: report "default-server" instead of "(null)" in error messages
572
Willy Tarreau75934a12010-03-30 09:50:08 +02005732010/03/30 : 1.4.3
574 - [CLEANUP] stats: remove printf format warning in stats_dump_full_sess_to_buffer()
575 - [MEDIUM] session: better fix for connection to servers with closed input
576 - [DOC] indicate in the doc how to bind to port ranges
577 - [BUG] backend: L7 hashing must not be performed on incomplete requests
578 - [TESTS] add a simple program to test connection resets
579 - [MINOR] cli: "show errors" should display "backend <NONE>" when backend was not used
580 - [MINOR] config: emit warnings when HTTP-only options are used in TCP mode
581 - [MINOR] config: allow "slowstart 0s"
582 - [BUILD] 'make tags' did not consider files ending in '.c'
583 - [MINOR] checks: add the ability to disable a server in the config
584
Willy Tarreauda618cb2010-03-17 23:41:57 +01005852010/03/17 : 1.4.2
586 - [CLEANUP] product branch update
587 - [DOC] Some more documentation cleanups
588 - [BUG] clf logs segfault when capturing a non existant header
589 - [OPTIM] config: only allocate check buffer when checks are enabled
590 - [MEDIUM] checks: support multi-packet health check responses
591 - [CLEANUP] session: remove duplicate test
592 - [BUG] http: don't wait for response data to leave buffer is client has left
593 - [MINOR] proto_uxst: set accept_date upon accept() to the wall clock time
594 - [MINOR] stats: don't send empty lines in "show errors"
595 - [MINOR] stats: make the data dump function reusable for other purposes
596 - [MINOR] stats socket: add show sess <id> to dump details about a session
597 - [BUG] stats: connection reset counters must be plain ascii, not HTML
598 - [BUG] url_param hash may return a down server
599 - [MINOR] force null-termination of hostname
600 - [MEDIUM] connect to servers even when the input has already been closed
601 - [BUG] don't merge anonymous ACLs !
602 - [BUG] config: fix endless loop when parsing "on-error"
603 - [MINOR] http: don't mark a server as failed when it returns 501/505
604 - [OPTIM] checks: try to detect the end of response without polling again
605 - [BUG] checks: don't report an error when recv() returns an error after data
606 - [BUG] checks: don't abort when second poll returns an error
607 - [MINOR] checks: make shutdown() silently fail
608 - [BUG] http: fix truncated responses on chunk encoding when size divides buffer size
609 - [BUG] init: unconditionally catch SIGPIPE
610 - [BUG] checks: don't wait for a close to start parsing the response
611
Willy Tarreauc5e60c32010-03-04 23:39:19 +01006122010/03/04 : 1.4.1
613 - [BUG] Clear-cookie path issue
614 - [DOC] fix typo on stickiness rules
615 - [BUILD] fix BSD and OSX makefiles for missing files
616 - [BUILD] includes order breaks OpenBSD build
617 - [BUILD] fix some build warnings on Solaris with is* macros
618 - [BUG] logs: don't report "last data" when we have just closed after an error
619 - [BUG] logs: don't report "proxy request" when server closes early
620 - [BUILD] fix platform-dependant build issues related to crypt()
621 - [STATS] count transfer aborts caused by client and by server
622 - [STATS] frontend requests were not accounted for failed requests
623 - [MINOR] report total number of processed connections when stopping a proxy
624 - [DOC] be more clear about the limitation to one single monitor-net entry
625
Willy Tarreaue18fdfd2010-02-26 14:55:22 +01006262010/02/26 : 1.4.0
627 - [MINOR] stats: report maint state for tracking servers too
628 - [DOC] fix summary to add pattern extraction
629 - [DOC] Documentation cleanups
630 - [BUG] cfgparse memory leak and missing free calls in deinit()
631 - [BUG] pxid/puid/luid: don't shift IDs when some of them are forced
632 - [EXAMPLES] add auth.cfg
633 - [BUG] uri_auth: ST_SHLGNDS should be 0x00000008 not 0x0000008
634 - [BUG] uri_auth: do not attemp to convert uri_auth -> http-request more than once
635 - [BUILD] auth: don't use unnamed unions
636 - [BUG] config: report unresolvable host names as errors
637 - [BUILD] fix build breakage with DEBUG_FULL
638 - [DOC] fix a typo about timeout check and clarify the explanation.
639 - [MEDIUM] http: don't use trash to realign large buffers
640 - [STATS] report HTTP requests (total and rate) in frontends
641 - [STATS] separate frontend and backend HTTP stats
642 - [MEDIUM] http: revert to use a swap buffer for realignment
643 - [MINOR] stats: report the request rate in frontends as cell titles
644 - [MINOR] stats: mark areas with an underline when tooltips are available
645 - [DOC] reorder some entries to maintain the alphabetical order
646 - [DOC] cleanup of the keyword matrix
647
Willy Tarreaub05613d2010-02-02 10:18:28 +01006482010/02/02 : 1.4-rc1
649 - [MEDIUM] add a maintenance mode to servers
650 - [MINOR] http-auth: last fix was wrong
651 - [CONTRIB] add base64rev-gen.c that was used to generate the base64rev table.
652 - [MINOR] Base64 decode
653 - [MINOR] generic auth support with groups and encrypted passwords
654 - [MINOR] add ACL_TEST_F_NULL_MATCH
655 - [MINOR] http-request: allow/deny/auth support for frontend/backend/listen
656 - [MINOR] acl: add http_auth and http_auth_group
657 - [MAJOR] use the new auth framework for http stats
658 - [DOC] add info about userlists, http-request and http_auth/http_auth_group acls
659 - [STATS] make it possible to change a CLI connection timeout
660 - [BUG] patterns: copy-paste typo in type conversion arguments
661 - [MINOR] pattern: make the converter more flexible by supporting void* and int args
662 - [MINOR] standard: str2mask: string to netmask converter
663 - [MINOR] pattern: add support for argument parsers for converters
664 - [MINOR] pattern: add the "ipmask()" converting function
665 - [MINOR] config: off-by-one in "stick-table" after list of converters
666 - [CLEANUP] acl, patterns: make use of my_strndup() instead of malloc+memcpy
667 - [BUG] restore accidentely removed line in last patch !
668 - [MINOR] checks: make the HTTP check code add the CRLF itself
669 - [MINOR] checks: add the server's status in the checks
670 - [BUILD] halog: make without arch-specific optimizations
671 - [BUG] halog: fix segfault in case of empty log in PCT mode (cherry picked from commit fe362fe4762151d209b9656639ee1651bc2b329d)
672 - [MINOR] http: disable keep-alive when process is going down
673 - [MINOR] acl: add build_acl_cond() to make it easier to add ACLs in config
674 - [CLEANUP] config: use build_acl_cond() instead of parse_acl_cond()
675 - [CLEANUP] config: use warnif_cond_requires_resp() to check for bad ACLs
676 - [MINOR] prepare req_*/rsp_* to receive a condition
677 - [CLEANUP] config: specify correct const char types to warnif_* functions
678 - [MEDIUM] config: factor out the parsing of 20 req*/rsp* keywords
679 - [MEDIUM] http: make the request filter loop check for optional conditions
680 - [MEDIUM] http: add support for conditional request filter execution
681 - [DOC] add some build info about the AIX platform (cherry picked from commit e41914c77edbc40aebf827b37542d37d758e371e)
682 - [MEDIUM] http: add support for conditional request header addition
683 - [MEDIUM] http: add support for conditional response header rewriting
684 - [DOC] add some missing ACLs about response header matching
685 - [MEDIUM] http: add support for proxy authentication
686 - [MINOR] http-auth: make the 'unless' keyword work as expected
687 - [CLEANUP] config: use build_acl_cond() to simplify http-request ACL parsing
688 - [MEDIUM] add support for anonymous ACLs
689 - [MEDIUM] http: switch to tunnel mode after status 101 responses
690 - [MEDIUM] http: stricter processing of the CONNECT method
691 - [BUG] config: reset check request to avoid double free when switching to ssl/sql
692 - [MINOR] config: fix too large ssl-hello-check message.
693 - [BUG] fix error response in case of server error
694
Willy Tarreau2eba6aa2010-01-25 23:28:05 +01006952010/01/25 : 1.4-dev8
696 - [CLEANUP] Keep in sync "defaults" support between documentation and code
697 - [MEDIUM] http: add support for Proxy-Connection header
698 - [CRITICAL] buffers: buffer_insert_line2 must not change the ->w entry
699 - [MINOR] http: remove a copy-paste typo in transaction cleaning
700 - [BUG] http: trim any excess buffer data when recycling a connection
701
Willy Tarreau6939b552010-01-25 01:54:37 +01007022010/01/25 : 1.4-dev7
703 - [BUG] appsession: possible memory leak in case of out of memory condition
704 - [MINOR] config: don't accept 'appsession' in defaults section
705 - [MINOR] Add function to parse a size in configuration
706 - [MEDIUM] Add stick table (persistence) management functions and types
707 - [MEDIUM] Add pattern fetch management types and functions
708 - [MEDIUM] Add src dst and dport pattern fetches.
709 - [MEDIUM] Add stick table configuration and init.
710 - [MEDIUM] Add stick and store rules analysers.
711 - [MINOR] add option "mysql-check" to use MySQL health checks
712 - [BUG] health checks: fix requeued message
713 - [OPTIM] remove SSP_O_VIA and SSP_O_STATUS
714 - [BUG] checks: fix newline termination
715 - [MINOR] acl: add fe_id/so_id to match frontend's and socket's id
716 - [BUG] appsession's sessid must be reset at end of transaction
717 - [BUILD] appsession did not build anymore under gcc-2.95
718 - [BUG] server redirection used an uninitialized string.
719 - [MEDIUM] http: fix handling of message pointers
720 - [MINOR] http: fix double slash prefix with server redirect
721 - [MINOR] http redirect: add the ability to append a '/' to the URL
722 - [BUG] stream_interface: fix retnclose and remove cond_close
723 - [MINOR] http redirect: don't explicitly state keep-alive on 1.1
724 - [MINOR] http: move appsession 'sessid' from session to http_txn
725 - [OPTIM] reorder http_txn to optimize cache lines placement
726 - [MINOR] http: differentiate waiting for new request and waiting for a complete requst
727 - [MINOR] http: add a separate "http-keep-alive" timeout
728 - [MINOR] config: remove undocumented and buggy 'timeout appsession'
729 - [DOC] fix various too large lines
730 - [DOC] remove several trailing spaces
731 - [DOC] add the doc about stickiness
732 - [BUILD] remove a warning in standard.h on AIX
733 - [BUG] checks: chars are unsigned on AIX, check was always true
734 - [CLEANUP] stream_sock: MSG_NOSIGNAL is only for send(), not recv()
735 - [BUG] check: we must not check for error before reading a response
736 - [BUG] buffers: remove remains of wrong obsolete length check
737 - [OPTIM] stream_sock: don't shutdown(write) when the socket is in error
738 - [BUG] http: don't count req errors on client resets or t/o during keep-alive
739 - [MEDIUM] http: don't switch to tunnel mode upon close
740 - [DOC] add documentation about connection header processing
741 - [MINOR] http: add http_remove_header2() to remove a header value.
742 - [MINOR] tools: add a "word_match()" function to match words and ignore spaces
743 - [MAJOR] http: rework request Connection header handling
744 - [MAJOR] http: rework response Connection header handling
745 - [MINOR] add the ability to force kernel socket buffer size.
746 - [BUG] http_server_error() must not purge a previous pending response
747 - [OPTIM] http: don't delay response if next request is incomplete
748 - [MINOR] add the "force-persist" statement to force persistence on down servers
749 - [MINOR] http: logs must report persistent connections to down servers
750 - [BUG] buffer_replace2 must never change the ->w entry
751
Willy Tarreau11f8f542010-01-08 07:49:44 +01007522010/01/08 : 1.4-dev6
753 - [BUILD] warning in stream_interface.h
754 - [BUILD] warning ultoa_r returns char *
755 - [MINOR] hana: only report stats if it is enabled
756 - [MINOR] stats: add "a link" & "a href" for sockets
757 - [MINOR]: stats: add show-legends to report additional informations
758 - [MEDIUM] default-server support
759 - [BUG]: add 'observer', 'on-error', 'error-limit' to supported options list
760 - [MINOR] stats: add href to tracked server
761 - [BUG] stats: show UP/DOWN status also in tracking servers
762 - [DOC] Restore ability to search a keyword at the beginning of a line
763 - [BUG] stats: cookie should be reported under backend not under proxy
764 - [BUG] cfgparser/stats: fix error message
765 - [BUG] http: disable auto-closing during chunk analysis
766 - [BUG] http: fix hopefully last closing issue on data forwarding
767 - [DEBUG] add an http_silent_debug function to debug HTTP states
768 - [MAJOR] http: fix again the forward analysers
769 - [BUG] http_process_res_common() must not skip the forward analyser
770 - [BUG] http: some possible missed close remain in the forward chain
771 - [BUG] http: redirect needed to be updated after recent changes
772 - [BUG] http: don't set no-linger on response in case of forced close
773 - [MEDIUM] http: restore the original behaviour of option httpclose
774 - [TESTS] add a file to test various connection modes
775 - [BUG] http: check options before the connection header
776 - [MAJOR] session: fix the order by which the analysers are run
777 - [MEDIUM] session: also consider request analysers added during response
778 - [MEDIUM] http: make safer use of the DONT_READ and AUTO_CLOSE flags
779 - [BUG] http: memory leak with captures when using keep-alive
780 - [BUG] http: fix for capture memory leak was incorrect
781 - [MINOR] http redirect: use proper call to return last response
782 - [MEDIUM] http: wait for some flush of the response buffer before a new request
783 - [MEDIUM] session: limit the number of analyser loops
784
Willy Tarreau1f445892010-01-03 23:23:36 +01007852010/01/03 : 1.4-dev5
786 - [MINOR] server tracking: don't care about the tracked server's mode
787 - [MEDIUM] appsession: add "len", "prefix" and "mode" options
788 - [MEDIUM] appsession: add the "request-learn" option
789 - [BUG] Configuration parser bug when escaping characters
790 - [MINOR] CSS & HTML fun
791 - [MINOR] Collect & provide http response codes received from servers
792 - [BUG] Fix silly typo: hspr_other -> hrsp_other
793 - [MINOR] Add "a name" to stats page
794 - [MINOR] add additional "a href"s to stats page
795 - [MINOR] Collect & provide http response codes for frontends, fix backends
796 - [DOC] some small spell fixes and unifications
797 - [MEDIUM] Decrease server health based on http responses / events, version 3
798 - [BUG] format '%d' expects type 'int', but argument 5 has type 'long int'
799 - [BUG] config: fix erroneous check on cookie domain names, again
800 - [BUG] Healthchecks: get a proper error code if connection cannot be completed immediately
801 - [DOC] trivial fix for man page
802 - [MINOR] config: report all supported options for the "bind" keyword
803 - [MINOR] tcp: add support for the defer_accept bind option
804 - [MINOR] unix socket: report the socket path in case of bind error
805 - [CONTRIB] halog: support searching by response time
806 - [DOC] add a reminder about obsolete documents
807 - [DOC] point to 1.4 doc, not 1.3
808 - [DOC] option tcp-smart-connect was missing from index
809 - [MINOR] http: detect connection: close earlier
810 - [CLEANUP] sepoll: clean up the fd_clr/fd_set functions
811 - [OPTIM] move some rarely used fields out of fdtab
812 - [MEDIUM] fd: merge fd_list into fdtab
813 - [MAJOR] buffer: flag BF_DONT_READ to disable reads when not required
814 - [MINOR] http: add new transaction flags for keep-alive and content-length
815 - [MEDIUM] http request: parse connection, content-length and transfer-encoding
816 - [MINOR] http request: update the TX_SRV_CONN_KA flag on rewrite
817 - [MINOR] http request: simplify the test of no-data
818 - [MEDIUM] http request: simplify POST length detection
819 - [MEDIUM] http request: make use of pre-parsed transfer-encoding header
820 - [MAJOR] http: create the analyser which waits for a response
821 - [MINOR] http: pre-set the persistent flags in the transaction
822 - [MEDIUM] http response: check body length and set transaction flags
823 - [MINOR] http response: update the TX_CLI_CONN_KA flag on rewrite
824 - [MINOR] http: remove the last call to stream_int_return
825 - [IMPORT] import ebtree v5.0 into directory ebtree/
826 - [MEDIUM] build: switch ebtree users to use new ebtree version
827 - [CLEANUP] ebtree: remove old unused files
828 - [BUG] definitely fix regparm issues between haproxy core and ebtree
829 - [CLEANUP] ebtree: cast to char * to get rid of gcc warning
830 - [BUILD] missing #ifndef in ebmbtree.h
831 - [BUILD] missing #ifndef in ebsttree.h
832 - [MINOR] tools: add hex2i() function to convert hex char to int
833 - [MINOR] http: create new MSG_BODY sub-states
834 - [BUG] stream_sock: BUF_INFINITE_FORWARD broke splice on 64-bit platforms
835 - [DOC] option is "defer-accept", not "defer_accept"
836 - [MINOR] http: keep pointer to beginning of data
837 - [BUG] x-original-to: name was not set in default instance
838 - [MINOR] http: detect tunnel mode and set it in the session
839 - [BUG] config: fix error message when config file is not found
840 - [BUG] config: fix wrong handling of too large argument count
841 - [BUG] config: disable 'option httplog' on TCP proxies
842 - [BUG] config: fix erroneous check on cookie domain names
843 - [BUG] config: cookie domain was ignored in defaults sections
844 - [MINOR] config: support passing multiple "domain" statements to cookies
845 - [MINOR] ebtree: add functions to lookup non-null terminated strings
846 - [MINOR] config: don't report error on all subsequent files on failure
847 - [BUG] second fix for the printf format warning
848 - [BUG] check_post: limit analysis to the buffer length
849 - [MEDIUM] http: process request body in a specific analyser
850 - [MEDIUM] backend: remove HTTP POST parsing from get_server_ph_post()
851 - [MAJOR] http: completely process the "connection" header
852 - [MINOR] http: only consider chunk encoding with HTTP/1.1
853 - [MAJOR] buffers: automatically compute the maximum buffer length
854 - [MINOR] http: move the http transaction init/cleanup code to proto_http
855 - [MINOR] http: move 1xx handling earlier to eliminate a lot of ifs
856 - [MINOR] http: introduce a new synchronisation state : HTTP_MSG_DONE
857 - [MEDIUM] http: rework chunk-size parser
858 - [MEDIUM] http: add a new transaction flags indicating if we know the transfer length
859 - [MINOR] buffers: add buffer_ignore() to skip some bytes
860 - [BUG] http: offsets are relative to the buffer, not to ->som
861 - [MEDIUM] http: automatically re-aling request buffer
862 - [BUG] http: body parsing must consider the start of message
863 - [MINOR] new function stream_int_cond_close()
864 - [MAJOR] http: implement body parser
865 - [BUG] http: typos on several unlikely() around header insertion
866 - [BUG] stream_sock: wrong max computation on recv
867 - [MEDIUM] http: rework the buffer alignment logic
868 - [BUG] buffers: wrong size calculation for displaced data
869 - [MINOR] stream_sock: prepare for closing when all pending data are sent
870 - [MEDIUM] http: add two more states for the closing period
871 - [MEDIUM] http: properly handle "option forceclose"
872 - [MINOR] stream_sock: add SI_FL_NOLINGER for faster close
873 - [MEDIUM] http: make forceclose use SI_FL_NOLINGER
874 - [MEDIUM] session: set SI_FL_NOLINGER when aborting on write timeouts
875 - [MEDIUM] http: add some SI_FL_NOLINGER around server errors
876 - [MINOR] config: option forceclose is valid in frontends too
877 - [BUILD] halog: insufficient include path in makefile
878 - [MEDIUM] http: make the analyser not rely on msg being initialized anymore
879 - [MEDIUM] http: make the parsers able to wait for a buffer flush
880 - [MAJOR] http: add support for option http-server-close
881 - [BUG] http: ensure we abort data transfer on write error
882 - [BUG] last fix was overzealous and disabled server-close
883 - [BUG] http: fix erroneous trailers size computation
884 - [MINOR] stream_sock: enable MSG_MORE when forwarding finite amount of data
885 - [OPTIM] http: set MSG_MORE on response when a pipelined request is pending
886 - [BUG] http: redirects were broken by chunk changes
887 - [BUG] http: the request URI pointer is relative to the buffer
888 - [OPTIM] http: don't immediately enable reading on request
889 - [MINOR] http: move redirect messages to HTTP/1.1 with a content-length
890 - [BUG] http: take care of errors, timeouts and aborts during the data phase
891 - [MINOR] http: don't wait for sending requests to the server
892 - [MINOR] http: make the conditional redirect support keep-alive
893 - [BUG] http: fix cookie parser to support spaces and commas in values
894 - [MINOR] config: some options were missing for "redirect"
895 - [MINOR] redirect: add support for unconditional rules
896 - [MINOR] config: centralize proxy struct initialization
897 - [MEDIUM] config: remove the limitation of 10 reqadd/rspadd statements
898 - [MEDIUM] config: remove the limitation of 10 config files
899 - [CLEANUP] http: remove a remaining impossible condition
900 - [OPTIM] http: optimize a bit the construct of the forward loops
901
Willy Tarreauc82a9e52009-10-12 06:40:53 +02009022009/10/12 : 1.4-dev4
903 - [DOC] add missing rate_lim and rate_max
904 - [MAJOR] struct chunk rework
905 - [MEDIUM] Health check reporting code rework + health logging, v3
906 - [BUG] check if rise/fall has an argument and it is > 0
907 - [MINOR] health checks logging unification
908 - [MINOR] add "description", "node" and show-node"/"show-desc", remove "node-name", v2
909 - [MINOR] Allow dots in show-node & add "white-space: nowrap" in th.pxname.
910 - [DOC] Add information about http://haproxy.1wt.eu/contrib.html
911 - [MINOR] Introduce include/types/counters.h
912 - [CLEANUP] Move counters to dedicated structures
913 - [MINOR] Add "clear counters" to clear statistics counters
914 - [MEDIUM] Collect & provide separate statistics for sockets, v2
915 - [BUG] Fix NULL pointer dereference in stats_check_uri_auth(), v2
916 - [MINOR] acl: don't report valid acls as potential mistakes
917 - [MINOR] Add cut_crlf(), ltrim(), rtrim() and alltrim()
918 - [MINOR] Add chunk_htmlencode and chunk_asciiencode
919 - [MINOR] Capture & display more data from health checks, v2
920 - [BUG] task.c: don't assing last_timer to node-less entries
921 - [BUG] http stats: large outputs sometimes got some parts chopped off
922 - [MINOR] backend: export some functions to recount servers
923 - [MINOR] backend: uninline some LB functions
924 - [MINOR] include time.h from freq_ctr.h as is uses "now".
925 - [CLEANUP] backend: move LB algos to individual files
926 - [MINOR] lb_map: reorder code in order to ease integration of new hash functions
927 - [CLEANUP] proxy: move last lb-specific bits to their respective files
928 - [MINOR] backend: separate declarations of LB algos from their lookup method
929 - [MINOR] backend: reorganize the LB algorithm selection
930 - [MEDIUM] backend: introduce the "static-rr" LB algorithm
931 - [MINOR] report list of supported pollers with -vv
932 - [DOC] log-health-checks is an option, not a directive
933 - [MEDIUM] new option "independant-streams" to stop updating read timeout on writes
934 - [BUG] stats: don't call buffer_shutw(), but ->shutw() instead
935 - [MINOR] stats: strip CR and LF from the input command line
936 - [BUG] don't refresh timeouts late after detected activity
937 - [MINOR] stats_dump_errors_to_buffer: use buffer_feed_chunk()
938 - [MINOR] stats_dump_sess_to_buffer: use buffer_feed_chunk()
939 - [MINOR] stats: make stats_dump_raw_to_buffer() use buffer_feed_chunk
940 - [MEDIUM] stats: don't use s->ana_state anymore
941 - [MINOR] remove now obsolete ana_state from the session struct
942 - [MEDIUM] stats: make HTTP stats use an I/O handler
943 - [MEDIUM] stream_int: adjust WAIT_ROOM handling
944 - [BUG] config: look for ID conflicts in all sockets, not only last ones.
945 - [MINOR] config: reference file and line with any listener/proxy/server declaration
946 - [MINOR] config: report places of duplicate names or IDs
947 - [MINOR] config: add pointer to file name in block/redirect/use_backend/monitor rules
948 - [MINOR] tools: add a new get_next_id() function
949 - [MEDIUM] config: automatically find unused IDs for proxies, servers and listeners
950 - [OPTIM] counters: move some max numbers to the counters struct
951 - [BUG] counters: fix segfault on missing counters for a listener
952 - [MEDIUM] backend: implement consistent hashing variation
953 - [MINOR] acl: add fe_conn, be_conn, queue, avg_queue
954 - [MINOR] stats: use 'clear counters all' to clear all values
955 - [MEDIUM] add access restrictions to the stats socket
956 - [MINOR] buffers: add buffer_feed2() and make buffer_feed() measure string length
957 - [MINOR] proxy: provide function to retrieve backend/server pointers
958 - [MINOR] add the "initial weight" to the server struct.
959 - [MEDIUM] stats: add the "get weight" command to report a server's weight
960 - [MEDIUM] stats: add the "set weight" command
961 - [BUILD] add a 'make tags' target
962 - [MINOR] stats: add support for numeric IDs in set weight/get weight
963 - [MINOR] stats: use a dedicated state to output static data
964 - [OPTIM] stats: check free space before trying to print
965
Willy Tarreau9f389e02009-09-24 00:12:50 +02009662009/09/24 : 1.4-dev3
967 - [BUILD] compilation of haproxy-1.4-dev2 on FreeBSD
968 - [MEDIUM] Collect & show information about last health check, v3
969 - [MINOR] export the hostname variable so that all the code can access it
970 - [MINOR] stats: add a new node-name setting
971 - [MEDIUM] remove old experimental tcpsplice option
972 - [BUILD] fix build for systems without SOL_TCP
973 - [MEDIUM] move connection establishment from backend to the SI.
974 - [MEDIUM] make the global stats socket part of a frontend
975 - [MEDIUM] session: account per-listener connections
976 - [MINOR] session: switch to established state if no connect function
977 - [MEDIUM] make the unix stats sockets use the generic session handler
978 - [CLEANUP] unix: remove uxst_process_session()
979 - [CLEANUP] move remaining stats sockets code to dumpstats
980 - [MINOR] move the initial task's nice value to the listener
981 - [MINOR] cleanup set_session_backend by using pre-computed analysers
982 - [MINOR] set s->srv_error according to the analysers
983 - [MEDIUM] set rep->analysers from fe and be analysers
984 - [MEDIUM] replace BUFSIZE with buf->size in computations
985 - [MEDIUM] make it possible to change the buffer size in the configuration
986 - [MEDIUM] report error on buffer writes larger than buffer size
987 - [MEDIUM] stream_interface: add and use ->update function to resync
988 - [CLEANUP] remove ifdef MSG_NOSIGNAL and define it instead
989 - [MEDIUM] remove TCP_CORK and make use of MSG_MORE instead
990 - [BUG] tarpit did not work anymore
991 - [MINOR] acl: add support for hdr_ip to match IP addresses in headers
992 - [MAJOR] buffers: fix misuse of the BF_SHUTW_NOW flag
993 - [MINOR] buffers: provide more functions to handle buffer data
994 - [MEDIUM] buffers: provide new buffer_feed*() function
995 - [MINOR] buffers: add peekchar and peekline functions for stream interfaces
996 - [MINOR] buffers: provide buffer_si_putchar() to send a char from a stream interface
997 - [BUG] buffer_forward() would not correctly consider data already scheduled
998 - [MINOR] buffers: add buffer_cut_tail() to cut only unsent data
999 - [MEDIUM] stream_interface: make use of buffer_cut_tail() to report errors
1000 - [MAJOR] http: add support for HTTP 1xx informational responses
1001 - [MINOR] buffers: inline buffer_si_putchar()
1002 - [MAJOR] buffers: split BF_WRITE_ENA into BF_AUTO_CONNECT and BF_AUTO_CLOSE
1003 - [MAJOR] buffers: fix the BF_EMPTY flag's meaning
1004 - [BUG] stream_interface: SI_ST_CLO must have buffers SHUT
1005 - [MINOR] stream_sock: don't set SI_FL_WAIT_DATA if BF_SHUTW_NOW is set
1006 - [MEDIUM] add support for infinite forwarding
1007 - [BUILD] stream_interface: fix conflicting declaration
1008 - [BUG] buffers: buffer_forward() must not always clear BF_OUT_EMPTY
1009 - [BUG] variable buffer size ignored at initialization time
1010 - [MINOR] ensure that buffer_feed() and buffer_skip() set BF_*_PARTIAL
1011 - [BUG] fix buffer_skip() and buffer_si_getline() to correctly handle wrap-arounds
1012 - [MINOR] stream_interface: add SI_FL_DONT_WAKE flag
1013 - [MINOR] stream_interface: add iohandler callback
1014 - [MINOR] stream_interface: add functions to support running as internal/external tasks
1015 - [MEDIUM] session: call iohandler for embedded tasks (applets)
1016 - [MINOR] add a ->private member to the stream_interface
1017 - [MEDIUM] stats: prepare the connection for closing before dumping
1018 - [MEDIUM] stats: replace the stats socket analyser with an SI applet
1019
Willy Tarreau68dcd252009-08-09 22:57:09 +020010202009/08/09 : 1.4-dev2
1021 - [BUG] task: fix possible crash when some timeouts are not configured
1022 - [BUG] log: option tcplog would log to global if no logger was defined
1023
Willy Tarreaub03d2982009-07-29 22:38:32 +020010242009/07/29 : 1.4-dev1
1025 - [MINOR] acl: add support for matching of RDP cookies
1026 - [MEDIUM] add support for RDP cookie load-balancing
1027 - [MEDIUM] add support for RDP cookie persistence
1028 - [MINOR] add a new CLF log format
1029 - [MINOR] startup: don't imply -q with -D
1030 - [BUG] ensure that we correctly re-start old process in case of error
1031 - [MEDIUM] add support for binding to source port ranges during connect
1032 - [MINOR] config: track "no option"/"option" changes
1033 - [MINOR] config: support resetting options do default values
1034 - [MEDIUM] implement option tcp-smart-accept at the frontend
1035 - [MEDIUM] stream_sock: implement tcp-cork for use during shutdowns on Linux
1036 - [MEDIUM] implement tcp-smart-connect option at the backend
1037 - [MEDIUM] add support for TCP MSS adjustment for listeners
1038 - [MEDIUM] support setting a server weight to zero
1039 - [MINOR] make DEFAULT_MAXCONN user-configurable at build time
1040 - [MAJOR] session: don't clear buffer status flags anymore
1041 - [MAJOR] session: only check for timeouts when they have just occurred.
1042 - [MAJOR] session: simplify buffer error handling
1043 - [MEDIUM] config: split parser and checker in two functions
1044 - [MEDIUM] config: support loading multiple configuration files
1045 - [MEDIUM] stream_sock: don't close prematurely when nolinger is set
1046 - [MEDIUM] session: rework buffer analysis to permit permanent analysers
1047 - [MEDIUM] splice: set the capability on each stream_interface
1048 - [BUG] http: redirect rules were processed too early
1049 - [CLEANUP] remove unused DEBUG_PARSE_NO_SPEEDUP define
1050 - [MEDIUM] http: split request waiter from request processor
1051 - [MEDIUM] session: tell analysers what bit they were called for
1052 - [MAJOR] http: complete splitting of the remaining stages
1053 - [MINOR] report in the proxies the requirements for ACLs
1054 - [MINOR] http: rely on proxy->acl_requires to allocate hdr_idx
1055 - [MINOR] acl: add HTTP protocol detection (req_proto_http)
1056 - [MINOR] prepare callers of session_set_backend to handle errors
1057 - [BUG] default ACLs did not properly set the ->requires flag
1058 - [MEDIUM] allow a TCP frontend to switch to an HTTP backend
1059 - [MINOR] ensure we can jump from swiching rules to http without data
1060 - [MINOR] http: take http request timeout from the backend
1061 - [MINOR] allow TCP inspection rules to make use of HTTP ACLs
1062 - [BUILD] report commit date and not author's date as build date
1063 - [MINOR] acl: don't complain anymore when using L7 acls in TCP
1064 - [BUG] stream_sock: always shutdown(SHUT_WR) before closing
1065 - [BUG] stream_sock: don't stop reading when the poller reports an error
1066 - [BUG] config: tcp-request content only accepts "if" or "unless"
1067 - [BUG] task: fix possible timer drift after update
1068 - [MINOR] apply tcp-smart-connect option for the checks too
1069 - [MINOR] stats: better displaying in MSIE
1070 - [MINOR] config: improve error reporting in global section
1071 - [MINOR] config: improve error reporting in listen sections
1072 - [MINOR] config: the "capture" keyword is not allowed in backends
1073 - [MINOR] config: improve error reporting when checking configuration
1074 - [BUILD] fix a minor build warning on AIX
1075 - [BUILD] use "git cmd" instead of "git-cmd"
1076 - [CLEANUP] report 2009 not 2008 in the copyright banner.
1077 - [MINOR] print usage on the stats sockets upon invalid commands
1078 - [MINOR] acl: detect and report potential mistakes in ACLs
1079 - [BUILD] fix incorrect printf arg count with tcp_splice
1080 - [BUG] fix random pauses on last segment of a series
1081 - [BUILD] add support for build under Cygwin
1082
Willy Tarreau79158882009-06-09 11:59:08 +020010832009/06/09 : 1.4-dev0
1084 - exact copy of 1.3.18
1085
Willy Tarreaubeb05ae2009-05-10 20:27:47 +020010862009/05/10 : 1.3.18
1087 - [MEDIUM] add support for "balance hdr(name)"
1088 - [CLEANUP] give a little bit more information in error message
1089 - [MINOR] add X-Original-To: header
1090 - [BUG] x-original-to: fix missing initialization to default value
1091 - [BUILD] spec file: fix broken pipe during rpmbuild and add man file
1092 - [MINOR] improve reporting of misplaced acl/reqxxx rules
1093 - [MEDIUM] http: add options to ignore invalid header names
1094 - [MEDIUM] http: capture invalid requests/responses even if accepted
1095 - [BUILD] add format(printf) to printf-like functions
1096 - [MINOR] fix several printf formats and missing arguments
1097 - [BUG] stats: total and lbtot are unsigned
1098 - [MINOR] fix a few remaining printf-like formats on 64-bit platforms
1099 - [CLEANUP] remove unused make option from haproxy.spec
1100 - [BUILD] make it possible to pass alternative arch at build time
1101 - [MINOR] switch all stat counters to 64-bit
1102 - [MEDIUM] ensure we don't recursively call pool_gc2()
1103 - [CRITICAL] uninitialized response field can sometimes cause crashes
1104 - [BUG] fix wrong pointer arithmetics in HTTP message captures
1105 - [MINOR] rhel init script : support the reload operation
1106 - [MINOR] add basic signal handling functions
1107 - [BUILD] add signal.o to all makefiles
1108 - [MEDIUM] call signal_process_queue from run_poll_loop
1109 - [MEDIUM] pollers: don't wait if a signal is pending
1110 - [MEDIUM] convert all signals to asynchronous signals
1111 - [BUG] O(1) pollers should check their FD before closing it
1112 - [MINOR] don't close stdio fds twice
1113 - [MINOR] add options dontlog-normal and log-separate-errors
1114 - [DOC] minor fixes and rearrangements
1115 - [BUG] fix parser crash on unconditional tcp content rules
1116 - [DOC] rearrange the configuration manual and add a summary
1117 - [MINOR] standard: provide a new 'my_strndup' function
1118 - [MINOR] implement per-logger log level limitation
1119 - [MINOR] compute the max of sessions/s on fe/be/srv
1120 - [MINOR] stats: report max sessions/s and limit in CSV export
1121 - [MINOR] stats: report max sessions/s and limit in HTML stats
1122 - [MINOR] stats/html: use the arial font before helvetica
1123
Willy Tarreauf459b422009-03-29 15:26:57 +020011242009/03/29 : 1.3.17
1125 - Update specfile to build for v2.6 kernel.
1126 - [BUG] reset the stream_interface connect timeout upon connect or error
1127 - [BUG] reject unix accepts when connection limit is reached
1128 - [MINOR] show sess: report number of calls to each task
1129 - [BUG] don't call epoll_ctl() on closed sockets
1130 - [BUG] stream_sock: disable I/O on fds reporting an error
1131 - [MINOR] sepoll: don't count two events on the same FD.
1132 - [MINOR] show sess: report a lot more information about sessions
1133 - [BUG] stream_sock: check for shut{r,w} before refreshing some timeouts
1134 - [BUG] don't set an expiration date directly from now_ms
1135 - [MINOR] implement ulltoh() to write HTML-formatted numbers
1136 - [MINOR] stats/html: group digits by 3 to clarify numbers
1137 - [BUILD] remove haproxy-small.spec
1138 - [BUILD] makefile: remove unused references to linux24eold and EPOLL_CTL_WORKAROUND
1139
Willy Tarreau8019ffa2009-03-22 23:46:12 +010011402009/03/22 : 1.3.16
1141 - [BUILD] Fixed Makefile for linking pcre
1142 - [CONTRIB] selinux policy for haproxy
1143 - [MINOR] show errors: encode backslash as well as non-ascii characters
1144 - [MINOR] cfgparse: some cleanups in the consistency checks
1145 - [MINOR] cfgparse: set backends to "balance roundrobin" by default
1146 - [MINOR] tcp-inspect: permit the use of no-delay inspection
1147 - [MEDIUM] reverse internal proxy declaration order to match configuration
1148 - [CLEANUP] config: catch and report some possibly wrong rule ordering
1149 - [BUG] connect timeout is in the stream interface, not the buffer
1150 - [BUG] session: errors were not reported in termination flags in TCP mode
1151 - [MINOR] tcp_request: let the caller take care of errors and timeouts
1152 - [CLEANUP] http: remove some commented out obsolete code in process_response
1153 - [MINOR] update ebtree to version 4.1
1154 - [MEDIUM] scheduler: get rid of the 4 trees thanks and use ebtree v4.1
1155 - [BUG] sched: don't leave 3 lasts tasks unprocessed when niced tasks are present
1156 - [BUG] scheduler: fix improper handling of duplicates __task_queue()
1157 - [MINOR] sched: permit a task to stay up between calls
1158 - [MINOR] task: keep a task count and clean up task creators
1159 - [MINOR] stats: report number of tasks (active and running)
1160 - [BUG] server check intervals must not be null
1161 - [OPTIM] stream_sock: don't retry to read after a large read
1162 - [OPTIM] buffer: new BF_READ_DONTWAIT flag reduces EAGAIN rates
1163 - [MEDIUM] session: don't resync FSMs on non-interesting changes
1164 - [BUG] check for global.maxconn before doing accept()
1165 - [OPTIM] sepoll: do not re-check whole list upon accepts
1166
Willy Tarreau8185ced2009-03-09 22:45:53 +010011672009/03/09 : 1.3.16-rc2
1168 - [BUG] stream_sock: write timeout must be updated when forwarding !
1169
Willy Tarreauff63b432009-03-09 01:03:42 +010011702009/03/09 : 1.3.16-rc1
1171 - appsessions: cleanup DEBUG_HASH and initialize request_counter
1172 - [MINOR] acl: add new keyword "connslots"
1173 - [MINOR] cfgparse: fix off-by 2 in error message size
1174 - [BUILD] fix build with gcc 4.3
1175 - [BUILD] fix MANDIR default location to match documentation
1176 - [TESTS] add a debug patch to help trigger the stats bug
1177 - [BUG] Flush buffers also where there are exactly 0 bytes left
1178 - [MINOR] Allow to specify a domain for a cookie
1179 - [BUG/CLEANUP] cookiedomain -> cookie_domain rename + free(p->cookie_domain)
1180 - [MEDIUM] Fix memory freeing at exit
1181 - [MEDIUM] Fix memory freeing at exit, part 2
1182 - [BUG] Fix listen & more of 2 couples <ip>:<port>
1183 - [DOC] remove buggy comment for use_backend
1184 - [CRITICAL] fix server state tracking: it was O(n!) instead of O(n)
1185 - [MEDIUM] add support for URI hash depth and length limits
1186 - [MINOR] permit renaming of x-forwarded-for header
1187 - [BUILD] fix Makefile.bsd and Makefile.osx for stream_interface
1188 - [BUILD] Haproxy won't compile if DEBUG_FULL is defined
1189 - [MEDIUM] upgrade to ebtree v4.0
1190 - [DOC] update the README file with new build options
1191 - [MEDIUM] reduce risk of event starvation in ev_sepoll
1192 - [MEDIUM] detect streaming buffers and tag them as such
1193 - [MEDIUM] add support for conditional HTTP redirection
1194 - [BUILD] make install should depend on haproxy not "all"
1195 - [DEBUG] add a TRACE macro to facilitate runtime data extraction
1196 - [BUG] event pollers must not wait if a task exists in the run queue
1197 - [BUG] queue management: wake oldest request in queues
1198 - [BUG] log: reported queue position was offed-by-one
1199 - [BUG] fix the dequeuing logic to ensure that all requests get served
1200 - [DOC] documentation for the "retries" parameter was missing.
1201 - [MEDIUM] implement a monotonic internal clock
1202 - [MEDIUM] further improve monotonic clock by check forward jumps
1203 - [OPTIM] add branch prediction hints in list manipulations
1204 - [MAJOR] replace ultree with ebtree in wait-queues
1205 - [BUG] we could segfault during exit while freeing uri_auths
1206 - [BUG] wqueue: perform proper timeout comparisons with wrapping values
1207 - [MINOR] introduce now_ms, the current date in milliseconds
1208 - [BUG] disable buffer read timeout when reading stats
1209 - [MEDIUM] rework the wait queue mechanism
1210 - [BUILD] change declaration of base64tab to fix build with Intel C++
1211 - [OPTIM] shrink wake_expired_tasks() by using task_wakeup()
1212 - [MAJOR] use an ebtree instead of a list for the run queue
1213 - [MEDIUM] introduce task->nice and boot access to statistics
1214 - [OPTIM] task_queue: assume most consecutive timers are equal
1215 - [BUILD] silent a warning in unlikely() with gcc 4.x
1216 - [MAJOR] convert all expiration timers from timeval to ticks
1217 - [BUG] use_backend would not correctly consider "unless"
1218 - [TESTS] added test-acl.cfg to test some ACL combinations
1219 - [MEDIUM] add support for configuration keyword registration
1220 - [MEDIUM] modularize the global "stats" keyword configuration parser
1221 - [MINOR] cfgparse: add support for warnings in external functions
1222 - [MEDIUM] modularize the "timeout" keyword configuration parser
1223 - [MAJOR] implement tcp request content inspection
1224 - [MINOR] acl: add a new parsing function: parse_dotted_ver
1225 - [MINOR] acl: add req_ssl_ver in TCP, to match an SSL version
1226 - [CLEANUP] remove unused include/types/client.h
1227 - [CLEANUP] remove many #include <types/xxx> from C files
1228 - [CLEANUP] remove dependency on obsolete INTBITS macro
1229 - [DOC] document the new "tcp-request" keyword and associated ACLs
1230 - [MINOR] acl: add REQ_CONTENT to the list of default acls
1231 - [MEDIUM] acl: permit fetch() functions to set the result themselves
1232 - [MEDIUM] acl: get rid of dummy values in always_true/always_false
1233 - [MINOR] acl: add the "wait_end" acl verb
1234 - [MEDIUM] acl: enforce ACL type checking
1235 - [MEDIUM] acl: set types on all currently known ACL verbs
1236 - [MEDIUM] acl: when possible, report the name and requirements of ACLs in warnings
1237 - [CLEANUP] remove 65 useless NULL checks before free
1238 - [MEDIUM] memory: update pool_free2() to support NULL pointers
1239 - [MEDIUM] buffers: ensure buffer_shut* are properly called upon shutdowns
1240 - [MEDIUM] process_srv: rely on buffer flags for client shutdown
1241 - [MEDIUM] process_srv: don't rely at all on client state
1242 - [MEDIUM] process_cli: don't rely at all on server state
1243 - [BUG] fix segfault with url_param + check_post
1244 - [BUG] server timeout was not considered in some circumstances
1245 - [BUG] client timeout incorrectly rearmed while waiting for server
1246 - [MAJOR] kill CL_STINSPECT and CL_STHEADERS (step 1)
1247 - [MAJOR] get rid of SV_STANALYZE (step 2)
1248 - [MEDIUM] simplify and centralize request timeout cancellation and request forwarding
1249 - [MAJOR] completely separate HTTP and TCP states on the request path
1250 - [BUG] fix recently introduced loop when client closes early
1251 - [MAJOR] get rid of the SV_STHEADERS state
1252 - [MAJOR] better separation of response processing and server state
1253 - [MAJOR] clearly separate HTTP response processing from TCP server state
1254 - [MEDIUM] remove unused references to {CL|SV}_STSHUT*
1255 - [MINOR] term_trace: add better instrumentations to trace the code
1256 - [BUG] ev_sepoll: closed file descriptors could persist in the spec list
1257 - [BUG] process_response must not enable the read FD
1258 - [BUG] buffers: remove BF_MAY_CONNECT and fix forwarding issue
1259 - [BUG] process_response: do not touch srv_state
1260 - [BUG] maintain_proxies must not disable backends
1261 - [CLEANUP] get rid of BF_SHUT*_PENDING
1262 - [MEDIUM] buffers: add BF_EMPTY and BF_FULL to remove dependency on req/rep->l
1263 - [MAJOR] process_session: rely only on buffer flags
1264 - [MEDIUM] use buffer->wex instead of buffer->cex for connect timeout
1265 - [MEDIUM] centralize buffer timeout checks at the top of process_session
1266 - [MINOR] ensure the termination flags are set by process_xxx
1267 - [MEDIUM] session: move the analysis bit field to the buffer
1268 - [OPTIM] process_cli/process_srv: reduce the number of tests
1269 - [BUG] regparm is broken on gcc < 3
1270 - [BUILD] fix warning in proto_tcp.c with gcc >= 4
1271 - [MEDIUM] merge inspect_exp and txn->exp into request buffer
1272 - [BUG] process_cli/process_srv: don't call shutdown when already done
1273 - [BUG] process_request: HTTP body analysis must return zero if missing data
1274 - [TESTS] test-fsm: 22 regression tests for state machines
1275 - [BUG] Fix empty X-Forwarded-For header name when set in defaults section
1276 - [BUG] fix harmless but wrong fd insertion sequence
1277 - [MEDIUM] make it possible for analysers to follow the whole session
1278 - [MAJOR] rework of the server FSM
1279 - [OPTIM] remove useless fd_set(read) upon shutdown(write)
1280 - [MEDIUM] massive cleanup of process_srv()
1281 - [MEDIUM] second level of code cleanup for process_srv_data
1282 - [MEDIUM] third cleanup and optimization of process_srv_data()
1283 - [MEDIUM] process_srv_data: ensure that we always correctly re-arm timeouts
1284 - [MEDIUM] stream_sock_process_data moved to stream_sock.c
1285 - [MAJOR] make the client side use stream_sock_process_data()
1286 - [MEDIUM] split stream_sock_process_data
1287 - [OPTIM] stream_sock_read must check for null-reads more often
1288 - [MINOR] only call flow analysers when their read side is connected.
1289 - [MEDIUM] reintroduce BF_HIJACK with produce_content
1290 - [MINOR] re-arrange buffer flags and rename some of them
1291 - [MINOR] do not check for BF_SHUTR when computing write timeout
1292 - [OPTIM] ev_sepoll: detect newly created FDs and check them once
1293 - [OPTIM] reduce the number of calls to task_wakeup()
1294 - [OPTIM] force inlining of large functions with gcc >= 3
1295 - [MEDIUM] indicate a reason for a task wakeup
1296 - [MINOR] change type of fdtab[]->owner to void*
1297 - [MAJOR] make stream sockets aware of the stream interface
1298 - [MEDIUM] stream interface: add the ->shutw method as well as in and out buffers
1299 - [MEDIUM] buffers: add BF_READ_ATTACHED and BF_ANA_TIMEOUT
1300 - [MEDIUM] process_session: make use of the new buffer flags
1301 - [CLEANUP] process_session: move debug outputs out of the critical loop
1302 - [MEDIUM] move QUEUE and TAR timers to stream interfaces
1303 - [OPTIM] add compiler hints in tick_is_expired()
1304 - [MINOR] add buffer_check_timeouts() to check what timeouts have fired.
1305 - [MEDIUM] use buffer_check_timeouts instead of stream_sock_check_timeouts()
1306 - [MINOR] add an expiration flag to the stream_sock_interface
1307 - [MAJOR] migrate the connection logic to stream interface
1308 - [MAJOR] add a connection error state to the stream_interface
1309 - [MEDIUM] add the SN_CURR_SESS flag to the session to track open sessions
1310 - [MEDIUM] continue layering cleanups.
1311 - [MEDIUM] stream_interface: added a DISconnected state between CON/EST and CLO
1312 - [MEDIUM] remove stream_sock_update_data()
1313 - [MINOR] maintain a global session list in order to ease debugging
1314 - [BUG] shutw must imply close during a connect
1315 - [MEDIUM] process shutw during connection attempt
1316 - [MEDIUM] make the stream interface control the SHUT{R,W} bits
1317 - [MAJOR] complete layer4/7 separation
1318 - [CLEANUP] move the session-related functions to session.c
1319 - [MINOR] call session->do_log() for logging
1320 - [MINOR] replace the ambiguous client_return function by stream_int_return
1321 - [MINOR] replace client_retnclose() with stream_int_retnclose()
1322 - [MINOR] replace srv_close_with_err() with http_server_error()
1323 - [MEDIUM] make the http server error function a pointer in the session
1324 - [CLEANUP] session.c: removed some migration left-overs in sess_establish()
1325 - [MINOR] stream_sock_data_finish() should not expose fd
1326 - [MEDIUM] extract TCP request processing from HTTP
1327 - [MEDIUM] extract the HTTP tarpit code from process_request().
1328 - [MEDIUM] move the HTTP request body analyser out of process_request().
1329 - [MEDIUM] rename process_request to http_process_request
1330 - [BUG] fix forgotten server session counter
1331 - [MINOR] declare process_session in session.h, not proto_http.h
1332 - [MEDIUM] first pass of lifting to proto_uxst.c:uxst_event_accept()
1333 - [MINOR] add an analyser code for UNIX stats request
1334 - [MINOR] pre-set analyser flags on the listener at registration time
1335 - [BUG] do not forward close from cons to prod with analysers
1336 - [MEDIUM] ensure that sock->shutw() also closes read for init states
1337 - [MINOR] add an analyser state in struct session
1338 - [MAJOR] make unix sockets work again with stats
1339 - [MEDIUM] remove cli_fd, srv_fd, cli_state and srv_state from the session
1340 - [MINOR] move the listener reference from fd to session
1341 - [MEDIUM] reference the current hijack function in the buffer itself
1342 - [MINOR] slightly rebalance stats_dump_{raw,http}
1343 - [MINOR] add a new back-reference type : struct bref
1344 - [MINOR] add back-references to sessions for later use by a dumper.
1345 - [MEDIUM] add support for "show sess" in unix stats socket
1346 - [BUG] do not release the connection slot during a retry
1347 - [BUG] dynamic connection throttling could return a max of zero conns
1348 - [BUG] do not try to pause backends during reload
1349 - [BUG] ensure that listeners from disabled proxies are correctly unbound.
1350 - [BUG] acl-related keywords are not allowed in defaults sections
1351 - [BUG] cookie capture is declared in the frontend but checked on the backend
1352 - [BUG] critical errors should be reported even in daemon mode
1353 - [MINOR] redirect: add support for the "drop-query" option
1354 - [MINOR] redirect: add support for "set-cookie" and "clear-cookie"
1355 - [MINOR] redirect: in prefix mode a "/" means not to change the URI
1356 - [BUG] do not dequeue requests on a dead server
1357 - [BUG] do not dequeue the backend's pending connections on a dead server
1358 - [MINOR] stats: indicate if a task is running in "show sess"
1359 - [BUG] check timeout must not be changed if timeout.check is not set
1360 - [BUG] "option transparent" is for backend, not frontend !
1361 - [MINOR] transfer errors were not reported anymore in data phase
1362 - [MEDIUM] add a send limit to a buffer
1363 - [MEDIUM] don't report buffer timeout when there is I/O activity
1364 - [MEDIUM] indicate when we don't care about read timeout
1365 - [MINOR] add flags to indicate when a stream interface is waiting for space/data
1366 - [MEDIUM] enable inter-stream_interface wakeup calls
1367 - [MAJOR] implement autonomous inter-socket forwarding
1368 - [MINOR] add the splice_len member to the buffer struct in preparation of splice support
1369 - [MEDIUM] stream_sock: factor out the return path in case of no-writes
1370 - [MEDIUM] i/o: rework ->to_forward and ->send_max
1371 - [OPTIM] stream_sock: do not ask for polling on EAGAIN if we have read
1372 - [OPTIM] buffer: replace rlim by max_len
1373 - [OPTIM] stream_sock: factor out the buffer full handling out of the loop
1374 - [CLEANUP] replace a few occurrences of (flags & X) && !(flags & Y)
1375 - [CLEANUP] stream_sock: move the write-nothing condition out of the loop
1376 - [MEDIUM] split stream_sock_write() into callback and core functions
1377 - [MEDIUM] stream_sock_read: call ->chk_snd whenever there are data pending
1378 - [MINOR] stream_sock: fix a few wrong empty calculations
1379 - [MEDIUM] stream_sock: try to send pending data on chk_snd()
1380 - [MINOR] global.maxpipes: add the ability to reserve file descriptors for pipes
1381 - [MEDIUM] splice: add configuration options and set global.maxpipes
1382 - [MINOR] introduce structures required to support Linux kernel splicing
1383 - [MEDIUM] add definitions for Linux kernel splicing
1384 - [MAJOR] complete support for linux 2.6 kernel splicing
1385 - [BUG] reserve some pipes for backends with splice enabled
1386 - [MEDIUM] splice: add hints to support older buggy kernels
1387 - [MEDIUM] introduce pipe pools
1388 - [MEDIUM] splice: make use of pipe pools
1389 - [STATS] report pipe usage in the statistics
1390 - [OPTIM] make global.maxpipes default to global.maxconn/4 when not specified
1391 - [BUILD] fix snapshot date extraction with negative timezones
1392 - [MEDIUM] move global tuning options to the global structure
1393 - [MEDIUM] splice: add the global "nosplice" option
1394 - [BUILD] add USE_LINUX_SPLICE to enable LINUX_SPLICE on linux 2.6
1395 - [BUG] we must not exit if protocol binding only returns a warning
1396 - [MINOR] add support for bind interface name
1397 - [BUG] inform the user when root is expected but not set
1398 - [MEDIUM] add support for source interface binding
1399 - [MEDIUM] add support for source interface binding at the server level
1400 - [MEDIUM] implement bind-process to limit service presence by process
1401 - [DOC] document maxpipes, nosplice, option splice-{auto,request,response}
1402 - [DOC] filled the logging section of the configuration manual
1403 - [DOC] document HTTP status codes
1404 - [DOC] document a few missing info about errorfile
1405 - [BUG] fix random memory corruption using "show sess"
1406 - [BUG] fix unix socket processing of interrupted output
1407 - [DOC] add diagrams of queuing and future ACL design
1408 - [BUILD] proto_http did not build on gcc-2.95
1409 - [BUG] the "source" keyword must first clear optional settings
1410 - [BUG] global.tune.maxaccept must be limited even in mono-process mode
1411 - [MINOR] ensure that http_msg_analyzer updates pointer to invalid char
1412 - [MEDIUM] store a complete dump of request and response errors in proxies
1413 - [MEDIUM] implement error dump on unix socket with "show errors"
1414 - [DOC] document "show errors"
1415 - [MINOR] errors dump must use user-visible date, not internal date.
1416 - [MINOR] time: add __usec_to_1024th to convert usecs to 1024th of second
1417 - [MINOR] add curr_sec_ms and curr_sec_ms_scaled for current second.
1418 - [MEDIUM] measure and report session rate on frontend, backends and servers
1419 - [BUG] the "connslots" keyword was matched as "connlots"
1420 - [MINOR] acl: add 2 new verbs: fe_sess_rate and be_sess_rate
1421 - [MEDIUM] implement "rate-limit sessions" for the frontend
1422 - [BUG] interface binding: length must include the trailing zero
1423 - [BUG] typo in timeout error reporting : report *res and not *err
1424 - [OPTIM] maintain_proxies: only wake up when the frontend will be ready
1425 - [OPTIM] rate-limit: cleaner behaviour on low rates and reduce consumption
1426 - [BUG] switch server-side stream interface to close in case of abort
1427 - [CLEANUP] remove last references to term_trace
1428 - [OPTIM] freq_ctr: do not rotate the counters when reading
1429 - [BUG] disable any analysers for monitoring requests
1430 - [BUG] rate-limit in defaults section was ignored
1431 - [BUG] task: fix handling of duplicate keys
1432 - [OPTIM] task: don't unlink a task from a wait queue when waking it up
1433 - [OPTIM] displace tasks in the wait queue only if absolutely needed
1434 - [MEDIUM] minor update to the task api: let the scheduler queue itself
1435 - [BUG] event_accept() must always wake the task up, even in health mode
1436 - [CLEANUP] task: distinguish between clock ticks and timers
1437 - [OPTIM] task: reduce the number of calls to task_queue()
1438 - [OPTIM] do not re-check req buffer when only response has changed
1439 - [CLEANUP] don't enable kernel splicing when socket is closed
1440 - [CLEANUP] buffer_flush() was misleading, rename it as buffer_erase
1441 - [MINOR] buffers: implement buffer_flush()
1442 - [MEDIUM] rearrange forwarding condition to enable splice during analysis
1443 - [BUILD] build fixes for Solaris
1444 - [BUILD] proto_http did not build on gcc-2.95 (again)
1445 - [CONTRIB] halog: fast log parser for haproxy
1446 - [CONTRIB] halog: faster fgets() and add support for percentile reporting
1447
Willy Tarreau7b4c5ae2008-04-19 21:06:14 +020014482008/04/19 : 1.3.15
1449 - [BUILD] Added support for 'make install'
1450 - [BUILD] Added 'install-man' make target for installing the man page
1451 - [BUILD] Added 'install-bin' make target
1452 - [BUILD] Added 'install-doc' make target
1453 - [BUILD] Removed "/" after '$(DESTDIR)' in install targets
1454 - [BUILD] Changed 'install' target to install the binaries first
1455 - [BUILD] Replace hardcoded 'LD = gcc' with 'LD = $(CC)'
1456 - [MEDIUM]: Inversion for options
1457 - [MEDIUM]: Count retries and redispatches also for servers, fix redistribute_pending, extend logs, %d->%u cleanup
1458 - [BUG]: Restore clearing t->logs.bytes
1459 - [MEDIUM]: rework checks handling
1460 - [DOC] Update a "contrib" file with a hint about a scheme used for formathing subjects
1461 - [MEDIUM] Implement "track [<backend>/]<server>"
1462 - [MINOR] Implement persistent id for proxies and servers
1463 - [BUG] Don't increment server connections too much + fix retries
1464 - [MEDIUM]: Prevent redispatcher from selecting the same server, version #3
1465 - [MAJOR] proto_uxst rework -> SNMP support
1466 - [BUG] appsession lookup in URL does not work
1467 - [BUG] transparent proxy address was ignored in backend
1468 - [BUG] hot reconfiguration failed because of a wrong error check
1469 - [DOC] big update to the configuration manual
1470 - [DOC] large update to the configuration manual
1471 - [DOC] document more options
1472 - [BUILD] major rework of the GNU Makefile
1473 - [STATS] add support for "show info" on the unix socket
1474 - [DOC] document options forwardfor to logasap
1475 - [MINOR] add support for the "backlog" parameter
1476 - [OPTIM] introduce global parameter "tune.maxaccept"
1477 - [MEDIUM] introduce "timeout http-request" in frontends
1478 - [MINOR] tarpit timeout is also allowed in backends
1479 - [BUG] increment server connections for each connect()
1480 - [MEDIUM] add a turn-around state of one second after a connection failure
1481 - [BUG] fix typo in redispatched connection
1482 - [DOC] document options nolinger to ssl-hello-chk
1483 - [DOC] added documentation for "option tcplog" to "use_backend"
1484 - [BUG] connect_server: server might not exist when sending error report
1485 - [MEDIUM] support fully transparent proxy on Linux (USE_LINUX_TPROXY)
1486 - [MEDIUM] add non-local bind to connect() on Linux
1487 - [MINOR] add transparent proxy support for balabit's Tproxy v4
1488 - [BUG] use backend's source and not server's source with tproxy
1489 - [BUG] fix overlapping server flags
1490 - [MEDIUM] fix server health checks source address selection
1491 - [BUG] build failed on CONFIG_HAP_LINUX_TPROXY without CONFIG_HAP_CTTPROXY
1492 - [DOC] added "server", "source" and "stats" keywords
1493 - [DOC] all server parameters have been documented
1494 - [DOC] document all req* and rsp* keywords.
1495 - [DOC] added documentation about HTTP header manipulations
1496 - [BUG] log response byte count, not request
1497 - [BUILD] code did not build in full debug mode
1498 - [BUG] fix truncated responses with sepoll
1499 - [MINOR] use s->frt_addr as the server's address in transparent proxy
1500 - [MINOR] fix configuration hint about timeouts
1501 - [DOC] minor cleanup of the doc and notice to contributors
1502 - [MINOR] report correct section type for unknown keywords.
1503 - [BUILD] update MacOS Makefile to build on newer versions
1504 - [DOC] fix erroneous "useallbackups" option in the doc
1505 - [DOC] applied small fixes from early readers
1506 - [MINOR] add configuration support for "redir" server keyword
1507 - [MEDIUM] completely implement the server redirection method
1508 - [TESTS] add a test case for the server redirection mechanism
1509 - [DOC] add a configuration entry for "server ... redir <prefix>"
1510 - [BUILD] backend.c and checks.c did not build without tproxy !
1511 - Revert "[BUILD] backend.c and checks.c did not build without tproxy !"
1512 - [BUILD] backend.c and checks.c did not build without tproxy !
1513 - [OPTIM] used unsigned ints for HTTP state and message offsets
1514 - [OPTIM] GCC4's builtin_expect() is suboptimal
1515 - [BUG] failed conns were sometimes incremented in the frontend!
1516 - [BUG] timeout.check was not pre-set to eternity
1517 - [TESTS] add test-pollers.cfg to easily report pollers in use
1518 - [BUG] do not apply timeout.connect in checks if unset
1519 - [BUILD] ensure that makefile understands USE_DLMALLOC=1
1520 - [MINOR] silent gcc for a wrong warning
1521 - [CLEANUP] update .gitignore to ignore more temporary files
1522 - [CLEANUP] report dlmalloc's source path only if explictly specified
1523 - [BUG] str2sun could leak a small buffer in case of error during parsing
1524 - [BUG] option allbackups was not working anymore in roundrobin mode
1525 - [MAJOR] implementation of the "leastconn" load balancing algorithm
1526 - [BUILD] ensure that users don't build without setting the target anymore.
1527 - [DOC] document the leastconn LB algo
1528 - [MEDIUM] fix stats socket limitation to 16 kB
1529 - [DOC] fix unescaped space in httpchk example.
1530 - [BUG] fix double-decrement of server connections
1531 - [TESTS] add a test case for port mapping
1532 - [TESTS] add a benchmark for integer hashing
1533 - [TESTS] add new methods in ip-hash test file
1534 - [MAJOR] implement parameter hashing for POST requests
1535
Willy Tarreaue5b77e82007-12-06 01:25:44 +010015362007/12/06 : 1.3.14
1537 - New option http_proxy (Alexandre Cassen)
1538 - add support for "maxqueue" to limit server queue overload (Elijah Epifanov)
1539 - Check for duplicated conflicting proxies (Krzysztof Oledzki)
1540 - stats: report server and backend cumulated downtime (Krzysztof Oledzki)
1541 - use backends only with use_backend directive (Krzysztof Oledzki)
1542 - Handle long lines properly (Krzysztof Oledzki)
1543 - Implement and use generic findproxy and relax duplicated proxy check (Krzysztof Oledzki)
1544 - continous statistics (Krzysztof Oledzki)
1545 - add support for logging via a UNIX socket (Robert Tsai)
1546 - fix error checking in strl2ic/strl2uic()
1547 - fix calls to localtime()
1548 - provide easier-to-use ultoa_* functions
1549 - provide easy-to-use limit_r and LIM2A* macros
1550 - add a simple test for the status page
1551 - move error codes to common/errors.h
1552 - silent warning about LIST_* being redefined on OpenBSD
1553 - add socket address length to the protocols
1554 - group PR_O_BALANCE_* bits into a checkable value
1555 - externalize the "balance" option parser to backend.c
1556 - introduce the "url_param" balance method
1557 - make default_backend work in TCP mode too
1558 - disable warning about localtime_r on Solaris
1559 - adjust error messages about conflicting proxies
1560 - avoid calling some layer7 functions if not needed
1561 - simplify error path in event_accept()
1562 - add an options field to the listeners
1563 - added a new state to listeners
1564 - unbind_listener() must use fd_delete() and not close()
1565 - add a generic unbind_listener() primitive
1566 - add a generic delete_listener() primitive
1567 - add a generic unbind_all_listeners() primitive
1568 - create proto_tcp and move initialization of proxy listeners
1569 - stats: report numerical process ID, proxy ID and server ID
1570 - relative_pid was not initialized
1571 - missing header names in raw stats output
1572 - fix missing parenthesis in check_response_for_cacheability
1573 - small optimization on session_process_counters()
1574 - merge ebtree version 3.0
1575 - make ebtree headers multiple-include compatible
1576 - ebtree: include config.h for REGPRM*
1577 - differentiate between generic LB params and map-specific ones
1578 - add a weight divisor to the struct proxy
1579 - implement the Fast Weighted Round Robin (FWRR) algo
1580 - include filltab25.c to experiment on FWRR for dynamic weights
1581 - merge test-fwrr.cfg to validate dynamic weights
1582 - move the load balancing algorithm to be->lbprm.algo
1583 - change server check result to a bit field
1584 - implement "http-check disable-on-404" for graceful shutdown
1585 - secure the calling conditions of ->set_server_status_{up,down}
1586 - report disabled servers as "NOLB" when they are still UP
1587 - document the "http-check disable-on-404" option
1588 - http-check disable-on-404 is not limited to HTTP mode
1589 - add a test file for disable-on-404
1590 - use distinct bits per load-balancing algorithm type
1591 - implement the slowstart parameter for servers
1592 - document the server's slowstart parameter
1593 - stats: report the server warm up status in a "throttle" column
1594 - fix 2 minor issues on AIX
1595 - add the "nbsrv" ACL verb
1596 - add the "fail" condition to monitor requests
1597 - remove a warning from gcc due to htons() in standard.c
1598 - fwrr: ensure that we never overflow in placements
1599 - store the build options to report with -vv
1600 - fix the status return of the init script (R.I. Pienaar)
1601 - stats: real time monitoring script for unix socket (Prizee)
1602 - document "nbsrv" and "monitor fail"
1603 - restrict the set of allowed characters for identifiers
1604 - implement a time parsing function
1605 - add support for time units in the configuration
1606 - add a bit of documentation about timers
1607 - introduce separation between contimeout, and tarpit + queue
1608 - introduce the "timeout" keyword
1609 - grouped all timeouts in one structure
1610 - slowstart is in ms, not seconds
1611 - slowstart: ensure we don't start with a null weight
1612 - report the number of times each server was selected
1613 - fix build on AIX due to recent log changes
1614 - fix build on Solaris due to recent log changes
1615
Willy Tarreaue855f422007-10-18 22:38:22 +020016162007/10/18 : 1.3.13
1617 - replace the code under O'Reilly license (Arnaud Cornet)
1618 - add a small man page (Arnaud Cornet)
1619 - stats: report haproxy's version by default (Krzysztof Oledzki)
1620 - stats: count server retries and redispatches (Krzysztof Oledzki)
1621 - core: added easy support for Doug Lea's malloc (dlmalloc)
1622 - core: fade out memory usage when stopping proxies
1623 - core: moved the sockaddr pointer to the fdtab structure
1624 - core: add generic protocol support
1625 - core: implement client-side support for PF_UNIX sockets
1626 - stats: implement the CSV output
1627 - stats: add a link to the CSV export HTML page
1628 - stats: implement the statistics output on a unix socket
1629 - config: introduce the "stats" keyword in global section
1630 - build: centralize version and date into one file for each
1631 - tests: added a new hash algorithm
1632
16332007/10/18 : 1.3.12.3
1634 - add the "nolinger" option to disable data lingering (Alexandre Cassen)
1635 - fix double-free during clean exit (Krzysztof Oledzki)
1636 - prevent the system from sending an RST when closing health-checks
1637 (Krzysztof Oledzki)
1638 - do not add a cache-control header when on non-cacheable responses
1639 (Krzysztof Oledzki)
1640 - spread health checks even more (Krzysztof Oledzki)
1641 - stats: scope "." must match the backend and not the frontend
1642 - fixed call to chroot() during startup
1643 - fix wrong timeout computation in event_accept()
1644 - remove condition for exit() under fork() failure
1645
16462007/09/20 : 1.3.12.2
1647 - fix configuration sanity checks for TCP listeners
1648 - set the log socket receive window to zero bytes
1649 - pre-initialize timeouts to infinity, not zero
1650 - fix the SIGHUP message not to alert on server-less proxies
1651 - timeouts and retries could be ignored when switching backend
1652 - added a file to check that "retries" works.
1653 - O'Reilly has clarified its license
1654
16552007/09/05 : 1.3.12.1
1656 - spec I/O: fix allocations of spec entries for an FD
1657 - ensure we never overflow in chunk_printf()
1658 - improve behaviour with large number of servers per proxy
1659 - add support for "stats refresh <interval>"
1660 - stats page: added links for 'refresh' and 'hide down'
1661 - fix backend's weight in the stats page.
1662 - the "stats" keyword is not allowed in a pure frontend.
1663 - provide a test configuration file for stats and checks
1664
Willy Tarreaub21152b2007-06-17 23:41:40 +020016652007/06/17 : 1.3.12
1666 - fix segfault at exit when using captures
1667 - bug: negation in ACL conds was not cleared between terms
1668 - errorfile: use a local file to feed error messages
1669 - acl: support '-i' to ignore case when matching
1670 - acl: smarter integer comparison with operators eq,lt,gt,le,ge
1671 - acl: support maching on 'path' component
1672 - acl: implement matching on header values
1673 - acl: distinguish between request and response headers
1674 - acl: permit to return any header when no name specified
1675 - acl: provide default ACLs
1676 - added the 'use_backend' keyword for full content-switching
1677 - acl: specify the direction during fetches
1678 - acl: provide the argument length for fetch functions
1679 - acl: provide a reference to the expr to fetch()
1680 - improve memory freeing upon exit
1681 - str2net() must not change the const char *
1682 - shut warnings 'is*' macros from ctype.h on solaris
1683
Willy Tarreaua3503e02007-06-03 17:27:07 +020016842007/06/03 : 1.3.11.4
1685 - do not re-arm read timeout in SHUTR state !
1686 - optimize I/O by detecting system starvation
1687 - the epoll FD must not be shared between processes
1688 - limit the number of events returned by *poll*
1689
Willy Tarreau3c6fc072007-05-14 14:40:25 +020016902007/05/14 : 1.3.11.3
1691 - pre-initialize timeouts with tv_eternity during parsing
1692
Willy Tarreaufc273c22007-05-14 03:42:47 +020016932007/05/14 : 1.3.11.2
1694 - fixed broken health-checks since switch to timeval
1695
Willy Tarreau3c5340c2007-05-14 03:18:43 +020016962007/05/14 : 1.3.11.1
1697 - fixed ev_kqueue which was forgotten during the switch to timeval
1698 - allowed null timeouts for past events in select
1699
Willy Tarreau544eb402007-05-14 02:42:33 +020017002007/05/14 : 1.3.11
1701 - fixed ev_sepoll again by rewriting the state machine
1702 - switched all timeouts to timevals instead of milliseconds
1703 - improved memory management using mempools v2.
1704 - several minor optimizations
1705
Willy Tarreau9ca931f2007-05-10 07:51:17 +020017062007/05/09 : 1.3.10.2
1707 - fixed build on OpenBSD (missing types.h)
1708
Willy Tarreau13398d32007-05-09 22:58:28 +020017092007/05/09 : 1.3.10.1
1710 - fixed sepoll transition matrix (two states were missing)
1711
Willy Tarreau61beedf2007-05-09 01:44:58 +020017122007/05/08 : 1.3.10
1713 - several fixes in ev_sepoll
1714 - fixed some expiration dates on some tasks
1715 - fixed a bug in connection establishment detection due to speculative I/O
1716 - fixed rare bug occuring on TCP with early close (reported by Andy Smith)
1717 - implemented URI hashing algorithm (Guillaume Dallaire)
1718 - implemented SMTP health checks (Peter van Dijk)
1719 - replaced the rbtree with ul2tree from old scheduler project
1720 - new framework for generic ACL support
1721 - added the 'acl' and 'block' keywords to the config language
1722 - added several ACL criteria and matches (IP, port, URI, ...)
1723 - cleaned up and better modularization for some time functions
1724 - fixed list macros
1725 - fixed useless memory allocation in str2net()
1726 - store the original destination address in the session
1727
Willy Tarreau6e0433f2007-04-16 01:18:12 +020017282007/04/15 : 1.3.9
1729 - modularized the polling mechanisms and use function pointers instead
1730 of macros at many places
1731 - implemented support for FreeBSD's kqueue() polling mechanism
1732 - fixed a warning on OpenBSD : MIN/MAX redefined
1733 - change socket registration order at startup to accomodate kqueue.
1734 - several makefile cleanups to support old shells
1735 - fix build with limits.h once for all
1736 - ev_epoll: do not rely on fd_sets anymore, use changes stacks instead.
1737 - fdtab now holds the results of polling
1738 - implemented support for speculative I/O processing with epoll()
1739 - remove useless calls to shutdown(SHUT_RD), resulting in small speed boost
1740 - auto-registering of pollers at load time
1741
Willy Tarreau42c76592007-04-03 20:30:13 +020017422007/04/03 : 1.3.8.2
1743 - rewriting either the status line or request line could crash the
1744 process due to a pointer which ought to be reset before parsing.
1745 - rewriting the status line in the response did not work, it caused
1746 a 502 Bad Gateway due to an erroneous state during parsing
1747
Willy Tarreauef6d7612007-04-01 11:06:22 +020017482007/04/01 : 1.3.8.1
1749 - fix reqadd when no option httpclose is used.
1750 - removed now unused fiprm and beprm from proxies
1751 - split logs into two versions : TCP and HTTP
1752 - added some docs about http headers storage and acls
1753 - added a VIM script for syntax color highlighting (Bruno Michel)
1754
Willy Tarreaud661cc02007-03-26 00:24:56 +020017552007/03/25 : 1.3.8
1756 - fixed several bugs which might have caused a crash with bad configs
1757 - several optimizations in header processing
1758 - many progresses towards transaction-based processing
1759 - option forwardfor may be used in frontends
1760 - completed HTTP response processing
1761 - some code refactoring between request and response processing
1762 - new HTTP header manipulation functions
1763 - optimizations on the recv() patch to reduce CPU usage under very
1764 high data rates.
1765 - more user-friendly help about the 'usesrc' keyword (CTTPROXY)
1766 - username/groupname support from Marcus Rueckert
1767 - added the "except" keyword to the "forwardfor" option (Bryan German)
1768 - support for health-checks on other addresses (Fabrice Dulaunoy)
1769 - makefile for MacOS 10.4 / Darwin (Dan Zinngrabe)
1770 - do not insert "Connection: close" in HTTP/1.0 messages
1771
Willy Tarreau9cabf702007-01-26 23:49:01 +010017722007/01/26 : 1.3.7
1773 - fix critical bug introduced with 1.3.6 : an empty request header
1774 may lead to a crash due to missing pointer assignment
1775 - hdr_idx might be left uninitialized in debug mode
1776 - fixed build on FreeBSD due to missing fd_set declaration
1777
Willy Tarreaue7a24382007-01-22 08:57:44 +010017782007/01/22 : 1.3.6.1
1779 - change in the header chaining broke cookies and authentication
1780
Willy Tarreau49e1ee82007-01-22 00:56:46 +010017812007/01/22 : 1.3.6
1782 - stats now support the HEAD method too
1783 - extracted http request from the session
1784 - huge rework of the HTTP parser which is now a 28-state FSM.
1785 - linux-style likely/unlikely macros for optimization hints
1786 - do not create a server socket when there's no server
1787 - imported lots of docs
1788
Willy Tarreau5871f8e2007-01-07 02:47:01 +010017892007/01/07 : 1.3.5
1790 - stats: swap color sets for active and backup servers
1791 - try to guess server check port when unset
1792 - added complete support and doc for TCP Splicing
1793 - replace the wait-queue linked list with an rbtree.
1794 - a few bugfixes and cleanups
1795
Willy Tarreau85270da2007-01-02 00:59:39 +010017962007/01/02 : 1.3.4
1797 - support for cttproxy on the server side to present the client
1798 address to the server.
1799 - added support for SO_REUSEPORT on Linux (needs kernel patch)
1800 - new RFC2616-compliant HTTP request parser with header indexing
1801 - split proxies in frontends, rulesets and backends
1802 - implemented the 'req[i]setbe' to select a backend depending
1803 on the contents
1804 - added the 'default_backend' keyword to select a default BE.
1805 - new stats page featuring FEs and BEs + bytes in both dirs
1806 - improved log format to indicate the backend and the time in ms.
1807 - lots of cleanups
1808
Willy Tarreau9c9fea42006-10-16 00:03:35 +020018092006/10/15 : 1.3.3
1810 - fix broken redispatch option in case the connection has already
1811 been marked "in progress" (ie: nearly always).
1812 - support regparm on x86 to speed up some often called functions
1813 - removed a few useless calls to gettimeofday() in log functions.
1814 - lots of 'const char*' cleanups
1815 - turn every FD_* into functions which are faster on recent CPUs
1816
Willy Tarreau690f9aa2006-09-03 11:23:06 +020018172006/09/03 : 1.3.2
1818 - started the changes towards I/O completion callbacks. stream_sock* have
1819 replaced event_*.
1820 - added the new "reqtarpit" and "reqitarpit" protection features
1821
Willy Tarreau8f2b8552006-07-09 17:11:39 +020018222006/07/09 : 1.3.1 (1.2.15)
1823 - now, haproxy warns about missing timeout during startup to try to
1824 eliminate all those buggy configurations.
1825 - added "Content-Type: text/html" in responses wherever appropriate, as
1826 suggested by Cameron Simpson.
1827 - implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to
1828 test server's health
1829 - implemented "monitor-uri" so that haproxy can reply to a specific URI with
1830 an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies
1831 at once.
1832
Willy Tarreaub9e98b62006-07-03 10:32:46 +020018332006/06/29 : 1.3.0
1834 - exploded the whole file into multiple .c and .h. No functionnal
Willy Tarreau8f2b8552006-07-09 17:11:39 +02001835 difference is expected at all.
1836 - fixed a bug by which neither stats nor error messages could be returned if
1837 'clitimeout' was missing.
Willy Tarreaub9e98b62006-07-03 10:32:46 +02001838
willy tarreau7e6328d2006-05-21 23:26:20 +020018392006/05/21 : 1.2.14
1840 - new HTML status report with the 'stats' keyword.
1841 - added the 'abortonclose' option to better resist traffic surges
1842 - implemented dynamic traffic regulation with the 'minconn' option
1843 - show request time on denied requests
1844 - definitely fixed hot reconf on OpenBSD by the use of SO_REUSEPORT
1845 - now a proxy instance is allowed to run without servers, which is
1846 useful to dedicate one instance to stats
1847 - added lots of error counters
1848 - a missing parenthesis preventd matching of cacheable cookies
1849 - a missing parenthesis in poll_loop() might have caused missed events.
1850
Willy TARREAU4404b7e2006-05-14 10:00:09 +020018512006/05/14 : 1.2.13.1
1852 - an uninitialized field in the struct session could cause a crash when
1853 the session was freed. This has been encountered on Solaris only.
1854 - Solaris and OpenBSD no not support shutdown() on listening socket. Let's
1855 be nice to them by performing a soft stop if pause fails.
1856
willy tarreauc3a2e072006-05-13 18:51:38 +020018572006/05/13 : 1.2.13
1858 - 'maxconn' server parameter to do per-server session limitation
1859 - queueing to support non-blocking session limitation
1860 - fixed removal of cookies for cookie-less servers such as backup servers
1861 - two separate wait queues for expirable and non-expirable tasks provide
1862 better performance with lots of sessions.
1863 - some code cleanups and performance improvements
1864 - made state dumps a bit more verbose
1865 - fixed missing checks for NULL srv in dispatch mode
1866 - load balancing on backup servers was not possible in source hash mode.
1867 - two session flags shared the same bit, but fortunately they were not
1868 compatible.
1869
willy tarreauc0d4bbd2006-04-15 21:47:50 +020018702006/04/15 : 1.2.12
1871 Very few changes preparing for more important changes to support per-server
1872 session limitations and queueing :
1873 - ignore leading empty lines in HTTP requests as suggested by RFC2616.
1874 - added the 'weight' parameter to the servers, limited to 1..256. It applies
1875 to roundrobin and source hash.
1876 - the optional '-s' option could clobber '-st' and '-sf' if compiled in.
1877
willy tarreaue0dd2692006-03-30 16:27:34 +020018782006/03/30 : 1.2.11.1
1879 - under some conditions, it might have been possible that when the
1880 last dead server became available, it would not have been used
1881 till another one would have changed state. Could not be reproduced
1882 at all, however seems possible from the code.
1883
willy tarreaud2058dc2006-03-25 20:35:41 +010018842006/03/25 : 1.2.11
1885 - added the '-db' command-line option to disable backgrounding.
1886 - added the -sf/-st command-line arguments which are used to specify
1887 a list of pids to send a FINISH or TERMINATE signal upon startup.
1888 They will also be asked to release their port if a bind fails.
1889 - reworked the startup mechanism to allow the sending of a signal to a list
1890 of old pids if a socket cannot be bound, with a retry for a limited amount
1891 of time (1 second by default).
1892 - added the ability to enforce limits on memory usage.
1893 - added the 'source' load-balancing algorithm which uses the source IP(v4|v6)
1894 - re-architectured the server round-robin mechanism to ease integration of
1895 other algorithms. It now relies on the number of active and backup servers.
1896 - added a counter for the number of active and backup servers, and report
1897 these numbers upon SIGHUP or state change.
1898
willy tarreaubfad5742006-03-23 14:19:11 +010018992006/03/23 : 1.2.10.1
1900 - while fixing the backup server round-robin "feature", a new bug was
1901 introduced which could miss some backup servers.
1902 - the displayed proxy name was wrong when dumping upon SIGHUP.
1903
willy tarreauaaff30e2006-03-19 21:30:41 +010019042006/03/19 : 1.2.10
1905 - assert.h is needed when DEBUG is defined.
1906 - ENORMOUS long standing bug affecting the epoll polling system :
1907 event_data is a union, not a structure !
1908 - Make fd management more robust and easier to debug. Also some
1909 micro-optimisations.
1910 - Limit the number of consecutive accept() in multi-process mode.
1911 This produces a more evenly distributed load across the processes and
1912 slightly improves performance by reducing bottlenecks.
1913 - Make health-checks be more regular, and faster to retry after a timeout.
1914 - Fixed some messages to ease parsing of alerts.
1915 - provided a patch to enable epoll on RHEL3 kernels.
1916 - Separated OpenBSD build from the main Makefile into a new one.
1917
willy tarreau50be0172006-03-15 19:41:19 +010019182006/03/15 : 1.2.9
1919 - haproxy could not be stopped after being paused, it had to be woken up
1920 first. This has been fixed.
1921 - the 'ulimit-n' parameter is now optional and by default computed from
1922 maxconn + the number of listeners + the number of health-checks.
1923 - it is now possible to specify a maximum number of connections at build
1924 time with the SYSTEM_MAXCONN define. The value set in the configuration
1925 file will then be limited to this value, and only the command-line '-n'
1926 option will be able to bypass it. It will prevent against accidental
1927 high memory usage on small systems.
1928 - RFC2616 expects that any HTTP agent accepts multi-line headers. Earlier
1929 versions did not detect a line beginning with a space as the continuation
1930 of previous header. It is now correct.
1931 - health checks sent to servers configured with identical intervals were
1932 sent in perfect synchronisation because the initial time was the same
1933 for all. This could induce high load peaks when fragile servers were
1934 hosting tens of instances for the same application. Now the load is
1935 spread evenly across the smallest interval amongst a listener.
1936 - a new 'forceclose' option was added to make the proxy close the outgoing
1937 channel to the server once it has sent all its headers and the server
1938 starts responding. This helps some servers which don't close upon the
1939 'Connection: close' header. It implies 'option httpclose'.
1940 - there was a bug in the way the backup servers were handled. They were
1941 erroneously load-balanced while the doc said the opposite. Since
1942 load-balanced backup servers is one of the features some people have
1943 been asking for, the problem was fixed to reflect the documented
1944 behaviour and a new option 'allbackups' was introduced to provide the
1945 feature to those who need it.
1946 - a never ending connect() could lead to a fast select() loop if its
1947 timeout times the number of retransmits exceeded the server read or write
1948 timeout, because the later was used to compute select()'s timeout while
1949 the connection timeout was not reached.
1950 - now we initialize the libc's localtime structures very early so that even
1951 under OOM conditions, we can still send dated error messages without
1952 segfaulting.
1953 - the 'daemon' mode implies 'quiet' and disables 'verbose' because file
1954 descriptors are closed.
1955
willy tarreau065f1c02006-01-29 22:10:07 +010019562006/01/29 : 1.2.8
1957 - fixed a nasty bug affecting poll/epoll which could return unmodified data
1958 from the server to the client, and sometimes lead to memory corruption
1959 crashing the process.
1960 - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
1961
19622005/12/18 : 1.2.7.1
1963 - the "retries" option was ignored because connect() could not return an
1964 error if the connection failed before the timeout.
1965 - TCP health-checks could not detect a connection refused in poll/epoll
1966 mode.
1967
willy tarreaua56eca72005-12-18 01:34:42 +010019682005/11/13 : 1.2.7
willy tarreau77bc8542005-12-18 01:31:43 +01001969 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
1970 least on Solaris, this caused the libc's regex primitives to be used instead
1971 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +01001972 - delayed the quiet mode during startup so that most of the startup alerts can
1973 be displayed even in quiet mode.
1974 - display an alert when a listener has no address, invalid or no port, or when
1975 there are no enabled listeners upon startup.
willy tarreau4373b962005-12-18 01:32:31 +01001976 - added "static-pcre" to the list of supported regex options in the Makefile.
willy tarreau77bc8542005-12-18 01:31:43 +01001977
willy tarreaub952e1d2005-12-18 01:31:20 +010019782005/10/09 : 1.2.7rc (1.1.33rc)
1979 - second batch of socklen_t changes.
1980 - clean-ups from Cameron Simpson.
1981 - because tv_remain() does not know about eternity, using no timeout can
1982 make select() spin around a null time-out. Bug reported by Cameron Simpson.
1983 - client read timeout was not properly set to eternity initialized after an
1984 accept() if it was not set in the config. It remained undetected so long
1985 because eternity is 0 and newly allocated pages are zeroed by the system.
1986 - do not call get_original_dst() when not in transparent mode.
1987 - implemented a workaround for a bug in certain epoll() implementations on
1988 linux-2.4 kernels (epoll-lt <= 0.21).
1989 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
1990
willy tarreauc5f73ed2005-12-18 01:26:38 +010019912005/08/07 : 1.2.6
1992 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
1993
19942005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +01001995 - added the number of active sessions (proxy/process) in the logs
1996
19972005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +01001998 - the time-out fix introduced in 1.1.25 caused a corner case where it was
1999 possible for a client to keep a connection maintained regardless of the
2000 timeout if the server closed the connection during the HEADER phase,
2001 while the client ignored the close request while doing nothing in the
2002 other direction. This has been fixed now by ensuring that read timeouts
2003 are re-armed when switching to any SHUTW state.
2004
20052005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
2006 - enhanced error reporting in the logs. Now the proxy will precisely detect
2007 various error conditions related to the system and/or process limits, and
2008 generate LOG_EMERG logs indicating that a resource has been exhausted.
2009 - logs will contain two new characters for the error cause : 'R' indicates
2010 a resource exhausted, and 'I' indicates an internal error, though this
2011 one should never happen.
2012 - server connection timeouts can now be reported in the logs (sC), as well
2013 as connections refused because of maxconn limitations (PC).
2014
20152005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
2016 - new global configuration keyword "ulimit-n" may be used to raise the FD
2017 limit to usable values.
2018 - a warning is now displayed on startup if the FD limit is lower than the
2019 configured maximum number of sockets.
2020
20212005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
2022 - new configuration keyword "monitor-net" makes it possible to be monitored
2023 by external devices which connect to the proxy without being logged nor
2024 forwarded to any server. Particularly useful on generic TCPv4 relays.
2025
willy tarreau5dffb602005-12-18 01:15:23 +010020262005/06/21 : 1.2.5.2
2027 - fixed build on PPC where chars are unsigned by default
2028
willy tarreau08dedbe2005-12-18 01:13:48 +010020292005/05/02 : 1.2.5.1
2030 - dirty hack to fix a bug introduced with epoll : if we close an FD and
2031 immediately reassign it to another session through a connect(), the
2032 Prev{Read,Write}Events are not updated, which causes trouble detecting
2033 changes, thus leading to many timeouts at high loads.
2034
willy tarreau64a3cc32005-12-18 01:13:11 +010020352005/04/30 : 1.2.5 (1.1.31)
2036 - changed the runtime argument to disable epoll() to '-de'
2037 - changed the runtime argument to disable poll() to '-dp'
2038 - added global options 'nopoll' and 'noepoll' to do the same at the
2039 configuration level.
2040 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
2041 support epoll().
2042 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
2043 - conditionned signals redirection to #ifdef DEBUG_MEMORY
2044
willy tarreau1c2ad212005-12-18 01:11:29 +010020452005/04/26 : 1.2.5-pre4
2046 - made epoll() support a compile-time option : ENABLE_EPOLL
2047 - provided a very little libc replacement for a possibly missing epoll()
2048 implementation which can be enabled by -DUSE_MY_EPOLL
2049 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
2050 The equivalent runtime argument becomes '-P'. A few tests show that it
2051 performs like select() with many fds, but slightly slower (certainly
2052 because of the higher amount of memory involved).
2053 - separated the 3 polling methods and the tasks scheduler into 4 distinct
2054 functions which makes the code a lot more modular.
2055 - moved some event tables to private static declarations inside the poller
2056 functions.
2057 - the poller functions can now initialize themselves, run, and cleanup.
2058 - changed the runtime argument to enable epoll() to '-E'.
2059 - removed buggy epoll_ctl() code in the client_retnclose() function. This
2060 function was never meant to remove anything.
2061 - fixed a typo which caused glibc to yell about a double free on exit.
2062 - removed error checking after epoll_ctl(DEL) because we can never know if
2063 the fd is still active or already closed.
2064 - added a few entries in the makefile
2065
willy tarreauad90a0c2005-12-18 01:09:15 +010020662005/04/25 : 1.2.5-pre3
2067 - experimental epoll() support (use temporary '-e' argument)
2068
20692005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +01002070 - implemented the HTTP 303 code for error redirection. This forces the
2071 browser to fetch the given URI with a GET request. The new keyword for
2072 this is 'errorloc303', and a new 'errorloc302' keyword has been created
2073 to make them easily distinguishable.
2074 - added more controls in the parser for valid use of '\x' sequence.
2075 - few fixes from Alex & Klaus
2076
willy tarreauad90a0c2005-12-18 01:09:15 +010020772005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +01002078 - fixed a few errors in the documentation
2079
20802005/02/13
2081 - do not pre-initialize unused file-descriptors before select() anymore.
2082
willy tarreau12350152005-12-18 01:03:27 +010020832005/01/22 : 1.2.4
2084 - merged Alexander Lazic's and Klaus Wagner's work on application
2085 cookie-based persistence. Since this is the first merge, this version is
2086 not intended for general use and reports are more than welcome. Some
2087 documentation is really needed though.
2088
willy tarreau0174f312005-12-18 01:02:42 +010020892005/01/22 : 1.2.3 (1.1.30)
2090 - add an architecture guide to the documentation
2091 - released without any changes
2092
20932004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
2094 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
2095 compatible with Apache. This limit can be configured in the makefile now.
2096 Thanks to Eric Fehr for the checks.
2097 - added a per-server "source" option which now makes it possible to bind to
2098 a different source for each (potentially identical) server.
2099 - changed cookie-based server selection slightly to allow several servers to
2100 share a same cookie, thus making it possible to associate backup servers to
2101 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
2102 - added the cookie 'prefix' mode which makes it possible to use persistence
2103 with thin clients which support only one cookie. The server name is prefixed
2104 before the application cookie, and restore back.
2105 - fixed the order of servers within an instance to match documentation. Now
2106 the servers are *really* used in the order of their declaration. This is
2107 particularly important when multiple backup servers are in use.
2108
willy tarreau4302f492005-12-18 01:00:37 +010021092004/10/18 : 1.2.2 (1.1.29)
2110 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
2111 option was enabled without the 'tcplog' option.
2112 - encode_string() would use hdr_encode_map instead of the map argument.
2113
21142004/08/10 : (1.1.29-pre2)
2115 - the logged request is now encoded with '#XX' for unprintable characters
2116 - new keywords 'capture request header' and 'capture response header' enable
2117 logging of arbitrary HTTP headers in requests and responses
2118 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
2119
willy tarreau982249e2005-12-18 00:57:06 +010021202004/06/06 : 1.2.1 (1.1.28)
2121 - added the '-V' command line option to verbosely report errors even though
2122 the -q or 'quiet' options are specified. This is useful with '-c'.
2123 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +01002124
willy tarreau982249e2005-12-18 00:57:06 +010021252004/06/05 :
2126 - added the "logasap" option which produces a log without waiting for the data
2127 to be transferred from the server to the client.
2128 - added the "httpclose" option which removes any "connection:" header and adds
2129 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +01002130 - added the 'checkcache' option which blocks cacheable responses containing
2131 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +01002132 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
2133 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +01002134
21352004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +01002136 - send an EMERG log when no server is available for a given proxy
2137 - added the '-c' command line option to syntactically check the
2138 configuration file without starting the service.
2139
willy tarreau8a86dbf2005-12-18 00:45:59 +010021402003/11/09 : 1.2.0
2141 - the same as 1.1.27 + IPv6 support on the client side
2142
willy tarreaufe2c5c12005-12-17 14:14:34 +010021432003/10/27 : 1.1.27
2144 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
2145 bug : the code still assumed that HTTP requests were the same size as the
2146 original ones (22 bytes), and failed if they were not.
2147 - added support for pidfiles.
2148
willy tarreauc58fc692005-12-17 14:13:08 +010021492003/10/22 : 1.1.26
2150 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
2151 broke almost all compatibility with POST requests, because the proxy
2152 stopped to read anything from the client as soon as it got all of its
2153 headers.
2154
willy tarreauc1cae632005-12-17 14:12:23 +010021552003/10/15 : 1.1.25
2156 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
2157 generic TCP proxies, or lighter logs for HTTP proxies.
2158 - fixed a time-out condition wrongly reported as client time-out in data
2159 phase if the client timeout was lower than the connect timeout times the
2160 number of retries.
2161
willy tarreau197e8ec2005-12-17 14:10:59 +010021622003/09/21 : 1.1.24
2163 - if a client sent a full request then shut its write connection down, then
2164 the request was aborted. This case was detected only when using haproxy
2165 both as health-check client and as a server.
2166 - if 'option httpchk' is used in a 'health' mode server, then responses will
2167 change from 'OK' to 'HTTP/1.0 200 OK'.
2168 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
2169 server response followed by a close could be ignored, and the server seen
2170 as failed.
2171
willy tarreaueedaa9f2005-12-17 14:08:03 +010021722003/09/19 : 1.1.23
2173 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
2174 'default' sections to keep previous parameters, and not initialize logs
2175 correctly.
2176 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
2177 relying on 'dispatch' mode to segfault at the first connection.
2178 - 'option httpchk' now supports method, HTTP version and a few headers.
2179 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
2180 'defaults' section
2181
21822003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +01002183 - 'listen' now supports optionnal address:port-range lists
2184 - 'bind' introduced to add new listen addresses
2185 - fixed a bug which caused a session to be kept established on a server till
2186 it timed out if the client closed during the DATA phase.
2187 - the port part of each server address can now be empty to make the proxy
2188 connect to the server on the same port it was connected to, be an absolute
2189 unsigned number to reflect a single port (as in older versions), or an
2190 explicitly signed number (+N/-N) to indicate that this offset must be
2191 applied to the port the proxy was connected to, when connecting to the
2192 server.
2193 - the 'port' server option allows the user to specify a different
2194 health-check port than the service one. It is mandatory when only relative
2195 ports have been specified and check is required. By default, the checks are
2196 sent to the service port.
2197 - new 'defaults' section which is rather similar to 'listen' except that all
2198 values are only used as default values for future 'listen' sections, until
2199 a new 'defaults' resets them. At the moment, server options, regexes,
2200 cookie names and captures cannot be set in the 'defaults' section.
2201
willy tarreau2f6ba652005-12-17 13:57:42 +010022022003/05/06 : 1.1.21
2203 - changed the debug output format so that it now includes the session unique
2204 ID followed by the instance name at the beginning of each line.
2205 - in debug mode, accept now shows the client's IP and port.
2206 - added one 3 small debugging scripts to search and pretty print debug output
2207 - changed the default health check request to "OPTIONS /" instead of
2208 "OPTIONS *" since not all servers implement the later one.
2209 - "option httpchk" now accepts an optional parameter allowing the user to
2210 specify and URI other than '/' during health-checks.
2211
willy tarreaub1ff9db2005-12-17 13:51:03 +010022122003/04/21 : 1.1.20
2213 - fixed two problems with time-outs, one where a server would be logged as
2214 timed out during transfer that take longer to complete than the fixed
2215 time-out, and one where clients were logged as timed-out during the data
2216 phase because they didn't have anything to send. This sometimes caused
2217 slow client connections to close too early while in fact there was no
2218 problem. The proper fix would be to have a per-fd time-out with
2219 conditions depending on the state of the HTTP FSM.
2220
willy tarreau906b2682005-12-17 13:49:52 +010022212003/04/16 : 1.1.19
2222 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
2223 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
2224 cookie persistence because it uses "cookie:". Two memcmp() have been
2225 replaced with strncasecmp().
2226
willy tarreau036e1ce2005-12-17 13:46:33 +010022272003/04/02 : 1.1.18
2228 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
2229 REGEX=pcre on the make command line.
2230 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
2231 - when explicit source address binding is required, it is now also used for
2232 health-checks.
2233 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
2234 itself.
2235 - factored several strings to reduce binary size by about 2 kB.
2236 - replaced setreuid() and setregid() with more standard setuid() and setgid().
2237 - added 4 status flags to the log line indicating who ended the connection
2238 first, the sessions state, the validity of the cookie, and action taken on
2239 the set-cookie header.
2240
22412002/10/18 : 1.1.17
2242 - add the notion of "backup" servers, which are used only when all other
2243 servers are down.
2244 - make Set-Cookie return "" instead of "(null)" when the server has no
2245 cookie assigned (useful for backup servers).
2246 - "log" now supports an optionnal level name (info, notice, err ...) above
2247 which nothing is sent.
2248 - replaced some strncmp() with memcmp() for better efficiency.
2249 - added "capture cookie" option which logs client and/or server cookies
2250 - cleaned up/down messages and dump servers states upon SIGHUP
2251 - added a redirection feature for errors : "errorloc <errnum> <url>"
2252 - now we won't insist on connecting to a dead server, even with a cookie,
2253 unless option "persist" is specified.
2254 - added HTTP/408 response for client request time-out and HTTP/50[234] for
2255 server reply time-out or errors.
2256
22572002/09/01 : 1.1.16
2258 - implement HTTP health checks when option "httpchk" is specified.
2259
22602002/08/07 : 1.1.15
2261 - replaced setpgid()/setpgrp() with setsid() for better portability, because
2262 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
2263
22642002/07/20 : 1.1.14
2265 - added "postonly" cookie mode
2266
22672002/07/15 : 1.1.13
2268 - tv_diff used inverted parameters which led to negative times !
2269
22702002/07/13 : 1.1.12
2271 - fixed stats monitoring, and optimized some tv_* for most common cases.
2272 - replaced temporary 'newhdr' with 'trash' to reduce stack size
2273 - made HTTP errors more HTML-fiendly.
2274 - renamed strlcpy() to strlcpy2() because of a slightly difference between
2275 their behaviour (return value), to avoid confusion.
2276 - restricted HTTP messages to HTTP proxies only
2277 - added a 502 message when the connection has been refused by the server,
2278 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
2279 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
2280 inserting a cookie, because some caches (apache) don't understand it.
2281 - fixed processing of server headers when client is in SHUTR state
2282
22832002/07/04 :
2284 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
2285 setpgid()
2286
22872002/06/04 : 1.1.11
2288 - fixed multi-cookie handling in client request to allow clean deletion
2289 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +01002290 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +01002291 - added a "nocache" option to "cookie" to specify that we explicitly want
2292 to add a "cache-control" header when we add a cookie.
2293 It is also possible to add an "Expires: <old-date>" to keep compatibility
2294 with old/broken caches.
2295
22962002/05/10 : 1.1.10
2297 - if a cookie is used in insert+indirect mode, it's desirable that the
2298 the servers don't see it. It was not possible to remove it correctly
2299 with regexps, so now it's removed automatically.
2300
23012002/04/19 : 1.1.9
2302 - don't use snprintf()'s return value as an end of message since it may
2303 be larger. This caused bus errors and segfaults in internal libc's
2304 getenv() during localtime() in send_log().
2305 - removed dead insecure send_syslog() function and all references to it.
2306 - fixed warnings on Solaris due to buggy implementation of isXXXX().
2307
23082002/04/18 : 1.1.8
2309 - option "dontlognull"
2310 - fixed "double space" bug in config parser
2311 - fixed an uninitialized server field in case of dispatch
2312 with no existing server which could cause a segfault during
2313 logging.
2314 - the pid logged was always the father's, which was wrong for daemons.
2315 - fixed wrong level "LOG_INFO" for message "proxy started".
2316
23172002/04/13 :
2318 - http logging is now complete :
2319 - ip:port, date, proxy, server
2320 - req_time, conn_time, hdr_time, tot_time
2321 - status, size, request
2322 - source address
2323
23242002/04/12 : 1.1.7
2325 - added option forwardfor
2326 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
2327 - added "log global" in "listen" section.
2328
23292002/04/09 :
2330 - added a new "global" section :
2331 - logs
2332 - debug, quiet, daemon modes
2333 - uid, gid, chroot, nbproc, maxconn
2334
23352002/04/08 : 1.1.6
2336 - regex are now chained and not limited anymore.
2337 - unavailable server now returns HTTP/502.
2338 - increased per-line args limit to 40
2339 - added reqallow/reqdeny to block some request on matches
2340 - added HTTP 400/403 responses
2341
23422002/04/03 : 1.1.5
2343 - connection logging displayed incorrect source address.
2344 - added proxy start/stop and server up/down log events.
2345 - replaced log message short buffers with larger trash.
2346 - enlarged buffer to 8 kB and replace buffer to 4 kB.
2347
23482002/03/25 : 1.1.4
2349 - made rise/fall/interval time configurable
2350
23512002/03/22 : 1.1.3
2352 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
2353 which could lead to loops.
2354
23552002/03/21 : 1.1.2
2356 - fixed a bug in buffer management where we could have a loop
2357 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
2358 => implemented an adjustable buffer limit.
2359 - fixed a bug : expiration of tasks in wait queue timeout is used again,
2360 and running tasks are skipped.
2361 - added some debug lines for accept events.
2362 - send warnings for servers up/down.
2363
23642002/03/12 : 1.1.1
2365 - fixed a bug in total failure handling
2366 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
2367
23682002/03/10 : 1.1.0
2369 - fixed a few timeout bugs
2370 - rearranged the task scheduler subsystem to improve performance,
2371 add new tasks, and make it easier to later port to librt ;
2372 - allow multiple accept() for one select() wake up ;
2373 - implemented internal load balancing with basic health-check ;
2374 - cookie insertion and header add/replace/delete, with better strings
2375 support.
2376
23772002/03/08
2378 - reworked buffer handling to fix a few rewrite bugs, and
2379 improve overall performance.
2380 - implement the "purge" option to delete server cookies in direct mode.
2381
23822002/03/07
2383 - fixed some error cases where the maxfd was not decreased.
2384
23852002/02/26
2386 - now supports transparent proxying, at least on linux 2.4.
2387
23882002/02/12
2389 - soft stop works again (fixed select timeout computation).
2390 - it seems that TCP proxies sometimes cannot timeout.
2391 - added a "quiet" mode.
2392 - enforce file descriptor limitation on socket() and accept().
2393
23942001/12/30 : release of version 1.0.2 : fixed a bug in header processing
23952001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
23962001/12/16 : release of version 1.0.0.
23972001/12/16 : added syslog capability for each accepted connection.
23982001/11/19 : corrected premature end of files and occasional SIGPIPE.
23992001/10/31 : added health-check type servers (mode health) which replies OK then closes.
24002001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
2401 with or without cookies (use keyword http for this).
24022001/09/01 : added client/server header replacing with regexps.
2403 eg:
2404 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
2405 srvexp ^Server:\ .* Server:\ Apache
24062000/11/29 : first fully working release with complete FSMs and timeouts.
24072000/11/28 : major rewrite
24082000/11/26 : first write