blob: e502bffe1307284af114d0d2b6b8702f8984f976 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01004 * Copyright 2000-2010 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>
Maik Broemme2850cb42009-04-17 18:53:21 +020047#include <proto/client.h>
Willy Tarreau91861262007-10-17 17:06:05 +020048#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <proto/fd.h>
50#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010051#include <proto/hdr_idx.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020052#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010054#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010056#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020057#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010058#include <proto/stream_interface.h>
Willy Tarreau2d212792008-08-27 21:41:35 +020059#include <proto/stream_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020060#include <proto/task.h>
61
Willy Tarreau522d6c02009-12-06 18:49:18 +010062const char HTTP_100[] =
63 "HTTP/1.1 100 Continue\r\n\r\n";
64
65const struct chunk http_100_chunk = {
66 .str = (char *)&HTTP_100,
67 .len = sizeof(HTTP_100)-1
68};
69
Willy Tarreau1c47f852006-07-09 08:22:27 +020070/* This is used by remote monitoring */
Willy Tarreau0f772532006-12-23 20:51:41 +010071const char HTTP_200[] =
Willy Tarreau1c47f852006-07-09 08:22:27 +020072 "HTTP/1.0 200 OK\r\n"
73 "Cache-Control: no-cache\r\n"
74 "Connection: close\r\n"
75 "Content-Type: text/html\r\n"
76 "\r\n"
77 "<html><body><h1>200 OK</h1>\nHAProxy: service ready.\n</body></html>\n";
78
Willy Tarreau0f772532006-12-23 20:51:41 +010079const struct chunk http_200_chunk = {
80 .str = (char *)&HTTP_200,
81 .len = sizeof(HTTP_200)-1
82};
83
Willy Tarreaua9679ac2010-01-03 17:32:57 +010084/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020085const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020087 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010088 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020089 "Location: "; /* not terminated since it will be concatenated with the URL */
90
Willy Tarreau0f772532006-12-23 20:51:41 +010091const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010092 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010093 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010094 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010095 "Location: "; /* not terminated since it will be concatenated with the URL */
96
97/* same as 302 except that the browser MUST retry with the GET method */
98const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010099 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100100 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +0100101 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
105const char *HTTP_401_fmt =
106 "HTTP/1.0 401 Unauthorized\r\n"
107 "Cache-Control: no-cache\r\n"
108 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200109 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
111 "\r\n"
112 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
113
Willy Tarreau844a7e72010-01-31 21:46:18 +0100114const char *HTTP_407_fmt =
115 "HTTP/1.0 407 Unauthorized\r\n"
116 "Cache-Control: no-cache\r\n"
117 "Connection: close\r\n"
118 "Content-Type: text/html\r\n"
119 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
120 "\r\n"
121 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
122
Willy Tarreau0f772532006-12-23 20:51:41 +0100123
124const int http_err_codes[HTTP_ERR_SIZE] = {
125 [HTTP_ERR_400] = 400,
126 [HTTP_ERR_403] = 403,
127 [HTTP_ERR_408] = 408,
128 [HTTP_ERR_500] = 500,
129 [HTTP_ERR_502] = 502,
130 [HTTP_ERR_503] = 503,
131 [HTTP_ERR_504] = 504,
132};
133
Willy Tarreau80587432006-12-24 17:47:20 +0100134static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreau0f772532006-12-23 20:51:41 +0100135 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100136 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100137 "Cache-Control: no-cache\r\n"
138 "Connection: close\r\n"
139 "Content-Type: text/html\r\n"
140 "\r\n"
141 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
142
143 [HTTP_ERR_403] =
144 "HTTP/1.0 403 Forbidden\r\n"
145 "Cache-Control: no-cache\r\n"
146 "Connection: close\r\n"
147 "Content-Type: text/html\r\n"
148 "\r\n"
149 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
150
151 [HTTP_ERR_408] =
152 "HTTP/1.0 408 Request Time-out\r\n"
153 "Cache-Control: no-cache\r\n"
154 "Connection: close\r\n"
155 "Content-Type: text/html\r\n"
156 "\r\n"
157 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
158
159 [HTTP_ERR_500] =
160 "HTTP/1.0 500 Server Error\r\n"
161 "Cache-Control: no-cache\r\n"
162 "Connection: close\r\n"
163 "Content-Type: text/html\r\n"
164 "\r\n"
165 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
166
167 [HTTP_ERR_502] =
168 "HTTP/1.0 502 Bad Gateway\r\n"
169 "Cache-Control: no-cache\r\n"
170 "Connection: close\r\n"
171 "Content-Type: text/html\r\n"
172 "\r\n"
173 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
174
175 [HTTP_ERR_503] =
176 "HTTP/1.0 503 Service Unavailable\r\n"
177 "Cache-Control: no-cache\r\n"
178 "Connection: close\r\n"
179 "Content-Type: text/html\r\n"
180 "\r\n"
181 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
182
183 [HTTP_ERR_504] =
184 "HTTP/1.0 504 Gateway Time-out\r\n"
185 "Cache-Control: no-cache\r\n"
186 "Connection: close\r\n"
187 "Content-Type: text/html\r\n"
188 "\r\n"
189 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
190
191};
192
Willy Tarreau80587432006-12-24 17:47:20 +0100193/* We must put the messages here since GCC cannot initialize consts depending
194 * on strlen().
195 */
196struct chunk http_err_chunks[HTTP_ERR_SIZE];
197
Willy Tarreau42250582007-04-01 01:30:43 +0200198#define FD_SETS_ARE_BITFIELDS
199#ifdef FD_SETS_ARE_BITFIELDS
200/*
201 * This map is used with all the FD_* macros to check whether a particular bit
202 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
203 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
204 * byte should be encoded. Be careful to always pass bytes from 0 to 255
205 * exclusively to the macros.
206 */
207fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
208fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
209
210#else
211#error "Check if your OS uses bitfields for fd_sets"
212#endif
213
Willy Tarreau80587432006-12-24 17:47:20 +0100214void init_proto_http()
215{
Willy Tarreau42250582007-04-01 01:30:43 +0200216 int i;
217 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100218 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200219
Willy Tarreau80587432006-12-24 17:47:20 +0100220 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
221 if (!http_err_msgs[msg]) {
222 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
223 abort();
224 }
225
226 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
227 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
228 }
Willy Tarreau42250582007-04-01 01:30:43 +0200229
230 /* initialize the log header encoding map : '{|}"#' should be encoded with
231 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
232 * URL encoding only requires '"', '#' to be encoded as well as non-
233 * printable characters above.
234 */
235 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
236 memset(url_encode_map, 0, sizeof(url_encode_map));
237 for (i = 0; i < 32; i++) {
238 FD_SET(i, hdr_encode_map);
239 FD_SET(i, url_encode_map);
240 }
241 for (i = 127; i < 256; i++) {
242 FD_SET(i, hdr_encode_map);
243 FD_SET(i, url_encode_map);
244 }
245
246 tmp = "\"#{|}";
247 while (*tmp) {
248 FD_SET(*tmp, hdr_encode_map);
249 tmp++;
250 }
251
252 tmp = "\"#";
253 while (*tmp) {
254 FD_SET(*tmp, url_encode_map);
255 tmp++;
256 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200257
258 /* memory allocations */
259 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200260 pool2_capture = create_pool("capture", CAPTURE_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100261}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200262
Willy Tarreau53b6c742006-12-17 13:37:46 +0100263/*
264 * We have 26 list of methods (1 per first letter), each of which can have
265 * up to 3 entries (2 valid, 1 null).
266 */
267struct http_method_desc {
268 http_meth_t meth;
269 int len;
270 const char text[8];
271};
272
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100273const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100274 ['C' - 'A'] = {
275 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
276 },
277 ['D' - 'A'] = {
278 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
279 },
280 ['G' - 'A'] = {
281 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
282 },
283 ['H' - 'A'] = {
284 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
285 },
286 ['P' - 'A'] = {
287 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
288 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
289 },
290 ['T' - 'A'] = {
291 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
292 },
293 /* rest is empty like this :
294 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
295 */
296};
297
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100298/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200299 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100300 * RFC2616 for those chars.
301 */
302
303const char http_is_spht[256] = {
304 [' '] = 1, ['\t'] = 1,
305};
306
307const char http_is_crlf[256] = {
308 ['\r'] = 1, ['\n'] = 1,
309};
310
311const char http_is_lws[256] = {
312 [' '] = 1, ['\t'] = 1,
313 ['\r'] = 1, ['\n'] = 1,
314};
315
316const char http_is_sep[256] = {
317 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
318 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
319 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
320 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
321 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
322};
323
324const char http_is_ctl[256] = {
325 [0 ... 31] = 1,
326 [127] = 1,
327};
328
329/*
330 * A token is any ASCII char that is neither a separator nor a CTL char.
331 * Do not overwrite values in assignment since gcc-2.95 will not handle
332 * them correctly. Instead, define every non-CTL char's status.
333 */
334const char http_is_token[256] = {
335 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
336 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
337 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
338 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
339 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
340 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
341 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
342 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
343 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
344 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
345 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
346 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
347 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
348 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
349 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
350 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
351 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
352 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
353 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
354 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
355 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
356 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
357 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
358 ['|'] = 1, ['}'] = 0, ['~'] = 1,
359};
360
361
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100362/*
363 * An http ver_token is any ASCII which can be found in an HTTP version,
364 * which includes 'H', 'T', 'P', '/', '.' and any digit.
365 */
366const char http_is_ver_token[256] = {
367 ['.'] = 1, ['/'] = 1,
368 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
369 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
370 ['H'] = 1, ['P'] = 1, ['T'] = 1,
371};
372
373
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100374/*
Willy Tarreaue988a792010-01-04 21:13:14 +0100375 * Silent debug that outputs only in strace, using fd #-1. Trash is modified.
376 */
377#if defined(DEBUG_FSM)
378static void http_silent_debug(int line, struct session *s)
379{
380 int size = 0;
381 size += snprintf(trash + size, sizeof(trash) - size,
382 "[%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",
383 line,
384 s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers,
385 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);
386 write(-1, trash, size);
387 size = 0;
388 size += snprintf(trash + size, sizeof(trash) - size,
389 " %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",
390 line,
391 s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers,
392 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);
393
394 write(-1, trash, size);
395}
396#else
397#define http_silent_debug(l,s) do { } while (0)
398#endif
399
400/*
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100401 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
402 * CRLF. Text length is measured first, so it cannot be NULL.
403 * The header is also automatically added to the index <hdr_idx>, and the end
404 * of headers is automatically adjusted. The number of bytes added is returned
405 * on success, otherwise <0 is returned indicating an error.
406 */
407int http_header_add_tail(struct buffer *b, struct http_msg *msg,
408 struct hdr_idx *hdr_idx, const char *text)
409{
410 int bytes, len;
411
412 len = strlen(text);
413 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
414 if (!bytes)
415 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100416 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100417 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
418}
419
420/*
421 * Adds a header and its CRLF at the tail of buffer <b>, just before the last
422 * CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
423 * the buffer is only opened and the space reserved, but nothing is copied.
424 * The header is also automatically added to the index <hdr_idx>, and the end
425 * of headers is automatically adjusted. The number of bytes added is returned
426 * on success, otherwise <0 is returned indicating an error.
427 */
428int http_header_add_tail2(struct buffer *b, struct http_msg *msg,
429 struct hdr_idx *hdr_idx, const char *text, int len)
430{
431 int bytes;
432
433 bytes = buffer_insert_line2(b, b->data + msg->eoh, text, len);
434 if (!bytes)
435 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100436 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100437 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
438}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200439
440/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100441 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
442 * If so, returns the position of the first non-space character relative to
443 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
444 * to return a pointer to the place after the first space. Returns 0 if the
445 * header name does not match. Checks are case-insensitive.
446 */
447int http_header_match2(const char *hdr, const char *end,
448 const char *name, int len)
449{
450 const char *val;
451
452 if (hdr + len >= end)
453 return 0;
454 if (hdr[len] != ':')
455 return 0;
456 if (strncasecmp(hdr, name, len) != 0)
457 return 0;
458 val = hdr + len + 1;
459 while (val < end && HTTP_IS_SPHT(*val))
460 val++;
461 if ((val >= end) && (len + 2 <= end - hdr))
462 return len + 2; /* we may replace starting from second space */
463 return val - hdr;
464}
465
Willy Tarreau68085d82010-01-18 14:54:04 +0100466/* Find the end of the header value contained between <s> and <e>. See RFC2616,
467 * par 2.2 for more information. Note that it requires a valid header to return
468 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200469 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100470char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200471{
472 int quoted, qdpair;
473
474 quoted = qdpair = 0;
475 for (; s < e; s++) {
476 if (qdpair) qdpair = 0;
477 else if (quoted && *s == '\\') qdpair = 1;
478 else if (quoted && *s == '"') quoted = 0;
479 else if (*s == '"') quoted = 1;
480 else if (*s == ',') return s;
481 }
482 return s;
483}
484
485/* Find the first or next occurrence of header <name> in message buffer <sol>
486 * using headers index <idx>, and return it in the <ctx> structure. This
487 * structure holds everything necessary to use the header and find next
488 * occurrence. If its <idx> member is 0, the header is searched from the
489 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100490 * 1 when it finds a value, and 0 when there is no more. It is designed to work
491 * with headers defined as comma-separated lists. As a special case, if ctx->val
492 * is NULL when searching for a new values of a header, the current header is
493 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200494 */
495int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100496 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200497 struct hdr_ctx *ctx)
498{
Willy Tarreau68085d82010-01-18 14:54:04 +0100499 char *eol, *sov;
500 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200501
Willy Tarreau68085d82010-01-18 14:54:04 +0100502 cur_idx = ctx->idx;
503 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200504 /* We have previously returned a value, let's search
505 * another one on the same line.
506 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200507 sol = ctx->line;
Willy Tarreau68085d82010-01-18 14:54:04 +0100508 ctx->del = ctx->val + ctx->vlen;
509 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200510 eol = sol + idx->v[cur_idx].len;
511
512 if (sov >= eol)
513 /* no more values in this header */
514 goto next_hdr;
515
Willy Tarreau68085d82010-01-18 14:54:04 +0100516 /* values remaining for this header, skip the comma but save it
517 * for later use (eg: for header deletion).
518 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200519 sov++;
520 while (sov < eol && http_is_lws[(unsigned char)*sov])
521 sov++;
522
523 goto return_hdr;
524 }
525
526 /* first request for this header */
527 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100528 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200529 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200530 while (cur_idx) {
531 eol = sol + idx->v[cur_idx].len;
532
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200533 if (len == 0) {
534 /* No argument was passed, we want any header.
535 * To achieve this, we simply build a fake request. */
536 while (sol + len < eol && sol[len] != ':')
537 len++;
538 name = sol;
539 }
540
Willy Tarreau33a7e692007-06-10 19:45:56 +0200541 if ((len < eol - sol) &&
542 (sol[len] == ':') &&
543 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100544 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200545 sov = sol + len + 1;
546 while (sov < eol && http_is_lws[(unsigned char)*sov])
547 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100548
Willy Tarreau33a7e692007-06-10 19:45:56 +0200549 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100550 ctx->prev = old_idx;
551 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200552 ctx->idx = cur_idx;
553 ctx->val = sov - sol;
554
555 eol = find_hdr_value_end(sov, eol);
556 ctx->vlen = eol - sov;
557 return 1;
558 }
559 next_hdr:
560 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100561 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200562 cur_idx = idx->v[cur_idx].next;
563 }
564 return 0;
565}
566
567int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100568 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200569 struct hdr_ctx *ctx)
570{
571 return http_find_header2(name, strlen(name), sol, idx, ctx);
572}
573
Willy Tarreau68085d82010-01-18 14:54:04 +0100574/* Remove one value of a header. This only works on a <ctx> returned by one of
575 * the http_find_header functions. The value is removed, as well as surrounding
576 * commas if any. If the removed value was alone, the whole header is removed.
577 * The ctx is always updated accordingly, as well as buffer <buf> and HTTP
578 * message <msg>. The new index is returned. If it is zero, it means there is
579 * no more header, so any processing may stop. The ctx is always left in a form
580 * that can be handled by http_find_header2() to find next occurrence.
581 */
582int http_remove_header2(struct http_msg *msg, struct buffer *buf,
583 struct hdr_idx *idx, struct hdr_ctx *ctx)
584{
585 int cur_idx = ctx->idx;
586 char *sol = ctx->line;
587 struct hdr_idx_elem *hdr;
588 int delta, skip_comma;
589
590 if (!cur_idx)
591 return 0;
592
593 hdr = &idx->v[cur_idx];
594 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen == hdr->len) {
595 /* This was the only value of the header, we must now remove it entirely. */
596 delta = buffer_replace2(buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
597 http_msg_move_end(msg, delta);
598 idx->used--;
599 hdr->len = 0; /* unused entry */
600 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
601 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;
743 char *path;
744 int len;
745
746 /* 1: create the response header */
747 rdr.len = strlen(HTTP_302);
748 rdr.str = trash;
Willy Tarreau59e0b0f2010-01-09 21:29:23 +0100749 rdr.size = sizeof(trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100750 memcpy(rdr.str, HTTP_302, rdr.len);
751
752 /* 2: add the server's prefix */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200753 if (rdr.len + s->srv->rdr_len > rdr.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100754 return;
755
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100756 /* special prefix "/" means don't change URL */
757 if (s->srv->rdr_len != 1 || *s->srv->rdr_pfx != '/') {
758 memcpy(rdr.str + rdr.len, s->srv->rdr_pfx, s->srv->rdr_len);
759 rdr.len += s->srv->rdr_len;
760 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100761
762 /* 3: add the request URI */
763 txn = &s->txn;
764 path = http_get_path(txn);
765 if (!path)
766 return;
767
Willy Tarreau962c3f42010-01-10 00:15:35 +0100768 len = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200769 if (rdr.len + len > rdr.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100770 return;
771
772 memcpy(rdr.str + rdr.len, path, len);
773 rdr.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100774
775 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
776 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
777 rdr.len += 29;
778 } else {
779 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
780 rdr.len += 23;
781 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100782
783 /* prepare to return without error. */
Willy Tarreau99126c32008-11-27 10:30:51 +0100784 si->shutr(si);
785 si->shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100786 si->err_type = SI_ET_NONE;
787 si->err_loc = NULL;
788 si->state = SI_ST_CLO;
789
790 /* send the message */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100791 http_server_error(s, si, SN_ERR_PRXCOND, SN_FINST_C, 302, &rdr);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100792
793 /* FIXME: we should increase a counter of redirects per server and per backend. */
794 if (s->srv)
Willy Tarreau7f062c42009-03-05 18:43:00 +0100795 srv_inc_sess_ctr(s->srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100796}
797
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100798/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100799 * that the server side is closed. Note that err_type is actually a
800 * bitmask, where almost only aborts may be cumulated with other
801 * values. We consider that aborted operations are more important
802 * than timeouts or errors due to the fact that nobody else in the
803 * logs might explain incomplete retries. All others should avoid
804 * being cumulated. It should normally not be possible to have multiple
805 * aborts at once, but just in case, the first one in sequence is reported.
806 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100807void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100808{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100809 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100810
811 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100812 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
813 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100814 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100815 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
816 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100817 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100818 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
819 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100820 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100821 http_server_error(s, si, SN_ERR_SRVCL, 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_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100824 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
825 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100826 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100827 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
828 503, error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100829 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100830 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
831 500, error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100832}
833
Willy Tarreau42250582007-04-01 01:30:43 +0200834extern const char sess_term_cond[8];
835extern const char sess_fin_state[8];
836extern const char *monthname[12];
837const char sess_cookie[4] = "NIDV"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie */
838const char sess_set_cookie[8] = "N1I3PD5R"; /* No set-cookie, unknown, Set-Cookie Inserted, unknown,
839 Set-cookie seen and left unchanged (passive), Set-cookie Deleted,
840 unknown, Set-cookie Rewritten */
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200841struct pool_head *pool2_requri;
Willy Tarreau086b3b42007-05-13 21:45:51 +0200842struct pool_head *pool2_capture;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100843
Emeric Brun3a058f32009-06-30 18:26:00 +0200844void http_sess_clflog(struct session *s)
845{
846 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
847 struct proxy *fe = s->fe;
848 struct proxy *be = s->be;
849 struct proxy *prx_log;
850 struct http_txn *txn = &s->txn;
851 int tolog, level, err;
852 char *uri, *h;
853 char *svid;
854 struct tm tm;
855 static char tmpline[MAX_SYSLOG_LEN];
856 int hdr;
857 size_t w;
858 int t_request;
859
860 prx_log = fe;
861 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
862 (s->conn_retries != be->conn_retries) ||
863 txn->status >= 500;
864
865 if (s->cli_addr.ss_family == AF_INET)
866 inet_ntop(AF_INET,
867 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
868 pn, sizeof(pn));
869 else
870 inet_ntop(AF_INET6,
871 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
872 pn, sizeof(pn));
873
874 get_gmtime(s->logs.accept_date.tv_sec, &tm);
875
876 /* FIXME: let's limit ourselves to frontend logging for now. */
877 tolog = fe->to_log;
878
879 h = tmpline;
880
881 w = snprintf(h, sizeof(tmpline),
882 "%s - - [%02d/%s/%04d:%02d:%02d:%02d +0000]",
883 pn,
884 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
885 tm.tm_hour, tm.tm_min, tm.tm_sec);
886 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
887 goto trunc;
888 h += w;
889
890 if (h >= tmpline + sizeof(tmpline) - 4)
891 goto trunc;
892
893 *(h++) = ' ';
894 *(h++) = '\"';
895 uri = txn->uri ? txn->uri : "<BADREQ>";
896 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
897 '#', url_encode_map, uri);
898 *(h++) = '\"';
899
900 w = snprintf(h, sizeof(tmpline) - (h - tmpline), " %d %lld", txn->status, s->logs.bytes_out);
901 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
902 goto trunc;
903 h += w;
904
905 if (h >= tmpline + sizeof(tmpline) - 9)
906 goto trunc;
907 memcpy(h, " \"-\" \"-\"", 8);
908 h += 8;
909
910 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
911 " %d %03d",
912 (s->cli_addr.ss_family == AF_INET) ?
913 ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port) :
914 ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
915 (int)s->logs.accept_date.tv_usec/1000);
916 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
917 goto trunc;
918 h += w;
919
920 w = strlen(fe->id);
921 if (h >= tmpline + sizeof(tmpline) - 4 - w)
922 goto trunc;
923 *(h++) = ' ';
924 *(h++) = '\"';
925 memcpy(h, fe->id, w);
926 h += w;
927 *(h++) = '\"';
928
929 w = strlen(be->id);
930 if (h >= tmpline + sizeof(tmpline) - 4 - w)
931 goto trunc;
932 *(h++) = ' ';
933 *(h++) = '\"';
934 memcpy(h, be->id, w);
935 h += w;
936 *(h++) = '\"';
937
938 svid = (tolog & LW_SVID) ?
939 (s->data_source != DATA_SRC_STATS) ?
940 (s->srv != NULL) ? s->srv->id : "<NOSRV>" : "<STATS>" : "-";
941
942 w = strlen(svid);
943 if (h >= tmpline + sizeof(tmpline) - 4 - w)
944 goto trunc;
945 *(h++) = ' ';
946 *(h++) = '\"';
947 memcpy(h, svid, w);
948 h += w;
949 *(h++) = '\"';
950
951 t_request = -1;
952 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
953 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
954 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
955 " %d %ld %ld %ld %ld",
956 t_request,
957 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
958 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
959 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
960 s->logs.t_close);
961 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
962 goto trunc;
963 h += w;
964
965 if (h >= tmpline + sizeof(tmpline) - 8)
966 goto trunc;
967 *(h++) = ' ';
968 *(h++) = '\"';
969 *(h++) = sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT];
970 *(h++) = sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT];
971 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
972 *(h++) = (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-';
973 *(h++) = '\"';
974
975 w = snprintf(h, sizeof(tmpline) - (h - tmpline),
976 " %d %d %d %d %d %ld %ld",
977 actconn, fe->feconn, be->beconn, s->srv ? s->srv->cur_sess : 0,
978 (s->conn_retries > 0) ? (be->conn_retries - s->conn_retries) : be->conn_retries,
979 s->logs.srv_queue_size, s->logs.prx_queue_size);
980
981 if (w < 0 || w >= sizeof(tmpline) - (h - tmpline))
982 goto trunc;
983 h += w;
984
985 if (txn->cli_cookie) {
986 w = strlen(txn->cli_cookie);
987 if (h >= tmpline + sizeof(tmpline) - 4 - w)
988 goto trunc;
989 *(h++) = ' ';
990 *(h++) = '\"';
991 memcpy(h, txn->cli_cookie, w);
992 h += w;
993 *(h++) = '\"';
994 } else {
995 if (h >= tmpline + sizeof(tmpline) - 5)
996 goto trunc;
997 memcpy(h, " \"-\"", 4);
998 h += 4;
999 }
1000
1001 if (txn->srv_cookie) {
1002 w = strlen(txn->srv_cookie);
1003 if (h >= tmpline + sizeof(tmpline) - 4 - w)
1004 goto trunc;
1005 *(h++) = ' ';
1006 *(h++) = '\"';
1007 memcpy(h, txn->srv_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 ((fe->to_log & LW_REQHDR) && txn->req.cap) {
1018 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1019 if (h >= sizeof (tmpline) + tmpline - 4)
1020 goto trunc;
1021 *(h++) = ' ';
1022 *(h++) = '\"';
1023 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1024 '#', hdr_encode_map, txn->req.cap[hdr]);
1025 *(h++) = '\"';
1026 }
1027 }
1028
1029 if ((fe->to_log & LW_RSPHDR) && txn->rsp.cap) {
1030 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1031 if (h >= sizeof (tmpline) + tmpline - 4)
1032 goto trunc;
1033 *(h++) = ' ';
1034 *(h++) = '\"';
1035 h = encode_string(h, tmpline + sizeof(tmpline) - 2,
1036 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1037 *(h++) = '\"';
1038 }
1039 }
1040
1041trunc:
1042 *h = '\0';
1043
1044 level = LOG_INFO;
1045 if (err && (fe->options2 & PR_O2_LOGERRORS))
1046 level = LOG_ERR;
1047
1048 send_log(prx_log, level, "%s\n", tmpline);
1049
1050 s->logs.logwait = 0;
1051}
1052
Willy Tarreau42250582007-04-01 01:30:43 +02001053/*
1054 * send a log for the session when we have enough info about it.
1055 * Will not log if the frontend has no log defined.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001056 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001057void http_sess_log(struct session *s)
Willy Tarreau42250582007-04-01 01:30:43 +02001058{
1059 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
1060 struct proxy *fe = s->fe;
1061 struct proxy *be = s->be;
1062 struct proxy *prx_log;
1063 struct http_txn *txn = &s->txn;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001064 int tolog, level, err;
Willy Tarreau42250582007-04-01 01:30:43 +02001065 char *uri, *h;
1066 char *svid;
Willy Tarreaufe944602007-10-25 10:34:16 +02001067 struct tm tm;
Willy Tarreau42250582007-04-01 01:30:43 +02001068 static char tmpline[MAX_SYSLOG_LEN];
Willy Tarreau70089872008-06-13 21:12:51 +02001069 int t_request;
Willy Tarreau42250582007-04-01 01:30:43 +02001070 int hdr;
1071
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001072 /* if we don't want to log normal traffic, return now */
1073 err = (s->flags & (SN_ERR_MASK | SN_REDISP)) ||
1074 (s->conn_retries != be->conn_retries) ||
1075 txn->status >= 500;
1076 if (!err && (fe->options2 & PR_O2_NOLOGNORM))
1077 return;
1078
Willy Tarreau42250582007-04-01 01:30:43 +02001079 if (fe->logfac1 < 0 && fe->logfac2 < 0)
1080 return;
1081 prx_log = fe;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001082
Emeric Brun3a058f32009-06-30 18:26:00 +02001083 if (prx_log->options2 & PR_O2_CLFLOG)
1084 return http_sess_clflog(s);
1085
Willy Tarreau42250582007-04-01 01:30:43 +02001086 if (s->cli_addr.ss_family == AF_INET)
1087 inet_ntop(AF_INET,
1088 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
1089 pn, sizeof(pn));
1090 else
1091 inet_ntop(AF_INET6,
1092 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
1093 pn, sizeof(pn));
1094
Willy Tarreaub7f694f2008-06-22 17:18:02 +02001095 get_localtime(s->logs.accept_date.tv_sec, &tm);
Willy Tarreau42250582007-04-01 01:30:43 +02001096
1097 /* FIXME: let's limit ourselves to frontend logging for now. */
1098 tolog = fe->to_log;
1099
1100 h = tmpline;
1101 if (fe->to_log & LW_REQHDR &&
1102 txn->req.cap &&
1103 (h < tmpline + sizeof(tmpline) - 10)) {
1104 *(h++) = ' ';
1105 *(h++) = '{';
1106 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1107 if (hdr)
1108 *(h++) = '|';
1109 if (txn->req.cap[hdr] != NULL)
1110 h = encode_string(h, tmpline + sizeof(tmpline) - 7,
1111 '#', hdr_encode_map, txn->req.cap[hdr]);
1112 }
1113 *(h++) = '}';
1114 }
1115
1116 if (fe->to_log & LW_RSPHDR &&
1117 txn->rsp.cap &&
1118 (h < tmpline + sizeof(tmpline) - 7)) {
1119 *(h++) = ' ';
1120 *(h++) = '{';
1121 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1122 if (hdr)
1123 *(h++) = '|';
1124 if (txn->rsp.cap[hdr] != NULL)
1125 h = encode_string(h, tmpline + sizeof(tmpline) - 4,
1126 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1127 }
1128 *(h++) = '}';
1129 }
1130
1131 if (h < tmpline + sizeof(tmpline) - 4) {
1132 *(h++) = ' ';
1133 *(h++) = '"';
1134 uri = txn->uri ? txn->uri : "<BADREQ>";
1135 h = encode_string(h, tmpline + sizeof(tmpline) - 1,
1136 '#', url_encode_map, uri);
1137 *(h++) = '"';
1138 }
1139 *h = '\0';
1140
1141 svid = (tolog & LW_SVID) ?
1142 (s->data_source != DATA_SRC_STATS) ?
1143 (s->srv != NULL) ? s->srv->id : "<NOSRV>" : "<STATS>" : "-";
1144
Willy Tarreau70089872008-06-13 21:12:51 +02001145 t_request = -1;
1146 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
1147 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
1148
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001149 level = LOG_INFO;
1150 if (err && (fe->options2 & PR_O2_LOGERRORS))
1151 level = LOG_ERR;
1152
1153 send_log(prx_log, level,
Willy Tarreau42250582007-04-01 01:30:43 +02001154 "%s:%d [%02d/%s/%04d:%02d:%02d:%02d.%03d]"
Willy Tarreau1772ece2009-04-03 14:49:12 +02001155 " %s %s/%s %d/%ld/%ld/%ld/%s%ld %d %s%lld"
1156 " %s %s %c%c%c%c %d/%d/%d/%d/%s%u %ld/%ld%s\n",
Willy Tarreau42250582007-04-01 01:30:43 +02001157 pn,
1158 (s->cli_addr.ss_family == AF_INET) ?
1159 ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port) :
1160 ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreaufe944602007-10-25 10:34:16 +02001161 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001162 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)s->logs.accept_date.tv_usec/1000,
Willy Tarreau42250582007-04-01 01:30:43 +02001163 fe->id, be->id, svid,
Willy Tarreau70089872008-06-13 21:12:51 +02001164 t_request,
1165 (s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
Willy Tarreau42250582007-04-01 01:30:43 +02001166 (s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
1167 (s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
1168 (tolog & LW_BYTES) ? "" : "+", s->logs.t_close,
1169 txn->status,
Willy Tarreau8b3977f2008-01-18 11:16:32 +01001170 (tolog & LW_BYTES) ? "" : "+", s->logs.bytes_out,
Willy Tarreau42250582007-04-01 01:30:43 +02001171 txn->cli_cookie ? txn->cli_cookie : "-",
1172 txn->srv_cookie ? txn->srv_cookie : "-",
1173 sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT],
1174 sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT],
1175 (be->options & PR_O_COOK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-',
1176 (be->options & PR_O_COOK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-',
1177 actconn, fe->feconn, be->beconn, s->srv ? s->srv->cur_sess : 0,
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01001178 (s->flags & SN_REDISP)?"+":"",
1179 (s->conn_retries>0)?(be->conn_retries - s->conn_retries):be->conn_retries,
Willy Tarreau42250582007-04-01 01:30:43 +02001180 s->logs.srv_queue_size, s->logs.prx_queue_size, tmpline);
1181
1182 s->logs.logwait = 0;
1183}
1184
Willy Tarreau117f59e2007-03-04 18:17:17 +01001185
1186/*
1187 * Capture headers from message starting at <som> according to header list
1188 * <cap_hdr>, and fill the <idx> structure appropriately.
1189 */
1190void capture_headers(char *som, struct hdr_idx *idx,
1191 char **cap, struct cap_hdr *cap_hdr)
1192{
1193 char *eol, *sol, *col, *sov;
1194 int cur_idx;
1195 struct cap_hdr *h;
1196 int len;
1197
1198 sol = som + hdr_idx_first_pos(idx);
1199 cur_idx = hdr_idx_first_idx(idx);
1200
1201 while (cur_idx) {
1202 eol = sol + idx->v[cur_idx].len;
1203
1204 col = sol;
1205 while (col < eol && *col != ':')
1206 col++;
1207
1208 sov = col + 1;
1209 while (sov < eol && http_is_lws[(unsigned char)*sov])
1210 sov++;
1211
1212 for (h = cap_hdr; h; h = h->next) {
1213 if ((h->namelen == col - sol) &&
1214 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1215 if (cap[h->index] == NULL)
1216 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001217 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001218
1219 if (cap[h->index] == NULL) {
1220 Alert("HTTP capture : out of memory.\n");
1221 continue;
1222 }
1223
1224 len = eol - sov;
1225 if (len > h->len)
1226 len = h->len;
1227
1228 memcpy(cap[h->index], sov, len);
1229 cap[h->index][len]=0;
1230 }
1231 }
1232 sol = eol + idx->v[cur_idx].cr + 1;
1233 cur_idx = idx->v[cur_idx].next;
1234 }
1235}
1236
1237
Willy Tarreau42250582007-04-01 01:30:43 +02001238/* either we find an LF at <ptr> or we jump to <bad>.
1239 */
1240#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1241
1242/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1243 * otherwise to <http_msg_ood> with <state> set to <st>.
1244 */
1245#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1246 ptr++; \
1247 if (likely(ptr < end)) \
1248 goto good; \
1249 else { \
1250 state = (st); \
1251 goto http_msg_ood; \
1252 } \
1253 } while (0)
1254
1255
Willy Tarreaubaaee002006-06-26 02:48:02 +02001256/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001257 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001258 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1259 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1260 * will give undefined results.
1261 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1262 * and that msg->sol points to the beginning of the response.
1263 * If a complete line is found (which implies that at least one CR or LF is
1264 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1265 * returned indicating an incomplete line (which does not mean that parts have
1266 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1267 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1268 * upon next call.
1269 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001270 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001271 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1272 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001273 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001274 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001275const char *http_parse_stsline(struct http_msg *msg, const char *msg_buf,
1276 unsigned int state, const char *ptr, const char *end,
1277 char **ret_ptr, unsigned int *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001278{
Willy Tarreau8973c702007-01-21 23:58:29 +01001279 switch (state) {
1280 http_msg_rpver:
1281 case HTTP_MSG_RPVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001282 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001283 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1284
1285 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001286 msg->sl.st.v_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001287 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1288 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001289 state = HTTP_MSG_ERROR;
1290 break;
1291
Willy Tarreau8973c702007-01-21 23:58:29 +01001292 http_msg_rpver_sp:
1293 case HTTP_MSG_RPVER_SP:
1294 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001295 msg->sl.st.c = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001296 goto http_msg_rpcode;
1297 }
1298 if (likely(HTTP_IS_SPHT(*ptr)))
1299 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1300 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001301 state = HTTP_MSG_ERROR;
1302 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001303
1304 http_msg_rpcode:
1305 case HTTP_MSG_RPCODE:
1306 if (likely(!HTTP_IS_LWS(*ptr)))
1307 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1308
1309 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001310 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001311 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1312 }
1313
1314 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001315 msg->sl.st.c_l = (ptr - msg_buf) - msg->som - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001316 http_msg_rsp_reason:
1317 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreau962c3f42010-01-10 00:15:35 +01001318 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001319 msg->sl.st.r_l = 0;
1320 goto http_msg_rpline_eol;
1321
1322 http_msg_rpcode_sp:
1323 case HTTP_MSG_RPCODE_SP:
1324 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001325 msg->sl.st.r = (ptr - msg_buf) - msg->som;
Willy Tarreau8973c702007-01-21 23:58:29 +01001326 goto http_msg_rpreason;
1327 }
1328 if (likely(HTTP_IS_SPHT(*ptr)))
1329 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1330 /* so it's a CR/LF, so there is no reason phrase */
1331 goto http_msg_rsp_reason;
1332
1333 http_msg_rpreason:
1334 case HTTP_MSG_RPREASON:
1335 if (likely(!HTTP_IS_CRLF(*ptr)))
1336 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreau962c3f42010-01-10 00:15:35 +01001337 msg->sl.st.r_l = (ptr - msg_buf) - msg->som - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001338 http_msg_rpline_eol:
1339 /* We have seen the end of line. Note that we do not
1340 * necessarily have the \n yet, but at least we know that we
1341 * have EITHER \r OR \n, otherwise the response would not be
1342 * complete. We can then record the response length and return
1343 * to the caller which will be able to register it.
1344 */
1345 msg->sl.st.l = ptr - msg->sol;
1346 return ptr;
1347
1348#ifdef DEBUG_FULL
1349 default:
1350 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1351 exit(1);
1352#endif
1353 }
1354
1355 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001356 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001357 if (ret_state)
1358 *ret_state = state;
1359 if (ret_ptr)
1360 *ret_ptr = (char *)ptr;
1361 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001362}
1363
Willy Tarreau8973c702007-01-21 23:58:29 +01001364/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001365 * This function parses a request line between <ptr> and <end>, starting with
1366 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1367 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1368 * will give undefined results.
1369 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1370 * and that msg->sol points to the beginning of the request.
1371 * If a complete line is found (which implies that at least one CR or LF is
1372 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1373 * returned indicating an incomplete line (which does not mean that parts have
1374 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1375 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1376 * upon next call.
1377 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001378 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001379 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1380 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001381 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001382 */
Willy Tarreaue69eada2008-01-27 00:34:10 +01001383const char *http_parse_reqline(struct http_msg *msg, const char *msg_buf,
1384 unsigned int state, const char *ptr, const char *end,
1385 char **ret_ptr, unsigned int *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001386{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001387 switch (state) {
1388 http_msg_rqmeth:
1389 case HTTP_MSG_RQMETH:
1390 if (likely(HTTP_IS_TOKEN(*ptr)))
1391 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001392
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001393 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001394 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001395 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1396 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001397
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001398 if (likely(HTTP_IS_CRLF(*ptr))) {
1399 /* HTTP 0.9 request */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001400 msg->sl.rq.m_l = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001401 http_msg_req09_uri:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001402 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001403 http_msg_req09_uri_e:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001404 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001405 http_msg_req09_ver:
Willy Tarreau962c3f42010-01-10 00:15:35 +01001406 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001407 msg->sl.rq.v_l = 0;
1408 goto http_msg_rqline_eol;
1409 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001410 state = HTTP_MSG_ERROR;
1411 break;
1412
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001413 http_msg_rqmeth_sp:
1414 case HTTP_MSG_RQMETH_SP:
1415 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001416 msg->sl.rq.u = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001417 goto http_msg_rquri;
1418 }
1419 if (likely(HTTP_IS_SPHT(*ptr)))
1420 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1421 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1422 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001423
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001424 http_msg_rquri:
1425 case HTTP_MSG_RQURI:
1426 if (likely(!HTTP_IS_LWS(*ptr)))
1427 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001428
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001429 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001430 msg->sl.rq.u_l = (ptr - msg_buf) - msg->som - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001431 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1432 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001433
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001434 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1435 goto http_msg_req09_uri_e;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001436
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001437 http_msg_rquri_sp:
1438 case HTTP_MSG_RQURI_SP:
1439 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001440 msg->sl.rq.v = (ptr - msg_buf) - msg->som;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001441 goto http_msg_rqver;
1442 }
1443 if (likely(HTTP_IS_SPHT(*ptr)))
1444 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1445 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1446 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001447
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001448 http_msg_rqver:
1449 case HTTP_MSG_RQVER:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001450 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001451 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001452
1453 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01001454 msg->sl.rq.v_l = (ptr - msg_buf) - msg->som - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001455 http_msg_rqline_eol:
1456 /* We have seen the end of line. Note that we do not
1457 * necessarily have the \n yet, but at least we know that we
1458 * have EITHER \r OR \n, otherwise the request would not be
1459 * complete. We can then record the request length and return
1460 * to the caller which will be able to register it.
1461 */
1462 msg->sl.rq.l = ptr - msg->sol;
1463 return ptr;
1464 }
1465
1466 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001467 state = HTTP_MSG_ERROR;
1468 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001469
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001470#ifdef DEBUG_FULL
1471 default:
1472 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1473 exit(1);
1474#endif
1475 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001476
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001477 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001478 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001479 if (ret_state)
1480 *ret_state = state;
1481 if (ret_ptr)
1482 *ret_ptr = (char *)ptr;
1483 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001484}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001485
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001486/*
1487 * Returns the data from Authorization header. Function may be called more
1488 * than once so data is stored in txn->auth_data. When no header is found
1489 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
1490 * searching again for something we are unable to find anyway.
1491 */
1492
1493char get_http_auth_buff[BUFSIZE];
1494
1495int
1496get_http_auth(struct session *s)
1497{
1498
1499 struct http_txn *txn = &s->txn;
1500 struct chunk auth_method;
1501 struct hdr_ctx ctx;
1502 char *h, *p;
1503 int len;
1504
1505#ifdef DEBUG_AUTH
1506 printf("Auth for session %p: %d\n", s, txn->auth.method);
1507#endif
1508
1509 if (txn->auth.method == HTTP_AUTH_WRONG)
1510 return 0;
1511
1512 if (txn->auth.method)
1513 return 1;
1514
1515 txn->auth.method = HTTP_AUTH_WRONG;
1516
1517 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001518
1519 if (txn->flags & TX_USE_PX_CONN) {
1520 h = "Proxy-Authorization";
1521 len = strlen(h);
1522 } else {
1523 h = "Authorization";
1524 len = strlen(h);
1525 }
1526
1527 if (!http_find_header2(h, len, txn->req.sol, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001528 return 0;
1529
1530 h = ctx.line + ctx.val;
1531
1532 p = memchr(h, ' ', ctx.vlen);
1533 if (!p || p == h)
1534 return 0;
1535
1536 chunk_initlen(&auth_method, h, 0, p-h);
1537 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1538
1539 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1540
1541 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
1542 get_http_auth_buff, BUFSIZE - 1);
1543
1544 if (len < 0)
1545 return 0;
1546
1547
1548 get_http_auth_buff[len] = '\0';
1549
1550 p = strchr(get_http_auth_buff, ':');
1551
1552 if (!p)
1553 return 0;
1554
1555 txn->auth.user = get_http_auth_buff;
1556 *p = '\0';
1557 txn->auth.pass = p+1;
1558
1559 txn->auth.method = HTTP_AUTH_BASIC;
1560 return 1;
1561 }
1562
1563 return 0;
1564}
1565
Willy Tarreau58f10d72006-12-04 02:26:12 +01001566
Willy Tarreau8973c702007-01-21 23:58:29 +01001567/*
1568 * This function parses an HTTP message, either a request or a response,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001569 * depending on the initial msg->msg_state. It can be preempted everywhere
Willy Tarreau8973c702007-01-21 23:58:29 +01001570 * when data are missing and recalled at the exact same location with no
1571 * information loss. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001572 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau15de77e2010-01-02 21:59:16 +01001573 * fields. Note that msg->som and msg->sol will be initialized after completing
1574 * the first state, so that none of the msg pointers has to be initialized
1575 * prior to the first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001576 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001577void http_msg_analyzer(struct buffer *buf, struct http_msg *msg, struct hdr_idx *idx)
1578{
Willy Tarreaue69eada2008-01-27 00:34:10 +01001579 unsigned int state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001580 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreau58f10d72006-12-04 02:26:12 +01001581
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001582 state = msg->msg_state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001583 ptr = buf->lr;
1584 end = buf->r;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001585
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001586 if (unlikely(ptr >= end))
1587 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001588
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001589 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001590 /*
1591 * First, states that are specific to the response only.
1592 * We check them first so that request and headers are
1593 * closer to each other (accessed more often).
1594 */
1595 http_msg_rpbefore:
1596 case HTTP_MSG_RPBEFORE:
1597 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001598 /* we have a start of message, but we have to check
1599 * first if we need to remove some CRLF. We can only
1600 * do this when send_max=0.
1601 */
1602 char *beg = buf->w + buf->send_max;
1603 if (beg >= buf->data + buf->size)
1604 beg -= buf->size;
1605 if (unlikely(ptr != beg)) {
1606 if (buf->send_max)
1607 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001608 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001609 buffer_ignore(buf, ptr - beg);
Willy Tarreau8973c702007-01-21 23:58:29 +01001610 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001611 msg->som = ptr - buf->data;
Willy Tarreau816b9792009-09-15 21:25:21 +02001612 msg->sol = ptr;
Willy Tarreau8973c702007-01-21 23:58:29 +01001613 hdr_idx_init(idx);
1614 state = HTTP_MSG_RPVER;
1615 goto http_msg_rpver;
1616 }
1617
1618 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1619 goto http_msg_invalid;
1620
1621 if (unlikely(*ptr == '\n'))
1622 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1623 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1624 /* stop here */
1625
1626 http_msg_rpbefore_cr:
1627 case HTTP_MSG_RPBEFORE_CR:
1628 EXPECT_LF_HERE(ptr, http_msg_invalid);
1629 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1630 /* stop here */
1631
1632 http_msg_rpver:
1633 case HTTP_MSG_RPVER:
1634 case HTTP_MSG_RPVER_SP:
1635 case HTTP_MSG_RPCODE:
1636 case HTTP_MSG_RPCODE_SP:
1637 case HTTP_MSG_RPREASON:
Willy Tarreaua15645d2007-03-18 16:22:39 +01001638 ptr = (char *)http_parse_stsline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001639 &buf->lr, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001640 if (unlikely(!ptr))
1641 return;
1642
1643 /* we have a full response and we know that we have either a CR
1644 * or an LF at <ptr>.
1645 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001646 //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 +01001647 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1648
1649 msg->sol = ptr;
1650 if (likely(*ptr == '\r'))
1651 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1652 goto http_msg_rpline_end;
1653
1654 http_msg_rpline_end:
1655 case HTTP_MSG_RPLINE_END:
1656 /* msg->sol must point to the first of CR or LF. */
1657 EXPECT_LF_HERE(ptr, http_msg_invalid);
1658 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1659 /* stop here */
1660
1661 /*
1662 * Second, states that are specific to the request only
1663 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001664 http_msg_rqbefore:
1665 case HTTP_MSG_RQBEFORE:
1666 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001667 /* we have a start of message, but we have to check
1668 * first if we need to remove some CRLF. We can only
1669 * do this when send_max=0.
1670 */
1671 char *beg = buf->w + buf->send_max;
1672 if (beg >= buf->data + buf->size)
1673 beg -= buf->size;
1674 if (likely(ptr != beg)) {
1675 if (buf->send_max)
1676 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001677 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreau15de77e2010-01-02 21:59:16 +01001678 buffer_ignore(buf, ptr - beg);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001679 }
Willy Tarreau15de77e2010-01-02 21:59:16 +01001680 msg->som = ptr - buf->data;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001681 msg->sol = ptr;
Willy Tarreauf0d058e2007-01-25 12:03:42 +01001682 /* we will need this when keep-alive will be supported
1683 hdr_idx_init(idx);
1684 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001685 state = HTTP_MSG_RQMETH;
1686 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001687 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001688
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001689 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1690 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001691
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001692 if (unlikely(*ptr == '\n'))
1693 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1694 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001695 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001696
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001697 http_msg_rqbefore_cr:
1698 case HTTP_MSG_RQBEFORE_CR:
1699 EXPECT_LF_HERE(ptr, http_msg_invalid);
1700 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001701 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001702
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001703 http_msg_rqmeth:
1704 case HTTP_MSG_RQMETH:
1705 case HTTP_MSG_RQMETH_SP:
1706 case HTTP_MSG_RQURI:
1707 case HTTP_MSG_RQURI_SP:
1708 case HTTP_MSG_RQVER:
1709 ptr = (char *)http_parse_reqline(msg, buf->data, state, ptr, end,
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001710 &buf->lr, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001711 if (unlikely(!ptr))
1712 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001713
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001714 /* we have a full request and we know that we have either a CR
1715 * or an LF at <ptr>.
1716 */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001717 //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 +01001718 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001719
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001720 msg->sol = ptr;
1721 if (likely(*ptr == '\r'))
1722 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001723 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001724
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001725 http_msg_rqline_end:
1726 case HTTP_MSG_RQLINE_END:
1727 /* check for HTTP/0.9 request : no version information available.
1728 * msg->sol must point to the first of CR or LF.
1729 */
1730 if (unlikely(msg->sl.rq.v_l == 0))
1731 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001732
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001733 EXPECT_LF_HERE(ptr, http_msg_invalid);
1734 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001735 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001736
Willy Tarreau8973c702007-01-21 23:58:29 +01001737 /*
1738 * Common states below
1739 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 http_msg_hdr_first:
1741 case HTTP_MSG_HDR_FIRST:
1742 msg->sol = ptr;
1743 if (likely(!HTTP_IS_CRLF(*ptr))) {
1744 goto http_msg_hdr_name;
1745 }
1746
1747 if (likely(*ptr == '\r'))
1748 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1749 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001750
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001751 http_msg_hdr_name:
1752 case HTTP_MSG_HDR_NAME:
1753 /* assumes msg->sol points to the first char */
1754 if (likely(HTTP_IS_TOKEN(*ptr)))
1755 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001756
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001757 if (likely(*ptr == ':')) {
1758 msg->col = ptr - buf->data;
1759 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
1760 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001761
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001762 if (likely(msg->err_pos < -1) || *ptr == '\n')
1763 goto http_msg_invalid;
1764
1765 if (msg->err_pos == -1) /* capture error pointer */
1766 msg->err_pos = ptr - buf->data; /* >= 0 now */
1767
1768 /* and we still accept this non-token character */
1769 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001770
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001771 http_msg_hdr_l1_sp:
1772 case HTTP_MSG_HDR_L1_SP:
1773 /* assumes msg->sol points to the first char and msg->col to the colon */
1774 if (likely(HTTP_IS_SPHT(*ptr)))
1775 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001776
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001777 /* header value can be basically anything except CR/LF */
1778 msg->sov = ptr - buf->data;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001779
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001780 if (likely(!HTTP_IS_CRLF(*ptr))) {
1781 goto http_msg_hdr_val;
1782 }
1783
1784 if (likely(*ptr == '\r'))
1785 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1786 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001787
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001788 http_msg_hdr_l1_lf:
1789 case HTTP_MSG_HDR_L1_LF:
1790 EXPECT_LF_HERE(ptr, http_msg_invalid);
1791 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001792
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001793 http_msg_hdr_l1_lws:
1794 case HTTP_MSG_HDR_L1_LWS:
1795 if (likely(HTTP_IS_SPHT(*ptr))) {
1796 /* replace HT,CR,LF with spaces */
1797 for (; buf->data+msg->sov < ptr; msg->sov++)
1798 buf->data[msg->sov] = ' ';
1799 goto http_msg_hdr_l1_sp;
1800 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001801 /* we had a header consisting only in spaces ! */
1802 msg->eol = buf->data + msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001803 goto http_msg_complete_header;
1804
1805 http_msg_hdr_val:
1806 case HTTP_MSG_HDR_VAL:
1807 /* assumes msg->sol points to the first char, msg->col to the
1808 * colon, and msg->sov points to the first character of the
1809 * value.
1810 */
1811 if (likely(!HTTP_IS_CRLF(*ptr)))
1812 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001813
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001814 msg->eol = ptr;
1815 /* Note: we could also copy eol into ->eoh so that we have the
1816 * real header end in case it ends with lots of LWS, but is this
1817 * really needed ?
1818 */
1819 if (likely(*ptr == '\r'))
1820 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1821 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001822
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001823 http_msg_hdr_l2_lf:
1824 case HTTP_MSG_HDR_L2_LF:
1825 EXPECT_LF_HERE(ptr, http_msg_invalid);
1826 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001827
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001828 http_msg_hdr_l2_lws:
1829 case HTTP_MSG_HDR_L2_LWS:
1830 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1831 /* LWS: replace HT,CR,LF with spaces */
1832 for (; msg->eol < ptr; msg->eol++)
1833 *msg->eol = ' ';
1834 goto http_msg_hdr_val;
1835 }
1836 http_msg_complete_header:
1837 /*
1838 * It was a new header, so the last one is finished.
1839 * Assumes msg->sol points to the first char, msg->col to the
1840 * colon, msg->sov points to the first character of the value
1841 * and msg->eol to the first CR or LF so we know how the line
1842 * ends. We insert last header into the index.
1843 */
1844 /*
1845 fprintf(stderr,"registering %-2d bytes : ", msg->eol - msg->sol);
1846 write(2, msg->sol, msg->eol-msg->sol);
1847 fprintf(stderr,"\n");
1848 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001849
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001850 if (unlikely(hdr_idx_add(msg->eol - msg->sol, *msg->eol == '\r',
1851 idx, idx->tail) < 0))
1852 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001853
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001854 msg->sol = ptr;
1855 if (likely(!HTTP_IS_CRLF(*ptr))) {
1856 goto http_msg_hdr_name;
1857 }
1858
1859 if (likely(*ptr == '\r'))
1860 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1861 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001862
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001863 http_msg_last_lf:
1864 case HTTP_MSG_LAST_LF:
1865 /* Assumes msg->sol points to the first of either CR or LF */
1866 EXPECT_LF_HERE(ptr, http_msg_invalid);
1867 ptr++;
1868 buf->lr = ptr;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001869 msg->col = msg->sov = buf->lr - buf->data;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001870 msg->eoh = msg->sol - buf->data;
Willy Tarreau962c3f42010-01-10 00:15:35 +01001871 msg->sol = buf->data + msg->som;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001872 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001873 return;
1874#ifdef DEBUG_FULL
1875 default:
1876 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1877 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001878#endif
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001879 }
1880 http_msg_ood:
1881 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001882 msg->msg_state = state;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001883 buf->lr = ptr;
1884 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001885
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001886 http_msg_invalid:
1887 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001888 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau7552c032009-03-01 11:10:40 +01001889 buf->lr = ptr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001890 return;
1891}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001892
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001893/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1894 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1895 * nothing is done and 1 is returned.
1896 */
1897static int http_upgrade_v09_to_v10(struct buffer *req, struct http_msg *msg, struct http_txn *txn)
1898{
1899 int delta;
1900 char *cur_end;
1901
1902 if (msg->sl.rq.v_l != 0)
1903 return 1;
1904
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001905 cur_end = msg->sol + msg->sl.rq.l;
1906 delta = 0;
1907
1908 if (msg->sl.rq.u_l == 0) {
1909 /* if no URI was set, add "/" */
1910 delta = buffer_replace2(req, cur_end, cur_end, " /", 2);
1911 cur_end += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01001912 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001913 }
1914 /* add HTTP version */
1915 delta = buffer_replace2(req, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001916 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001917 cur_end += delta;
1918 cur_end = (char *)http_parse_reqline(msg, req->data,
1919 HTTP_MSG_RQMETH,
1920 msg->sol, cur_end + 1,
1921 NULL, NULL);
1922 if (unlikely(!cur_end))
1923 return 0;
1924
1925 /* we have a full HTTP/1.0 request now and we know that
1926 * we have either a CR or an LF at <ptr>.
1927 */
1928 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1929 return 1;
1930}
1931
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001932/* Parse the Connection: header of an HTTP request, looking for both "close"
1933 * and "keep-alive" values. If a buffer is provided and we already know that
1934 * some headers may safely be removed, we remove them now. The <to_del> flags
1935 * are used for that :
1936 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1937 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
1938 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1939 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1940 * harmless combinations may be removed. Do not call that after changes have
1941 * been processed. If unused, the buffer can be NULL, and no data will be
1942 * changed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001943 */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001944void 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 +01001945{
Willy Tarreau5b154472009-12-21 20:11:07 +01001946 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001947 const char *hdr_val = "Connection";
1948 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001949
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001950 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001951 return;
1952
Willy Tarreau88d349d2010-01-25 12:15:43 +01001953 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1954 hdr_val = "Proxy-Connection";
1955 hdr_len = 16;
1956 }
1957
Willy Tarreau5b154472009-12-21 20:11:07 +01001958 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001959 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01001960 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001961 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1962 txn->flags |= TX_HDR_CONN_KAL;
1963 if ((to_del & 2) && buf)
1964 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
1965 else
1966 txn->flags |= TX_CON_KAL_SET;
1967 }
1968 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1969 txn->flags |= TX_HDR_CONN_CLO;
1970 if ((to_del & 1) && buf)
1971 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
1972 else
1973 txn->flags |= TX_CON_CLO_SET;
1974 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001975 }
1976
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001977 txn->flags |= TX_HDR_CONN_PRS;
1978 return;
1979}
Willy Tarreau5b154472009-12-21 20:11:07 +01001980
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001981/* Apply desired changes on the Connection: header. Values may be removed and/or
1982 * added depending on the <wanted> flags, which are exclusively composed of
1983 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1984 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1985 */
1986void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, struct buffer *buf, int wanted)
1987{
1988 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001989 const char *hdr_val = "Connection";
1990 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001991
1992 ctx.idx = 0;
1993
Willy Tarreau88d349d2010-01-25 12:15:43 +01001994
1995 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1996 hdr_val = "Proxy-Connection";
1997 hdr_len = 16;
1998 }
1999
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002000 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau88d349d2010-01-25 12:15:43 +01002001 while (http_find_header2(hdr_val, hdr_len, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002002 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
2003 if (wanted & TX_CON_KAL_SET)
2004 txn->flags |= TX_CON_KAL_SET;
2005 else
2006 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01002007 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002008 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2009 if (wanted & TX_CON_CLO_SET)
2010 txn->flags |= TX_CON_CLO_SET;
2011 else
2012 http_remove_header2(msg, buf, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002013 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002014 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002015
2016 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
2017 return;
2018
2019 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
2020 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002021 hdr_val = "Connection: close";
2022 hdr_len = 17;
2023 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2024 hdr_val = "Proxy-Connection: close";
2025 hdr_len = 23;
2026 }
2027 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002028 }
2029
2030 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
2031 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002032 hdr_val = "Connection: keep-alive";
2033 hdr_len = 22;
2034 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2035 hdr_val = "Proxy-Connection: keep-alive";
2036 hdr_len = 28;
2037 }
2038 http_header_add_tail2(buf, msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002039 }
2040 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01002041}
2042
Willy Tarreaud98cf932009-12-27 22:54:55 +01002043/* Parse the chunk size at buf->lr. Once done, it adjusts ->lr to point to the
2044 * first byte of body, and increments msg->sov by the number of bytes parsed,
2045 * so that we know we can forward between ->som and ->sov. Note that due to
2046 * possible wrapping at the end of the buffer, it is possible that msg->sov is
2047 * lower than msg->som.
Willy Tarreau115acb92009-12-26 13:56:06 +01002048 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002049 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01002050 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002051int http_parse_chunk_size(struct buffer *buf, struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01002052{
Willy Tarreaud98cf932009-12-27 22:54:55 +01002053 char *ptr = buf->lr;
2054 char *end = buf->data + buf->size;
Willy Tarreau115acb92009-12-26 13:56:06 +01002055 unsigned int chunk = 0;
2056
2057 /* The chunk size is in the following form, though we are only
2058 * interested in the size and CRLF :
2059 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
2060 */
2061 while (1) {
2062 int c;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002063 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002064 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002065 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01002066 if (c < 0) /* not a hex digit anymore */
2067 break;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002068 if (++ptr >= end)
2069 ptr = buf->data;
Willy Tarreau115acb92009-12-26 13:56:06 +01002070 if (chunk & 0xF000000) /* overflow will occur */
2071 return -1;
2072 chunk = (chunk << 4) + c;
2073 }
2074
Willy Tarreaud98cf932009-12-27 22:54:55 +01002075 /* empty size not allowed */
2076 if (ptr == buf->lr)
2077 return -1;
2078
2079 while (http_is_spht[(unsigned char)*ptr]) {
2080 if (++ptr >= end)
2081 ptr = buf->data;
2082 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002083 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01002084 }
2085
Willy Tarreaud98cf932009-12-27 22:54:55 +01002086 /* Up to there, we know that at least one byte is present at *ptr. Check
2087 * for the end of chunk size.
2088 */
2089 while (1) {
2090 if (likely(HTTP_IS_CRLF(*ptr))) {
2091 /* we now have a CR or an LF at ptr */
2092 if (likely(*ptr == '\r')) {
2093 if (++ptr >= end)
2094 ptr = buf->data;
2095 if (ptr == buf->r)
2096 return 0;
2097 }
Willy Tarreau115acb92009-12-26 13:56:06 +01002098
Willy Tarreaud98cf932009-12-27 22:54:55 +01002099 if (*ptr != '\n')
2100 return -1;
2101 if (++ptr >= end)
2102 ptr = buf->data;
2103 /* done */
2104 break;
2105 }
2106 else if (*ptr == ';') {
2107 /* chunk extension, ends at next CRLF */
2108 if (++ptr >= end)
2109 ptr = buf->data;
2110 if (ptr == buf->r)
Willy Tarreau115acb92009-12-26 13:56:06 +01002111 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002112
2113 while (!HTTP_IS_CRLF(*ptr)) {
2114 if (++ptr >= end)
2115 ptr = buf->data;
2116 if (ptr == buf->r)
2117 return 0;
2118 }
2119 /* we have a CRLF now, loop above */
2120 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002121 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002122 else
Willy Tarreau115acb92009-12-26 13:56:06 +01002123 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002124 }
2125
Willy Tarreaud98cf932009-12-27 22:54:55 +01002126 /* OK we found our CRLF and now <ptr> points to the next byte,
2127 * which may or may not be present. We save that into ->lr and
2128 * ->sov.
Willy Tarreau115acb92009-12-26 13:56:06 +01002129 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002130 msg->sov += ptr - buf->lr;
2131 buf->lr = ptr;
Willy Tarreau115acb92009-12-26 13:56:06 +01002132 msg->hdr_content_len = chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002133 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002134 return 1;
2135}
2136
Willy Tarreaud98cf932009-12-27 22:54:55 +01002137/* This function skips trailers in the buffer <buf> associated with HTTP
2138 * message <msg>. The first visited position is buf->lr. If the end of
2139 * the trailers is found, it is automatically scheduled to be forwarded,
2140 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2141 * If not enough data are available, the function does not change anything
Willy Tarreau638cd022010-01-03 07:42:04 +01002142 * except maybe buf->lr and msg->sov if it could parse some lines, and returns
2143 * zero. If a parse error is encountered, the function returns < 0 and does not
2144 * change anything except maybe buf->lr and msg->sov. Note that the message
2145 * must already be in HTTP_MSG_TRAILERS state before calling this function,
2146 * which implies that all non-trailers data have already been scheduled for
2147 * forwarding, and that the difference between msg->som and msg->sov exactly
2148 * matches the length of trailers already parsed and not forwarded. It is also
2149 * important to note that this function is designed to be able to parse wrapped
2150 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002151 */
2152int http_forward_trailers(struct buffer *buf, struct http_msg *msg)
2153{
2154 /* we have buf->lr which points to next line. Look for CRLF. */
2155 while (1) {
2156 char *p1 = NULL, *p2 = NULL;
2157 char *ptr = buf->lr;
Willy Tarreau638cd022010-01-03 07:42:04 +01002158 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002159
2160 /* scan current line and stop at LF or CRLF */
2161 while (1) {
2162 if (ptr == buf->r)
2163 return 0;
2164
2165 if (*ptr == '\n') {
2166 if (!p1)
2167 p1 = ptr;
2168 p2 = ptr;
2169 break;
2170 }
2171
2172 if (*ptr == '\r') {
2173 if (p1)
2174 return -1;
2175 p1 = ptr;
2176 }
2177
2178 ptr++;
2179 if (ptr >= buf->data + buf->size)
2180 ptr = buf->data;
2181 }
2182
2183 /* after LF; point to beginning of next line */
2184 p2++;
2185 if (p2 >= buf->data + buf->size)
2186 p2 = buf->data;
2187
Willy Tarreau638cd022010-01-03 07:42:04 +01002188 bytes = p2 - buf->lr;
2189 if (bytes < 0)
2190 bytes += buf->size;
2191
2192 /* schedule this line for forwarding */
2193 msg->sov += bytes;
2194 if (msg->sov >= buf->size)
2195 msg->sov -= buf->size;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002196
Willy Tarreau638cd022010-01-03 07:42:04 +01002197 if (p1 == buf->lr) {
2198 /* LF/CRLF at beginning of line => end of trailers at p2.
2199 * Everything was scheduled for forwarding, there's nothing
2200 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002201 */
Willy Tarreau638cd022010-01-03 07:42:04 +01002202 buf->lr = p2;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002203 msg->msg_state = HTTP_MSG_DONE;
2204 return 1;
2205 }
2206 /* OK, next line then */
2207 buf->lr = p2;
2208 }
2209}
2210
2211/* This function may be called only in HTTP_MSG_DATA_CRLF. It reads the CRLF or
2212 * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov,
2213 * ->som, buf->lr in order to include this part into the next forwarding phase.
2214 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2215 * not enough data are available, the function does not change anything and
2216 * returns zero. If a parse error is encountered, the function returns < 0 and
2217 * does not change anything. Note: this function is designed to parse wrapped
2218 * CRLF at the end of the buffer.
2219 */
2220int http_skip_chunk_crlf(struct buffer *buf, struct http_msg *msg)
2221{
2222 char *ptr;
2223 int bytes;
2224
2225 /* NB: we'll check data availabilty at the end. It's not a
2226 * problem because whatever we match first will be checked
2227 * against the correct length.
2228 */
2229 bytes = 1;
2230 ptr = buf->lr;
2231 if (*ptr == '\r') {
2232 bytes++;
2233 ptr++;
2234 if (ptr >= buf->data + buf->size)
2235 ptr = buf->data;
2236 }
2237
2238 if (buf->l < bytes)
2239 return 0;
2240
2241 if (*ptr != '\n')
2242 return -1;
2243
2244 ptr++;
2245 if (ptr >= buf->data + buf->size)
2246 ptr = buf->data;
2247 buf->lr = ptr;
2248 /* prepare the CRLF to be forwarded. msg->som may be before data but we don't care */
2249 msg->sov = ptr - buf->data;
2250 msg->som = msg->sov - bytes;
2251 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2252 return 1;
2253}
Willy Tarreau5b154472009-12-21 20:11:07 +01002254
Willy Tarreau83e3af02009-12-28 17:39:57 +01002255void http_buffer_heavy_realign(struct buffer *buf, struct http_msg *msg)
2256{
2257 char *end = buf->data + buf->size;
2258 int off = buf->data + buf->size - buf->w;
2259
2260 /* two possible cases :
2261 * - the buffer is in one contiguous block, we move it in-place
2262 * - the buffer is in two blocks, we move it via the trash
2263 */
2264 if (buf->l) {
2265 int block1 = buf->l;
2266 int block2 = 0;
2267 if (buf->r <= buf->w) {
2268 /* non-contiguous block */
2269 block1 = buf->data + buf->size - buf->w;
2270 block2 = buf->r - buf->data;
2271 }
2272 if (block2)
2273 memcpy(trash, buf->data, block2);
2274 memmove(buf->data, buf->w, block1);
2275 if (block2)
2276 memcpy(buf->data + block1, trash, block2);
2277 }
2278
2279 /* adjust all known pointers */
2280 buf->w = buf->data;
2281 buf->lr += off; if (buf->lr >= end) buf->lr -= buf->size;
2282 buf->r += off; if (buf->r >= end) buf->r -= buf->size;
2283 msg->sol += off; if (msg->sol >= end) msg->sol -= buf->size;
2284 msg->eol += off; if (msg->eol >= end) msg->eol -= buf->size;
2285
2286 /* adjust relative pointers */
2287 msg->som = 0;
2288 msg->eoh += off; if (msg->eoh >= buf->size) msg->eoh -= buf->size;
2289 msg->col += off; if (msg->col >= buf->size) msg->col -= buf->size;
2290 msg->sov += off; if (msg->sov >= buf->size) msg->sov -= buf->size;
2291
Willy Tarreau83e3af02009-12-28 17:39:57 +01002292 if (msg->err_pos >= 0) {
2293 msg->err_pos += off;
2294 if (msg->err_pos >= buf->size)
2295 msg->err_pos -= buf->size;
2296 }
2297
2298 buf->flags &= ~BF_FULL;
2299 if (buf->l >= buffer_max_len(buf))
2300 buf->flags |= BF_FULL;
2301}
2302
Willy Tarreaud787e662009-07-07 10:14:51 +02002303/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2304 * processing can continue on next analysers, or zero if it either needs more
2305 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2306 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2307 * when it has nothing left to do, and may remove any analyser when it wants to
2308 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002309 */
Willy Tarreau3a816292009-07-07 10:55:49 +02002310int http_wait_for_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002311{
Willy Tarreau59234e92008-11-30 23:51:27 +01002312 /*
2313 * We will parse the partial (or complete) lines.
2314 * We will check the request syntax, and also join multi-line
2315 * headers. An index of all the lines will be elaborated while
2316 * parsing.
2317 *
2318 * For the parsing, we use a 28 states FSM.
2319 *
2320 * Here is the information we currently have :
Willy Tarreauf073a832009-03-01 23:21:47 +01002321 * req->data + msg->som = beginning of request
Willy Tarreau83e3af02009-12-28 17:39:57 +01002322 * req->data + msg->eoh = end of processed headers / start of current one
2323 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreau59234e92008-11-30 23:51:27 +01002324 * req->lr = first non-visited byte
2325 * req->r = end of data
Willy Tarreaud787e662009-07-07 10:14:51 +02002326 *
2327 * At end of parsing, we may perform a capture of the error (if any), and
2328 * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE).
2329 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2330 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002331 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002332
Willy Tarreau59234e92008-11-30 23:51:27 +01002333 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002334 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002335 struct http_txn *txn = &s->txn;
2336 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002337 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002338
Willy Tarreau6bf17362009-02-24 10:48:35 +01002339 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
2340 now_ms, __FUNCTION__,
2341 s,
2342 req,
2343 req->rex, req->wex,
2344 req->flags,
2345 req->l,
2346 req->analysers);
2347
Willy Tarreau52a0c602009-08-16 22:45:38 +02002348 /* we're speaking HTTP here, so let's speak HTTP to the client */
2349 s->srv_error = http_return_srv_error;
2350
Willy Tarreau83e3af02009-12-28 17:39:57 +01002351 /* There's a protected area at the end of the buffer for rewriting
2352 * purposes. We don't want to start to parse the request if the
2353 * protected area is affected, because we may have to move processed
2354 * data later, which is much more complicated.
2355 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002356 if (req->l && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau065e8332010-01-08 00:30:20 +01002357 if ((txn->flags & TX_NOT_FIRST) &&
2358 unlikely((req->flags & BF_FULL) ||
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002359 req->r < req->lr ||
2360 req->r > req->data + req->size - global.tune.maxrewrite)) {
2361 if (req->send_max) {
2362 /* some data has still not left the buffer, wake us once that's done */
2363 buffer_dont_connect(req);
2364 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
2365 return 0;
2366 }
2367 if (req->l <= req->size - global.tune.maxrewrite)
2368 http_buffer_heavy_realign(req, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002369 }
2370
Willy Tarreau065e8332010-01-08 00:30:20 +01002371 /* Note that we have the same problem with the response ; we
2372 * may want to send a redirect, error or anything which requires
2373 * some spare space. So we'll ensure that we have at least
2374 * maxrewrite bytes available in the response buffer before
2375 * processing that one. This will only affect pipelined
2376 * keep-alive requests.
2377 */
2378 if ((txn->flags & TX_NOT_FIRST) &&
2379 unlikely((s->rep->flags & BF_FULL) ||
2380 s->rep->r < s->rep->lr ||
2381 s->rep->r > s->rep->data + s->rep->size - global.tune.maxrewrite)) {
2382 if (s->rep->send_max) {
2383 /* don't let a connection request be initiated */
2384 buffer_dont_connect(req);
Willy Tarreauff7b5882010-01-22 14:41:29 +01002385 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau065e8332010-01-08 00:30:20 +01002386 return 0;
2387 }
2388 }
2389
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002390 if (likely(req->lr < req->r))
2391 http_msg_analyzer(req, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002392 }
2393
Willy Tarreau59234e92008-11-30 23:51:27 +01002394 /* 1: we might have to print this header in debug mode */
2395 if (unlikely((global.mode & MODE_DEBUG) &&
2396 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002397 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002398 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002399
Willy Tarreau962c3f42010-01-10 00:15:35 +01002400 sol = msg->sol;
Willy Tarreau59234e92008-11-30 23:51:27 +01002401 eol = sol + msg->sl.rq.l;
2402 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002403
Willy Tarreau59234e92008-11-30 23:51:27 +01002404 sol += hdr_idx_first_pos(&txn->hdr_idx);
2405 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002406
Willy Tarreau59234e92008-11-30 23:51:27 +01002407 while (cur_idx) {
2408 eol = sol + txn->hdr_idx.v[cur_idx].len;
2409 debug_hdr("clihdr", s, sol, eol);
2410 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2411 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002412 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002413 }
2414
Willy Tarreau58f10d72006-12-04 02:26:12 +01002415
Willy Tarreau59234e92008-11-30 23:51:27 +01002416 /*
2417 * Now we quickly check if we have found a full valid request.
2418 * If not so, we check the FD and buffer states before leaving.
2419 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002420 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002421 * requests are checked first. When waiting for a second request
2422 * on a keep-alive session, if we encounter and error, close, t/o,
2423 * we note the error in the session flags but don't set any state.
2424 * Since the error will be noted there, it will not be counted by
2425 * process_session() as a frontend error.
Willy Tarreau59234e92008-11-30 23:51:27 +01002426 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002427
Willy Tarreau655dce92009-11-08 13:10:58 +01002428 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002429 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002430 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002431 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002432 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
2433 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002434
Willy Tarreau59234e92008-11-30 23:51:27 +01002435 /* 1: Since we are in header mode, if there's no space
2436 * left for headers, we won't be able to free more
2437 * later, so the session will never terminate. We
2438 * must terminate it now.
2439 */
2440 if (unlikely(req->flags & BF_FULL)) {
2441 /* FIXME: check if URI is set and return Status
2442 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002443 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002444 goto return_bad_req;
2445 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002446
Willy Tarreau59234e92008-11-30 23:51:27 +01002447 /* 2: have we encountered a read error ? */
2448 else if (req->flags & BF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002449 if (!(s->flags & SN_ERR_MASK))
2450 s->flags |= SN_ERR_CLICL;
2451
Willy Tarreaufcffa692010-01-10 14:21:19 +01002452 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002453 goto failed_keep_alive;
2454
Willy Tarreau59234e92008-11-30 23:51:27 +01002455 /* we cannot return any message on error */
Willy Tarreau4076a152009-04-02 15:18:36 +02002456 if (msg->err_pos >= 0)
2457 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002458 msg->msg_state = HTTP_MSG_ERROR;
2459 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002460
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002461 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002462 if (s->listener->counters)
2463 s->listener->counters->failed_req++;
2464
Willy Tarreau59234e92008-11-30 23:51:27 +01002465 if (!(s->flags & SN_FINST_MASK))
2466 s->flags |= SN_FINST_R;
2467 return 0;
2468 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002469
Willy Tarreau59234e92008-11-30 23:51:27 +01002470 /* 3: has the read timeout expired ? */
2471 else if (req->flags & BF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002472 if (!(s->flags & SN_ERR_MASK))
2473 s->flags |= SN_ERR_CLITO;
2474
Willy Tarreaufcffa692010-01-10 14:21:19 +01002475 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002476 goto failed_keep_alive;
2477
Willy Tarreau59234e92008-11-30 23:51:27 +01002478 /* read timeout : give up with an error message. */
Willy Tarreau4076a152009-04-02 15:18:36 +02002479 if (msg->err_pos >= 0)
2480 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002481 txn->status = 408;
2482 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
2483 msg->msg_state = HTTP_MSG_ERROR;
2484 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002485
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002486 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002487 if (s->listener->counters)
2488 s->listener->counters->failed_req++;
2489
Willy Tarreau59234e92008-11-30 23:51:27 +01002490 if (!(s->flags & SN_FINST_MASK))
2491 s->flags |= SN_FINST_R;
2492 return 0;
2493 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002494
Willy Tarreau59234e92008-11-30 23:51:27 +01002495 /* 4: have we encountered a close ? */
2496 else if (req->flags & BF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002497 if (!(s->flags & SN_ERR_MASK))
2498 s->flags |= SN_ERR_CLICL;
2499
Willy Tarreaufcffa692010-01-10 14:21:19 +01002500 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002501 goto failed_keep_alive;
2502
Willy Tarreau4076a152009-04-02 15:18:36 +02002503 if (msg->err_pos >= 0)
2504 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002505 txn->status = 400;
2506 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
2507 msg->msg_state = HTTP_MSG_ERROR;
2508 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002509
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002510 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002511 if (s->listener->counters)
2512 s->listener->counters->failed_req++;
2513
Willy Tarreau59234e92008-11-30 23:51:27 +01002514 if (!(s->flags & SN_FINST_MASK))
2515 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002516 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002517 }
2518
Willy Tarreau520d95e2009-09-19 21:04:57 +02002519 buffer_dont_connect(req);
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002520 req->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreauff7b5882010-01-22 14:41:29 +01002521 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002522
Willy Tarreaufcffa692010-01-10 14:21:19 +01002523 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2524 /* If the client starts to talk, let's fall back to
2525 * request timeout processing.
2526 */
2527 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002528 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002529 }
2530
Willy Tarreau59234e92008-11-30 23:51:27 +01002531 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002532 if (!tick_isset(req->analyse_exp)) {
2533 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2534 (txn->flags & TX_WAIT_NEXT_RQ) &&
2535 tick_isset(s->be->timeout.httpka))
2536 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2537 else
2538 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2539 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002540
Willy Tarreau59234e92008-11-30 23:51:27 +01002541 /* we're not ready yet */
2542 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002543
2544 failed_keep_alive:
2545 /* Here we process low-level errors for keep-alive requests. In
2546 * short, if the request is not the first one and it experiences
2547 * a timeout, read error or shutdown, we just silently close so
2548 * that the client can try again.
2549 */
2550 txn->status = 0;
2551 msg->msg_state = HTTP_MSG_RQBEFORE;
2552 req->analysers = 0;
2553 s->logs.logwait = 0;
Willy Tarreauff7b5882010-01-22 14:41:29 +01002554 s->rep->flags &= ~BF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002555 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002556 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002557 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002558
Willy Tarreaud787e662009-07-07 10:14:51 +02002559 /* OK now we have a complete HTTP request with indexed headers. Let's
2560 * complete the request parsing by setting a few fields we will need
Willy Tarreaufa355d42009-11-29 18:12:29 +01002561 * later. At this point, we have the last CRLF at req->data + msg->eoh.
2562 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
2563 * points to the CRLF of the request line. req->lr points to the first
2564 * byte after the last LF. msg->col and msg->sov point to the first
2565 * byte of data. msg->eol cannot be trusted because it may have been
2566 * left uninitialized (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002567 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002568
Willy Tarreaub16a5742010-01-10 14:46:16 +01002569 if (txn->flags & TX_WAIT_NEXT_RQ) {
2570 /* kill the pending keep-alive timeout */
2571 txn->flags &= ~TX_WAIT_NEXT_RQ;
2572 req->analyse_exp = TICK_ETERNITY;
2573 }
2574
2575
Willy Tarreaud787e662009-07-07 10:14:51 +02002576 /* Maybe we found in invalid header name while we were configured not
2577 * to block on that, so we have to capture it now.
2578 */
2579 if (unlikely(msg->err_pos >= 0))
Willy Tarreau4076a152009-04-02 15:18:36 +02002580 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
2581
Willy Tarreau59234e92008-11-30 23:51:27 +01002582 /*
2583 * 1: identify the method
2584 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01002585 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002586
2587 /* we can make use of server redirect on GET and HEAD */
2588 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2589 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002590
Willy Tarreau59234e92008-11-30 23:51:27 +01002591 /*
2592 * 2: check if the URI matches the monitor_uri.
2593 * We have to do this for every request which gets in, because
2594 * the monitor-uri is defined by the frontend.
2595 */
2596 if (unlikely((s->fe->monitor_uri_len != 0) &&
2597 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002598 !memcmp(msg->sol + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002599 s->fe->monitor_uri,
2600 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002601 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002602 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002603 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002604 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002605
Willy Tarreau59234e92008-11-30 23:51:27 +01002606 s->flags |= SN_MONITOR;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002607
Willy Tarreau59234e92008-11-30 23:51:27 +01002608 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002609 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
2610 int ret = acl_exec_cond(cond, s->fe, s, txn, ACL_DIR_REQ);
Willy Tarreau11382812008-07-09 16:18:21 +02002611
Willy Tarreau59234e92008-11-30 23:51:27 +01002612 ret = acl_pass(ret);
2613 if (cond->pol == ACL_COND_UNLESS)
2614 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002615
Willy Tarreau59234e92008-11-30 23:51:27 +01002616 if (ret) {
2617 /* we fail this request, let's return 503 service unavail */
2618 txn->status = 503;
2619 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_503));
2620 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002621 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002622 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002623
Willy Tarreau59234e92008-11-30 23:51:27 +01002624 /* nothing to fail, let's reply normaly */
2625 txn->status = 200;
2626 stream_int_retnclose(req->prod, &http_200_chunk);
2627 goto return_prx_cond;
2628 }
2629
2630 /*
2631 * 3: Maybe we have to copy the original REQURI for the logs ?
2632 * Note: we cannot log anymore if the request has been
2633 * classified as invalid.
2634 */
2635 if (unlikely(s->logs.logwait & LW_REQ)) {
2636 /* we have a complete HTTP request that we must log */
2637 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2638 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002639
Willy Tarreau59234e92008-11-30 23:51:27 +01002640 if (urilen >= REQURI_LEN)
2641 urilen = REQURI_LEN - 1;
2642 memcpy(txn->uri, &req->data[msg->som], urilen);
2643 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002644
Willy Tarreau59234e92008-11-30 23:51:27 +01002645 if (!(s->logs.logwait &= ~LW_REQ))
2646 s->do_log(s);
2647 } else {
2648 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002649 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002650 }
Willy Tarreau06619262006-12-17 08:37:22 +01002651
Willy Tarreau59234e92008-11-30 23:51:27 +01002652 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002653 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn))
2654 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002655
Willy Tarreau5b154472009-12-21 20:11:07 +01002656 /* ... and check if the request is HTTP/1.1 or above */
2657 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01002658 ((msg->sol[msg->sl.rq.v + 5] > '1') ||
2659 ((msg->sol[msg->sl.rq.v + 5] == '1') &&
2660 (msg->sol[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01002661 txn->flags |= TX_REQ_VER_11;
2662
2663 /* "connection" has not been parsed yet */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002664 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL);
Willy Tarreau5b154472009-12-21 20:11:07 +01002665
Willy Tarreau88d349d2010-01-25 12:15:43 +01002666 /* if the frontend has "option http-use-proxy-header", we'll check if
2667 * we have what looks like a proxied connection instead of a connection,
2668 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2669 * Note that this is *not* RFC-compliant, however browsers and proxies
2670 * happen to do that despite being non-standard :-(
2671 * We consider that a request not beginning with either '/' or '*' is
2672 * a proxied connection, which covers both "scheme://location" and
2673 * CONNECT ip:port.
2674 */
2675 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
2676 msg->sol[msg->sl.rq.u] != '/' && msg->sol[msg->sl.rq.u] != '*')
2677 txn->flags |= TX_USE_PX_CONN;
2678
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002679 /* transfer length unknown*/
2680 txn->flags &= ~TX_REQ_XFER_LEN;
2681
Willy Tarreau59234e92008-11-30 23:51:27 +01002682 /* 5: we may need to capture headers */
2683 if (unlikely((s->logs.logwait & LW_REQHDR) && s->fe->req_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01002684 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002685 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002686
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002687 /* 6: determine the transfer-length.
2688 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2689 * the presence of a message-body in a REQUEST and its transfer length
2690 * must be determined that way (in order of precedence) :
2691 * 1. The presence of a message-body in a request is signaled by the
2692 * inclusion of a Content-Length or Transfer-Encoding header field
2693 * in the request's header fields. When a request message contains
2694 * both a message-body of non-zero length and a method that does
2695 * not define any semantics for that request message-body, then an
2696 * origin server SHOULD either ignore the message-body or respond
2697 * with an appropriate error message (e.g., 413). A proxy or
2698 * gateway, when presented the same request, SHOULD either forward
2699 * the request inbound with the message- body or ignore the
2700 * message-body when determining a response.
2701 *
2702 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2703 * and the "chunked" transfer-coding (Section 6.2) is used, the
2704 * transfer-length is defined by the use of this transfer-coding.
2705 * If a Transfer-Encoding header field is present and the "chunked"
2706 * transfer-coding is not present, the transfer-length is defined
2707 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002708 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002709 * 3. If a Content-Length header field is present, its decimal value in
2710 * OCTETs represents both the entity-length and the transfer-length.
2711 * If a message is received with both a Transfer-Encoding header
2712 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002713 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002714 * 4. By the server closing the connection. (Closing the connection
2715 * cannot be used to indicate the end of a request body, since that
2716 * would leave no possibility for the server to send back a response.)
2717 *
2718 * Whenever a transfer-coding is applied to a message-body, the set of
2719 * transfer-codings MUST include "chunked", unless the message indicates
2720 * it is terminated by closing the connection. When the "chunked"
2721 * transfer-coding is used, it MUST be the last transfer-coding applied
2722 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002723 */
2724
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002725 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002726 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002727 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01002728 while ((txn->flags & TX_REQ_VER_11) &&
2729 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002730 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
2731 txn->flags |= (TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2732 else if (txn->flags & TX_REQ_TE_CHNK) {
2733 /* bad transfer-encoding (chunked followed by something else) */
2734 use_close_only = 1;
2735 txn->flags &= ~(TX_REQ_TE_CHNK | TX_REQ_XFER_LEN);
2736 break;
2737 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002738 }
2739
Willy Tarreau32b47f42009-10-18 20:55:02 +02002740 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002741 while (!(txn->flags & TX_REQ_TE_CHNK) && !use_close_only &&
Willy Tarreau32b47f42009-10-18 20:55:02 +02002742 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
2743 signed long long cl;
2744
2745 if (!ctx.vlen)
2746 goto return_bad_req;
2747
2748 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl))
2749 goto return_bad_req; /* parse failure */
2750
2751 if (cl < 0)
2752 goto return_bad_req;
2753
2754 if ((txn->flags & TX_REQ_CNT_LEN) && (msg->hdr_content_len != cl))
2755 goto return_bad_req; /* already specified, was different */
2756
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002757 txn->flags |= TX_REQ_CNT_LEN | TX_REQ_XFER_LEN;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002758 msg->hdr_content_len = cl;
2759 }
2760
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002761 /* bodyless requests have a known length */
2762 if (!use_close_only)
2763 txn->flags |= TX_REQ_XFER_LEN;
2764
Willy Tarreaud787e662009-07-07 10:14:51 +02002765 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002766 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002767 req->analyse_exp = TICK_ETERNITY;
2768 return 1;
2769
2770 return_bad_req:
2771 /* We centralize bad requests processing here */
2772 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2773 /* we detected a parsing error. We want to archive this request
2774 * in the dedicated proxy area for later troubleshooting.
2775 */
2776 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
2777 }
2778
2779 txn->req.msg_state = HTTP_MSG_ERROR;
2780 txn->status = 400;
2781 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002782
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002783 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002784 if (s->listener->counters)
2785 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02002786
2787 return_prx_cond:
2788 if (!(s->flags & SN_ERR_MASK))
2789 s->flags |= SN_ERR_PRXCOND;
2790 if (!(s->flags & SN_FINST_MASK))
2791 s->flags |= SN_FINST_R;
2792
2793 req->analysers = 0;
2794 req->analyse_exp = TICK_ETERNITY;
2795 return 0;
2796}
2797
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002798/* This stream analyser runs all HTTP request processing which is common to
2799 * frontends and backends, which means blocking ACLs, filters, connection-close,
2800 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02002801 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002802 * either needs more data or wants to immediately abort the request (eg: deny,
2803 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02002804 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002805int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02002806{
Willy Tarreaud787e662009-07-07 10:14:51 +02002807 struct http_txn *txn = &s->txn;
2808 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002809 struct acl_cond *cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002810 struct req_acl_rule *req_acl, *req_acl_final = NULL;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002811 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01002812 struct cond_wordlist *wl;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002813 int del_ka, del_cl, do_stats;
Willy Tarreaud787e662009-07-07 10:14:51 +02002814
Willy Tarreau655dce92009-11-08 13:10:58 +01002815 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02002816 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002817 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02002818 return 0;
2819 }
2820
Willy Tarreau3a816292009-07-07 10:55:49 +02002821 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002822 req->analyse_exp = TICK_ETERNITY;
2823
2824 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
2825 now_ms, __FUNCTION__,
2826 s,
2827 req,
2828 req->rex, req->wex,
2829 req->flags,
2830 req->l,
2831 req->analysers);
2832
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002833 /* first check whether we have some ACLs set to block this request */
2834 list_for_each_entry(cond, &px->block_cond, list) {
2835 int ret = acl_exec_cond(cond, px, s, txn, ACL_DIR_REQ);
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002836
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002837 ret = acl_pass(ret);
2838 if (cond->pol == ACL_COND_UNLESS)
2839 ret = !ret;
Willy Tarreau53b6c742006-12-17 13:37:46 +01002840
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002841 if (ret) {
2842 txn->status = 403;
2843 /* let's log the request time */
2844 s->logs.tv_request = now;
2845 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
2846 goto return_prx_cond;
Willy Tarreau59234e92008-11-30 23:51:27 +01002847 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002848 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002849
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002850 do_stats = stats_check_uri(s, px);
2851
2852 list_for_each_entry(req_acl, (do_stats?&px->uri_auth->req_acl:&px->req_acl), list) {
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002853 int ret = 1;
2854
2855 if (req_acl->action >= PR_REQ_ACL_ACT_MAX)
2856 continue;
2857
2858 /* check condition, but only if attached */
Krzysztof Olędzki711ad9e2010-02-01 12:36:53 +01002859 if (req_acl->cond) {
2860 ret = acl_exec_cond(req_acl->cond, px, s, txn, ACL_DIR_REQ);
2861 ret = acl_pass(ret);
Willy Tarreau51425942010-02-01 10:40:19 +01002862
Krzysztof Olędzki711ad9e2010-02-01 12:36:53 +01002863 if (req_acl->cond->pol == ACL_COND_UNLESS)
2864 ret = !ret;
2865 }
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002866
2867 if (ret) {
2868 req_acl_final = req_acl;
2869 break;
2870 }
2871 }
2872
2873 if (req_acl_final && req_acl_final->action == PR_REQ_ACL_ACT_DENY) {
2874 txn->status = 403;
2875 s->logs.tv_request = now;
2876 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
2877 goto return_prx_cond;
2878 }
2879
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002880 /* try headers filters */
2881 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01002882 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002883 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01002884
Willy Tarreau59234e92008-11-30 23:51:27 +01002885 /* has the request been denied ? */
2886 if (txn->flags & TX_CLDENY) {
2887 /* no need to go further */
2888 txn->status = 403;
2889 /* let's log the request time */
2890 s->logs.tv_request = now;
2891 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_403));
2892 goto return_prx_cond;
2893 }
Willy Tarreauc465fd72009-08-31 00:17:18 +02002894
2895 /* When a connection is tarpitted, we use the tarpit timeout,
2896 * which may be the same as the connect timeout if unspecified.
2897 * If unset, then set it to zero because we really want it to
2898 * eventually expire. We build the tarpit as an analyser.
2899 */
2900 if (txn->flags & TX_CLTARPIT) {
2901 buffer_erase(s->req);
2902 /* wipe the request out so that we can drop the connection early
2903 * if the client closes first.
2904 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02002905 buffer_dont_connect(req);
Willy Tarreauc465fd72009-08-31 00:17:18 +02002906 req->analysers = 0; /* remove switching rules etc... */
2907 req->analysers |= AN_REQ_HTTP_TARPIT;
2908 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
2909 if (!req->analyse_exp)
2910 req->analyse_exp = tick_add(now_ms, 0);
2911 return 1;
2912 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002913 }
Willy Tarreau06619262006-12-17 08:37:22 +01002914
Willy Tarreau5b154472009-12-21 20:11:07 +01002915 /* Until set to anything else, the connection mode is set as TUNNEL. It will
2916 * only change if both the request and the config reference something else.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002917 * Option httpclose by itself does not set a mode, it remains a tunnel mode
2918 * in which headers are mangled. However, if another mode is set, it will
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002919 * affect it (eg: server-close/keep-alive + httpclose = close). Note that we
2920 * avoid to redo the same work if FE and BE have the same settings (common).
2921 * The method consists in checking if options changed between the two calls
2922 * (implying that either one is non-null, or one of them is non-null and we
2923 * are there for the first time.
Willy Tarreau42736642009-10-18 21:04:35 +02002924 */
Willy Tarreau5b154472009-12-21 20:11:07 +01002925
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002926 del_cl = del_ka = 0;
2927
Willy Tarreaudc008c52010-02-01 16:20:08 +01002928 if ((!(txn->flags & TX_HDR_CONN_PRS) &&
2929 (s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO))) ||
2930 ((s->fe->options & (PR_O_KEEPALIVE|PR_O_SERVER_CLO|PR_O_HTTP_CLOSE|PR_O_FORCE_CLO)) !=
2931 (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 +01002932 int tmp = TX_CON_WANT_TUN;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002933
Willy Tarreau5b154472009-12-21 20:11:07 +01002934 if ((s->fe->options|s->be->options) & PR_O_KEEPALIVE)
2935 tmp = TX_CON_WANT_KAL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002936 if ((s->fe->options|s->be->options) & PR_O_SERVER_CLO)
2937 tmp = TX_CON_WANT_SCL;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002938 if ((s->fe->options|s->be->options) & PR_O_FORCE_CLO)
Willy Tarreau5b154472009-12-21 20:11:07 +01002939 tmp = TX_CON_WANT_CLO;
2940
Willy Tarreau5b154472009-12-21 20:11:07 +01002941 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
2942 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002943
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002944 if (!(txn->flags & TX_HDR_CONN_PRS)) {
2945 /* parse the Connection header and possibly clean it */
2946 int to_del = 0;
2947 if ((txn->flags & TX_REQ_VER_11) ||
2948 (txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL)
2949 to_del |= 2; /* remove "keep-alive" */
2950 if (!(txn->flags & TX_REQ_VER_11))
2951 to_del |= 1; /* remove "close" */
2952 http_parse_connection_header(txn, msg, req, to_del);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002953 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002954
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002955 /* check if client or config asks for explicit close in KAL/SCL */
2956 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
2957 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
2958 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
2959 (txn->flags & (TX_REQ_VER_11|TX_HDR_CONN_KAL)) == 0 || /* no "connection: k-a" in 1.0 */
2960 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE) || /* httpclose + any = forceclose */
Willy Tarreauc3e8b252010-01-28 15:01:20 +01002961 !(txn->flags & TX_REQ_XFER_LEN) || /* no length known => close */
2962 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002963 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
2964 }
Willy Tarreau78599912009-10-17 20:12:21 +02002965
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002966 /* add request headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002967 list_for_each_entry(wl, &px->req_add, list) {
Willy Tarreau8abd4cd2010-01-31 14:30:44 +01002968 if (wl->cond) {
2969 int ret = acl_exec_cond(wl->cond, px, s, txn, ACL_DIR_REQ);
2970 ret = acl_pass(ret);
2971 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
2972 ret = !ret;
2973 if (!ret)
2974 continue;
2975 }
2976
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002977 if (unlikely(http_header_add_tail(req, &txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002978 goto return_bad_req;
2979 }
Willy Tarreaub2513902006-12-17 14:52:38 +01002980
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002981 if (req_acl_final && req_acl_final->action == PR_REQ_ACL_ACT_HTTP_AUTH) {
2982 struct chunk msg;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002983 char *realm = req_acl->http_auth.realm;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002984
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002985 if (!realm)
2986 realm = do_stats?STATS_DEFAULT_REALM:px->id;
2987
Willy Tarreau844a7e72010-01-31 21:46:18 +01002988 sprintf(trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002989 chunk_initlen(&msg, trash, sizeof(trash), strlen(trash));
2990 txn->status = 401;
2991 stream_int_retnclose(req->prod, &msg);
2992 goto return_prx_cond;
2993 }
2994
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002995 if (do_stats) {
2996 /* We need to provied stats for this request.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002997 * FIXME!!! that one is rather dangerous, we want to
2998 * make it follow standard rules (eg: clear req->analysers).
2999 */
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003000
3001 s->logs.tv_request = now;
3002 s->data_source = DATA_SRC_STATS;
3003 s->data_state = DATA_ST_INIT;
3004 s->task->nice = -32; /* small boost for HTTP statistics */
3005 stream_int_register_handler(s->rep->prod, http_stats_io_handler);
3006 s->rep->prod->private = s;
3007 s->rep->prod->st0 = s->rep->prod->st1 = 0;
3008 req->analysers = 0;
3009
3010 return 0;
3011
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003012 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003013
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003014 /* check whether we have some ACLs set to redirect this request */
3015 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003016 int ret = ACL_PAT_PASS;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003017
Willy Tarreauf285f542010-01-03 20:03:03 +01003018 if (rule->cond) {
3019 ret = acl_exec_cond(rule->cond, px, s, txn, ACL_DIR_REQ);
3020 ret = acl_pass(ret);
3021 if (rule->cond->pol == ACL_COND_UNLESS)
3022 ret = !ret;
3023 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003024
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003025 if (ret) {
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003026 struct chunk rdr = { .str = trash, .size = sizeof(trash), .len = 0 };
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003027 const char *msg_fmt;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003028
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003029 /* build redirect message */
3030 switch(rule->code) {
3031 case 303:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003032 msg_fmt = HTTP_303;
3033 break;
3034 case 301:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003035 msg_fmt = HTTP_301;
3036 break;
3037 case 302:
3038 default:
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003039 msg_fmt = HTTP_302;
3040 break;
3041 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003042
Willy Tarreau3bb9c232010-01-03 12:24:37 +01003043 if (unlikely(!chunk_strcpy(&rdr, msg_fmt)))
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003044 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003045
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003046 switch(rule->type) {
3047 case REDIRECT_TYPE_PREFIX: {
3048 const char *path;
3049 int pathlen;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003050
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003051 path = http_get_path(txn);
3052 /* build message using path */
3053 if (path) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003054 pathlen = txn->req.sl.rq.u_l + (txn->req.sol + txn->req.sl.rq.u) - path;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003055 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3056 int qs = 0;
3057 while (qs < pathlen) {
3058 if (path[qs] == '?') {
3059 pathlen = qs;
3060 break;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003061 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003062 qs++;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003063 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003064 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003065 } else {
3066 path = "/";
3067 pathlen = 1;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003068 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003069
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003070 if (rdr.len + rule->rdr_len + pathlen > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003071 goto return_bad_req;
3072
3073 /* add prefix. Note that if prefix == "/", we don't want to
3074 * add anything, otherwise it makes it hard for the user to
3075 * configure a self-redirection.
3076 */
3077 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Willy Tarreau06b917c2009-07-06 16:34:52 +02003078 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3079 rdr.len += rule->rdr_len;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003080 }
3081
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003082 /* add path */
3083 memcpy(rdr.str + rdr.len, path, pathlen);
3084 rdr.len += pathlen;
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01003085
3086 /* append a slash at the end of the location is needed and missing */
3087 if (rdr.len && rdr.str[rdr.len - 1] != '/' &&
3088 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3089 if (rdr.len > rdr.size - 5)
3090 goto return_bad_req;
3091 rdr.str[rdr.len] = '/';
3092 rdr.len++;
3093 }
3094
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003095 break;
3096 }
3097 case REDIRECT_TYPE_LOCATION:
3098 default:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003099 if (rdr.len + rule->rdr_len > rdr.size - 4)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003100 goto return_bad_req;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003101
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003102 /* add location */
3103 memcpy(rdr.str + rdr.len, rule->rdr_str, rule->rdr_len);
3104 rdr.len += rule->rdr_len;
3105 break;
3106 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003107
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003108 if (rule->cookie_len) {
3109 memcpy(rdr.str + rdr.len, "\r\nSet-Cookie: ", 14);
3110 rdr.len += 14;
3111 memcpy(rdr.str + rdr.len, rule->cookie_str, rule->cookie_len);
3112 rdr.len += rule->cookie_len;
3113 memcpy(rdr.str + rdr.len, "\r\n", 2);
3114 rdr.len += 2;
Willy Tarreau06b917c2009-07-06 16:34:52 +02003115 }
Willy Tarreau06b917c2009-07-06 16:34:52 +02003116
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003117 /* add end of headers and the keep-alive/close status.
3118 * We may choose to set keep-alive if the Location begins
3119 * with a slash, because the client will come back to the
3120 * same server.
3121 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003122 txn->status = rule->code;
3123 /* let's log the request time */
3124 s->logs.tv_request = now;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003125
3126 if (rule->rdr_len >= 1 && *rule->rdr_str == '/' &&
3127 (txn->flags & TX_REQ_XFER_LEN) &&
3128 !(txn->flags & TX_REQ_TE_CHNK) && !txn->req.hdr_content_len &&
3129 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3130 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3131 /* keep-alive possible */
Willy Tarreau75661452010-01-10 10:35:01 +01003132 if (!(txn->flags & TX_REQ_VER_11)) {
Willy Tarreau88d349d2010-01-25 12:15:43 +01003133 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3134 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: keep-alive", 30);
3135 rdr.len += 30;
3136 } else {
3137 memcpy(rdr.str + rdr.len, "\r\nConnection: keep-alive", 24);
3138 rdr.len += 24;
3139 }
Willy Tarreau75661452010-01-10 10:35:01 +01003140 }
3141 memcpy(rdr.str + rdr.len, "\r\n\r\n", 4);
3142 rdr.len += 4;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003143 buffer_write(req->prod->ob, rdr.str, rdr.len);
3144 /* "eat" the request */
3145 buffer_ignore(req, msg->sov - msg->som);
3146 msg->som = msg->sov;
3147 req->analysers = AN_REQ_HTTP_XFER_BODY;
Willy Tarreau9300fb22010-01-05 00:58:24 +01003148 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3149 txn->req.msg_state = HTTP_MSG_CLOSED;
3150 txn->rsp.msg_state = HTTP_MSG_DONE;
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003151 break;
3152 } else {
3153 /* keep-alive not possible */
Willy Tarreau88d349d2010-01-25 12:15:43 +01003154 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3155 memcpy(rdr.str + rdr.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3156 rdr.len += 29;
3157 } else {
3158 memcpy(rdr.str + rdr.len, "\r\nConnection: close\r\n\r\n", 23);
3159 rdr.len += 23;
3160 }
Willy Tarreau148d0992010-01-10 10:21:21 +01003161 stream_int_retnclose(req->prod, &rdr);
Willy Tarreaua9679ac2010-01-03 17:32:57 +01003162 goto return_prx_cond;
3163 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003164 }
3165 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003166
Willy Tarreau2be39392010-01-03 17:24:51 +01003167 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3168 * If this happens, then the data will not come immediately, so we must
3169 * send all what we have without waiting. Note that due to the small gain
3170 * in waiting for the body of the request, it's easier to simply put the
3171 * BF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
3172 * itself once used.
3173 */
3174 req->flags |= BF_SEND_DONTWAIT;
3175
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003176 /* that's OK for us now, let's move on to next analysers */
3177 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003178
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003179 return_bad_req:
3180 /* We centralize bad requests processing here */
3181 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3182 /* we detected a parsing error. We want to archive this request
3183 * in the dedicated proxy area for later troubleshooting.
3184 */
3185 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
3186 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003187
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003188 txn->req.msg_state = HTTP_MSG_ERROR;
3189 txn->status = 400;
3190 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003191
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02003192 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003193 if (s->listener->counters)
3194 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02003195
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003196 return_prx_cond:
3197 if (!(s->flags & SN_ERR_MASK))
3198 s->flags |= SN_ERR_PRXCOND;
3199 if (!(s->flags & SN_FINST_MASK))
3200 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01003201
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003202 req->analysers = 0;
3203 req->analyse_exp = TICK_ETERNITY;
3204 return 0;
3205}
Willy Tarreau58f10d72006-12-04 02:26:12 +01003206
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003207/* This function performs all the processing enabled for the current request.
3208 * It returns 1 if the processing can continue on next analysers, or zero if it
3209 * needs more data, encounters an error, or wants to immediately abort the
3210 * request. It relies on buffers flags, and updates s->req->analysers.
3211 */
3212int http_process_request(struct session *s, struct buffer *req, int an_bit)
3213{
3214 struct http_txn *txn = &s->txn;
3215 struct http_msg *msg = &txn->req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01003216
Willy Tarreau655dce92009-11-08 13:10:58 +01003217 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003218 /* we need more data */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003219 buffer_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003220 return 0;
3221 }
3222
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003223 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
3224 now_ms, __FUNCTION__,
3225 s,
3226 req,
3227 req->rex, req->wex,
3228 req->flags,
3229 req->l,
3230 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01003231
Willy Tarreau59234e92008-11-30 23:51:27 +01003232 /*
3233 * Right now, we know that we have processed the entire headers
3234 * and that unwanted requests have been filtered out. We can do
3235 * whatever we want with the remaining request. Also, now we
3236 * may have separate values for ->fe, ->be.
3237 */
Willy Tarreau06619262006-12-17 08:37:22 +01003238
Willy Tarreau59234e92008-11-30 23:51:27 +01003239 /*
3240 * If HTTP PROXY is set we simply get remote server address
3241 * parsing incoming request.
3242 */
3243 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003244 url2sa(msg->sol + msg->sl.rq.u, msg->sl.rq.u_l, &s->srv_addr);
Willy Tarreau59234e92008-11-30 23:51:27 +01003245 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01003246
Willy Tarreau59234e92008-11-30 23:51:27 +01003247 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003248 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01003249 * Note that doing so might move headers in the request, but
3250 * the fields will stay coherent and the URI will not move.
3251 * This should only be performed in the backend.
3252 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02003253 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01003254 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
3255 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02003256
Willy Tarreau59234e92008-11-30 23:51:27 +01003257 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01003258 * 8: the appsession cookie was looked up very early in 1.2,
3259 * so let's do the same now.
3260 */
3261
3262 /* It needs to look into the URI */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01003263 if ((txn->sessid == NULL) && s->be->appsession_name) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01003264 get_srv_from_appsession(s, msg->sol + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01003265 }
3266
3267 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01003268 * 9: add X-Forwarded-For if either the frontend or the backend
3269 * asks for it.
3270 */
3271 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
3272 if (s->cli_addr.ss_family == AF_INET) {
3273 /* Add an X-Forwarded-For header unless the source IP is
3274 * in the 'except' network range.
3275 */
3276 if ((!s->fe->except_mask.s_addr ||
3277 (((struct sockaddr_in *)&s->cli_addr)->sin_addr.s_addr & s->fe->except_mask.s_addr)
3278 != s->fe->except_net.s_addr) &&
3279 (!s->be->except_mask.s_addr ||
3280 (((struct sockaddr_in *)&s->cli_addr)->sin_addr.s_addr & s->be->except_mask.s_addr)
3281 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01003282 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01003283 unsigned char *pn;
3284 pn = (unsigned char *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02003285
3286 /* Note: we rely on the backend to get the header name to be used for
3287 * x-forwarded-for, because the header is really meant for the backends.
3288 * However, if the backend did not specify any option, we have to rely
3289 * on the frontend's header name.
3290 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003291 if (s->be->fwdfor_hdr_len) {
3292 len = s->be->fwdfor_hdr_len;
3293 memcpy(trash, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02003294 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01003295 len = s->fe->fwdfor_hdr_len;
3296 memcpy(trash, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003297 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003298 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01003299
Willy Tarreau4af6f3a2007-03-18 22:36:26 +01003300 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003301 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01003302 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01003303 }
3304 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003305 else if (s->cli_addr.ss_family == AF_INET6) {
3306 /* FIXME: for the sake of completeness, we should also support
3307 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003308 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003309 int len;
3310 char pn[INET6_ADDRSTRLEN];
3311 inet_ntop(AF_INET6,
3312 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
3313 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003314
Willy Tarreau59234e92008-11-30 23:51:27 +01003315 /* Note: we rely on the backend to get the header name to be used for
3316 * x-forwarded-for, because the header is really meant for the backends.
3317 * However, if the backend did not specify any option, we have to rely
3318 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003319 */
Willy Tarreau59234e92008-11-30 23:51:27 +01003320 if (s->be->fwdfor_hdr_len) {
3321 len = s->be->fwdfor_hdr_len;
3322 memcpy(trash, s->be->fwdfor_hdr_name, len);
3323 } else {
3324 len = s->fe->fwdfor_hdr_len;
3325 memcpy(trash, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02003326 }
Willy Tarreau59234e92008-11-30 23:51:27 +01003327 len += sprintf(trash + len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003328
Willy Tarreau59234e92008-11-30 23:51:27 +01003329 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003330 &txn->hdr_idx, trash, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01003331 goto return_bad_req;
3332 }
3333 }
3334
3335 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02003336 * 10: add X-Original-To if either the frontend or the backend
3337 * asks for it.
3338 */
3339 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
3340
3341 /* FIXME: don't know if IPv6 can handle that case too. */
3342 if (s->cli_addr.ss_family == AF_INET) {
3343 /* Add an X-Original-To header unless the destination IP is
3344 * in the 'except' network range.
3345 */
3346 if (!(s->flags & SN_FRT_ADDR_SET))
3347 get_frt_addr(s);
3348
3349 if ((!s->fe->except_mask_to.s_addr ||
3350 (((struct sockaddr_in *)&s->frt_addr)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
3351 != s->fe->except_to.s_addr) &&
3352 (!s->be->except_mask_to.s_addr ||
3353 (((struct sockaddr_in *)&s->frt_addr)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
3354 != s->be->except_to.s_addr)) {
3355 int len;
3356 unsigned char *pn;
3357 pn = (unsigned char *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr;
3358
3359 /* Note: we rely on the backend to get the header name to be used for
3360 * x-original-to, because the header is really meant for the backends.
3361 * However, if the backend did not specify any option, we have to rely
3362 * on the frontend's header name.
3363 */
3364 if (s->be->orgto_hdr_len) {
3365 len = s->be->orgto_hdr_len;
3366 memcpy(trash, s->be->orgto_hdr_name, len);
3367 } else {
3368 len = s->fe->orgto_hdr_len;
3369 memcpy(trash, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003370 }
Maik Broemme2850cb42009-04-17 18:53:21 +02003371 len += sprintf(trash + len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
3372
3373 if (unlikely(http_header_add_tail2(req, &txn->req,
Willy Tarreau58cc8722009-12-28 06:57:33 +01003374 &txn->hdr_idx, trash, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003375 goto return_bad_req;
3376 }
3377 }
3378 }
3379
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003380 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. */
3381 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
3382 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE)) {
3383 unsigned int want_flags = 0;
3384
3385 if (txn->flags & TX_REQ_VER_11) {
3386 if ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
3387 ((s->fe->options|s->be->options) & PR_O_HTTP_CLOSE))
3388 want_flags |= TX_CON_CLO_SET;
3389 } else {
3390 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)
3391 want_flags |= TX_CON_KAL_SET;
3392 }
3393
3394 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
3395 http_change_connection_header(txn, msg, req, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003396 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003397
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003398
Willy Tarreau522d6c02009-12-06 18:49:18 +01003399 /* If we have no server assigned yet and we're balancing on url_param
3400 * with a POST request, we may be interested in checking the body for
3401 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003402 */
3403 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
3404 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreau522d6c02009-12-06 18:49:18 +01003405 s->be->url_param_post_limit != 0 &&
3406 (txn->flags & (TX_REQ_CNT_LEN|TX_REQ_TE_CHNK)) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01003407 memchr(msg->sol + msg->sl.rq.u, '?', msg->sl.rq.u_l) == NULL) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003408 buffer_dont_connect(req);
3409 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003410 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003411
Willy Tarreaud98cf932009-12-27 22:54:55 +01003412 if (txn->flags & TX_REQ_XFER_LEN)
3413 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01003414
Willy Tarreau59234e92008-11-30 23:51:27 +01003415 /*************************************************************
3416 * OK, that's finished for the headers. We have done what we *
3417 * could. Let's switch to the DATA state. *
3418 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003419 req->analyse_exp = TICK_ETERNITY;
3420 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003421
Willy Tarreau59234e92008-11-30 23:51:27 +01003422 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003423 /* OK let's go on with the BODY now */
3424 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003425
Willy Tarreau59234e92008-11-30 23:51:27 +01003426 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003427 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003428 /* we detected a parsing error. We want to archive this request
3429 * in the dedicated proxy area for later troubleshooting.
3430 */
Willy Tarreau4076a152009-04-02 15:18:36 +02003431 http_capture_bad_message(&s->fe->invalid_req, s, req, msg, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003432 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003433
Willy Tarreau59234e92008-11-30 23:51:27 +01003434 txn->req.msg_state = HTTP_MSG_ERROR;
3435 txn->status = 400;
3436 req->analysers = 0;
3437 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003438
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02003439 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003440 if (s->listener->counters)
3441 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02003442
Willy Tarreau59234e92008-11-30 23:51:27 +01003443 if (!(s->flags & SN_ERR_MASK))
3444 s->flags |= SN_ERR_PRXCOND;
3445 if (!(s->flags & SN_FINST_MASK))
3446 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003447 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003448}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003449
Willy Tarreau60b85b02008-11-30 23:28:40 +01003450/* This function is an analyser which processes the HTTP tarpit. It always
3451 * returns zero, at the beginning because it prevents any other processing
3452 * from occurring, and at the end because it terminates the request.
3453 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003454int http_process_tarpit(struct session *s, struct buffer *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003455{
3456 struct http_txn *txn = &s->txn;
3457
3458 /* This connection is being tarpitted. The CLIENT side has
3459 * already set the connect expiration date to the right
3460 * timeout. We just have to check that the client is still
3461 * there and that the timeout has not expired.
3462 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003463 buffer_dont_connect(req);
Willy Tarreau60b85b02008-11-30 23:28:40 +01003464 if ((req->flags & (BF_SHUTR|BF_READ_ERROR)) == 0 &&
3465 !tick_is_expired(req->analyse_exp, now_ms))
3466 return 0;
3467
3468 /* We will set the queue timer to the time spent, just for
3469 * logging purposes. We fake a 500 server error, so that the
3470 * attacker will not suspect his connection has been tarpitted.
3471 * It will not cause trouble to the logs because we can exclude
3472 * the tarpitted connections by filtering on the 'PT' status flags.
3473 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003474 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3475
3476 txn->status = 500;
3477 if (req->flags != BF_READ_ERROR)
3478 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_500));
3479
3480 req->analysers = 0;
3481 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003482
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02003483 s->fe->counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003484 if (s->listener->counters)
3485 s->listener->counters->failed_req++;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003486
Willy Tarreau60b85b02008-11-30 23:28:40 +01003487 if (!(s->flags & SN_ERR_MASK))
3488 s->flags |= SN_ERR_PRXCOND;
3489 if (!(s->flags & SN_FINST_MASK))
3490 s->flags |= SN_FINST_T;
3491 return 0;
3492}
3493
Willy Tarreaud34af782008-11-30 23:36:37 +01003494/* This function is an analyser which processes the HTTP request body. It looks
3495 * for parameters to be used for the load balancing algorithm (url_param). It
3496 * must only be called after the standard HTTP request processing has occurred,
3497 * because it expects the request to be parsed. It returns zero if it needs to
3498 * read more data, or 1 once it has completed its analysis.
3499 */
Willy Tarreau3a816292009-07-07 10:55:49 +02003500int http_process_request_body(struct session *s, struct buffer *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003501{
Willy Tarreau522d6c02009-12-06 18:49:18 +01003502 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01003503 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003504 long long limit = s->be->url_param_post_limit;
Willy Tarreaud34af782008-11-30 23:36:37 +01003505
3506 /* We have to parse the HTTP request body to find any required data.
3507 * "balance url_param check_post" should have been the only way to get
3508 * into this. We were brought here after HTTP header analysis, so all
3509 * related structures are ready.
3510 */
3511
Willy Tarreau522d6c02009-12-06 18:49:18 +01003512 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
3513 goto missing_data;
3514
3515 if (msg->msg_state < HTTP_MSG_100_SENT) {
3516 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
3517 * send an HTTP/1.1 100 Continue intermediate response.
3518 */
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01003519 if (txn->flags & TX_REQ_VER_11) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003520 struct hdr_ctx ctx;
3521 ctx.idx = 0;
3522 /* Expect is allowed in 1.1, look for it */
3523 if (http_find_header2("Expect", 6, msg->sol, &txn->hdr_idx, &ctx) &&
3524 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
3525 buffer_write(s->rep, http_100_chunk.str, http_100_chunk.len);
3526 }
3527 }
3528 msg->msg_state = HTTP_MSG_100_SENT;
3529 }
3530
3531 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01003532 /* we have msg->col and msg->sov which both point to the first
3533 * byte of message body. msg->som still points to the beginning
3534 * of the message. We must save the body in req->lr because it
3535 * survives buffer re-alignments.
3536 */
3537 req->lr = req->data + msg->sov;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003538 if (txn->flags & TX_REQ_TE_CHNK)
3539 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
3540 else
3541 msg->msg_state = HTTP_MSG_DATA;
3542 }
3543
3544 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau115acb92009-12-26 13:56:06 +01003545 /* read the chunk size and assign it to ->hdr_content_len, then
Willy Tarreaud98cf932009-12-27 22:54:55 +01003546 * set ->sov and ->lr to point to the body and switch to DATA or
3547 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01003548 */
3549 int ret = http_parse_chunk_size(req, msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01003550
Willy Tarreau115acb92009-12-26 13:56:06 +01003551 if (!ret)
3552 goto missing_data;
3553 else if (ret < 0)
Willy Tarreau522d6c02009-12-06 18:49:18 +01003554 goto return_bad_req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003555 }
3556
Willy Tarreaud98cf932009-12-27 22:54:55 +01003557 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreau522d6c02009-12-06 18:49:18 +01003558 * We have the first non-header byte in msg->col, which is either the
3559 * beginning of the chunk size or of the data. The first data byte is in
3560 * msg->sov, which is equal to msg->col when not using transfer-encoding.
3561 * We're waiting for at least <url_param_post_limit> bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01003562 */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003563
3564 if (msg->hdr_content_len < limit)
3565 limit = msg->hdr_content_len;
3566
Willy Tarreau7c96f672009-12-27 22:47:25 +01003567 if (req->l - (msg->sov - msg->som) >= limit) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003568 goto http_end;
3569
3570 missing_data:
3571 /* we get here if we need to wait for more data */
Willy Tarreau115acb92009-12-26 13:56:06 +01003572 if (req->flags & BF_FULL)
3573 goto return_bad_req;
3574
Willy Tarreau522d6c02009-12-06 18:49:18 +01003575 if ((req->flags & BF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
3576 txn->status = 408;
3577 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_408));
3578 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01003579 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003580
3581 /* we get here if we need to wait for more data */
3582 if (!(req->flags & (BF_FULL | BF_READ_ERROR | BF_SHUTR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01003583 /* Not enough data. We'll re-use the http-request
3584 * timeout here. Ideally, we should set the timeout
3585 * relative to the accept() date. We just set the
3586 * request timeout once at the beginning of the
3587 * request.
3588 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02003589 buffer_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01003590 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02003591 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01003592 return 0;
3593 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003594
3595 http_end:
3596 /* The situation will not evolve, so let's give up on the analysis. */
3597 s->logs.tv_request = now; /* update the request timer to reflect full request */
3598 req->analysers &= ~an_bit;
3599 req->analyse_exp = TICK_ETERNITY;
3600 return 1;
3601
3602 return_bad_req: /* let's centralize all bad requests */
3603 txn->req.msg_state = HTTP_MSG_ERROR;
3604 txn->status = 400;
3605 stream_int_retnclose(req->prod, error_message(s, HTTP_ERR_400));
3606
3607 return_err_msg:
3608 req->analysers = 0;
3609 s->fe->counters.failed_req++;
3610 if (s->listener->counters)
3611 s->listener->counters->failed_req++;
3612
3613 if (!(s->flags & SN_ERR_MASK))
3614 s->flags |= SN_ERR_PRXCOND;
3615 if (!(s->flags & SN_FINST_MASK))
3616 s->flags |= SN_FINST_R;
3617 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01003618}
3619
Willy Tarreau610ecce2010-01-04 21:15:02 +01003620/* Terminate current transaction and prepare a new one. This is very tricky
3621 * right now but it works.
3622 */
3623void http_end_txn_clean_session(struct session *s)
3624{
3625 /* FIXME: We need a more portable way of releasing a backend's and a
3626 * server's connections. We need a safer way to reinitialize buffer
3627 * flags. We also need a more accurate method for computing per-request
3628 * data.
3629 */
3630 http_silent_debug(__LINE__, s);
3631
3632 s->req->cons->flags |= SI_FL_NOLINGER;
3633 s->req->cons->shutr(s->req->cons);
3634 s->req->cons->shutw(s->req->cons);
3635
3636 http_silent_debug(__LINE__, s);
3637
3638 if (s->flags & SN_BE_ASSIGNED)
3639 s->be->beconn--;
3640
3641 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
3642 session_process_counters(s);
3643
3644 if (s->txn.status) {
3645 int n;
3646
3647 n = s->txn.status / 100;
3648 if (n < 1 || n > 5)
3649 n = 0;
3650
3651 if (s->fe->mode == PR_MODE_HTTP)
3652 s->fe->counters.p.http.rsp[n]++;
3653
3654 if ((s->flags & SN_BE_ASSIGNED) && (s->fe != s->be) &&
3655 (s->be->mode == PR_MODE_HTTP))
3656 s->be->counters.p.http.rsp[n]++;
3657 }
3658
3659 /* don't count other requests' data */
3660 s->logs.bytes_in -= s->req->l - s->req->send_max;
3661 s->logs.bytes_out -= s->rep->l - s->rep->send_max;
3662
3663 /* let's do a final log if we need it */
3664 if (s->logs.logwait &&
3665 !(s->flags & SN_MONITOR) &&
3666 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
3667 s->do_log(s);
3668 }
3669
3670 s->logs.accept_date = date; /* user-visible date for logging */
3671 s->logs.tv_accept = now; /* corrected date for internal use */
3672 tv_zero(&s->logs.tv_request);
3673 s->logs.t_queue = -1;
3674 s->logs.t_connect = -1;
3675 s->logs.t_data = -1;
3676 s->logs.t_close = 0;
3677 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
3678 s->logs.srv_queue_size = 0; /* we will get this number soon */
3679
3680 s->logs.bytes_in = s->req->total = s->req->l - s->req->send_max;
3681 s->logs.bytes_out = s->rep->total = s->rep->l - s->rep->send_max;
3682
3683 if (s->pend_pos)
3684 pendconn_free(s->pend_pos);
3685
3686 if (s->srv) {
3687 if (s->flags & SN_CURR_SESS) {
3688 s->flags &= ~SN_CURR_SESS;
3689 s->srv->cur_sess--;
3690 }
3691 if (may_dequeue_tasks(s->srv, s->be))
3692 process_srv_queue(s->srv);
3693 }
3694
3695 if (unlikely(s->srv_conn))
3696 sess_change_server(s, NULL);
3697 s->srv = NULL;
3698
3699 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
3700 s->req->cons->fd = -1; /* just to help with debugging */
3701 s->req->cons->err_type = SI_ET_NONE;
3702 s->req->cons->err_loc = NULL;
3703 s->req->cons->exp = TICK_ETERNITY;
3704 s->req->cons->flags = SI_FL_NONE;
Willy Tarreau90deb182010-01-07 00:20:41 +01003705 s->req->flags &= ~(BF_SHUTW|BF_SHUTW_NOW|BF_AUTO_CONNECT|BF_WRITE_ERROR|BF_STREAMER|BF_STREAMER_FAST);
3706 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);
Willy Tarreau4de91492010-01-22 19:10:05 +01003707 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003708 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE);
3709 s->txn.meth = 0;
3710 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01003711 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003712 if (s->be->options2 & PR_O2_INDEPSTR)
3713 s->req->cons->flags |= SI_FL_INDEP_STR;
3714
3715 /* if the request buffer is not empty, it means we're
3716 * about to process another request, so send pending
3717 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01003718 * Just don't do this if the buffer is close to be full,
3719 * because the request will wait for it to flush a little
3720 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003721 */
Willy Tarreau065e8332010-01-08 00:30:20 +01003722 if (s->req->l > s->req->send_max) {
3723 if (s->rep->send_max &&
3724 !(s->rep->flags & BF_FULL) &&
Willy Tarreau065e8332010-01-08 00:30:20 +01003725 s->rep->r <= s->rep->data + s->rep->size - global.tune.maxrewrite)
3726 s->rep->flags |= BF_EXPECT_MORE;
3727 }
Willy Tarreau90deb182010-01-07 00:20:41 +01003728
3729 /* we're removing the analysers, we MUST re-enable events detection */
3730 buffer_auto_read(s->req);
3731 buffer_auto_close(s->req);
3732 buffer_auto_read(s->rep);
3733 buffer_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003734
3735 /* make ->lr point to the first non-forwarded byte */
3736 s->req->lr = s->req->w + s->req->send_max;
3737 if (s->req->lr >= s->req->data + s->req->size)
3738 s->req->lr -= s->req->size;
3739 s->rep->lr = s->rep->w + s->rep->send_max;
3740 if (s->rep->lr >= s->rep->data + s->rep->size)
3741 s->rep->lr -= s->req->size;
3742
3743 s->req->analysers |= s->fe->fe_req_ana;
3744 s->rep->analysers = 0;
3745
3746 http_silent_debug(__LINE__, s);
3747}
3748
3749
3750/* This function updates the request state machine according to the response
3751 * state machine and buffer flags. It returns 1 if it changes anything (flag
3752 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
3753 * it is only used to find when a request/response couple is complete. Both
3754 * this function and its equivalent should loop until both return zero. It
3755 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
3756 */
3757int http_sync_req_state(struct session *s)
3758{
3759 struct buffer *buf = s->req;
3760 struct http_txn *txn = &s->txn;
3761 unsigned int old_flags = buf->flags;
3762 unsigned int old_state = txn->req.msg_state;
3763
3764 http_silent_debug(__LINE__, s);
3765 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
3766 return 0;
3767
3768 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01003769 /* No need to read anymore, the request was completely parsed.
3770 * We can shut the read side unless we want to abort_on_close.
3771 */
3772 if (buf->cons->state == SI_ST_EST || !(s->be->options & PR_O_ABRT_CLOSE))
3773 buffer_dont_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003774
3775 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
3776 goto wait_other_side;
3777
3778 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
3779 /* The server has not finished to respond, so we
3780 * don't want to move in order not to upset it.
3781 */
3782 goto wait_other_side;
3783 }
3784
3785 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
3786 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01003787 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003788 txn->req.msg_state = HTTP_MSG_TUNNEL;
3789 goto wait_other_side;
3790 }
3791
3792 /* When we get here, it means that both the request and the
3793 * response have finished receiving. Depending on the connection
3794 * mode, we'll have to wait for the last bytes to leave in either
3795 * direction, and sometimes for a close to be effective.
3796 */
3797
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003798 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
3799 /* Server-close mode : queue a connection close to the server */
3800 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW)))
Willy Tarreau610ecce2010-01-04 21:15:02 +01003801 buffer_shutw_now(buf);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003802 }
3803 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
3804 /* Option forceclose is set, or either side wants to close,
3805 * let's enforce it now that we're not expecting any new
3806 * data to come. The caller knows the session is complete
3807 * once both states are CLOSED.
3808 */
3809 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003810 buffer_shutr_now(buf);
3811 buffer_shutw_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003812 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003813 }
3814 else {
3815 /* The last possible modes are keep-alive and tunnel. Since tunnel
3816 * mode does not set the body analyser, we can't reach this place
3817 * in tunnel mode, so we're left with keep-alive only.
3818 * This mode is currently not implemented, we switch to tunnel mode.
3819 */
3820 buffer_auto_read(buf);
3821 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003822 }
3823
3824 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
3825 /* if we've just closed an output, let's switch */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003826 buf->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
3827
Willy Tarreau610ecce2010-01-04 21:15:02 +01003828 if (!(buf->flags & BF_OUT_EMPTY)) {
3829 txn->req.msg_state = HTTP_MSG_CLOSING;
3830 goto http_msg_closing;
3831 }
3832 else {
3833 txn->req.msg_state = HTTP_MSG_CLOSED;
3834 goto http_msg_closed;
3835 }
3836 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003837 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003838 }
3839
3840 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
3841 http_msg_closing:
3842 /* nothing else to forward, just waiting for the output buffer
3843 * to be empty and for the shutw_now to take effect.
3844 */
3845 if (buf->flags & BF_OUT_EMPTY) {
3846 txn->req.msg_state = HTTP_MSG_CLOSED;
3847 goto http_msg_closed;
3848 }
3849 else if (buf->flags & BF_SHUTW) {
3850 txn->req.msg_state = HTTP_MSG_ERROR;
3851 goto wait_other_side;
3852 }
3853 }
3854
3855 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
3856 http_msg_closed:
3857 goto wait_other_side;
3858 }
3859
3860 wait_other_side:
3861 http_silent_debug(__LINE__, s);
3862 return txn->req.msg_state != old_state || buf->flags != old_flags;
3863}
3864
3865
3866/* This function updates the response state machine according to the request
3867 * state machine and buffer flags. It returns 1 if it changes anything (flag
3868 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
3869 * it is only used to find when a request/response couple is complete. Both
3870 * this function and its equivalent should loop until both return zero. It
3871 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
3872 */
3873int http_sync_res_state(struct session *s)
3874{
3875 struct buffer *buf = s->rep;
3876 struct http_txn *txn = &s->txn;
3877 unsigned int old_flags = buf->flags;
3878 unsigned int old_state = txn->rsp.msg_state;
3879
3880 http_silent_debug(__LINE__, s);
3881 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
3882 return 0;
3883
3884 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
3885 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01003886 * still monitor the server connection for a possible close
3887 * while the request is being uploaded, so we don't disable
3888 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003889 */
Willy Tarreau90deb182010-01-07 00:20:41 +01003890 /* buffer_dont_read(buf); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003891
3892 if (txn->req.msg_state == HTTP_MSG_ERROR)
3893 goto wait_other_side;
3894
3895 if (txn->req.msg_state < HTTP_MSG_DONE) {
3896 /* The client seems to still be sending data, probably
3897 * because we got an error response during an upload.
3898 * We have the choice of either breaking the connection
3899 * or letting it pass through. Let's do the later.
3900 */
3901 goto wait_other_side;
3902 }
3903
3904 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
3905 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreau90deb182010-01-07 00:20:41 +01003906 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003907 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
3908 goto wait_other_side;
3909 }
3910
3911 /* When we get here, it means that both the request and the
3912 * response have finished receiving. Depending on the connection
3913 * mode, we'll have to wait for the last bytes to leave in either
3914 * direction, and sometimes for a close to be effective.
3915 */
3916
3917 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
3918 /* Server-close mode : shut read and wait for the request
3919 * side to close its output buffer. The caller will detect
3920 * when we're in DONE and the other is in CLOSED and will
3921 * catch that for the final cleanup.
3922 */
3923 if (!(buf->flags & (BF_SHUTR|BF_SHUTR_NOW)))
3924 buffer_shutr_now(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003925 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003926 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
3927 /* Option forceclose is set, or either side wants to close,
3928 * let's enforce it now that we're not expecting any new
3929 * data to come. The caller knows the session is complete
3930 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003931 */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003932 if (!(buf->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
3933 buffer_shutr_now(buf);
3934 buffer_shutw_now(buf);
3935 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003936 }
3937 else {
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003938 /* The last possible modes are keep-alive and tunnel. Since tunnel
3939 * mode does not set the body analyser, we can't reach this place
3940 * in tunnel mode, so we're left with keep-alive only.
3941 * This mode is currently not implemented, we switch to tunnel mode.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003942 */
Willy Tarreau90deb182010-01-07 00:20:41 +01003943 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003944 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003945 }
3946
3947 if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) {
3948 /* if we've just closed an output, let's switch */
3949 if (!(buf->flags & BF_OUT_EMPTY)) {
3950 txn->rsp.msg_state = HTTP_MSG_CLOSING;
3951 goto http_msg_closing;
3952 }
3953 else {
3954 txn->rsp.msg_state = HTTP_MSG_CLOSED;
3955 goto http_msg_closed;
3956 }
3957 }
3958 goto wait_other_side;
3959 }
3960
3961 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
3962 http_msg_closing:
3963 /* nothing else to forward, just waiting for the output buffer
3964 * to be empty and for the shutw_now to take effect.
3965 */
3966 if (buf->flags & BF_OUT_EMPTY) {
3967 txn->rsp.msg_state = HTTP_MSG_CLOSED;
3968 goto http_msg_closed;
3969 }
3970 else if (buf->flags & BF_SHUTW) {
3971 txn->rsp.msg_state = HTTP_MSG_ERROR;
3972 goto wait_other_side;
3973 }
3974 }
3975
3976 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
3977 http_msg_closed:
3978 /* drop any pending data */
3979 buffer_ignore(buf, buf->l - buf->send_max);
3980 buffer_auto_close(buf);
Willy Tarreau90deb182010-01-07 00:20:41 +01003981 buffer_auto_read(buf);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003982 goto wait_other_side;
3983 }
3984
3985 wait_other_side:
3986 http_silent_debug(__LINE__, s);
3987 return txn->rsp.msg_state != old_state || buf->flags != old_flags;
3988}
3989
3990
3991/* Resync the request and response state machines. Return 1 if either state
3992 * changes.
3993 */
3994int http_resync_states(struct session *s)
3995{
3996 struct http_txn *txn = &s->txn;
3997 int old_req_state = txn->req.msg_state;
3998 int old_res_state = txn->rsp.msg_state;
3999
4000 http_silent_debug(__LINE__, s);
4001 http_sync_req_state(s);
4002 while (1) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004003 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004004 if (!http_sync_res_state(s))
4005 break;
Willy Tarreau90deb182010-01-07 00:20:41 +01004006 http_silent_debug(__LINE__, s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004007 if (!http_sync_req_state(s))
4008 break;
4009 }
4010 http_silent_debug(__LINE__, s);
4011 /* OK, both state machines agree on a compatible state.
4012 * There are a few cases we're interested in :
4013 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
4014 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
4015 * directions, so let's simply disable both analysers.
4016 * - HTTP_MSG_CLOSED on the response only means we must abort the
4017 * request.
4018 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
4019 * with server-close mode means we've completed one request and we
4020 * must re-initialize the server connection.
4021 */
4022
4023 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
4024 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
4025 (txn->req.msg_state == HTTP_MSG_CLOSED &&
4026 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
4027 s->req->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004028 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004029 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004030 s->rep->analysers = 0;
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004031 buffer_auto_close(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01004032 buffer_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004033 }
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004034 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
4035 txn->rsp.msg_state == HTTP_MSG_ERROR ||
4036 (s->rep->flags & BF_SHUTW)) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004037 s->rep->analysers = 0;
4038 buffer_auto_close(s->rep);
4039 buffer_auto_read(s->rep);
4040 s->req->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004041 buffer_abort(s->req);
4042 buffer_auto_close(s->req);
Willy Tarreau90deb182010-01-07 00:20:41 +01004043 buffer_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004044 buffer_ignore(s->req, s->req->l - s->req->send_max);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004045 }
4046 else if (txn->req.msg_state == HTTP_MSG_CLOSED &&
4047 txn->rsp.msg_state == HTTP_MSG_DONE &&
4048 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)) {
4049 /* server-close: terminate this server connection and
4050 * reinitialize a fresh-new transaction.
4051 */
4052 http_end_txn_clean_session(s);
4053 }
4054
4055 http_silent_debug(__LINE__, s);
4056 return txn->req.msg_state != old_req_state ||
4057 txn->rsp.msg_state != old_res_state;
4058}
4059
Willy Tarreaud98cf932009-12-27 22:54:55 +01004060/* This function is an analyser which forwards request body (including chunk
4061 * sizes if any). It is called as soon as we must forward, even if we forward
4062 * zero byte. The only situation where it must not be called is when we're in
4063 * tunnel mode and we want to forward till the close. It's used both to forward
4064 * remaining data and to resync after end of body. It expects the msg_state to
4065 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4066 * read more data, or 1 once we can go on with next request or end the session.
4067 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward hdr_content_len
4068 * bytes of pending data + the headers if not already done (between som and sov).
4069 * It eventually adjusts som to match sov after the data in between have been sent.
4070 */
4071int http_request_forward_body(struct session *s, struct buffer *req, int an_bit)
4072{
4073 struct http_txn *txn = &s->txn;
4074 struct http_msg *msg = &s->txn.req;
4075
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004076 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4077 return 0;
4078
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004079 if ((req->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
4080 ((req->flags & BF_SHUTW) && (req->to_forward || req->send_max))) {
4081 /* Output closed while we were sending data. We must abort. */
4082 buffer_ignore(req, req->l - req->send_max);
Willy Tarreau90deb182010-01-07 00:20:41 +01004083 buffer_auto_read(req);
4084 buffer_auto_close(req);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004085 req->analysers &= ~an_bit;
4086 return 1;
4087 }
4088
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004089 buffer_dont_close(req);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004090
4091 /* Note that we don't have to send 100-continue back because we don't
4092 * need the data to complete our job, and it's up to the server to
4093 * decide whether to return 100, 417 or anything else in return of
4094 * an "Expect: 100-continue" header.
4095 */
4096
4097 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4098 /* we have msg->col and msg->sov which both point to the first
4099 * byte of message body. msg->som still points to the beginning
4100 * of the message. We must save the body in req->lr because it
4101 * survives buffer re-alignments.
4102 */
4103 req->lr = req->data + msg->sov;
4104 if (txn->flags & TX_REQ_TE_CHNK)
4105 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4106 else {
4107 msg->msg_state = HTTP_MSG_DATA;
4108 }
4109 }
4110
Willy Tarreaud98cf932009-12-27 22:54:55 +01004111 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004112 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01004113 /* we may have some data pending */
4114 if (msg->hdr_content_len || msg->som != msg->sov) {
4115 int bytes = msg->sov - msg->som;
4116 if (bytes < 0) /* sov may have wrapped at the end */
4117 bytes += req->size;
4118 buffer_forward(req, bytes + msg->hdr_content_len);
4119 msg->hdr_content_len = 0; /* don't forward that again */
4120 msg->som = msg->sov;
4121 }
Willy Tarreau5523b322009-12-29 12:05:52 +01004122
Willy Tarreaucaabe412010-01-03 23:08:28 +01004123 if (msg->msg_state == HTTP_MSG_DATA) {
4124 /* must still forward */
4125 if (req->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004126 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004127
4128 /* nothing left to forward */
4129 if (txn->flags & TX_REQ_TE_CHNK)
4130 msg->msg_state = HTTP_MSG_DATA_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004131 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01004132 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01004133 }
4134 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004135 /* read the chunk size and assign it to ->hdr_content_len, then
4136 * set ->sov and ->lr to point to the body and switch to DATA or
4137 * TRAILERS state.
4138 */
4139 int ret = http_parse_chunk_size(req, msg);
4140
4141 if (!ret)
4142 goto missing_data;
4143 else if (ret < 0)
4144 goto return_bad_req;
4145 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004146 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01004147 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
4148 /* we want the CRLF after the data */
4149 int ret;
4150
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004151 req->lr = req->w + req->send_max;
4152 if (req->lr >= req->data + req->size)
4153 req->lr -= req->size;
4154
Willy Tarreaud98cf932009-12-27 22:54:55 +01004155 ret = http_skip_chunk_crlf(req, msg);
4156
4157 if (ret == 0)
4158 goto missing_data;
4159 else if (ret < 0)
4160 goto return_bad_req;
4161 /* we're in MSG_CHUNK_SIZE now */
4162 }
4163 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
4164 int ret = http_forward_trailers(req, msg);
4165
4166 if (ret == 0)
4167 goto missing_data;
4168 else if (ret < 0)
4169 goto return_bad_req;
4170 /* we're in HTTP_MSG_DONE now */
4171 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004172 else {
4173 /* other states, DONE...TUNNEL */
4174 if (http_resync_states(s)) {
4175 /* some state changes occurred, maybe the analyser
4176 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01004177 */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004178 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
4179 goto return_bad_req;
4180 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004181 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004182 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004183 }
4184 }
4185
Willy Tarreaud98cf932009-12-27 22:54:55 +01004186 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004187 /* stop waiting for data if the input is closed before the end */
4188 if (req->flags & BF_SHUTR)
4189 goto return_bad_req;
4190
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004191 /* waiting for the last bits to leave the buffer */
4192 if (req->flags & BF_SHUTW)
4193 goto return_bad_req;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004194
4195 http_silent_debug(__LINE__, s);
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004196 return 0;
4197
Willy Tarreaud98cf932009-12-27 22:54:55 +01004198 return_bad_req: /* let's centralize all bad requests */
4199 txn->req.msg_state = HTTP_MSG_ERROR;
4200 txn->status = 400;
4201 /* Note: we don't send any error if some data were already sent */
Willy Tarreau148d0992010-01-10 10:21:21 +01004202 stream_int_retnclose(req->prod, (txn->rsp.msg_state < HTTP_MSG_BODY) ? error_message(s, HTTP_ERR_400) : NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004203 req->analysers = 0;
4204 s->fe->counters.failed_req++;
4205 if (s->listener->counters)
4206 s->listener->counters->failed_req++;
4207
4208 if (!(s->flags & SN_ERR_MASK))
4209 s->flags |= SN_ERR_PRXCOND;
4210 if (!(s->flags & SN_FINST_MASK))
4211 s->flags |= SN_FINST_R;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004212 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004213 return 0;
4214}
4215
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004216/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4217 * processing can continue on next analysers, or zero if it either needs more
4218 * data or wants to immediately abort the response (eg: timeout, error, ...). It
4219 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
4220 * when it has nothing left to do, and may remove any analyser when it wants to
4221 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004222 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004223int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004224{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004225 struct http_txn *txn = &s->txn;
4226 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004227 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004228 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004229 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004230 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004231
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004232 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 +02004233 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004234 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004235 rep,
4236 rep->rex, rep->wex,
4237 rep->flags,
4238 rep->l,
4239 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004240
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004241 /*
4242 * Now parse the partial (or complete) lines.
4243 * We will check the response syntax, and also join multi-line
4244 * headers. An index of all the lines will be elaborated while
4245 * parsing.
4246 *
4247 * For the parsing, we use a 28 states FSM.
4248 *
4249 * Here is the information we currently have :
Willy Tarreau83e3af02009-12-28 17:39:57 +01004250 * rep->data + msg->som = beginning of response
4251 * rep->data + msg->eoh = end of processed headers / start of current one
4252 * msg->eol = end of current header or line (LF or CRLF)
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004253 * rep->lr = first non-visited byte
4254 * rep->r = end of data
Willy Tarreau962c3f42010-01-10 00:15:35 +01004255 * Once we reach MSG_BODY, rep->sol = rep->data + msg->som
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004256 */
4257
Willy Tarreau83e3af02009-12-28 17:39:57 +01004258 /* There's a protected area at the end of the buffer for rewriting
4259 * purposes. We don't want to start to parse the request if the
4260 * protected area is affected, because we may have to move processed
4261 * data later, which is much more complicated.
4262 */
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004263 if (rep->l && msg->msg_state < HTTP_MSG_ERROR) {
4264 if (unlikely((rep->flags & BF_FULL) ||
4265 rep->r < rep->lr ||
4266 rep->r > rep->data + rep->size - global.tune.maxrewrite)) {
4267 if (rep->send_max) {
4268 /* some data has still not left the buffer, wake us once that's done */
4269 buffer_dont_close(rep);
4270 rep->flags |= BF_READ_DONTWAIT; /* try to get back here ASAP */
4271 return 0;
4272 }
4273 if (rep->l <= rep->size - global.tune.maxrewrite)
4274 http_buffer_heavy_realign(rep, msg);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004275 }
4276
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01004277 if (likely(rep->lr < rep->r))
4278 http_msg_analyzer(rep, msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004279 }
4280
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004281 /* 1: we might have to print this header in debug mode */
4282 if (unlikely((global.mode & MODE_DEBUG) &&
4283 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01004284 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004285 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004286
Willy Tarreau962c3f42010-01-10 00:15:35 +01004287 sol = msg->sol;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004288 eol = sol + msg->sl.rq.l;
4289 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004290
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004291 sol += hdr_idx_first_pos(&txn->hdr_idx);
4292 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004293
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004294 while (cur_idx) {
4295 eol = sol + txn->hdr_idx.v[cur_idx].len;
4296 debug_hdr("srvhdr", s, sol, eol);
4297 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
4298 cur_idx = txn->hdr_idx.v[cur_idx].next;
4299 }
4300 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004301
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004302 /*
4303 * Now we quickly check if we have found a full valid response.
4304 * If not so, we check the FD and buffer states before leaving.
4305 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01004306 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004307 * responses are checked first.
4308 *
4309 * Depending on whether the client is still there or not, we
4310 * may send an error response back or not. Note that normally
4311 * we should only check for HTTP status there, and check I/O
4312 * errors somewhere else.
4313 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004314
Willy Tarreau655dce92009-11-08 13:10:58 +01004315 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004316 /* Invalid response */
4317 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4318 /* we detected a parsing error. We want to archive this response
4319 * in the dedicated proxy area for later troubleshooting.
4320 */
4321 hdr_response_bad:
4322 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
4323 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
4324
4325 s->be->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004326 if (s->srv) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004327 s->srv->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004328 health_adjust(s->srv, HANA_STATUS_HTTP_HDRRSP);
4329 }
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004330
Willy Tarreau90deb182010-01-07 00:20:41 +01004331 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004332 rep->analysers = 0;
4333 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004334 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004335 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004336 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
4337
4338 if (!(s->flags & SN_ERR_MASK))
4339 s->flags |= SN_ERR_PRXCOND;
4340 if (!(s->flags & SN_FINST_MASK))
4341 s->flags |= SN_FINST_H;
4342
4343 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004344 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004345
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004346 /* too large response does not fit in buffer. */
4347 else if (rep->flags & BF_FULL) {
4348 goto hdr_response_bad;
4349 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004350
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004351 /* read error */
4352 else if (rep->flags & BF_READ_ERROR) {
4353 if (msg->err_pos >= 0)
4354 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02004355
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004356 s->be->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004357 if (s->srv) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004358 s->srv->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004359 health_adjust(s->srv, HANA_STATUS_HTTP_READ_ERROR);
4360 }
Willy Tarreau461f6622008-08-15 23:43:19 +02004361
Willy Tarreau90deb182010-01-07 00:20:41 +01004362 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004363 rep->analysers = 0;
4364 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004365 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004366 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004367 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02004368
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004369 if (!(s->flags & SN_ERR_MASK))
4370 s->flags |= SN_ERR_SRVCL;
4371 if (!(s->flags & SN_FINST_MASK))
4372 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02004373 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004374 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004375
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004376 /* read timeout : return a 504 to the client. */
4377 else if (rep->flags & BF_READ_TIMEOUT) {
4378 if (msg->err_pos >= 0)
4379 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004380
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004381 s->be->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004382 if (s->srv) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004383 s->srv->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004384 health_adjust(s->srv, HANA_STATUS_HTTP_READ_TIMEOUT);
4385 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004386
Willy Tarreau90deb182010-01-07 00:20:41 +01004387 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004388 rep->analysers = 0;
4389 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004390 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004391 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004392 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02004393
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004394 if (!(s->flags & SN_ERR_MASK))
4395 s->flags |= SN_ERR_SRVTO;
4396 if (!(s->flags & SN_FINST_MASK))
4397 s->flags |= SN_FINST_H;
4398 return 0;
4399 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02004400
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004401 /* close from server */
4402 else if (rep->flags & BF_SHUTR) {
4403 if (msg->err_pos >= 0)
4404 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004405
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004406 s->be->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004407 if (s->srv) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004408 s->srv->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004409 health_adjust(s->srv, HANA_STATUS_HTTP_BROKEN_PIPE);
4410 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004411
Willy Tarreau90deb182010-01-07 00:20:41 +01004412 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004413 rep->analysers = 0;
4414 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01004415 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau0b89fbb2010-02-02 09:57:24 +01004416 buffer_ignore(rep, rep->l - rep->send_max);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004417 stream_int_retnclose(rep->cons, error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01004418
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004419 if (!(s->flags & SN_ERR_MASK))
4420 s->flags |= SN_ERR_SRVCL;
4421 if (!(s->flags & SN_FINST_MASK))
4422 s->flags |= SN_FINST_H;
4423 return 0;
4424 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004425
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004426 /* write error to client (we don't send any message then) */
4427 else if (rep->flags & BF_WRITE_ERROR) {
4428 if (msg->err_pos >= 0)
4429 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004430
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004431 s->be->counters.failed_resp++;
4432 rep->analysers = 0;
Willy Tarreau90deb182010-01-07 00:20:41 +01004433 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004434
4435 if (!(s->flags & SN_ERR_MASK))
4436 s->flags |= SN_ERR_CLICL;
4437 if (!(s->flags & SN_FINST_MASK))
4438 s->flags |= SN_FINST_H;
4439
4440 /* process_session() will take care of the error */
4441 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004442 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004443
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004444 buffer_dont_close(rep);
4445 return 0;
4446 }
4447
4448 /* More interesting part now : we know that we have a complete
4449 * response which at least looks like HTTP. We have an indicator
4450 * of each header's length, so we can parse them quickly.
4451 */
4452
4453 if (unlikely(msg->err_pos >= 0))
4454 http_capture_bad_message(&s->be->invalid_rep, s, rep, msg, s->fe);
4455
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004456 /*
4457 * 1: get the status code
4458 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01004459 n = msg->sol[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004460 if (n < 1 || n > 5)
4461 n = 0;
4462 s->srv->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004463
Willy Tarreau5b154472009-12-21 20:11:07 +01004464 /* check if the response is HTTP/1.1 or above */
4465 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau962c3f42010-01-10 00:15:35 +01004466 ((msg->sol[5] > '1') ||
4467 ((msg->sol[5] == '1') &&
4468 (msg->sol[7] >= '1'))))
Willy Tarreau5b154472009-12-21 20:11:07 +01004469 txn->flags |= TX_RES_VER_11;
4470
4471 /* "connection" has not been parsed yet */
Willy Tarreau60466522010-01-18 19:08:45 +01004472 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 +01004473
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004474 /* transfer length unknown*/
4475 txn->flags &= ~TX_RES_XFER_LEN;
4476
Willy Tarreau962c3f42010-01-10 00:15:35 +01004477 txn->status = strl2ui(msg->sol + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004478
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004479 if (txn->status >= 100 && txn->status < 500)
4480 health_adjust(s->srv, HANA_STATUS_HTTP_OK);
4481 else
4482 health_adjust(s->srv, HANA_STATUS_HTTP_STS);
4483
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004484 /*
4485 * 2: check for cacheability.
4486 */
4487
4488 switch (txn->status) {
4489 case 200:
4490 case 203:
4491 case 206:
4492 case 300:
4493 case 301:
4494 case 410:
4495 /* RFC2616 @13.4:
4496 * "A response received with a status code of
4497 * 200, 203, 206, 300, 301 or 410 MAY be stored
4498 * by a cache (...) unless a cache-control
4499 * directive prohibits caching."
4500 *
4501 * RFC2616 @9.5: POST method :
4502 * "Responses to this method are not cacheable,
4503 * unless the response includes appropriate
4504 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004505 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004506 if (likely(txn->meth != HTTP_METH_POST) &&
4507 (s->be->options & (PR_O_CHK_CACHE|PR_O_COOK_NOC)))
4508 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4509 break;
4510 default:
4511 break;
4512 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004513
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004514 /*
4515 * 3: we may need to capture headers
4516 */
4517 s->logs.logwait &= ~LW_RESP;
4518 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->fe->rsp_cap))
Willy Tarreau962c3f42010-01-10 00:15:35 +01004519 capture_headers(msg->sol, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004520 txn->rsp.cap, s->fe->rsp_cap);
4521
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004522 /* 4: determine the transfer-length.
4523 * According to RFC2616 #4.4, amended by the HTTPbis working group,
4524 * the presence of a message-body in a RESPONSE and its transfer length
4525 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004526 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004527 * All responses to the HEAD request method MUST NOT include a
4528 * message-body, even though the presence of entity-header fields
4529 * might lead one to believe they do. All 1xx (informational), 204
4530 * (No Content), and 304 (Not Modified) responses MUST NOT include a
4531 * message-body. All other responses do include a message-body,
4532 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004533 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004534 * 1. Any response which "MUST NOT" include a message-body (such as the
4535 * 1xx, 204 and 304 responses and any response to a HEAD request) is
4536 * always terminated by the first empty line after the header fields,
4537 * regardless of the entity-header fields present in the message.
4538 *
4539 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
4540 * the "chunked" transfer-coding (Section 6.2) is used, the
4541 * transfer-length is defined by the use of this transfer-coding.
4542 * If a Transfer-Encoding header field is present and the "chunked"
4543 * transfer-coding is not present, the transfer-length is defined by
4544 * the sender closing the connection.
4545 *
4546 * 3. If a Content-Length header field is present, its decimal value in
4547 * OCTETs represents both the entity-length and the transfer-length.
4548 * If a message is received with both a Transfer-Encoding header
4549 * field and a Content-Length header field, the latter MUST be ignored.
4550 *
4551 * 4. If the message uses the media type "multipart/byteranges", and
4552 * the transfer-length is not otherwise specified, then this self-
4553 * delimiting media type defines the transfer-length. This media
4554 * type MUST NOT be used unless the sender knows that the recipient
4555 * can parse it; the presence in a request of a Range header with
4556 * multiple byte-range specifiers from a 1.1 client implies that the
4557 * client can parse multipart/byteranges responses.
4558 *
4559 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004560 */
4561
4562 /* Skip parsing if no content length is possible. The response flags
4563 * remain 0 as well as the hdr_content_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004564 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004565 * FIXME: should we parse anyway and return an error on chunked encoding ?
4566 */
4567 if (txn->meth == HTTP_METH_HEAD ||
4568 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004569 txn->status == 204 || txn->status == 304) {
4570 txn->flags |= TX_RES_XFER_LEN;
4571 goto skip_content_length;
4572 }
4573
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004574 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004575 ctx.idx = 0;
Willy Tarreau9e13c3c2009-12-22 09:59:58 +01004576 while ((txn->flags & TX_RES_VER_11) &&
4577 http_find_header2("Transfer-Encoding", 17, msg->sol, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004578 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
4579 txn->flags |= (TX_RES_TE_CHNK | TX_RES_XFER_LEN);
4580 else if (txn->flags & TX_RES_TE_CHNK) {
4581 /* bad transfer-encoding (chunked followed by something else) */
4582 use_close_only = 1;
4583 txn->flags &= ~(TX_RES_TE_CHNK | TX_RES_XFER_LEN);
4584 break;
4585 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004586 }
4587
4588 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
4589 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004590 while (!(txn->flags & TX_RES_TE_CHNK) && !use_close_only &&
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004591 http_find_header2("Content-Length", 14, msg->sol, &txn->hdr_idx, &ctx)) {
4592 signed long long cl;
4593
4594 if (!ctx.vlen)
4595 goto hdr_response_bad;
4596
4597 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl))
4598 goto hdr_response_bad; /* parse failure */
4599
4600 if (cl < 0)
4601 goto hdr_response_bad;
4602
4603 if ((txn->flags & TX_RES_CNT_LEN) && (msg->hdr_content_len != cl))
4604 goto hdr_response_bad; /* already specified, was different */
4605
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004606 txn->flags |= TX_RES_CNT_LEN | TX_RES_XFER_LEN;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004607 msg->hdr_content_len = cl;
4608 }
4609
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004610 /* FIXME: we should also implement the multipart/byterange method.
4611 * For now on, we resort to close mode in this case (unknown length).
4612 */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004613skip_content_length:
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004614
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004615 /* end of job, return OK */
4616 rep->analysers &= ~an_bit;
4617 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau90deb182010-01-07 00:20:41 +01004618 buffer_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004619 return 1;
4620}
4621
4622/* This function performs all the processing enabled for the current response.
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01004623 * It normally returns 1 unless it wants to break. It relies on buffers flags,
4624 * and updates t->rep->analysers. It might make sense to explode it into several
4625 * other functions. It works like process_request (see indications above).
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004626 */
4627int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px)
4628{
4629 struct http_txn *txn = &t->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004630 struct http_msg *msg = &txn->rsp;
4631 struct proxy *cur_proxy;
Willy Tarreauf4f04122010-01-28 18:10:50 +01004632 struct cond_wordlist *wl;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004633
4634 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
4635 now_ms, __FUNCTION__,
4636 t,
4637 rep,
4638 rep->rex, rep->wex,
4639 rep->flags,
4640 rep->l,
4641 rep->analysers);
4642
Willy Tarreau655dce92009-11-08 13:10:58 +01004643 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004644 return 0;
4645
4646 rep->analysers &= ~an_bit;
4647 rep->analyse_exp = TICK_ETERNITY;
4648
Willy Tarreau5b154472009-12-21 20:11:07 +01004649 /* Now we have to check if we need to modify the Connection header.
4650 * This is more difficult on the response than it is on the request,
4651 * because we can have two different HTTP versions and we don't know
4652 * how the client will interprete a response. For instance, let's say
4653 * that the client sends a keep-alive request in HTTP/1.0 and gets an
4654 * HTTP/1.1 response without any header. Maybe it will bound itself to
4655 * HTTP/1.0 because it only knows about it, and will consider the lack
4656 * of header as a close, or maybe it knows HTTP/1.1 and can consider
4657 * the lack of header as a keep-alive. Thus we will use two flags
4658 * indicating how a request MAY be understood by the client. In case
4659 * of multiple possibilities, we'll fix the header to be explicit. If
4660 * ambiguous cases such as both close and keepalive are seen, then we
4661 * will fall back to explicit close. Note that we won't take risks with
4662 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01004663 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01004664 */
4665
Willy Tarreaudc008c52010-02-01 16:20:08 +01004666 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
4667 txn->status == 101)) {
4668 /* Either we've established an explicit tunnel, or we're
4669 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004670 * to understand the next protocols. We have to switch to tunnel
4671 * mode, so that we transfer the request and responses then let
4672 * this protocol pass unmodified. When we later implement specific
4673 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01004674 * header which contains information about that protocol for
4675 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004676 */
4677 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
4678 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01004679 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
4680 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
4681 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE))) {
Willy Tarreau60466522010-01-18 19:08:45 +01004682 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01004683
Willy Tarreau60466522010-01-18 19:08:45 +01004684 /* on unknown transfer length, we must close */
4685 if (!(txn->flags & TX_RES_XFER_LEN) &&
4686 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
4687 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01004688
Willy Tarreau60466522010-01-18 19:08:45 +01004689 /* now adjust header transformations depending on current state */
4690 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
4691 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4692 to_del |= 2; /* remove "keep-alive" on any response */
4693 if (!(txn->flags & TX_RES_VER_11))
4694 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01004695 }
Willy Tarreau60466522010-01-18 19:08:45 +01004696 else { /* SCL / KAL */
4697 to_del |= 1; /* remove "close" on any response */
4698 if ((txn->flags & (TX_RES_VER_11|TX_REQ_VER_11)) == (TX_RES_VER_11|TX_REQ_VER_11))
4699 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01004700 }
Willy Tarreau5b154472009-12-21 20:11:07 +01004701
Willy Tarreau60466522010-01-18 19:08:45 +01004702 /* Parse and remove some headers from the connection header */
4703 http_parse_connection_header(txn, msg, rep, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01004704
Willy Tarreau60466522010-01-18 19:08:45 +01004705 /* Some keep-alive responses are converted to Server-close if
4706 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01004707 */
Willy Tarreau60466522010-01-18 19:08:45 +01004708 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
4709 if ((txn->flags & TX_HDR_CONN_CLO) ||
4710 (txn->flags & (TX_HDR_CONN_KAL|TX_RES_VER_11)) == 0)
4711 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004712 }
Willy Tarreau5b154472009-12-21 20:11:07 +01004713 }
4714
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004715 if (1) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004716 /*
4717 * 3: we will have to evaluate the filters.
4718 * As opposed to version 1.2, now they will be evaluated in the
4719 * filters order and not in the header order. This means that
4720 * each filter has to be validated among all headers.
4721 *
4722 * Filters are tried with ->be first, then with ->fe if it is
4723 * different from ->be.
4724 */
4725
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004726 cur_proxy = t->be;
4727 while (1) {
4728 struct proxy *rule_set = cur_proxy;
4729
4730 /* try headers filters */
4731 if (rule_set->rsp_exp != NULL) {
Willy Tarreaufdb563c2010-01-31 15:43:27 +01004732 if (apply_filters_to_response(t, rep, rule_set) < 0) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004733 return_bad_resp:
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004734 if (t->srv) {
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004735 t->srv->counters.failed_resp++;
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004736 health_adjust(t->srv, HANA_STATUS_HTTP_RSP);
4737 }
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004738 cur_proxy->counters.failed_resp++;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004739 return_srv_prx_502:
Willy Tarreau2df28e82008-08-17 15:20:19 +02004740 rep->analysers = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004741 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 Tarreau8e89b842009-10-18 23:56:35 +02004744 stream_int_retnclose(rep->cons, error_message(t, HTTP_ERR_502));
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004745 if (!(t->flags & SN_ERR_MASK))
4746 t->flags |= SN_ERR_PRXCOND;
4747 if (!(t->flags & SN_FINST_MASK))
4748 t->flags |= SN_FINST_H;
Willy Tarreaudafde432008-08-17 01:00:46 +02004749 return 0;
Willy Tarreau21d2af32008-02-14 20:25:24 +01004750 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004751 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004752
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004753 /* has the response been denied ? */
4754 if (txn->flags & TX_SVDENY) {
Willy Tarreau8365f932009-03-15 23:11:49 +01004755 if (t->srv)
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004756 t->srv->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004757
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004758 cur_proxy->counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004759 if (t->listener->counters)
4760 t->listener->counters->denied_resp++;
4761
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004762 goto return_srv_prx_502;
Willy Tarreau51406232008-03-10 22:04:20 +01004763 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004764
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004765 /* add response headers from the rule sets in the same order */
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01004766 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreau816b9792009-09-15 21:25:21 +02004767 if (txn->status < 200)
4768 break;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01004769 if (wl->cond) {
4770 int ret = acl_exec_cond(wl->cond, px, t, txn, ACL_DIR_RTR);
4771 ret = acl_pass(ret);
4772 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
4773 ret = !ret;
4774 if (!ret)
4775 continue;
4776 }
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01004777 if (unlikely(http_header_add_tail(rep, &txn->rsp, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004778 goto return_bad_resp;
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02004779 }
4780
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004781 /* check whether we're already working on the frontend */
4782 if (cur_proxy == t->fe)
4783 break;
4784 cur_proxy = t->fe;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004785 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004786
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004787 /*
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004788 * We may be facing a 100-continue response, in which case this
4789 * is not the right response, and we're waiting for the next one.
4790 * Let's allow this response to go to the client and wait for the
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004791 * next one.
4792 */
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004793 if (unlikely(txn->status == 100)) {
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004794 hdr_idx_init(&txn->hdr_idx);
Willy Tarreau962c3f42010-01-10 00:15:35 +01004795 buffer_forward(rep, rep->lr - msg->sol);
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004796 msg->msg_state = HTTP_MSG_RPBEFORE;
4797 txn->status = 0;
4798 rep->analysers |= AN_RES_WAIT_HTTP | an_bit;
4799 return 1;
4800 }
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004801 else if (unlikely(txn->status < 200))
4802 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004803
4804 /* we don't have any 1xx status code now */
4805
4806 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004807 * 4: check for server cookie.
4808 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004809 if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name ||
4810 (t->be->options & PR_O_CHK_CACHE))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004811 manage_server_side_cookies(t, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004812
Willy Tarreaubaaee002006-06-26 02:48:02 +02004813
Willy Tarreaua15645d2007-03-18 16:22:39 +01004814 /*
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004815 * 5: check for cache-control or pragma headers if required.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004816 */
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004817 if ((t->be->options & (PR_O_COOK_NOC | PR_O_CHK_CACHE)) != 0)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004818 check_response_for_cacheability(t, rep);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004819
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004820 /*
4821 * 6: add server cookie in the response if needed
4822 */
4823 if ((t->srv) && !(t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_INS) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004824 (!(t->be->options & PR_O_COOK_POST) || (txn->meth == HTTP_METH_POST))) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004825 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004826
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004827 /* the server is known, it's not the one the client requested, we have to
4828 * insert a set-cookie here, except if we want to insert only on POST
4829 * requests and this one isn't. Note that servers which don't have cookies
4830 * (eg: some backup servers) will return a full cookie removal request.
4831 */
4832 len = sprintf(trash, "Set-Cookie: %s=%s; path=/",
4833 t->be->cookie_name,
4834 t->srv->cookie ? t->srv->cookie : "; Expires=Thu, 01-Jan-1970 00:00:01 GMT");
Willy Tarreaubaaee002006-06-26 02:48:02 +02004835
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004836 if (t->be->cookie_domain)
4837 len += sprintf(trash+len, "; domain=%s", t->be->cookie_domain);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004838
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004839 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01004840 trash, len) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004841 goto return_bad_resp;
4842 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004843
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004844 /* Here, we will tell an eventual cache on the client side that we don't
4845 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
4846 * Some caches understand the correct form: 'no-cache="set-cookie"', but
4847 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
4848 */
4849 if ((t->be->options & PR_O_COOK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02004850
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004851 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4852
4853 if (unlikely(http_header_add_tail2(rep, &txn->rsp, &txn->hdr_idx,
Willy Tarreau58cc8722009-12-28 06:57:33 +01004854 "Cache-control: private", 22) < 0))
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004855 goto return_bad_resp;
Willy Tarreaua15645d2007-03-18 16:22:39 +01004856 }
4857 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004858
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004859 /*
4860 * 7: check if result will be cacheable with a cookie.
4861 * We'll block the response if security checks have caught
4862 * nasty things such as a cacheable cookie.
4863 */
4864 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) ==
4865 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_ANY)) &&
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004866 (t->be->options & PR_O_CHK_CACHE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004867
4868 /* we're in presence of a cacheable response containing
4869 * a set-cookie header. We'll block it as requested by
4870 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004871 */
Willy Tarreau8365f932009-03-15 23:11:49 +01004872 if (t->srv)
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004873 t->srv->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004874
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02004875 cur_proxy->counters.denied_resp++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004876 if (t->listener->counters)
4877 t->listener->counters->denied_resp++;
4878
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004879 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
4880 t->be->id, t->srv?t->srv->id:"<dispatch>");
4881 send_log(t->be, LOG_ALERT,
4882 "Blocking cacheable cookie in response from instance %s, server %s.\n",
4883 t->be->id, t->srv?t->srv->id:"<dispatch>");
4884 goto return_srv_prx_502;
4885 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004886
4887 /*
Willy Tarreau60466522010-01-18 19:08:45 +01004888 * 8: adjust "Connection: close" or "Connection: keep-alive" if needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01004889 */
Willy Tarreau60466522010-01-18 19:08:45 +01004890 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
4891 ((t->fe->options|t->be->options) & PR_O_HTTP_CLOSE)) {
4892 unsigned int want_flags = 0;
4893
4894 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
4895 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4896 /* we want a keep-alive response here. Keep-alive header
4897 * required if either side is not 1.1.
4898 */
4899 if ((txn->flags & (TX_REQ_VER_11|TX_RES_VER_11)) != (TX_REQ_VER_11|TX_RES_VER_11))
4900 want_flags |= TX_CON_KAL_SET;
4901 }
4902 else {
4903 /* we want a close response here. Close header required if
4904 * the server is 1.1, regardless of the client.
4905 */
4906 if (txn->flags & TX_RES_VER_11)
4907 want_flags |= TX_CON_CLO_SET;
4908 }
4909
4910 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
4911 http_change_connection_header(txn, msg, rep, want_flags);
Willy Tarreaub608feb2010-01-02 22:47:18 +01004912 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004913
Willy Tarreau5843d1a2010-02-01 15:13:32 +01004914 skip_header_mangling:
Willy Tarreaudc008c52010-02-01 16:20:08 +01004915 if ((txn->flags & TX_RES_XFER_LEN) ||
4916 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
Willy Tarreaud98cf932009-12-27 22:54:55 +01004917 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreau03945942009-12-22 16:50:27 +01004918
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004919 /*************************************************************
4920 * OK, that's finished for the headers. We have done what we *
4921 * could. Let's switch to the DATA state. *
4922 ************************************************************/
Willy Tarreaubaaee002006-06-26 02:48:02 +02004923
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004924 t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now);
Willy Tarreaua15645d2007-03-18 16:22:39 +01004925
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004926 /* if the user wants to log as soon as possible, without counting
4927 * bytes from the server, then this is the right moment. We have
4928 * to temporarily assign bytes_out to log what we currently have.
4929 */
4930 if (t->fe->to_log && !(t->logs.logwait & LW_BYTES)) {
4931 t->logs.t_close = t->logs.t_data; /* to get a valid end date */
4932 t->logs.bytes_out = txn->rsp.eoh;
Willy Tarreaua5555ec2008-11-30 19:02:32 +01004933 t->do_log(t);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004934 t->logs.bytes_out = 0;
4935 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01004936
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004937 /* Note: we must not try to cheat by jumping directly to DATA,
4938 * otherwise we would not let the client side wake up.
4939 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01004940
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01004941 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004942 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01004943 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004944}
Willy Tarreaua15645d2007-03-18 16:22:39 +01004945
Willy Tarreaud98cf932009-12-27 22:54:55 +01004946/* This function is an analyser which forwards response body (including chunk
4947 * sizes if any). It is called as soon as we must forward, even if we forward
4948 * zero byte. The only situation where it must not be called is when we're in
4949 * tunnel mode and we want to forward till the close. It's used both to forward
4950 * remaining data and to resync after end of body. It expects the msg_state to
4951 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
4952 * read more data, or 1 once we can go on with next request or end the session.
4953 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward hdr_content_len
4954 * bytes of pending data + the headers if not already done (between som and sov).
4955 * It eventually adjusts som to match sov after the data in between have been sent.
4956 */
4957int http_response_forward_body(struct session *s, struct buffer *res, int an_bit)
4958{
4959 struct http_txn *txn = &s->txn;
4960 struct http_msg *msg = &s->txn.rsp;
4961
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004962 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
4963 return 0;
4964
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004965 if ((res->flags & (BF_READ_ERROR|BF_READ_TIMEOUT|BF_WRITE_ERROR|BF_WRITE_TIMEOUT)) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01004966 ((res->flags & BF_SHUTW) && (res->to_forward || res->send_max)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01004967 !s->req->analysers) {
4968 /* in case of error or if the other analyser went away, we can't analyse HTTP anymore */
4969 buffer_ignore(res, res->l - res->send_max);
Willy Tarreau90deb182010-01-07 00:20:41 +01004970 buffer_auto_read(res);
4971 buffer_auto_close(res);
Willy Tarreau082b01c2010-01-02 23:58:04 +01004972 res->analysers &= ~an_bit;
4973 return 1;
4974 }
4975
Willy Tarreaud3347ee2010-01-04 02:02:25 +01004976 buffer_dont_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01004977
Willy Tarreaud98cf932009-12-27 22:54:55 +01004978 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4979 /* we have msg->col and msg->sov which both point to the first
4980 * byte of message body. msg->som still points to the beginning
4981 * of the message. We must save the body in req->lr because it
4982 * survives buffer re-alignments.
4983 */
4984 res->lr = res->data + msg->sov;
4985 if (txn->flags & TX_RES_TE_CHNK)
4986 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4987 else {
4988 msg->msg_state = HTTP_MSG_DATA;
4989 }
4990 }
4991
Willy Tarreaud98cf932009-12-27 22:54:55 +01004992 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004993 http_silent_debug(__LINE__, s);
Willy Tarreau638cd022010-01-03 07:42:04 +01004994 /* we may have some data pending */
4995 if (msg->hdr_content_len || msg->som != msg->sov) {
4996 int bytes = msg->sov - msg->som;
4997 if (bytes < 0) /* sov may have wrapped at the end */
4998 bytes += res->size;
4999 buffer_forward(res, bytes + msg->hdr_content_len);
5000 msg->hdr_content_len = 0; /* don't forward that again */
5001 msg->som = msg->sov;
5002 }
5003
Willy Tarreaucaabe412010-01-03 23:08:28 +01005004 if (msg->msg_state == HTTP_MSG_DATA) {
5005 /* must still forward */
5006 if (res->to_forward)
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005007 goto missing_data;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005008
5009 /* nothing left to forward */
5010 if (txn->flags & TX_RES_TE_CHNK)
5011 msg->msg_state = HTTP_MSG_DATA_CRLF;
5012 else
5013 msg->msg_state = HTTP_MSG_DONE;
5014 }
5015 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005016 /* read the chunk size and assign it to ->hdr_content_len, then
5017 * set ->sov to point to the body and switch to DATA or TRAILERS state.
5018 */
5019 int ret = http_parse_chunk_size(res, msg);
5020
5021 if (!ret)
5022 goto missing_data;
5023 else if (ret < 0)
5024 goto return_bad_res;
5025 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005026 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005027 else if (msg->msg_state == HTTP_MSG_DATA_CRLF) {
5028 /* we want the CRLF after the data */
5029 int ret;
5030
Willy Tarreaud3347ee2010-01-04 02:02:25 +01005031 res->lr = res->w + res->send_max;
5032 if (res->lr >= res->data + res->size)
5033 res->lr -= res->size;
5034
Willy Tarreaud98cf932009-12-27 22:54:55 +01005035 ret = http_skip_chunk_crlf(res, msg);
5036
5037 if (!ret)
5038 goto missing_data;
5039 else if (ret < 0)
5040 goto return_bad_res;
5041 /* we're in MSG_CHUNK_SIZE now */
5042 }
5043 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
5044 int ret = http_forward_trailers(res, msg);
Willy Tarreau5523b322009-12-29 12:05:52 +01005045
Willy Tarreaud98cf932009-12-27 22:54:55 +01005046 if (ret == 0)
5047 goto missing_data;
5048 else if (ret < 0)
5049 goto return_bad_res;
5050 /* we're in HTTP_MSG_DONE now */
5051 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005052 else {
5053 /* other states, DONE...TUNNEL */
5054 if (http_resync_states(s)) {
5055 http_silent_debug(__LINE__, s);
5056 /* some state changes occurred, maybe the analyser
5057 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01005058 */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005059 if (unlikely(msg->msg_state == HTTP_MSG_ERROR))
5060 goto return_bad_res;
5061 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01005062 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005063 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005064 }
5065 }
5066
Willy Tarreaud98cf932009-12-27 22:54:55 +01005067 missing_data:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005068 /* stop waiting for data if the input is closed before the end */
5069 if (res->flags & BF_SHUTR)
5070 goto return_bad_res;
5071
Willy Tarreau610ecce2010-01-04 21:15:02 +01005072 if (!s->req->analysers)
5073 goto return_bad_res;
5074
Willy Tarreaud98cf932009-12-27 22:54:55 +01005075 /* forward the chunk size as well as any pending data */
5076 if (msg->hdr_content_len || msg->som != msg->sov) {
5077 buffer_forward(res, msg->sov - msg->som + msg->hdr_content_len);
5078 msg->hdr_content_len = 0; /* don't forward that again */
5079 msg->som = msg->sov;
5080 }
5081
Willy Tarreaud98cf932009-12-27 22:54:55 +01005082 /* the session handler will take care of timeouts and errors */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005083 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005084 return 0;
5085
5086 return_bad_res: /* let's centralize all bad resuests */
5087 txn->rsp.msg_state = HTTP_MSG_ERROR;
5088 txn->status = 502;
Willy Tarreau148d0992010-01-10 10:21:21 +01005089 /* don't send any error message as we're in the body */
5090 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005091 res->analysers = 0;
5092 s->be->counters.failed_resp++;
5093 if (s->srv) {
5094 s->srv->counters.failed_resp++;
5095 health_adjust(s->srv, HANA_STATUS_HTTP_HDRRSP);
5096 }
5097
5098 if (!(s->flags & SN_ERR_MASK))
5099 s->flags |= SN_ERR_PRXCOND;
5100 if (!(s->flags & SN_FINST_MASK))
5101 s->flags |= SN_FINST_R;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005102 http_silent_debug(__LINE__, s);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005103 return 0;
5104}
5105
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005106/* Iterate the same filter through all request headers.
5107 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005108 * Since it can manage the switch to another backend, it updates the per-proxy
5109 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005110 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005111int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005112{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005113 char term;
5114 char *cur_ptr, *cur_end, *cur_next;
5115 int cur_idx, old_idx, last_hdr;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005116 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005117 struct hdr_idx_elem *cur_hdr;
5118 int len, delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01005119
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005120 last_hdr = 0;
5121
Willy Tarreau962c3f42010-01-10 00:15:35 +01005122 cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005123 old_idx = 0;
5124
5125 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005126 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005127 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005128 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005129 (exp->action == ACT_ALLOW ||
5130 exp->action == ACT_DENY ||
5131 exp->action == ACT_TARPIT))
5132 return 0;
5133
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005134 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005135 if (!cur_idx)
5136 break;
5137
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005138 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005139 cur_ptr = cur_next;
5140 cur_end = cur_ptr + cur_hdr->len;
5141 cur_next = cur_end + cur_hdr->cr + 1;
5142
5143 /* Now we have one header between cur_ptr and cur_end,
5144 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005145 */
5146
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005147 /* The annoying part is that pattern matching needs
5148 * that we modify the contents to null-terminate all
5149 * strings before testing them.
5150 */
5151
5152 term = *cur_end;
5153 *cur_end = '\0';
5154
5155 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5156 switch (exp->action) {
5157 case ACT_SETBE:
5158 /* It is not possible to jump a second time.
5159 * FIXME: should we return an HTTP/500 here so that
5160 * the admin knows there's a problem ?
5161 */
5162 if (t->be != t->fe)
5163 break;
5164
5165 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005166 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005167 last_hdr = 1;
5168 break;
5169
5170 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005171 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005172 last_hdr = 1;
5173 break;
5174
5175 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005176 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005177 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005178
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02005179 t->be->counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005180 if (t->listener->counters)
5181 t->listener->counters->denied_resp++;
5182
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005183 break;
5184
5185 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005186 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005187 last_hdr = 1;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005188
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02005189 t->be->counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005190 if (t->listener->counters)
5191 t->listener->counters->denied_resp++;
5192
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005193 break;
5194
5195 case ACT_REPLACE:
5196 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5197 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5198 /* FIXME: if the user adds a newline in the replacement, the
5199 * index will not be recalculated for now, and the new line
5200 * will not be counted as a new header.
5201 */
5202
5203 cur_end += delta;
5204 cur_next += delta;
5205 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005206 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005207 break;
5208
5209 case ACT_REMOVE:
5210 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
5211 cur_next += delta;
5212
Willy Tarreaufa355d42009-11-29 18:12:29 +01005213 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005214 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5215 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005216 cur_hdr->len = 0;
5217 cur_end = NULL; /* null-term has been rewritten */
5218 break;
5219
5220 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005221 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005222 if (cur_end)
5223 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005224
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005225 /* keep the link from this header to next one in case of later
5226 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005227 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005228 old_idx = cur_idx;
5229 }
5230 return 0;
5231}
5232
5233
5234/* Apply the filter to the request line.
5235 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5236 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005237 * Since it can manage the switch to another backend, it updates the per-proxy
5238 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005239 */
5240int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp)
5241{
5242 char term;
5243 char *cur_ptr, *cur_end;
5244 int done;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005245 struct http_txn *txn = &t->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005246 int len, delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005247
Willy Tarreau58f10d72006-12-04 02:26:12 +01005248
Willy Tarreau3d300592007-03-18 18:34:41 +01005249 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005250 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005251 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005252 (exp->action == ACT_ALLOW ||
5253 exp->action == ACT_DENY ||
5254 exp->action == ACT_TARPIT))
5255 return 0;
5256 else if (exp->action == ACT_REMOVE)
5257 return 0;
5258
5259 done = 0;
5260
Willy Tarreau962c3f42010-01-10 00:15:35 +01005261 cur_ptr = txn->req.sol;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005262 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005263
5264 /* Now we have the request line between cur_ptr and cur_end */
5265
5266 /* The annoying part is that pattern matching needs
5267 * that we modify the contents to null-terminate all
5268 * strings before testing them.
5269 */
5270
5271 term = *cur_end;
5272 *cur_end = '\0';
5273
5274 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5275 switch (exp->action) {
5276 case ACT_SETBE:
5277 /* It is not possible to jump a second time.
5278 * FIXME: should we return an HTTP/500 here so that
5279 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01005280 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005281 if (t->be != t->fe)
5282 break;
5283
5284 /* Swithing Proxy */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02005285 session_set_backend(t, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005286 done = 1;
5287 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005288
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005289 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005290 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005291 done = 1;
5292 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005293
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005294 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005295 txn->flags |= TX_CLDENY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005296
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02005297 t->be->counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005298 if (t->listener->counters)
5299 t->listener->counters->denied_resp++;
5300
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005301 done = 1;
5302 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005303
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005304 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005305 txn->flags |= TX_CLTARPIT;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005306
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02005307 t->be->counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005308 if (t->listener->counters)
5309 t->listener->counters->denied_resp++;
5310
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005311 done = 1;
5312 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005313
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005314 case ACT_REPLACE:
5315 *cur_end = term; /* restore the string terminator */
5316 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5317 delta = buffer_replace2(req, cur_ptr, cur_end, trash, len);
5318 /* FIXME: if the user adds a newline in the replacement, the
5319 * index will not be recalculated for now, and the new line
5320 * will not be counted as a new header.
5321 */
Willy Tarreaua496b602006-12-17 23:15:24 +01005322
Willy Tarreaufa355d42009-11-29 18:12:29 +01005323 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005324 cur_end += delta;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005325 cur_end = (char *)http_parse_reqline(&txn->req, req->data,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005326 HTTP_MSG_RQMETH,
5327 cur_ptr, cur_end + 1,
5328 NULL, NULL);
5329 if (unlikely(!cur_end))
5330 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01005331
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005332 /* we have a full request and we know that we have either a CR
5333 * or an LF at <ptr>.
5334 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005335 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
5336 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005337 /* there is no point trying this regex on headers */
5338 return 1;
5339 }
5340 }
5341 *cur_end = term; /* restore the string terminator */
5342 return done;
5343}
Willy Tarreau97de6242006-12-27 17:18:38 +01005344
Willy Tarreau58f10d72006-12-04 02:26:12 +01005345
Willy Tarreau58f10d72006-12-04 02:26:12 +01005346
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005347/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01005348 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005349 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01005350 * unparsable request. Since it can manage the switch to another backend, it
5351 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005352 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005353int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005354{
Willy Tarreau6c123b12010-01-28 20:22:06 +01005355 struct http_txn *txn = &s->txn;
5356 struct hdr_exp *exp;
5357
5358 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005359 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005360
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005361 /*
5362 * The interleaving of transformations and verdicts
5363 * makes it difficult to decide to continue or stop
5364 * the evaluation.
5365 */
5366
Willy Tarreau6c123b12010-01-28 20:22:06 +01005367 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
5368 break;
5369
Willy Tarreau3d300592007-03-18 18:34:41 +01005370 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005371 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01005372 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005373 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005374
5375 /* if this filter had a condition, evaluate it now and skip to
5376 * next filter if the condition does not match.
5377 */
5378 if (exp->cond) {
5379 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_REQ);
5380 ret = acl_pass(ret);
5381 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
5382 ret = !ret;
5383
5384 if (!ret)
5385 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005386 }
5387
5388 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005389 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005390 if (unlikely(ret < 0))
5391 return -1;
5392
5393 if (likely(ret == 0)) {
5394 /* The filter did not match the request, it can be
5395 * iterated through all headers.
5396 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005397 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005398 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005399 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005400 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005401}
5402
5403
Willy Tarreaua15645d2007-03-18 16:22:39 +01005404
Willy Tarreau58f10d72006-12-04 02:26:12 +01005405/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005406 * Try to retrieve the server associated to the appsession.
5407 * If the server is found, it's assigned to the session.
5408 */
Cyril Bontéb21570a2009-11-29 20:04:48 +01005409void manage_client_side_appsession(struct session *t, const char *buf, int len) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005410 struct http_txn *txn = &t->txn;
5411 appsess *asession = NULL;
5412 char *sessid_temp = NULL;
5413
Cyril Bontéb21570a2009-11-29 20:04:48 +01005414 if (len > t->be->appsession_len) {
5415 len = t->be->appsession_len;
5416 }
5417
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005418 if (t->be->options2 & PR_O2_AS_REQL) {
5419 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005420 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005421 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005422 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005423 }
5424
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005425 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005426 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
5427 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
5428 return;
5429 }
5430
Willy Tarreaua3377ee2010-01-10 10:49:11 +01005431 memcpy(txn->sessid, buf, len);
5432 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005433 }
5434
5435 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
5436 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
5437 send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
5438 return;
5439 }
5440
Cyril Bontéb21570a2009-11-29 20:04:48 +01005441 memcpy(sessid_temp, buf, len);
5442 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005443
5444 asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp);
5445 /* free previously allocated memory */
5446 pool_free2(apools.sessid, sessid_temp);
5447
5448 if (asession != NULL) {
5449 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
5450 if (!(t->be->options2 & PR_O2_AS_REQL))
5451 asession->request_count++;
5452
5453 if (asession->serverid != NULL) {
5454 struct server *srv = t->be->srv;
5455 while (srv) {
5456 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01005457 if ((srv->state & SRV_RUNNING) ||
5458 (t->be->options & PR_O_PERSIST) ||
5459 (t->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005460 /* we found the server and it's usable */
5461 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01005462 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005463 t->flags |= SN_DIRECT | SN_ASSIGNED;
5464 t->srv = srv;
5465 break;
5466 } else {
5467 txn->flags &= ~TX_CK_MASK;
5468 txn->flags |= TX_CK_DOWN;
5469 }
5470 }
5471 srv = srv->next;
5472 }
5473 }
5474 }
5475}
5476
5477/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01005478 * Manage client-side cookie. It can impact performance by about 2% so it is
5479 * desirable to call it only when needed.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005480 */
5481void manage_client_side_cookies(struct session *t, struct buffer *req)
5482{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005483 struct http_txn *txn = &t->txn;
Willy Tarreau305ae852010-01-03 19:45:54 +01005484 char *p1, *p2, *p3, *p4, *p5;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005485 char *del_colon, *del_cookie, *colon;
5486 int app_cookies;
5487
Willy Tarreau58f10d72006-12-04 02:26:12 +01005488 char *cur_ptr, *cur_end, *cur_next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005489 int cur_idx, old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005490
Willy Tarreau2a324282006-12-05 00:05:46 +01005491 /* Iterate through the headers.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005492 * we start with the start line.
5493 */
Willy Tarreau83969f42007-01-22 08:55:47 +01005494 old_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01005495 cur_next = txn->req.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005496
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005497 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005498 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005499 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005500
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005501 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau58f10d72006-12-04 02:26:12 +01005502 cur_ptr = cur_next;
5503 cur_end = cur_ptr + cur_hdr->len;
5504 cur_next = cur_end + cur_hdr->cr + 1;
5505
5506 /* We have one full header between cur_ptr and cur_end, and the
5507 * next header starts at cur_next. We're only interested in
5508 * "Cookie:" headers.
5509 */
5510
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005511 val = http_header_match2(cur_ptr, cur_end, "Cookie", 6);
5512 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005513 old_idx = cur_idx;
5514 continue;
5515 }
5516
5517 /* Now look for cookies. Conforming to RFC2109, we have to support
5518 * attributes whose name begin with a '$', and associate them with
5519 * the right cookie, if we want to delete this cookie.
5520 * So there are 3 cases for each cookie read :
5521 * 1) it's a special attribute, beginning with a '$' : ignore it.
5522 * 2) it's a server id cookie that we *MAY* want to delete : save
5523 * some pointers on it (last semi-colon, beginning of cookie...)
5524 * 3) it's an application cookie : we *MAY* have to delete a previous
5525 * "special" cookie.
5526 * At the end of loop, if a "special" cookie remains, we may have to
5527 * remove it. If no application cookie persists in the header, we
5528 * *MUST* delete it
5529 */
5530
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005531 colon = p1 = cur_ptr + val; /* first non-space char after 'Cookie:' */
Willy Tarreau58f10d72006-12-04 02:26:12 +01005532
Willy Tarreau58f10d72006-12-04 02:26:12 +01005533 /* del_cookie == NULL => nothing to be deleted */
5534 del_colon = del_cookie = NULL;
5535 app_cookies = 0;
5536
5537 while (p1 < cur_end) {
5538 /* skip spaces and colons, but keep an eye on these ones */
Willy Tarreau305ae852010-01-03 19:45:54 +01005539 resync_name:
Willy Tarreau58f10d72006-12-04 02:26:12 +01005540 while (p1 < cur_end) {
5541 if (*p1 == ';' || *p1 == ',')
5542 colon = p1;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02005543 else if (!isspace((unsigned char)*p1))
Willy Tarreau58f10d72006-12-04 02:26:12 +01005544 break;
5545 p1++;
5546 }
5547
5548 if (p1 == cur_end)
5549 break;
5550
5551 /* p1 is at the beginning of the cookie name */
5552 p2 = p1;
Willy Tarreau305ae852010-01-03 19:45:54 +01005553 while (p2 < cur_end && *p2 != '=') {
5554 if (*p2 == ',' || *p2 == ';' || isspace((unsigned char)*p2)) {
5555 /* oops, the cookie name was truncated, resync */
5556 p1 = p2;
5557 goto resync_name;
5558 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005559 p2++;
Willy Tarreau305ae852010-01-03 19:45:54 +01005560 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005561
5562 if (p2 == cur_end)
5563 break;
5564
5565 p3 = p2 + 1; /* skips the '=' sign */
5566 if (p3 == cur_end)
5567 break;
5568
Willy Tarreau305ae852010-01-03 19:45:54 +01005569 /* parse the value, stripping leading and trailing spaces but keeping insiders. */
5570 p5 = p4 = p3;
5571 while (p5 < cur_end && *p5 != ';' && *p5 != ',') {
5572 if (!isspace((unsigned char)*p5))
5573 p4 = p5 + 1;
5574 p5++;
5575 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005576
5577 /* here, we have the cookie name between p1 and p2,
5578 * and its value between p3 and p4.
5579 * we can process it :
5580 *
Willy Tarreau305ae852010-01-03 19:45:54 +01005581 * Cookie: NAME=VALUE ;
5582 * | || || |+-> p5
Willy Tarreau58f10d72006-12-04 02:26:12 +01005583 * | || || +--> p4
5584 * | || |+-------> p3
5585 * | || +--------> p2
5586 * | |+------------> p1
5587 * | +-------------> colon
5588 * +--------------------> cur_ptr
5589 */
5590
5591 if (*p1 == '$') {
5592 /* skip this one */
5593 }
5594 else {
5595 /* first, let's see if we want to capture it */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005596 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01005597 txn->cli_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005598 (p4 - p1 >= t->fe->capture_namelen) &&
5599 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005600 int log_len = p4 - p1;
5601
Willy Tarreau086b3b42007-05-13 21:45:51 +02005602 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005603 Alert("HTTP logging : out of memory.\n");
5604 } else {
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005605 if (log_len > t->fe->capture_len)
5606 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01005607 memcpy(txn->cli_cookie, p1, log_len);
5608 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005609 }
5610 }
5611
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005612 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
5613 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005614 /* Cool... it's the right one */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005615 struct server *srv = t->be->srv;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005616 char *delim;
5617
5618 /* if we're in cookie prefix mode, we'll search the delimitor so that we
5619 * have the server ID betweek p3 and delim, and the original cookie between
5620 * delim+1 and p4. Otherwise, delim==p4 :
5621 *
Willy Tarreau305ae852010-01-03 19:45:54 +01005622 * Cookie: NAME=SRV~VALUE ;
5623 * | || || | |+-> p5
Willy Tarreau58f10d72006-12-04 02:26:12 +01005624 * | || || | +--> p4
5625 * | || || +--------> delim
5626 * | || |+-----------> p3
5627 * | || +------------> p2
5628 * | |+----------------> p1
5629 * | +-----------------> colon
5630 * +------------------------> cur_ptr
5631 */
5632
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005633 if (t->be->options & PR_O_COOK_PFX) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005634 for (delim = p3; delim < p4; delim++)
5635 if (*delim == COOKIE_DELIM)
5636 break;
5637 }
5638 else
5639 delim = p4;
5640
5641
5642 /* Here, we'll look for the first running server which supports the cookie.
5643 * This allows to share a same cookie between several servers, for example
5644 * to dedicate backup servers to specific servers only.
5645 * However, to prevent clients from sticking to cookie-less backup server
5646 * when they have incidentely learned an empty cookie, we simply ignore
5647 * empty cookies and mark them as invalid.
5648 */
5649 if (delim == p3)
5650 srv = NULL;
5651
5652 while (srv) {
Willy Tarreau92f2ab12007-02-02 22:14:47 +01005653 if (srv->cookie && (srv->cklen == delim - p3) &&
5654 !memcmp(p3, srv->cookie, delim - p3)) {
Willy Tarreau4de91492010-01-22 19:10:05 +01005655 if ((srv->state & SRV_RUNNING) ||
5656 (t->be->options & PR_O_PERSIST) ||
5657 (t->flags & SN_FORCE_PRST)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005658 /* we found the server and it's usable */
Willy Tarreau3d300592007-03-18 18:34:41 +01005659 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01005660 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreau3d300592007-03-18 18:34:41 +01005661 t->flags |= SN_DIRECT | SN_ASSIGNED;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005662 t->srv = srv;
5663 break;
5664 } else {
5665 /* we found a server, but it's down */
Willy Tarreau3d300592007-03-18 18:34:41 +01005666 txn->flags &= ~TX_CK_MASK;
5667 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005668 }
5669 }
5670 srv = srv->next;
5671 }
5672
Willy Tarreau3d300592007-03-18 18:34:41 +01005673 if (!srv && !(txn->flags & TX_CK_DOWN)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005674 /* no server matched this cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +01005675 txn->flags &= ~TX_CK_MASK;
5676 txn->flags |= TX_CK_INVALID;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005677 }
5678
5679 /* depending on the cookie mode, we may have to either :
5680 * - delete the complete cookie if we're in insert+indirect mode, so that
5681 * the server never sees it ;
5682 * - remove the server id from the cookie value, and tag the cookie as an
5683 * application cookie so that it does not get accidentely removed later,
5684 * if we're in cookie prefix mode
5685 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005686 if ((t->be->options & PR_O_COOK_PFX) && (delim != p4)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005687 int delta; /* negative */
5688
5689 delta = buffer_replace2(req, p3, delim + 1, NULL, 0);
5690 p4 += delta;
Willy Tarreau305ae852010-01-03 19:45:54 +01005691 p5 += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005692 cur_end += delta;
5693 cur_next += delta;
5694 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005695 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005696
5697 del_cookie = del_colon = NULL;
5698 app_cookies++; /* protect the header from deletion */
5699 }
5700 else if (del_cookie == NULL &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02005701 (t->be->options & (PR_O_COOK_INS | PR_O_COOK_IND)) == (PR_O_COOK_INS | PR_O_COOK_IND)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005702 del_cookie = p1;
5703 del_colon = colon;
5704 }
5705 } else {
5706 /* now we know that we must keep this cookie since it's
5707 * not ours. But if we wanted to delete our cookie
5708 * earlier, we cannot remove the complete header, but we
5709 * can remove the previous block itself.
5710 */
5711 app_cookies++;
5712
5713 if (del_cookie != NULL) {
5714 int delta; /* negative */
5715
5716 delta = buffer_replace2(req, del_cookie, p1, NULL, 0);
5717 p4 += delta;
Willy Tarreau305ae852010-01-03 19:45:54 +01005718 p5 += delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005719 cur_end += delta;
5720 cur_next += delta;
5721 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005722 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005723 del_cookie = del_colon = NULL;
5724 }
5725 }
5726
Cyril Bontéb21570a2009-11-29 20:04:48 +01005727 if (t->be->appsession_name != NULL) {
5728 int cmp_len, value_len;
5729 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005730
Cyril Bontéb21570a2009-11-29 20:04:48 +01005731 if (t->be->options2 & PR_O2_AS_PFX) {
5732 cmp_len = MIN(p4 - p1, t->be->appsession_name_len);
5733 value_begin = p1 + t->be->appsession_name_len;
5734 value_len = p4 - p1 - t->be->appsession_name_len;
5735 } else {
5736 cmp_len = p2 - p1;
5737 value_begin = p3;
5738 value_len = p4 - p3;
5739 }
5740
5741 /* let's see if the cookie is our appcookie */
5742 if (memcmp(p1, t->be->appsession_name, cmp_len) == 0) {
5743 /* Cool... it's the right one */
5744 manage_client_side_appsession(t, value_begin, value_len);
5745 }
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02005746#if defined(DEBUG_HASH)
5747 Alert("manage_client_side_cookies\n");
5748 appsession_hash_dump(&(t->be->htbl_proxy));
5749#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01005750 }/* end if ((t->proxy->appsession_name != NULL) ... */
5751 }
5752
5753 /* we'll have to look for another cookie ... */
Willy Tarreau305ae852010-01-03 19:45:54 +01005754 p1 = p5;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005755 } /* while (p1 < cur_end) */
5756
5757 /* There's no more cookie on this line.
5758 * We may have marked the last one(s) for deletion.
5759 * We must do this now in two ways :
5760 * - if there is no app cookie, we simply delete the header ;
5761 * - if there are app cookies, we must delete the end of the
5762 * string properly, including the colon/semi-colon before
5763 * the cookie name.
5764 */
5765 if (del_cookie != NULL) {
5766 int delta;
5767 if (app_cookies) {
5768 delta = buffer_replace2(req, del_colon, cur_end, NULL, 0);
5769 cur_end = del_colon;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005770 cur_hdr->len += delta;
5771 } else {
5772 delta = buffer_replace2(req, cur_ptr, cur_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005773
5774 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005775 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5776 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005777 cur_hdr->len = 0;
5778 }
Willy Tarreau45e73e32006-12-17 00:05:15 +01005779 cur_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005780 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005781 }
5782
5783 /* keep the link from this header to next one */
5784 old_idx = cur_idx;
5785 } /* end of cookie processing on this header */
5786}
5787
5788
Willy Tarreaua15645d2007-03-18 16:22:39 +01005789/* Iterate the same filter through all response headers contained in <rtr>.
5790 * Returns 1 if this filter can be stopped upon return, otherwise 0.
5791 */
5792int apply_filter_to_resp_headers(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
5793{
5794 char term;
5795 char *cur_ptr, *cur_end, *cur_next;
5796 int cur_idx, old_idx, last_hdr;
5797 struct http_txn *txn = &t->txn;
5798 struct hdr_idx_elem *cur_hdr;
5799 int len, delta;
5800
5801 last_hdr = 0;
5802
Willy Tarreau962c3f42010-01-10 00:15:35 +01005803 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005804 old_idx = 0;
5805
5806 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005807 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01005808 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005809 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01005810 (exp->action == ACT_ALLOW ||
5811 exp->action == ACT_DENY))
5812 return 0;
5813
5814 cur_idx = txn->hdr_idx.v[old_idx].next;
5815 if (!cur_idx)
5816 break;
5817
5818 cur_hdr = &txn->hdr_idx.v[cur_idx];
5819 cur_ptr = cur_next;
5820 cur_end = cur_ptr + cur_hdr->len;
5821 cur_next = cur_end + cur_hdr->cr + 1;
5822
5823 /* Now we have one header between cur_ptr and cur_end,
5824 * and the next header starts at cur_next.
5825 */
5826
5827 /* The annoying part is that pattern matching needs
5828 * that we modify the contents to null-terminate all
5829 * strings before testing them.
5830 */
5831
5832 term = *cur_end;
5833 *cur_end = '\0';
5834
5835 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5836 switch (exp->action) {
5837 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005838 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005839 last_hdr = 1;
5840 break;
5841
5842 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005843 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005844 last_hdr = 1;
5845 break;
5846
5847 case ACT_REPLACE:
5848 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5849 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
5850 /* FIXME: if the user adds a newline in the replacement, the
5851 * index will not be recalculated for now, and the new line
5852 * will not be counted as a new header.
5853 */
5854
5855 cur_end += delta;
5856 cur_next += delta;
5857 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005858 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005859 break;
5860
5861 case ACT_REMOVE:
5862 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
5863 cur_next += delta;
5864
Willy Tarreaufa355d42009-11-29 18:12:29 +01005865 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005866 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5867 txn->hdr_idx.used--;
5868 cur_hdr->len = 0;
5869 cur_end = NULL; /* null-term has been rewritten */
5870 break;
5871
5872 }
5873 }
5874 if (cur_end)
5875 *cur_end = term; /* restore the string terminator */
5876
5877 /* keep the link from this header to next one in case of later
5878 * removal of next header.
5879 */
5880 old_idx = cur_idx;
5881 }
5882 return 0;
5883}
5884
5885
5886/* Apply the filter to the status line in the response buffer <rtr>.
5887 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5888 * or -1 if a replacement resulted in an invalid status line.
5889 */
5890int apply_filter_to_sts_line(struct session *t, struct buffer *rtr, struct hdr_exp *exp)
5891{
5892 char term;
5893 char *cur_ptr, *cur_end;
5894 int done;
5895 struct http_txn *txn = &t->txn;
5896 int len, delta;
5897
5898
Willy Tarreau3d300592007-03-18 18:34:41 +01005899 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01005900 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005901 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01005902 (exp->action == ACT_ALLOW ||
5903 exp->action == ACT_DENY))
5904 return 0;
5905 else if (exp->action == ACT_REMOVE)
5906 return 0;
5907
5908 done = 0;
5909
Willy Tarreau962c3f42010-01-10 00:15:35 +01005910 cur_ptr = txn->rsp.sol;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005911 cur_end = cur_ptr + txn->rsp.sl.rq.l;
5912
5913 /* Now we have the status line between cur_ptr and cur_end */
5914
5915 /* The annoying part is that pattern matching needs
5916 * that we modify the contents to null-terminate all
5917 * strings before testing them.
5918 */
5919
5920 term = *cur_end;
5921 *cur_end = '\0';
5922
5923 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
5924 switch (exp->action) {
5925 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005926 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005927 done = 1;
5928 break;
5929
5930 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005931 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005932 done = 1;
5933 break;
5934
5935 case ACT_REPLACE:
5936 *cur_end = term; /* restore the string terminator */
5937 len = exp_replace(trash, cur_ptr, exp->replace, pmatch);
5938 delta = buffer_replace2(rtr, cur_ptr, cur_end, trash, len);
5939 /* FIXME: if the user adds a newline in the replacement, the
5940 * index will not be recalculated for now, and the new line
5941 * will not be counted as a new header.
5942 */
5943
Willy Tarreaufa355d42009-11-29 18:12:29 +01005944 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005945 cur_end += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005946 cur_end = (char *)http_parse_stsline(&txn->rsp, rtr->data,
Willy Tarreau02785762007-04-03 14:45:44 +02005947 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01005948 cur_ptr, cur_end + 1,
5949 NULL, NULL);
5950 if (unlikely(!cur_end))
5951 return -1;
5952
5953 /* we have a full respnse and we know that we have either a CR
5954 * or an LF at <ptr>.
5955 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01005956 txn->status = strl2ui(txn->rsp.sol + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005957 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.rq.l, *cur_end == '\r');
5958 /* there is no point trying this regex on headers */
5959 return 1;
5960 }
5961 }
5962 *cur_end = term; /* restore the string terminator */
5963 return done;
5964}
5965
5966
5967
5968/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005969 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005970 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
5971 * unparsable response.
5972 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005973int apply_filters_to_response(struct session *s, struct buffer *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01005974{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005975 struct http_txn *txn = &s->txn;
5976 struct hdr_exp *exp;
5977
5978 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01005979 int ret;
5980
5981 /*
5982 * The interleaving of transformations and verdicts
5983 * makes it difficult to decide to continue or stop
5984 * the evaluation.
5985 */
5986
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005987 if (txn->flags & TX_SVDENY)
5988 break;
5989
Willy Tarreau3d300592007-03-18 18:34:41 +01005990 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01005991 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
5992 exp->action == ACT_PASS)) {
5993 exp = exp->next;
5994 continue;
5995 }
5996
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005997 /* if this filter had a condition, evaluate it now and skip to
5998 * next filter if the condition does not match.
5999 */
6000 if (exp->cond) {
6001 ret = acl_exec_cond(exp->cond, px, s, txn, ACL_DIR_RTR);
6002 ret = acl_pass(ret);
6003 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6004 ret = !ret;
6005 if (!ret)
6006 continue;
6007 }
6008
Willy Tarreaua15645d2007-03-18 16:22:39 +01006009 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006010 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006011 if (unlikely(ret < 0))
6012 return -1;
6013
6014 if (likely(ret == 0)) {
6015 /* The filter did not match the response, it can be
6016 * iterated through all headers.
6017 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006018 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006019 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006020 }
6021 return 0;
6022}
6023
6024
6025
6026/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006027 * Manage server-side cookies. It can impact performance by about 2% so it is
6028 * desirable to call it only when needed.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006029 */
6030void manage_server_side_cookies(struct session *t, struct buffer *rtr)
6031{
6032 struct http_txn *txn = &t->txn;
6033 char *p1, *p2, *p3, *p4;
6034
Willy Tarreaua15645d2007-03-18 16:22:39 +01006035 char *cur_ptr, *cur_end, *cur_next;
6036 int cur_idx, old_idx, delta;
6037
Willy Tarreaua15645d2007-03-18 16:22:39 +01006038 /* Iterate through the headers.
6039 * we start with the start line.
6040 */
6041 old_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006042 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006043
6044 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
6045 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006046 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006047
6048 cur_hdr = &txn->hdr_idx.v[cur_idx];
6049 cur_ptr = cur_next;
6050 cur_end = cur_ptr + cur_hdr->len;
6051 cur_next = cur_end + cur_hdr->cr + 1;
6052
6053 /* We have one full header between cur_ptr and cur_end, and the
6054 * next header starts at cur_next. We're only interested in
6055 * "Cookie:" headers.
6056 */
6057
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006058 val = http_header_match2(cur_ptr, cur_end, "Set-Cookie", 10);
6059 if (!val) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006060 old_idx = cur_idx;
6061 continue;
6062 }
6063
6064 /* OK, right now we know we have a set-cookie at cur_ptr */
Willy Tarreau3d300592007-03-18 18:34:41 +01006065 txn->flags |= TX_SCK_ANY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006066
6067
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006068 /* maybe we only wanted to see if there was a set-cookie. Note that
6069 * the cookie capture is declared in the fronend.
6070 */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006071 if (t->be->cookie_name == NULL &&
6072 t->be->appsession_name == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006073 t->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006074 return;
6075
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006076 p1 = cur_ptr + val; /* first non-space char after 'Set-Cookie:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006077
6078 while (p1 < cur_end) { /* in fact, we'll break after the first cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006079 if (p1 == cur_end || *p1 == ';') /* end of cookie */
6080 break;
6081
6082 /* p1 is at the beginning of the cookie name */
6083 p2 = p1;
6084
6085 while (p2 < cur_end && *p2 != '=' && *p2 != ';')
6086 p2++;
6087
6088 if (p2 == cur_end || *p2 == ';') /* next cookie */
6089 break;
6090
6091 p3 = p2 + 1; /* skip the '=' sign */
6092 if (p3 == cur_end)
6093 break;
6094
6095 p4 = p3;
Willy Tarreau8f8e6452007-06-17 21:51:38 +02006096 while (p4 < cur_end && !isspace((unsigned char)*p4) && *p4 != ';')
Willy Tarreaua15645d2007-03-18 16:22:39 +01006097 p4++;
6098
6099 /* here, we have the cookie name between p1 and p2,
6100 * and its value between p3 and p4.
6101 * we can process it.
6102 */
6103
6104 /* first, let's see if we want to capture it */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006105 if (t->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01006106 txn->srv_cookie == NULL &&
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006107 (p4 - p1 >= t->fe->capture_namelen) &&
6108 memcmp(p1, t->fe->capture_name, t->fe->capture_namelen) == 0) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006109 int log_len = p4 - p1;
6110
Willy Tarreau086b3b42007-05-13 21:45:51 +02006111 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006112 Alert("HTTP logging : out of memory.\n");
6113 }
6114
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006115 if (log_len > t->fe->capture_len)
6116 log_len = t->fe->capture_len;
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01006117 memcpy(txn->srv_cookie, p1, log_len);
6118 txn->srv_cookie[log_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006119 }
6120
6121 /* now check if we need to process it for persistence */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006122 if ((p2 - p1 == t->be->cookie_len) && (t->be->cookie_name != NULL) &&
6123 (memcmp(p1, t->be->cookie_name, p2 - p1) == 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006124 /* Cool... it's the right one */
Willy Tarreau3d300592007-03-18 18:34:41 +01006125 txn->flags |= TX_SCK_SEEN;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006126
6127 /* If the cookie is in insert mode on a known server, we'll delete
6128 * this occurrence because we'll insert another one later.
6129 * We'll delete it too if the "indirect" option is set and we're in
6130 * a direct access. */
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006131 if (((t->srv) && (t->be->options & PR_O_COOK_INS)) ||
6132 ((t->flags & SN_DIRECT) && (t->be->options & PR_O_COOK_IND))) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006133 /* this header must be deleted */
6134 delta = buffer_replace2(rtr, cur_ptr, cur_next, NULL, 0);
6135 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6136 txn->hdr_idx.used--;
6137 cur_hdr->len = 0;
6138 cur_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006139 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006140
Willy Tarreau3d300592007-03-18 18:34:41 +01006141 txn->flags |= TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006142 }
6143 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006144 (t->be->options & PR_O_COOK_RW)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006145 /* replace bytes p3->p4 with the cookie name associated
6146 * with this server since we know it.
6147 */
6148 delta = buffer_replace2(rtr, p3, p4, t->srv->cookie, t->srv->cklen);
6149 cur_hdr->len += delta;
6150 cur_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006151 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006152
Willy Tarreau3d300592007-03-18 18:34:41 +01006153 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006154 }
6155 else if ((t->srv) && (t->srv->cookie) &&
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006156 (t->be->options & PR_O_COOK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006157 /* insert the cookie name associated with this server
6158 * before existing cookie, and insert a delimitor between them..
6159 */
6160 delta = buffer_replace2(rtr, p3, p3, t->srv->cookie, t->srv->cklen + 1);
6161 cur_hdr->len += delta;
6162 cur_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006163 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006164
6165 p3[t->srv->cklen] = COOKIE_DELIM;
Willy Tarreau3d300592007-03-18 18:34:41 +01006166 txn->flags |= TX_SCK_INSERTED | TX_SCK_DELETED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006167 }
6168 }
6169 /* next, let's see if the cookie is our appcookie */
Cyril Bontéb21570a2009-11-29 20:04:48 +01006170 else if (t->be->appsession_name != NULL) {
6171 int cmp_len, value_len;
6172 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006173
Cyril Bontéb21570a2009-11-29 20:04:48 +01006174 if (t->be->options2 & PR_O2_AS_PFX) {
6175 cmp_len = MIN(p4 - p1, t->be->appsession_name_len);
6176 value_begin = p1 + t->be->appsession_name_len;
6177 value_len = MIN(t->be->appsession_len, p4 - p1 - t->be->appsession_name_len);
6178 } else {
6179 cmp_len = p2 - p1;
6180 value_begin = p3;
6181 value_len = MIN(t->be->appsession_len, p4 - p3);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006182 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006183
6184 if (memcmp(p1, t->be->appsession_name, cmp_len) == 0) {
6185 /* Cool... it's the right one */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006186 if (txn->sessid != NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01006187 /* free previously allocated memory as we don't need it anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006188 pool_free2(apools.sessid, txn->sessid);
Cyril Bontéb21570a2009-11-29 20:04:48 +01006189 }
6190 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006191 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01006192 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
6193 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
6194 return;
6195 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006196 memcpy(txn->sessid, value_begin, value_len);
6197 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006198 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01006199 } /* end if ((t->be->appsession_name != NULL) ... */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006200 break; /* we don't want to loop again since there cannot be another cookie on the same line */
6201 } /* we're now at the end of the cookie value */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006202 /* keep the link from this header to next one */
6203 old_idx = cur_idx;
6204 } /* end of cookie processing on this header */
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006205
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006206 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006207 appsess *asession = NULL;
6208 /* only do insert, if lookup fails */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006209 asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006210 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01006211 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006212 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
6213 Alert("Not enough Memory process_srv():asession:calloc().\n");
6214 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
6215 return;
6216 }
6217 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
6218 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
6219 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01006220 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006221 return;
6222 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006223 memcpy(asession->sessid, txn->sessid, t->be->appsession_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006224 asession->sessid[t->be->appsession_len] = 0;
6225
Willy Tarreau1fac7532010-01-09 19:23:06 +01006226 server_id_len = strlen(t->srv->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006227 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
6228 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
6229 send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bonté41689c22010-01-10 00:30:14 +01006230 t->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02006231 return;
6232 }
6233 asession->serverid[0] = '\0';
6234 memcpy(asession->serverid, t->srv->id, server_id_len);
6235
6236 asession->request_count = 0;
6237 appsession_hash_insert(&(t->be->htbl_proxy), asession);
6238 }
6239
6240 asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession);
6241 asession->request_count++;
6242 }
6243
6244#if defined(DEBUG_HASH)
6245 Alert("manage_server_side_cookies\n");
6246 appsession_hash_dump(&(t->be->htbl_proxy));
6247#endif
Willy Tarreaua15645d2007-03-18 16:22:39 +01006248}
6249
6250
6251
6252/*
6253 * Check if response is cacheable or not. Updates t->flags.
6254 */
6255void check_response_for_cacheability(struct session *t, struct buffer *rtr)
6256{
6257 struct http_txn *txn = &t->txn;
6258 char *p1, *p2;
6259
6260 char *cur_ptr, *cur_end, *cur_next;
6261 int cur_idx;
6262
Willy Tarreau5df51872007-11-25 16:20:08 +01006263 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006264 return;
6265
6266 /* Iterate through the headers.
6267 * we start with the start line.
6268 */
6269 cur_idx = 0;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006270 cur_next = txn->rsp.sol + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006271
6272 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
6273 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006274 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006275
6276 cur_hdr = &txn->hdr_idx.v[cur_idx];
6277 cur_ptr = cur_next;
6278 cur_end = cur_ptr + cur_hdr->len;
6279 cur_next = cur_end + cur_hdr->cr + 1;
6280
6281 /* We have one full header between cur_ptr and cur_end, and the
6282 * next header starts at cur_next. We're only interested in
6283 * "Cookie:" headers.
6284 */
6285
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006286 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
6287 if (val) {
6288 if ((cur_end - (cur_ptr + val) >= 8) &&
6289 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
6290 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6291 return;
6292 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006293 }
6294
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006295 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
6296 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006297 continue;
6298
6299 /* OK, right now we know we have a cache-control header at cur_ptr */
6300
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006301 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006302
6303 if (p1 >= cur_end) /* no more info */
6304 continue;
6305
6306 /* p1 is at the beginning of the value */
6307 p2 = p1;
6308
Willy Tarreau8f8e6452007-06-17 21:51:38 +02006309 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006310 p2++;
6311
6312 /* we have a complete value between p1 and p2 */
6313 if (p2 < cur_end && *p2 == '=') {
6314 /* we have something of the form no-cache="set-cookie" */
6315 if ((cur_end - p1 >= 21) &&
6316 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
6317 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01006318 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006319 continue;
6320 }
6321
6322 /* OK, so we know that either p2 points to the end of string or to a comma */
6323 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
6324 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
6325 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
6326 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006327 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006328 return;
6329 }
6330
6331 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006332 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006333 continue;
6334 }
6335 }
6336}
6337
6338
Willy Tarreau58f10d72006-12-04 02:26:12 +01006339/*
6340 * Try to retrieve a known appsession in the URI, then the associated server.
6341 * If the server is found, it's assigned to the session.
6342 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006343void get_srv_from_appsession(struct session *t, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006344{
Cyril Bontéb21570a2009-11-29 20:04:48 +01006345 char *end_params, *first_param, *cur_param, *next_param;
6346 char separator;
6347 int value_len;
6348
6349 int mode = t->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006350
Willy Tarreaue2e27a52007-04-01 00:01:37 +02006351 if (t->be->appsession_name == NULL ||
Cyril Bontéb21570a2009-11-29 20:04:48 +01006352 (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006353 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01006354 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006355
Cyril Bontéb21570a2009-11-29 20:04:48 +01006356 first_param = NULL;
6357 switch (mode) {
6358 case PR_O2_AS_M_PP:
6359 first_param = memchr(begin, ';', len);
6360 break;
6361 case PR_O2_AS_M_QS:
6362 first_param = memchr(begin, '?', len);
6363 break;
6364 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006365
Cyril Bontéb21570a2009-11-29 20:04:48 +01006366 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006367 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01006368 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006369
Cyril Bontéb21570a2009-11-29 20:04:48 +01006370 switch (mode) {
6371 case PR_O2_AS_M_PP:
6372 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
6373 end_params = (char *) begin + len;
6374 }
6375 separator = ';';
6376 break;
6377 case PR_O2_AS_M_QS:
6378 end_params = (char *) begin + len;
6379 separator = '&';
6380 break;
6381 default:
6382 /* unknown mode, shouldn't happen */
6383 return;
6384 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006385
Cyril Bontéb21570a2009-11-29 20:04:48 +01006386 cur_param = next_param = end_params;
6387 while (cur_param > first_param) {
6388 cur_param--;
6389 if ((cur_param[0] == separator) || (cur_param == first_param)) {
6390 /* let's see if this is the appsession parameter */
6391 if ((cur_param + t->be->appsession_name_len + 1 < next_param) &&
6392 ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') &&
6393 (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) {
6394 /* Cool... it's the right one */
6395 cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2);
6396 value_len = MIN(t->be->appsession_len, next_param - cur_param);
6397 if (value_len > 0) {
6398 manage_client_side_appsession(t, cur_param, value_len);
6399 }
6400 break;
6401 }
6402 next_param = cur_param;
6403 }
6404 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006405#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02006406 Alert("get_srv_from_appsession\n");
Willy Tarreau51041c72007-09-09 21:56:53 +02006407 appsession_hash_dump(&(t->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01006408#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01006409}
6410
Willy Tarreaub2513902006-12-17 14:52:38 +01006411/*
Willy Tarreau0214c3a2007-01-07 13:47:30 +01006412 * In a GET or HEAD request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01006413 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01006414 *
Willy Tarreau0214c3a2007-01-07 13:47:30 +01006415 * It is assumed that the request is either a HEAD or GET and that the
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01006416 * t->be->uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01006417 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01006418 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01006419 */
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01006420int stats_check_uri(struct session *t, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01006421{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006422 struct http_txn *txn = &t->txn;
Willy Tarreaub2513902006-12-17 14:52:38 +01006423 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006424 char *h;
Willy Tarreaub2513902006-12-17 14:52:38 +01006425
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01006426 if (!uri_auth)
6427 return 0;
6428
6429 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD)
6430 return 0;
6431
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01006432 memset(&t->data_ctx.stats, 0, sizeof(t->data_ctx.stats));
6433
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006434 /* check URI size */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006435 if (uri_auth->uri_len > txn->req.sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01006436 return 0;
6437
Willy Tarreau962c3f42010-01-10 00:15:35 +01006438 h = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006439
Willy Tarreau0214c3a2007-01-07 13:47:30 +01006440 /* the URI is in h */
6441 if (memcmp(h, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01006442 return 0;
6443
Willy Tarreaue7150cd2007-07-25 14:43:32 +02006444 h += uri_auth->uri_len;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006445 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 3) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02006446 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01006447 t->data_ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02006448 break;
6449 }
6450 h++;
6451 }
6452
6453 if (uri_auth->refresh) {
Willy Tarreau962c3f42010-01-10 00:15:35 +01006454 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
6455 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 10) {
Willy Tarreaue7150cd2007-07-25 14:43:32 +02006456 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01006457 t->data_ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreaue7150cd2007-07-25 14:43:32 +02006458 break;
6459 }
6460 h++;
6461 }
6462 }
6463
Willy Tarreau962c3f42010-01-10 00:15:35 +01006464 h = txn->req.sol + txn->req.sl.rq.u + uri_auth->uri_len;
6465 while (h <= txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l - 4) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02006466 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01006467 t->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau55bb8452007-10-17 18:44:57 +02006468 break;
6469 }
6470 h++;
6471 }
6472
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01006473 t->data_ctx.stats.flags |= STAT_SHOW_STAT | STAT_SHOW_INFO;
6474
Willy Tarreaub2513902006-12-17 14:52:38 +01006475 return 1;
6476}
6477
Willy Tarreau4076a152009-04-02 15:18:36 +02006478/*
6479 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau962c3f42010-01-10 00:15:35 +01006480 * WARNING: it's unlikely that we've reached HTTP_MSG_BODY here so we must not
6481 * assume that msg->sol = buf->data + msg->som.
Willy Tarreau4076a152009-04-02 15:18:36 +02006482 */
6483void http_capture_bad_message(struct error_snapshot *es, struct session *s,
6484 struct buffer *buf, struct http_msg *msg,
6485 struct proxy *other_end)
6486{
Willy Tarreau2df8d712009-05-01 11:33:17 +02006487 es->len = buf->r - (buf->data + msg->som);
6488 memcpy(es->buf, buf->data + msg->som, MIN(es->len, sizeof(es->buf)));
Willy Tarreau4076a152009-04-02 15:18:36 +02006489 if (msg->err_pos >= 0)
Willy Tarreau2df8d712009-05-01 11:33:17 +02006490 es->pos = msg->err_pos - msg->som;
Willy Tarreau4076a152009-04-02 15:18:36 +02006491 else
Willy Tarreau2df8d712009-05-01 11:33:17 +02006492 es->pos = buf->lr - (buf->data + msg->som);
Willy Tarreau4076a152009-04-02 15:18:36 +02006493 es->when = date; // user-visible date
6494 es->sid = s->uniq_id;
6495 es->srv = s->srv;
6496 es->oe = other_end;
6497 es->src = s->cli_addr;
6498}
Willy Tarreaub2513902006-12-17 14:52:38 +01006499
Willy Tarreaubaaee002006-06-26 02:48:02 +02006500/*
Willy Tarreau58f10d72006-12-04 02:26:12 +01006501 * Print a debug line with a header
6502 */
6503void debug_hdr(const char *dir, struct session *t, const char *start, const char *end)
6504{
6505 int len, max;
6506 len = sprintf(trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02006507 dir, (unsigned short)t->req->prod->fd, (unsigned short)t->req->cons->fd);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006508 max = end - start;
6509 UBOUND(max, sizeof(trash) - len - 1);
6510 len += strlcpy2(trash + len, start, max + 1);
6511 trash[len++] = '\n';
6512 write(1, trash, len);
6513}
6514
Willy Tarreau0937bc42009-12-22 15:03:09 +01006515/*
6516 * Initialize a new HTTP transaction for session <s>. It is assumed that all
6517 * the required fields are properly allocated and that we only need to (re)init
6518 * them. This should be used before processing any new request.
6519 */
6520void http_init_txn(struct session *s)
6521{
6522 struct http_txn *txn = &s->txn;
6523 struct proxy *fe = s->fe;
6524
6525 txn->flags = 0;
6526 txn->status = -1;
6527
6528 txn->req.sol = txn->req.eol = NULL;
6529 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
6530 txn->rsp.sol = txn->rsp.eol = NULL;
6531 txn->rsp.som = txn->rsp.eoh = 0; /* relative to the buffer */
6532 txn->req.hdr_content_len = 0LL;
6533 txn->rsp.hdr_content_len = 0LL;
6534 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
6535 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01006536
6537 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01006538
6539 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
6540 if (fe->options2 & PR_O2_REQBUG_OK)
6541 txn->req.err_pos = -1; /* let buggy requests pass */
6542
Willy Tarreau46023632010-01-07 22:51:47 +01006543 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01006544 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
6545
Willy Tarreau46023632010-01-07 22:51:47 +01006546 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01006547 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
6548
6549 if (txn->hdr_idx.v)
6550 hdr_idx_init(&txn->hdr_idx);
6551}
6552
6553/* to be used at the end of a transaction */
6554void http_end_txn(struct session *s)
6555{
6556 struct http_txn *txn = &s->txn;
6557
6558 /* these ones will have been dynamically allocated */
6559 pool_free2(pool2_requri, txn->uri);
6560 pool_free2(pool2_capture, txn->cli_cookie);
6561 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006562 pool_free2(apools.sessid, txn->sessid);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01006563
Willy Tarreaua3377ee2010-01-10 10:49:11 +01006564 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01006565 txn->uri = NULL;
6566 txn->srv_cookie = NULL;
6567 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01006568
6569 if (txn->req.cap) {
6570 struct cap_hdr *h;
6571 for (h = s->fe->req_cap; h; h = h->next)
6572 pool_free2(h->pool, txn->req.cap[h->index]);
6573 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
6574 }
6575
6576 if (txn->rsp.cap) {
6577 struct cap_hdr *h;
6578 for (h = s->fe->rsp_cap; h; h = h->next)
6579 pool_free2(h->pool, txn->rsp.cap[h->index]);
6580 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
6581 }
6582
Willy Tarreau0937bc42009-12-22 15:03:09 +01006583}
6584
6585/* to be used at the end of a transaction to prepare a new one */
6586void http_reset_txn(struct session *s)
6587{
6588 http_end_txn(s);
6589 http_init_txn(s);
6590
6591 s->be = s->fe;
6592 s->req->analysers = s->listener->analysers;
6593 s->logs.logwait = s->fe->to_log;
6594 s->srv = s->prev_srv = s->srv_conn = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01006595 /* re-init store persistence */
6596 s->store_count = 0;
6597
Willy Tarreau0937bc42009-12-22 15:03:09 +01006598 s->pend_pos = NULL;
6599 s->conn_retries = s->be->conn_retries;
6600
6601 s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */
6602
Willy Tarreau739cfba2010-01-25 23:11:14 +01006603 /* We must trim any excess data from the response buffer, because we
6604 * may have blocked an invalid response from a server that we don't
6605 * want to accidentely forward once we disable the analysers, nor do
6606 * we want those data to come along with next response. A typical
6607 * example of such data would be from a buggy server responding to
6608 * a HEAD with some data, or sending more than the advertised
6609 * content-length.
6610 */
6611 if (unlikely(s->rep->l > s->rep->send_max)) {
6612 s->rep->l = s->rep->send_max;
6613 s->rep->r = s->rep->w + s->rep->l;
6614 if (s->rep->r >= s->rep->data + s->rep->size)
6615 s->rep->r -= s->rep->size;
6616 }
6617
Willy Tarreau0937bc42009-12-22 15:03:09 +01006618 s->req->rto = s->fe->timeout.client;
6619 s->req->wto = s->be->timeout.server;
6620 s->req->cto = s->be->timeout.connect;
6621
6622 s->rep->rto = s->be->timeout.server;
6623 s->rep->wto = s->fe->timeout.client;
6624 s->rep->cto = TICK_ETERNITY;
6625
6626 s->req->rex = TICK_ETERNITY;
6627 s->req->wex = TICK_ETERNITY;
6628 s->req->analyse_exp = TICK_ETERNITY;
6629 s->rep->rex = TICK_ETERNITY;
6630 s->rep->wex = TICK_ETERNITY;
6631 s->rep->analyse_exp = TICK_ETERNITY;
6632}
Willy Tarreau58f10d72006-12-04 02:26:12 +01006633
Willy Tarreau8797c062007-05-07 00:55:35 +02006634/************************************************************************/
6635/* The code below is dedicated to ACL parsing and matching */
6636/************************************************************************/
6637
6638
6639
6640
6641/* 1. Check on METHOD
6642 * We use the pre-parsed method if it is known, and store its number as an
6643 * integer. If it is unknown, we use the pointer and the length.
6644 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02006645static int acl_parse_meth(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02006646{
6647 int len, meth;
6648
Willy Tarreauae8b7962007-06-09 23:10:04 +02006649 len = strlen(*text);
6650 meth = find_http_meth(*text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02006651
6652 pattern->val.i = meth;
6653 if (meth == HTTP_METH_OTHER) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02006654 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02006655 if (!pattern->ptr.str)
6656 return 0;
6657 pattern->len = len;
6658 }
6659 return 1;
6660}
6661
Willy Tarreaud41f8d82007-06-10 10:06:18 +02006662static int
Willy Tarreau97be1452007-06-10 11:47:14 +02006663acl_fetch_meth(struct proxy *px, struct session *l4, void *l7, int dir,
6664 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02006665{
6666 int meth;
6667 struct http_txn *txn = l7;
6668
Willy Tarreaub6866442008-07-14 23:54:42 +02006669 if (!txn)
6670 return 0;
6671
Willy Tarreau655dce92009-11-08 13:10:58 +01006672 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006673 return 0;
6674
Willy Tarreau8797c062007-05-07 00:55:35 +02006675 meth = txn->meth;
6676 test->i = meth;
6677 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02006678 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6679 /* ensure the indexes are not affected */
6680 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02006681 test->len = txn->req.sl.rq.m_l;
6682 test->ptr = txn->req.sol;
6683 }
6684 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
6685 return 1;
6686}
6687
6688static int acl_match_meth(struct acl_test *test, struct acl_pattern *pattern)
6689{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02006690 int icase;
6691
Willy Tarreau8797c062007-05-07 00:55:35 +02006692 if (test->i != pattern->val.i)
Willy Tarreau11382812008-07-09 16:18:21 +02006693 return ACL_PAT_FAIL;
Willy Tarreau8797c062007-05-07 00:55:35 +02006694
6695 if (test->i != HTTP_METH_OTHER)
Willy Tarreau11382812008-07-09 16:18:21 +02006696 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02006697
6698 /* Other method, we must compare the strings */
6699 if (pattern->len != test->len)
Willy Tarreau11382812008-07-09 16:18:21 +02006700 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02006701
6702 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
6703 if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) != 0) ||
6704 (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +02006705 return ACL_PAT_FAIL;
6706 return ACL_PAT_PASS;
Willy Tarreau8797c062007-05-07 00:55:35 +02006707}
6708
6709/* 2. Check on Request/Status Version
6710 * We simply compare strings here.
6711 */
Willy Tarreauae8b7962007-06-09 23:10:04 +02006712static int acl_parse_ver(const char **text, struct acl_pattern *pattern, int *opaque)
Willy Tarreau8797c062007-05-07 00:55:35 +02006713{
Willy Tarreauae8b7962007-06-09 23:10:04 +02006714 pattern->ptr.str = strdup(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02006715 if (!pattern->ptr.str)
6716 return 0;
Willy Tarreauae8b7962007-06-09 23:10:04 +02006717 pattern->len = strlen(*text);
Willy Tarreau8797c062007-05-07 00:55:35 +02006718 return 1;
6719}
6720
Willy Tarreaud41f8d82007-06-10 10:06:18 +02006721static int
Willy Tarreau97be1452007-06-10 11:47:14 +02006722acl_fetch_rqver(struct proxy *px, struct session *l4, void *l7, int dir,
6723 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02006724{
6725 struct http_txn *txn = l7;
6726 char *ptr;
6727 int len;
6728
Willy Tarreaub6866442008-07-14 23:54:42 +02006729 if (!txn)
6730 return 0;
6731
Willy Tarreau655dce92009-11-08 13:10:58 +01006732 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006733 return 0;
6734
Willy Tarreau8797c062007-05-07 00:55:35 +02006735 len = txn->req.sl.rq.v_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006736 ptr = txn->req.sol + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02006737
6738 while ((len-- > 0) && (*ptr++ != '/'));
6739 if (len <= 0)
6740 return 0;
6741
6742 test->ptr = ptr;
6743 test->len = len;
6744
6745 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
6746 return 1;
6747}
6748
Willy Tarreaud41f8d82007-06-10 10:06:18 +02006749static int
Willy Tarreau97be1452007-06-10 11:47:14 +02006750acl_fetch_stver(struct proxy *px, struct session *l4, void *l7, int dir,
6751 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02006752{
6753 struct http_txn *txn = l7;
6754 char *ptr;
6755 int len;
6756
Willy Tarreaub6866442008-07-14 23:54:42 +02006757 if (!txn)
6758 return 0;
6759
Willy Tarreau655dce92009-11-08 13:10:58 +01006760 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006761 return 0;
6762
Willy Tarreau8797c062007-05-07 00:55:35 +02006763 len = txn->rsp.sl.st.v_l;
6764 ptr = txn->rsp.sol;
6765
6766 while ((len-- > 0) && (*ptr++ != '/'));
6767 if (len <= 0)
6768 return 0;
6769
6770 test->ptr = ptr;
6771 test->len = len;
6772
6773 test->flags = ACL_TEST_F_READ_ONLY | ACL_TEST_F_VOL_1ST;
6774 return 1;
6775}
6776
6777/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02006778static int
Willy Tarreau97be1452007-06-10 11:47:14 +02006779acl_fetch_stcode(struct proxy *px, struct session *l4, void *l7, int dir,
6780 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02006781{
6782 struct http_txn *txn = l7;
6783 char *ptr;
6784 int len;
6785
Willy Tarreaub6866442008-07-14 23:54:42 +02006786 if (!txn)
6787 return 0;
6788
Willy Tarreau655dce92009-11-08 13:10:58 +01006789 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006790 return 0;
6791
Willy Tarreau8797c062007-05-07 00:55:35 +02006792 len = txn->rsp.sl.st.c_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006793 ptr = txn->rsp.sol + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02006794
6795 test->i = __strl2ui(ptr, len);
6796 test->flags = ACL_TEST_F_VOL_1ST;
6797 return 1;
6798}
6799
6800/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02006801static int
Willy Tarreau97be1452007-06-10 11:47:14 +02006802acl_fetch_url(struct proxy *px, struct session *l4, void *l7, int dir,
6803 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +02006804{
6805 struct http_txn *txn = l7;
6806
Willy Tarreaub6866442008-07-14 23:54:42 +02006807 if (!txn)
6808 return 0;
6809
Willy Tarreau655dce92009-11-08 13:10:58 +01006810 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006811 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02006812
Willy Tarreauc11416f2007-06-17 16:58:38 +02006813 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6814 /* ensure the indexes are not affected */
6815 return 0;
6816
Willy Tarreau8797c062007-05-07 00:55:35 +02006817 test->len = txn->req.sl.rq.u_l;
Willy Tarreau962c3f42010-01-10 00:15:35 +01006818 test->ptr = txn->req.sol + txn->req.sl.rq.u;
Willy Tarreau8797c062007-05-07 00:55:35 +02006819
Willy Tarreauf3d25982007-05-08 22:45:09 +02006820 /* we do not need to set READ_ONLY because the data is in a buffer */
6821 test->flags = ACL_TEST_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02006822 return 1;
6823}
6824
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006825static int
6826acl_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, int dir,
6827 struct acl_expr *expr, struct acl_test *test)
6828{
6829 struct http_txn *txn = l7;
6830
Willy Tarreaub6866442008-07-14 23:54:42 +02006831 if (!txn)
6832 return 0;
6833
Willy Tarreau655dce92009-11-08 13:10:58 +01006834 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006835 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02006836
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006837 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6838 /* ensure the indexes are not affected */
6839 return 0;
6840
6841 /* Parse HTTP request */
Willy Tarreau962c3f42010-01-10 00:15:35 +01006842 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006843 test->ptr = (void *)&((struct sockaddr_in *)&l4->srv_addr)->sin_addr;
6844 test->i = AF_INET;
6845
6846 /*
6847 * If we are parsing url in frontend space, we prepare backend stage
6848 * to not parse again the same url ! optimization lazyness...
6849 */
6850 if (px->options & PR_O_HTTP_PROXY)
6851 l4->flags |= SN_ADDR_SET;
6852
6853 test->flags = ACL_TEST_F_READ_ONLY;
6854 return 1;
6855}
6856
6857static int
6858acl_fetch_url_port(struct proxy *px, struct session *l4, void *l7, int dir,
6859 struct acl_expr *expr, struct acl_test *test)
6860{
6861 struct http_txn *txn = l7;
6862
Willy Tarreaub6866442008-07-14 23:54:42 +02006863 if (!txn)
6864 return 0;
6865
Willy Tarreau655dce92009-11-08 13:10:58 +01006866 if (txn->req.msg_state < HTTP_MSG_BODY)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006867 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02006868
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006869 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6870 /* ensure the indexes are not affected */
6871 return 0;
6872
6873 /* Same optimization as url_ip */
Willy Tarreau962c3f42010-01-10 00:15:35 +01006874 url2sa(txn->req.sol + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &l4->srv_addr);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01006875 test->i = ntohs(((struct sockaddr_in *)&l4->srv_addr)->sin_port);
6876
6877 if (px->options & PR_O_HTTP_PROXY)
6878 l4->flags |= SN_ADDR_SET;
6879
6880 test->flags = ACL_TEST_F_READ_ONLY;
6881 return 1;
6882}
6883
Willy Tarreauc11416f2007-06-17 16:58:38 +02006884/* 5. Check on HTTP header. A pointer to the beginning of the value is returned.
6885 * This generic function is used by both acl_fetch_chdr() and acl_fetch_shdr().
6886 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02006887static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02006888acl_fetch_hdr(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02006889 struct acl_expr *expr, struct acl_test *test)
6890{
6891 struct http_txn *txn = l7;
6892 struct hdr_idx *idx = &txn->hdr_idx;
6893 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02006894
Willy Tarreaub6866442008-07-14 23:54:42 +02006895 if (!txn)
6896 return 0;
6897
Willy Tarreau33a7e692007-06-10 19:45:56 +02006898 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
6899 /* search for header from the beginning */
6900 ctx->idx = 0;
6901
Willy Tarreau33a7e692007-06-10 19:45:56 +02006902 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
6903 test->flags |= ACL_TEST_F_FETCH_MORE;
6904 test->flags |= ACL_TEST_F_VOL_HDR;
6905 test->len = ctx->vlen;
6906 test->ptr = (char *)ctx->line + ctx->val;
6907 return 1;
6908 }
6909
6910 test->flags &= ~ACL_TEST_F_FETCH_MORE;
6911 test->flags |= ACL_TEST_F_VOL_HDR;
6912 return 0;
6913}
6914
Willy Tarreau33a7e692007-06-10 19:45:56 +02006915static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02006916acl_fetch_chdr(struct proxy *px, struct session *l4, void *l7, int dir,
6917 struct acl_expr *expr, struct acl_test *test)
6918{
6919 struct http_txn *txn = l7;
6920
Willy Tarreaub6866442008-07-14 23:54:42 +02006921 if (!txn)
6922 return 0;
6923
Willy Tarreau655dce92009-11-08 13:10:58 +01006924 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006925 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02006926
Willy Tarreauc11416f2007-06-17 16:58:38 +02006927 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6928 /* ensure the indexes are not affected */
6929 return 0;
6930
6931 return acl_fetch_hdr(px, l4, txn, txn->req.sol, expr, test);
6932}
6933
6934static int
6935acl_fetch_shdr(struct proxy *px, struct session *l4, void *l7, int dir,
6936 struct acl_expr *expr, struct acl_test *test)
6937{
6938 struct http_txn *txn = l7;
6939
Willy Tarreaub6866442008-07-14 23:54:42 +02006940 if (!txn)
6941 return 0;
6942
Willy Tarreau655dce92009-11-08 13:10:58 +01006943 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006944 return 0;
6945
6946 return acl_fetch_hdr(px, l4, txn, txn->rsp.sol, expr, test);
6947}
6948
6949/* 6. Check on HTTP header count. The number of occurrences is returned.
6950 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
6951 */
6952static int
6953acl_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02006954 struct acl_expr *expr, struct acl_test *test)
6955{
6956 struct http_txn *txn = l7;
6957 struct hdr_idx *idx = &txn->hdr_idx;
6958 struct hdr_ctx ctx;
Willy Tarreau33a7e692007-06-10 19:45:56 +02006959 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +02006960
Willy Tarreaub6866442008-07-14 23:54:42 +02006961 if (!txn)
6962 return 0;
6963
Willy Tarreau33a7e692007-06-10 19:45:56 +02006964 ctx.idx = 0;
6965 cnt = 0;
6966 while (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, &ctx))
6967 cnt++;
6968
6969 test->i = cnt;
6970 test->flags = ACL_TEST_F_VOL_HDR;
6971 return 1;
6972}
6973
Willy Tarreauc11416f2007-06-17 16:58:38 +02006974static int
6975acl_fetch_chdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
6976 struct acl_expr *expr, struct acl_test *test)
6977{
6978 struct http_txn *txn = l7;
6979
Willy Tarreaub6866442008-07-14 23:54:42 +02006980 if (!txn)
6981 return 0;
6982
Willy Tarreau655dce92009-11-08 13:10:58 +01006983 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02006984 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02006985
Willy Tarreauc11416f2007-06-17 16:58:38 +02006986 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
6987 /* ensure the indexes are not affected */
6988 return 0;
6989
6990 return acl_fetch_hdr_cnt(px, l4, txn, txn->req.sol, expr, test);
6991}
6992
6993static int
6994acl_fetch_shdr_cnt(struct proxy *px, struct session *l4, void *l7, int dir,
6995 struct acl_expr *expr, struct acl_test *test)
6996{
6997 struct http_txn *txn = l7;
6998
Willy Tarreaub6866442008-07-14 23:54:42 +02006999 if (!txn)
7000 return 0;
7001
Willy Tarreau655dce92009-11-08 13:10:58 +01007002 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007003 return 0;
7004
7005 return acl_fetch_hdr_cnt(px, l4, txn, txn->rsp.sol, expr, test);
7006}
7007
Willy Tarreau33a7e692007-06-10 19:45:56 +02007008/* 7. Check on HTTP header's integer value. The integer value is returned.
7009 * FIXME: the type is 'int', it may not be appropriate for everything.
Willy Tarreauc11416f2007-06-17 16:58:38 +02007010 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
Willy Tarreau33a7e692007-06-10 19:45:56 +02007011 */
7012static int
Willy Tarreauc11416f2007-06-17 16:58:38 +02007013acl_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, char *sol,
Willy Tarreau33a7e692007-06-10 19:45:56 +02007014 struct acl_expr *expr, struct acl_test *test)
7015{
7016 struct http_txn *txn = l7;
7017 struct hdr_idx *idx = &txn->hdr_idx;
7018 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
Willy Tarreau33a7e692007-06-10 19:45:56 +02007019
Willy Tarreaub6866442008-07-14 23:54:42 +02007020 if (!txn)
7021 return 0;
7022
Willy Tarreau33a7e692007-06-10 19:45:56 +02007023 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
7024 /* search for header from the beginning */
7025 ctx->idx = 0;
7026
Willy Tarreau33a7e692007-06-10 19:45:56 +02007027 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
7028 test->flags |= ACL_TEST_F_FETCH_MORE;
7029 test->flags |= ACL_TEST_F_VOL_HDR;
7030 test->i = strl2ic((char *)ctx->line + ctx->val, ctx->vlen);
7031 return 1;
7032 }
7033
7034 test->flags &= ~ACL_TEST_F_FETCH_MORE;
7035 test->flags |= ACL_TEST_F_VOL_HDR;
7036 return 0;
7037}
7038
Willy Tarreauc11416f2007-06-17 16:58:38 +02007039static int
7040acl_fetch_chdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
7041 struct acl_expr *expr, struct acl_test *test)
7042{
7043 struct http_txn *txn = l7;
7044
Willy Tarreaub6866442008-07-14 23:54:42 +02007045 if (!txn)
7046 return 0;
7047
Willy Tarreau655dce92009-11-08 13:10:58 +01007048 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007049 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007050
Willy Tarreauc11416f2007-06-17 16:58:38 +02007051 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7052 /* ensure the indexes are not affected */
7053 return 0;
7054
7055 return acl_fetch_hdr_val(px, l4, txn, txn->req.sol, expr, test);
7056}
7057
7058static int
7059acl_fetch_shdr_val(struct proxy *px, struct session *l4, void *l7, int dir,
7060 struct acl_expr *expr, struct acl_test *test)
7061{
7062 struct http_txn *txn = l7;
7063
Willy Tarreaub6866442008-07-14 23:54:42 +02007064 if (!txn)
7065 return 0;
7066
Willy Tarreau655dce92009-11-08 13:10:58 +01007067 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007068 return 0;
7069
7070 return acl_fetch_hdr_val(px, l4, txn, txn->rsp.sol, expr, test);
7071}
7072
Willy Tarreau106f9792009-09-19 07:54:16 +02007073/* 7. Check on HTTP header's IPv4 address value. The IPv4 address is returned.
7074 * This generic function is used by both acl_fetch_chdr* and acl_fetch_shdr*.
7075 */
7076static int
7077acl_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, char *sol,
7078 struct acl_expr *expr, struct acl_test *test)
7079{
7080 struct http_txn *txn = l7;
7081 struct hdr_idx *idx = &txn->hdr_idx;
7082 struct hdr_ctx *ctx = (struct hdr_ctx *)test->ctx.a;
7083
7084 if (!txn)
7085 return 0;
7086
7087 if (!(test->flags & ACL_TEST_F_FETCH_MORE))
7088 /* search for header from the beginning */
7089 ctx->idx = 0;
7090
7091 if (http_find_header2(expr->arg.str, expr->arg_len, sol, idx, ctx)) {
7092 test->flags |= ACL_TEST_F_FETCH_MORE;
7093 test->flags |= ACL_TEST_F_VOL_HDR;
7094 /* Same optimization as url_ip */
7095 memset(&l4->srv_addr.sin_addr, 0, sizeof(l4->srv_addr.sin_addr));
7096 url2ip((char *)ctx->line + ctx->val, &l4->srv_addr.sin_addr);
7097 test->ptr = (void *)&l4->srv_addr.sin_addr;
7098 test->i = AF_INET;
7099 return 1;
7100 }
7101
7102 test->flags &= ~ACL_TEST_F_FETCH_MORE;
7103 test->flags |= ACL_TEST_F_VOL_HDR;
7104 return 0;
7105}
7106
7107static int
7108acl_fetch_chdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
7109 struct acl_expr *expr, struct acl_test *test)
7110{
7111 struct http_txn *txn = l7;
7112
7113 if (!txn)
7114 return 0;
7115
Willy Tarreau655dce92009-11-08 13:10:58 +01007116 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02007117 return 0;
7118
7119 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7120 /* ensure the indexes are not affected */
7121 return 0;
7122
7123 return acl_fetch_hdr_ip(px, l4, txn, txn->req.sol, expr, test);
7124}
7125
7126static int
7127acl_fetch_shdr_ip(struct proxy *px, struct session *l4, void *l7, int dir,
7128 struct acl_expr *expr, struct acl_test *test)
7129{
7130 struct http_txn *txn = l7;
7131
7132 if (!txn)
7133 return 0;
7134
Willy Tarreau655dce92009-11-08 13:10:58 +01007135 if (txn->rsp.msg_state < HTTP_MSG_BODY)
Willy Tarreau106f9792009-09-19 07:54:16 +02007136 return 0;
7137
7138 return acl_fetch_hdr_ip(px, l4, txn, txn->rsp.sol, expr, test);
7139}
7140
Willy Tarreau737b0c12007-06-10 21:28:46 +02007141/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
7142 * the first '/' after the possible hostname, and ends before the possible '?'.
7143 */
7144static int
7145acl_fetch_path(struct proxy *px, struct session *l4, void *l7, int dir,
7146 struct acl_expr *expr, struct acl_test *test)
7147{
7148 struct http_txn *txn = l7;
7149 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +02007150
Willy Tarreaub6866442008-07-14 23:54:42 +02007151 if (!txn)
7152 return 0;
7153
Willy Tarreau655dce92009-11-08 13:10:58 +01007154 if (txn->req.msg_state < HTTP_MSG_BODY)
Willy Tarreauc11416f2007-06-17 16:58:38 +02007155 return 0;
Willy Tarreaub6866442008-07-14 23:54:42 +02007156
Willy Tarreauc11416f2007-06-17 16:58:38 +02007157 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
7158 /* ensure the indexes are not affected */
7159 return 0;
7160
Willy Tarreau962c3f42010-01-10 00:15:35 +01007161 end = txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +01007162 ptr = http_get_path(txn);
7163 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +02007164 return 0;
7165
7166 /* OK, we got the '/' ! */
7167 test->ptr = ptr;
7168
7169 while (ptr < end && *ptr != '?')
7170 ptr++;
7171
7172 test->len = ptr - test->ptr;
7173
7174 /* we do not need to set READ_ONLY because the data is in a buffer */
7175 test->flags = ACL_TEST_F_VOL_1ST;
7176 return 1;
7177}
7178
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007179static int
7180acl_fetch_proto_http(struct proxy *px, struct session *s, void *l7, int dir,
7181 struct acl_expr *expr, struct acl_test *test)
7182{
7183 struct buffer *req = s->req;
7184 struct http_txn *txn = &s->txn;
7185 struct http_msg *msg = &txn->req;
Willy Tarreau737b0c12007-06-10 21:28:46 +02007186
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007187 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
7188 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
7189 */
7190
7191 if (!s || !req)
7192 return 0;
7193
Willy Tarreau655dce92009-11-08 13:10:58 +01007194 if (unlikely(msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007195 /* Already decoded as OK */
7196 test->flags |= ACL_TEST_F_SET_RES_PASS;
7197 return 1;
7198 }
7199
7200 /* Try to decode HTTP request */
7201 if (likely(req->lr < req->r))
7202 http_msg_analyzer(req, msg, &txn->hdr_idx);
7203
Willy Tarreau655dce92009-11-08 13:10:58 +01007204 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007205 if ((msg->msg_state == HTTP_MSG_ERROR) || (req->flags & BF_FULL)) {
7206 test->flags |= ACL_TEST_F_SET_RES_FAIL;
7207 return 1;
7208 }
7209 /* wait for final state */
7210 test->flags |= ACL_TEST_F_MAY_CHANGE;
7211 return 0;
7212 }
7213
7214 /* OK we got a valid HTTP request. We have some minor preparation to
7215 * perform so that further checks can rely on HTTP tests.
7216 */
Willy Tarreau962c3f42010-01-10 00:15:35 +01007217 txn->meth = find_http_meth(msg->sol, msg->sl.rq.m_l);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007218 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
7219 s->flags |= SN_REDIRECTABLE;
7220
7221 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(req, msg, txn)) {
7222 test->flags |= ACL_TEST_F_SET_RES_FAIL;
7223 return 1;
7224 }
7225
7226 test->flags |= ACL_TEST_F_SET_RES_PASS;
7227 return 1;
7228}
7229
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007230static int
7231acl_fetch_http_auth(struct proxy *px, struct session *s, void *l7, int dir,
7232 struct acl_expr *expr, struct acl_test *test)
7233{
7234
7235 if (!s)
7236 return 0;
7237
7238 if (!get_http_auth(s))
7239 return 0;
7240
7241 test->ctx.a[0] = expr->arg.ul;
7242 test->ctx.a[1] = s->txn.auth.user;
7243 test->ctx.a[2] = s->txn.auth.pass;
7244
7245 test->flags |= ACL_TEST_F_READ_ONLY | ACL_TEST_F_NULL_MATCH;
7246
7247 return 1;
7248}
Willy Tarreau8797c062007-05-07 00:55:35 +02007249
7250/************************************************************************/
7251/* All supported keywords must be declared here. */
7252/************************************************************************/
7253
7254/* Note: must not be declared <const> as its list will be overwritten */
7255static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau2492d5b2009-07-11 00:06:00 +02007256 { "req_proto_http", acl_parse_nothing, acl_fetch_proto_http, acl_match_nothing, ACL_USE_L7REQ_PERMANENT },
7257
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02007258 { "method", acl_parse_meth, acl_fetch_meth, acl_match_meth, ACL_USE_L7REQ_PERMANENT },
7259 { "req_ver", acl_parse_ver, acl_fetch_rqver, acl_match_str, ACL_USE_L7REQ_VOLATILE },
7260 { "resp_ver", acl_parse_ver, acl_fetch_stver, acl_match_str, ACL_USE_L7RTR_VOLATILE },
7261 { "status", acl_parse_int, acl_fetch_stcode, acl_match_int, ACL_USE_L7RTR_PERMANENT },
Willy Tarreau8797c062007-05-07 00:55:35 +02007262
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02007263 { "url", acl_parse_str, acl_fetch_url, acl_match_str, ACL_USE_L7REQ_VOLATILE },
7264 { "url_beg", acl_parse_str, acl_fetch_url, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
7265 { "url_end", acl_parse_str, acl_fetch_url, acl_match_end, ACL_USE_L7REQ_VOLATILE },
7266 { "url_sub", acl_parse_str, acl_fetch_url, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
7267 { "url_dir", acl_parse_str, acl_fetch_url, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
7268 { "url_dom", acl_parse_str, acl_fetch_url, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
7269 { "url_reg", acl_parse_reg, acl_fetch_url, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
7270 { "url_ip", acl_parse_ip, acl_fetch_url_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE },
7271 { "url_port", acl_parse_int, acl_fetch_url_port, acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau8797c062007-05-07 00:55:35 +02007272
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02007273 /* note: we should set hdr* to use ACL_USE_HDR_VOLATILE, and chdr* to use L7REQ_VOLATILE */
7274 { "hdr", acl_parse_str, acl_fetch_chdr, acl_match_str, ACL_USE_L7REQ_VOLATILE },
7275 { "hdr_reg", acl_parse_reg, acl_fetch_chdr, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
7276 { "hdr_beg", acl_parse_str, acl_fetch_chdr, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
7277 { "hdr_end", acl_parse_str, acl_fetch_chdr, acl_match_end, ACL_USE_L7REQ_VOLATILE },
7278 { "hdr_sub", acl_parse_str, acl_fetch_chdr, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
7279 { "hdr_dir", acl_parse_str, acl_fetch_chdr, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
7280 { "hdr_dom", acl_parse_str, acl_fetch_chdr, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
7281 { "hdr_cnt", acl_parse_int, acl_fetch_chdr_cnt,acl_match_int, ACL_USE_L7REQ_VOLATILE },
7282 { "hdr_val", acl_parse_int, acl_fetch_chdr_val,acl_match_int, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau106f9792009-09-19 07:54:16 +02007283 { "hdr_ip", acl_parse_ip, acl_fetch_chdr_ip, acl_match_ip, ACL_USE_L7REQ_VOLATILE },
Willy Tarreauc11416f2007-06-17 16:58:38 +02007284
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02007285 { "shdr", acl_parse_str, acl_fetch_shdr, acl_match_str, ACL_USE_L7RTR_VOLATILE },
7286 { "shdr_reg", acl_parse_reg, acl_fetch_shdr, acl_match_reg, ACL_USE_L7RTR_VOLATILE },
7287 { "shdr_beg", acl_parse_str, acl_fetch_shdr, acl_match_beg, ACL_USE_L7RTR_VOLATILE },
7288 { "shdr_end", acl_parse_str, acl_fetch_shdr, acl_match_end, ACL_USE_L7RTR_VOLATILE },
7289 { "shdr_sub", acl_parse_str, acl_fetch_shdr, acl_match_sub, ACL_USE_L7RTR_VOLATILE },
7290 { "shdr_dir", acl_parse_str, acl_fetch_shdr, acl_match_dir, ACL_USE_L7RTR_VOLATILE },
7291 { "shdr_dom", acl_parse_str, acl_fetch_shdr, acl_match_dom, ACL_USE_L7RTR_VOLATILE },
7292 { "shdr_cnt", acl_parse_int, acl_fetch_shdr_cnt,acl_match_int, ACL_USE_L7RTR_VOLATILE },
7293 { "shdr_val", acl_parse_int, acl_fetch_shdr_val,acl_match_int, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau106f9792009-09-19 07:54:16 +02007294 { "shdr_ip", acl_parse_ip, acl_fetch_shdr_ip, acl_match_ip, ACL_USE_L7RTR_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02007295
Willy Tarreau0ceba5a2008-07-25 19:31:03 +02007296 { "path", acl_parse_str, acl_fetch_path, acl_match_str, ACL_USE_L7REQ_VOLATILE },
7297 { "path_reg", acl_parse_reg, acl_fetch_path, acl_match_reg, ACL_USE_L7REQ_VOLATILE },
7298 { "path_beg", acl_parse_str, acl_fetch_path, acl_match_beg, ACL_USE_L7REQ_VOLATILE },
7299 { "path_end", acl_parse_str, acl_fetch_path, acl_match_end, ACL_USE_L7REQ_VOLATILE },
7300 { "path_sub", acl_parse_str, acl_fetch_path, acl_match_sub, ACL_USE_L7REQ_VOLATILE },
7301 { "path_dir", acl_parse_str, acl_fetch_path, acl_match_dir, ACL_USE_L7REQ_VOLATILE },
7302 { "path_dom", acl_parse_str, acl_fetch_path, acl_match_dom, ACL_USE_L7REQ_VOLATILE },
Willy Tarreau737b0c12007-06-10 21:28:46 +02007303
Willy Tarreauf3d25982007-05-08 22:45:09 +02007304#if 0
Willy Tarreau8797c062007-05-07 00:55:35 +02007305 { "line", acl_parse_str, acl_fetch_line, acl_match_str },
7306 { "line_reg", acl_parse_reg, acl_fetch_line, acl_match_reg },
7307 { "line_beg", acl_parse_str, acl_fetch_line, acl_match_beg },
7308 { "line_end", acl_parse_str, acl_fetch_line, acl_match_end },
7309 { "line_sub", acl_parse_str, acl_fetch_line, acl_match_sub },
7310 { "line_dir", acl_parse_str, acl_fetch_line, acl_match_dir },
7311 { "line_dom", acl_parse_str, acl_fetch_line, acl_match_dom },
7312
Willy Tarreau8797c062007-05-07 00:55:35 +02007313 { "cook", acl_parse_str, acl_fetch_cook, acl_match_str },
7314 { "cook_reg", acl_parse_reg, acl_fetch_cook, acl_match_reg },
7315 { "cook_beg", acl_parse_str, acl_fetch_cook, acl_match_beg },
7316 { "cook_end", acl_parse_str, acl_fetch_cook, acl_match_end },
7317 { "cook_sub", acl_parse_str, acl_fetch_cook, acl_match_sub },
7318 { "cook_dir", acl_parse_str, acl_fetch_cook, acl_match_dir },
7319 { "cook_dom", acl_parse_str, acl_fetch_cook, acl_match_dom },
7320 { "cook_pst", acl_parse_none, acl_fetch_cook, acl_match_pst },
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007321#endif
Willy Tarreau8797c062007-05-07 00:55:35 +02007322
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007323 { "http_auth", acl_parse_nothing, acl_fetch_http_auth, acl_match_auth },
7324 { "http_auth_group", acl_parse_strcat, acl_fetch_http_auth, acl_match_auth },
Willy Tarreau8797c062007-05-07 00:55:35 +02007325 { NULL, NULL, NULL, NULL },
Willy Tarreau8797c062007-05-07 00:55:35 +02007326}};
7327
7328
7329__attribute__((constructor))
7330static void __http_protocol_init(void)
7331{
7332 acl_register_keywords(&acl_kws);
7333}
7334
7335
Willy Tarreau58f10d72006-12-04 02:26:12 +01007336/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02007337 * Local variables:
7338 * c-indent-level: 8
7339 * c-basic-offset: 8
7340 * End:
7341 */