blob: bdfc113a050b1dabb833007bcf26726c5782662d [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
Willy Tarreau42250582007-04-01 01:30:43 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/appsession.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010027#include <common/base64.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/compat.h>
29#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010030#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/memory.h>
32#include <common/mini-clist.h>
33#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020034#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020035#include <common/time.h>
36#include <common/uri_auth.h>
37#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
39#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreau8797c062007-05-07 00:55:35 +020042#include <proto/acl.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010043#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <proto/backend.h>
45#include <proto/buffers.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010046#include <proto/checks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020047#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020049#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010051#include <proto/hdr_idx.h>
Willy Tarreau4a568972010-05-12 08:08:50 +020052#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020053#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010055#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010057#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010059#include <proto/stream_interface.h>
Willy Tarreau2d212792008-08-27 21:41:35 +020060#include <proto/stream_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/task.h>
62
Willy Tarreau522d6c02009-12-06 18:49:18 +010063const char HTTP_100[] =
64 "HTTP/1.1 100 Continue\r\n\r\n";
65
66const struct chunk http_100_chunk = {
67 .str = (char *)&HTTP_100,
68 .len = sizeof(HTTP_100)-1
69};
70
Willy Tarreaua9679ac2010-01-03 17:32:57 +010071/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020072const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010073 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020074 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010075 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020076 "Location: "; /* not terminated since it will be concatenated with the URL */
77
Willy Tarreau0f772532006-12-23 20:51:41 +010078const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010080 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010081 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010082 "Location: "; /* not terminated since it will be concatenated with the URL */
83
84/* same as 302 except that the browser MUST retry with the GET method */
85const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010087 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010088 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010089 "Location: "; /* not terminated since it will be concatenated with the URL */
90
Willy Tarreaubaaee002006-06-26 02:48:02 +020091/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
92const char *HTTP_401_fmt =
93 "HTTP/1.0 401 Unauthorized\r\n"
94 "Cache-Control: no-cache\r\n"
95 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +020096 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +020097 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
98 "\r\n"
99 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
100
Willy Tarreau844a7e72010-01-31 21:46:18 +0100101const char *HTTP_407_fmt =
102 "HTTP/1.0 407 Unauthorized\r\n"
103 "Cache-Control: no-cache\r\n"
104 "Connection: close\r\n"
105 "Content-Type: text/html\r\n"
106 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
107 "\r\n"
108 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
109
Willy Tarreau0f772532006-12-23 20:51:41 +0100110
111const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200112 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100113 [HTTP_ERR_400] = 400,
114 [HTTP_ERR_403] = 403,
115 [HTTP_ERR_408] = 408,
116 [HTTP_ERR_500] = 500,
117 [HTTP_ERR_502] = 502,
118 [HTTP_ERR_503] = 503,
119 [HTTP_ERR_504] = 504,
120};
121
Willy Tarreau80587432006-12-24 17:47:20 +0100122static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200123 [HTTP_ERR_200] =
124 "HTTP/1.0 200 OK\r\n"
125 "Cache-Control: no-cache\r\n"
126 "Connection: close\r\n"
127 "Content-Type: text/html\r\n"
128 "\r\n"
129 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
130
Willy Tarreau0f772532006-12-23 20:51:41 +0100131 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100132 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100133 "Cache-Control: no-cache\r\n"
134 "Connection: close\r\n"
135 "Content-Type: text/html\r\n"
136 "\r\n"
137 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
138
139 [HTTP_ERR_403] =
140 "HTTP/1.0 403 Forbidden\r\n"
141 "Cache-Control: no-cache\r\n"
142 "Connection: close\r\n"
143 "Content-Type: text/html\r\n"
144 "\r\n"
145 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
146
147 [HTTP_ERR_408] =
148 "HTTP/1.0 408 Request Time-out\r\n"
149 "Cache-Control: no-cache\r\n"
150 "Connection: close\r\n"
151 "Content-Type: text/html\r\n"
152 "\r\n"
153 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
154
155 [HTTP_ERR_500] =
156 "HTTP/1.0 500 Server Error\r\n"
157 "Cache-Control: no-cache\r\n"
158 "Connection: close\r\n"
159 "Content-Type: text/html\r\n"
160 "\r\n"
161 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
162
163 [HTTP_ERR_502] =
164 "HTTP/1.0 502 Bad Gateway\r\n"
165 "Cache-Control: no-cache\r\n"
166 "Connection: close\r\n"
167 "Content-Type: text/html\r\n"
168 "\r\n"
169 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
170
171 [HTTP_ERR_503] =
172 "HTTP/1.0 503 Service Unavailable\r\n"
173 "Cache-Control: no-cache\r\n"
174 "Connection: close\r\n"
175 "Content-Type: text/html\r\n"
176 "\r\n"
177 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
178
179 [HTTP_ERR_504] =
180 "HTTP/1.0 504 Gateway Time-out\r\n"
181 "Cache-Control: no-cache\r\n"
182 "Connection: close\r\n"
183 "Content-Type: text/html\r\n"
184 "\r\n"
185 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
186
187};
188
Willy Tarreau80587432006-12-24 17:47:20 +0100189/* We must put the messages here since GCC cannot initialize consts depending
190 * on strlen().
191 */
192struct chunk http_err_chunks[HTTP_ERR_SIZE];
193
Willy Tarreau42250582007-04-01 01:30:43 +0200194#define FD_SETS_ARE_BITFIELDS
195#ifdef FD_SETS_ARE_BITFIELDS
196/*
197 * This map is used with all the FD_* macros to check whether a particular bit
198 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
199 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
200 * byte should be encoded. Be careful to always pass bytes from 0 to 255
201 * exclusively to the macros.
202 */
203fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
204fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
205
206#else
207#error "Check if your OS uses bitfields for fd_sets"
208#endif
209
Willy Tarreau80587432006-12-24 17:47:20 +0100210void init_proto_http()
211{
Willy Tarreau42250582007-04-01 01:30:43 +0200212 int i;
213 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100214 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200215
Willy Tarreau80587432006-12-24 17:47:20 +0100216 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
217 if (!http_err_msgs[msg]) {
218 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
219 abort();
220 }
221
222 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
223 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
224 }
Willy Tarreau42250582007-04-01 01:30:43 +0200225
226 /* initialize the log header encoding map : '{|}"#' should be encoded with
227 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
228 * URL encoding only requires '"', '#' to be encoded as well as non-
229 * printable characters above.
230 */
231 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
232 memset(url_encode_map, 0, sizeof(url_encode_map));
233 for (i = 0; i < 32; i++) {
234 FD_SET(i, hdr_encode_map);
235 FD_SET(i, url_encode_map);
236 }
237 for (i = 127; i < 256; i++) {
238 FD_SET(i, hdr_encode_map);
239 FD_SET(i, url_encode_map);
240 }
241
242 tmp = "\"#{|}";
243 while (*tmp) {
244 FD_SET(*tmp, hdr_encode_map);
245 tmp++;
246 }
247
248 tmp = "\"#";
249 while (*tmp) {
250 FD_SET(*tmp, url_encode_map);
251 tmp++;
252 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200253
254 /* memory allocations */
255 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200256 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100257}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200258
Willy Tarreau53b6c742006-12-17 13:37:46 +0100259/*
260 * We have 26 list of methods (1 per first letter), each of which can have
261 * up to 3 entries (2 valid, 1 null).
262 */
263struct http_method_desc {
264 http_meth_t meth;
265 int len;
266 const char text[8];
267};
268
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100269const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100270 ['C' - 'A'] = {
271 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
272 },
273 ['D' - 'A'] = {
274 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
275 },
276 ['G' - 'A'] = {
277 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
278 },
279 ['H' - 'A'] = {
280 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
281 },
282 ['P' - 'A'] = {
283 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
284 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
285 },
286 ['T' - 'A'] = {
287 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
288 },
289 /* rest is empty like this :
290 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
291 */
292};
293
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100294/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200295 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100296 * RFC2616 for those chars.
297 */
298
299const char http_is_spht[256] = {
300 [' '] = 1, ['\t'] = 1,
301};
302
303const char http_is_crlf[256] = {
304 ['\r'] = 1, ['\n'] = 1,
305};
306
307const char http_is_lws[256] = {
308 [' '] = 1, ['\t'] = 1,
309 ['\r'] = 1, ['\n'] = 1,
310};
311
312const char http_is_sep[256] = {
313 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
314 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
315 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
316 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
317 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
318};
319
320const char http_is_ctl[256] = {
321 [0 ... 31] = 1,
322 [127] = 1,
323};
324
325/*
326 * A token is any ASCII char that is neither a separator nor a CTL char.
327 * Do not overwrite values in assignment since gcc-2.95 will not handle
328 * them correctly. Instead, define every non-CTL char's status.
329 */
330const char http_is_token[256] = {
331 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
332 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
333 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
334 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
335 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
336 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
337 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
338 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
339 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
340 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
341 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
342 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
343 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
344 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
345 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
346 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
347 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
348 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
349 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
350 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
351 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
352 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
353 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
354 ['|'] = 1, ['}'] = 0, ['~'] = 1,
355};
356
357
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100358/*
359 * An http ver_token is any ASCII which can be found in an HTTP version,
360 * which includes 'H', 'T', 'P', '/', '.' and any digit.
361 */
362const char http_is_ver_token[256] = {
363 ['.'] = 1, ['/'] = 1,
364 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
365 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
366 ['H'] = 1, ['P'] = 1, ['T'] = 1,
367};
368
369
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100370/*
Willy Tarreaue988a792010-01-04 21:13:14 +0100371 * Silent debug that outputs only in strace, using fd #-1. Trash is modified.
372 */
373#if defined(DEBUG_FSM)
374static void http_silent_debug(int line, struct session *s)
375{
376 int size = 0;
377 size += snprintf(trash + size, sizeof(trash) - size,
378 "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld tf=%08x\n",
379 line,
380 s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers,
381 s->req->data, s->req->size, s->req->l, s->req->w, s->req->r, s->req->lr, s->req->send_max, s->req->to_forward, s->txn.flags);
382 write(-1, trash, size);
383 size = 0;
384 size += snprintf(trash + size, sizeof(trash) - size,
385 " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p lr=%p sm=%d fw=%ld\n",
386 line,
387 s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers,
388 s->rep->data, s->rep->size, s->rep->l, s->rep->w, s->rep->r, s->rep->lr, s->rep->send_max, s->rep->to_forward);
389
390 write(-1, trash, size);
391}
392#else
393#define http_silent_debug(l,s) do { } while (0)
394#endif
395
396/*
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100397 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
398 * CRLF. Text length is measured first, so it cannot be NULL.
399 * The header is also automatically added to the index <hdr_idx>, and the end
400 * of headers is automatically adjusted. The number of bytes added is returned
401 * on success, otherwise <0 is returned indicating an error.
402 */
403int http_header_add_tail(struct buffer *b, struct http_msg *msg,
404 struct hdr_idx *hdr_idx, const char *text)
405{
406 int bytes, len;
407
408 len = strlen(text);
409 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
410 if (!bytes)
411 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100412 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100413 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
414}
415
416/*
417 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
418 * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
419 * the buffer is only opened and the space reserved, but nothing is copied.
420 * The header is also automatically added to the index <hdr_idx>, and the end
421 * of headers is automatically adjusted. The number of bytes added is returned
422 * on success, otherwise <0 is returned indicating an error.
423 */
424int http_header_add_tail2(struct buffer *b, struct http_msg *msg,
425 struct hdr_idx *hdr_idx, const char *text, int len)
426{
427 int bytes;
428
429 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
430 if (!bytes)
431 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100432 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100433 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
434}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435
436/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100437 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
438 * If so, returns the position of the first non-space character relative to
439 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
440 * to return a pointer to the place after the first space. Returns 0 if the
441 * header name does not match. Checks are case-insensitive.
442 */
443int http_header_match2(const char *hdr, const char *end,
444 const char *name, int len)
445{
446 const char *val;
447
448 if (hdr + len >= end)
449 return 0;
450 if (hdr[len] != ':')
451 return 0;
452 if (strncasecmp(hdr, name, len) != 0)
453 return 0;
454 val = hdr + len + 1;
455 while (val < end && HTTP_IS_SPHT(*val))
456 val++;
457 if ((val >= end) && (len + 2 <= end - hdr))
458 return len + 2; /* we may replace starting from second space */
459 return val - hdr;
460}
461
Willy Tarreau68085d82010-01-18 14:54:04 +0100462/* Find the end of the header value contained between <s> and <e>. See RFC2616,
463 * par 2.2 for more information. Note that it requires a valid header to return
464 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200465 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100466char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200467{
468 int quoted, qdpair;
469
470 quoted = qdpair = 0;
471 for (; s < e; s++) {
472 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200473 else if (quoted) {
474 if (*s == '\\') qdpair = 1;
475 else if (*s == '"') quoted = 0;
476 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200477 else if (*s == '"') quoted = 1;
478 else if (*s == ',') return s;
479 }
480 return s;
481}
482
483/* Find the first or next occurrence of header <name> in message buffer <sol>
484 * using headers index <idx>, and return it in the <ctx> structure. This
485 * structure holds everything necessary to use the header and find next
486 * occurrence. If its <idx> member is 0, the header is searched from the
487 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100488 * 1 when it finds a value, and 0 when there is no more. It is designed to work
489 * with headers defined as comma-separated lists. As a special case, if ctx->val
490 * is NULL when searching for a new values of a header, the current header is
491 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200492 */
493int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100494 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200495 struct hdr_ctx *ctx)
496{
Willy Tarreau68085d82010-01-18 14:54:04 +0100497 char *eol, *sov;
498 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200499
Willy Tarreau68085d82010-01-18 14:54:04 +0100500 cur_idx = ctx->idx;
501 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200502 /* We have previously returned a value, let's search
503 * another one on the same line.
504 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200505 sol = ctx->line;
Willy Tarreau68085d82010-01-18 14:54:04 +0100506 ctx->del = ctx->val + ctx->vlen;
507 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200508 eol = sol + idx->v[cur_idx].len;
509
510 if (sov >= eol)
511 /* no more values in this header */
512 goto next_hdr;
513
Willy Tarreau68085d82010-01-18 14:54:04 +0100514 /* values remaining for this header, skip the comma but save it
515 * for later use (eg: for header deletion).
516 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200517 sov++;
518 while (sov < eol && http_is_lws[(unsigned char)*sov])
519 sov++;
520
521 goto return_hdr;
522 }
523
524 /* first request for this header */
525 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100526 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200527 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200528 while (cur_idx) {
529 eol = sol + idx->v[cur_idx].len;
530
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200531 if (len == 0) {
532 /* No argument was passed, we want any header.
533 * To achieve this, we simply build a fake request. */
534 while (sol + len < eol && sol[len] != ':')
535 len++;
536 name = sol;
537 }
538
Willy Tarreau33a7e692007-06-10 19:45:56 +0200539 if ((len < eol - sol) &&
540 (sol[len] == ':') &&
541 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100542 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200543 sov = sol + len + 1;
544 while (sov < eol && http_is_lws[(unsigned char)*sov])
545 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100546
Willy Tarreau33a7e692007-06-10 19:45:56 +0200547 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100548 ctx->prev = old_idx;
549 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200550 ctx->idx = cur_idx;
551 ctx->val = sov - sol;
552
553 eol = find_hdr_value_end(sov, eol);
554 ctx->vlen = eol - sov;
555 return 1;
556 }
557 next_hdr:
558 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100559 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200560 cur_idx = idx->v[cur_idx].next;
561 }
562 return 0;
563}
564
565int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100566 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200567 struct hdr_ctx *ctx)
568{
569 return http_find_header2(name, strlen(name), sol, idx, ctx);
570}
571
Willy Tarreau68085d82010-01-18 14:54:04 +0100572/* Remove one value of a header. This only works on a <ctx> returned by one of
573 * the http_find_header functions. The value is removed, as well as surrounding
574 * commas if any. If the removed value was alone, the whole header is removed.
575 * The ctx is always updated accordingly, as well as buffer <buf> and HTTP
576 * message <msg>. The new index is returned. If it is zero, it means there is
577 * no more header, so any processing may stop. The ctx is always left in a form
578 * that can be handled by http_find_header2() to find next occurrence.
579 */
580int http_remove_header2(struct http_msg *msg, struct buffer *buf,
581 struct hdr_idx *idx, struct hdr_ctx *ctx)
582{
583 int cur_idx = ctx->idx;
584 char *sol = ctx->line;
585 struct hdr_idx_elem *hdr;
586 int delta, skip_comma;
587
588 if (!cur_idx)
589 return 0;
590
591 hdr = &idx->v[cur_idx];
592 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen == hdr->len) {
593 /* This was the only value of the header, we must now remove it entirely. */
594 delta = buffer_replace2(buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
595 http_msg_move_end(msg, delta);
596 idx->used--;
597 hdr->len = 0; /* unused entry */
598 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100599 if (idx->tail == ctx->idx)
600 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100601 ctx->idx = ctx->prev; /* walk back to the end of previous header */
602 ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1;
603 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
604 ctx->vlen = 0;
605 return ctx->idx;
606 }
607
608 /* This was not the only value of this header. We have to remove between
609 * ctx->del+1 and ctx->val+ctx->vlen+1 included. If it is the last entry
610 * of the list, we remove the last separator.
611 */
612
613 skip_comma = (ctx->val + ctx->vlen == hdr->len) ? 0 : 1;
614 delta = buffer_replace2(buf, sol + ctx->del + skip_comma,
615 sol + ctx->val + ctx->vlen + skip_comma,
616 NULL, 0);
617 hdr->len += delta;
618 http_msg_move_end(msg, delta);
619 ctx->val = ctx->del;
620 ctx->vlen = 0;
621 return ctx->idx;
622}
623
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100624/* This function handles a server error at the stream interface level. The
625 * stream interface is assumed to be already in a closed state. An optional
626 * message is copied into the input buffer, and an HTTP status code stored.
627 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100628 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100630static void http_server_error(struct session *t, struct stream_interface *si,
631 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200632{
Willy Tarreaud5fd51c2010-01-22 14:17:47 +0100633 buffer_auto_read(si->ob);
634 buffer_abort(si->ob);
635 buffer_auto_close(si->ob);
636 buffer_erase(si->ob);
Willy Tarreau520d95e2009-09-19 21:04:57 +0200637 buffer_auto_close(si->ib);
Willy Tarreau90deb182010-01-07 00:20:41 +0100638 buffer_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100639 if (status > 0 && msg) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100640 t->txn.status = status;
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100641 buffer_write(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200642 }
643 if (!(t->flags & SN_ERR_MASK))
644 t->flags |= err;
645 if (!(t->flags & SN_FINST_MASK))
646 t->flags |= finst;
647}
648
Willy Tarreau80587432006-12-24 17:47:20 +0100649/* This function returns the appropriate error location for the given session
650 * and message.
651 */
652
653struct chunk *error_message(struct session *s, int msgnum)
654{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200655 if (s->be->errmsg[msgnum].str)
656 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100657 else if (s->fe->errmsg[msgnum].str)
658 return &s->fe->errmsg[msgnum];
659 else
660 return &http_err_chunks[msgnum];
661}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200662
Willy Tarreau53b6c742006-12-17 13:37:46 +0100663/*
664 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
665 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
666 */
667static http_meth_t find_http_meth(const char *str, const int len)
668{
669 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100670 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100671
672 m = ((unsigned)*str - 'A');
673
674 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100675 for (h = http_methods[m]; h->len > 0; h++) {
676 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100677 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100678 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100679 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100680 };
681 return HTTP_METH_OTHER;
682 }
683 return HTTP_METH_NONE;
684
685}
686
Willy Tarreau21d2af32008-02-14 20:25:24 +0100687/* Parse the URI from the given transaction (which is assumed to be in request
688 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
689 * It is returned otherwise.
690 */
691static char *
692http_get_path(struct http_txn *txn)
693{
694 char *ptr, *end;
695
Willy Tarreau962c3f42010-01-10 00:15:35 +0100696 ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100697 end = ptr + txn->req.sl.rq.u_l;
698
699 if (ptr >= end)
700 return NULL;
701
702 /* RFC2616, par. 5.1.2 :
703 * Request-URI = "*" | absuri | abspath | authority
704 */
705
706 if (*ptr == '*')
707 return NULL;
708
709 if (isalpha((unsigned char)*ptr)) {
710 /* this is a scheme as described by RFC3986, par. 3.1 */
711 ptr++;
712 while (ptr < end &&
713 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
714 ptr++;
715 /* skip '://' */
716 if (ptr == end || *ptr++ != ':')
717 return NULL;
718 if (ptr == end || *ptr++ != '/')
719 return NULL;
720 if (ptr == end || *ptr++ != '/')
721 return NULL;
722 }
723 /* skip [user[:passwd]@]host[:[port]] */
724
725 while (ptr < end && *ptr != '/')
726 ptr++;
727
728 if (ptr == end)
729 return NULL;
730
731 /* OK, we got the '/' ! */
732 return ptr;
733}
734
Willy Tarreauefb453c2008-10-26 20:49:47 +0100735/* Returns a 302 for a redirectable request. This may only be called just after
736 * the stream interface has moved to SI_ST_ASS. Unprocessable requests are
737 * left unchanged and will follow normal proxy processing.
738 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100739void perform_http_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100740{
741 struct http_txn *txn;
742 struct chunk rdr;
Willy Tarreau827aee92011-03-10 16:55:02 +0100743 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100744 char *path;
745 int len;
746
747 /* 1: create the response header */
748 rdr.len = strlen(HTTP_302);
749 rdr.str = trash;
Willy Tarreau59e0b0f2010-01-09 21:29:23 +0100750 rdr.size = sizeof(trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100751 memcpy(rdr.str, HTTP_302, rdr.len);
752
Willy Tarreau827aee92011-03-10 16:55:02 +0100753 srv = target_srv(&s->target);
754
Willy Tarreauefb453c2008-10-26 20:49:47 +0100755 /* 2: add the server's prefix */
Willy Tarreau827aee92011-03-10 16:55:02 +0100756 if (rdr.len + srv->rdr_len > rdr.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100757 return;
758
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100759 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100760 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
761 memcpy(rdr.str + rdr.len, srv->rdr_pfx, srv->rdr_len);
762 rdr.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100763 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100764
765 /* 3: add the request URI */
766 txn = &s->txn;
767 path = http_get_path(txn);
768 if (!path)
769 return;
770
Willy Tarreau962c3f42010-01-10 00:15:35 +0100771 len = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200772 if (rdr.len + len > rdr.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100773 return;
774
775 memcpy(rdr.str + rdr.len, path, len);
776 rdr.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100777
778 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
779 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
780 rdr.len += 29;
781 } else {
782 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
783 rdr.len += 23;
784 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100785
786 /* prepare to return without error. */
Willy Tarreau99126c32008-11-27 10:30:51 +0100787 si->shutr(si);
788 si->shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100789 si->err_type = SI_ET_NONE;
790 si->err_loc = NULL;
791 si->state = SI_ST_CLO;
792
793 /* send the message */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100794 http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100795
796 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau827aee92011-03-10 16:55:02 +0100797 if (srv)
798 srv_inc_sess_ctr(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100799}
800
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100801/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100802 * that the server side is closed. Note that err_type is actually a
803 * bitmask, where almost only aborts may be cumulated with other
804 * values. We consider that aborted operations are more important
805 * than timeouts or errors due to the fact that nobody else in the
806 * logs might explain incomplete retries. All others should avoid
807 * being cumulated. It should normally not be possible to have multiple
808 * aborts at once, but just in case, the first one in sequence is reported.
809 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100810void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100811{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100812 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100813
814 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100815 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
816 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100817 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100818 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
819 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100820 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100821 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
822 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100823 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100824 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
825 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100826 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100827 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
828 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100829 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100830 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
831 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100832 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100833 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
834 500, error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100835}
836
Willy Tarreau42250582007-04-01 01:30:43 +0200837extern const char sess_term_cond[8];
838extern const char sess_fin_state[8];
839extern const char *monthname[12];
Willy Tarreauf1348312010-10-07 15:54:11 +0200840const char sess_cookie[8] = "NIDVEO67"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie, Expired cookie, Old cookie, unknown */
841const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive),
842 Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten,
843 Set-cookie Updated, unknown, unknown */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200844struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200845struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100846
Emeric Brun3a058f32009-06-30 18:26:00 +0200847void http_sess_clflog(struct session *s)
848{
Cyril Bontéacd7d632010-11-01 19:26:02 +0100849 char pn[INET6_ADDRSTRLEN];
Emeric Brun3a058f32009-06-30 18:26:00 +0200850 struct proxy *fe = s->fe;
851 struct proxy *be = s->be;
852 struct proxy *prx_log;
853 struct http_txn *txn = &s->txn;
854 int tolog, level, err;
855 char *uri, *h;
Willy Tarreau71904a42011-02-13 14:30:26 +0100856 const char *svid;
Emeric Brun3a058f32009-06-30 18:26:00 +0200857 struct tm tm;
858 static char tmpline[MAX_SYSLOG_LEN];
859 int hdr;
860 size_t w;
861 int t_request;
862
863 prx_log = fe;
864 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
Willy Tarreauee28de02010-06-01 09:51:00 +0200865 (s->req->cons->conn_retries != be->conn_retries) ||
Emeric Brun3a058f32009-06-30 18:26:00 +0200866 txn->status >= 500;
867
Willy Tarreau957c0a52011-03-03 17:42:23 +0100868 if (s->req->prod->addr.c.from.ss_family == AF_INET)
Emeric Brun3a058f32009-06-30 18:26:00 +0200869 inet_ntop(AF_INET,
Willy Tarreau957c0a52011-03-03 17:42:23 +0100870 (const void *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr,
Emeric Brun3a058f32009-06-30 18:26:00 +0200871 pn, sizeof(pn));
Willy Tarreau957c0a52011-03-03 17:42:23 +0100872 else if (s->req->prod->addr.c.from.ss_family == AF_INET6)
Emeric Brun3a058f32009-06-30 18:26:00 +0200873 inet_ntop(AF_INET6,
Willy Tarreau957c0a52011-03-03 17:42:23 +0100874 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr,
Emeric Brun3a058f32009-06-30 18:26:00 +0200875 pn, sizeof(pn));
Emeric Brun5bd86a82010-10-22 17:23:04 +0200876 else
877 snprintf(pn, sizeof(pn), "unix:%d", s->listener->luid);
Emeric Brun3a058f32009-06-30 18:26:00 +0200878
879 get_gmtime(s->logs.accept_date.tv_sec, &tm);
880
881 /* FIXME: let's limit ourselves to frontend logging for now. */
882 tolog = fe->to_log;
883
884 h = tmpline;
885
886 w = snprintf(h, sizeof(tmpline),
887 "%s - - [%02d/%s/%04d:%02d:%02d:%02d +0000]",
888 pn,
889 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
890 tm.tm_hour, tm.tm_min, tm.tm_sec);
891 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
892 goto trunc;
893 h += w;
894
895 if (h >= tmpline + sizeof(tmpline) - 4)
896 goto trunc;
897
898 *(h++) = ' ';
899 *(h++) = '\"';
900 uri = txn->uri ? txn->uri : "<BADREQ>";
901 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
902 '#', url_encode_map, uri);
903 *(h++) = '\"';
904
905 w = snprintf(h, sizeof(tmpline) - (h - tmpline), " %d %lld", txn->status, s->logs.bytes_out);
906 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
907 goto trunc;
908 h += w;
909
910 if (h >= tmpline + sizeof(tmpline) - 9)
911 goto trunc;
912 memcpy(h, " \"-\" \"-\"", 8);
913 h += 8;
914
915 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
916 " %d %03d",
Willy Tarreau957c0a52011-03-03 17:42:23 +0100917 s->req->prod->addr.c.from.ss_family == AF_UNIX ? s->listener->luid :
918 ntohs((s->req->prod->addr.c.from.ss_family == AF_INET) ?
919 ((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_port :
920 ((struct sockaddr_in6 *)&s->req->prod->addr.c.from)->sin6_port),
Emeric Brun3a058f32009-06-30 18:26:00 +0200921 (int)s->logs.accept_date.tv_usec/1000);
922 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
923 goto trunc;
924 h += w;
925
926 w = strlen(fe->id);
927 if (h >= tmpline + sizeof(tmpline) - 4 - w)
928 goto trunc;
929 *(h++) = ' ';
930 *(h++) = '\"';
931 memcpy(h, fe->id, w);
932 h += w;
933 *(h++) = '\"';
934
935 w = strlen(be->id);
936 if (h >= tmpline + sizeof(tmpline) - 4 - w)
937 goto trunc;
938 *(h++) = ' ';
939 *(h++) = '\"';
940 memcpy(h, be->id, w);
941 h += w;
942 *(h++) = '\"';
943
Willy Tarreau71904a42011-02-13 14:30:26 +0100944 if (!(tolog & LW_SVID))
945 svid = "-";
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200946 else switch (s->target.type) {
Willy Tarreau71904a42011-02-13 14:30:26 +0100947 case TARG_TYPE_SERVER:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200948 svid = s->target.ptr.s->id;
Willy Tarreau71904a42011-02-13 14:30:26 +0100949 break;
950 case TARG_TYPE_APPLET:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +0200951 svid = s->target.ptr.a->name;
Willy Tarreau71904a42011-02-13 14:30:26 +0100952 break;
953 default:
954 svid = "<NOSRV>";
955 break;
956 }
Emeric Brun3a058f32009-06-30 18:26:00 +0200957
958 w = strlen(svid);
959 if (h >= tmpline + sizeof(tmpline) - 4 - w)
960 goto trunc;
961 *(h++) = ' ';
962 *(h++) = '\"';
963 memcpy(h, svid, w);
964 h += w;
965 *(h++) = '\"';
966
967 t_request = -1;
968 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
969 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
970 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
971 " %d %ld %ld %ld %ld",
972 t_request,
973 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
974 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
975 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
976 s->logs.t_close);
977 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
978 goto trunc;
979 h += w;
980
981 if (h >= tmpline + sizeof(tmpline) - 8)
982 goto trunc;
983 *(h++) = ' ';
984 *(h++) = '\"';
985 *(h++) = sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT];
986 *(h++) = sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT];
987 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
988 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-';
989 *(h++) = '\"';
990
991 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
992 " %d %d %d %d %d %ld %ld",
Willy Tarreau827aee92011-03-10 16:55:02 +0100993 actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0,
Willy Tarreauee28de02010-06-01 09:51:00 +0200994 (s->req->cons->conn_retries > 0) ? (be->conn_retries - s->req->cons->conn_retries) : be->conn_retries,
Emeric Brun3a058f32009-06-30 18:26:00 +0200995 s->logs.srv_queue_size, s->logs.prx_queue_size);
996
997 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
998 goto trunc;
999 h += w;
1000
1001 if (txn->cli_cookie) {
1002 w = strlen(txn->cli_cookie);
1003 if (h >= tmpline + sizeof(tmpline) - 4 - w)
1004 goto trunc;
1005 *(h++) = ' ';
1006 *(h++) = '\"';
1007 memcpy(h, txn->cli_cookie, w);
1008 h += w;
1009 *(h++) = '\"';
1010 } else {
1011 if (h >= tmpline + sizeof(tmpline) - 5)
1012 goto trunc;
1013 memcpy(h, " \"-\"", 4);
1014 h += 4;
1015 }
1016
1017 if (txn->srv_cookie) {
1018 w = strlen(txn->srv_cookie);
1019 if (h >= tmpline + sizeof(tmpline) - 4 - w)
1020 goto trunc;
1021 *(h++) = ' ';
1022 *(h++) = '\"';
1023 memcpy(h, txn->srv_cookie, w);
1024 h += w;
1025 *(h++) = '\"';
1026 } else {
1027 if (h >= tmpline + sizeof(tmpline) - 5)
1028 goto trunc;
1029 memcpy(h, " \"-\"", 4);
1030 h += 4;
1031 }
1032
1033 if ((fe->to_log & LW_REQHDR) && txn->req.cap) {
1034 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1035 if (h >= sizeof (tmpline) + tmpline - 4)
1036 goto trunc;
Cyril Bonté7f2c5392010-03-13 15:15:07 +01001037 if (txn->req.cap[hdr] != NULL) {
1038 *(h++) = ' ';
1039 *(h++) = '\"';
1040 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1041 '#', hdr_encode_map, txn->req.cap[hdr]);
1042 *(h++) = '\"';
1043 } else {
1044 memcpy(h, " \"-\"", 4);
1045 h += 4;
1046 }
Emeric Brun3a058f32009-06-30 18:26:00 +02001047 }
1048 }
1049
1050 if ((fe->to_log & LW_RSPHDR) && txn->rsp.cap) {
1051 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1052 if (h >= sizeof (tmpline) + tmpline - 4)
1053 goto trunc;
Cyril Bonté7f2c5392010-03-13 15:15:07 +01001054 if (txn->rsp.cap[hdr] != NULL) {
1055 *(h++) = ' ';
1056 *(h++) = '\"';
1057 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1058 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1059 *(h++) = '\"';
1060 } else {
1061 memcpy(h, " \"-\"", 4);
1062 h += 4;
1063 }
Emeric Brun3a058f32009-06-30 18:26:00 +02001064 }
1065 }
1066
1067trunc:
1068 *h = '\0';
1069
1070 level = LOG_INFO;
1071 if (err && (fe->options2 & PR_O2_LOGERRORS))
1072 level = LOG_ERR;
1073
1074 send_log(prx_log, level, "%s\n", tmpline);
1075
1076 s->logs.logwait = 0;
1077}
1078
Willy Tarreau42250582007-04-01 01:30:43 +02001079/*
1080 * send a log for the session when we have enough info about it.
1081 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001082 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001083void http_sess_log(struct session *s)
Willy Tarreau42250582007-04-01 01:30:43 +02001084{
Cyril Bontéacd7d632010-11-01 19:26:02 +01001085 char pn[INET6_ADDRSTRLEN];
Willy Tarreau42250582007-04-01 01:30:43 +02001086 struct proxy *fe = s->fe;
1087 struct proxy *be = s->be;
1088 struct proxy *prx_log;
1089 struct http_txn *txn = &s->txn;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001090 int tolog, level, err;
Willy Tarreau42250582007-04-01 01:30:43 +02001091 char *uri, *h;
Willy Tarreau71904a42011-02-13 14:30:26 +01001092 const char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +02001093 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +02001094 static char tmpline[MAX_SYSLOG_LEN];
Willy Tarreau70089872008-06-13 21:12:51 +02001095 int t_request;
Willy Tarreau42250582007-04-01 01:30:43 +02001096 int hdr;
1097
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001098 /* if we don't want to log normal traffic, return now */
1099 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
Willy Tarreauee28de02010-06-01 09:51:00 +02001100 (s->req->cons->conn_retries != be->conn_retries) ||
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001101 txn->status >= 500;
1102 if (!err && (fe->options2 & PR_O2_NOLOGNORM))
1103 return;
1104
Willy Tarreau42250582007-04-01 01:30:43 +02001105 if (fe->logfac1 < 0 && fe->logfac2 < 0)
1106 return;
1107 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001108
Emeric Brun3a058f32009-06-30 18:26:00 +02001109 if (prx_log->options2 & PR_O2_CLFLOG)
1110 return http_sess_clflog(s);
1111
Willy Tarreau957c0a52011-03-03 17:42:23 +01001112 if (s->req->prod->addr.c.from.ss_family == AF_INET)
Willy Tarreau42250582007-04-01 01:30:43 +02001113 inet_ntop(AF_INET,
Willy Tarreau957c0a52011-03-03 17:42:23 +01001114 (const void *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr,
Willy Tarreau42250582007-04-01 01:30:43 +02001115 pn, sizeof(pn));
Willy Tarreau957c0a52011-03-03 17:42:23 +01001116 else if (s->req->prod->addr.c.from.ss_family == AF_INET6)
Willy Tarreau42250582007-04-01 01:30:43 +02001117 inet_ntop(AF_INET6,
Willy Tarreau957c0a52011-03-03 17:42:23 +01001118 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr,
Willy Tarreau42250582007-04-01 01:30:43 +02001119 pn, sizeof(pn));
1120
Willy Tarreaub7f694f2008-06-22 17:18:02 +02001121 get_localtime(s->logs.accept_date.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +02001122
1123 /* FIXME: let's limit ourselves to frontend logging for now. */
1124 tolog = fe->to_log;
1125
1126 h = tmpline;
1127 if (fe->to_log & LW_REQHDR &&
1128 txn->req.cap &&
1129 (h < tmpline + sizeof(tmpline) - 10)) {
1130 *(h++) = ' ';
1131 *(h++) = '{';
1132 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1133 if (hdr)
1134 *(h++) = '|';
1135 if (txn->req.cap[hdr] != NULL)
1136 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
1137 '#', hdr_encode_map, txn->req.cap[hdr]);
1138 }
1139 *(h++) = '}';
1140 }
1141
1142 if (fe->to_log & LW_RSPHDR &&
1143 txn->rsp.cap &&
1144 (h < tmpline + sizeof(tmpline) - 7)) {
1145 *(h++) = ' ';
1146 *(h++) = '{';
1147 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1148 if (hdr)
1149 *(h++) = '|';
1150 if (txn->rsp.cap[hdr] != NULL)
1151 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
1152 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1153 }
1154 *(h++) = '}';
1155 }
1156
1157 if (h < tmpline + sizeof(tmpline) - 4) {
1158 *(h++) = ' ';
1159 *(h++) = '"';
1160 uri = txn->uri ? txn->uri : "<BADREQ>";
1161 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
1162 '#', url_encode_map, uri);
1163 *(h++) = '"';
1164 }
1165 *h = '\0';
1166
Willy Tarreau71904a42011-02-13 14:30:26 +01001167 if (!(tolog & LW_SVID))
1168 svid = "-";
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001169 else switch (s->target.type) {
Willy Tarreau71904a42011-02-13 14:30:26 +01001170 case TARG_TYPE_SERVER:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001171 svid = s->target.ptr.s->id;
Willy Tarreau71904a42011-02-13 14:30:26 +01001172 break;
1173 case TARG_TYPE_APPLET:
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02001174 svid = s->target.ptr.a->name;
Willy Tarreau71904a42011-02-13 14:30:26 +01001175 break;
1176 default:
1177 svid = "<NOSRV>";
1178 break;
1179 }
Willy Tarreau42250582007-04-01 01:30:43 +02001180
Willy Tarreau70089872008-06-13 21:12:51 +02001181 t_request = -1;
1182 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
1183 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
1184
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001185 level = LOG_INFO;
1186 if (err && (fe->options2 & PR_O2_LOGERRORS))
1187 level = LOG_ERR;
1188
1189 send_log(prx_log, level,
Willy Tarreau42250582007-04-01 01:30:43 +02001190 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
Willy Tarreau1772ece2009-04-03 14:49:12 +02001191 " %s %s/%s %d/%ld/%ld/%ld/%s%ld %d %s%lld"
1192 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %ld/%ld%s\n",
Willy Tarreau957c0a52011-03-03 17:42:23 +01001193 (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? "unix" : pn,
1194 (s->req->prod->addr.c.from.ss_family == AF_UNIX) ? s->listener->luid :
1195 ntohs((s->req->prod->addr.c.from.ss_family == AF_INET) ?
1196 ((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_port :
1197 ((struct sockaddr_in6 *)&s->req->prod->addr.c.from)->sin6_port),
Willy Tarreaufe944602007-10-25 10:34:16 +02001198 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001199 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)s->logs.accept_date.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +02001200 fe->id, be->id, svid,
Willy Tarreau70089872008-06-13 21:12:51 +02001201 t_request,
1202 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
Willy Tarreau42250582007-04-01 01:30:43 +02001203 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
1204 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
1205 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
1206 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +01001207 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +02001208 txn->cli_cookie ? txn->cli_cookie : "-",
1209 txn->srv_cookie ? txn->srv_cookie : "-",
1210 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
1211 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
1212 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
1213 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
Willy Tarreau827aee92011-03-10 16:55:02 +01001214 actconn, fe->feconn, be->beconn, target_srv(&s->target) ? target_srv(&s->target)->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001215 (s->flags & SN_REDISP)?"+":"",
Willy Tarreauee28de02010-06-01 09:51:00 +02001216 (s->req->cons->conn_retries>0)?(be->conn_retries - s->req->cons->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +02001217 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
1218
1219 s->logs.logwait = 0;
1220}
1221
Willy Tarreau117f59e2007-03-04 18:17:17 +01001222
1223/*
1224 * Capture headers from message starting at <som> according to header list
1225 * <cap_hdr>, and fill the <idx> structure appropriately.
1226 */
1227void capture_headers(char *som, struct hdr_idx *idx,
1228 char **cap, struct cap_hdr *cap_hdr)
1229{
1230 char *eol, *sol, *col, *sov;
1231 int cur_idx;
1232 struct cap_hdr *h;
1233 int len;
1234
1235 sol = som + hdr_idx_first_pos(idx);
1236 cur_idx = hdr_idx_first_idx(idx);
1237
1238 while (cur_idx) {
1239 eol = sol + idx->v[cur_idx].len;
1240
1241 col = sol;
1242 while (col < eol && *col != ':')
1243 col++;
1244
1245 sov = col + 1;
1246 while (sov < eol && http_is_lws[(unsigned char)*sov])
1247 sov++;
1248
1249 for (h = cap_hdr; h; h = h->next) {
1250 if ((h->namelen == col - sol) &&
1251 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1252 if (cap[h->index] == NULL)
1253 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001254 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001255
1256 if (cap[h->index] == NULL) {
1257 Alert("HTTP capture : out of memory.\n");
1258 continue;
1259 }
1260
1261 len = eol - sov;
1262 if (len > h->len)
1263 len = h->len;
1264
1265 memcpy(cap[h->index], sov, len);
1266 cap[h->index][len]=0;
1267 }
1268 }
1269 sol = eol + idx->v[cur_idx].cr + 1;
1270 cur_idx = idx->v[cur_idx].next;
1271 }
1272}
1273
1274
Willy Tarreau42250582007-04-01 01:30:43 +02001275/* either we find an LF at <ptr> or we jump to <bad>.
1276 */
1277#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1278
1279/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1280 * otherwise to <http_msg_ood> with <state> set to <st>.
1281 */
1282#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1283 ptr++; \
1284 if (likely(ptr < end)) \
1285 goto good; \
1286 else { \
1287 state = (st); \
1288 goto http_msg_ood; \
1289 } \
1290 } while (0)
1291
1292
Willy Tarreaubaaee002006-06-26 02:48:02 +02001293/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001294 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001295 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1296 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1297 * will give undefined results.
1298 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1299 * and that msg->sol points to the beginning of the response.
1300 * If a complete line is found (which implies that at least one CR or LF is
1301 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1302 * returned indicating an incomplete line (which does not mean that parts have
1303 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1304 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1305 * upon next call.
1306 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001307 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001308 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1309 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001310 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001311 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001312const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
1313 unsigned int state, const char *ptr, const char *end,
1314 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001315{
Willy Tarreau8973c702007-01-21 23:58:29 +01001316 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001317 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001318 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001319 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001320 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1321
1322 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001323 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001324 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1325 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001326 state = HTTP_MSG_ERROR;
1327 break;
1328
Willy Tarreau8973c702007-01-21 23:58:29 +01001329 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001330 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001331 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001332 msg->sl.st.c = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001333 goto http_msg_rpcode;
1334 }
1335 if (likely(HTTP_IS_SPHT(*ptr)))
1336 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1337 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001338 state = HTTP_MSG_ERROR;
1339 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001340
Willy Tarreau8973c702007-01-21 23:58:29 +01001341 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001342 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001343 if (likely(!HTTP_IS_LWS(*ptr)))
1344 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1345
1346 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001347 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001348 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1349 }
1350
1351 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001352 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001353 http_msg_rsp_reason:
1354 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001355 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001356 msg->sl.st.r_l = 0;
1357 goto http_msg_rpline_eol;
1358
Willy Tarreau8973c702007-01-21 23:58:29 +01001359 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001360 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001361 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001362 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001363 goto http_msg_rpreason;
1364 }
1365 if (likely(HTTP_IS_SPHT(*ptr)))
1366 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1367 /* so it's a CR/LF, so there is no reason phrase */
1368 goto http_msg_rsp_reason;
1369
Willy Tarreau8973c702007-01-21 23:58:29 +01001370 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001371 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001372 if (likely(!HTTP_IS_CRLF(*ptr)))
1373 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreau962c3f42010-01-10 00:15:35 +01001374 msg->sl.st.r_l = (ptr - msg_buf) - msg->som - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001375 http_msg_rpline_eol:
1376 /* We have seen the end of line. Note that we do not
1377 * necessarily have the \n yet, but at least we know that we
1378 * have EITHER \r OR \n, otherwise the response would not be
1379 * complete. We can then record the response length and return
1380 * to the caller which will be able to register it.
1381 */
1382 msg->sl.st.l = ptr - msg->sol;
1383 return ptr;
1384
1385#ifdef DEBUG_FULL
1386 default:
1387 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1388 exit(1);
1389#endif
1390 }
1391
1392 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001393 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001394 if (ret_state)
1395 *ret_state = state;
1396 if (ret_ptr)
1397 *ret_ptr = (char *)ptr;
1398 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001399}
1400
Willy Tarreau8973c702007-01-21 23:58:29 +01001401/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001402 * This function parses a request line between <ptr> and <end>, starting with
1403 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1404 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1405 * will give undefined results.
1406 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1407 * and that msg->sol points to the beginning of the request.
1408 * If a complete line is found (which implies that at least one CR or LF is
1409 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1410 * returned indicating an incomplete line (which does not mean that parts have
1411 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1412 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1413 * upon next call.
1414 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001415 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001416 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1417 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001418 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001419 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001420const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf,
1421 unsigned int state, const char *ptr, const char *end,
1422 char **ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001423{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001424 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001425 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001426 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001427 if (likely(HTTP_IS_TOKEN(*ptr)))
1428 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001429
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001430 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001431 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001432 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1433 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001434
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001435 if (likely(HTTP_IS_CRLF(*ptr))) {
1436 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001437 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001438 http_msg_req09_uri:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001439 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001440 http_msg_req09_uri_e:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001441 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001442 http_msg_req09_ver:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001443 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001444 msg->sl.rq.v_l = 0;
1445 goto http_msg_rqline_eol;
1446 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001447 state = HTTP_MSG_ERROR;
1448 break;
1449
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001450 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001451 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001452 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001453 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001454 goto http_msg_rquri;
1455 }
1456 if (likely(HTTP_IS_SPHT(*ptr)))
1457 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1458 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1459 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001460
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001461 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001462 http_msg_rquri:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001463 if (likely(!HTTP_IS_LWS(*ptr)))
1464 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001465
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001466 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001467 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001468 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1469 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001470
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001471 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1472 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001473
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001474 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001475 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001476 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001477 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001478 goto http_msg_rqver;
1479 }
1480 if (likely(HTTP_IS_SPHT(*ptr)))
1481 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1482 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1483 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001484
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001485 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001486 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001487 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001488 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001489
1490 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001491 msg->sl.rq.v_l = (ptr - msg_buf) - msg->som - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001492 http_msg_rqline_eol:
1493 /* We have seen the end of line. Note that we do not
1494 * necessarily have the \n yet, but at least we know that we
1495 * have EITHER \r OR \n, otherwise the request would not be
1496 * complete. We can then record the request length and return
1497 * to the caller which will be able to register it.
1498 */
1499 msg->sl.rq.l = ptr - msg->sol;
1500 return ptr;
1501 }
1502
1503 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001504 state = HTTP_MSG_ERROR;
1505 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001506
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001507#ifdef DEBUG_FULL
1508 default:
1509 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1510 exit(1);
1511#endif
1512 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001513
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001514 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001515 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001516 if (ret_state)
1517 *ret_state = state;
1518 if (ret_ptr)
1519 *ret_ptr = (char *)ptr;
1520 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001521}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001522
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001523/*
1524 * Returns the data from Authorization header. Function may be called more
1525 * than once so data is stored in txn->auth_data. When no header is found
1526 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
1527 * searching again for something we are unable to find anyway.
1528 */
1529
1530char get_http_auth_buff[BUFSIZE];
1531
1532int
1533get_http_auth(struct session *s)
1534{
1535
1536 struct http_txn *txn = &s->txn;
1537 struct chunk auth_method;
1538 struct hdr_ctx ctx;
1539 char *h, *p;
1540 int len;
1541
1542#ifdef DEBUG_AUTH
1543 printf("Auth for session %p: %d\n", s, txn->auth.method);
1544#endif
1545
1546 if (txn->auth.method == HTTP_AUTH_WRONG)
1547 return 0;
1548
1549 if (txn->auth.method)
1550 return 1;
1551
1552 txn->auth.method = HTTP_AUTH_WRONG;
1553
1554 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001555
1556 if (txn->flags & TX_USE_PX_CONN) {
1557 h = "Proxy-Authorization";
1558 len = strlen(h);
1559 } else {
1560 h = "Authorization";
1561 len = strlen(h);
1562 }
1563
1564 if (!http_find_header2(h, len, txn->req.sol, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001565 return 0;
1566
1567 h = ctx.line + ctx.val;
1568
1569 p = memchr(h, ' ', ctx.vlen);
1570 if (!p || p == h)
1571 return 0;
1572
1573 chunk_initlen(&auth_method, h, 0, p-h);
1574 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1575
1576 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1577
1578 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
1579 get_http_auth_buff, BUFSIZE - 1);
1580
1581 if (len < 0)
1582 return 0;
1583
1584
1585 get_http_auth_buff[len] = '\0';
1586
1587 p = strchr(get_http_auth_buff, ':');
1588
1589 if (!p)
1590 return 0;
1591
1592 txn->auth.user = get_http_auth_buff;
1593 *p = '\0';
1594 txn->auth.pass = p+1;
1595
1596 txn->auth.method = HTTP_AUTH_BASIC;
1597 return 1;
1598 }
1599
1600 return 0;
1601}
1602
Willy Tarreau58f10d72006-12-04 02:26:12 +01001603
Willy Tarreau8973c702007-01-21 23:58:29 +01001604/*
1605 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001606 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001607 * when data are missing and recalled at the exact same location with no
1608 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001609 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau15de77e2010-01-02 21:59:16 +01001610 * fields. Note that msg->som and msg->sol will be initialized after completing
1611 * the first state, so that none of the msg pointers has to be initialized
1612 * prior to the first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001613 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001614void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1615{
Willy Tarreaue69eada2008-01-27 00:34:10 +01001616 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001617 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001618
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001619 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001620 ptr = buf->lr;
1621 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001622
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001623 if (unlikely(ptr >= end))
1624 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001625
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001626 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001627 /*
1628 * First, states that are specific to the response only.
1629 * We check them first so that request and headers are
1630 * closer to each other (accessed more often).
1631 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001632 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001633 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001634 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001635 /* we have a start of message, but we have to check
1636 * first if we need to remove some CRLF. We can only
1637 * do this when send_max=0.
1638 */
1639 char *beg = buf->w + buf->send_max;
1640 if (beg >= buf->data + buf->size)
1641 beg -= buf->size;
1642 if (unlikely(ptr != beg)) {
1643 if (buf->send_max)
1644 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001645 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001646 buffer_ignore(buf, ptr - beg);
Willy Tarreau8973c702007-01-21 23:58:29 +01001647 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001648 msg->som = ptr - buf->data;
Willy Tarreau816b9792009-09-15 21:25:21 +02001649 msg->sol = ptr;
Willy Tarreau8973c702007-01-21 23:58:29 +01001650 hdr_idx_init(idx);
1651 state = HTTP_MSG_RPVER;
1652 goto http_msg_rpver;
1653 }
1654
1655 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1656 goto http_msg_invalid;
1657
1658 if (unlikely(*ptr == '\n'))
1659 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1660 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1661 /* stop here */
1662
Willy Tarreau8973c702007-01-21 23:58:29 +01001663 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001664 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001665 EXPECT_LF_HERE(ptr, http_msg_invalid);
1666 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1667 /* stop here */
1668
Willy Tarreau8973c702007-01-21 23:58:29 +01001669 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001670 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001671 case HTTP_MSG_RPVER_SP:
1672 case HTTP_MSG_RPCODE:
1673 case HTTP_MSG_RPCODE_SP:
1674 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001675 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001676 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001677 if (unlikely(!ptr))
1678 return;
1679
1680 /* we have a full response and we know that we have either a CR
1681 * or an LF at <ptr>.
1682 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001683 //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.st.l, *ptr);
Willy Tarreau8973c702007-01-21 23:58:29 +01001684 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1685
1686 msg->sol = ptr;
1687 if (likely(*ptr == '\r'))
1688 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1689 goto http_msg_rpline_end;
1690
Willy Tarreau8973c702007-01-21 23:58:29 +01001691 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001692 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001693 /* msg->sol must point to the first of CR or LF. */
1694 EXPECT_LF_HERE(ptr, http_msg_invalid);
1695 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1696 /* stop here */
1697
1698 /*
1699 * Second, states that are specific to the request only
1700 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001701 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001702 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001703 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001704 /* we have a start of message, but we have to check
1705 * first if we need to remove some CRLF. We can only
1706 * do this when send_max=0.
1707 */
1708 char *beg = buf->w + buf->send_max;
1709 if (beg >= buf->data + buf->size)
1710 beg -= buf->size;
1711 if (likely(ptr != beg)) {
1712 if (buf->send_max)
1713 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001714 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001715 buffer_ignore(buf, ptr - beg);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001716 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001717 msg->som = ptr - buf->data;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001718 msg->sol = ptr;
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001719 /* we will need this when keep-alive will be supported
1720 hdr_idx_init(idx);
1721 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001722 state = HTTP_MSG_RQMETH;
1723 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001724 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001725
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001726 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1727 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001728
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001729 if (unlikely(*ptr == '\n'))
1730 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1731 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001732 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001733
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001734 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001735 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001736 EXPECT_LF_HERE(ptr, http_msg_invalid);
1737 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001738 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001739
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001741 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001742 case HTTP_MSG_RQMETH_SP:
1743 case HTTP_MSG_RQURI:
1744 case HTTP_MSG_RQURI_SP:
1745 case HTTP_MSG_RQVER:
1746 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001747 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001748 if (unlikely(!ptr))
1749 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001750
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001751 /* we have a full request and we know that we have either a CR
1752 * or an LF at <ptr>.
1753 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001754 //fprintf(stderr,"som=%d rq.l=%d *ptr=0x%02x\n", msg->som, msg->sl.rq.l, *ptr);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001755 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001756
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001757 msg->sol = ptr;
1758 if (likely(*ptr == '\r'))
1759 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001760 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001761
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001762 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001763 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001764 /* check for HTTP/0.9 request : no version information available.
1765 * msg->sol must point to the first of CR or LF.
1766 */
1767 if (unlikely(msg->sl.rq.v_l == 0))
1768 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001769
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001770 EXPECT_LF_HERE(ptr, http_msg_invalid);
1771 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001772 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001773
Willy Tarreau8973c702007-01-21 23:58:29 +01001774 /*
1775 * Common states below
1776 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001777 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001778 http_msg_hdr_first:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001779 msg->sol = ptr;
1780 if (likely(!HTTP_IS_CRLF(*ptr))) {
1781 goto http_msg_hdr_name;
1782 }
1783
1784 if (likely(*ptr == '\r'))
1785 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1786 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001787
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001788 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001789 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001790 /* assumes msg->sol points to the first char */
1791 if (likely(HTTP_IS_TOKEN(*ptr)))
1792 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001793
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001794 if (likely(*ptr == ':')) {
1795 msg->col = ptr - buf->data;
1796 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1797 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001798
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001799 if (likely(msg->err_pos < -1) || *ptr == '\n')
1800 goto http_msg_invalid;
1801
1802 if (msg->err_pos == -1) /* capture error pointer */
1803 msg->err_pos = ptr - buf->data; /* >= 0 now */
1804
1805 /* and we still accept this non-token character */
1806 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001807
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001808 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001809 http_msg_hdr_l1_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001810 /* assumes msg->sol points to the first char and msg->col to the colon */
1811 if (likely(HTTP_IS_SPHT(*ptr)))
1812 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001813
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001814 /* header value can be basically anything except CR/LF */
1815 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001816
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001817 if (likely(!HTTP_IS_CRLF(*ptr))) {
1818 goto http_msg_hdr_val;
1819 }
1820
1821 if (likely(*ptr == '\r'))
1822 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1823 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001824
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001825 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001826 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001827 EXPECT_LF_HERE(ptr, http_msg_invalid);
1828 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001829
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001830 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001831 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001832 if (likely(HTTP_IS_SPHT(*ptr))) {
1833 /* replace HT,CR,LF with spaces */
1834 for (; buf->data+msg->sov < ptr; msg->sov++)
1835 buf->data[msg->sov] = ' ';
1836 goto http_msg_hdr_l1_sp;
1837 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001838 /* we had a header consisting only in spaces ! */
1839 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001840 goto http_msg_complete_header;
1841
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001842 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001843 http_msg_hdr_val:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001844 /* assumes msg->sol points to the first char, msg->col to the
1845 * colon, and msg->sov points to the first character of the
1846 * value.
1847 */
1848 if (likely(!HTTP_IS_CRLF(*ptr)))
1849 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001850
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001851 msg->eol = ptr;
1852 /* Note: we could also copy eol into ->eoh so that we have the
1853 * real header end in case it ends with lots of LWS, but is this
1854 * really needed ?
1855 */
1856 if (likely(*ptr == '\r'))
1857 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1858 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001859
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001860 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001861 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001862 EXPECT_LF_HERE(ptr, http_msg_invalid);
1863 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001864
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001865 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001866 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001867 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1868 /* LWS: replace HT,CR,LF with spaces */
1869 for (; msg->eol < ptr; msg->eol++)
1870 *msg->eol = ' ';
1871 goto http_msg_hdr_val;
1872 }
1873 http_msg_complete_header:
1874 /*
1875 * It was a new header, so the last one is finished.
1876 * Assumes msg->sol points to the first char, msg->col to the
1877 * colon, msg->sov points to the first character of the value
1878 * and msg->eol to the first CR or LF so we know how the line
1879 * ends. We insert last header into the index.
1880 */
1881 /*
1882 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1883 write(2, msg->sol, msg->eol-msg->sol);
1884 fprintf(stderr,"\n");
1885 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001886
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001887 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1888 idx, idx->tail) < 0))
1889 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001890
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001891 msg->sol = ptr;
1892 if (likely(!HTTP_IS_CRLF(*ptr))) {
1893 goto http_msg_hdr_name;
1894 }
1895
1896 if (likely(*ptr == '\r'))
1897 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1898 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001899
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001900 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001901 http_msg_last_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001902 /* Assumes msg->sol points to the first of either CR or LF */
1903 EXPECT_LF_HERE(ptr, http_msg_invalid);
1904 ptr++;
1905 buf->lr = ptr;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001906 msg->col = msg->sov = buf->lr - buf->data;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001907 msg->eoh = msg->sol - buf->data;
Willy Tarreau962c3f42010-01-10 00:15:35 +01001908 msg->sol = buf->data + msg->som;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001909 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001910 return;
1911#ifdef DEBUG_FULL
1912 default:
1913 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1914 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001915#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001916 }
1917 http_msg_ood:
1918 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001919 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001920 buf->lr = ptr;
1921 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001922
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001923 http_msg_invalid:
1924 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001925 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau7552c032009-03-01 11:10:40 +01001926 buf->lr = ptr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001927 return;
1928}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001929
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001930/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1931 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1932 * nothing is done and 1 is returned.
1933 */
1934static int http_upgrade_v09_to_v10(struct buffer *req, struct http_msg *msg, struct http_txn *txn)
1935{
1936 int delta;
1937 char *cur_end;
1938
1939 if (msg->sl.rq.v_l != 0)
1940 return 1;
1941
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001942 cur_end = msg->sol + msg->sl.rq.l;
1943 delta = 0;
1944
1945 if (msg->sl.rq.u_l == 0) {
1946 /* if no URI was set, add "/" */
1947 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
1948 cur_end += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001949 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001950 }
1951 /* add HTTP version */
1952 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001953 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001954 cur_end += delta;
1955 cur_end = (char *)http_parse_reqline(msg, req->data,
1956 HTTP_MSG_RQMETH,
1957 msg->sol, cur_end + 1,
1958 NULL, NULL);
1959 if (unlikely(!cur_end))
1960 return 0;
1961
1962 /* we have a full HTTP/1.0 request now and we know that
1963 * we have either a CR or an LF at <ptr>.
1964 */
1965 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1966 return 1;
1967}
1968
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001969/* Parse the Connection: header of an HTTP request, looking for both "close"
1970 * and "keep-alive" values. If a buffer is provided and we already know that
1971 * some headers may safely be removed, we remove them now. The <to_del> flags
1972 * are used for that :
1973 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1974 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
1975 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1976 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1977 * harmless combinations may be removed. Do not call that after changes have
1978 * been processed. If unused, the buffer can be NULL, and no data will be
1979 * changed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001980 */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001981void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001982{
Willy Tarreau5b154472009-12-21 20:11:07 +01001983 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001984 const char *hdr_val = "Connection";
1985 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001986
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001987 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001988 return;
1989
Willy Tarreau88d349d2010-01-25 12:15:43 +01001990 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1991 hdr_val = "Proxy-Connection";
1992 hdr_len = 16;
1993 }
1994
Willy Tarreau5b154472009-12-21 20:11:07 +01001995 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001996 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01001997 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001998 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1999 txn->flags |= TX_HDR_CONN_KAL;
2000 if ((to_del & 2) && buf)
2001 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
2002 else
2003 txn->flags |= TX_CON_KAL_SET;
2004 }
2005 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2006 txn->flags |= TX_HDR_CONN_CLO;
2007 if ((to_del & 1) && buf)
2008 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
2009 else
2010 txn->flags |= TX_CON_CLO_SET;
2011 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002012 }
2013
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002014 txn->flags |= TX_HDR_CONN_PRS;
2015 return;
2016}
Willy Tarreau5b154472009-12-21 20:11:07 +01002017
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002018/* Apply desired changes on the Connection: header. Values may be removed and/or
2019 * added depending on the <wanted> flags, which are exclusively composed of
2020 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
2021 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
2022 */
2023void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int wanted)
2024{
2025 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002026 const char *hdr_val = "Connection";
2027 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002028
2029 ctx.idx = 0;
2030
Willy Tarreau88d349d2010-01-25 12:15:43 +01002031
2032 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2033 hdr_val = "Proxy-Connection";
2034 hdr_len = 16;
2035 }
2036
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002037 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01002038 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002039 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
2040 if (wanted & TX_CON_KAL_SET)
2041 txn->flags |= TX_CON_KAL_SET;
2042 else
2043 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01002044 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002045 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2046 if (wanted & TX_CON_CLO_SET)
2047 txn->flags |= TX_CON_CLO_SET;
2048 else
2049 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002050 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002051 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002052
2053 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
2054 return;
2055
2056 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
2057 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002058 hdr_val = "Connection: close";
2059 hdr_len = 17;
2060 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2061 hdr_val = "Proxy-Connection: close";
2062 hdr_len = 23;
2063 }
2064 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002065 }
2066
2067 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
2068 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002069 hdr_val = "Connection: keep-alive";
2070 hdr_len = 22;
2071 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2072 hdr_val = "Proxy-Connection: keep-alive";
2073 hdr_len = 28;
2074 }
2075 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002076 }
2077 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01002078}
2079
Willy Tarreaud98cf932009-12-27 22:54:55 +01002080/* Parse the chunk size at buf->lr. Once done, it adjusts ->lr to point to the
2081 * first byte of body, and increments msg->sov by the number of bytes parsed,
2082 * so that we know we can forward between ->som and ->sov. Note that due to
2083 * possible wrapping at the end of the buffer, it is possible that msg->sov is
2084 * lower than msg->som.
Willy Tarreau115acb92009-12-26 13:56:06 +01002085 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002086 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01002087 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002088int http_parse_chunk_size(struct buffer *buf, struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01002089{
Willy Tarreaud98cf932009-12-27 22:54:55 +01002090 char *ptr = buf->lr;
2091 char *end = buf->data + buf->size;
Willy Tarreau115acb92009-12-26 13:56:06 +01002092 unsigned int chunk = 0;
2093
2094 /* The chunk size is in the following form, though we are only
2095 * interested in the size and CRLF :
2096 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
2097 */
2098 while (1) {
2099 int c;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002100 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002101 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002102 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01002103 if (c < 0) /* not a hex digit anymore */
2104 break;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002105 if (++ptr >= end)
2106 ptr = buf->data;
Willy Tarreau115acb92009-12-26 13:56:06 +01002107 if (chunk & 0xF000000) /* overflow will occur */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002108 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002109 chunk = (chunk << 4) + c;
2110 }
2111
Willy Tarreaud98cf932009-12-27 22:54:55 +01002112 /* empty size not allowed */
2113 if (ptr == buf->lr)
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002114 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002115
2116 while (http_is_spht[(unsigned char)*ptr]) {
2117 if (++ptr >= end)
2118 ptr = buf->data;
2119 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002120 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01002121 }
2122
Willy Tarreaud98cf932009-12-27 22:54:55 +01002123 /* Up to there, we know that at least one byte is present at *ptr. Check
2124 * for the end of chunk size.
2125 */
2126 while (1) {
2127 if (likely(HTTP_IS_CRLF(*ptr))) {
2128 /* we now have a CR or an LF at ptr */
2129 if (likely(*ptr == '\r')) {
2130 if (++ptr >= end)
2131 ptr = buf->data;
2132 if (ptr == buf->r)
2133 return 0;
2134 }
Willy Tarreau115acb92009-12-26 13:56:06 +01002135
Willy Tarreaud98cf932009-12-27 22:54:55 +01002136 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002137 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002138 if (++ptr >= end)
2139 ptr = buf->data;
2140 /* done */
2141 break;
2142 }
2143 else if (*ptr == ';') {
2144 /* chunk extension, ends at next CRLF */
2145 if (++ptr >= end)
2146 ptr = buf->data;
2147 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002148 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002149
2150 while (!HTTP_IS_CRLF(*ptr)) {
2151 if (++ptr >= end)
2152 ptr = buf->data;
2153 if (ptr == buf->r)
2154 return 0;
2155 }
2156 /* we have a CRLF now, loop above */
2157 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002158 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002159 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002160 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002161 }
2162
Willy Tarreaud98cf932009-12-27 22:54:55 +01002163 /* OK we found our CRLF and now <ptr> points to the next byte,
2164 * which may or may not be present. We save that into ->lr and
2165 * ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01002166 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002167 msg->sov += ptr - buf->lr;
2168 buf->lr = ptr;
Willy Tarreau124d9912011-03-01 20:30:48 +01002169 msg->chunk_len = chunk;
2170 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002171 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002172 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002173 error:
2174 msg->err_pos = ptr - buf->data;
2175 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002176}
2177
Willy Tarreaud98cf932009-12-27 22:54:55 +01002178/* This function skips trailers in the buffer <buf> associated with HTTP
2179 * message <msg>. The first visited position is buf->lr. If the end of
2180 * the trailers is found, it is automatically scheduled to be forwarded,
2181 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2182 * If not enough data are available, the function does not change anything
Willy Tarreau638cd022010-01-03 07:42:04 +01002183 * except maybe buf->lr and msg->sov if it could parse some lines, and returns
2184 * zero. If a parse error is encountered, the function returns < 0 and does not
2185 * change anything except maybe buf->lr and msg->sov. Note that the message
2186 * must already be in HTTP_MSG_TRAILERS state before calling this function,
2187 * which implies that all non-trailers data have already been scheduled for
2188 * forwarding, and that the difference between msg->som and msg->sov exactly
2189 * matches the length of trailers already parsed and not forwarded. It is also
2190 * important to note that this function is designed to be able to parse wrapped
2191 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002192 */
2193int http_forward_trailers(struct buffer *buf, struct http_msg *msg)
2194{
2195 /* we have buf->lr which points to next line. Look for CRLF. */
2196 while (1) {
2197 char *p1 = NULL, *p2 = NULL;
2198 char *ptr = buf->lr;
Willy Tarreau638cd022010-01-03 07:42:04 +01002199 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002200
2201 /* scan current line and stop at LF or CRLF */
2202 while (1) {
2203 if (ptr == buf->r)
2204 return 0;
2205
2206 if (*ptr == '\n') {
2207 if (!p1)
2208 p1 = ptr;
2209 p2 = ptr;
2210 break;
2211 }
2212
2213 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002214 if (p1) {
2215 msg->err_pos = ptr - buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002216 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002217 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002218 p1 = ptr;
2219 }
2220
2221 ptr++;
2222 if (ptr >= buf->data + buf->size)
2223 ptr = buf->data;
2224 }
2225
2226 /* after LF; point to beginning of next line */
2227 p2++;
2228 if (p2 >= buf->data + buf->size)
2229 p2 = buf->data;
2230
Willy Tarreau638cd022010-01-03 07:42:04 +01002231 bytes = p2 - buf->lr;
2232 if (bytes < 0)
2233 bytes += buf->size;
2234
2235 /* schedule this line for forwarding */
2236 msg->sov += bytes;
2237 if (msg->sov >= buf->size)
2238 msg->sov -= buf->size;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002239
Willy Tarreau638cd022010-01-03 07:42:04 +01002240 if (p1 == buf->lr) {
2241 /* LF/CRLF at beginning of line => end of trailers at p2.
2242 * Everything was scheduled for forwarding, there's nothing
2243 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002244 */
Willy Tarreau638cd022010-01-03 07:42:04 +01002245 buf->lr = p2;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002246 msg->msg_state = HTTP_MSG_DONE;
2247 return 1;
2248 }
2249 /* OK, next line then */
2250 buf->lr = p2;
2251 }
2252}
2253
2254/* This function may be called only in HTTP_MSG_DATA_CRLF. It reads the CRLF or
2255 * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov,
2256 * ->som, buf->lr in order to include this part into the next forwarding phase.
2257 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2258 * not enough data are available, the function does not change anything and
2259 * returns zero. If a parse error is encountered, the function returns < 0 and
2260 * does not change anything. Note: this function is designed to parse wrapped
2261 * CRLF at the end of the buffer.
2262 */
2263int http_skip_chunk_crlf(struct buffer *buf, struct http_msg *msg)
2264{
2265 char *ptr;
2266 int bytes;
2267
2268 /* NB: we'll check data availabilty at the end. It's not a
2269 * problem because whatever we match first will be checked
2270 * against the correct length.
2271 */
2272 bytes = 1;
2273 ptr = buf->lr;
2274 if (*ptr == '\r') {
2275 bytes++;
2276 ptr++;
2277 if (ptr >= buf->data + buf->size)
2278 ptr = buf->data;
2279 }
2280
Willy Tarreaubf3f1de2010-03-17 15:54:24 +01002281 if (bytes > buf->l - buf->send_max)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002282 return 0;
2283
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002284 if (*ptr != '\n') {
2285 msg->err_pos = ptr - buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002286 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002287 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002288
2289 ptr++;
2290 if (ptr >= buf->data + buf->size)
2291 ptr = buf->data;
2292 buf->lr = ptr;
2293 /* prepare the CRLF to be forwarded. msg->som may be before data but we don't care */
2294 msg->sov = ptr - buf->data;
2295 msg->som = msg->sov - bytes;
2296 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2297 return 1;
2298}
Willy Tarreau5b154472009-12-21 20:11:07 +01002299
Willy Tarreau83e3af02009-12-28 17:39:57 +01002300void http_buffer_heavy_realign(struct buffer *buf, struct http_msg *msg)
2301{
2302 char *end = buf->data + buf->size;
2303 int off = buf->data + buf->size - buf->w;
2304
2305 /* two possible cases :
2306 * - the buffer is in one contiguous block, we move it in-place
Willy Tarreau8096de92010-02-26 11:12:27 +01002307 * - the buffer is in two blocks, we move it via the swap_buffer
Willy Tarreau83e3af02009-12-28 17:39:57 +01002308 */
2309 if (buf->l) {
Willy Tarreau8096de92010-02-26 11:12:27 +01002310 int block1 = buf->l;
2311 int block2 = 0;
2312 if (buf->r <= buf->w) {
Willy Tarreau83e3af02009-12-28 17:39:57 +01002313 /* non-contiguous block */
Willy Tarreau8096de92010-02-26 11:12:27 +01002314 block1 = buf->data + buf->size - buf->w;
2315 block2 = buf->r - buf->data;
2316 }
2317 if (block2)
2318 memcpy(swap_buffer, buf->data, block2);
2319 memmove(buf->data, buf->w, block1);
2320 if (block2)
2321 memcpy(buf->data + block1, swap_buffer, block2);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002322 }
2323
2324 /* adjust all known pointers */
2325 buf->w = buf->data;
2326 buf->lr += off; if (buf->lr >= end) buf->lr -= buf->size;
2327 buf->r += off; if (buf->r >= end) buf->r -= buf->size;
2328 msg->sol += off; if (msg->sol >= end) msg->sol -= buf->size;
2329 msg->eol += off; if (msg->eol >= end) msg->eol -= buf->size;
2330
2331 /* adjust relative pointers */
2332 msg->som = 0;
2333 msg->eoh += off; if (msg->eoh >= buf->size) msg->eoh -= buf->size;
2334 msg->col += off; if (msg->col >= buf->size) msg->col -= buf->size;
2335 msg->sov += off; if (msg->sov >= buf->size) msg->sov -= buf->size;
2336
Willy Tarreau83e3af02009-12-28 17:39:57 +01002337 if (msg->err_pos >= 0) {
2338 msg->err_pos += off;
2339 if (msg->err_pos >= buf->size)
2340 msg->err_pos -= buf->size;
2341 }
2342
2343 buf->flags &= ~BF_FULL;
2344 if (buf->l >= buffer_max_len(buf))
2345 buf->flags |= BF_FULL;
2346}
2347
Willy Tarreaud787e662009-07-07 10:14:51 +02002348/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2349 * processing can continue on next analysers, or zero if it either needs more
2350 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2351 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2352 * when it has nothing left to do, and may remove any analyser when it wants to
2353 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002354 */
Willy Tarreau3a816292009-07-07 10:55:49 +02002355int http_wait_for_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002356{
Willy Tarreau59234e92008-11-30 23:51:27 +01002357 /*
2358 * We will parse the partial (or complete) lines.
2359 * We will check the request syntax, and also join multi-line
2360 * headers. An index of all the lines will be elaborated while
2361 * parsing.
2362 *
2363 * For the parsing, we use a 28 states FSM.
2364 *
2365 * Here is the information we currently have :
Willy Tarreauf073a832009-03-01 23:21:47 +01002366 * req->data + msg->som = beginning of request
Willy Tarreau83e3af02009-12-28 17:39:57 +01002367 * req->data + msg->eoh = end of processed headers / start of current one
2368 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreau59234e92008-11-30 23:51:27 +01002369 * req->lr = first non-visited byte
2370 * req->r = end of data
Willy Tarreaud787e662009-07-07 10:14:51 +02002371 *
2372 * At end of parsing, we may perform a capture of the error (if any), and
2373 * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE).
2374 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2375 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002376 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002377
Willy Tarreau59234e92008-11-30 23:51:27 +01002378 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002379 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002380 struct http_txn *txn = &s->txn;
2381 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002382 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002383
Willy Tarreau6bf17362009-02-24 10:48:35 +01002384 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
2385 now_ms, __FUNCTION__,
2386 s,
2387 req,
2388 req->rex, req->wex,
2389 req->flags,
2390 req->l,
2391 req->analysers);
2392
Willy Tarreau52a0c602009-08-16 22:45:38 +02002393 /* we're speaking HTTP here, so let's speak HTTP to the client */
2394 s->srv_error = http_return_srv_error;
2395
Willy Tarreau83e3af02009-12-28 17:39:57 +01002396 /* There's a protected area at the end of the buffer for rewriting
2397 * purposes. We don't want to start to parse the request if the
2398 * protected area is affected, because we may have to move processed
2399 * data later, which is much more complicated.
2400 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002401 if (req->l && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau065e8332010-01-08 00:30:20 +01002402 if ((txn->flags & TX_NOT_FIRST) &&
2403 unlikely((req->flags & BF_FULL) ||
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002404 req->r < req->lr ||
2405 req->r > req->data + req->size - global.tune.maxrewrite)) {
2406 if (req->send_max) {
Willy Tarreau64648412010-03-05 10:41:54 +01002407 if (req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
2408 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002409 /* some data has still not left the buffer, wake us once that's done */
2410 buffer_dont_connect(req);
2411 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
2412 return 0;
2413 }
Willy Tarreau0499e352010-12-17 07:13:42 +01002414 if (req->r < req->lr || req->r > req->data + req->size - global.tune.maxrewrite)
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002415 http_buffer_heavy_realign(req, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002416 }
2417
Willy Tarreau065e8332010-01-08 00:30:20 +01002418 /* Note that we have the same problem with the response ; we
2419 * may want to send a redirect, error or anything which requires
2420 * some spare space. So we'll ensure that we have at least
2421 * maxrewrite bytes available in the response buffer before
2422 * processing that one. This will only affect pipelined
2423 * keep-alive requests.
2424 */
2425 if ((txn->flags & TX_NOT_FIRST) &&
2426 unlikely((s->rep->flags & BF_FULL) ||
2427 s->rep->r < s->rep->lr ||
2428 s->rep->r > s->rep->data + s->rep->size - global.tune.maxrewrite)) {
2429 if (s->rep->send_max) {
Willy Tarreau64648412010-03-05 10:41:54 +01002430 if (s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
2431 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002432 /* don't let a connection request be initiated */
2433 buffer_dont_connect(req);
Willy Tarreauff7b5882010-01-22 14:41:29 +01002434 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau0499e352010-12-17 07:13:42 +01002435 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002436 return 0;
2437 }
2438 }
2439
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002440 if (likely(req->lr < req->r))
2441 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002442 }
2443
Willy Tarreau59234e92008-11-30 23:51:27 +01002444 /* 1: we might have to print this header in debug mode */
2445 if (unlikely((global.mode & MODE_DEBUG) &&
2446 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreauc3bfeeb2010-04-16 09:14:45 +02002447 msg->sol &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002448 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002449 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002450
Willy Tarreau663308b2010-06-07 14:06:08 +02002451 sol = req->data + msg->som;
Willy Tarreau59234e92008-11-30 23:51:27 +01002452 eol = sol + msg->sl.rq.l;
2453 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002454
Willy Tarreau59234e92008-11-30 23:51:27 +01002455 sol += hdr_idx_first_pos(&txn->hdr_idx);
2456 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002457
Willy Tarreau59234e92008-11-30 23:51:27 +01002458 while (cur_idx) {
2459 eol = sol + txn->hdr_idx.v[cur_idx].len;
2460 debug_hdr("clihdr", s, sol, eol);
2461 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2462 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002463 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002464 }
2465
Willy Tarreau58f10d72006-12-04 02:26:12 +01002466
Willy Tarreau59234e92008-11-30 23:51:27 +01002467 /*
2468 * Now we quickly check if we have found a full valid request.
2469 * If not so, we check the FD and buffer states before leaving.
2470 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002471 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002472 * requests are checked first. When waiting for a second request
2473 * on a keep-alive session, if we encounter and error, close, t/o,
2474 * we note the error in the session flags but don't set any state.
2475 * Since the error will be noted there, it will not be counted by
2476 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002477 * Last, we may increase some tracked counters' http request errors on
2478 * the cases that are deliberately the client's fault. For instance,
2479 * a timeout or connection reset is not counted as an error. However
2480 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002481 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002482
Willy Tarreau655dce92009-11-08 13:10:58 +01002483 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002484 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002485 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002486 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002487 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002488 session_inc_http_req_ctr(s);
2489 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002490 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002491 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002492 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002493
Willy Tarreau59234e92008-11-30 23:51:27 +01002494 /* 1: Since we are in header mode, if there's no space
2495 * left for headers, we won't be able to free more
2496 * later, so the session will never terminate. We
2497 * must terminate it now.
2498 */
2499 if (unlikely(req->flags & BF_FULL)) {
2500 /* FIXME: check if URI is set and return Status
2501 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002502 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002503 session_inc_http_req_ctr(s);
2504 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002505 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002506 goto return_bad_req;
2507 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002508
Willy Tarreau59234e92008-11-30 23:51:27 +01002509 /* 2: have we encountered a read error ? */
2510 else if (req->flags & BF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002511 if (!(s->flags & SN_ERR_MASK))
2512 s->flags |= SN_ERR_CLICL;
2513
Willy Tarreaufcffa692010-01-10 14:21:19 +01002514 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002515 goto failed_keep_alive;
2516
Willy Tarreau59234e92008-11-30 23:51:27 +01002517 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002518 if (msg->err_pos >= 0) {
Willy Tarreau078272e2010-12-12 12:46:33 +01002519 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002520 session_inc_http_err_ctr(s);
2521 }
2522
Willy Tarreau59234e92008-11-30 23:51:27 +01002523 msg->msg_state = HTTP_MSG_ERROR;
2524 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002525
Willy Tarreauda7ff642010-06-23 11:44:09 +02002526 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002527 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002528 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002529 if (s->listener->counters)
2530 s->listener->counters->failed_req++;
2531
Willy Tarreau59234e92008-11-30 23:51:27 +01002532 if (!(s->flags & SN_FINST_MASK))
2533 s->flags |= SN_FINST_R;
2534 return 0;
2535 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002536
Willy Tarreau59234e92008-11-30 23:51:27 +01002537 /* 3: has the read timeout expired ? */
2538 else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002539 if (!(s->flags & SN_ERR_MASK))
2540 s->flags |= SN_ERR_CLITO;
2541
Willy Tarreaufcffa692010-01-10 14:21:19 +01002542 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002543 goto failed_keep_alive;
2544
Willy Tarreau59234e92008-11-30 23:51:27 +01002545 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002546 if (msg->err_pos >= 0) {
Willy Tarreau078272e2010-12-12 12:46:33 +01002547 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002548 session_inc_http_err_ctr(s);
2549 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002550 txn->status = 408;
2551 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
2552 msg->msg_state = HTTP_MSG_ERROR;
2553 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002554
Willy Tarreauda7ff642010-06-23 11:44:09 +02002555 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002556 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002557 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002558 if (s->listener->counters)
2559 s->listener->counters->failed_req++;
2560
Willy Tarreau59234e92008-11-30 23:51:27 +01002561 if (!(s->flags & SN_FINST_MASK))
2562 s->flags |= SN_FINST_R;
2563 return 0;
2564 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002565
Willy Tarreau59234e92008-11-30 23:51:27 +01002566 /* 4: have we encountered a close ? */
2567 else if (req->flags & BF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002568 if (!(s->flags & SN_ERR_MASK))
2569 s->flags |= SN_ERR_CLICL;
2570
Willy Tarreaufcffa692010-01-10 14:21:19 +01002571 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002572 goto failed_keep_alive;
2573
Willy Tarreau4076a152009-04-02 15:18:36 +02002574 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01002575 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002576 txn->status = 400;
2577 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
2578 msg->msg_state = HTTP_MSG_ERROR;
2579 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002580
Willy Tarreauda7ff642010-06-23 11:44:09 +02002581 session_inc_http_err_ctr(s);
2582 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002583 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002584 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002585 if (s->listener->counters)
2586 s->listener->counters->failed_req++;
2587
Willy Tarreau59234e92008-11-30 23:51:27 +01002588 if (!(s->flags & SN_FINST_MASK))
2589 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002590 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002591 }
2592
Willy Tarreau520d95e2009-09-19 21:04:57 +02002593 buffer_dont_connect(req);
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002594 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreauff7b5882010-01-22 14:41:29 +01002595 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002596
Willy Tarreaufcffa692010-01-10 14:21:19 +01002597 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2598 /* If the client starts to talk, let's fall back to
2599 * request timeout processing.
2600 */
2601 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002602 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002603 }
2604
Willy Tarreau59234e92008-11-30 23:51:27 +01002605 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002606 if (!tick_isset(req->analyse_exp)) {
2607 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2608 (txn->flags & TX_WAIT_NEXT_RQ) &&
2609 tick_isset(s->be->timeout.httpka))
2610 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2611 else
2612 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2613 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002614
Willy Tarreau59234e92008-11-30 23:51:27 +01002615 /* we're not ready yet */
2616 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002617
2618 failed_keep_alive:
2619 /* Here we process low-level errors for keep-alive requests. In
2620 * short, if the request is not the first one and it experiences
2621 * a timeout, read error or shutdown, we just silently close so
2622 * that the client can try again.
2623 */
2624 txn->status = 0;
2625 msg->msg_state = HTTP_MSG_RQBEFORE;
2626 req->analysers = 0;
2627 s->logs.logwait = 0;
Willy Tarreauff7b5882010-01-22 14:41:29 +01002628 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002629 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002630 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002631 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002632
Willy Tarreaud787e662009-07-07 10:14:51 +02002633 /* OK now we have a complete HTTP request with indexed headers. Let's
2634 * complete the request parsing by setting a few fields we will need
Willy Tarreaufa355d42009-11-29 18:12:29 +01002635 * later. At this point, we have the last CRLF at req->data + msg->eoh.
2636 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
2637 * points to the CRLF of the request line. req->lr points to the first
2638 * byte after the last LF. msg->col and msg->sov point to the first
2639 * byte of data. msg->eol cannot be trusted because it may have been
2640 * left uninitialized (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002641 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002642
Willy Tarreauda7ff642010-06-23 11:44:09 +02002643 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002644 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2645
Willy Tarreaub16a5742010-01-10 14:46:16 +01002646 if (txn->flags & TX_WAIT_NEXT_RQ) {
2647 /* kill the pending keep-alive timeout */
2648 txn->flags &= ~TX_WAIT_NEXT_RQ;
2649 req->analyse_exp = TICK_ETERNITY;
2650 }
2651
2652
Willy Tarreaud787e662009-07-07 10:14:51 +02002653 /* Maybe we found in invalid header name while we were configured not
2654 * to block on that, so we have to capture it now.
2655 */
2656 if (unlikely(msg->err_pos >= 0))
Willy Tarreau078272e2010-12-12 12:46:33 +01002657 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002658
Willy Tarreau59234e92008-11-30 23:51:27 +01002659 /*
2660 * 1: identify the method
2661 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01002662 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002663
2664 /* we can make use of server redirect on GET and HEAD */
2665 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2666 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002667
Willy Tarreau59234e92008-11-30 23:51:27 +01002668 /*
2669 * 2: check if the URI matches the monitor_uri.
2670 * We have to do this for every request which gets in, because
2671 * the monitor-uri is defined by the frontend.
2672 */
2673 if (unlikely((s->fe->monitor_uri_len != 0) &&
2674 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002675 !memcmp(msg->sol + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002676 s->fe->monitor_uri,
2677 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002678 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002679 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002680 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002681 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002682
Willy Tarreau59234e92008-11-30 23:51:27 +01002683 s->flags |= SN_MONITOR;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002684
Willy Tarreau59234e92008-11-30 23:51:27 +01002685 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002686 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
2687 int ret = acl_exec_cond(cond, s->fe, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002688
Willy Tarreau59234e92008-11-30 23:51:27 +01002689 ret = acl_pass(ret);
2690 if (cond->pol == ACL_COND_UNLESS)
2691 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002692
Willy Tarreau59234e92008-11-30 23:51:27 +01002693 if (ret) {
2694 /* we fail this request, let's return 503 service unavail */
2695 txn->status = 503;
2696 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503));
2697 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002698 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002699 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002700
Willy Tarreau59234e92008-11-30 23:51:27 +01002701 /* nothing to fail, let's reply normaly */
2702 txn->status = 200;
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002703 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_200));
Willy Tarreau59234e92008-11-30 23:51:27 +01002704 goto return_prx_cond;
2705 }
2706
2707 /*
2708 * 3: Maybe we have to copy the original REQURI for the logs ?
2709 * Note: we cannot log anymore if the request has been
2710 * classified as invalid.
2711 */
2712 if (unlikely(s->logs.logwait & LW_REQ)) {
2713 /* we have a complete HTTP request that we must log */
2714 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2715 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002716
Willy Tarreau59234e92008-11-30 23:51:27 +01002717 if (urilen >= REQURI_LEN)
2718 urilen = REQURI_LEN - 1;
2719 memcpy(txn->uri, &req->data[msg->som], urilen);
2720 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002721
Willy Tarreau59234e92008-11-30 23:51:27 +01002722 if (!(s->logs.logwait &= ~LW_REQ))
2723 s->do_log(s);
2724 } else {
2725 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002726 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002727 }
Willy Tarreau06619262006-12-17 08:37:22 +01002728
Willy Tarreau59234e92008-11-30 23:51:27 +01002729 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002730 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn))
2731 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002732
Willy Tarreau5b154472009-12-21 20:11:07 +01002733 /* ... and check if the request is HTTP/1.1 or above */
2734 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002735 ((msg->sol[msg->sl.rq.v + 5] > '1') ||
2736 ((msg->sol[msg->sl.rq.v + 5] == '1') &&
2737 (msg->sol[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01002738 txn->flags |= TX_REQ_VER_11;
2739
2740 /* "connection" has not been parsed yet */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002741 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL);
Willy Tarreau5b154472009-12-21 20:11:07 +01002742
Willy Tarreau88d349d2010-01-25 12:15:43 +01002743 /* if the frontend has "option http-use-proxy-header", we'll check if
2744 * we have what looks like a proxied connection instead of a connection,
2745 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2746 * Note that this is *not* RFC-compliant, however browsers and proxies
2747 * happen to do that despite being non-standard :-(
2748 * We consider that a request not beginning with either '/' or '*' is
2749 * a proxied connection, which covers both "scheme://location" and
2750 * CONNECT ip:port.
2751 */
2752 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
2753 msg->sol[msg->sl.rq.u] != '/' && msg->sol[msg->sl.rq.u] != '*')
2754 txn->flags |= TX_USE_PX_CONN;
2755
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002756 /* transfer length unknown*/
2757 txn->flags &= ~TX_REQ_XFER_LEN;
2758
Willy Tarreau59234e92008-11-30 23:51:27 +01002759 /* 5: we may need to capture headers */
2760 if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01002761 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002762 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002763
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002764 /* 6: determine the transfer-length.
2765 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2766 * the presence of a message-body in a REQUEST and its transfer length
2767 * must be determined that way (in order of precedence) :
2768 * 1. The presence of a message-body in a request is signaled by the
2769 * inclusion of a Content-Length or Transfer-Encoding header field
2770 * in the request's header fields. When a request message contains
2771 * both a message-body of non-zero length and a method that does
2772 * not define any semantics for that request message-body, then an
2773 * origin server SHOULD either ignore the message-body or respond
2774 * with an appropriate error message (e.g., 413). A proxy or
2775 * gateway, when presented the same request, SHOULD either forward
2776 * the request inbound with the message- body or ignore the
2777 * message-body when determining a response.
2778 *
2779 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2780 * and the "chunked" transfer-coding (Section 6.2) is used, the
2781 * transfer-length is defined by the use of this transfer-coding.
2782 * If a Transfer-Encoding header field is present and the "chunked"
2783 * transfer-coding is not present, the transfer-length is defined
2784 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002785 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002786 * 3. If a Content-Length header field is present, its decimal value in
2787 * OCTETs represents both the entity-length and the transfer-length.
2788 * If a message is received with both a Transfer-Encoding header
2789 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002790 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002791 * 4. By the server closing the connection. (Closing the connection
2792 * cannot be used to indicate the end of a request body, since that
2793 * would leave no possibility for the server to send back a response.)
2794 *
2795 * Whenever a transfer-coding is applied to a message-body, the set of
2796 * transfer-codings MUST include "chunked", unless the message indicates
2797 * it is terminated by closing the connection. When the "chunked"
2798 * transfer-coding is used, it MUST be the last transfer-coding applied
2799 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002800 */
2801
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002802 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002803 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002804 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01002805 while ((txn->flags & TX_REQ_VER_11) &&
2806 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002807 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
2808 txn->flags |= (TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2809 else if (txn->flags & TX_REQ_TE_CHNK) {
2810 /* bad transfer-encoding (chunked followed by something else) */
2811 use_close_only = 1;
2812 txn->flags &= ~(TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2813 break;
2814 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002815 }
2816
Willy Tarreau32b47f42009-10-18 20:55:02 +02002817 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002818 while (!(txn->flags & TX_REQ_TE_CHNK) && !use_close_only &&
Willy Tarreau32b47f42009-10-18 20:55:02 +02002819 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
2820 signed long long cl;
2821
2822 if (!ctx.vlen)
2823 goto return_bad_req;
2824
2825 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl))
2826 goto return_bad_req; /* parse failure */
2827
2828 if (cl < 0)
2829 goto return_bad_req;
2830
Willy Tarreau124d9912011-03-01 20:30:48 +01002831 if ((txn->flags & TX_REQ_CNT_LEN) && (msg->chunk_len != cl))
Willy Tarreau32b47f42009-10-18 20:55:02 +02002832 goto return_bad_req; /* already specified, was different */
2833
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002834 txn->flags |= TX_REQ_CNT_LEN | TX_REQ_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002835 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002836 }
2837
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002838 /* bodyless requests have a known length */
2839 if (!use_close_only)
2840 txn->flags |= TX_REQ_XFER_LEN;
2841
Willy Tarreaud787e662009-07-07 10:14:51 +02002842 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002843 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002844 req->analyse_exp = TICK_ETERNITY;
2845 return 1;
2846
2847 return_bad_req:
2848 /* We centralize bad requests processing here */
2849 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2850 /* we detected a parsing error. We want to archive this request
2851 * in the dedicated proxy area for later troubleshooting.
2852 */
Willy Tarreau078272e2010-12-12 12:46:33 +01002853 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002854 }
2855
2856 txn->req.msg_state = HTTP_MSG_ERROR;
2857 txn->status = 400;
2858 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002859
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002860 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002861 if (s->listener->counters)
2862 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002863
2864 return_prx_cond:
2865 if (!(s->flags & SN_ERR_MASK))
2866 s->flags |= SN_ERR_PRXCOND;
2867 if (!(s->flags & SN_FINST_MASK))
2868 s->flags |= SN_FINST_R;
2869
2870 req->analysers = 0;
2871 req->analyse_exp = TICK_ETERNITY;
2872 return 0;
2873}
2874
Cyril Bonté70be45d2010-10-12 00:14:35 +02002875/* We reached the stats page through a POST request.
2876 * Parse the posted data and enable/disable servers if necessary.
Cyril Bonté23b39d92011-02-10 22:54:44 +01002877 * Returns 1 if request was parsed or zero if it needs more data.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002878 */
Willy Tarreau295a8372011-03-10 11:25:07 +01002879int http_process_req_stat_post(struct stream_interface *si, struct http_txn *txn, struct buffer *req)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002880{
Cyril Bonté70be45d2010-10-12 00:14:35 +02002881 struct proxy *px;
2882 struct server *sv;
2883
2884 char *backend = NULL;
2885 int action = 0;
2886
2887 char *first_param, *cur_param, *next_param, *end_params;
2888
2889 first_param = req->data + txn->req.eoh + 2;
Willy Tarreau124d9912011-03-01 20:30:48 +01002890 end_params = first_param + txn->req.body_len;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002891
2892 cur_param = next_param = end_params;
2893
Cyril Bonté23b39d92011-02-10 22:54:44 +01002894 if (end_params >= req->data + req->size - global.tune.maxrewrite) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002895 /* Prevent buffer overflow */
Willy Tarreau295a8372011-03-10 11:25:07 +01002896 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002897 return 1;
2898 }
2899 else if (end_params > req->data + req->l) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01002900 /* we need more data */
Willy Tarreau295a8372011-03-10 11:25:07 +01002901 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté23b39d92011-02-10 22:54:44 +01002902 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002903 }
2904
2905 *end_params = '\0';
2906
Willy Tarreau295a8372011-03-10 11:25:07 +01002907 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002908
2909 /*
2910 * Parse the parameters in reverse order to only store the last value.
2911 * From the html form, the backend and the action are at the end.
2912 */
2913 while (cur_param > first_param) {
2914 char *key, *value;
2915
2916 cur_param--;
2917 if ((*cur_param == '&') || (cur_param == first_param)) {
2918 /* Parse the key */
2919 key = cur_param;
2920 if (cur_param != first_param) {
2921 /* delimit the string for the next loop */
2922 *key++ = '\0';
2923 }
2924
2925 /* Parse the value */
2926 value = key;
2927 while (*value != '\0' && *value != '=') {
2928 value++;
2929 }
2930 if (*value == '=') {
2931 /* Ok, a value is found, we can mark the end of the key */
2932 *value++ = '\0';
2933 }
2934
2935 /* Now we can check the key to see what to do */
2936 if (!backend && strcmp(key, "b") == 0) {
2937 backend = value;
2938 }
2939 else if (!action && strcmp(key, "action") == 0) {
2940 if (strcmp(value, "disable") == 0) {
2941 action = 1;
2942 }
2943 else if (strcmp(value, "enable") == 0) {
2944 action = 2;
2945 } else {
2946 /* unknown action, no need to continue */
2947 break;
2948 }
2949 }
2950 else if (strcmp(key, "s") == 0) {
2951 if (backend && action && get_backend_server(backend, value, &px, &sv)) {
2952 switch (action) {
2953 case 1:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002954 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002955 /* Not already in maintenance, we can change the server state */
2956 sv->state |= SRV_MAINTAIN;
2957 set_server_down(sv);
Willy Tarreau295a8372011-03-10 11:25:07 +01002958 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002959 }
2960 break;
2961 case 2:
Cyril Bonté1e2a1702011-03-03 21:05:17 +01002962 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Cyril Bonté70be45d2010-10-12 00:14:35 +02002963 /* Already in maintenance, we can change the server state */
2964 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02002965 sv->health = sv->rise; /* up, but will fall down at first failure */
Willy Tarreau295a8372011-03-10 11:25:07 +01002966 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002967 }
2968 break;
2969 }
2970 }
2971 }
2972 next_param = cur_param;
2973 }
2974 }
Cyril Bonté23b39d92011-02-10 22:54:44 +01002975 return 1;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002976}
2977
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002978/* returns a pointer to the first rule which forbids access (deny or http_auth),
2979 * or NULL if everything's OK.
2980 */
Willy Tarreauff011f22011-01-06 17:51:27 +01002981static inline struct http_req_rule *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002982http_check_access_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
2983{
Willy Tarreauff011f22011-01-06 17:51:27 +01002984 struct http_req_rule *rule;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002985
Willy Tarreauff011f22011-01-06 17:51:27 +01002986 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002987 int ret = 1;
2988
Willy Tarreauff011f22011-01-06 17:51:27 +01002989 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002990 continue;
2991
2992 /* check condition, but only if attached */
Willy Tarreauff011f22011-01-06 17:51:27 +01002993 if (rule->cond) {
2994 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002995 ret = acl_pass(ret);
2996
Willy Tarreauff011f22011-01-06 17:51:27 +01002997 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002998 ret = !ret;
2999 }
3000
3001 if (ret) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003002 if (rule->action == HTTP_REQ_ACT_ALLOW)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003003 return NULL; /* no problem */
3004 else
Willy Tarreauff011f22011-01-06 17:51:27 +01003005 return rule; /* most likely a deny or auth rule */
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003006 }
3007 }
3008 return NULL;
3009}
3010
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003011/* This stream analyser runs all HTTP request processing which is common to
3012 * frontends and backends, which means blocking ACLs, filters, connection-close,
3013 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003014 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003015 * either needs more data or wants to immediately abort the request (eg: deny,
3016 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003017 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003018int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003019{
Willy Tarreaud787e662009-07-07 10:14:51 +02003020 struct http_txn *txn = &s->txn;
3021 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003022 struct acl_cond *cond;
Willy Tarreauff011f22011-01-06 17:51:27 +01003023 struct http_req_rule *http_req_last_rule = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003024 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003025 struct cond_wordlist *wl;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003026 int del_ka, del_cl, do_stats;
Willy Tarreaud787e662009-07-07 10:14:51 +02003027
Willy Tarreau655dce92009-11-08 13:10:58 +01003028 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003029 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003030 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003031 return 0;
3032 }
3033
Willy Tarreau3a816292009-07-07 10:55:49 +02003034 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003035 req->analyse_exp = TICK_ETERNITY;
3036
3037 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3038 now_ms, __FUNCTION__,
3039 s,
3040 req,
3041 req->rex, req->wex,
3042 req->flags,
3043 req->l,
3044 req->analysers);
3045
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003046 /* first check whether we have some ACLs set to block this request */
3047 list_for_each_entry(cond, &px->block_cond, list) {
3048 int ret = acl_exec_cond(cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02003049
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003050 ret = acl_pass(ret);
3051 if (cond->pol == ACL_COND_UNLESS)
3052 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01003053
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003054 if (ret) {
3055 txn->status = 403;
3056 /* let's log the request time */
3057 s->logs.tv_request = now;
3058 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003059 session_inc_http_err_ctr(s);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003060 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01003061 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003062 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003063
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003064 /* evaluate http-request rules */
Willy Tarreauff011f22011-01-06 17:51:27 +01003065 http_req_last_rule = http_check_access_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003066
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003067 /* evaluate stats http-request rules only if http-request is OK */
Willy Tarreauff011f22011-01-06 17:51:27 +01003068 if (!http_req_last_rule) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003069 do_stats = stats_check_uri(s->rep->prod, txn, px);
3070 if (do_stats)
Willy Tarreauff011f22011-01-06 17:51:27 +01003071 http_req_last_rule = http_check_access_rule(px, &px->uri_auth->http_req_rules, s, txn);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003072 }
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003073 else
3074 do_stats = 0;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003075
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003076 /* return a 403 if either rule has blocked */
Willy Tarreauff011f22011-01-06 17:51:27 +01003077 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_DENY) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003078 txn->status = 403;
3079 s->logs.tv_request = now;
3080 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003081 session_inc_http_err_ctr(s);
Willy Tarreau6da0f6d2011-01-06 18:19:50 +01003082 s->fe->fe_counters.denied_req++;
3083 if (an_bit == AN_REQ_HTTP_PROCESS_BE)
3084 s->be->be_counters.denied_req++;
3085 if (s->listener->counters)
3086 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003087 goto return_prx_cond;
3088 }
3089
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003090 /* try headers filters */
3091 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003092 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003093 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003094
Willy Tarreau59234e92008-11-30 23:51:27 +01003095 /* has the request been denied ? */
3096 if (txn->flags & TX_CLDENY) {
3097 /* no need to go further */
3098 txn->status = 403;
3099 /* let's log the request time */
3100 s->logs.tv_request = now;
3101 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
Willy Tarreauda7ff642010-06-23 11:44:09 +02003102 session_inc_http_err_ctr(s);
Willy Tarreau59234e92008-11-30 23:51:27 +01003103 goto return_prx_cond;
3104 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02003105
3106 /* When a connection is tarpitted, we use the tarpit timeout,
3107 * which may be the same as the connect timeout if unspecified.
3108 * If unset, then set it to zero because we really want it to
3109 * eventually expire. We build the tarpit as an analyser.
3110 */
3111 if (txn->flags & TX_CLTARPIT) {
3112 buffer_erase(s->req);
3113 /* wipe the request out so that we can drop the connection early
3114 * if the client closes first.
3115 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003116 buffer_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003117 req->analysers = 0; /* remove switching rules etc... */
3118 req->analysers |= AN_REQ_HTTP_TARPIT;
3119 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
3120 if (!req->analyse_exp)
3121 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003122 session_inc_http_err_ctr(s);
Willy Tarreauc465fd72009-08-31 00:17:18 +02003123 return 1;
3124 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003125 }
Willy Tarreau06619262006-12-17 08:37:22 +01003126
Willy Tarreau5b154472009-12-21 20:11:07 +01003127 /* Until set to anything else, the connection mode is set as TUNNEL. It will
3128 * only change if both the request and the config reference something else.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003129 * Option httpclose by itself does not set a mode, it remains a tunnel mode
3130 * in which headers are mangled. However, if another mode is set, it will
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003131 * affect it (eg: server-close/keep-alive + httpclose = close). Note that we
3132 * avoid to redo the same work if FE and BE have the same settings (common).
3133 * The method consists in checking if options changed between the two calls
3134 * (implying that either one is non-null, or one of them is non-null and we
3135 * are there for the first time.
Willy Tarreau42736642009-10-18 21:04:35 +02003136 */
Willy Tarreau5b154472009-12-21 20:11:07 +01003137
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003138 del_cl = del_ka = 0;
3139
Willy Tarreaudc008c52010-02-01 16:20:08 +01003140 if ((!(txn->flags & TX_HDR_CONN_PRS) &&
3141 (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) ||
3142 ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) !=
3143 (s->be->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)))) {
Willy Tarreau5b154472009-12-21 20:11:07 +01003144 int tmp = TX_CON_WANT_TUN;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003145
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003146 if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE ||
3147 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreau5b154472009-12-21 20:11:07 +01003148 tmp = TX_CON_WANT_KAL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01003149 if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO)
3150 tmp = TX_CON_WANT_SCL;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003151 if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO)
Willy Tarreau5b154472009-12-21 20:11:07 +01003152 tmp = TX_CON_WANT_CLO;
3153
Willy Tarreau5b154472009-12-21 20:11:07 +01003154 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
3155 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003156
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003157 if (!(txn->flags & TX_HDR_CONN_PRS)) {
3158 /* parse the Connection header and possibly clean it */
3159 int to_del = 0;
3160 if ((txn->flags & TX_REQ_VER_11) ||
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003161 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
3162 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003163 to_del |= 2; /* remove "keep-alive" */
3164 if (!(txn->flags & TX_REQ_VER_11))
3165 to_del |= 1; /* remove "close" */
3166 http_parse_connection_header(txn, msg, req, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003167 }
Willy Tarreau5b154472009-12-21 20:11:07 +01003168
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003169 /* check if client or config asks for explicit close in KAL/SCL */
3170 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
3171 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
3172 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
3173 (txn->flags & (TX_REQ_VER_11|TX_HDR_CONN_KAL)) == 0 || /* no "connection: k-a" in 1.0 */
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003174 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose+any = forceclose */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01003175 !(txn->flags & TX_REQ_XFER_LEN) || /* no length known => close */
3176 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003177 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
3178 }
Willy Tarreau78599912009-10-17 20:12:21 +02003179
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003180 /* we can be blocked here because the request needs to be authenticated,
3181 * either to pass or to access stats.
3182 */
Willy Tarreauff011f22011-01-06 17:51:27 +01003183 if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_HTTP_AUTH) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003184 struct chunk msg;
Willy Tarreauff011f22011-01-06 17:51:27 +01003185 char *realm = http_req_last_rule->http_auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003186
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003187 if (!realm)
3188 realm = do_stats?STATS_DEFAULT_REALM:px->id;
3189
Willy Tarreau844a7e72010-01-31 21:46:18 +01003190 sprintf(trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003191 chunk_initlen(&msg, trash, sizeof(trash), strlen(trash));
3192 txn->status = 401;
3193 stream_int_retnclose(req->prod, &msg);
Willy Tarreauda7ff642010-06-23 11:44:09 +02003194 /* on 401 we still count one error, because normal browsing
3195 * won't significantly increase the counter but brute force
3196 * attempts will.
3197 */
3198 session_inc_http_err_ctr(s);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003199 goto return_prx_cond;
3200 }
3201
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003202 /* add request headers from the rule sets in the same order */
3203 list_for_each_entry(wl, &px->req_add, list) {
3204 if (wl->cond) {
3205 int ret = acl_exec_cond(wl->cond, px, s, txn, ACL_DIR_REQ);
3206 ret = acl_pass(ret);
3207 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3208 ret = !ret;
3209 if (!ret)
3210 continue;
3211 }
3212
3213 if (unlikely(http_header_add_tail(req, &txn->req, &txn->hdr_idx, wl->s) < 0))
3214 goto return_bad_req;
3215 }
3216
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003217 if (do_stats) {
Cyril Bonté474be412010-10-12 00:14:36 +02003218 struct stats_admin_rule *stats_admin_rule;
3219
3220 /* We need to provide stats for this request.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003221 * FIXME!!! that one is rather dangerous, we want to
3222 * make it follow standard rules (eg: clear req->analysers).
3223 */
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003224
Cyril Bonté474be412010-10-12 00:14:36 +02003225 /* now check whether we have some admin rules for this request */
3226 list_for_each_entry(stats_admin_rule, &s->be->uri_auth->admin_rules, list) {
3227 int ret = 1;
3228
3229 if (stats_admin_rule->cond) {
3230 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, ACL_DIR_REQ);
3231 ret = acl_pass(ret);
3232 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3233 ret = !ret;
3234 }
3235
3236 if (ret) {
3237 /* no rule, or the rule matches */
Willy Tarreau295a8372011-03-10 11:25:07 +01003238 s->rep->prod->applet.ctx.stats.flags |= STAT_ADMIN;
Cyril Bonté474be412010-10-12 00:14:36 +02003239 break;
3240 }
3241 }
3242
Cyril Bonté70be45d2010-10-12 00:14:35 +02003243 /* Was the status page requested with a POST ? */
3244 if (txn->meth == HTTP_METH_POST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003245 if (s->rep->prod->applet.ctx.stats.flags & STAT_ADMIN) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003246 if (msg->msg_state < HTTP_MSG_100_SENT) {
3247 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3248 * send an HTTP/1.1 100 Continue intermediate response.
3249 */
3250 if (txn->flags & TX_REQ_VER_11) {
3251 struct hdr_ctx ctx;
3252 ctx.idx = 0;
3253 /* Expect is allowed in 1.1, look for it */
3254 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3255 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3256 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3257 }
3258 }
3259 msg->msg_state = HTTP_MSG_100_SENT;
3260 s->logs.tv_request = now; /* update the request timer to reflect full request */
3261 }
Willy Tarreau295a8372011-03-10 11:25:07 +01003262 if (!http_process_req_stat_post(s->rep->prod, txn, req)) {
Cyril Bonté23b39d92011-02-10 22:54:44 +01003263 /* we need more data */
3264 req->analysers |= an_bit;
3265 buffer_dont_connect(req);
3266 return 0;
3267 }
Cyril Bonté474be412010-10-12 00:14:36 +02003268 } else {
Willy Tarreau295a8372011-03-10 11:25:07 +01003269 s->rep->prod->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté474be412010-10-12 00:14:36 +02003270 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02003271 }
3272
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003273 s->logs.tv_request = now;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003274 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreaub24281b2011-02-13 13:16:36 +01003275 stream_int_register_handler(s->rep->prod, &http_stats_applet);
Willy Tarreau7b7a8e92011-03-27 19:53:06 +02003276 copy_target(&s->target, &s->rep->prod->target); // for logging only
Willy Tarreaubc4af052011-02-13 13:25:14 +01003277 s->rep->prod->applet.private = s;
3278 s->rep->prod->applet.st0 = s->rep->prod->applet.st1 = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003279 req->analysers = 0;
3280
3281 return 0;
3282
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003283 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003284
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003285 /* check whether we have some ACLs set to redirect this request */
3286 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003287 int ret = ACL_PAT_PASS;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003288
Willy Tarreauf285f542010-01-03 20:03:03 +01003289 if (rule->cond) {
3290 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
3291 ret = acl_pass(ret);
3292 if (rule->cond->pol == ACL_COND_UNLESS)
3293 ret = !ret;
3294 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003295
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003296 if (ret) {
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003297 struct chunk rdr = { .str = trash, .size = sizeof(trash), .len = 0 };
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003298 const char *msg_fmt;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003299
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003300 /* build redirect message */
3301 switch(rule->code) {
3302 case 303:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003303 msg_fmt = HTTP_303;
3304 break;
3305 case 301:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003306 msg_fmt = HTTP_301;
3307 break;
3308 case 302:
3309 default:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003310 msg_fmt = HTTP_302;
3311 break;
3312 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003313
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003314 if (unlikely(!chunk_strcpy(&rdr, msg_fmt)))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003315 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003316
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003317 switch(rule->type) {
3318 case REDIRECT_TYPE_PREFIX: {
3319 const char *path;
3320 int pathlen;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003321
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003322 path = http_get_path(txn);
3323 /* build message using path */
3324 if (path) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003325 pathlen = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003326 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3327 int qs = 0;
3328 while (qs < pathlen) {
3329 if (path[qs] == '?') {
3330 pathlen = qs;
3331 break;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003332 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003333 qs++;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003334 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003335 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003336 } else {
3337 path = "/";
3338 pathlen = 1;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003339 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003340
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003341 if (rdr.len + rule->rdr_len + pathlen > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003342 goto return_bad_req;
3343
3344 /* add prefix. Note that if prefix == "/", we don't want to
3345 * add anything, otherwise it makes it hard for the user to
3346 * configure a self-redirection.
3347 */
3348 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Willy Tarreau06b917c2009-07-06 16:34:52 +02003349 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3350 rdr.len += rule->rdr_len;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003351 }
3352
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003353 /* add path */
3354 memcpy(rdr.str + rdr.len, path, pathlen);
3355 rdr.len += pathlen;
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01003356
3357 /* append a slash at the end of the location is needed and missing */
3358 if (rdr.len && rdr.str[rdr.len - 1] != '/' &&
3359 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3360 if (rdr.len > rdr.size - 5)
3361 goto return_bad_req;
3362 rdr.str[rdr.len] = '/';
3363 rdr.len++;
3364 }
3365
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003366 break;
3367 }
3368 case REDIRECT_TYPE_LOCATION:
3369 default:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003370 if (rdr.len + rule->rdr_len > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003371 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003372
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003373 /* add location */
3374 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3375 rdr.len += rule->rdr_len;
3376 break;
3377 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003378
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003379 if (rule->cookie_len) {
3380 memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14);
3381 rdr.len += 14;
3382 memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len);
3383 rdr.len += rule->cookie_len;
3384 memcpy(rdr.str + rdr.len, "\r\n", 2);
3385 rdr.len += 2;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003386 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003387
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003388 /* add end of headers and the keep-alive/close status.
3389 * We may choose to set keep-alive if the Location begins
3390 * with a slash, because the client will come back to the
3391 * same server.
3392 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003393 txn->status = rule->code;
3394 /* let's log the request time */
3395 s->logs.tv_request = now;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003396
3397 if (rule->rdr_len >= 1 && *rule->rdr_str == '/' &&
3398 (txn->flags & TX_REQ_XFER_LEN) &&
Willy Tarreau124d9912011-03-01 20:30:48 +01003399 !(txn->flags & TX_REQ_TE_CHNK) && !txn->req.body_len &&
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003400 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3401 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3402 /* keep-alive possible */
Willy Tarreau75661452010-01-10 10:35:01 +01003403 if (!(txn->flags & TX_REQ_VER_11)) {
Willy Tarreau88d349d2010-01-25 12:15:43 +01003404 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3405 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: keep-alive", 30);
3406 rdr.len += 30;
3407 } else {
3408 memcpy(rdr.str + rdr.len, "\r\nConnection: keep-alive", 24);
3409 rdr.len += 24;
3410 }
Willy Tarreau75661452010-01-10 10:35:01 +01003411 }
3412 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
3413 rdr.len += 4;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003414 buffer_write(req->prod->ob, rdr.str, rdr.len);
3415 /* "eat" the request */
3416 buffer_ignore(req, msg->sov - msg->som);
3417 msg->som = msg->sov;
3418 req->analysers = AN_REQ_HTTP_XFER_BODY;
Willy Tarreau9300fb22010-01-05 00:58:24 +01003419 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3420 txn->req.msg_state = HTTP_MSG_CLOSED;
3421 txn->rsp.msg_state = HTTP_MSG_DONE;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003422 break;
3423 } else {
3424 /* keep-alive not possible */
Willy Tarreau88d349d2010-01-25 12:15:43 +01003425 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3426 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3427 rdr.len += 29;
3428 } else {
3429 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
3430 rdr.len += 23;
3431 }
Willy Tarreau148d0992010-01-10 10:21:21 +01003432 stream_int_retnclose(req->prod, &rdr);
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003433 goto return_prx_cond;
3434 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003435 }
3436 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003437
Willy Tarreau2be39392010-01-03 17:24:51 +01003438 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3439 * If this happens, then the data will not come immediately, so we must
3440 * send all what we have without waiting. Note that due to the small gain
3441 * in waiting for the body of the request, it's easier to simply put the
3442 * BF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
3443 * itself once used.
3444 */
3445 req->flags |= BF_SEND_DONTWAIT;
3446
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003447 /* that's OK for us now, let's move on to next analysers */
3448 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003449
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003450 return_bad_req:
3451 /* We centralize bad requests processing here */
3452 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3453 /* we detected a parsing error. We want to archive this request
3454 * in the dedicated proxy area for later troubleshooting.
3455 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003456 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003457 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003458
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003459 txn->req.msg_state = HTTP_MSG_ERROR;
3460 txn->status = 400;
3461 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003462
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003463 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003464 if (s->listener->counters)
3465 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003466
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003467 return_prx_cond:
3468 if (!(s->flags & SN_ERR_MASK))
3469 s->flags |= SN_ERR_PRXCOND;
3470 if (!(s->flags & SN_FINST_MASK))
3471 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003472
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003473 req->analysers = 0;
3474 req->analyse_exp = TICK_ETERNITY;
3475 return 0;
3476}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003477
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003478/* This function performs all the processing enabled for the current request.
3479 * It returns 1 if the processing can continue on next analysers, or zero if it
3480 * needs more data, encounters an error, or wants to immediately abort the
3481 * request. It relies on buffers flags, and updates s->req->analysers.
3482 */
3483int http_process_request(struct session *s, struct buffer *req, int an_bit)
3484{
3485 struct http_txn *txn = &s->txn;
3486 struct http_msg *msg = &txn->req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003487
Willy Tarreau655dce92009-11-08 13:10:58 +01003488 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003489 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003490 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003491 return 0;
3492 }
3493
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003494 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3495 now_ms, __FUNCTION__,
3496 s,
3497 req,
3498 req->rex, req->wex,
3499 req->flags,
3500 req->l,
3501 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003502
Willy Tarreau59234e92008-11-30 23:51:27 +01003503 /*
3504 * Right now, we know that we have processed the entire headers
3505 * and that unwanted requests have been filtered out. We can do
3506 * whatever we want with the remaining request. Also, now we
3507 * may have separate values for ->fe, ->be.
3508 */
Willy Tarreau06619262006-12-17 08:37:22 +01003509
Willy Tarreau59234e92008-11-30 23:51:27 +01003510 /*
3511 * If HTTP PROXY is set we simply get remote server address
3512 * parsing incoming request.
3513 */
3514 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau957c0a52011-03-03 17:42:23 +01003515 url2sa(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l, &s->req->cons->addr.s.to);
Willy Tarreau59234e92008-11-30 23:51:27 +01003516 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003517
Willy Tarreau59234e92008-11-30 23:51:27 +01003518 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003519 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003520 * Note that doing so might move headers in the request, but
3521 * the fields will stay coherent and the URI will not move.
3522 * This should only be performed in the backend.
3523 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003524 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003525 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3526 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003527
Willy Tarreau59234e92008-11-30 23:51:27 +01003528 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003529 * 8: the appsession cookie was looked up very early in 1.2,
3530 * so let's do the same now.
3531 */
3532
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02003533 /* It needs to look into the URI unless persistence must be ignored */
3534 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003535 get_srv_from_appsession(s, msg->sol + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01003536 }
3537
3538 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003539 * 9: add X-Forwarded-For if either the frontend or the backend
3540 * asks for it.
3541 */
3542 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau957c0a52011-03-03 17:42:23 +01003543 if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003544 /* Add an X-Forwarded-For header unless the source IP is
3545 * in the 'except' network range.
3546 */
3547 if ((!s->fe->except_mask.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003548 (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003549 != s->fe->except_net.s_addr) &&
3550 (!s->be->except_mask.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003551 (((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01003552 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003553 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003554 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003555 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003556
3557 /* Note: we rely on the backend to get the header name to be used for
3558 * x-forwarded-for, because the header is really meant for the backends.
3559 * However, if the backend did not specify any option, we have to rely
3560 * on the frontend's header name.
3561 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003562 if (s->be->fwdfor_hdr_len) {
3563 len = s->be->fwdfor_hdr_len;
3564 memcpy(trash, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003565 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01003566 len = s->fe->fwdfor_hdr_len;
3567 memcpy(trash, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003568 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003569 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01003570
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003571 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003572 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003573 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003574 }
3575 }
Willy Tarreau957c0a52011-03-03 17:42:23 +01003576 else if (s->req->prod->addr.c.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01003577 /* FIXME: for the sake of completeness, we should also support
3578 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003579 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003580 int len;
3581 char pn[INET6_ADDRSTRLEN];
3582 inet_ntop(AF_INET6,
Willy Tarreau957c0a52011-03-03 17:42:23 +01003583 (const void *)&((struct sockaddr_in6 *)(&s->req->prod->addr.c.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01003584 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003585
Willy Tarreau59234e92008-11-30 23:51:27 +01003586 /* Note: we rely on the backend to get the header name to be used for
3587 * x-forwarded-for, because the header is really meant for the backends.
3588 * However, if the backend did not specify any option, we have to rely
3589 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003590 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003591 if (s->be->fwdfor_hdr_len) {
3592 len = s->be->fwdfor_hdr_len;
3593 memcpy(trash, s->be->fwdfor_hdr_name, len);
3594 } else {
3595 len = s->fe->fwdfor_hdr_len;
3596 memcpy(trash, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003597 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003598 len += sprintf(trash + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003599
Willy Tarreau59234e92008-11-30 23:51:27 +01003600 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003601 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003602 goto return_bad_req;
3603 }
3604 }
3605
3606 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003607 * 10: add X-Original-To if either the frontend or the backend
3608 * asks for it.
3609 */
3610 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
3611
3612 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreau957c0a52011-03-03 17:42:23 +01003613 if (s->req->prod->addr.c.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003614 /* Add an X-Original-To header unless the destination IP is
3615 * in the 'except' network range.
3616 */
3617 if (!(s->flags & SN_FRT_ADDR_SET))
3618 get_frt_addr(s);
3619
Willy Tarreau957c0a52011-03-03 17:42:23 +01003620 if (s->req->prod->addr.c.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003621 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003622 (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003623 != s->fe->except_to.s_addr) &&
3624 (!s->be->except_mask_to.s_addr ||
Willy Tarreau957c0a52011-03-03 17:42:23 +01003625 (((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003626 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003627 int len;
3628 unsigned char *pn;
Willy Tarreau957c0a52011-03-03 17:42:23 +01003629 pn = (unsigned char *)&((struct sockaddr_in *)&s->req->prod->addr.c.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003630
3631 /* Note: we rely on the backend to get the header name to be used for
3632 * x-original-to, because the header is really meant for the backends.
3633 * However, if the backend did not specify any option, we have to rely
3634 * on the frontend's header name.
3635 */
3636 if (s->be->orgto_hdr_len) {
3637 len = s->be->orgto_hdr_len;
3638 memcpy(trash, s->be->orgto_hdr_name, len);
3639 } else {
3640 len = s->fe->orgto_hdr_len;
3641 memcpy(trash, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003642 }
Maik Broemme2850cb42009-04-17 18:53:21 +02003643 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
3644
3645 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003646 &txn->hdr_idx, trash, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003647 goto return_bad_req;
3648 }
3649 }
3650 }
3651
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003652 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. */
3653 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Cyril Bonté9ea2b9a2010-12-29 09:36:56 +01003654 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003655 unsigned int want_flags = 0;
3656
3657 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02003658 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
3659 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) &&
3660 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003661 want_flags |= TX_CON_CLO_SET;
3662 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02003663 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
3664 !((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) ||
3665 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003666 want_flags |= TX_CON_KAL_SET;
3667 }
3668
3669 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
3670 http_change_connection_header(txn, msg, req, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003671 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003672
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003673
Willy Tarreau522d6c02009-12-06 18:49:18 +01003674 /* If we have no server assigned yet and we're balancing on url_param
3675 * with a POST request, we may be interested in checking the body for
3676 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003677 */
3678 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
3679 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01003680 s->be->url_param_post_limit != 0 &&
Willy Tarreau61a21a32011-03-01 20:35:49 +01003681 (txn->flags & (TX_REQ_CNT_LEN|TX_REQ_TE_CHNK))) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003682 buffer_dont_connect(req);
3683 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003684 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003685
Willy Tarreaud98cf932009-12-27 22:54:55 +01003686 if (txn->flags & TX_REQ_XFER_LEN)
3687 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01003688
Willy Tarreau59234e92008-11-30 23:51:27 +01003689 /*************************************************************
3690 * OK, that's finished for the headers. We have done what we *
3691 * could. Let's switch to the DATA state. *
3692 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003693 req->analyse_exp = TICK_ETERNITY;
3694 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003695
Willy Tarreau59234e92008-11-30 23:51:27 +01003696 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003697 /* OK let's go on with the BODY now */
3698 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003699
Willy Tarreau59234e92008-11-30 23:51:27 +01003700 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003701 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003702 /* we detected a parsing error. We want to archive this request
3703 * in the dedicated proxy area for later troubleshooting.
3704 */
Willy Tarreau078272e2010-12-12 12:46:33 +01003705 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003706 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003707
Willy Tarreau59234e92008-11-30 23:51:27 +01003708 txn->req.msg_state = HTTP_MSG_ERROR;
3709 txn->status = 400;
3710 req->analysers = 0;
3711 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003712
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003713 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003714 if (s->listener->counters)
3715 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02003716
Willy Tarreau59234e92008-11-30 23:51:27 +01003717 if (!(s->flags & SN_ERR_MASK))
3718 s->flags |= SN_ERR_PRXCOND;
3719 if (!(s->flags & SN_FINST_MASK))
3720 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003721 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003722}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003723
Willy Tarreau60b85b02008-11-30 23:28:40 +01003724/* This function is an analyser which processes the HTTP tarpit. It always
3725 * returns zero, at the beginning because it prevents any other processing
3726 * from occurring, and at the end because it terminates the request.
3727 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003728int http_process_tarpit(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003729{
3730 struct http_txn *txn = &s->txn;
3731
3732 /* This connection is being tarpitted. The CLIENT side has
3733 * already set the connect expiration date to the right
3734 * timeout. We just have to check that the client is still
3735 * there and that the timeout has not expired.
3736 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003737 buffer_dont_connect(req);
Willy Tarreau60b85b02008-11-30 23:28:40 +01003738 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
3739 !tick_is_expired(req->analyse_exp, now_ms))
3740 return 0;
3741
3742 /* We will set the queue timer to the time spent, just for
3743 * logging purposes. We fake a 500 server error, so that the
3744 * attacker will not suspect his connection has been tarpitted.
3745 * It will not cause trouble to the logs because we can exclude
3746 * the tarpitted connections by filtering on the 'PT' status flags.
3747 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003748 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3749
3750 txn->status = 500;
3751 if (req->flags != BF_READ_ERROR)
3752 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500));
3753
3754 req->analysers = 0;
3755 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003756
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003757 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003758 if (s->listener->counters)
3759 s->listener->counters->failed_req++;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003760
Willy Tarreau60b85b02008-11-30 23:28:40 +01003761 if (!(s->flags & SN_ERR_MASK))
3762 s->flags |= SN_ERR_PRXCOND;
3763 if (!(s->flags & SN_FINST_MASK))
3764 s->flags |= SN_FINST_T;
3765 return 0;
3766}
3767
Willy Tarreaud34af782008-11-30 23:36:37 +01003768/* This function is an analyser which processes the HTTP request body. It looks
3769 * for parameters to be used for the load balancing algorithm (url_param). It
3770 * must only be called after the standard HTTP request processing has occurred,
3771 * because it expects the request to be parsed. It returns zero if it needs to
3772 * read more data, or 1 once it has completed its analysis.
3773 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003774int http_process_request_body(struct session *s, struct buffer *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003775{
Willy Tarreau522d6c02009-12-06 18:49:18 +01003776 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01003777 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003778 long long limit = s->be->url_param_post_limit;
Willy Tarreaud34af782008-11-30 23:36:37 +01003779
3780 /* We have to parse the HTTP request body to find any required data.
3781 * "balance url_param check_post" should have been the only way to get
3782 * into this. We were brought here after HTTP header analysis, so all
3783 * related structures are ready.
3784 */
3785
Willy Tarreau522d6c02009-12-06 18:49:18 +01003786 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
3787 goto missing_data;
3788
3789 if (msg->msg_state < HTTP_MSG_100_SENT) {
3790 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3791 * send an HTTP/1.1 100 Continue intermediate response.
3792 */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01003793 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003794 struct hdr_ctx ctx;
3795 ctx.idx = 0;
3796 /* Expect is allowed in 1.1, look for it */
3797 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3798 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3799 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3800 }
3801 }
3802 msg->msg_state = HTTP_MSG_100_SENT;
3803 }
3804
3805 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01003806 /* we have msg->col and msg->sov which both point to the first
3807 * byte of message body. msg->som still points to the beginning
3808 * of the message. We must save the body in req->lr because it
3809 * survives buffer re-alignments.
3810 */
3811 req->lr = req->data + msg->sov;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003812 if (txn->flags & TX_REQ_TE_CHNK)
3813 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
3814 else
3815 msg->msg_state = HTTP_MSG_DATA;
3816 }
3817
3818 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01003819 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01003820 * set ->sov and ->lr to point to the body and switch to DATA or
3821 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01003822 */
3823 int ret = http_parse_chunk_size(req, msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01003824
Willy Tarreau115acb92009-12-26 13:56:06 +01003825 if (!ret)
3826 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003827 else if (ret < 0) {
3828 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003829 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003830 }
Willy Tarreaud34af782008-11-30 23:36:37 +01003831 }
3832
Willy Tarreaud98cf932009-12-27 22:54:55 +01003833 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreau522d6c02009-12-06 18:49:18 +01003834 * We have the first non-header byte in msg->col, which is either the
3835 * beginning of the chunk size or of the data. The first data byte is in
3836 * msg->sov, which is equal to msg->col when not using transfer-encoding.
3837 * We're waiting for at least <url_param_post_limit> bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01003838 */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003839
Willy Tarreau124d9912011-03-01 20:30:48 +01003840 if (msg->body_len < limit)
3841 limit = msg->body_len;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003842
Willy Tarreau7c96f672009-12-27 22:47:25 +01003843 if (req->l - (msg->sov - msg->som) >= limit) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003844 goto http_end;
3845
3846 missing_data:
3847 /* we get here if we need to wait for more data */
Willy Tarreauda7ff642010-06-23 11:44:09 +02003848 if (req->flags & BF_FULL) {
3849 session_inc_http_err_ctr(s);
Willy Tarreau115acb92009-12-26 13:56:06 +01003850 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003851 }
Willy Tarreau115acb92009-12-26 13:56:06 +01003852
Willy Tarreau522d6c02009-12-06 18:49:18 +01003853 if ((req->flags & BF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
3854 txn->status = 408;
3855 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02003856
3857 if (!(s->flags & SN_ERR_MASK))
3858 s->flags |= SN_ERR_CLITO;
3859 if (!(s->flags & SN_FINST_MASK))
3860 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003861 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01003862 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003863
3864 /* we get here if we need to wait for more data */
3865 if (!(req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01003866 /* Not enough data. We'll re-use the http-request
3867 * timeout here. Ideally, we should set the timeout
3868 * relative to the accept() date. We just set the
3869 * request timeout once at the beginning of the
3870 * request.
3871 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003872 buffer_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01003873 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02003874 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01003875 return 0;
3876 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003877
3878 http_end:
3879 /* The situation will not evolve, so let's give up on the analysis. */
3880 s->logs.tv_request = now; /* update the request timer to reflect full request */
3881 req->analysers &= ~an_bit;
3882 req->analyse_exp = TICK_ETERNITY;
3883 return 1;
3884
3885 return_bad_req: /* let's centralize all bad requests */
3886 txn->req.msg_state = HTTP_MSG_ERROR;
3887 txn->status = 400;
3888 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
3889
Willy Tarreau79ebac62010-06-07 13:47:49 +02003890 if (!(s->flags & SN_ERR_MASK))
3891 s->flags |= SN_ERR_PRXCOND;
3892 if (!(s->flags & SN_FINST_MASK))
3893 s->flags |= SN_FINST_R;
3894
Willy Tarreau522d6c02009-12-06 18:49:18 +01003895 return_err_msg:
3896 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003897 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003898 if (s->listener->counters)
3899 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003900 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01003901}
3902
Willy Tarreau610ecce2010-01-04 21:15:02 +01003903/* Terminate current transaction and prepare a new one. This is very tricky
3904 * right now but it works.
3905 */
3906void http_end_txn_clean_session(struct session *s)
3907{
3908 /* FIXME: We need a more portable way of releasing a backend's and a
3909 * server's connections. We need a safer way to reinitialize buffer
3910 * flags. We also need a more accurate method for computing per-request
3911 * data.
3912 */
3913 http_silent_debug(__LINE__, s);
3914
3915 s->req->cons->flags |= SI_FL_NOLINGER;
3916 s->req->cons->shutr(s->req->cons);
3917 s->req->cons->shutw(s->req->cons);
3918
3919 http_silent_debug(__LINE__, s);
3920
3921 if (s->flags & SN_BE_ASSIGNED)
3922 s->be->beconn--;
3923
3924 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
3925 session_process_counters(s);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02003926 session_stop_backend_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003927
3928 if (s->txn.status) {
3929 int n;
3930
3931 n = s->txn.status / 100;
3932 if (n < 1 || n > 5)
3933 n = 0;
3934
3935 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003936 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003937
Willy Tarreau24657792010-02-26 10:30:28 +01003938 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01003939 (s->be->mode == PR_MODE_HTTP))
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003940 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003941 }
3942
3943 /* don't count other requests' data */
3944 s->logs.bytes_in -= s->req->l - s->req->send_max;
3945 s->logs.bytes_out -= s->rep->l - s->rep->send_max;
3946
3947 /* let's do a final log if we need it */
3948 if (s->logs.logwait &&
3949 !(s->flags & SN_MONITOR) &&
3950 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
3951 s->do_log(s);
3952 }
3953
3954 s->logs.accept_date = date; /* user-visible date for logging */
3955 s->logs.tv_accept = now; /* corrected date for internal use */
3956 tv_zero(&s->logs.tv_request);
3957 s->logs.t_queue = -1;
3958 s->logs.t_connect = -1;
3959 s->logs.t_data = -1;
3960 s->logs.t_close = 0;
3961 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
3962 s->logs.srv_queue_size = 0; /* we will get this number soon */
3963
3964 s->logs.bytes_in = s->req->total = s->req->l - s->req->send_max;
3965 s->logs.bytes_out = s->rep->total = s->rep->l - s->rep->send_max;
3966
3967 if (s->pend_pos)
3968 pendconn_free(s->pend_pos);
3969
Willy Tarreau827aee92011-03-10 16:55:02 +01003970 if (target_srv(&s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003971 if (s->flags & SN_CURR_SESS) {
3972 s->flags &= ~SN_CURR_SESS;
Willy Tarreau827aee92011-03-10 16:55:02 +01003973 target_srv(&s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003974 }
Willy Tarreau827aee92011-03-10 16:55:02 +01003975 if (may_dequeue_tasks(target_srv(&s->target), s->be))
3976 process_srv_queue(target_srv(&s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01003977 }
3978
3979 if (unlikely(s->srv_conn))
3980 sess_change_server(s, NULL);
Willy Tarreau9e000c62011-03-10 14:03:36 +01003981 clear_target(&s->target);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003982
3983 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
3984 s->req->cons->fd = -1; /* just to help with debugging */
3985 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02003986 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003987 s->req->cons->err_loc = NULL;
3988 s->req->cons->exp = TICK_ETERNITY;
3989 s->req->cons->flags = SI_FL_NONE;
Willy Tarreau90deb182010-01-07 00:20:41 +01003990 s->req->flags &= ~(BF_SHUTW|BF_SHUTW_NOW|BF_AUTO_CONNECT|BF_WRITE_ERROR|BF_STREAMER|BF_STREAMER_FAST);
3991 s->rep->flags &= ~(BF_SHUTR|BF_SHUTR_NOW|BF_READ_ATTACHED|BF_READ_ERROR|BF_READ_NOEXP|BF_STREAMER|BF_STREAMER_FAST|BF_WRITE_PARTIAL);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02003992 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003993 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE);
3994 s->txn.meth = 0;
3995 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01003996 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreauee55dc02010-06-01 10:56:34 +02003997 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01003998 s->req->cons->flags |= SI_FL_INDEP_STR;
3999
4000 /* if the request buffer is not empty, it means we're
4001 * about to process another request, so send pending
4002 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004003 * Just don't do this if the buffer is close to be full,
4004 * because the request will wait for it to flush a little
4005 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004006 */
Willy Tarreau065e8332010-01-08 00:30:20 +01004007 if (s->req->l > s->req->send_max) {
4008 if (s->rep->send_max &&
4009 !(s->rep->flags & BF_FULL) &&
Willy Tarreau065e8332010-01-08 00:30:20 +01004010 s->rep->r <= s->rep->data + s->rep->size - global.tune.maxrewrite)
4011 s->rep->flags |= BF_EXPECT_MORE;
4012 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004013
4014 /* we're removing the analysers, we MUST re-enable events detection */
4015 buffer_auto_read(s->req);
4016 buffer_auto_close(s->req);
4017 buffer_auto_read(s->rep);
4018 buffer_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004019
4020 /* make ->lr point to the first non-forwarded byte */
4021 s->req->lr = s->req->w + s->req->send_max;
4022 if (s->req->lr >= s->req->data + s->req->size)
4023 s->req->lr -= s->req->size;
4024 s->rep->lr = s->rep->w + s->rep->send_max;
4025 if (s->rep->lr >= s->rep->data + s->rep->size)
4026 s->rep->lr -= s->req->size;
4027
Willy Tarreau342b11c2010-11-24 16:22:09 +01004028 s->req->analysers = s->listener->analysers;
4029 s->req->analysers &= ~AN_REQ_DECODE_PROXY;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004030 s->rep->analysers = 0;
4031
4032 http_silent_debug(__LINE__, s);
4033}
4034
4035
4036/* This function updates the request state machine according to the response
4037 * state machine and buffer flags. It returns 1 if it changes anything (flag
4038 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4039 * it is only used to find when a request/response couple is complete. Both
4040 * this function and its equivalent should loop until both return zero. It
4041 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4042 */
4043int http_sync_req_state(struct session *s)
4044{
4045 struct buffer *buf = s->req;
4046 struct http_txn *txn = &s->txn;
4047 unsigned int old_flags = buf->flags;
4048 unsigned int old_state = txn->req.msg_state;
4049
4050 http_silent_debug(__LINE__, s);
4051 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4052 return 0;
4053
4054 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004055 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004056 * We can shut the read side unless we want to abort_on_close,
4057 * or we have a POST request. The issue with POST requests is
4058 * that some browsers still send a CRLF after the request, and
4059 * this CRLF must be read so that it does not remain in the kernel
4060 * buffers, otherwise a close could cause an RST on some systems
4061 * (eg: Linux).
Willy Tarreau90deb182010-01-07 00:20:41 +01004062 */
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004063 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Willy Tarreau90deb182010-01-07 00:20:41 +01004064 buffer_dont_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004065
4066 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4067 goto wait_other_side;
4068
4069 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4070 /* The server has not finished to respond, so we
4071 * don't want to move in order not to upset it.
4072 */
4073 goto wait_other_side;
4074 }
4075
4076 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4077 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004078 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004079 txn->req.msg_state = HTTP_MSG_TUNNEL;
4080 goto wait_other_side;
4081 }
4082
4083 /* When we get here, it means that both the request and the
4084 * response have finished receiving. Depending on the connection
4085 * mode, we'll have to wait for the last bytes to leave in either
4086 * direction, and sometimes for a close to be effective.
4087 */
4088
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004089 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4090 /* Server-close mode : queue a connection close to the server */
4091 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW)))
Willy Tarreau610ecce2010-01-04 21:15:02 +01004092 buffer_shutw_now(buf);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004093 }
4094 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4095 /* Option forceclose is set, or either side wants to close,
4096 * let's enforce it now that we're not expecting any new
4097 * data to come. The caller knows the session is complete
4098 * once both states are CLOSED.
4099 */
4100 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004101 buffer_shutr_now(buf);
4102 buffer_shutw_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004103 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004104 }
4105 else {
4106 /* The last possible modes are keep-alive and tunnel. Since tunnel
4107 * mode does not set the body analyser, we can't reach this place
4108 * in tunnel mode, so we're left with keep-alive only.
4109 * This mode is currently not implemented, we switch to tunnel mode.
4110 */
4111 buffer_auto_read(buf);
4112 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004113 }
4114
4115 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4116 /* if we've just closed an output, let's switch */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004117 buf->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
4118
Willy Tarreau610ecce2010-01-04 21:15:02 +01004119 if (!(buf->flags & BF_OUT_EMPTY)) {
4120 txn->req.msg_state = HTTP_MSG_CLOSING;
4121 goto http_msg_closing;
4122 }
4123 else {
4124 txn->req.msg_state = HTTP_MSG_CLOSED;
4125 goto http_msg_closed;
4126 }
4127 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004128 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004129 }
4130
4131 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4132 http_msg_closing:
4133 /* nothing else to forward, just waiting for the output buffer
4134 * to be empty and for the shutw_now to take effect.
4135 */
4136 if (buf->flags & BF_OUT_EMPTY) {
4137 txn->req.msg_state = HTTP_MSG_CLOSED;
4138 goto http_msg_closed;
4139 }
4140 else if (buf->flags & BF_SHUTW) {
4141 txn->req.msg_state = HTTP_MSG_ERROR;
4142 goto wait_other_side;
4143 }
4144 }
4145
4146 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4147 http_msg_closed:
4148 goto wait_other_side;
4149 }
4150
4151 wait_other_side:
4152 http_silent_debug(__LINE__, s);
4153 return txn->req.msg_state != old_state || buf->flags != old_flags;
4154}
4155
4156
4157/* This function updates the response state machine according to the request
4158 * state machine and buffer flags. It returns 1 if it changes anything (flag
4159 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4160 * it is only used to find when a request/response couple is complete. Both
4161 * this function and its equivalent should loop until both return zero. It
4162 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4163 */
4164int http_sync_res_state(struct session *s)
4165{
4166 struct buffer *buf = s->rep;
4167 struct http_txn *txn = &s->txn;
4168 unsigned int old_flags = buf->flags;
4169 unsigned int old_state = txn->rsp.msg_state;
4170
4171 http_silent_debug(__LINE__, s);
4172 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4173 return 0;
4174
4175 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4176 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004177 * still monitor the server connection for a possible close
4178 * while the request is being uploaded, so we don't disable
4179 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004180 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004181 /* buffer_dont_read(buf); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004182
4183 if (txn->req.msg_state == HTTP_MSG_ERROR)
4184 goto wait_other_side;
4185
4186 if (txn->req.msg_state < HTTP_MSG_DONE) {
4187 /* The client seems to still be sending data, probably
4188 * because we got an error response during an upload.
4189 * We have the choice of either breaking the connection
4190 * or letting it pass through. Let's do the later.
4191 */
4192 goto wait_other_side;
4193 }
4194
4195 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4196 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01004197 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004198 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4199 goto wait_other_side;
4200 }
4201
4202 /* When we get here, it means that both the request and the
4203 * response have finished receiving. Depending on the connection
4204 * mode, we'll have to wait for the last bytes to leave in either
4205 * direction, and sometimes for a close to be effective.
4206 */
4207
4208 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4209 /* Server-close mode : shut read and wait for the request
4210 * side to close its output buffer. The caller will detect
4211 * when we're in DONE and the other is in CLOSED and will
4212 * catch that for the final cleanup.
4213 */
4214 if (!(buf->flags & (BF_SHUTR|BF_SHUTR_NOW)))
4215 buffer_shutr_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004216 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004217 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4218 /* Option forceclose is set, or either side wants to close,
4219 * let's enforce it now that we're not expecting any new
4220 * data to come. The caller knows the session is complete
4221 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004222 */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004223 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
4224 buffer_shutr_now(buf);
4225 buffer_shutw_now(buf);
4226 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004227 }
4228 else {
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004229 /* The last possible modes are keep-alive and tunnel. Since tunnel
4230 * mode does not set the body analyser, we can't reach this place
4231 * in tunnel mode, so we're left with keep-alive only.
4232 * This mode is currently not implemented, we switch to tunnel mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004233 */
Willy Tarreau90deb182010-01-07 00:20:41 +01004234 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004235 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004236 }
4237
4238 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
4239 /* if we've just closed an output, let's switch */
4240 if (!(buf->flags & BF_OUT_EMPTY)) {
4241 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4242 goto http_msg_closing;
4243 }
4244 else {
4245 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4246 goto http_msg_closed;
4247 }
4248 }
4249 goto wait_other_side;
4250 }
4251
4252 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4253 http_msg_closing:
4254 /* nothing else to forward, just waiting for the output buffer
4255 * to be empty and for the shutw_now to take effect.
4256 */
4257 if (buf->flags & BF_OUT_EMPTY) {
4258 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4259 goto http_msg_closed;
4260 }
4261 else if (buf->flags & BF_SHUTW) {
4262 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004263 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004264 if (target_srv(&s->target))
4265 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004266 goto wait_other_side;
4267 }
4268 }
4269
4270 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4271 http_msg_closed:
4272 /* drop any pending data */
4273 buffer_ignore(buf, buf->l - buf->send_max);
4274 buffer_auto_close(buf);
Willy Tarreau90deb182010-01-07 00:20:41 +01004275 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004276 goto wait_other_side;
4277 }
4278
4279 wait_other_side:
4280 http_silent_debug(__LINE__, s);
4281 return txn->rsp.msg_state != old_state || buf->flags != old_flags;
4282}
4283
4284
4285/* Resync the request and response state machines. Return 1 if either state
4286 * changes.
4287 */
4288int http_resync_states(struct session *s)
4289{
4290 struct http_txn *txn = &s->txn;
4291 int old_req_state = txn->req.msg_state;
4292 int old_res_state = txn->rsp.msg_state;
4293
4294 http_silent_debug(__LINE__, s);
4295 http_sync_req_state(s);
4296 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004297 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004298 if (!http_sync_res_state(s))
4299 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004300 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004301 if (!http_sync_req_state(s))
4302 break;
4303 }
4304 http_silent_debug(__LINE__, s);
4305 /* OK, both state machines agree on a compatible state.
4306 * There are a few cases we're interested in :
4307 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4308 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4309 * directions, so let's simply disable both analysers.
4310 * - HTTP_MSG_CLOSED on the response only means we must abort the
4311 * request.
4312 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4313 * with server-close mode means we've completed one request and we
4314 * must re-initialize the server connection.
4315 */
4316
4317 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4318 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4319 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4320 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4321 s->req->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004322 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004323 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004324 s->rep->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004325 buffer_auto_close(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004326 buffer_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004327 }
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004328 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
4329 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau4fe41902010-06-07 22:27:41 +02004330 txn->req.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004331 (s->rep->flags & BF_SHUTW)) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004332 s->rep->analysers = 0;
4333 buffer_auto_close(s->rep);
4334 buffer_auto_read(s->rep);
4335 s->req->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004336 buffer_abort(s->req);
4337 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004338 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004339 buffer_ignore(s->req, s->req->l - s->req->send_max);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004340 }
4341 else if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4342 txn->rsp.msg_state == HTTP_MSG_DONE &&
4343 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) {
4344 /* server-close: terminate this server connection and
4345 * reinitialize a fresh-new transaction.
4346 */
4347 http_end_txn_clean_session(s);
4348 }
4349
4350 http_silent_debug(__LINE__, s);
4351 return txn->req.msg_state != old_req_state ||
4352 txn->rsp.msg_state != old_res_state;
4353}
4354
Willy Tarreaud98cf932009-12-27 22:54:55 +01004355/* This function is an analyser which forwards request body (including chunk
4356 * sizes if any). It is called as soon as we must forward, even if we forward
4357 * zero byte. The only situation where it must not be called is when we're in
4358 * tunnel mode and we want to forward till the close. It's used both to forward
4359 * remaining data and to resync after end of body. It expects the msg_state to
4360 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4361 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01004362 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01004363 * bytes of pending data + the headers if not already done (between som and sov).
4364 * It eventually adjusts som to match sov after the data in between have been sent.
4365 */
4366int http_request_forward_body(struct session *s, struct buffer *req, int an_bit)
4367{
4368 struct http_txn *txn = &s->txn;
4369 struct http_msg *msg = &s->txn.req;
4370
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004371 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4372 return 0;
4373
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004374 if ((req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
4375 ((req->flags & BF_SHUTW) && (req->to_forward || req->send_max))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02004376 /* Output closed while we were sending data. We must abort and
4377 * wake the other side up.
4378 */
4379 msg->msg_state = HTTP_MSG_ERROR;
4380 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004381 return 1;
4382 }
4383
Willy Tarreau4fe41902010-06-07 22:27:41 +02004384 /* in most states, we should abort in case of early close */
4385 buffer_auto_close(req);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004386
4387 /* Note that we don't have to send 100-continue back because we don't
4388 * need the data to complete our job, and it's up to the server to
4389 * decide whether to return 100, 417 or anything else in return of
4390 * an "Expect: 100-continue" header.
4391 */
4392
4393 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4394 /* we have msg->col and msg->sov which both point to the first
4395 * byte of message body. msg->som still points to the beginning
4396 * of the message. We must save the body in req->lr because it
4397 * survives buffer re-alignments.
4398 */
4399 req->lr = req->data + msg->sov;
4400 if (txn->flags & TX_REQ_TE_CHNK)
4401 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4402 else {
4403 msg->msg_state = HTTP_MSG_DATA;
4404 }
4405 }
4406
Willy Tarreaud98cf932009-12-27 22:54:55 +01004407 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004408 int bytes;
4409
Willy Tarreau610ecce2010-01-04 21:15:02 +01004410 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01004411 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004412 bytes = msg->sov - msg->som;
4413 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01004414 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02004415 if (likely(bytes < 0)) /* sov may have wrapped at the end */
4416 bytes += req->size;
4417 msg->chunk_len += (unsigned int)bytes;
4418 msg->chunk_len -= buffer_forward(req, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01004419 }
Willy Tarreau5523b322009-12-29 12:05:52 +01004420
Willy Tarreaucaabe412010-01-03 23:08:28 +01004421 if (msg->msg_state == HTTP_MSG_DATA) {
4422 /* must still forward */
4423 if (req->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004424 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004425
4426 /* nothing left to forward */
4427 if (txn->flags & TX_REQ_TE_CHNK)
4428 msg->msg_state = HTTP_MSG_DATA_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004429 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01004430 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004431 }
4432 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004433 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01004434 * set ->sov and ->lr to point to the body and switch to DATA or
4435 * TRAILERS state.
4436 */
4437 int ret = http_parse_chunk_size(req, msg);
4438
4439 if (!ret)
4440 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004441 else if (ret < 0) {
4442 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004443 if (msg->err_pos >= 0)
4444 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004445 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004446 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004447 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreau57f5c122010-12-02 00:37:14 +01004448 /* Don't set a PUSH at the end of that chunk if it's not the last one */
4449 if (msg->msg_state == HTTP_MSG_DATA)
4450 req->flags |= BF_EXPECT_MORE;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004451 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004452 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
4453 /* we want the CRLF after the data */
4454 int ret;
4455
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004456 req->lr = req->w + req->send_max;
4457 if (req->lr >= req->data + req->size)
4458 req->lr -= req->size;
4459
Willy Tarreaud98cf932009-12-27 22:54:55 +01004460 ret = http_skip_chunk_crlf(req, msg);
4461
4462 if (ret == 0)
4463 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004464 else if (ret < 0) {
4465 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004466 if (msg->err_pos >= 0)
4467 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_DATA_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004468 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004469 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004470 /* we're in MSG_CHUNK_SIZE now */
4471 }
4472 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
4473 int ret = http_forward_trailers(req, msg);
4474
4475 if (ret == 0)
4476 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004477 else if (ret < 0) {
4478 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004479 if (msg->err_pos >= 0)
4480 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004481 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004482 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004483 /* we're in HTTP_MSG_DONE now */
4484 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004485 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004486 int old_state = msg->msg_state;
4487
Willy Tarreau610ecce2010-01-04 21:15:02 +01004488 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02004489 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004490 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
4491 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
4492 buffer_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004493 if (http_resync_states(s)) {
4494 /* some state changes occurred, maybe the analyser
4495 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01004496 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004497 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4498 if (req->flags & BF_SHUTW) {
4499 /* request errors are most likely due to
4500 * the server aborting the transfer.
4501 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004502 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004503 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01004504 if (msg->err_pos >= 0)
4505 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004506 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01004507 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004508 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004509 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004510
4511 /* If "option abortonclose" is set on the backend, we
4512 * want to monitor the client's connection and forward
4513 * any shutdown notification to the server, which will
4514 * decide whether to close or to go on processing the
4515 * request.
4516 */
4517 if (s->be->options & PR_O_ABRT_CLOSE) {
4518 buffer_auto_read(req);
4519 buffer_auto_close(req);
4520 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004521 else if (s->txn.meth == HTTP_METH_POST) {
4522 /* POST requests may require to read extra CRLF
4523 * sent by broken browsers and which could cause
4524 * an RST to be sent upon close on some systems
4525 * (eg: Linux).
4526 */
4527 buffer_auto_read(req);
4528 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02004529
Willy Tarreau610ecce2010-01-04 21:15:02 +01004530 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004531 }
4532 }
4533
Willy Tarreaud98cf932009-12-27 22:54:55 +01004534 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004535 /* stop waiting for data if the input is closed before the end */
Willy Tarreau79ebac62010-06-07 13:47:49 +02004536 if (req->flags & BF_SHUTR) {
4537 if (!(s->flags & SN_ERR_MASK))
4538 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004539 if (!(s->flags & SN_FINST_MASK)) {
4540 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4541 s->flags |= SN_FINST_H;
4542 else
4543 s->flags |= SN_FINST_D;
4544 }
4545
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004546 s->fe->fe_counters.cli_aborts++;
4547 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004548 if (target_srv(&s->target))
4549 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004550
4551 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02004552 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004553
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004554 /* waiting for the last bits to leave the buffer */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004555 if (req->flags & BF_SHUTW)
4556 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004557
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004558 /* When TE: chunked is used, we need to get there again to parse remaining
4559 * chunks even if the client has closed, so we don't want to set BF_DONTCLOSE.
4560 */
4561 if (txn->flags & TX_REQ_TE_CHNK)
4562 buffer_dont_close(req);
4563
Willy Tarreau610ecce2010-01-04 21:15:02 +01004564 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004565 return 0;
4566
Willy Tarreaud98cf932009-12-27 22:54:55 +01004567 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004568 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004569 if (s->listener->counters)
4570 s->listener->counters->failed_req++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004571 return_bad_req_stats_ok:
4572 txn->req.msg_state = HTTP_MSG_ERROR;
4573 if (txn->status) {
4574 /* Note: we don't send any error if some data were already sent */
4575 stream_int_retnclose(req->prod, NULL);
4576 } else {
4577 txn->status = 400;
4578 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
4579 }
4580 req->analysers = 0;
4581 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004582
4583 if (!(s->flags & SN_ERR_MASK))
4584 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004585 if (!(s->flags & SN_FINST_MASK)) {
4586 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4587 s->flags |= SN_FINST_H;
4588 else
4589 s->flags |= SN_FINST_D;
4590 }
4591 return 0;
4592
4593 aborted_xfer:
4594 txn->req.msg_state = HTTP_MSG_ERROR;
4595 if (txn->status) {
4596 /* Note: we don't send any error if some data were already sent */
4597 stream_int_retnclose(req->prod, NULL);
4598 } else {
4599 txn->status = 502;
4600 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_502));
4601 }
4602 req->analysers = 0;
4603 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
4604
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004605 s->fe->fe_counters.srv_aborts++;
4606 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004607 if (target_srv(&s->target))
4608 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004609
4610 if (!(s->flags & SN_ERR_MASK))
4611 s->flags |= SN_ERR_SRVCL;
4612 if (!(s->flags & SN_FINST_MASK)) {
4613 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
4614 s->flags |= SN_FINST_H;
4615 else
4616 s->flags |= SN_FINST_D;
4617 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004618 return 0;
4619}
4620
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004621/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4622 * processing can continue on next analysers, or zero if it either needs more
4623 * data or wants to immediately abort the response (eg: timeout, error, ...). It
4624 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
4625 * when it has nothing left to do, and may remove any analyser when it wants to
4626 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004627 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004628int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004629{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004630 struct http_txn *txn = &s->txn;
4631 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004632 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004633 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004634 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004635 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004636
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004637 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02004638 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004639 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004640 rep,
4641 rep->rex, rep->wex,
4642 rep->flags,
4643 rep->l,
4644 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004645
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004646 /*
4647 * Now parse the partial (or complete) lines.
4648 * We will check the response syntax, and also join multi-line
4649 * headers. An index of all the lines will be elaborated while
4650 * parsing.
4651 *
4652 * For the parsing, we use a 28 states FSM.
4653 *
4654 * Here is the information we currently have :
Willy Tarreau83e3af02009-12-28 17:39:57 +01004655 * rep->data + msg->som = beginning of response
4656 * rep->data + msg->eoh = end of processed headers / start of current one
4657 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004658 * rep->lr = first non-visited byte
4659 * rep->r = end of data
Willy Tarreau962c3f42010-01-10 00:15:35 +01004660 * Once we reach MSG_BODY, rep->sol = rep->data + msg->som
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004661 */
4662
Willy Tarreau83e3af02009-12-28 17:39:57 +01004663 /* There's a protected area at the end of the buffer for rewriting
4664 * purposes. We don't want to start to parse the request if the
4665 * protected area is affected, because we may have to move processed
4666 * data later, which is much more complicated.
4667 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004668 if (rep->l && msg->msg_state < HTTP_MSG_ERROR) {
4669 if (unlikely((rep->flags & BF_FULL) ||
4670 rep->r < rep->lr ||
4671 rep->r > rep->data + rep->size - global.tune.maxrewrite)) {
4672 if (rep->send_max) {
4673 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau64648412010-03-05 10:41:54 +01004674 if (rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_WRITE_ERROR|BF_WRITE_TIMEOUT))
4675 goto abort_response;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004676 buffer_dont_close(rep);
4677 rep->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
4678 return 0;
4679 }
4680 if (rep->l <= rep->size - global.tune.maxrewrite)
4681 http_buffer_heavy_realign(rep, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004682 }
4683
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004684 if (likely(rep->lr < rep->r))
4685 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004686 }
4687
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004688 /* 1: we might have to print this header in debug mode */
4689 if (unlikely((global.mode & MODE_DEBUG) &&
4690 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreauc3bfeeb2010-04-16 09:14:45 +02004691 msg->sol &&
Willy Tarreau655dce92009-11-08 13:10:58 +01004692 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004693 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004694
Willy Tarreau663308b2010-06-07 14:06:08 +02004695 sol = rep->data + msg->som;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02004696 eol = sol + msg->sl.st.l;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004697 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004698
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004699 sol += hdr_idx_first_pos(&txn->hdr_idx);
4700 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004701
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004702 while (cur_idx) {
4703 eol = sol + txn->hdr_idx.v[cur_idx].len;
4704 debug_hdr("srvhdr", s, sol, eol);
4705 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
4706 cur_idx = txn->hdr_idx.v[cur_idx].next;
4707 }
4708 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004709
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004710 /*
4711 * Now we quickly check if we have found a full valid response.
4712 * If not so, we check the FD and buffer states before leaving.
4713 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01004714 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004715 * responses are checked first.
4716 *
4717 * Depending on whether the client is still there or not, we
4718 * may send an error response back or not. Note that normally
4719 * we should only check for HTTP status there, and check I/O
4720 * errors somewhere else.
4721 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004722
Willy Tarreau655dce92009-11-08 13:10:58 +01004723 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004724 /* Invalid response */
4725 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4726 /* we detected a parsing error. We want to archive this response
4727 * in the dedicated proxy area for later troubleshooting.
4728 */
4729 hdr_response_bad:
4730 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004731 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004732
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004733 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004734 if (target_srv(&s->target)) {
4735 target_srv(&s->target)->counters.failed_resp++;
4736 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004737 }
Willy Tarreau64648412010-03-05 10:41:54 +01004738 abort_response:
Willy Tarreau90deb182010-01-07 00:20:41 +01004739 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004740 rep->analysers = 0;
4741 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004742 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004743 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004744 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
4745
4746 if (!(s->flags & SN_ERR_MASK))
4747 s->flags |= SN_ERR_PRXCOND;
4748 if (!(s->flags & SN_FINST_MASK))
4749 s->flags |= SN_FINST_H;
4750
4751 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004752 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004753
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004754 /* too large response does not fit in buffer. */
4755 else if (rep->flags & BF_FULL) {
4756 goto hdr_response_bad;
4757 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004758
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004759 /* read error */
4760 else if (rep->flags & BF_READ_ERROR) {
4761 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004762 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02004763
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004764 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004765 if (target_srv(&s->target)) {
4766 target_srv(&s->target)->counters.failed_resp++;
4767 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004768 }
Willy Tarreau461f6622008-08-15 23:43:19 +02004769
Willy Tarreau90deb182010-01-07 00:20:41 +01004770 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004771 rep->analysers = 0;
4772 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004773 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004774 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004775 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02004776
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004777 if (!(s->flags & SN_ERR_MASK))
4778 s->flags |= SN_ERR_SRVCL;
4779 if (!(s->flags & SN_FINST_MASK))
4780 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02004781 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004782 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004783
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004784 /* read timeout : return a 504 to the client. */
4785 else if (rep->flags & BF_READ_TIMEOUT) {
4786 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004787 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004788
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004789 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004790 if (target_srv(&s->target)) {
4791 target_srv(&s->target)->counters.failed_resp++;
4792 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004793 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004794
Willy Tarreau90deb182010-01-07 00:20:41 +01004795 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004796 rep->analysers = 0;
4797 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004798 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004799 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004800 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02004801
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004802 if (!(s->flags & SN_ERR_MASK))
4803 s->flags |= SN_ERR_SRVTO;
4804 if (!(s->flags & SN_FINST_MASK))
4805 s->flags |= SN_FINST_H;
4806 return 0;
4807 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02004808
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004809 /* close from server */
4810 else if (rep->flags & BF_SHUTR) {
4811 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004812 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004813
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004814 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01004815 if (target_srv(&s->target)) {
4816 target_srv(&s->target)->counters.failed_resp++;
4817 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004818 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004819
Willy Tarreau90deb182010-01-07 00:20:41 +01004820 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004821 rep->analysers = 0;
4822 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004823 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004824 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004825 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01004826
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004827 if (!(s->flags & SN_ERR_MASK))
4828 s->flags |= SN_ERR_SRVCL;
4829 if (!(s->flags & SN_FINST_MASK))
4830 s->flags |= SN_FINST_H;
4831 return 0;
4832 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004833
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004834 /* write error to client (we don't send any message then) */
4835 else if (rep->flags & BF_WRITE_ERROR) {
4836 if (msg->err_pos >= 0)
Willy Tarreau078272e2010-12-12 12:46:33 +01004837 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004838
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004839 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004840 rep->analysers = 0;
Willy Tarreau90deb182010-01-07 00:20:41 +01004841 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004842
4843 if (!(s->flags & SN_ERR_MASK))
4844 s->flags |= SN_ERR_CLICL;
4845 if (!(s->flags & SN_FINST_MASK))
4846 s->flags |= SN_FINST_H;
4847
4848 /* process_session() will take care of the error */
4849 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004850 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004851
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004852 buffer_dont_close(rep);
4853 return 0;
4854 }
4855
4856 /* More interesting part now : we know that we have a complete
4857 * response which at least looks like HTTP. We have an indicator
4858 * of each header's length, so we can parse them quickly.
4859 */
4860
4861 if (unlikely(msg->err_pos >= 0))
Willy Tarreau078272e2010-12-12 12:46:33 +01004862 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004863
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004864 /*
4865 * 1: get the status code
4866 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01004867 n = msg->sol[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004868 if (n < 1 || n > 5)
4869 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004870 /* when the client triggers a 4xx from the server, it's most often due
4871 * to a missing object or permission. These events should be tracked
4872 * because if they happen often, it may indicate a brute force or a
4873 * vulnerability scan.
4874 */
4875 if (n == 4)
4876 session_inc_http_err_ctr(s);
4877
Willy Tarreau827aee92011-03-10 16:55:02 +01004878 if (target_srv(&s->target))
4879 target_srv(&s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004880
Willy Tarreau5b154472009-12-21 20:11:07 +01004881 /* check if the response is HTTP/1.1 or above */
4882 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01004883 ((msg->sol[5] > '1') ||
4884 ((msg->sol[5] == '1') &&
4885 (msg->sol[7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01004886 txn->flags |= TX_RES_VER_11;
4887
4888 /* "connection" has not been parsed yet */
Willy Tarreau60466522010-01-18 19:08:45 +01004889 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01004890
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004891 /* transfer length unknown*/
4892 txn->flags &= ~TX_RES_XFER_LEN;
4893
Willy Tarreau962c3f42010-01-10 00:15:35 +01004894 txn->status = strl2ui(msg->sol + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004895
Willy Tarreau39650402010-03-15 19:44:39 +01004896 /* Adjust server's health based on status code. Note: status codes 501
4897 * and 505 are triggered on demand by client request, so we must not
4898 * count them as server failures.
4899 */
Willy Tarreau827aee92011-03-10 16:55:02 +01004900 if (target_srv(&s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004901 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau827aee92011-03-10 16:55:02 +01004902 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004903 else
Willy Tarreau827aee92011-03-10 16:55:02 +01004904 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004905 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004906
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004907 /*
4908 * 2: check for cacheability.
4909 */
4910
4911 switch (txn->status) {
4912 case 200:
4913 case 203:
4914 case 206:
4915 case 300:
4916 case 301:
4917 case 410:
4918 /* RFC2616 @13.4:
4919 * "A response received with a status code of
4920 * 200, 203, 206, 300, 301 or 410 MAY be stored
4921 * by a cache (...) unless a cache-control
4922 * directive prohibits caching."
4923 *
4924 * RFC2616 @9.5: POST method :
4925 * "Responses to this method are not cacheable,
4926 * unless the response includes appropriate
4927 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004928 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004929 if (likely(txn->meth != HTTP_METH_POST) &&
4930 (s->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
4931 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4932 break;
4933 default:
4934 break;
4935 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004936
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004937 /*
4938 * 3: we may need to capture headers
4939 */
4940 s->logs.logwait &= ~LW_RESP;
4941 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->fe->rsp_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01004942 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004943 txn->rsp.cap, s->fe->rsp_cap);
4944
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004945 /* 4: determine the transfer-length.
4946 * According to RFC2616 #4.4, amended by the HTTPbis working group,
4947 * the presence of a message-body in a RESPONSE and its transfer length
4948 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004949 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004950 * All responses to the HEAD request method MUST NOT include a
4951 * message-body, even though the presence of entity-header fields
4952 * might lead one to believe they do. All 1xx (informational), 204
4953 * (No Content), and 304 (Not Modified) responses MUST NOT include a
4954 * message-body. All other responses do include a message-body,
4955 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004956 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004957 * 1. Any response which "MUST NOT" include a message-body (such as the
4958 * 1xx, 204 and 304 responses and any response to a HEAD request) is
4959 * always terminated by the first empty line after the header fields,
4960 * regardless of the entity-header fields present in the message.
4961 *
4962 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
4963 * the "chunked" transfer-coding (Section 6.2) is used, the
4964 * transfer-length is defined by the use of this transfer-coding.
4965 * If a Transfer-Encoding header field is present and the "chunked"
4966 * transfer-coding is not present, the transfer-length is defined by
4967 * the sender closing the connection.
4968 *
4969 * 3. If a Content-Length header field is present, its decimal value in
4970 * OCTETs represents both the entity-length and the transfer-length.
4971 * If a message is received with both a Transfer-Encoding header
4972 * field and a Content-Length header field, the latter MUST be ignored.
4973 *
4974 * 4. If the message uses the media type "multipart/byteranges", and
4975 * the transfer-length is not otherwise specified, then this self-
4976 * delimiting media type defines the transfer-length. This media
4977 * type MUST NOT be used unless the sender knows that the recipient
4978 * can parse it; the presence in a request of a Range header with
4979 * multiple byte-range specifiers from a 1.1 client implies that the
4980 * client can parse multipart/byteranges responses.
4981 *
4982 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004983 */
4984
4985 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01004986 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004987 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004988 * FIXME: should we parse anyway and return an error on chunked encoding ?
4989 */
4990 if (txn->meth == HTTP_METH_HEAD ||
4991 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004992 txn->status == 204 || txn->status == 304) {
4993 txn->flags |= TX_RES_XFER_LEN;
4994 goto skip_content_length;
4995 }
4996
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004997 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004998 ctx.idx = 0;
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01004999 while ((txn->flags & TX_RES_VER_11) &&
5000 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005001 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
5002 txn->flags |= (TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5003 else if (txn->flags & TX_RES_TE_CHNK) {
5004 /* bad transfer-encoding (chunked followed by something else) */
5005 use_close_only = 1;
5006 txn->flags &= ~(TX_RES_TE_CHNK | TX_RES_XFER_LEN);
5007 break;
5008 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005009 }
5010
5011 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5012 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005013 while (!(txn->flags & TX_RES_TE_CHNK) && !use_close_only &&
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005014 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
5015 signed long long cl;
5016
5017 if (!ctx.vlen)
5018 goto hdr_response_bad;
5019
5020 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl))
5021 goto hdr_response_bad; /* parse failure */
5022
5023 if (cl < 0)
5024 goto hdr_response_bad;
5025
Willy Tarreau124d9912011-03-01 20:30:48 +01005026 if ((txn->flags & TX_RES_CNT_LEN) && (msg->chunk_len != cl))
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005027 goto hdr_response_bad; /* already specified, was different */
5028
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005029 txn->flags |= TX_RES_CNT_LEN | TX_RES_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01005030 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005031 }
5032
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005033 /* FIXME: we should also implement the multipart/byterange method.
5034 * For now on, we resort to close mode in this case (unknown length).
5035 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005036skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005037
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005038 /* end of job, return OK */
5039 rep->analysers &= ~an_bit;
5040 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau90deb182010-01-07 00:20:41 +01005041 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005042 return 1;
5043}
5044
5045/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005046 * It normally returns 1 unless it wants to break. It relies on buffers flags,
5047 * and updates t->rep->analysers. It might make sense to explode it into several
5048 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005049 */
5050int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px)
5051{
5052 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005053 struct http_msg *msg = &txn->rsp;
5054 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01005055 struct cond_wordlist *wl;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005056
5057 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
5058 now_ms, __FUNCTION__,
5059 t,
5060 rep,
5061 rep->rex, rep->wex,
5062 rep->flags,
5063 rep->l,
5064 rep->analysers);
5065
Willy Tarreau655dce92009-11-08 13:10:58 +01005066 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005067 return 0;
5068
5069 rep->analysers &= ~an_bit;
5070 rep->analyse_exp = TICK_ETERNITY;
5071
Willy Tarreau5b154472009-12-21 20:11:07 +01005072 /* Now we have to check if we need to modify the Connection header.
5073 * This is more difficult on the response than it is on the request,
5074 * because we can have two different HTTP versions and we don't know
5075 * how the client will interprete a response. For instance, let's say
5076 * that the client sends a keep-alive request in HTTP/1.0 and gets an
5077 * HTTP/1.1 response without any header. Maybe it will bound itself to
5078 * HTTP/1.0 because it only knows about it, and will consider the lack
5079 * of header as a close, or maybe it knows HTTP/1.1 and can consider
5080 * the lack of header as a keep-alive. Thus we will use two flags
5081 * indicating how a request MAY be understood by the client. In case
5082 * of multiple possibilities, we'll fix the header to be explicit. If
5083 * ambiguous cases such as both close and keepalive are seen, then we
5084 * will fall back to explicit close. Note that we won't take risks with
5085 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01005086 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01005087 */
5088
Willy Tarreaudc008c52010-02-01 16:20:08 +01005089 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
5090 txn->status == 101)) {
5091 /* Either we've established an explicit tunnel, or we're
5092 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005093 * to understand the next protocols. We have to switch to tunnel
5094 * mode, so that we transfer the request and responses then let
5095 * this protocol pass unmodified. When we later implement specific
5096 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01005097 * header which contains information about that protocol for
5098 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005099 */
5100 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
5101 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01005102 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
5103 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
5104 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01005105 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01005106
Willy Tarreau60466522010-01-18 19:08:45 +01005107 /* on unknown transfer length, we must close */
5108 if (!(txn->flags & TX_RES_XFER_LEN) &&
5109 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5110 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01005111
Willy Tarreau60466522010-01-18 19:08:45 +01005112 /* now adjust header transformations depending on current state */
5113 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
5114 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5115 to_del |= 2; /* remove "keep-alive" on any response */
5116 if (!(txn->flags & TX_RES_VER_11))
5117 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005118 }
Willy Tarreau60466522010-01-18 19:08:45 +01005119 else { /* SCL / KAL */
5120 to_del |= 1; /* remove "close" on any response */
5121 if ((txn->flags & (TX_RES_VER_11|TX_REQ_VER_11)) == (TX_RES_VER_11|TX_REQ_VER_11))
5122 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01005123 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005124
Willy Tarreau60466522010-01-18 19:08:45 +01005125 /* Parse and remove some headers from the connection header */
5126 http_parse_connection_header(txn, msg, rep, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01005127
Willy Tarreau60466522010-01-18 19:08:45 +01005128 /* Some keep-alive responses are converted to Server-close if
5129 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01005130 */
Willy Tarreau60466522010-01-18 19:08:45 +01005131 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
5132 if ((txn->flags & TX_HDR_CONN_CLO) ||
5133 (txn->flags & (TX_HDR_CONN_KAL|TX_RES_VER_11)) == 0)
5134 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005135 }
Willy Tarreau5b154472009-12-21 20:11:07 +01005136 }
5137
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005138 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005139 /*
5140 * 3: we will have to evaluate the filters.
5141 * As opposed to version 1.2, now they will be evaluated in the
5142 * filters order and not in the header order. This means that
5143 * each filter has to be validated among all headers.
5144 *
5145 * Filters are tried with ->be first, then with ->fe if it is
5146 * different from ->be.
5147 */
5148
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005149 cur_proxy = t->be;
5150 while (1) {
5151 struct proxy *rule_set = cur_proxy;
5152
5153 /* try headers filters */
5154 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005155 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005156 return_bad_resp:
Willy Tarreau827aee92011-03-10 16:55:02 +01005157 if (target_srv(&t->target)) {
5158 target_srv(&t->target)->counters.failed_resp++;
5159 health_adjust(target_srv(&t->target), HANA_STATUS_HTTP_RSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005160 }
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005161 t->be->be_counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005162 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02005163 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005164 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005165 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01005166 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreau8e89b842009-10-18 23:56:35 +02005167 stream_int_retnclose(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005168 if (!(t->flags & SN_ERR_MASK))
5169 t->flags |= SN_ERR_PRXCOND;
5170 if (!(t->flags & SN_FINST_MASK))
5171 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02005172 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005173 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005174 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005175
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005176 /* has the response been denied ? */
5177 if (txn->flags & TX_SVDENY) {
Willy Tarreau827aee92011-03-10 16:55:02 +01005178 if (target_srv(&t->target))
5179 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005180
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005181 t->be->be_counters.denied_resp++;
5182 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005183 if (t->listener->counters)
5184 t->listener->counters->denied_resp++;
5185
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005186 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01005187 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005188
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005189 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005190 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02005191 if (txn->status < 200)
5192 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005193 if (wl->cond) {
5194 int ret = acl_exec_cond(wl->cond, px, t, txn, ACL_DIR_RTR);
5195 ret = acl_pass(ret);
5196 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
5197 ret = !ret;
5198 if (!ret)
5199 continue;
5200 }
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01005201 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005202 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02005203 }
5204
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005205 /* check whether we're already working on the frontend */
5206 if (cur_proxy == t->fe)
5207 break;
5208 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005209 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005210
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005211 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005212 * We may be facing a 100-continue response, in which case this
5213 * is not the right response, and we're waiting for the next one.
5214 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005215 * next one.
5216 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005217 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005218 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau962c3f42010-01-10 00:15:35 +01005219 buffer_forward(rep, rep->lr - msg->sol);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005220 msg->msg_state = HTTP_MSG_RPBEFORE;
5221 txn->status = 0;
5222 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
5223 return 1;
5224 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005225 else if (unlikely(txn->status < 200))
5226 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005227
5228 /* we don't have any 1xx status code now */
5229
5230 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005231 * 4: check for server cookie.
5232 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005233 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
5234 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005235 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005236
Willy Tarreaubaaee002006-06-26 02:48:02 +02005237
Willy Tarreaua15645d2007-03-18 16:22:39 +01005238 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005239 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005240 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005241 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005242 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005243
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005244 /*
5245 * 6: add server cookie in the response if needed
5246 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005247 if (target_srv(&t->target) && (t->be->options & PR_O_COOK_INS) &&
Willy Tarreauba4c5be2010-10-23 12:46:42 +02005248 !((txn->flags & TX_SCK_FOUND) && (t->be->options2 & PR_O2_COOK_PSV)) &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02005249 (!(t->flags & SN_DIRECT) ||
5250 ((t->be->cookie_maxidle || txn->cookie_last_date) &&
5251 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
5252 (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
5253 (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005254 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST)) &&
5255 !(t->flags & SN_IGNORE_PRST)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005256 int len;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005257 /* the server is known, it's not the one the client requested, or the
5258 * cookie's last seen date needs to be refreshed. We have to
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005259 * insert a set-cookie here, except if we want to insert only on POST
5260 * requests and this one isn't. Note that servers which don't have cookies
5261 * (eg: some backup servers) will return a full cookie removal request.
5262 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005263 if (!target_srv(&t->target)->cookie) {
Willy Tarreauef4f3912010-10-07 21:00:29 +02005264 len = sprintf(trash,
5265 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5266 t->be->cookie_name);
5267 }
5268 else {
Willy Tarreau827aee92011-03-10 16:55:02 +01005269 len = sprintf(trash, "Set-Cookie: %s=%s", t->be->cookie_name, target_srv(&t->target)->cookie);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005270
5271 if (t->be->cookie_maxidle || t->be->cookie_maxlife) {
5272 /* emit last_date, which is mandatory */
5273 trash[len++] = COOKIE_DELIM_DATE;
5274 s30tob64((date.tv_sec+3) >> 2, trash + len); len += 5;
5275 if (t->be->cookie_maxlife) {
5276 /* emit first_date, which is either the original one or
5277 * the current date.
5278 */
5279 trash[len++] = COOKIE_DELIM_DATE;
5280 s30tob64(txn->cookie_first_date ?
5281 txn->cookie_first_date >> 2 :
5282 (date.tv_sec+3) >> 2, trash + len);
5283 len += 5;
5284 }
5285 }
5286 len += sprintf(trash + len, "; path=/");
5287 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005288
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005289 if (t->be->cookie_domain)
5290 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02005291
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005292 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005293 trash, len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005294 goto return_bad_resp;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005295
Willy Tarreauf1348312010-10-07 15:54:11 +02005296 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau827aee92011-03-10 16:55:02 +01005297 if (target_srv(&t->target)->cookie && (t->flags & SN_DIRECT))
Willy Tarreauef4f3912010-10-07 21:00:29 +02005298 /* the server did not change, only the date was updated */
5299 txn->flags |= TX_SCK_UPDATED;
5300 else
5301 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005302
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005303 /* Here, we will tell an eventual cache on the client side that we don't
5304 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5305 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5306 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
5307 */
5308 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02005309
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005310 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
5311
5312 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01005313 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005314 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005315 }
5316 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005317
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005318 /*
5319 * 7: check if result will be cacheable with a cookie.
5320 * We'll block the response if security checks have caught
5321 * nasty things such as a cacheable cookie.
5322 */
Willy Tarreauf1348312010-10-07 15:54:11 +02005323 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5324 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01005325 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005326
5327 /* we're in presence of a cacheable response containing
5328 * a set-cookie header. We'll block it as requested by
5329 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005330 */
Willy Tarreau827aee92011-03-10 16:55:02 +01005331 if (target_srv(&t->target))
5332 target_srv(&t->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005333
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005334 t->be->be_counters.denied_resp++;
5335 t->fe->fe_counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005336 if (t->listener->counters)
5337 t->listener->counters->denied_resp++;
5338
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005339 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau827aee92011-03-10 16:55:02 +01005340 t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005341 send_log(t->be, LOG_ALERT,
5342 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau827aee92011-03-10 16:55:02 +01005343 t->be->id, target_srv(&t->target) ? target_srv(&t->target)->id : "<dispatch>");
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005344 goto return_srv_prx_502;
5345 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005346
5347 /*
Willy Tarreau60466522010-01-18 19:08:45 +01005348 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005349 */
Willy Tarreau60466522010-01-18 19:08:45 +01005350 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
5351 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE)) {
5352 unsigned int want_flags = 0;
5353
5354 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5355 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5356 /* we want a keep-alive response here. Keep-alive header
5357 * required if either side is not 1.1.
5358 */
5359 if ((txn->flags & (TX_REQ_VER_11|TX_RES_VER_11)) != (TX_REQ_VER_11|TX_RES_VER_11))
5360 want_flags |= TX_CON_KAL_SET;
5361 }
5362 else {
5363 /* we want a close response here. Close header required if
5364 * the server is 1.1, regardless of the client.
5365 */
5366 if (txn->flags & TX_RES_VER_11)
5367 want_flags |= TX_CON_CLO_SET;
5368 }
5369
5370 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
5371 http_change_connection_header(txn, msg, rep, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005372 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005373
Willy Tarreau5843d1a2010-02-01 15:13:32 +01005374 skip_header_mangling:
Willy Tarreaudc008c52010-02-01 16:20:08 +01005375 if ((txn->flags & TX_RES_XFER_LEN) ||
5376 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005377 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01005378
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005379 /*************************************************************
5380 * OK, that's finished for the headers. We have done what we *
5381 * could. Let's switch to the DATA state. *
5382 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02005383
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005384 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005385
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005386 /* if the user wants to log as soon as possible, without counting
5387 * bytes from the server, then this is the right moment. We have
5388 * to temporarily assign bytes_out to log what we currently have.
5389 */
5390 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
5391 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
5392 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01005393 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005394 t->logs.bytes_out = 0;
5395 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005396
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005397 /* Note: we must not try to cheat by jumping directly to DATA,
5398 * otherwise we would not let the client side wake up.
5399 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01005400
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005401 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005402 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005403 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005404}
Willy Tarreaua15645d2007-03-18 16:22:39 +01005405
Willy Tarreaud98cf932009-12-27 22:54:55 +01005406/* This function is an analyser which forwards response body (including chunk
5407 * sizes if any). It is called as soon as we must forward, even if we forward
5408 * zero byte. The only situation where it must not be called is when we're in
5409 * tunnel mode and we want to forward till the close. It's used both to forward
5410 * remaining data and to resync after end of body. It expects the msg_state to
5411 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5412 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005413 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreaud98cf932009-12-27 22:54:55 +01005414 * bytes of pending data + the headers if not already done (between som and sov).
5415 * It eventually adjusts som to match sov after the data in between have been sent.
5416 */
5417int http_response_forward_body(struct session *s, struct buffer *res, int an_bit)
5418{
5419 struct http_txn *txn = &s->txn;
5420 struct http_msg *msg = &s->txn.rsp;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005421 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005422
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005423 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5424 return 0;
5425
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005426 if ((res->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005427 ((res->flags & BF_SHUTW) && (res->to_forward || res->send_max)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01005428 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005429 /* Output closed while we were sending data. We must abort and
5430 * wake the other side up.
5431 */
5432 msg->msg_state = HTTP_MSG_ERROR;
5433 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005434 return 1;
5435 }
5436
Willy Tarreau4fe41902010-06-07 22:27:41 +02005437 /* in most states, we should abort in case of early close */
5438 buffer_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005439
Willy Tarreaud98cf932009-12-27 22:54:55 +01005440 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5441 /* we have msg->col and msg->sov which both point to the first
5442 * byte of message body. msg->som still points to the beginning
5443 * of the message. We must save the body in req->lr because it
5444 * survives buffer re-alignments.
5445 */
5446 res->lr = res->data + msg->sov;
5447 if (txn->flags & TX_RES_TE_CHNK)
5448 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5449 else {
5450 msg->msg_state = HTTP_MSG_DATA;
5451 }
5452 }
5453
Willy Tarreaud98cf932009-12-27 22:54:55 +01005454 while (1) {
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005455 int bytes;
5456
Willy Tarreau610ecce2010-01-04 21:15:02 +01005457 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01005458 /* we may have some data pending */
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005459 bytes = msg->sov - msg->som;
5460 if (msg->chunk_len || bytes) {
Willy Tarreau638cd022010-01-03 07:42:04 +01005461 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005462 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5463 bytes += res->size;
5464 msg->chunk_len += (unsigned int)bytes;
5465 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreau638cd022010-01-03 07:42:04 +01005466 }
5467
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005468
Willy Tarreaucaabe412010-01-03 23:08:28 +01005469 if (msg->msg_state == HTTP_MSG_DATA) {
5470 /* must still forward */
5471 if (res->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005472 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005473
5474 /* nothing left to forward */
5475 if (txn->flags & TX_RES_TE_CHNK)
5476 msg->msg_state = HTTP_MSG_DATA_CRLF;
5477 else
5478 msg->msg_state = HTTP_MSG_DONE;
5479 }
5480 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005481 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01005482 * set ->sov to point to the body and switch to DATA or TRAILERS state.
5483 */
5484 int ret = http_parse_chunk_size(res, msg);
5485
5486 if (!ret)
5487 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005488 else if (ret < 0) {
5489 if (msg->err_pos >= 0)
5490 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005491 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005492 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005493 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreau57f5c122010-12-02 00:37:14 +01005494 /* Don't set a PUSH at the end of that chunk if it's not the last one */
5495 if (msg->msg_state == HTTP_MSG_DATA)
5496 res->flags |= BF_EXPECT_MORE;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005497 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005498 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
5499 /* we want the CRLF after the data */
5500 int ret;
5501
Willy Tarreaud3347ee2010-01-04 02:02:25 +01005502 res->lr = res->w + res->send_max;
5503 if (res->lr >= res->data + res->size)
5504 res->lr -= res->size;
5505
Willy Tarreaud98cf932009-12-27 22:54:55 +01005506 ret = http_skip_chunk_crlf(res, msg);
5507
5508 if (!ret)
5509 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005510 else if (ret < 0) {
5511 if (msg->err_pos >= 0)
5512 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_DATA_CRLF, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005513 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005514 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005515 /* we're in MSG_CHUNK_SIZE now */
5516 }
5517 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
5518 int ret = http_forward_trailers(res, msg);
Willy Tarreau5523b322009-12-29 12:05:52 +01005519
Willy Tarreaud98cf932009-12-27 22:54:55 +01005520 if (ret == 0)
5521 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005522 else if (ret < 0) {
5523 if (msg->err_pos >= 0)
5524 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005525 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005526 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005527 /* we're in HTTP_MSG_DONE now */
5528 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005529 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005530 int old_state = msg->msg_state;
5531
Willy Tarreau610ecce2010-01-04 21:15:02 +01005532 /* other states, DONE...TUNNEL */
Willy Tarreau4fe41902010-06-07 22:27:41 +02005533 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005534 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5535 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5536 buffer_dont_close(res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005537 if (http_resync_states(s)) {
5538 http_silent_debug(__LINE__, s);
5539 /* some state changes occurred, maybe the analyser
5540 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01005541 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005542 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5543 if (res->flags & BF_SHUTW) {
5544 /* response errors are most likely due to
5545 * the client aborting the transfer.
5546 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005547 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005548 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005549 if (msg->err_pos >= 0)
5550 http_capture_bad_message(&s->be->invalid_rep, s, res, msg, old_state, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005551 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005552 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005553 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01005554 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005555 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005556 }
5557 }
5558
Willy Tarreaud98cf932009-12-27 22:54:55 +01005559 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005560 /* stop waiting for data if the input is closed before the end */
Willy Tarreau40dba092010-03-04 18:14:51 +01005561 if (res->flags & BF_SHUTR) {
5562 if (!(s->flags & SN_ERR_MASK))
5563 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005564 s->be->be_counters.srv_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005565 if (target_srv(&s->target))
5566 target_srv(&s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005567 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01005568 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005569
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005570 if (res->flags & BF_SHUTW)
5571 goto aborted_xfer;
5572
Willy Tarreau40dba092010-03-04 18:14:51 +01005573 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005574 if (!s->req->analysers)
5575 goto return_bad_res;
5576
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005577 /* forward any pending data */
5578 bytes = msg->sov - msg->som;
5579 if (msg->chunk_len || bytes) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005580 msg->som = msg->sov;
Willy Tarreaud8ee85a2011-03-28 16:06:28 +02005581 if (likely(bytes < 0)) /* sov may have wrapped at the end */
5582 bytes += res->size;
5583 msg->chunk_len += (unsigned int)bytes;
5584 msg->chunk_len -= buffer_forward(res, msg->chunk_len);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005585 }
5586
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005587 /* When TE: chunked is used, we need to get there again to parse remaining
5588 * chunks even if the server has closed, so we don't want to set BF_DONTCLOSE.
5589 * Similarly, with keep-alive on the client side, we don't want to forward a
5590 * close.
5591 */
5592 if ((txn->flags & TX_RES_TE_CHNK) ||
5593 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5594 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5595 buffer_dont_close(res);
5596
Willy Tarreaud98cf932009-12-27 22:54:55 +01005597 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005598 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005599 return 0;
5600
Willy Tarreau40dba092010-03-04 18:14:51 +01005601 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005602 s->be->be_counters.failed_resp++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005603 if (target_srv(&s->target))
5604 target_srv(&s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005605
5606 return_bad_res_stats_ok:
Willy Tarreaud98cf932009-12-27 22:54:55 +01005607 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01005608 /* don't send any error message as we're in the body */
5609 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005610 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005611 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau827aee92011-03-10 16:55:02 +01005612 if (target_srv(&s->target))
5613 health_adjust(target_srv(&s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005614
5615 if (!(s->flags & SN_ERR_MASK))
5616 s->flags |= SN_ERR_PRXCOND;
5617 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01005618 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005619 return 0;
5620
5621 aborted_xfer:
5622 txn->rsp.msg_state = HTTP_MSG_ERROR;
5623 /* don't send any error message as we're in the body */
5624 stream_int_retnclose(res->cons, NULL);
5625 res->analysers = 0;
5626 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
5627
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005628 s->fe->fe_counters.cli_aborts++;
5629 s->be->be_counters.cli_aborts++;
Willy Tarreau827aee92011-03-10 16:55:02 +01005630 if (target_srv(&s->target))
5631 target_srv(&s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005632
5633 if (!(s->flags & SN_ERR_MASK))
5634 s->flags |= SN_ERR_CLICL;
5635 if (!(s->flags & SN_FINST_MASK))
5636 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005637 return 0;
5638}
5639
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005640/* Iterate the same filter through all request headers.
5641 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005642 * Since it can manage the switch to another backend, it updates the per-proxy
5643 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005644 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005645int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005646{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005647 char term;
5648 char *cur_ptr, *cur_end, *cur_next;
5649 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005650 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005651 struct hdr_idx_elem *cur_hdr;
5652 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01005653
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005654 last_hdr = 0;
5655
Willy Tarreau962c3f42010-01-10 00:15:35 +01005656 cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005657 old_idx = 0;
5658
5659 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005660 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005661 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005662 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005663 (exp->action == ACT_ALLOW ||
5664 exp->action == ACT_DENY ||
5665 exp->action == ACT_TARPIT))
5666 return 0;
5667
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005668 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005669 if (!cur_idx)
5670 break;
5671
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005672 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005673 cur_ptr = cur_next;
5674 cur_end = cur_ptr + cur_hdr->len;
5675 cur_next = cur_end + cur_hdr->cr + 1;
5676
5677 /* Now we have one header between cur_ptr and cur_end,
5678 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005679 */
5680
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005681 /* The annoying part is that pattern matching needs
5682 * that we modify the contents to null-terminate all
5683 * strings before testing them.
5684 */
5685
5686 term = *cur_end;
5687 *cur_end = '\0';
5688
5689 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5690 switch (exp->action) {
5691 case ACT_SETBE:
5692 /* It is not possible to jump a second time.
5693 * FIXME: should we return an HTTP/500 here so that
5694 * the admin knows there's a problem ?
5695 */
5696 if (t->be != t->fe)
5697 break;
5698
5699 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005700 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005701 last_hdr = 1;
5702 break;
5703
5704 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005705 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005706 last_hdr = 1;
5707 break;
5708
5709 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005710 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005711 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005712
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005713 t->fe->fe_counters.denied_req++;
5714 if (t->fe != t->be)
5715 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005716 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005717 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005718
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005719 break;
5720
5721 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005722 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005723 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005724
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005725 t->fe->fe_counters.denied_req++;
5726 if (t->fe != t->be)
5727 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005728 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005729 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005730
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005731 break;
5732
5733 case ACT_REPLACE:
5734 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5735 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5736 /* FIXME: if the user adds a newline in the replacement, the
5737 * index will not be recalculated for now, and the new line
5738 * will not be counted as a new header.
5739 */
5740
5741 cur_end += delta;
5742 cur_next += delta;
5743 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005744 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005745 break;
5746
5747 case ACT_REMOVE:
5748 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
5749 cur_next += delta;
5750
Willy Tarreaufa355d42009-11-29 18:12:29 +01005751 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005752 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5753 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005754 cur_hdr->len = 0;
5755 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01005756 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005757 break;
5758
5759 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005760 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005761 if (cur_end)
5762 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005763
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005764 /* keep the link from this header to next one in case of later
5765 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005766 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005767 old_idx = cur_idx;
5768 }
5769 return 0;
5770}
5771
5772
5773/* Apply the filter to the request line.
5774 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5775 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005776 * Since it can manage the switch to another backend, it updates the per-proxy
5777 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005778 */
5779int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
5780{
5781 char term;
5782 char *cur_ptr, *cur_end;
5783 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005784 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005785 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005786
Willy Tarreau58f10d72006-12-04 02:26:12 +01005787
Willy Tarreau3d300592007-03-18 18:34:41 +01005788 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005789 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005790 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005791 (exp->action == ACT_ALLOW ||
5792 exp->action == ACT_DENY ||
5793 exp->action == ACT_TARPIT))
5794 return 0;
5795 else if (exp->action == ACT_REMOVE)
5796 return 0;
5797
5798 done = 0;
5799
Willy Tarreau962c3f42010-01-10 00:15:35 +01005800 cur_ptr = txn->req.sol;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005801 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005802
5803 /* Now we have the request line between cur_ptr and cur_end */
5804
5805 /* The annoying part is that pattern matching needs
5806 * that we modify the contents to null-terminate all
5807 * strings before testing them.
5808 */
5809
5810 term = *cur_end;
5811 *cur_end = '\0';
5812
5813 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5814 switch (exp->action) {
5815 case ACT_SETBE:
5816 /* It is not possible to jump a second time.
5817 * FIXME: should we return an HTTP/500 here so that
5818 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01005819 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005820 if (t->be != t->fe)
5821 break;
5822
5823 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005824 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005825 done = 1;
5826 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005827
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005828 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005829 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005830 done = 1;
5831 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005832
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005833 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005834 txn->flags |= TX_CLDENY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005835
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005836 t->fe->fe_counters.denied_req++;
5837 if (t->fe != t->be)
5838 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005839 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005840 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005841
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005842 done = 1;
5843 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005844
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005845 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005846 txn->flags |= TX_CLTARPIT;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005847
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005848 t->fe->fe_counters.denied_req++;
5849 if (t->fe != t->be)
5850 t->be->be_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005851 if (t->listener->counters)
Willy Tarreaubb695392010-06-23 08:43:37 +02005852 t->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005853
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005854 done = 1;
5855 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005856
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005857 case ACT_REPLACE:
5858 *cur_end = term; /* restore the string terminator */
5859 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5860 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5861 /* FIXME: if the user adds a newline in the replacement, the
5862 * index will not be recalculated for now, and the new line
5863 * will not be counted as a new header.
5864 */
Willy Tarreaua496b602006-12-17 23:15:24 +01005865
Willy Tarreaufa355d42009-11-29 18:12:29 +01005866 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005867 cur_end += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005868 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005869 HTTP_MSG_RQMETH,
5870 cur_ptr, cur_end + 1,
5871 NULL, NULL);
5872 if (unlikely(!cur_end))
5873 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01005874
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005875 /* we have a full request and we know that we have either a CR
5876 * or an LF at <ptr>.
5877 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005878 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
5879 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005880 /* there is no point trying this regex on headers */
5881 return 1;
5882 }
5883 }
5884 *cur_end = term; /* restore the string terminator */
5885 return done;
5886}
Willy Tarreau97de6242006-12-27 17:18:38 +01005887
Willy Tarreau58f10d72006-12-04 02:26:12 +01005888
Willy Tarreau58f10d72006-12-04 02:26:12 +01005889
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005890/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01005891 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005892 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01005893 * unparsable request. Since it can manage the switch to another backend, it
5894 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005895 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005896int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005897{
Willy Tarreau6c123b12010-01-28 20:22:06 +01005898 struct http_txn *txn = &s->txn;
5899 struct hdr_exp *exp;
5900
5901 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005902 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005903
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005904 /*
5905 * The interleaving of transformations and verdicts
5906 * makes it difficult to decide to continue or stop
5907 * the evaluation.
5908 */
5909
Willy Tarreau6c123b12010-01-28 20:22:06 +01005910 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
5911 break;
5912
Willy Tarreau3d300592007-03-18 18:34:41 +01005913 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005914 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01005915 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005916 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005917
5918 /* if this filter had a condition, evaluate it now and skip to
5919 * next filter if the condition does not match.
5920 */
5921 if (exp->cond) {
5922 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_REQ);
5923 ret = acl_pass(ret);
5924 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
5925 ret = !ret;
5926
5927 if (!ret)
5928 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005929 }
5930
5931 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005932 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005933 if (unlikely(ret < 0))
5934 return -1;
5935
5936 if (likely(ret == 0)) {
5937 /* The filter did not match the request, it can be
5938 * iterated through all headers.
5939 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005940 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005941 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005942 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005943 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005944}
5945
5946
Willy Tarreaua15645d2007-03-18 16:22:39 +01005947
Willy Tarreau58f10d72006-12-04 02:26:12 +01005948/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005949 * Try to retrieve the server associated to the appsession.
5950 * If the server is found, it's assigned to the session.
5951 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01005952void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005953 struct http_txn *txn = &t->txn;
5954 appsess *asession = NULL;
5955 char *sessid_temp = NULL;
5956
Cyril Bontéb21570a2009-11-29 20:04:48 +01005957 if (len > t->be->appsession_len) {
5958 len = t->be->appsession_len;
5959 }
5960
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005961 if (t->be->options2 & PR_O2_AS_REQL) {
5962 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005963 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005964 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005965 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005966 }
5967
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005968 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005969 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
5970 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
5971 return;
5972 }
5973
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005974 memcpy(txn->sessid, buf, len);
5975 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005976 }
5977
5978 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
5979 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
5980 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
5981 return;
5982 }
5983
Cyril Bontéb21570a2009-11-29 20:04:48 +01005984 memcpy(sessid_temp, buf, len);
5985 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005986
5987 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
5988 /* free previously allocated memory */
5989 pool_free2(apools.sessid, sessid_temp);
5990
5991 if (asession != NULL) {
5992 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
5993 if (!(t->be->options2 & PR_O2_AS_REQL))
5994 asession->request_count++;
5995
5996 if (asession->serverid != NULL) {
5997 struct server *srv = t->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02005998
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005999 while (srv) {
6000 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01006001 if ((srv->state & SRV_RUNNING) ||
6002 (t->be->options & PR_O_PERSIST) ||
6003 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006004 /* we found the server and it's usable */
6005 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01006006 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006007 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006008 set_target_server(&t->target, srv);
Willy Tarreau664beb82011-03-10 11:38:29 +01006009
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006010 break;
6011 } else {
6012 txn->flags &= ~TX_CK_MASK;
6013 txn->flags |= TX_CK_DOWN;
6014 }
6015 }
6016 srv = srv->next;
6017 }
6018 }
6019 }
6020}
6021
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006022/* Find the end of a cookie value contained between <s> and <e>. It works the
6023 * same way as with headers above except that the semi-colon also ends a token.
6024 * See RFC2965 for more information. Note that it requires a valid header to
6025 * return a valid result.
6026 */
6027char *find_cookie_value_end(char *s, const char *e)
6028{
6029 int quoted, qdpair;
6030
6031 quoted = qdpair = 0;
6032 for (; s < e; s++) {
6033 if (qdpair) qdpair = 0;
6034 else if (quoted) {
6035 if (*s == '\\') qdpair = 1;
6036 else if (*s == '"') quoted = 0;
6037 }
6038 else if (*s == '"') quoted = 1;
6039 else if (*s == ',' || *s == ';') return s;
6040 }
6041 return s;
6042}
6043
6044/* Delete a value in a header between delimiters <from> and <next> in buffer
6045 * <buf>. The number of characters displaced is returned, and the pointer to
6046 * the first delimiter is updated if required. The function tries as much as
6047 * possible to respect the following principles :
6048 * - replace <from> delimiter by the <next> one unless <from> points to a
6049 * colon, in which case <next> is simply removed
6050 * - set exactly one space character after the new first delimiter, unless
6051 * there are not enough characters in the block being moved to do so.
6052 * - remove unneeded spaces before the previous delimiter and after the new
6053 * one.
6054 *
6055 * It is the caller's responsibility to ensure that :
6056 * - <from> points to a valid delimiter or the colon ;
6057 * - <next> points to a valid delimiter or the final CR/LF ;
6058 * - there are non-space chars before <from> ;
6059 * - there is a CR/LF at or after <next>.
6060 */
6061int del_hdr_value(struct buffer *buf, char **from, char *next)
6062{
6063 char *prev = *from;
6064
6065 if (*prev == ':') {
6066 /* We're removing the first value, preserve the colon and add a
6067 * space if possible.
6068 */
6069 if (!http_is_crlf[(unsigned char)*next])
6070 next++;
6071 prev++;
6072 if (prev < next)
6073 *prev++ = ' ';
6074
6075 while (http_is_spht[(unsigned char)*next])
6076 next++;
6077 } else {
6078 /* Remove useless spaces before the old delimiter. */
6079 while (http_is_spht[(unsigned char)*(prev-1)])
6080 prev--;
6081 *from = prev;
6082
6083 /* copy the delimiter and if possible a space if we're
6084 * not at the end of the line.
6085 */
6086 if (!http_is_crlf[(unsigned char)*next]) {
6087 *prev++ = *next++;
6088 if (prev + 1 < next)
6089 *prev++ = ' ';
6090 while (http_is_spht[(unsigned char)*next])
6091 next++;
6092 }
6093 }
6094 return buffer_replace2(buf, prev, next, NULL, 0);
6095}
6096
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006097/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006098 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006099 * desirable to call it only when needed. This code is quite complex because
6100 * of the multiple very crappy and ambiguous syntaxes we have to support. it
6101 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01006102 */
6103void manage_client_side_cookies(struct session *t, struct buffer *req)
6104{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006105 struct http_txn *txn = &t->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006106 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006107 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006108 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
6109 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006110
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006111 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01006112 old_idx = 0;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006113 hdr_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006114
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006115 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006116 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006117 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006118
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006119 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006120 hdr_beg = hdr_next;
6121 hdr_end = hdr_beg + cur_hdr->len;
6122 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006123
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006124 /* We have one full header between hdr_beg and hdr_end, and the
6125 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01006126 * "Cookie:" headers.
6127 */
6128
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006129 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006130 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006131 old_idx = cur_idx;
6132 continue;
6133 }
6134
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006135 del_from = NULL; /* nothing to be deleted */
6136 preserve_hdr = 0; /* assume we may kill the whole header */
6137
Willy Tarreau58f10d72006-12-04 02:26:12 +01006138 /* Now look for cookies. Conforming to RFC2109, we have to support
6139 * attributes whose name begin with a '$', and associate them with
6140 * the right cookie, if we want to delete this cookie.
6141 * So there are 3 cases for each cookie read :
6142 * 1) it's a special attribute, beginning with a '$' : ignore it.
6143 * 2) it's a server id cookie that we *MAY* want to delete : save
6144 * some pointers on it (last semi-colon, beginning of cookie...)
6145 * 3) it's an application cookie : we *MAY* have to delete a previous
6146 * "special" cookie.
6147 * At the end of loop, if a "special" cookie remains, we may have to
6148 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006149 * *MUST* delete it.
6150 *
6151 * Note: RFC2965 is unclear about the processing of spaces around
6152 * the equal sign in the ATTR=VALUE form. A careful inspection of
6153 * the RFC explicitly allows spaces before it, and not within the
6154 * tokens (attrs or values). An inspection of RFC2109 allows that
6155 * too but section 10.1.3 lets one think that spaces may be allowed
6156 * after the equal sign too, resulting in some (rare) buggy
6157 * implementations trying to do that. So let's do what servers do.
6158 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
6159 * allowed quoted strings in values, with any possible character
6160 * after a backslash, including control chars and delimitors, which
6161 * causes parsing to become ambiguous. Browsers also allow spaces
6162 * within values even without quotes.
6163 *
6164 * We have to keep multiple pointers in order to support cookie
6165 * removal at the beginning, middle or end of header without
6166 * corrupting the header. All of these headers are valid :
6167 *
6168 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
6169 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
6170 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
6171 * | | | | | | | | |
6172 * | | | | | | | | hdr_end <--+
6173 * | | | | | | | +--> next
6174 * | | | | | | +----> val_end
6175 * | | | | | +-----------> val_beg
6176 * | | | | +--------------> equal
6177 * | | | +----------------> att_end
6178 * | | +---------------------> att_beg
6179 * | +--------------------------> prev
6180 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01006181 */
6182
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006183 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
6184 /* Iterate through all cookies on this line */
6185
6186 /* find att_beg */
6187 att_beg = prev + 1;
6188 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6189 att_beg++;
6190
6191 /* find att_end : this is the first character after the last non
6192 * space before the equal. It may be equal to hdr_end.
6193 */
6194 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006195
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006196 while (equal < hdr_end) {
6197 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01006198 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006199 if (http_is_spht[(unsigned char)*equal++])
6200 continue;
6201 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006202 }
6203
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006204 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6205 * is between <att_beg> and <equal>, both may be identical.
6206 */
6207
6208 /* look for end of cookie if there is an equal sign */
6209 if (equal < hdr_end && *equal == '=') {
6210 /* look for the beginning of the value */
6211 val_beg = equal + 1;
6212 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6213 val_beg++;
6214
6215 /* find the end of the value, respecting quotes */
6216 next = find_cookie_value_end(val_beg, hdr_end);
6217
6218 /* make val_end point to the first white space or delimitor after the value */
6219 val_end = next;
6220 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6221 val_end--;
6222 } else {
6223 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01006224 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006225
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006226 /* We have nothing to do with attributes beginning with '$'. However,
6227 * they will automatically be removed if a header before them is removed,
6228 * since they're supposed to be linked together.
6229 */
6230 if (*att_beg == '$')
6231 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006232
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006233 /* Ignore cookies with no equal sign */
6234 if (equal == next) {
6235 /* This is not our cookie, so we must preserve it. But if we already
6236 * scheduled another cookie for removal, we cannot remove the
6237 * complete header, but we can remove the previous block itself.
6238 */
6239 preserve_hdr = 1;
6240 if (del_from != NULL) {
6241 int delta = del_hdr_value(req, &del_from, prev);
6242 val_end += delta;
6243 next += delta;
6244 hdr_end += delta;
6245 hdr_next += delta;
6246 cur_hdr->len += delta;
6247 http_msg_move_end(&txn->req, delta);
6248 prev = del_from;
6249 del_from = NULL;
6250 }
6251 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006252 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006253
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006254 /* if there are spaces around the equal sign, we need to
6255 * strip them otherwise we'll get trouble for cookie captures,
6256 * or even for rewrites. Since this happens extremely rarely,
6257 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006258 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006259 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6260 int stripped_before = 0;
6261 int stripped_after = 0;
6262
6263 if (att_end != equal) {
6264 stripped_before = buffer_replace2(req, att_end, equal, NULL, 0);
6265 equal += stripped_before;
6266 val_beg += stripped_before;
6267 }
6268
6269 if (val_beg > equal + 1) {
6270 stripped_after = buffer_replace2(req, equal + 1, val_beg, NULL, 0);
6271 val_beg += stripped_after;
6272 stripped_before += stripped_after;
6273 }
6274
6275 val_end += stripped_before;
6276 next += stripped_before;
6277 hdr_end += stripped_before;
6278 hdr_next += stripped_before;
6279 cur_hdr->len += stripped_before;
6280 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006281 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006282 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006283
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006284 /* First, let's see if we want to capture this cookie. We check
6285 * that we don't already have a client side cookie, because we
6286 * can only capture one. Also as an optimisation, we ignore
6287 * cookies shorter than the declared name.
6288 */
6289 if (t->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6290 (val_end - att_beg >= t->fe->capture_namelen) &&
6291 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
6292 int log_len = val_end - att_beg;
6293
6294 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
6295 Alert("HTTP logging : out of memory.\n");
6296 } else {
6297 if (log_len > t->fe->capture_len)
6298 log_len = t->fe->capture_len;
6299 memcpy(txn->cli_cookie, att_beg, log_len);
6300 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006301 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006302 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006303
Willy Tarreaubca99692010-10-06 19:25:55 +02006304 /* Persistence cookies in passive, rewrite or insert mode have the
6305 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006306 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006307 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006308 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006309 * For cookies in prefix mode, the form is :
6310 *
6311 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006312 */
6313 if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6314 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
6315 struct server *srv = t->be->srv;
6316 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006317
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006318 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6319 * have the server ID between val_beg and delim, and the original cookie between
6320 * delim+1 and val_end. Otherwise, delim==val_end :
6321 *
6322 * Cookie: NAME=SRV; # in all but prefix modes
6323 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6324 * | || || | |+-> next
6325 * | || || | +--> val_end
6326 * | || || +---------> delim
6327 * | || |+------------> val_beg
6328 * | || +-------------> att_end = equal
6329 * | |+-----------------> att_beg
6330 * | +------------------> prev
6331 * +-------------------------> hdr_beg
6332 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006333
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006334 if (t->be->options & PR_O_COOK_PFX) {
6335 for (delim = val_beg; delim < val_end; delim++)
6336 if (*delim == COOKIE_DELIM)
6337 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006338 } else {
6339 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006340 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006341 /* Now check if the cookie contains a date field, which would
6342 * appear after a vertical bar ('|') just after the server name
6343 * and before the delimiter.
6344 */
6345 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6346 if (vbar1) {
6347 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006348 * right is the last seen date. It is a base64 encoded
6349 * 30-bit value representing the UNIX date since the
6350 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006351 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006352 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006353 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006354 if (val_end - vbar1 >= 5) {
6355 val = b64tos30(vbar1);
6356 if (val > 0)
6357 txn->cookie_last_date = val << 2;
6358 }
6359 /* look for a second vertical bar */
6360 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
6361 if (vbar1 && (val_end - vbar1 > 5)) {
6362 val = b64tos30(vbar1 + 1);
6363 if (val > 0)
6364 txn->cookie_first_date = val << 2;
6365 }
Willy Tarreaubca99692010-10-06 19:25:55 +02006366 }
6367 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006368
Willy Tarreauf64d1412010-10-07 20:06:11 +02006369 /* if the cookie has an expiration date and the proxy wants to check
6370 * it, then we do that now. We first check if the cookie is too old,
6371 * then only if it has expired. We detect strict overflow because the
6372 * time resolution here is not great (4 seconds). Cookies with dates
6373 * in the future are ignored if their offset is beyond one day. This
6374 * allows an admin to fix timezone issues without expiring everyone
6375 * and at the same time avoids keeping unwanted side effects for too
6376 * long.
6377 */
6378 if (txn->cookie_first_date && t->be->cookie_maxlife &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006379 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) ||
6380 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006381 txn->flags &= ~TX_CK_MASK;
6382 txn->flags |= TX_CK_OLD;
6383 delim = val_beg; // let's pretend we have not found the cookie
6384 txn->cookie_first_date = 0;
6385 txn->cookie_last_date = 0;
6386 }
6387 else if (txn->cookie_last_date && t->be->cookie_maxidle &&
Willy Tarreauef4f3912010-10-07 21:00:29 +02006388 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) ||
6389 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006390 txn->flags &= ~TX_CK_MASK;
6391 txn->flags |= TX_CK_EXPIRED;
6392 delim = val_beg; // let's pretend we have not found the cookie
6393 txn->cookie_first_date = 0;
6394 txn->cookie_last_date = 0;
6395 }
6396
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006397 /* Here, we'll look for the first running server which supports the cookie.
6398 * This allows to share a same cookie between several servers, for example
6399 * to dedicate backup servers to specific servers only.
6400 * However, to prevent clients from sticking to cookie-less backup server
6401 * when they have incidentely learned an empty cookie, we simply ignore
6402 * empty cookies and mark them as invalid.
6403 * The same behaviour is applied when persistence must be ignored.
6404 */
6405 if ((delim == val_beg) || (t->flags & SN_IGNORE_PRST))
6406 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006407
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006408 while (srv) {
6409 if (srv->cookie && (srv->cklen == delim - val_beg) &&
6410 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
6411 if ((srv->state & SRV_RUNNING) ||
6412 (t->be->options & PR_O_PERSIST) ||
6413 (t->flags & SN_FORCE_PRST)) {
6414 /* we found the server and we can use it */
6415 txn->flags &= ~TX_CK_MASK;
6416 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
6417 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau9e000c62011-03-10 14:03:36 +01006418 set_target_server(&t->target, srv);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006419 break;
6420 } else {
6421 /* we found a server, but it's down,
6422 * mark it as such and go on in case
6423 * another one is available.
6424 */
6425 txn->flags &= ~TX_CK_MASK;
6426 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006427 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006428 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006429 srv = srv->next;
6430 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006431
Willy Tarreauf64d1412010-10-07 20:06:11 +02006432 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006433 /* no server matched this cookie */
6434 txn->flags &= ~TX_CK_MASK;
6435 txn->flags |= TX_CK_INVALID;
6436 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006437
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006438 /* depending on the cookie mode, we may have to either :
6439 * - delete the complete cookie if we're in insert+indirect mode, so that
6440 * the server never sees it ;
6441 * - remove the server id from the cookie value, and tag the cookie as an
6442 * application cookie so that it does not get accidentely removed later,
6443 * if we're in cookie prefix mode
6444 */
6445 if ((t->be->options & PR_O_COOK_PFX) && (delim != val_end)) {
6446 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006447
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006448 delta = buffer_replace2(req, val_beg, delim + 1, NULL, 0);
6449 val_end += delta;
6450 next += delta;
6451 hdr_end += delta;
6452 hdr_next += delta;
6453 cur_hdr->len += delta;
6454 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006455
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006456 del_from = NULL;
6457 preserve_hdr = 1; /* we want to keep this cookie */
6458 }
6459 else if (del_from == NULL &&
6460 (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) {
6461 del_from = prev;
6462 }
6463 } else {
6464 /* This is not our cookie, so we must preserve it. But if we already
6465 * scheduled another cookie for removal, we cannot remove the
6466 * complete header, but we can remove the previous block itself.
6467 */
6468 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006469
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006470 if (del_from != NULL) {
6471 int delta = del_hdr_value(req, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01006472 if (att_beg >= del_from)
6473 att_beg += delta;
6474 if (att_end >= del_from)
6475 att_end += delta;
6476 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006477 val_end += delta;
6478 next += delta;
6479 hdr_end += delta;
6480 hdr_next += delta;
6481 cur_hdr->len += delta;
6482 http_msg_move_end(&txn->req, delta);
6483 prev = del_from;
6484 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006485 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006486 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006487
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006488 /* Look for the appsession cookie unless persistence must be ignored */
6489 if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
6490 int cmp_len, value_len;
6491 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02006492
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006493 if (t->be->options2 & PR_O2_AS_PFX) {
6494 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
6495 value_begin = att_beg + t->be->appsession_name_len;
6496 value_len = val_end - att_beg - t->be->appsession_name_len;
6497 } else {
6498 cmp_len = att_end - att_beg;
6499 value_begin = val_beg;
6500 value_len = val_end - val_beg;
6501 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006502
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006503 /* let's see if the cookie is our appcookie */
6504 if (cmp_len == t->be->appsession_name_len &&
6505 memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) {
6506 manage_client_side_appsession(t, value_begin, value_len);
6507 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006508 }
6509
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006510 /* continue with next cookie on this header line */
6511 att_beg = next;
6512 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006513
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006514 /* There are no more cookies on this line.
6515 * We may still have one (or several) marked for deletion at the
6516 * end of the line. We must do this now in two ways :
6517 * - if some cookies must be preserved, we only delete from the
6518 * mark to the end of line ;
6519 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01006520 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006521 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006522 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006523 if (preserve_hdr) {
6524 delta = del_hdr_value(req, &del_from, hdr_end);
6525 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006526 cur_hdr->len += delta;
6527 } else {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006528 delta = buffer_replace2(req, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006529
6530 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006531 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6532 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006533 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006534 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006535 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006536 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006537 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006538 }
6539
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006540 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006541 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006542 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006543}
6544
6545
Willy Tarreaua15645d2007-03-18 16:22:39 +01006546/* Iterate the same filter through all response headers contained in <rtr>.
6547 * Returns 1 if this filter can be stopped upon return, otherwise 0.
6548 */
6549int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6550{
6551 char term;
6552 char *cur_ptr, *cur_end, *cur_next;
6553 int cur_idx, old_idx, last_hdr;
6554 struct http_txn *txn = &t->txn;
6555 struct hdr_idx_elem *cur_hdr;
6556 int len, delta;
6557
6558 last_hdr = 0;
6559
Willy Tarreau962c3f42010-01-10 00:15:35 +01006560 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006561 old_idx = 0;
6562
6563 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006564 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006565 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006566 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006567 (exp->action == ACT_ALLOW ||
6568 exp->action == ACT_DENY))
6569 return 0;
6570
6571 cur_idx = txn->hdr_idx.v[old_idx].next;
6572 if (!cur_idx)
6573 break;
6574
6575 cur_hdr = &txn->hdr_idx.v[cur_idx];
6576 cur_ptr = cur_next;
6577 cur_end = cur_ptr + cur_hdr->len;
6578 cur_next = cur_end + cur_hdr->cr + 1;
6579
6580 /* Now we have one header between cur_ptr and cur_end,
6581 * and the next header starts at cur_next.
6582 */
6583
6584 /* The annoying part is that pattern matching needs
6585 * that we modify the contents to null-terminate all
6586 * strings before testing them.
6587 */
6588
6589 term = *cur_end;
6590 *cur_end = '\0';
6591
6592 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6593 switch (exp->action) {
6594 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006595 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006596 last_hdr = 1;
6597 break;
6598
6599 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006600 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006601 last_hdr = 1;
6602 break;
6603
6604 case ACT_REPLACE:
6605 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6606 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6607 /* FIXME: if the user adds a newline in the replacement, the
6608 * index will not be recalculated for now, and the new line
6609 * will not be counted as a new header.
6610 */
6611
6612 cur_end += delta;
6613 cur_next += delta;
6614 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006615 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006616 break;
6617
6618 case ACT_REMOVE:
6619 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
6620 cur_next += delta;
6621
Willy Tarreaufa355d42009-11-29 18:12:29 +01006622 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006623 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6624 txn->hdr_idx.used--;
6625 cur_hdr->len = 0;
6626 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006627 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006628 break;
6629
6630 }
6631 }
6632 if (cur_end)
6633 *cur_end = term; /* restore the string terminator */
6634
6635 /* keep the link from this header to next one in case of later
6636 * removal of next header.
6637 */
6638 old_idx = cur_idx;
6639 }
6640 return 0;
6641}
6642
6643
6644/* Apply the filter to the status line in the response buffer <rtr>.
6645 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6646 * or -1 if a replacement resulted in an invalid status line.
6647 */
6648int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
6649{
6650 char term;
6651 char *cur_ptr, *cur_end;
6652 int done;
6653 struct http_txn *txn = &t->txn;
6654 int len, delta;
6655
6656
Willy Tarreau3d300592007-03-18 18:34:41 +01006657 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006658 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006659 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006660 (exp->action == ACT_ALLOW ||
6661 exp->action == ACT_DENY))
6662 return 0;
6663 else if (exp->action == ACT_REMOVE)
6664 return 0;
6665
6666 done = 0;
6667
Willy Tarreau962c3f42010-01-10 00:15:35 +01006668 cur_ptr = txn->rsp.sol;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006669 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006670
6671 /* Now we have the status line between cur_ptr and cur_end */
6672
6673 /* The annoying part is that pattern matching needs
6674 * that we modify the contents to null-terminate all
6675 * strings before testing them.
6676 */
6677
6678 term = *cur_end;
6679 *cur_end = '\0';
6680
6681 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6682 switch (exp->action) {
6683 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006684 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006685 done = 1;
6686 break;
6687
6688 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006689 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006690 done = 1;
6691 break;
6692
6693 case ACT_REPLACE:
6694 *cur_end = term; /* restore the string terminator */
6695 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
6696 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
6697 /* FIXME: if the user adds a newline in the replacement, the
6698 * index will not be recalculated for now, and the new line
6699 * will not be counted as a new header.
6700 */
6701
Willy Tarreaufa355d42009-11-29 18:12:29 +01006702 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006703 cur_end += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006704 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02006705 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01006706 cur_ptr, cur_end + 1,
6707 NULL, NULL);
6708 if (unlikely(!cur_end))
6709 return -1;
6710
6711 /* we have a full respnse and we know that we have either a CR
6712 * or an LF at <ptr>.
6713 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01006714 txn->status = strl2ui(txn->rsp.sol + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006715 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01006716 /* there is no point trying this regex on headers */
6717 return 1;
6718 }
6719 }
6720 *cur_end = term; /* restore the string terminator */
6721 return done;
6722}
6723
6724
6725
6726/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006727 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006728 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
6729 * unparsable response.
6730 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006731int apply_filters_to_response(struct session *s, struct buffer *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006732{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006733 struct http_txn *txn = &s->txn;
6734 struct hdr_exp *exp;
6735
6736 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006737 int ret;
6738
6739 /*
6740 * The interleaving of transformations and verdicts
6741 * makes it difficult to decide to continue or stop
6742 * the evaluation.
6743 */
6744
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006745 if (txn->flags & TX_SVDENY)
6746 break;
6747
Willy Tarreau3d300592007-03-18 18:34:41 +01006748 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006749 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
6750 exp->action == ACT_PASS)) {
6751 exp = exp->next;
6752 continue;
6753 }
6754
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006755 /* if this filter had a condition, evaluate it now and skip to
6756 * next filter if the condition does not match.
6757 */
6758 if (exp->cond) {
6759 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_RTR);
6760 ret = acl_pass(ret);
6761 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6762 ret = !ret;
6763 if (!ret)
6764 continue;
6765 }
6766
Willy Tarreaua15645d2007-03-18 16:22:39 +01006767 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006768 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006769 if (unlikely(ret < 0))
6770 return -1;
6771
6772 if (likely(ret == 0)) {
6773 /* The filter did not match the response, it can be
6774 * iterated through all headers.
6775 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006776 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006777 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006778 }
6779 return 0;
6780}
6781
6782
Willy Tarreaua15645d2007-03-18 16:22:39 +01006783/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006784 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02006785 * desirable to call it only when needed. This function is also used when we
6786 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01006787 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006788void manage_server_side_cookies(struct session *t, struct buffer *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006789{
6790 struct http_txn *txn = &t->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01006791 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006792 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006793 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006794 char *hdr_beg, *hdr_end, *hdr_next;
6795 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006796
Willy Tarreaua15645d2007-03-18 16:22:39 +01006797 /* Iterate through the headers.
6798 * we start with the start line.
6799 */
6800 old_idx = 0;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006801 hdr_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006802
6803 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
6804 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006805 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006806
6807 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02006808 hdr_beg = hdr_next;
6809 hdr_end = hdr_beg + cur_hdr->len;
6810 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006811
Willy Tarreau24581ba2010-08-31 22:39:35 +02006812 /* We have one full header between hdr_beg and hdr_end, and the
6813 * next header starts at hdr_next. We're only interested in
6814 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006815 */
6816
Willy Tarreau24581ba2010-08-31 22:39:35 +02006817 is_cookie2 = 0;
6818 prev = hdr_beg + 10;
6819 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006820 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006821 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
6822 if (!val) {
6823 old_idx = cur_idx;
6824 continue;
6825 }
6826 is_cookie2 = 1;
6827 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006828 }
6829
Willy Tarreau24581ba2010-08-31 22:39:35 +02006830 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
6831 * <prev> points to the colon.
6832 */
Willy Tarreauf1348312010-10-07 15:54:11 +02006833 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006834
Willy Tarreau24581ba2010-08-31 22:39:35 +02006835 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
6836 * check-cache is enabled) and we are not interested in checking
6837 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006838 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006839 if (t->be->cookie_name == NULL &&
6840 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006841 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006842 return;
6843
Willy Tarreau24581ba2010-08-31 22:39:35 +02006844 /* OK so now we know we have to process this response cookie.
6845 * The format of the Set-Cookie header is slightly different
6846 * from the format of the Cookie header in that it does not
6847 * support the comma as a cookie delimiter (thus the header
6848 * cannot be folded) because the Expires attribute described in
6849 * the original Netscape's spec may contain an unquoted date
6850 * with a comma inside. We have to live with this because
6851 * many browsers don't support Max-Age and some browsers don't
6852 * support quoted strings. However the Set-Cookie2 header is
6853 * clean.
6854 *
6855 * We have to keep multiple pointers in order to support cookie
6856 * removal at the beginning, middle or end of header without
6857 * corrupting the header (in case of set-cookie2). A special
6858 * pointer, <scav> points to the beginning of the set-cookie-av
6859 * fields after the first semi-colon. The <next> pointer points
6860 * either to the end of line (set-cookie) or next unquoted comma
6861 * (set-cookie2). All of these headers are valid :
6862 *
6863 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
6864 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6865 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6866 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
6867 * | | | | | | | | | |
6868 * | | | | | | | | +-> next hdr_end <--+
6869 * | | | | | | | +------------> scav
6870 * | | | | | | +--------------> val_end
6871 * | | | | | +--------------------> val_beg
6872 * | | | | +----------------------> equal
6873 * | | | +------------------------> att_end
6874 * | | +----------------------------> att_beg
6875 * | +------------------------------> prev
6876 * +-----------------------------------------> hdr_beg
6877 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006878
Willy Tarreau24581ba2010-08-31 22:39:35 +02006879 for (; prev < hdr_end; prev = next) {
6880 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006881
Willy Tarreau24581ba2010-08-31 22:39:35 +02006882 /* find att_beg */
6883 att_beg = prev + 1;
6884 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
6885 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006886
Willy Tarreau24581ba2010-08-31 22:39:35 +02006887 /* find att_end : this is the first character after the last non
6888 * space before the equal. It may be equal to hdr_end.
6889 */
6890 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006891
Willy Tarreau24581ba2010-08-31 22:39:35 +02006892 while (equal < hdr_end) {
6893 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
6894 break;
6895 if (http_is_spht[(unsigned char)*equal++])
6896 continue;
6897 att_end = equal;
6898 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006899
Willy Tarreau24581ba2010-08-31 22:39:35 +02006900 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6901 * is between <att_beg> and <equal>, both may be identical.
6902 */
6903
6904 /* look for end of cookie if there is an equal sign */
6905 if (equal < hdr_end && *equal == '=') {
6906 /* look for the beginning of the value */
6907 val_beg = equal + 1;
6908 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
6909 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006910
Willy Tarreau24581ba2010-08-31 22:39:35 +02006911 /* find the end of the value, respecting quotes */
6912 next = find_cookie_value_end(val_beg, hdr_end);
6913
6914 /* make val_end point to the first white space or delimitor after the value */
6915 val_end = next;
6916 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
6917 val_end--;
6918 } else {
6919 /* <equal> points to next comma, semi-colon or EOL */
6920 val_beg = val_end = next = equal;
6921 }
6922
6923 if (next < hdr_end) {
6924 /* Set-Cookie2 supports multiple cookies, and <next> points to
6925 * a colon or semi-colon before the end. So skip all attr-value
6926 * pairs and look for the next comma. For Set-Cookie, since
6927 * commas are permitted in values, skip to the end.
6928 */
6929 if (is_cookie2)
6930 next = find_hdr_value_end(next, hdr_end);
6931 else
6932 next = hdr_end;
6933 }
6934
6935 /* Now everything is as on the diagram above */
6936
6937 /* Ignore cookies with no equal sign */
6938 if (equal == val_end)
6939 continue;
6940
6941 /* If there are spaces around the equal sign, we need to
6942 * strip them otherwise we'll get trouble for cookie captures,
6943 * or even for rewrites. Since this happens extremely rarely,
6944 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006945 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006946 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6947 int stripped_before = 0;
6948 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006949
Willy Tarreau24581ba2010-08-31 22:39:35 +02006950 if (att_end != equal) {
6951 stripped_before = buffer_replace2(res, att_end, equal, NULL, 0);
6952 equal += stripped_before;
6953 val_beg += stripped_before;
6954 }
6955
6956 if (val_beg > equal + 1) {
6957 stripped_after = buffer_replace2(res, equal + 1, val_beg, NULL, 0);
6958 val_beg += stripped_after;
6959 stripped_before += stripped_after;
6960 }
6961
6962 val_end += stripped_before;
6963 next += stripped_before;
6964 hdr_end += stripped_before;
6965 hdr_next += stripped_before;
6966 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02006967 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006968 }
6969
6970 /* First, let's see if we want to capture this cookie. We check
6971 * that we don't already have a server side cookie, because we
6972 * can only capture one. Also as an optimisation, we ignore
6973 * cookies shorter than the declared name.
6974 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006975 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01006976 txn->srv_cookie == NULL &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02006977 (val_end - att_beg >= t->fe->capture_namelen) &&
6978 memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) {
6979 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02006980 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006981 Alert("HTTP logging : out of memory.\n");
6982 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01006983 else {
6984 if (log_len > t->fe->capture_len)
6985 log_len = t->fe->capture_len;
6986 memcpy(txn->srv_cookie, att_beg, log_len);
6987 txn->srv_cookie[log_len] = 0;
6988 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006989 }
6990
Willy Tarreau827aee92011-03-10 16:55:02 +01006991 srv = target_srv(&t->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006992 /* now check if we need to process it for persistence */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006993 if (!(t->flags & SN_IGNORE_PRST) &&
6994 (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6995 (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02006996 /* assume passive cookie by default */
6997 txn->flags &= ~TX_SCK_MASK;
6998 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006999
7000 /* If the cookie is in insert mode on a known server, we'll delete
7001 * this occurrence because we'll insert another one later.
7002 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02007003 * a direct access.
7004 */
Willy Tarreauba4c5be2010-10-23 12:46:42 +02007005 if (t->be->options2 & PR_O2_COOK_PSV) {
7006 /* The "preserve" flag was set, we don't want to touch the
7007 * server's cookie.
7008 */
7009 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007010 else if ((srv && (t->be->options & PR_O_COOK_INS)) ||
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007011 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007012 /* this cookie must be deleted */
7013 if (*prev == ':' && next == hdr_end) {
7014 /* whole header */
7015 delta = buffer_replace2(res, hdr_beg, hdr_next, NULL, 0);
7016 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7017 txn->hdr_idx.used--;
7018 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007019 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007020 hdr_next += delta;
7021 http_msg_move_end(&txn->rsp, delta);
7022 /* note: while both invalid now, <next> and <hdr_end>
7023 * are still equal, so the for() will stop as expected.
7024 */
7025 } else {
7026 /* just remove the value */
7027 int delta = del_hdr_value(res, &prev, next);
7028 next = prev;
7029 hdr_end += delta;
7030 hdr_next += delta;
7031 cur_hdr->len += delta;
7032 http_msg_move_end(&txn->rsp, delta);
7033 }
Willy Tarreauf1348312010-10-07 15:54:11 +02007034 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01007035 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007036 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007037 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007038 else if (srv && srv->cookie && (t->be->options & PR_O_COOK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007039 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01007040 * with this server since we know it.
7041 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007042 delta = buffer_replace2(res, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007043 next += delta;
7044 hdr_end += delta;
7045 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007046 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007047 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007048
Willy Tarreauf1348312010-10-07 15:54:11 +02007049 txn->flags &= ~TX_SCK_MASK;
7050 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007051 }
Willy Tarreau827aee92011-03-10 16:55:02 +01007052 else if (srv && srv && (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007053 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02007054 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01007055 */
Willy Tarreau827aee92011-03-10 16:55:02 +01007056 delta = buffer_replace2(res, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02007057 next += delta;
7058 hdr_end += delta;
7059 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007060 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007061 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007062
Willy Tarreau827aee92011-03-10 16:55:02 +01007063 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02007064 txn->flags &= ~TX_SCK_MASK;
7065 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007066 }
7067 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007068 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
7069 else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007070 int cmp_len, value_len;
7071 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007072
Cyril Bontéb21570a2009-11-29 20:04:48 +01007073 if (t->be->options2 & PR_O2_AS_PFX) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007074 cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len);
7075 value_begin = att_beg + t->be->appsession_name_len;
7076 value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01007077 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007078 cmp_len = att_end - att_beg;
7079 value_begin = val_beg;
7080 value_len = MIN(t->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007081 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007082
Cyril Bonté17530c32010-04-06 21:11:10 +02007083 if ((cmp_len == t->be->appsession_name_len) &&
Willy Tarreau24581ba2010-08-31 22:39:35 +02007084 (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7085 /* free a possibly previously allocated memory */
7086 pool_free2(apools.sessid, txn->sessid);
7087
Cyril Bontéb21570a2009-11-29 20:04:48 +01007088 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007089 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01007090 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7091 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
7092 return;
7093 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007094 memcpy(txn->sessid, value_begin, value_len);
7095 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007096 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02007097 }
7098 /* that's done for this cookie, check the next one on the same
7099 * line when next != hdr_end (only if is_cookie2).
7100 */
7101 }
7102 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007103 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007104 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007105
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007106 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007107 appsess *asession = NULL;
7108 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007109 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007110 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01007111 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007112 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
7113 Alert("Not enough Memory process_srv():asession:calloc().\n");
7114 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
7115 return;
7116 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007117 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
7118
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007119 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
7120 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
7121 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007122 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007123 return;
7124 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007125 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007126 asession->sessid[t->be->appsession_len] = 0;
7127
Willy Tarreau827aee92011-03-10 16:55:02 +01007128 server_id_len = strlen(target_srv(&t->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007129 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01007130 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007131 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01007132 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007133 return;
7134 }
7135 asession->serverid[0] = '\0';
Willy Tarreau827aee92011-03-10 16:55:02 +01007136 memcpy(asession->serverid, target_srv(&t->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007137
7138 asession->request_count = 0;
7139 appsession_hash_insert(&(t->be->htbl_proxy), asession);
7140 }
7141
7142 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
7143 asession->request_count++;
7144 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007145}
7146
7147
Willy Tarreaua15645d2007-03-18 16:22:39 +01007148/*
7149 * Check if response is cacheable or not. Updates t->flags.
7150 */
7151void check_response_for_cacheability(struct session *t, struct buffer *rtr)
7152{
7153 struct http_txn *txn = &t->txn;
7154 char *p1, *p2;
7155
7156 char *cur_ptr, *cur_end, *cur_next;
7157 int cur_idx;
7158
Willy Tarreau5df51872007-11-25 16:20:08 +01007159 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007160 return;
7161
7162 /* Iterate through the headers.
7163 * we start with the start line.
7164 */
7165 cur_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007166 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007167
7168 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
7169 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007170 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007171
7172 cur_hdr = &txn->hdr_idx.v[cur_idx];
7173 cur_ptr = cur_next;
7174 cur_end = cur_ptr + cur_hdr->len;
7175 cur_next = cur_end + cur_hdr->cr + 1;
7176
7177 /* We have one full header between cur_ptr and cur_end, and the
7178 * next header starts at cur_next. We're only interested in
7179 * "Cookie:" headers.
7180 */
7181
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007182 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
7183 if (val) {
7184 if ((cur_end - (cur_ptr + val) >= 8) &&
7185 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
7186 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
7187 return;
7188 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007189 }
7190
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007191 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
7192 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007193 continue;
7194
7195 /* OK, right now we know we have a cache-control header at cur_ptr */
7196
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007197 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007198
7199 if (p1 >= cur_end) /* no more info */
7200 continue;
7201
7202 /* p1 is at the beginning of the value */
7203 p2 = p1;
7204
Willy Tarreau8f8e6452007-06-17 21:51:38 +02007205 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007206 p2++;
7207
7208 /* we have a complete value between p1 and p2 */
7209 if (p2 < cur_end && *p2 == '=') {
7210 /* we have something of the form no-cache="set-cookie" */
7211 if ((cur_end - p1 >= 21) &&
7212 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
7213 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01007214 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007215 continue;
7216 }
7217
7218 /* OK, so we know that either p2 points to the end of string or to a comma */
7219 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
7220 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
7221 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
7222 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007223 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007224 return;
7225 }
7226
7227 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007228 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007229 continue;
7230 }
7231 }
7232}
7233
7234
Willy Tarreau58f10d72006-12-04 02:26:12 +01007235/*
7236 * Try to retrieve a known appsession in the URI, then the associated server.
7237 * If the server is found, it's assigned to the session.
7238 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007239void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007240{
Cyril Bontéb21570a2009-11-29 20:04:48 +01007241 char *end_params, *first_param, *cur_param, *next_param;
7242 char separator;
7243 int value_len;
7244
7245 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007246
Willy Tarreaue2e27a52007-04-01 00:01:37 +02007247 if (t->be->appsession_name == NULL ||
Cyril Bonté17530c32010-04-06 21:11:10 +02007248 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST && t->txn.meth != HTTP_METH_HEAD)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007249 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007250 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007251
Cyril Bontéb21570a2009-11-29 20:04:48 +01007252 first_param = NULL;
7253 switch (mode) {
7254 case PR_O2_AS_M_PP:
7255 first_param = memchr(begin, ';', len);
7256 break;
7257 case PR_O2_AS_M_QS:
7258 first_param = memchr(begin, '?', len);
7259 break;
7260 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007261
Cyril Bontéb21570a2009-11-29 20:04:48 +01007262 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007263 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007264 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007265
Cyril Bontéb21570a2009-11-29 20:04:48 +01007266 switch (mode) {
7267 case PR_O2_AS_M_PP:
7268 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
7269 end_params = (char *) begin + len;
7270 }
7271 separator = ';';
7272 break;
7273 case PR_O2_AS_M_QS:
7274 end_params = (char *) begin + len;
7275 separator = '&';
7276 break;
7277 default:
7278 /* unknown mode, shouldn't happen */
7279 return;
7280 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007281
Cyril Bontéb21570a2009-11-29 20:04:48 +01007282 cur_param = next_param = end_params;
7283 while (cur_param > first_param) {
7284 cur_param--;
7285 if ((cur_param[0] == separator) || (cur_param == first_param)) {
7286 /* let's see if this is the appsession parameter */
7287 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
7288 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
7289 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
7290 /* Cool... it's the right one */
7291 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
7292 value_len = MIN(t->be->appsession_len, next_param - cur_param);
7293 if (value_len > 0) {
7294 manage_client_side_appsession(t, cur_param, value_len);
7295 }
7296 break;
7297 }
7298 next_param = cur_param;
7299 }
7300 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007301#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007302 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02007303 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01007304#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01007305}
7306
Willy Tarreaub2513902006-12-17 14:52:38 +01007307/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007308 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007309 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007310 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007311 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007312 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007313 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007314 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007315 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007316int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007317{
7318 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007319 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01007320
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007321 if (!uri_auth)
7322 return 0;
7323
Cyril Bonté70be45d2010-10-12 00:14:35 +02007324 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007325 return 0;
7326
Willy Tarreau295a8372011-03-10 11:25:07 +01007327 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007328
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007329 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007330 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007331 return 0;
7332
Willy Tarreau962c3f42010-01-10 00:15:35 +01007333 h = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007334
Willy Tarreau0214c3a2007-01-07 13:47:30 +01007335 /* the URI is in h */
7336 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007337 return 0;
7338
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007339 h += uri_auth->uri_len;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007340 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007341 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007342 si->applet.ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007343 break;
7344 }
7345 h++;
7346 }
7347
7348 if (uri_auth->refresh) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01007349 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7350 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007351 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007352 si->applet.ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02007353 break;
7354 }
7355 h++;
7356 }
7357 }
7358
Willy Tarreau962c3f42010-01-10 00:15:35 +01007359 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7360 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02007361 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau295a8372011-03-10 11:25:07 +01007362 si->applet.ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02007363 break;
7364 }
7365 h++;
7366 }
7367
Cyril Bonté70be45d2010-10-12 00:14:35 +02007368 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
7369 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 8) {
7370 if (memcmp(h, ";st=", 4) == 0) {
7371 h += 4;
7372
7373 if (memcmp(h, STAT_STATUS_DONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007374 si->applet.ctx.stats.st_code = STAT_STATUS_DONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007375 else if (memcmp(h, STAT_STATUS_NONE, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007376 si->applet.ctx.stats.st_code = STAT_STATUS_NONE;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007377 else if (memcmp(h, STAT_STATUS_EXCD, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007378 si->applet.ctx.stats.st_code = STAT_STATUS_EXCD;
Cyril Bonté474be412010-10-12 00:14:36 +02007379 else if (memcmp(h, STAT_STATUS_DENY, 4) == 0)
Willy Tarreau295a8372011-03-10 11:25:07 +01007380 si->applet.ctx.stats.st_code = STAT_STATUS_DENY;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007381 else
Willy Tarreau295a8372011-03-10 11:25:07 +01007382 si->applet.ctx.stats.st_code = STAT_STATUS_UNKN;
Cyril Bonté70be45d2010-10-12 00:14:35 +02007383 break;
7384 }
7385 h++;
7386 }
7387
Willy Tarreau295a8372011-03-10 11:25:07 +01007388 si->applet.ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01007389
Willy Tarreaub2513902006-12-17 14:52:38 +01007390 return 1;
7391}
7392
Willy Tarreau4076a152009-04-02 15:18:36 +02007393/*
7394 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau962c3f42010-01-10 00:15:35 +01007395 * WARNING: it's unlikely that we've reached HTTP_MSG_BODY here so we must not
7396 * assume that msg->sol = buf->data + msg->som.
Willy Tarreau4076a152009-04-02 15:18:36 +02007397 */
7398void http_capture_bad_message(struct error_snapshot *es, struct session *s,
7399 struct buffer *buf, struct http_msg *msg,
Willy Tarreau078272e2010-12-12 12:46:33 +01007400 int state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007401{
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007402 if (buf->r <= (buf->data + msg->som)) { /* message wraps */
7403 int len1 = buf->size - msg->som;
7404 es->len = buf->r - (buf->data + msg->som) + buf->size;
7405 memcpy(es->buf, buf->data + msg->som, MIN(len1, sizeof(es->buf)));
7406 if (es->len > len1 && len1 < sizeof(es->buf))
7407 memcpy(es->buf, buf->data, MIN(es->len, sizeof(es->buf)) - len1);
7408 }
7409 else {
7410 es->len = buf->r - (buf->data + msg->som);
7411 memcpy(es->buf, buf->data + msg->som, MIN(es->len, sizeof(es->buf)));
7412 }
7413
Willy Tarreau4076a152009-04-02 15:18:36 +02007414 if (msg->err_pos >= 0)
Willy Tarreau2df8d712009-05-01 11:33:17 +02007415 es->pos = msg->err_pos - msg->som;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007416 else if (buf->lr >= (buf->data + msg->som))
Willy Tarreau2df8d712009-05-01 11:33:17 +02007417 es->pos = buf->lr - (buf->data + msg->som);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01007418 else
7419 es->pos = buf->lr - (buf->data + msg->som) + buf->size;
7420
Willy Tarreau4076a152009-04-02 15:18:36 +02007421 es->when = date; // user-visible date
7422 es->sid = s->uniq_id;
Willy Tarreau827aee92011-03-10 16:55:02 +01007423 es->srv = target_srv(&s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02007424 es->oe = other_end;
Willy Tarreau957c0a52011-03-03 17:42:23 +01007425 es->src = s->req->prod->addr.c.from;
Willy Tarreau078272e2010-12-12 12:46:33 +01007426 es->state = state;
7427 es->flags = buf->flags;
Willy Tarreau10479e42010-12-12 14:00:34 +01007428 es->ev_id = error_snapshot_id++;
Willy Tarreau4076a152009-04-02 15:18:36 +02007429}
Willy Tarreaub2513902006-12-17 14:52:38 +01007430
Willy Tarreaubce70882009-09-07 11:51:47 +02007431/* return the IP address pointed to by occurrence <occ> of header <hname> in
7432 * HTTP message <msg> indexed in <idx>. If <occ> is strictly positive, the
7433 * occurrence number corresponding to this value is returned. If <occ> is
7434 * strictly negative, the occurrence number before the end corresponding to
7435 * this value is returned. If <occ> is null, any value is returned, so it is
7436 * not recommended to use it that way. Negative occurrences are limited to
7437 * a small value because it is required to keep them in memory while scanning.
7438 * IP address 0.0.0.0 is returned if no match is found.
7439 */
7440unsigned int get_ip_from_hdr2(struct http_msg *msg, const char *hname, int hlen, struct hdr_idx *idx, int occ)
7441{
7442 struct hdr_ctx ctx;
7443 unsigned int hdr_hist[MAX_HDR_HISTORY];
7444 unsigned int hist_ptr;
7445 int found = 0;
7446
7447 ctx.idx = 0;
7448 if (occ >= 0) {
7449 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7450 occ--;
7451 if (occ <= 0) {
7452 found = 1;
7453 break;
7454 }
7455 }
7456 if (!found)
7457 return 0;
7458 return inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7459 }
7460
7461 /* negative occurrence, we scan all the list then walk back */
7462 if (-occ > MAX_HDR_HISTORY)
7463 return 0;
7464
7465 hist_ptr = 0;
7466 hdr_hist[hist_ptr] = 0;
7467 while (http_find_header2(hname, hlen, msg->sol, idx, &ctx)) {
7468 hdr_hist[hist_ptr++] = inetaddr_host_lim(ctx.line+ctx.val, ctx.line+ctx.val+ctx.vlen);
7469 if (hist_ptr >= MAX_HDR_HISTORY)
7470 hist_ptr = 0;
7471 found++;
7472 }
7473 if (-occ > found)
7474 return 0;
7475 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
7476 * find occurrence -occ, so we have to check [hist_ptr+occ].
7477 */
7478 hist_ptr += occ;
7479 if (hist_ptr >= MAX_HDR_HISTORY)
7480 hist_ptr -= MAX_HDR_HISTORY;
7481 return hdr_hist[hist_ptr];
7482}
7483
Willy Tarreaubaaee002006-06-26 02:48:02 +02007484/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01007485 * Print a debug line with a header
7486 */
7487void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
7488{
7489 int len, max;
7490 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02007491 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007492 max = end - start;
7493 UBOUND(max, sizeof(trash) - len - 1);
7494 len += strlcpy2(trash + len, start, max + 1);
7495 trash[len++] = '\n';
7496 write(1, trash, len);
7497}
7498
Willy Tarreau0937bc42009-12-22 15:03:09 +01007499/*
7500 * Initialize a new HTTP transaction for session <s>. It is assumed that all
7501 * the required fields are properly allocated and that we only need to (re)init
7502 * them. This should be used before processing any new request.
7503 */
7504void http_init_txn(struct session *s)
7505{
7506 struct http_txn *txn = &s->txn;
7507 struct proxy *fe = s->fe;
7508
7509 txn->flags = 0;
7510 txn->status = -1;
7511
Willy Tarreauf64d1412010-10-07 20:06:11 +02007512 txn->cookie_first_date = 0;
7513 txn->cookie_last_date = 0;
7514
Willy Tarreau0937bc42009-12-22 15:03:09 +01007515 txn->req.sol = txn->req.eol = NULL;
7516 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
7517 txn->rsp.sol = txn->rsp.eol = NULL;
7518 txn->rsp.som = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreau124d9912011-03-01 20:30:48 +01007519 txn->req.chunk_len = 0LL;
7520 txn->req.body_len = 0LL;
7521 txn->rsp.chunk_len = 0LL;
7522 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007523 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
7524 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007525
7526 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007527
7528 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
7529 if (fe->options2 & PR_O2_REQBUG_OK)
7530 txn->req.err_pos = -1; /* let buggy requests pass */
7531
Willy Tarreau46023632010-01-07 22:51:47 +01007532 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007533 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
7534
Willy Tarreau46023632010-01-07 22:51:47 +01007535 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007536 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
7537
7538 if (txn->hdr_idx.v)
7539 hdr_idx_init(&txn->hdr_idx);
7540}
7541
7542/* to be used at the end of a transaction */
7543void http_end_txn(struct session *s)
7544{
7545 struct http_txn *txn = &s->txn;
7546
7547 /* these ones will have been dynamically allocated */
7548 pool_free2(pool2_requri, txn->uri);
7549 pool_free2(pool2_capture, txn->cli_cookie);
7550 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007551 pool_free2(apools.sessid, txn->sessid);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007552
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007553 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007554 txn->uri = NULL;
7555 txn->srv_cookie = NULL;
7556 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01007557
7558 if (txn->req.cap) {
7559 struct cap_hdr *h;
7560 for (h = s->fe->req_cap; h; h = h->next)
7561 pool_free2(h->pool, txn->req.cap[h->index]);
7562 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
7563 }
7564
7565 if (txn->rsp.cap) {
7566 struct cap_hdr *h;
7567 for (h = s->fe->rsp_cap; h; h = h->next)
7568 pool_free2(h->pool, txn->rsp.cap[h->index]);
7569 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
7570 }
7571
Willy Tarreau0937bc42009-12-22 15:03:09 +01007572}
7573
7574/* to be used at the end of a transaction to prepare a new one */
7575void http_reset_txn(struct session *s)
7576{
7577 http_end_txn(s);
7578 http_init_txn(s);
7579
7580 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007581 s->logs.logwait = s->fe->to_log;
Willy Tarreau827aee92011-03-10 16:55:02 +01007582 s->srv_conn = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +01007583 clear_target(&s->target);
Emeric Brunb982a3d2010-01-04 15:45:53 +01007584 /* re-init store persistence */
7585 s->store_count = 0;
7586
Willy Tarreau0937bc42009-12-22 15:03:09 +01007587 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007588
7589 s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */
7590
Willy Tarreau739cfba2010-01-25 23:11:14 +01007591 /* We must trim any excess data from the response buffer, because we
7592 * may have blocked an invalid response from a server that we don't
7593 * want to accidentely forward once we disable the analysers, nor do
7594 * we want those data to come along with next response. A typical
7595 * example of such data would be from a buggy server responding to
7596 * a HEAD with some data, or sending more than the advertised
7597 * content-length.
7598 */
7599 if (unlikely(s->rep->l > s->rep->send_max)) {
7600 s->rep->l = s->rep->send_max;
7601 s->rep->r = s->rep->w + s->rep->l;
7602 if (s->rep->r >= s->rep->data + s->rep->size)
7603 s->rep->r -= s->rep->size;
7604 }
7605
Willy Tarreau0937bc42009-12-22 15:03:09 +01007606 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02007607 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007608
Willy Tarreaud04e8582010-05-31 12:31:35 +02007609 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007610 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007611
7612 s->req->rex = TICK_ETERNITY;
7613 s->req->wex = TICK_ETERNITY;
7614 s->req->analyse_exp = TICK_ETERNITY;
7615 s->rep->rex = TICK_ETERNITY;
7616 s->rep->wex = TICK_ETERNITY;
7617 s->rep->analyse_exp = TICK_ETERNITY;
7618}
Willy Tarreau58f10d72006-12-04 02:26:12 +01007619
Willy Tarreauff011f22011-01-06 17:51:27 +01007620void free_http_req_rules(struct list *r) {
7621 struct http_req_rule *tr, *pr;
7622
7623 list_for_each_entry_safe(pr, tr, r, list) {
7624 LIST_DEL(&pr->list);
7625 if (pr->action == HTTP_REQ_ACT_HTTP_AUTH)
7626 free(pr->http_auth.realm);
7627
7628 free(pr);
7629 }
7630}
7631
7632struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
7633{
7634 struct http_req_rule *rule;
7635 int cur_arg;
7636
7637 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
7638 if (!rule) {
7639 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
7640 return NULL;
7641 }
7642
7643 if (!*args[0]) {
7644 goto req_error_parsing;
7645 } else if (!strcmp(args[0], "allow")) {
7646 rule->action = HTTP_REQ_ACT_ALLOW;
7647 cur_arg = 1;
7648 } else if (!strcmp(args[0], "deny")) {
7649 rule->action = HTTP_REQ_ACT_DENY;
7650 cur_arg = 1;
7651 } else if (!strcmp(args[0], "auth")) {
7652 rule->action = HTTP_REQ_ACT_HTTP_AUTH;
7653 cur_arg = 1;
7654
7655 while(*args[cur_arg]) {
7656 if (!strcmp(args[cur_arg], "realm")) {
7657 rule->http_auth.realm = strdup(args[cur_arg + 1]);
7658 cur_arg+=2;
7659 continue;
7660 } else
7661 break;
7662 }
7663 } else {
7664req_error_parsing:
7665 Alert("parsing [%s:%d]: %s '%s', expects 'allow', 'deny', 'auth'.\n",
7666 file, linenum, *args[1]?"unknown parameter":"missing keyword in", args[*args[1]?1:0]);
7667 return NULL;
7668 }
7669
7670 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
7671 struct acl_cond *cond;
7672
7673 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg)) == NULL) {
7674 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition.\n",
7675 file, linenum, args[0]);
7676 return NULL;
7677 }
7678 rule->cond = cond;
7679 }
7680 else if (*args[cur_arg]) {
7681 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
7682 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
7683 file, linenum, args[0], args[cur_arg]);
7684 return NULL;
7685 }
7686
7687 return rule;
7688}
7689
Willy Tarreau8797c062007-05-07 00:55:35 +02007690/************************************************************************/
7691/* The code below is dedicated to ACL parsing and matching */
7692/************************************************************************/
7693
7694
7695
7696
7697/* 1. Check on METHOD
7698 * We use the pre-parsed method if it is known, and store its number as an
7699 * integer. If it is unknown, we use the pointer and the length.
7700 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007701static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007702{
7703 int len, meth;
7704
Willy Tarreauae8b7962007-06-09 23:10:04 +02007705 len = strlen(*text);
7706 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02007707
7708 pattern->val.i = meth;
7709 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02007710 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007711 if (!pattern->ptr.str)
7712 return 0;
7713 pattern->len = len;
7714 }
7715 return 1;
7716}
7717
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007718static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007719acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
7720 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007721{
7722 int meth;
7723 struct http_txn *txn = l7;
7724
Willy Tarreaub6866442008-07-14 23:54:42 +02007725 if (!txn)
7726 return 0;
7727
Willy Tarreau655dce92009-11-08 13:10:58 +01007728 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007729 return 0;
7730
Willy Tarreau8797c062007-05-07 00:55:35 +02007731 meth = txn->meth;
7732 test->i = meth;
7733 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02007734 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7735 /* ensure the indexes are not affected */
7736 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02007737 test->len = txn->req.sl.rq.m_l;
7738 test->ptr = txn->req.sol;
7739 }
7740 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7741 return 1;
7742}
7743
7744static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
7745{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007746 int icase;
7747
Willy Tarreau8797c062007-05-07 00:55:35 +02007748 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02007749 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02007750
7751 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02007752 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007753
7754 /* Other method, we must compare the strings */
7755 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02007756 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02007757
7758 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
7759 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
7760 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02007761 return ACL_PAT_FAIL;
7762 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02007763}
7764
7765/* 2. Check on Request/Status Version
7766 * We simply compare strings here.
7767 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02007768static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02007769{
Willy Tarreauae8b7962007-06-09 23:10:04 +02007770 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007771 if (!pattern->ptr.str)
7772 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02007773 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02007774 return 1;
7775}
7776
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007777static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007778acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
7779 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007780{
7781 struct http_txn *txn = l7;
7782 char *ptr;
7783 int len;
7784
Willy Tarreaub6866442008-07-14 23:54:42 +02007785 if (!txn)
7786 return 0;
7787
Willy Tarreau655dce92009-11-08 13:10:58 +01007788 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007789 return 0;
7790
Willy Tarreau8797c062007-05-07 00:55:35 +02007791 len = txn->req.sl.rq.v_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007792 ptr = txn->req.sol + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02007793
7794 while ((len-- > 0) && (*ptr++ != '/'));
7795 if (len <= 0)
7796 return 0;
7797
7798 test->ptr = ptr;
7799 test->len = len;
7800
7801 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7802 return 1;
7803}
7804
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007805static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007806acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
7807 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007808{
7809 struct http_txn *txn = l7;
7810 char *ptr;
7811 int len;
7812
Willy Tarreaub6866442008-07-14 23:54:42 +02007813 if (!txn)
7814 return 0;
7815
Willy Tarreau655dce92009-11-08 13:10:58 +01007816 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007817 return 0;
7818
Willy Tarreau8797c062007-05-07 00:55:35 +02007819 len = txn->rsp.sl.st.v_l;
7820 ptr = txn->rsp.sol;
7821
7822 while ((len-- > 0) && (*ptr++ != '/'));
7823 if (len <= 0)
7824 return 0;
7825
7826 test->ptr = ptr;
7827 test->len = len;
7828
7829 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
7830 return 1;
7831}
7832
7833/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007834static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007835acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
7836 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007837{
7838 struct http_txn *txn = l7;
7839 char *ptr;
7840 int len;
7841
Willy Tarreaub6866442008-07-14 23:54:42 +02007842 if (!txn)
7843 return 0;
7844
Willy Tarreau655dce92009-11-08 13:10:58 +01007845 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007846 return 0;
7847
Willy Tarreau8797c062007-05-07 00:55:35 +02007848 len = txn->rsp.sl.st.c_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007849 ptr = txn->rsp.sol + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02007850
7851 test->i = __strl2ui(ptr, len);
7852 test->flags = ACL_TEST_F_VOL_1ST;
7853 return 1;
7854}
7855
7856/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02007857static int
Willy Tarreau97be1452007-06-10 11:47:14 +02007858acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
7859 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02007860{
7861 struct http_txn *txn = l7;
7862
Willy Tarreaub6866442008-07-14 23:54:42 +02007863 if (!txn)
7864 return 0;
7865
Willy Tarreau655dce92009-11-08 13:10:58 +01007866 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007867 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007868
Willy Tarreauc11416f2007-06-17 16:58:38 +02007869 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7870 /* ensure the indexes are not affected */
7871 return 0;
7872
Willy Tarreau8797c062007-05-07 00:55:35 +02007873 test->len = txn->req.sl.rq.u_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01007874 test->ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8797c062007-05-07 00:55:35 +02007875
Willy Tarreauf3d25982007-05-08 22:45:09 +02007876 /* we do not need to set READ_ONLY because the data is in a buffer */
7877 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02007878 return 1;
7879}
7880
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007881static int
7882acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
7883 struct acl_expr *expr, struct acl_test *test)
7884{
7885 struct http_txn *txn = l7;
7886
Willy Tarreaub6866442008-07-14 23:54:42 +02007887 if (!txn)
7888 return 0;
7889
Willy Tarreau655dce92009-11-08 13:10:58 +01007890 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007891 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007892
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007893 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7894 /* ensure the indexes are not affected */
7895 return 0;
7896
7897 /* Parse HTTP request */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007898 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7899 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007900 test->i = AF_INET;
7901
7902 /*
7903 * If we are parsing url in frontend space, we prepare backend stage
7904 * to not parse again the same url ! optimization lazyness...
7905 */
7906 if (px->options & PR_O_HTTP_PROXY)
7907 l4->flags |= SN_ADDR_SET;
7908
7909 test->flags = ACL_TEST_F_READ_ONLY;
7910 return 1;
7911}
7912
7913static int
7914acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
7915 struct acl_expr *expr, struct acl_test *test)
7916{
7917 struct http_txn *txn = l7;
7918
Willy Tarreaub6866442008-07-14 23:54:42 +02007919 if (!txn)
7920 return 0;
7921
Willy Tarreau655dce92009-11-08 13:10:58 +01007922 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007923 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007924
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007925 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7926 /* ensure the indexes are not affected */
7927 return 0;
7928
7929 /* Same optimization as url_ip */
Willy Tarreau957c0a52011-03-03 17:42:23 +01007930 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->req->cons->addr.s.to);
7931 test->i = ntohs(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_port);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01007932
7933 if (px->options & PR_O_HTTP_PROXY)
7934 l4->flags |= SN_ADDR_SET;
7935
7936 test->flags = ACL_TEST_F_READ_ONLY;
7937 return 1;
7938}
7939
Willy Tarreauc11416f2007-06-17 16:58:38 +02007940/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
7941 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
7942 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02007943static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02007944acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02007945 struct acl_expr *expr, struct acl_test *test)
7946{
7947 struct http_txn *txn = l7;
7948 struct hdr_idx *idx = &txn->hdr_idx;
7949 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02007950
Willy Tarreaub6866442008-07-14 23:54:42 +02007951 if (!txn)
7952 return 0;
7953
Willy Tarreau33a7e692007-06-10 19:45:56 +02007954 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
7955 /* search for header from the beginning */
7956 ctx->idx = 0;
7957
Willy Tarreau33a7e692007-06-10 19:45:56 +02007958 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
7959 test->flags |= ACL_TEST_F_FETCH_MORE;
7960 test->flags |= ACL_TEST_F_VOL_HDR;
7961 test->len = ctx->vlen;
7962 test->ptr = (char *)ctx->line + ctx->val;
7963 return 1;
7964 }
7965
7966 test->flags &= ~ACL_TEST_F_FETCH_MORE;
7967 test->flags |= ACL_TEST_F_VOL_HDR;
7968 return 0;
7969}
7970
Willy Tarreau33a7e692007-06-10 19:45:56 +02007971static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02007972acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
7973 struct acl_expr *expr, struct acl_test *test)
7974{
7975 struct http_txn *txn = l7;
7976
Willy Tarreaub6866442008-07-14 23:54:42 +02007977 if (!txn)
7978 return 0;
7979
Willy Tarreau655dce92009-11-08 13:10:58 +01007980 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007981 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007982
Willy Tarreauc11416f2007-06-17 16:58:38 +02007983 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7984 /* ensure the indexes are not affected */
7985 return 0;
7986
7987 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
7988}
7989
7990static int
7991acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
7992 struct acl_expr *expr, struct acl_test *test)
7993{
7994 struct http_txn *txn = l7;
7995
Willy Tarreaub6866442008-07-14 23:54:42 +02007996 if (!txn)
7997 return 0;
7998
Willy Tarreau655dce92009-11-08 13:10:58 +01007999 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008000 return 0;
8001
8002 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
8003}
8004
8005/* 6. Check on HTTP header count. The number of occurrences is returned.
8006 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8007 */
8008static int
8009acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008010 struct acl_expr *expr, struct acl_test *test)
8011{
8012 struct http_txn *txn = l7;
8013 struct hdr_idx *idx = &txn->hdr_idx;
8014 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008015 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02008016
Willy Tarreaub6866442008-07-14 23:54:42 +02008017 if (!txn)
8018 return 0;
8019
Willy Tarreau33a7e692007-06-10 19:45:56 +02008020 ctx.idx = 0;
8021 cnt = 0;
8022 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
8023 cnt++;
8024
8025 test->i = cnt;
8026 test->flags = ACL_TEST_F_VOL_HDR;
8027 return 1;
8028}
8029
Willy Tarreauc11416f2007-06-17 16:58:38 +02008030static int
8031acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8032 struct acl_expr *expr, struct acl_test *test)
8033{
8034 struct http_txn *txn = l7;
8035
Willy Tarreaub6866442008-07-14 23:54:42 +02008036 if (!txn)
8037 return 0;
8038
Willy Tarreau655dce92009-11-08 13:10:58 +01008039 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008040 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008041
Willy Tarreauc11416f2007-06-17 16:58:38 +02008042 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8043 /* ensure the indexes are not affected */
8044 return 0;
8045
8046 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
8047}
8048
8049static int
8050acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
8051 struct acl_expr *expr, struct acl_test *test)
8052{
8053 struct http_txn *txn = l7;
8054
Willy Tarreaub6866442008-07-14 23:54:42 +02008055 if (!txn)
8056 return 0;
8057
Willy Tarreau655dce92009-11-08 13:10:58 +01008058 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008059 return 0;
8060
8061 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
8062}
8063
Willy Tarreau33a7e692007-06-10 19:45:56 +02008064/* 7. Check on HTTP header's integer value. The integer value is returned.
8065 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02008066 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02008067 */
8068static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02008069acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02008070 struct acl_expr *expr, struct acl_test *test)
8071{
8072 struct http_txn *txn = l7;
8073 struct hdr_idx *idx = &txn->hdr_idx;
8074 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008075
Willy Tarreaub6866442008-07-14 23:54:42 +02008076 if (!txn)
8077 return 0;
8078
Willy Tarreau33a7e692007-06-10 19:45:56 +02008079 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8080 /* search for header from the beginning */
8081 ctx->idx = 0;
8082
Willy Tarreau33a7e692007-06-10 19:45:56 +02008083 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8084 test->flags |= ACL_TEST_F_FETCH_MORE;
8085 test->flags |= ACL_TEST_F_VOL_HDR;
8086 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
8087 return 1;
8088 }
8089
8090 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8091 test->flags |= ACL_TEST_F_VOL_HDR;
8092 return 0;
8093}
8094
Willy Tarreauc11416f2007-06-17 16:58:38 +02008095static int
8096acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8097 struct acl_expr *expr, struct acl_test *test)
8098{
8099 struct http_txn *txn = l7;
8100
Willy Tarreaub6866442008-07-14 23:54:42 +02008101 if (!txn)
8102 return 0;
8103
Willy Tarreau655dce92009-11-08 13:10:58 +01008104 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008105 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008106
Willy Tarreauc11416f2007-06-17 16:58:38 +02008107 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8108 /* ensure the indexes are not affected */
8109 return 0;
8110
8111 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
8112}
8113
8114static int
8115acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
8116 struct acl_expr *expr, struct acl_test *test)
8117{
8118 struct http_txn *txn = l7;
8119
Willy Tarreaub6866442008-07-14 23:54:42 +02008120 if (!txn)
8121 return 0;
8122
Willy Tarreau655dce92009-11-08 13:10:58 +01008123 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008124 return 0;
8125
8126 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
8127}
8128
Willy Tarreau106f9792009-09-19 07:54:16 +02008129/* 7. Check on HTTP header's IPv4 address value. The IPv4 address is returned.
8130 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
8131 */
8132static int
8133acl_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, char *sol,
8134 struct acl_expr *expr, struct acl_test *test)
8135{
8136 struct http_txn *txn = l7;
8137 struct hdr_idx *idx = &txn->hdr_idx;
8138 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
8139
8140 if (!txn)
8141 return 0;
8142
8143 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
8144 /* search for header from the beginning */
8145 ctx->idx = 0;
8146
8147 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
8148 test->flags |= ACL_TEST_F_FETCH_MORE;
8149 test->flags |= ACL_TEST_F_VOL_HDR;
8150 /* Same optimization as url_ip */
David du Colombier6f5ccb12011-03-10 22:26:24 +01008151 memset(&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr, 0, sizeof(((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr));
8152 url2ipv4((char *)ctx->line + ctx->val, &((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr);
8153 test->ptr = (void *)&((struct sockaddr_in *)&l4->req->cons->addr.s.to)->sin_addr;
Willy Tarreau106f9792009-09-19 07:54:16 +02008154 test->i = AF_INET;
8155 return 1;
8156 }
8157
8158 test->flags &= ~ACL_TEST_F_FETCH_MORE;
8159 test->flags |= ACL_TEST_F_VOL_HDR;
8160 return 0;
8161}
8162
8163static int
8164acl_fetch_chdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8165 struct acl_expr *expr, struct acl_test *test)
8166{
8167 struct http_txn *txn = l7;
8168
8169 if (!txn)
8170 return 0;
8171
Willy Tarreau655dce92009-11-08 13:10:58 +01008172 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008173 return 0;
8174
8175 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8176 /* ensure the indexes are not affected */
8177 return 0;
8178
8179 return acl_fetch_hdr_ip(px, l4, txn, txn->req.sol, expr, test);
8180}
8181
8182static int
8183acl_fetch_shdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
8184 struct acl_expr *expr, struct acl_test *test)
8185{
8186 struct http_txn *txn = l7;
8187
8188 if (!txn)
8189 return 0;
8190
Willy Tarreau655dce92009-11-08 13:10:58 +01008191 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02008192 return 0;
8193
8194 return acl_fetch_hdr_ip(px, l4, txn, txn->rsp.sol, expr, test);
8195}
8196
Willy Tarreau737b0c12007-06-10 21:28:46 +02008197/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
8198 * the first '/' after the possible hostname, and ends before the possible '?'.
8199 */
8200static int
8201acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
8202 struct acl_expr *expr, struct acl_test *test)
8203{
8204 struct http_txn *txn = l7;
8205 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02008206
Willy Tarreaub6866442008-07-14 23:54:42 +02008207 if (!txn)
8208 return 0;
8209
Willy Tarreau655dce92009-11-08 13:10:58 +01008210 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02008211 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02008212
Willy Tarreauc11416f2007-06-17 16:58:38 +02008213 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
8214 /* ensure the indexes are not affected */
8215 return 0;
8216
Willy Tarreau962c3f42010-01-10 00:15:35 +01008217 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01008218 ptr = http_get_path(txn);
8219 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02008220 return 0;
8221
8222 /* OK, we got the '/' ! */
8223 test->ptr = ptr;
8224
8225 while (ptr < end && *ptr != '?')
8226 ptr++;
8227
8228 test->len = ptr - test->ptr;
8229
8230 /* we do not need to set READ_ONLY because the data is in a buffer */
8231 test->flags = ACL_TEST_F_VOL_1ST;
8232 return 1;
8233}
8234
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008235static int
8236acl_fetch_proto_http(struct proxy *px, struct session *s, void *l7, int dir,
8237 struct acl_expr *expr, struct acl_test *test)
8238{
8239 struct buffer *req = s->req;
8240 struct http_txn *txn = &s->txn;
8241 struct http_msg *msg = &txn->req;
Willy Tarreau737b0c12007-06-10 21:28:46 +02008242
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008243 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
8244 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
8245 */
8246
8247 if (!s || !req)
8248 return 0;
8249
Willy Tarreau655dce92009-11-08 13:10:58 +01008250 if (unlikely(msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008251 /* Already decoded as OK */
8252 test->flags |= ACL_TEST_F_SET_RES_PASS;
8253 return 1;
8254 }
8255
8256 /* Try to decode HTTP request */
8257 if (likely(req->lr < req->r))
8258 http_msg_analyzer(req, msg, &txn->hdr_idx);
8259
Willy Tarreau655dce92009-11-08 13:10:58 +01008260 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008261 if ((msg->msg_state == HTTP_MSG_ERROR) || (req->flags & BF_FULL)) {
8262 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8263 return 1;
8264 }
8265 /* wait for final state */
8266 test->flags |= ACL_TEST_F_MAY_CHANGE;
8267 return 0;
8268 }
8269
8270 /* OK we got a valid HTTP request. We have some minor preparation to
8271 * perform so that further checks can rely on HTTP tests.
8272 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01008273 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008274 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
8275 s->flags |= SN_REDIRECTABLE;
8276
8277 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) {
8278 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8279 return 1;
8280 }
8281
8282 test->flags |= ACL_TEST_F_SET_RES_PASS;
8283 return 1;
8284}
8285
Willy Tarreau7f18e522010-10-22 20:04:13 +02008286/* return a valid test if the current request is the first one on the connection */
8287static int
8288acl_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, int dir,
8289 struct acl_expr *expr, struct acl_test *test)
8290{
8291 if (!s)
8292 return 0;
8293
8294 if (s->txn.flags & TX_NOT_FIRST)
8295 test->flags |= ACL_TEST_F_SET_RES_FAIL;
8296 else
8297 test->flags |= ACL_TEST_F_SET_RES_PASS;
8298
8299 return 1;
8300}
8301
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008302static int
8303acl_fetch_http_auth(struct proxy *px, struct session *s, void *l7, int dir,
8304 struct acl_expr *expr, struct acl_test *test)
8305{
8306
8307 if (!s)
8308 return 0;
8309
8310 if (!get_http_auth(s))
8311 return 0;
8312
8313 test->ctx.a[0] = expr->arg.ul;
8314 test->ctx.a[1] = s->txn.auth.user;
8315 test->ctx.a[2] = s->txn.auth.pass;
8316
8317 test->flags |= ACL_TEST_F_READ_ONLY | ACL_TEST_F_NULL_MATCH;
8318
8319 return 1;
8320}
Willy Tarreau8797c062007-05-07 00:55:35 +02008321
8322/************************************************************************/
8323/* All supported keywords must be declared here. */
8324/************************************************************************/
8325
8326/* Note: must not be declared <const> as its list will be overwritten */
8327static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02008328 { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
8329
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008330 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
Willy Tarreauc4262962010-05-10 23:42:40 +02008331 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
8332 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008333 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02008334
Willy Tarreauc4262962010-05-10 23:42:40 +02008335 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008336 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8337 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8338 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8339 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8340 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8341 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008342 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008343 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02008344
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008345 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
Willy Tarreauc4262962010-05-10 23:42:40 +02008346 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008347 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8348 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8349 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8350 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8351 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8352 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
8353 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
8354 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008355 { "hdr_ip", acl_parse_ip, acl_fetch_chdr_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreauc11416f2007-06-17 16:58:38 +02008356
Willy Tarreauc4262962010-05-10 23:42:40 +02008357 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008358 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
8359 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
8360 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
8361 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
8362 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
8363 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
8364 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
8365 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreaub337b532010-05-13 20:03:41 +02008366 { "shdr_ip", acl_parse_ip, acl_fetch_shdr_ip, acl_match_ip, ACL_USE_L7RTR_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau737b0c12007-06-10 21:28:46 +02008367
Willy Tarreauc4262962010-05-10 23:42:40 +02008368 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE|ACL_MAY_LOOKUP },
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02008369 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
8370 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
8371 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
8372 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
8373 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
8374 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02008375
Willy Tarreauf3d25982007-05-08 22:45:09 +02008376#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02008377 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
8378 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
8379 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
8380 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
8381 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
8382 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
8383 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
8384
Willy Tarreau8797c062007-05-07 00:55:35 +02008385 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
8386 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
8387 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
8388 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
8389 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
8390 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
8391 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
8392 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008393#endif
Willy Tarreau8797c062007-05-07 00:55:35 +02008394
Willy Tarreau7f18e522010-10-22 20:04:13 +02008395 { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8396 { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth, acl_match_auth, ACL_USE_L7REQ_PERMANENT },
8397 { "http_first_req", acl_parse_nothing, acl_fetch_http_first_req, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02008398 { NULL, NULL, NULL, NULL },
Willy Tarreau8797c062007-05-07 00:55:35 +02008399}};
8400
Willy Tarreau4a568972010-05-12 08:08:50 +02008401/************************************************************************/
8402/* The code below is dedicated to pattern fetching and matching */
8403/************************************************************************/
8404
8405/* extract the IP address from the last occurrence of specified header. Note
8406 * that we should normally first extract the string then convert it to IP,
8407 * but right now we have all the functions to do this seemlessly, and we will
8408 * be able to change that later without touching the configuration.
8409 */
8410static int
8411pattern_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
Emeric Brun485479d2010-09-23 18:02:19 +02008412 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
Willy Tarreau4a568972010-05-12 08:08:50 +02008413{
8414 struct http_txn *txn = l7;
8415
Emeric Brun485479d2010-09-23 18:02:19 +02008416 data->ip.s_addr = htonl(get_ip_from_hdr2(&txn->req, arg_p->data.str.str, arg_p->data.str.len, &txn->hdr_idx, -1));
Willy Tarreau4a568972010-05-12 08:08:50 +02008417 return data->ip.s_addr != 0;
8418}
8419
David Cournapeau16023ee2010-12-23 20:55:41 +09008420/*
8421 * Given a path string and its length, find the position of beginning of the
8422 * query string. Returns NULL if no query string is found in the path.
8423 *
8424 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
8425 *
8426 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
8427 */
8428static inline char *find_query_string(char *path, size_t path_l)
8429{
8430 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +02008431
David Cournapeau16023ee2010-12-23 20:55:41 +09008432 p = memchr(path, '?', path_l);
8433 return p ? p + 1 : NULL;
8434}
8435
8436static inline int is_param_delimiter(char c)
8437{
8438 return c == '&' || c == ';';
8439}
8440
8441/*
8442 * Given a url parameter, find the starting position of the first occurence,
8443 * or NULL if the parameter is not found.
8444 *
8445 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
8446 * the function will return query_string+8.
8447 */
8448static char*
8449find_url_param_pos(char* query_string, size_t query_string_l,
8450 char* url_param_name, size_t url_param_name_l)
8451{
8452 char *pos, *last;
8453
8454 pos = query_string;
8455 last = query_string + query_string_l - url_param_name_l - 1;
8456
8457 while (pos <= last) {
8458 if (pos[url_param_name_l] == '=') {
8459 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
8460 return pos;
8461 pos += url_param_name_l + 1;
8462 }
8463 while (pos <= last && !is_param_delimiter(*pos))
8464 pos++;
8465 pos++;
8466 }
8467 return NULL;
8468}
8469
8470/*
8471 * Given a url parameter name, returns its value and size into *value and
8472 * *value_l respectively, and returns non-zero. If the parameter is not found,
8473 * zero is returned and value/value_l are not touched.
8474 */
8475static int
8476find_url_param_value(char* path, size_t path_l,
8477 char* url_param_name, size_t url_param_name_l,
8478 char** value, size_t* value_l)
8479{
8480 char *query_string, *qs_end;
8481 char *arg_start;
8482 char *value_start, *value_end;
8483
8484 query_string = find_query_string(path, path_l);
8485 if (!query_string)
8486 return 0;
8487
8488 qs_end = path + path_l;
8489 arg_start = find_url_param_pos(query_string, qs_end - query_string,
8490 url_param_name, url_param_name_l);
8491 if (!arg_start)
8492 return 0;
8493
8494 value_start = arg_start + url_param_name_l + 1;
8495 value_end = value_start;
8496
8497 while ((value_end < qs_end) && !is_param_delimiter(*value_end))
8498 value_end++;
8499
8500 *value = value_start;
8501 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +01008502 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +09008503}
8504
8505static int
8506pattern_fetch_url_param(struct proxy *px, struct session *l4, void *l7, int dir,
8507 const struct pattern_arg *arg_p, int arg_i, union pattern_data *data)
8508{
8509 struct http_txn *txn = l7;
8510 struct http_msg *msg = &txn->req;
8511 char *url_param_value;
8512 size_t url_param_value_l;
8513
8514 if (!find_url_param_value(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l,
8515 arg_p->data.str.str, arg_p->data.str.len,
8516 &url_param_value, &url_param_value_l))
8517 return 0;
8518
8519 data->str.str = url_param_value;
8520 data->str.len = url_param_value_l;
8521 return 1;
8522}
8523
Emeric Brun485479d2010-09-23 18:02:19 +02008524
Willy Tarreau4a568972010-05-12 08:08:50 +02008525/************************************************************************/
8526/* All supported keywords must be declared here. */
8527/************************************************************************/
8528/* Note: must not be declared <const> as its list will be overwritten */
8529static struct pattern_fetch_kw_list pattern_fetch_keywords = {{ },{
Emeric Brun485479d2010-09-23 18:02:19 +02008530 { "hdr", pattern_fetch_hdr_ip, pattern_arg_str, PATTERN_TYPE_IP, PATTERN_FETCH_REQ },
David Cournapeau16023ee2010-12-23 20:55:41 +09008531 { "url_param", pattern_fetch_url_param, pattern_arg_str, PATTERN_TYPE_STRING, PATTERN_FETCH_REQ },
Emeric Brun485479d2010-09-23 18:02:19 +02008532 { NULL, NULL, NULL, 0, 0 },
Willy Tarreau4a568972010-05-12 08:08:50 +02008533}};
8534
Willy Tarreau8797c062007-05-07 00:55:35 +02008535
8536__attribute__((constructor))
8537static void __http_protocol_init(void)
8538{
8539 acl_register_keywords(&acl_kws);
Willy Tarreau4a568972010-05-12 08:08:50 +02008540 pattern_register_fetches(&pattern_fetch_keywords);
Willy Tarreau8797c062007-05-07 00:55:35 +02008541}
8542
8543
Willy Tarreau58f10d72006-12-04 02:26:12 +01008544/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02008545 * Local variables:
8546 * c-indent-level: 8
8547 * c-basic-offset: 8
8548 * End:
8549 */