blob: 1b96e3fd47a4bf136eef2d90562eed6a79dc5cfc [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
Willy Tarreau42250582007-04-01 01:30:43 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Willy Tarreaub05405a2012-01-23 15:35:52 +010026#include <netinet/tcp.h>
27
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/appsession.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010029#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020030#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/compat.h>
32#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010033#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/memory.h>
35#include <common/mini-clist.h>
36#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020037#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/time.h>
39#include <common/uri_auth.h>
40#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
42#include <types/capture.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreau8797c062007-05-07 00:55:35 +020045#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020046#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010047#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020049#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010050#include <proto/checks.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020051#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020052#include <proto/dumpstats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020054#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010056#include <proto/hdr_idx.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010057#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020058#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010060#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020062#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010063#include <proto/server.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020064#include <proto/session.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010065#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020067#include <proto/pattern.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau522d6c02009-12-06 18:49:18 +010069const char HTTP_100[] =
70 "HTTP/1.1 100 Continue\r\n\r\n";
71
72const struct chunk http_100_chunk = {
73 .str = (char *)&HTTP_100,
74 .len = sizeof(HTTP_100)-1
75};
76
Willy Tarreaua9679ac2010-01-03 17:32:57 +010077/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020078const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010079 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010080 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020081 "Location: "; /* not terminated since it will be concatenated with the URL */
82
Willy Tarreau0f772532006-12-23 20:51:41 +010083const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010084 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010085 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010087 "Location: "; /* not terminated since it will be concatenated with the URL */
88
89/* same as 302 except that the browser MUST retry with the GET method */
90const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010091 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010092 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010093 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010094 "Location: "; /* not terminated since it will be concatenated with the URL */
95
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040096
97/* same as 302 except that the browser MUST retry with the same method */
98const char *HTTP_307 =
99 "HTTP/1.1 307 Temporary Redirect\r\n"
100 "Cache-Control: no-cache\r\n"
101 "Content-length: 0\r\n"
102 "Location: "; /* not terminated since it will be concatenated with the URL */
103
104/* same as 301 except that the browser MUST retry with the same method */
105const char *HTTP_308 =
106 "HTTP/1.1 308 Permanent Redirect\r\n"
107 "Content-length: 0\r\n"
108 "Location: "; /* not terminated since it will be concatenated with the URL */
109
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
111const char *HTTP_401_fmt =
112 "HTTP/1.0 401 Unauthorized\r\n"
113 "Cache-Control: no-cache\r\n"
114 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200115 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
117 "\r\n"
118 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
119
Willy Tarreau844a7e72010-01-31 21:46:18 +0100120const char *HTTP_407_fmt =
121 "HTTP/1.0 407 Unauthorized\r\n"
122 "Cache-Control: no-cache\r\n"
123 "Connection: close\r\n"
124 "Content-Type: text/html\r\n"
125 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
126 "\r\n"
127 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
128
Willy Tarreau0f772532006-12-23 20:51:41 +0100129
130const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200131 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100132 [HTTP_ERR_400] = 400,
133 [HTTP_ERR_403] = 403,
134 [HTTP_ERR_408] = 408,
135 [HTTP_ERR_500] = 500,
136 [HTTP_ERR_502] = 502,
137 [HTTP_ERR_503] = 503,
138 [HTTP_ERR_504] = 504,
139};
140
Willy Tarreau80587432006-12-24 17:47:20 +0100141static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200142 [HTTP_ERR_200] =
143 "HTTP/1.0 200 OK\r\n"
144 "Cache-Control: no-cache\r\n"
145 "Connection: close\r\n"
146 "Content-Type: text/html\r\n"
147 "\r\n"
148 "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n",
149
Willy Tarreau0f772532006-12-23 20:51:41 +0100150 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100151 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100152 "Cache-Control: no-cache\r\n"
153 "Connection: close\r\n"
154 "Content-Type: text/html\r\n"
155 "\r\n"
156 "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
157
158 [HTTP_ERR_403] =
159 "HTTP/1.0 403 Forbidden\r\n"
160 "Cache-Control: no-cache\r\n"
161 "Connection: close\r\n"
162 "Content-Type: text/html\r\n"
163 "\r\n"
164 "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
165
166 [HTTP_ERR_408] =
167 "HTTP/1.0 408 Request Time-out\r\n"
168 "Cache-Control: no-cache\r\n"
169 "Connection: close\r\n"
170 "Content-Type: text/html\r\n"
171 "\r\n"
172 "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
173
174 [HTTP_ERR_500] =
175 "HTTP/1.0 500 Server Error\r\n"
176 "Cache-Control: no-cache\r\n"
177 "Connection: close\r\n"
178 "Content-Type: text/html\r\n"
179 "\r\n"
180 "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
181
182 [HTTP_ERR_502] =
183 "HTTP/1.0 502 Bad Gateway\r\n"
184 "Cache-Control: no-cache\r\n"
185 "Connection: close\r\n"
186 "Content-Type: text/html\r\n"
187 "\r\n"
188 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
189
190 [HTTP_ERR_503] =
191 "HTTP/1.0 503 Service Unavailable\r\n"
192 "Cache-Control: no-cache\r\n"
193 "Connection: close\r\n"
194 "Content-Type: text/html\r\n"
195 "\r\n"
196 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
197
198 [HTTP_ERR_504] =
199 "HTTP/1.0 504 Gateway Time-out\r\n"
200 "Cache-Control: no-cache\r\n"
201 "Connection: close\r\n"
202 "Content-Type: text/html\r\n"
203 "\r\n"
204 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
205
206};
207
Cyril Bonté19979e12012-04-04 12:57:21 +0200208/* status codes available for the stats admin page (strictly 4 chars length) */
209const char *stat_status_codes[STAT_STATUS_SIZE] = {
210 [STAT_STATUS_DENY] = "DENY",
211 [STAT_STATUS_DONE] = "DONE",
212 [STAT_STATUS_ERRP] = "ERRP",
213 [STAT_STATUS_EXCD] = "EXCD",
214 [STAT_STATUS_NONE] = "NONE",
215 [STAT_STATUS_PART] = "PART",
216 [STAT_STATUS_UNKN] = "UNKN",
217};
218
219
William Lallemand73025dd2014-04-24 14:38:37 +0200220/* List head of all known action keywords for "http-request" */
221struct http_req_action_kw_list http_req_keywords = {
222 .list = LIST_HEAD_INIT(http_req_keywords.list)
223};
224
225/* List head of all known action keywords for "http-response" */
226struct http_res_action_kw_list http_res_keywords = {
227 .list = LIST_HEAD_INIT(http_res_keywords.list)
228};
229
Willy Tarreau80587432006-12-24 17:47:20 +0100230/* We must put the messages here since GCC cannot initialize consts depending
231 * on strlen().
232 */
233struct chunk http_err_chunks[HTTP_ERR_SIZE];
234
Willy Tarreaua890d072013-04-02 12:01:06 +0200235/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
236static struct hdr_ctx static_hdr_ctx;
237
Willy Tarreau42250582007-04-01 01:30:43 +0200238#define FD_SETS_ARE_BITFIELDS
239#ifdef FD_SETS_ARE_BITFIELDS
240/*
241 * This map is used with all the FD_* macros to check whether a particular bit
242 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
243 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
244 * byte should be encoded. Be careful to always pass bytes from 0 to 255
245 * exclusively to the macros.
246 */
247fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
248fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100249fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200250
251#else
252#error "Check if your OS uses bitfields for fd_sets"
253#endif
254
Willy Tarreau0b748332014-04-29 00:13:29 +0200255static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn);
256
Willy Tarreau80587432006-12-24 17:47:20 +0100257void init_proto_http()
258{
Willy Tarreau42250582007-04-01 01:30:43 +0200259 int i;
260 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100261 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200262
Willy Tarreau80587432006-12-24 17:47:20 +0100263 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
264 if (!http_err_msgs[msg]) {
265 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
266 abort();
267 }
268
269 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
270 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
271 }
Willy Tarreau42250582007-04-01 01:30:43 +0200272
273 /* initialize the log header encoding map : '{|}"#' should be encoded with
274 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
275 * URL encoding only requires '"', '#' to be encoded as well as non-
276 * printable characters above.
277 */
278 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
279 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100280 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200281 for (i = 0; i < 32; i++) {
282 FD_SET(i, hdr_encode_map);
283 FD_SET(i, url_encode_map);
284 }
285 for (i = 127; i < 256; i++) {
286 FD_SET(i, hdr_encode_map);
287 FD_SET(i, url_encode_map);
288 }
289
290 tmp = "\"#{|}";
291 while (*tmp) {
292 FD_SET(*tmp, hdr_encode_map);
293 tmp++;
294 }
295
296 tmp = "\"#";
297 while (*tmp) {
298 FD_SET(*tmp, url_encode_map);
299 tmp++;
300 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200301
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100302 /* initialize the http header encoding map. The draft httpbis define the
303 * header content as:
304 *
305 * HTTP-message = start-line
306 * *( header-field CRLF )
307 * CRLF
308 * [ message-body ]
309 * header-field = field-name ":" OWS field-value OWS
310 * field-value = *( field-content / obs-fold )
311 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
312 * obs-fold = CRLF 1*( SP / HTAB )
313 * field-vchar = VCHAR / obs-text
314 * VCHAR = %x21-7E
315 * obs-text = %x80-FF
316 *
317 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
318 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
319 * "obs-fold" is volontary forgotten because haproxy remove this.
320 */
321 memset(http_encode_map, 0, sizeof(http_encode_map));
322 for (i = 0x00; i <= 0x08; i++)
323 FD_SET(i, http_encode_map);
324 for (i = 0x0a; i <= 0x1f; i++)
325 FD_SET(i, http_encode_map);
326 FD_SET(0x7f, http_encode_map);
327
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200328 /* memory allocations */
329 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100330 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100331}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200332
Willy Tarreau53b6c742006-12-17 13:37:46 +0100333/*
334 * We have 26 list of methods (1 per first letter), each of which can have
335 * up to 3 entries (2 valid, 1 null).
336 */
337struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100338 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100339 int len;
340 const char text[8];
341};
342
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100343const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100344 ['C' - 'A'] = {
345 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
346 },
347 ['D' - 'A'] = {
348 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
349 },
350 ['G' - 'A'] = {
351 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
352 },
353 ['H' - 'A'] = {
354 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
355 },
356 ['P' - 'A'] = {
357 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
358 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
359 },
360 ['T' - 'A'] = {
361 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
362 },
363 /* rest is empty like this :
364 * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" },
365 */
366};
367
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100368const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
369 [HTTP_METH_NONE] = { "", 0 },
370 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
371 [HTTP_METH_GET] = { "GET", 3 },
372 [HTTP_METH_HEAD] = { "HEAD", 4 },
373 [HTTP_METH_POST] = { "POST", 4 },
374 [HTTP_METH_PUT] = { "PUT", 3 },
375 [HTTP_METH_DELETE] = { "DELETE", 6 },
376 [HTTP_METH_TRACE] = { "TRACE", 5 },
377 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
378};
379
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100380/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200381 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100382 * RFC2616 for those chars.
383 */
384
385const char http_is_spht[256] = {
386 [' '] = 1, ['\t'] = 1,
387};
388
389const char http_is_crlf[256] = {
390 ['\r'] = 1, ['\n'] = 1,
391};
392
393const char http_is_lws[256] = {
394 [' '] = 1, ['\t'] = 1,
395 ['\r'] = 1, ['\n'] = 1,
396};
397
398const char http_is_sep[256] = {
399 ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1,
400 ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1,
401 ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1,
402 ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1,
403 [' '] = 1, ['\t'] = 1, ['\\'] = 1,
404};
405
406const char http_is_ctl[256] = {
407 [0 ... 31] = 1,
408 [127] = 1,
409};
410
411/*
412 * A token is any ASCII char that is neither a separator nor a CTL char.
413 * Do not overwrite values in assignment since gcc-2.95 will not handle
414 * them correctly. Instead, define every non-CTL char's status.
415 */
416const char http_is_token[256] = {
417 [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1,
418 ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1,
419 ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1,
420 [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0,
421 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1,
422 ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1,
423 ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0,
424 ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0,
425 ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1,
426 ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1,
427 ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1,
428 ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1,
429 ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1,
430 ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1,
431 ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0,
432 ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1,
433 ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1,
434 ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1,
435 ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1,
436 ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1,
437 ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1,
438 ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1,
439 ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0,
440 ['|'] = 1, ['}'] = 0, ['~'] = 1,
441};
442
443
Willy Tarreau4b89ad42007-03-04 18:13:58 +0100444/*
445 * An http ver_token is any ASCII which can be found in an HTTP version,
446 * which includes 'H', 'T', 'P', '/', '.' and any digit.
447 */
448const char http_is_ver_token[256] = {
449 ['.'] = 1, ['/'] = 1,
450 ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1,
451 ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1,
452 ['H'] = 1, ['P'] = 1, ['T'] = 1,
453};
454
455
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100456/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100457 * Adds a header and its CRLF at the tail of the message's buffer, just before
458 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100459 * The header is also automatically added to the index <hdr_idx>, and the end
460 * of headers is automatically adjusted. The number of bytes added is returned
461 * on success, otherwise <0 is returned indicating an error.
462 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100463int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100464{
465 int bytes, len;
466
467 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200468 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100469 if (!bytes)
470 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100471 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100472 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
473}
474
475/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100476 * Adds a header and its CRLF at the tail of the message's buffer, just before
477 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100478 * the buffer is only opened and the space reserved, but nothing is copied.
479 * The header is also automatically added to the index <hdr_idx>, and the end
480 * of headers is automatically adjusted. The number of bytes added is returned
481 * on success, otherwise <0 is returned indicating an error.
482 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100483int http_header_add_tail2(struct http_msg *msg,
484 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100485{
486 int bytes;
487
Willy Tarreau9b28e032012-10-12 23:49:43 +0200488 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100489 if (!bytes)
490 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100491 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100492 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
493}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200494
495/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100496 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
497 * If so, returns the position of the first non-space character relative to
498 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
499 * to return a pointer to the place after the first space. Returns 0 if the
500 * header name does not match. Checks are case-insensitive.
501 */
502int http_header_match2(const char *hdr, const char *end,
503 const char *name, int len)
504{
505 const char *val;
506
507 if (hdr + len >= end)
508 return 0;
509 if (hdr[len] != ':')
510 return 0;
511 if (strncasecmp(hdr, name, len) != 0)
512 return 0;
513 val = hdr + len + 1;
514 while (val < end && HTTP_IS_SPHT(*val))
515 val++;
516 if ((val >= end) && (len + 2 <= end - hdr))
517 return len + 2; /* we may replace starting from second space */
518 return val - hdr;
519}
520
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200521/* Find the first or next occurrence of header <name> in message buffer <sol>
522 * using headers index <idx>, and return it in the <ctx> structure. This
523 * structure holds everything necessary to use the header and find next
524 * occurrence. If its <idx> member is 0, the header is searched from the
525 * beginning. Otherwise, the next occurrence is returned. The function returns
526 * 1 when it finds a value, and 0 when there is no more. It is very similar to
527 * http_find_header2() except that it is designed to work with full-line headers
528 * whose comma is not a delimiter but is part of the syntax. As a special case,
529 * if ctx->val is NULL when searching for a new values of a header, the current
530 * header is rescanned. This allows rescanning after a header deletion.
531 */
532int http_find_full_header2(const char *name, int len,
533 char *sol, struct hdr_idx *idx,
534 struct hdr_ctx *ctx)
535{
536 char *eol, *sov;
537 int cur_idx, old_idx;
538
539 cur_idx = ctx->idx;
540 if (cur_idx) {
541 /* We have previously returned a header, let's search another one */
542 sol = ctx->line;
543 eol = sol + idx->v[cur_idx].len;
544 goto next_hdr;
545 }
546
547 /* first request for this header */
548 sol += hdr_idx_first_pos(idx);
549 old_idx = 0;
550 cur_idx = hdr_idx_first_idx(idx);
551 while (cur_idx) {
552 eol = sol + idx->v[cur_idx].len;
553
554 if (len == 0) {
555 /* No argument was passed, we want any header.
556 * To achieve this, we simply build a fake request. */
557 while (sol + len < eol && sol[len] != ':')
558 len++;
559 name = sol;
560 }
561
562 if ((len < eol - sol) &&
563 (sol[len] == ':') &&
564 (strncasecmp(sol, name, len) == 0)) {
565 ctx->del = len;
566 sov = sol + len + 1;
567 while (sov < eol && http_is_lws[(unsigned char)*sov])
568 sov++;
569
570 ctx->line = sol;
571 ctx->prev = old_idx;
572 ctx->idx = cur_idx;
573 ctx->val = sov - sol;
574 ctx->tws = 0;
575 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
576 eol--;
577 ctx->tws++;
578 }
579 ctx->vlen = eol - sov;
580 return 1;
581 }
582 next_hdr:
583 sol = eol + idx->v[cur_idx].cr + 1;
584 old_idx = cur_idx;
585 cur_idx = idx->v[cur_idx].next;
586 }
587 return 0;
588}
589
Willy Tarreau68085d82010-01-18 14:54:04 +0100590/* Find the end of the header value contained between <s> and <e>. See RFC2616,
591 * par 2.2 for more information. Note that it requires a valid header to return
592 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200593 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100594char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200595{
596 int quoted, qdpair;
597
598 quoted = qdpair = 0;
599 for (; s < e; s++) {
600 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200601 else if (quoted) {
602 if (*s == '\\') qdpair = 1;
603 else if (*s == '"') quoted = 0;
604 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200605 else if (*s == '"') quoted = 1;
606 else if (*s == ',') return s;
607 }
608 return s;
609}
610
611/* Find the first or next occurrence of header <name> in message buffer <sol>
612 * using headers index <idx>, and return it in the <ctx> structure. This
613 * structure holds everything necessary to use the header and find next
614 * occurrence. If its <idx> member is 0, the header is searched from the
615 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100616 * 1 when it finds a value, and 0 when there is no more. It is designed to work
617 * with headers defined as comma-separated lists. As a special case, if ctx->val
618 * is NULL when searching for a new values of a header, the current header is
619 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200620 */
621int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100622 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200623 struct hdr_ctx *ctx)
624{
Willy Tarreau68085d82010-01-18 14:54:04 +0100625 char *eol, *sov;
626 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200627
Willy Tarreau68085d82010-01-18 14:54:04 +0100628 cur_idx = ctx->idx;
629 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200630 /* We have previously returned a value, let's search
631 * another one on the same line.
632 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200633 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200634 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100635 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200636 eol = sol + idx->v[cur_idx].len;
637
638 if (sov >= eol)
639 /* no more values in this header */
640 goto next_hdr;
641
Willy Tarreau68085d82010-01-18 14:54:04 +0100642 /* values remaining for this header, skip the comma but save it
643 * for later use (eg: for header deletion).
644 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200645 sov++;
646 while (sov < eol && http_is_lws[(unsigned char)*sov])
647 sov++;
648
649 goto return_hdr;
650 }
651
652 /* first request for this header */
653 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100654 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200655 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200656 while (cur_idx) {
657 eol = sol + idx->v[cur_idx].len;
658
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200659 if (len == 0) {
660 /* No argument was passed, we want any header.
661 * To achieve this, we simply build a fake request. */
662 while (sol + len < eol && sol[len] != ':')
663 len++;
664 name = sol;
665 }
666
Willy Tarreau33a7e692007-06-10 19:45:56 +0200667 if ((len < eol - sol) &&
668 (sol[len] == ':') &&
669 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100670 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200671 sov = sol + len + 1;
672 while (sov < eol && http_is_lws[(unsigned char)*sov])
673 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100674
Willy Tarreau33a7e692007-06-10 19:45:56 +0200675 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100676 ctx->prev = old_idx;
677 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200678 ctx->idx = cur_idx;
679 ctx->val = sov - sol;
680
681 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200682 ctx->tws = 0;
Willy Tarreau275600b2011-09-16 08:11:26 +0200683 while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200684 eol--;
685 ctx->tws++;
686 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200687 ctx->vlen = eol - sov;
688 return 1;
689 }
690 next_hdr:
691 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100692 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200693 cur_idx = idx->v[cur_idx].next;
694 }
695 return 0;
696}
697
698int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100699 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200700 struct hdr_ctx *ctx)
701{
702 return http_find_header2(name, strlen(name), sol, idx, ctx);
703}
704
Willy Tarreau68085d82010-01-18 14:54:04 +0100705/* Remove one value of a header. This only works on a <ctx> returned by one of
706 * the http_find_header functions. The value is removed, as well as surrounding
707 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100708 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100709 * message <msg>. The new index is returned. If it is zero, it means there is
710 * no more header, so any processing may stop. The ctx is always left in a form
711 * that can be handled by http_find_header2() to find next occurrence.
712 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100713int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100714{
715 int cur_idx = ctx->idx;
716 char *sol = ctx->line;
717 struct hdr_idx_elem *hdr;
718 int delta, skip_comma;
719
720 if (!cur_idx)
721 return 0;
722
723 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200724 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100725 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200726 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +0100727 http_msg_move_end(msg, delta);
728 idx->used--;
729 hdr->len = 0; /* unused entry */
730 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +0100731 if (idx->tail == ctx->idx)
732 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +0100733 ctx->idx = ctx->prev; /* walk back to the end of previous header */
734 ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1;
735 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200736 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100737 return ctx->idx;
738 }
739
740 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200741 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
742 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +0100743 */
744
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200745 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200746 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200747 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +0100748 NULL, 0);
749 hdr->len += delta;
750 http_msg_move_end(msg, delta);
751 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200752 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +0100753 return ctx->idx;
754}
755
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100756/* This function handles a server error at the stream interface level. The
757 * stream interface is assumed to be already in a closed state. An optional
758 * message is copied into the input buffer, and an HTTP status code stored.
759 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +0100760 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200761 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200762static void http_server_error(struct session *s, struct stream_interface *si,
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100763 int err, int finst, int status, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200765 channel_auto_read(si->ob);
766 channel_abort(si->ob);
767 channel_auto_close(si->ob);
768 channel_erase(si->ob);
769 channel_auto_close(si->ib);
770 channel_auto_read(si->ib);
Willy Tarreau0f772532006-12-23 20:51:41 +0100771 if (status > 0 && msg) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200772 s->txn.status = status;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200773 bo_inject(si->ib, msg->str, msg->len);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200775 if (!(s->flags & SN_ERR_MASK))
776 s->flags |= err;
777 if (!(s->flags & SN_FINST_MASK))
778 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779}
780
Willy Tarreau80587432006-12-24 17:47:20 +0100781/* This function returns the appropriate error location for the given session
782 * and message.
783 */
784
Willy Tarreau783f2582012-09-04 12:19:04 +0200785struct chunk *http_error_message(struct session *s, int msgnum)
Willy Tarreau80587432006-12-24 17:47:20 +0100786{
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200787 if (s->be->errmsg[msgnum].str)
788 return &s->be->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100789 else if (s->fe->errmsg[msgnum].str)
790 return &s->fe->errmsg[msgnum];
791 else
792 return &http_err_chunks[msgnum];
793}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200794
Willy Tarreau53b6c742006-12-17 13:37:46 +0100795/*
796 * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text
797 * string), HTTP_METH_OTHER for unknown methods, or the identified method.
798 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100799enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +0100800{
801 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100802 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100803
804 m = ((unsigned)*str - 'A');
805
806 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100807 for (h = http_methods[m]; h->len > 0; h++) {
808 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100809 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100810 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +0100811 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100812 };
813 return HTTP_METH_OTHER;
814 }
815 return HTTP_METH_NONE;
816
817}
818
Willy Tarreau21d2af32008-02-14 20:25:24 +0100819/* Parse the URI from the given transaction (which is assumed to be in request
820 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
821 * It is returned otherwise.
822 */
823static char *
824http_get_path(struct http_txn *txn)
825{
826 char *ptr, *end;
827
Willy Tarreau9b28e032012-10-12 23:49:43 +0200828 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100829 end = ptr + txn->req.sl.rq.u_l;
830
831 if (ptr >= end)
832 return NULL;
833
834 /* RFC2616, par. 5.1.2 :
835 * Request-URI = "*" | absuri | abspath | authority
836 */
837
838 if (*ptr == '*')
839 return NULL;
840
841 if (isalpha((unsigned char)*ptr)) {
842 /* this is a scheme as described by RFC3986, par. 3.1 */
843 ptr++;
844 while (ptr < end &&
845 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
846 ptr++;
847 /* skip '://' */
848 if (ptr == end || *ptr++ != ':')
849 return NULL;
850 if (ptr == end || *ptr++ != '/')
851 return NULL;
852 if (ptr == end || *ptr++ != '/')
853 return NULL;
854 }
855 /* skip [user[:passwd]@]host[:[port]] */
856
857 while (ptr < end && *ptr != '/')
858 ptr++;
859
860 if (ptr == end)
861 return NULL;
862
863 /* OK, we got the '/' ! */
864 return ptr;
865}
866
William Lallemand65ad6e12014-01-31 15:08:02 +0100867/* Parse the URI from the given string and look for the "/" beginning the PATH.
868 * If not found, return NULL. It is returned otherwise.
869 */
870static char *
871http_get_path_from_string(char *str)
872{
873 char *ptr = str;
874
875 /* RFC2616, par. 5.1.2 :
876 * Request-URI = "*" | absuri | abspath | authority
877 */
878
879 if (*ptr == '*')
880 return NULL;
881
882 if (isalpha((unsigned char)*ptr)) {
883 /* this is a scheme as described by RFC3986, par. 3.1 */
884 ptr++;
885 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
886 ptr++;
887 /* skip '://' */
888 if (*ptr == '\0' || *ptr++ != ':')
889 return NULL;
890 if (*ptr == '\0' || *ptr++ != '/')
891 return NULL;
892 if (*ptr == '\0' || *ptr++ != '/')
893 return NULL;
894 }
895 /* skip [user[:passwd]@]host[:[port]] */
896
897 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
898 ptr++;
899
900 if (*ptr == '\0' || *ptr == ' ')
901 return NULL;
902
903 /* OK, we got the '/' ! */
904 return ptr;
905}
906
Willy Tarreau71241ab2012-12-27 11:30:54 +0100907/* Returns a 302 for a redirectable request that reaches a server working in
908 * in redirect mode. This may only be called just after the stream interface
909 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
910 * follow normal proxy processing. NOTE: this function is designed to support
911 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100912 */
Willy Tarreau71241ab2012-12-27 11:30:54 +0100913void http_perform_server_redirect(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100914{
915 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100916 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100917 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200918 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100919
920 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100921 trash.len = strlen(HTTP_302);
922 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100923
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100924 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100925
Willy Tarreauefb453c2008-10-26 20:49:47 +0100926 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100927 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100928 return;
929
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100930 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100931 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100932 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
933 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100934 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100935
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200936 /* 3: add the request URI. Since it was already forwarded, we need
937 * to temporarily rewind the buffer.
938 */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100939 txn = &s->txn;
Willy Tarreau211cdec2014-04-17 20:18:08 +0200940 b_rew(s->req->buf, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200941
Willy Tarreauefb453c2008-10-26 20:49:47 +0100942 path = http_get_path(txn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200943 len = buffer_count(s->req->buf, path, b_ptr(s->req->buf, txn->req.sl.rq.u + txn->req.sl.rq.u_l));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200944
Willy Tarreau9b28e032012-10-12 23:49:43 +0200945 b_adv(s->req->buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200946
Willy Tarreauefb453c2008-10-26 20:49:47 +0100947 if (!path)
948 return;
949
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100950 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100951 return;
952
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100953 memcpy(trash.str + trash.len, path, len);
954 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100955
956 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100957 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
958 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100959 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100960 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
961 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100962 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100963
964 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200965 si_shutr(si);
966 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100967 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100968 si->state = SI_ST_CLO;
969
970 /* send the message */
Willy Tarreau570f2212013-06-10 16:42:09 +0200971 http_server_error(s, si, SN_ERR_LOCAL, SN_FINST_C, 302, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100972
973 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +0100974 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500975 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100976}
977
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100978/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100979 * that the server side is closed. Note that err_type is actually a
980 * bitmask, where almost only aborts may be cumulated with other
981 * values. We consider that aborted operations are more important
982 * than timeouts or errors due to the fact that nobody else in the
983 * logs might explain incomplete retries. All others should avoid
984 * being cumulated. It should normally not be possible to have multiple
985 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100986 * Note that connection errors appearing on the second request of a keep-alive
987 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100988 */
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100989void http_return_srv_error(struct session *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100990{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100991 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100992
993 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100994 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +0200995 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100996 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +0100997 http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100998 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
999 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001000 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001001 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001002 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001003 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001004 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q,
Willy Tarreau783f2582012-09-04 12:19:04 +02001005 503, http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001006 else if (err_type & SI_ET_CONN_TO)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001007 http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001008 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1009 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001010 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001011 http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C,
Willy Tarreau36346242014-02-24 18:26:30 +01001012 503, (s->flags & SN_SRV_REUSED) ? NULL :
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001013 http_error_message(s, HTTP_ERR_503));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001014 else if (err_type & SI_ET_CONN_RES)
1015 http_server_error(s, si, SN_ERR_RESOURCE, SN_FINST_C,
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001016 503, (s->txn.flags & TX_NOT_FIRST) ? NULL :
1017 http_error_message(s, HTTP_ERR_503));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001018 else /* SI_ET_CONN_OTHER and others */
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001019 http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C,
Willy Tarreau783f2582012-09-04 12:19:04 +02001020 500, http_error_message(s, HTTP_ERR_500));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001021}
1022
Willy Tarreau42250582007-04-01 01:30:43 +02001023extern const char sess_term_cond[8];
1024extern const char sess_fin_state[8];
1025extern const char *monthname[12];
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001026struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +01001027struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001028struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001029
Willy Tarreau117f59e2007-03-04 18:17:17 +01001030/*
1031 * Capture headers from message starting at <som> according to header list
1032 * <cap_hdr>, and fill the <idx> structure appropriately.
1033 */
1034void capture_headers(char *som, struct hdr_idx *idx,
1035 char **cap, struct cap_hdr *cap_hdr)
1036{
1037 char *eol, *sol, *col, *sov;
1038 int cur_idx;
1039 struct cap_hdr *h;
1040 int len;
1041
1042 sol = som + hdr_idx_first_pos(idx);
1043 cur_idx = hdr_idx_first_idx(idx);
1044
1045 while (cur_idx) {
1046 eol = sol + idx->v[cur_idx].len;
1047
1048 col = sol;
1049 while (col < eol && *col != ':')
1050 col++;
1051
1052 sov = col + 1;
1053 while (sov < eol && http_is_lws[(unsigned char)*sov])
1054 sov++;
1055
1056 for (h = cap_hdr; h; h = h->next) {
1057 if ((h->namelen == col - sol) &&
1058 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1059 if (cap[h->index] == NULL)
1060 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001061 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001062
1063 if (cap[h->index] == NULL) {
1064 Alert("HTTP capture : out of memory.\n");
1065 continue;
1066 }
1067
1068 len = eol - sov;
1069 if (len > h->len)
1070 len = h->len;
1071
1072 memcpy(cap[h->index], sov, len);
1073 cap[h->index][len]=0;
1074 }
1075 }
1076 sol = eol + idx->v[cur_idx].cr + 1;
1077 cur_idx = idx->v[cur_idx].next;
1078 }
1079}
1080
1081
Willy Tarreau42250582007-04-01 01:30:43 +02001082/* either we find an LF at <ptr> or we jump to <bad>.
1083 */
1084#define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0)
1085
1086/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1087 * otherwise to <http_msg_ood> with <state> set to <st>.
1088 */
1089#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1090 ptr++; \
1091 if (likely(ptr < end)) \
1092 goto good; \
1093 else { \
1094 state = (st); \
1095 goto http_msg_ood; \
1096 } \
1097 } while (0)
1098
1099
Willy Tarreaubaaee002006-06-26 02:48:02 +02001100/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001101 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001102 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1103 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1104 * will give undefined results.
1105 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1106 * and that msg->sol points to the beginning of the response.
1107 * If a complete line is found (which implies that at least one CR or LF is
1108 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1109 * returned indicating an incomplete line (which does not mean that parts have
1110 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1111 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1112 * upon next call.
1113 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001114 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001115 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1116 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001117 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001118 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001119const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001120 enum ht_state state, const char *ptr, const char *end,
1121 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001122{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001123 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001124
Willy Tarreau8973c702007-01-21 23:58:29 +01001125 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001126 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001127 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001128 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001129 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1130
1131 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001132 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001133 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1134 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001135 state = HTTP_MSG_ERROR;
1136 break;
1137
Willy Tarreau8973c702007-01-21 23:58:29 +01001138 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001139 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001140 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001141 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001142 goto http_msg_rpcode;
1143 }
1144 if (likely(HTTP_IS_SPHT(*ptr)))
1145 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1146 /* so it's a CR/LF, this is invalid */
Willy Tarreau7552c032009-03-01 11:10:40 +01001147 state = HTTP_MSG_ERROR;
1148 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001149
Willy Tarreau8973c702007-01-21 23:58:29 +01001150 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001151 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001152 if (likely(!HTTP_IS_LWS(*ptr)))
1153 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1154
1155 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001156 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001157 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1158 }
1159
1160 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001161 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001162 http_msg_rsp_reason:
1163 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001164 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001165 msg->sl.st.r_l = 0;
1166 goto http_msg_rpline_eol;
1167
Willy Tarreau8973c702007-01-21 23:58:29 +01001168 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001169 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001170 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001171 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001172 goto http_msg_rpreason;
1173 }
1174 if (likely(HTTP_IS_SPHT(*ptr)))
1175 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1176 /* so it's a CR/LF, so there is no reason phrase */
1177 goto http_msg_rsp_reason;
1178
Willy Tarreau8973c702007-01-21 23:58:29 +01001179 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001180 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001181 if (likely(!HTTP_IS_CRLF(*ptr)))
1182 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001183 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001184 http_msg_rpline_eol:
1185 /* We have seen the end of line. Note that we do not
1186 * necessarily have the \n yet, but at least we know that we
1187 * have EITHER \r OR \n, otherwise the response would not be
1188 * complete. We can then record the response length and return
1189 * to the caller which will be able to register it.
1190 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001191 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001192 return ptr;
1193
Willy Tarreau8973c702007-01-21 23:58:29 +01001194 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001195#ifdef DEBUG_FULL
Willy Tarreau8973c702007-01-21 23:58:29 +01001196 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1197 exit(1);
1198#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001199 ;
Willy Tarreau8973c702007-01-21 23:58:29 +01001200 }
1201
1202 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001203 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001204 if (ret_state)
1205 *ret_state = state;
1206 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001207 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001208 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001209}
1210
Willy Tarreau8973c702007-01-21 23:58:29 +01001211/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001212 * This function parses a request line between <ptr> and <end>, starting with
1213 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1214 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1215 * will give undefined results.
1216 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1217 * and that msg->sol points to the beginning of the request.
1218 * If a complete line is found (which implies that at least one CR or LF is
1219 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1220 * returned indicating an incomplete line (which does not mean that parts have
1221 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1222 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1223 * upon next call.
1224 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001225 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001226 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1227 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001228 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001229 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001230const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001231 enum ht_state state, const char *ptr, const char *end,
1232 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001233{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001234 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001235
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001236 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001237 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001238 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001239 if (likely(HTTP_IS_TOKEN(*ptr)))
1240 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001241
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001242 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001243 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001244 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1245 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001246
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001247 if (likely(HTTP_IS_CRLF(*ptr))) {
1248 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001249 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001250 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001251 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001252 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001253 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001254 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001255 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001256 msg->sl.rq.v_l = 0;
1257 goto http_msg_rqline_eol;
1258 }
Willy Tarreau7552c032009-03-01 11:10:40 +01001259 state = HTTP_MSG_ERROR;
1260 break;
1261
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001262 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001263 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001264 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001265 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001266 goto http_msg_rquri;
1267 }
1268 if (likely(HTTP_IS_SPHT(*ptr)))
1269 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1270 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1271 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001272
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001273 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001274 http_msg_rquri:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001275 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001276 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001277
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001278 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001279 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001280 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1281 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001282
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001283 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001284 /* non-ASCII chars are forbidden unless option
1285 * accept-invalid-http-request is enabled in the frontend.
1286 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001287 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001288 if (msg->err_pos < -1)
1289 goto invalid_char;
1290 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001291 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001292 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1293 }
1294
1295 if (likely(HTTP_IS_CRLF(*ptr))) {
1296 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1297 goto http_msg_req09_uri_e;
1298 }
1299
1300 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001301 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001302 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001303 state = HTTP_MSG_ERROR;
1304 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001305
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001306 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001307 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001308 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001309 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001310 goto http_msg_rqver;
1311 }
1312 if (likely(HTTP_IS_SPHT(*ptr)))
1313 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1314 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1315 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001316
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001317 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001318 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001319 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001320 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001321
1322 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001323 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001324 http_msg_rqline_eol:
1325 /* We have seen the end of line. Note that we do not
1326 * necessarily have the \n yet, but at least we know that we
1327 * have EITHER \r OR \n, otherwise the request would not be
1328 * complete. We can then record the request length and return
1329 * to the caller which will be able to register it.
1330 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001331 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001332 return ptr;
1333 }
1334
1335 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau7552c032009-03-01 11:10:40 +01001336 state = HTTP_MSG_ERROR;
1337 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001338
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001339 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001340#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001341 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1342 exit(1);
1343#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001344 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001345 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001346
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001347 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001348 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001349 if (ret_state)
1350 *ret_state = state;
1351 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001352 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001353 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001354}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001355
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001356/*
1357 * Returns the data from Authorization header. Function may be called more
1358 * than once so data is stored in txn->auth_data. When no header is found
1359 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001360 * searching again for something we are unable to find anyway. However, if
1361 * the result if valid, the cache is not reused because we would risk to
1362 * have the credentials overwritten by another session in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001363 */
1364
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001365/* This bufffer is initialized in the file 'src/haproxy.c'. This length is
1366 * set according to global.tune.bufsize.
1367 */
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001368char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001369
1370int
1371get_http_auth(struct session *s)
1372{
1373
1374 struct http_txn *txn = &s->txn;
1375 struct chunk auth_method;
1376 struct hdr_ctx ctx;
1377 char *h, *p;
1378 int len;
1379
1380#ifdef DEBUG_AUTH
1381 printf("Auth for session %p: %d\n", s, txn->auth.method);
1382#endif
1383
1384 if (txn->auth.method == HTTP_AUTH_WRONG)
1385 return 0;
1386
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001387 txn->auth.method = HTTP_AUTH_WRONG;
1388
1389 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001390
1391 if (txn->flags & TX_USE_PX_CONN) {
1392 h = "Proxy-Authorization";
1393 len = strlen(h);
1394 } else {
1395 h = "Authorization";
1396 len = strlen(h);
1397 }
1398
Willy Tarreau9b28e032012-10-12 23:49:43 +02001399 if (!http_find_header2(h, len, s->req->buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001400 return 0;
1401
1402 h = ctx.line + ctx.val;
1403
1404 p = memchr(h, ' ', ctx.vlen);
1405 if (!p || p == h)
1406 return 0;
1407
1408 chunk_initlen(&auth_method, h, 0, p-h);
1409 chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1);
1410
1411 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1412
1413 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001414 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001415
1416 if (len < 0)
1417 return 0;
1418
1419
1420 get_http_auth_buff[len] = '\0';
1421
1422 p = strchr(get_http_auth_buff, ':');
1423
1424 if (!p)
1425 return 0;
1426
1427 txn->auth.user = get_http_auth_buff;
1428 *p = '\0';
1429 txn->auth.pass = p+1;
1430
1431 txn->auth.method = HTTP_AUTH_BASIC;
1432 return 1;
1433 }
1434
1435 return 0;
1436}
1437
Willy Tarreau58f10d72006-12-04 02:26:12 +01001438
Willy Tarreau8973c702007-01-21 23:58:29 +01001439/*
1440 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001441 * depending on the initial msg->msg_state. The caller is responsible for
1442 * ensuring that the message does not wrap. The function can be preempted
1443 * everywhere when data are missing and recalled at the exact same location
1444 * with no information loss. The message may even be realigned between two
1445 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001446 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001447 * fields. Note that msg->sol will be initialized after completing the first
1448 * state, so that none of the msg pointers has to be initialized prior to the
1449 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001450 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001451void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001452{
Willy Tarreau3770f232013-12-07 00:01:53 +01001453 enum ht_state state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001454 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001455 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001456
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001457 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001458 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001459 ptr = buf->p + msg->next;
1460 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001461
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001462 if (unlikely(ptr >= end))
1463 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001464
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001465 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001466 /*
1467 * First, states that are specific to the response only.
1468 * We check them first so that request and headers are
1469 * closer to each other (accessed more often).
1470 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001471 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001472 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001473 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001474 /* we have a start of message, but we have to check
1475 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001476 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001477 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001478 if (unlikely(ptr != buf->p)) {
1479 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001480 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001481 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001482 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001483 }
Willy Tarreau26927362012-05-18 23:22:52 +02001484 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001485 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001486 hdr_idx_init(idx);
1487 state = HTTP_MSG_RPVER;
1488 goto http_msg_rpver;
1489 }
1490
1491 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1492 goto http_msg_invalid;
1493
1494 if (unlikely(*ptr == '\n'))
1495 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1496 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1497 /* stop here */
1498
Willy Tarreau8973c702007-01-21 23:58:29 +01001499 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001500 http_msg_rpbefore_cr:
Willy Tarreau8973c702007-01-21 23:58:29 +01001501 EXPECT_LF_HERE(ptr, http_msg_invalid);
1502 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1503 /* stop here */
1504
Willy Tarreau8973c702007-01-21 23:58:29 +01001505 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001506 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001507 case HTTP_MSG_RPVER_SP:
1508 case HTTP_MSG_RPCODE:
1509 case HTTP_MSG_RPCODE_SP:
1510 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001511 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001512 state, ptr, end,
1513 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001514 if (unlikely(!ptr))
1515 return;
1516
1517 /* we have a full response and we know that we have either a CR
1518 * or an LF at <ptr>.
1519 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001520 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1521
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001522 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001523 if (likely(*ptr == '\r'))
1524 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1525 goto http_msg_rpline_end;
1526
Willy Tarreau8973c702007-01-21 23:58:29 +01001527 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001528 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001529 /* msg->sol must point to the first of CR or LF. */
1530 EXPECT_LF_HERE(ptr, http_msg_invalid);
1531 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1532 /* stop here */
1533
1534 /*
1535 * Second, states that are specific to the request only
1536 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001537 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001538 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001539 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001540 /* we have a start of message, but we have to check
1541 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001542 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001543 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001544 if (likely(ptr != buf->p)) {
1545 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001546 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001547 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001548 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001549 }
Willy Tarreau26927362012-05-18 23:22:52 +02001550 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001551 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001552 state = HTTP_MSG_RQMETH;
1553 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001554 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001555
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001556 if (unlikely(!HTTP_IS_CRLF(*ptr)))
1557 goto http_msg_invalid;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001558
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001559 if (unlikely(*ptr == '\n'))
1560 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1561 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001562 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001563
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001564 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001565 http_msg_rqbefore_cr:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001566 EXPECT_LF_HERE(ptr, http_msg_invalid);
1567 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001568 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001569
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001570 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001571 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001572 case HTTP_MSG_RQMETH_SP:
1573 case HTTP_MSG_RQURI:
1574 case HTTP_MSG_RQURI_SP:
1575 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001576 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001577 state, ptr, end,
1578 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001579 if (unlikely(!ptr))
1580 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001581
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001582 /* we have a full request and we know that we have either a CR
1583 * or an LF at <ptr>.
1584 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001585 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001586
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001587 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001588 if (likely(*ptr == '\r'))
1589 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001590 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001591
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001592 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001593 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001594 /* check for HTTP/0.9 request : no version information available.
1595 * msg->sol must point to the first of CR or LF.
1596 */
1597 if (unlikely(msg->sl.rq.v_l == 0))
1598 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001599
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001600 EXPECT_LF_HERE(ptr, http_msg_invalid);
1601 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001602 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001603
Willy Tarreau8973c702007-01-21 23:58:29 +01001604 /*
1605 * Common states below
1606 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001607 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001608 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001609 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001610 if (likely(!HTTP_IS_CRLF(*ptr))) {
1611 goto http_msg_hdr_name;
1612 }
1613
1614 if (likely(*ptr == '\r'))
1615 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1616 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001617
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001618 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001619 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001620 /* assumes msg->sol points to the first char */
1621 if (likely(HTTP_IS_TOKEN(*ptr)))
1622 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001623
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001624 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001625 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001626
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001627 if (likely(msg->err_pos < -1) || *ptr == '\n')
1628 goto http_msg_invalid;
1629
1630 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001631 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001632
1633 /* and we still accept this non-token character */
1634 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001635
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001636 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001637 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001638 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001639 if (likely(HTTP_IS_SPHT(*ptr)))
1640 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001641
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001642 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001643 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001644
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001645 if (likely(!HTTP_IS_CRLF(*ptr))) {
1646 goto http_msg_hdr_val;
1647 }
1648
1649 if (likely(*ptr == '\r'))
1650 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1651 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001652
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001653 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001654 http_msg_hdr_l1_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001655 EXPECT_LF_HERE(ptr, http_msg_invalid);
1656 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001657
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001658 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001659 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001660 if (likely(HTTP_IS_SPHT(*ptr))) {
1661 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001662 for (; buf->p + msg->sov < ptr; msg->sov++)
1663 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001664 goto http_msg_hdr_l1_sp;
1665 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001666 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001667 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001668 goto http_msg_complete_header;
1669
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001670 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001671 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001672 /* assumes msg->sol points to the first char, and msg->sov
1673 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 */
1675 if (likely(!HTTP_IS_CRLF(*ptr)))
1676 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001677
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001678 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001679 /* Note: we could also copy eol into ->eoh so that we have the
1680 * real header end in case it ends with lots of LWS, but is this
1681 * really needed ?
1682 */
1683 if (likely(*ptr == '\r'))
1684 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
1685 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001686
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001687 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001688 http_msg_hdr_l2_lf:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001689 EXPECT_LF_HERE(ptr, http_msg_invalid);
1690 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001691
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001692 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001693 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001694 if (unlikely(HTTP_IS_SPHT(*ptr))) {
1695 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001696 for (; buf->p + msg->eol < ptr; msg->eol++)
1697 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001698 goto http_msg_hdr_val;
1699 }
1700 http_msg_complete_header:
1701 /*
1702 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001703 * Assumes msg->sol points to the first char, msg->sov points
1704 * to the first character of the value and msg->eol to the
1705 * first CR or LF so we know how the line ends. We insert last
1706 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001707 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001708 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001709 idx, idx->tail) < 0))
1710 goto http_msg_invalid;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001711
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001712 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001713 if (likely(!HTTP_IS_CRLF(*ptr))) {
1714 goto http_msg_hdr_name;
1715 }
1716
1717 if (likely(*ptr == '\r'))
1718 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1719 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001720
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001721 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001722 http_msg_last_lf:
Willy Tarreau0558a022014-03-13 15:48:45 +01001723 /* Assumes msg->sol points to the first of either CR or LF.
1724 * Sets ->sov and ->next to the total header length, ->eoh to
1725 * the last CRLF, and ->eol to the last CRLF length (1 or 2).
1726 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001727 EXPECT_LF_HERE(ptr, http_msg_invalid);
1728 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001729 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01001730 msg->eoh = msg->sol;
1731 msg->sol = 0;
Willy Tarreau0558a022014-03-13 15:48:45 +01001732 msg->eol = msg->sov - msg->eoh;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001733 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001734 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02001735
1736 case HTTP_MSG_ERROR:
1737 /* this may only happen if we call http_msg_analyser() twice with an error */
1738 break;
1739
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001740 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001741#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001742 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1743 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001744#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001745 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001746 }
1747 http_msg_ood:
1748 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001749 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001750 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001751 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001752
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001753 http_msg_invalid:
1754 /* invalid message */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001755 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001756 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001757 return;
1758}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001759
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001760/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
1761 * conversion succeeded, 0 in case of error. If the request was already 1.X,
1762 * nothing is done and 1 is returned.
1763 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001764static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001765{
1766 int delta;
1767 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01001768 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001769
1770 if (msg->sl.rq.v_l != 0)
1771 return 1;
1772
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001773 /* RFC 1945 allows only GET for HTTP/0.9 requests */
1774 if (txn->meth != HTTP_METH_GET)
1775 return 0;
1776
Willy Tarreau9b28e032012-10-12 23:49:43 +02001777 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001778 delta = 0;
1779
1780 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03001781 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
1782 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001783 }
1784 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001785 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01001786 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001787 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001788 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001789 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001790 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001791 NULL, NULL);
1792 if (unlikely(!cur_end))
1793 return 0;
1794
1795 /* we have a full HTTP/1.0 request now and we know that
1796 * we have either a CR or an LF at <ptr>.
1797 */
1798 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
1799 return 1;
1800}
1801
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001802/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001803 * and "keep-alive" values. If we already know that some headers may safely
1804 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001805 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
1806 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01001807 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001808 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
1809 * found, and TX_CON_*_SET is adjusted depending on what is left so only
1810 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001811 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01001812 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001813void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01001814{
Willy Tarreau5b154472009-12-21 20:11:07 +01001815 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001816 const char *hdr_val = "Connection";
1817 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01001818
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001819 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01001820 return;
1821
Willy Tarreau88d349d2010-01-25 12:15:43 +01001822 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1823 hdr_val = "Proxy-Connection";
1824 hdr_len = 16;
1825 }
1826
Willy Tarreau5b154472009-12-21 20:11:07 +01001827 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001828 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001829 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001830 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1831 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001832 if (to_del & 2)
1833 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001834 else
1835 txn->flags |= TX_CON_KAL_SET;
1836 }
1837 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1838 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001839 if (to_del & 1)
1840 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001841 else
1842 txn->flags |= TX_CON_CLO_SET;
1843 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01001844 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
1845 txn->flags |= TX_HDR_CONN_UPG;
1846 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001847 }
1848
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001849 txn->flags |= TX_HDR_CONN_PRS;
1850 return;
1851}
Willy Tarreau5b154472009-12-21 20:11:07 +01001852
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001853/* Apply desired changes on the Connection: header. Values may be removed and/or
1854 * added depending on the <wanted> flags, which are exclusively composed of
1855 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
1856 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
1857 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001858void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001859{
1860 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001861 const char *hdr_val = "Connection";
1862 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001863
1864 ctx.idx = 0;
1865
Willy Tarreau88d349d2010-01-25 12:15:43 +01001866
1867 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1868 hdr_val = "Proxy-Connection";
1869 hdr_len = 16;
1870 }
1871
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001872 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001873 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001874 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
1875 if (wanted & TX_CON_KAL_SET)
1876 txn->flags |= TX_CON_KAL_SET;
1877 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001878 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01001879 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001880 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
1881 if (wanted & TX_CON_CLO_SET)
1882 txn->flags |= TX_CON_CLO_SET;
1883 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001884 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01001885 }
Willy Tarreau5b154472009-12-21 20:11:07 +01001886 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001887
1888 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
1889 return;
1890
1891 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
1892 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001893 hdr_val = "Connection: close";
1894 hdr_len = 17;
1895 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1896 hdr_val = "Proxy-Connection: close";
1897 hdr_len = 23;
1898 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001899 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001900 }
1901
1902 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
1903 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001904 hdr_val = "Connection: keep-alive";
1905 hdr_len = 22;
1906 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
1907 hdr_val = "Proxy-Connection: keep-alive";
1908 hdr_len = 28;
1909 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01001910 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01001911 }
1912 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01001913}
1914
Willy Tarreauc24715e2014-04-17 15:21:20 +02001915/* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to
1916 * the first byte of data after the chunk size, so that we know we can forward
1917 * exactly msg->next bytes. msg->sol contains the exact number of bytes forming
1918 * the chunk size. That way it is always possible to differentiate between the
1919 * start of the body and the start of the data.
Willy Tarreau115acb92009-12-26 13:56:06 +01001920 * Return >0 on success, 0 when some data is missing, <0 on error.
Willy Tarreaud98cf932009-12-27 22:54:55 +01001921 * Note: this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01001922 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02001923static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01001924{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001925 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001926 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01001927 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001928 const char *end = buf->data + buf->size;
1929 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01001930 unsigned int chunk = 0;
1931
1932 /* The chunk size is in the following form, though we are only
1933 * interested in the size and CRLF :
1934 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
1935 */
1936 while (1) {
1937 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001938 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001939 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001940 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01001941 if (c < 0) /* not a hex digit anymore */
1942 break;
Willy Tarreau0161d622013-04-02 01:26:55 +02001943 if (unlikely(++ptr >= end))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001944 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01001945 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001946 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001947 chunk = (chunk << 4) + c;
1948 }
1949
Willy Tarreaud98cf932009-12-27 22:54:55 +01001950 /* empty size not allowed */
Willy Tarreau0161d622013-04-02 01:26:55 +02001951 if (unlikely(ptr == ptr_old))
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001952 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001953
1954 while (http_is_spht[(unsigned char)*ptr]) {
1955 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001956 ptr = buf->data;
Willy Tarreau0161d622013-04-02 01:26:55 +02001957 if (unlikely(ptr == stop))
Willy Tarreau115acb92009-12-26 13:56:06 +01001958 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01001959 }
1960
Willy Tarreaud98cf932009-12-27 22:54:55 +01001961 /* Up to there, we know that at least one byte is present at *ptr. Check
1962 * for the end of chunk size.
1963 */
1964 while (1) {
1965 if (likely(HTTP_IS_CRLF(*ptr))) {
1966 /* we now have a CR or an LF at ptr */
1967 if (likely(*ptr == '\r')) {
1968 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001969 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001970 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001971 return 0;
1972 }
Willy Tarreau115acb92009-12-26 13:56:06 +01001973
Willy Tarreaud98cf932009-12-27 22:54:55 +01001974 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001975 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001976 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001977 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001978 /* done */
1979 break;
1980 }
1981 else if (*ptr == ';') {
1982 /* chunk extension, ends at next CRLF */
1983 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001984 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001985 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01001986 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01001987
1988 while (!HTTP_IS_CRLF(*ptr)) {
1989 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001990 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01001991 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01001992 return 0;
1993 }
1994 /* we have a CRLF now, loop above */
1995 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01001996 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01001997 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01001998 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01001999 }
2000
Willy Tarreaud98cf932009-12-27 22:54:55 +01002001 /* OK we found our CRLF and now <ptr> points to the next byte,
Willy Tarreauc24715e2014-04-17 15:21:20 +02002002 * which may or may not be present. We save that into ->next,
2003 * and the number of bytes parsed into msg->sol.
Willy Tarreau115acb92009-12-26 13:56:06 +01002004 */
Willy Tarreauc24715e2014-04-17 15:21:20 +02002005 msg->sol = ptr - ptr_old;
Willy Tarreau0161d622013-04-02 01:26:55 +02002006 if (unlikely(ptr < ptr_old))
Willy Tarreauc24715e2014-04-17 15:21:20 +02002007 msg->sol += buf->size;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002008 msg->next = buffer_count(buf, buf->p, ptr);
Willy Tarreau124d9912011-03-01 20:30:48 +01002009 msg->chunk_len = chunk;
2010 msg->body_len += chunk;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002011 msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreau115acb92009-12-26 13:56:06 +01002012 return 1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002013 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002014 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002015 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002016}
2017
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002018/* This function skips trailers in the buffer associated with HTTP
Willy Tarreaua458b672012-03-05 11:17:50 +01002019 * message <msg>. The first visited position is msg->next. If the end of
Willy Tarreaud98cf932009-12-27 22:54:55 +01002020 * the trailers is found, it is automatically scheduled to be forwarded,
2021 * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0.
2022 * If not enough data are available, the function does not change anything
Willy Tarreauc24715e2014-04-17 15:21:20 +02002023 * except maybe msg->next if it could parse some lines, and returns zero.
2024 * If a parse error is encountered, the function returns < 0 and does not
2025 * change anything except maybe msg->next. Note that the message must
2026 * already be in HTTP_MSG_TRAILERS state before calling this function,
Willy Tarreau638cd022010-01-03 07:42:04 +01002027 * which implies that all non-trailers data have already been scheduled for
Willy Tarreauc24715e2014-04-17 15:21:20 +02002028 * forwarding, and that msg->next exactly matches the length of trailers
2029 * already parsed and not forwarded. It is also important to note that this
2030 * function is designed to be able to parse wrapped headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002031 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002032static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002033{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002034 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002035
Willy Tarreaua458b672012-03-05 11:17:50 +01002036 /* we have msg->next which points to next line. Look for CRLF. */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002037 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002038 const char *p1 = NULL, *p2 = NULL;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002039 const char *ptr = b_ptr(buf, msg->next);
2040 const char *stop = bi_end(buf);
Willy Tarreau638cd022010-01-03 07:42:04 +01002041 int bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002042
2043 /* scan current line and stop at LF or CRLF */
2044 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002045 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002046 return 0;
2047
2048 if (*ptr == '\n') {
2049 if (!p1)
2050 p1 = ptr;
2051 p2 = ptr;
2052 break;
2053 }
2054
2055 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002056 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002057 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002058 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002059 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002060 p1 = ptr;
2061 }
2062
2063 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002064 if (ptr >= buf->data + buf->size)
2065 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002066 }
2067
2068 /* after LF; point to beginning of next line */
2069 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002070 if (p2 >= buf->data + buf->size)
2071 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002072
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002073 bytes = p2 - b_ptr(buf, msg->next);
Willy Tarreau638cd022010-01-03 07:42:04 +01002074 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002075 bytes += buf->size;
Willy Tarreau638cd022010-01-03 07:42:04 +01002076
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002077 if (p1 == b_ptr(buf, msg->next)) {
Willy Tarreau638cd022010-01-03 07:42:04 +01002078 /* LF/CRLF at beginning of line => end of trailers at p2.
2079 * Everything was scheduled for forwarding, there's nothing
2080 * left from this message.
Willy Tarreau5523b322009-12-29 12:05:52 +01002081 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002082 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002083 msg->msg_state = HTTP_MSG_DONE;
2084 return 1;
2085 }
2086 /* OK, next line then */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002087 msg->next = buffer_count(buf, buf->p, p2);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002088 }
2089}
2090
Willy Tarreauc24715e2014-04-17 15:21:20 +02002091/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF
2092 * or a possible LF alone at the end of a chunk. It automatically adjusts
2093 * msg->next in order to include this part into the next forwarding phase.
Willy Tarreaua458b672012-03-05 11:17:50 +01002094 * Note that the caller must ensure that ->p points to the first byte to parse.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002095 * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If
2096 * not enough data are available, the function does not change anything and
2097 * returns zero. If a parse error is encountered, the function returns < 0 and
2098 * does not change anything. Note: this function is designed to parse wrapped
2099 * CRLF at the end of the buffer.
2100 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002101static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002102{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002103 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002104 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002105 int bytes;
2106
2107 /* NB: we'll check data availabilty at the end. It's not a
2108 * problem because whatever we match first will be checked
2109 * against the correct length.
2110 */
2111 bytes = 1;
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002112 ptr = b_ptr(buf, msg->next);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002113 if (*ptr == '\r') {
2114 bytes++;
2115 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002116 if (ptr >= buf->data + buf->size)
2117 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002118 }
2119
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002120 if (msg->next + bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002121 return 0;
2122
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002123 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002124 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002125 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002126 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002127
2128 ptr++;
Willy Tarreau0161d622013-04-02 01:26:55 +02002129 if (unlikely(ptr >= buf->data + buf->size))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002130 ptr = buf->data;
Willy Tarreauc24715e2014-04-17 15:21:20 +02002131 /* Advance ->next to allow the CRLF to be forwarded */
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002132 msg->next += bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002133 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
2134 return 1;
2135}
Willy Tarreau5b154472009-12-21 20:11:07 +01002136
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002137/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
2138 * value is larger than 1000, it is bound to 1000. The parser consumes up to
2139 * 1 digit, one dot and 3 digits and stops on the first invalid character.
2140 * Unparsable qvalues return 1000 as "q=1.000".
2141 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002142int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002143{
2144 int q = 1000;
2145
2146 if (!isdigit(*qvalue))
2147 goto out;
2148 q = (*qvalue++ - '0') * 1000;
2149
2150 if (*qvalue++ != '.')
2151 goto out;
2152
2153 if (!isdigit(*qvalue))
2154 goto out;
2155 q += (*qvalue++ - '0') * 100;
2156
2157 if (!isdigit(*qvalue))
2158 goto out;
2159 q += (*qvalue++ - '0') * 10;
2160
2161 if (!isdigit(*qvalue))
2162 goto out;
2163 q += (*qvalue++ - '0') * 1;
2164 out:
2165 if (q > 1000)
2166 q = 1000;
Willy Tarreau38b3aa52014-04-22 23:32:05 +02002167 if (end)
Thierry FOURNIERad903512014-04-11 17:51:01 +02002168 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002169 return q;
2170}
William Lallemand82fe75c2012-10-23 10:25:10 +02002171
2172/*
2173 * Selects a compression algorithm depending on the client request.
Willy Tarreau05d84602012-10-26 02:11:25 +02002174 */
William Lallemand82fe75c2012-10-23 10:25:10 +02002175int select_compression_request_header(struct session *s, struct buffer *req)
2176{
2177 struct http_txn *txn = &s->txn;
Willy Tarreau70737d12012-10-27 00:34:28 +02002178 struct http_msg *msg = &txn->req;
William Lallemand82fe75c2012-10-23 10:25:10 +02002179 struct hdr_ctx ctx;
2180 struct comp_algo *comp_algo = NULL;
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002181 struct comp_algo *comp_algo_back = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002182
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002183 /* Disable compression for older user agents announcing themselves as "Mozilla/4"
2184 * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later).
Willy Tarreau05d84602012-10-26 02:11:25 +02002185 * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details.
2186 */
2187 ctx.idx = 0;
2188 if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) &&
2189 ctx.vlen >= 9 &&
Finn Arne Gangstadcbb9a4b2012-10-29 21:43:01 +01002190 memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 &&
2191 (ctx.vlen < 31 ||
2192 memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 ||
2193 ctx.line[ctx.val + 30] < '6' ||
2194 (ctx.line[ctx.val + 30] == '6' &&
2195 (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) {
2196 s->comp_algo = NULL;
2197 return 0;
Willy Tarreau05d84602012-10-26 02:11:25 +02002198 }
2199
William Lallemand82fe75c2012-10-23 10:25:10 +02002200 /* search for the algo in the backend in priority or the frontend */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002201 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002202 int best_q = 0;
2203
William Lallemand82fe75c2012-10-23 10:25:10 +02002204 ctx.idx = 0;
2205 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002206 const char *qval;
2207 int q;
2208 int toklen;
2209
2210 /* try to isolate the token from the optional q-value */
2211 toklen = 0;
2212 while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)])
2213 toklen++;
2214
2215 qval = ctx.line + ctx.val + toklen;
2216 while (1) {
2217 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2218 qval++;
2219
2220 if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') {
2221 qval = NULL;
2222 break;
2223 }
2224 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002225
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002226 while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval])
2227 qval++;
Willy Tarreau70737d12012-10-27 00:34:28 +02002228
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002229 if (qval >= ctx.line + ctx.val + ctx.vlen) {
2230 qval = NULL;
2231 break;
William Lallemand82fe75c2012-10-23 10:25:10 +02002232 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002233 if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0)
2234 break;
2235
2236 while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';')
2237 qval++;
2238 }
2239
2240 /* here we have qval pointing to the first "q=" attribute or NULL if not found */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002241 q = qval ? parse_qvalue(qval + 2, NULL) : 1000;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002242
2243 if (q <= best_q)
2244 continue;
2245
2246 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
2247 if (*(ctx.line + ctx.val) == '*' ||
2248 word_match(ctx.line + ctx.val, toklen, comp_algo->name, comp_algo->name_len)) {
2249 s->comp_algo = comp_algo;
2250 best_q = q;
2251 break;
2252 }
2253 }
2254 }
2255 }
2256
2257 /* remove all occurrences of the header when "compression offload" is set */
2258 if (s->comp_algo) {
2259 if ((s->be->comp && s->be->comp->offload) || (s->fe->comp && s->fe->comp->offload)) {
2260 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2261 ctx.idx = 0;
2262 while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) {
2263 http_remove_header2(msg, &txn->hdr_idx, &ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +02002264 }
2265 }
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002266 return 1;
William Lallemand82fe75c2012-10-23 10:25:10 +02002267 }
2268
2269 /* identity is implicit does not require headers */
Willy Tarreau3c7b97b2012-10-26 14:50:26 +02002270 if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) {
2271 for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002272 if (comp_algo->add_data == identity_add_data) {
2273 s->comp_algo = comp_algo;
2274 return 1;
2275 }
2276 }
2277 }
2278
2279 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002280 return 0;
2281}
2282
2283/*
2284 * Selects a comression algorithm depending of the server response.
2285 */
2286int select_compression_response_header(struct session *s, struct buffer *res)
2287{
2288 struct http_txn *txn = &s->txn;
2289 struct http_msg *msg = &txn->rsp;
2290 struct hdr_ctx ctx;
2291 struct comp_type *comp_type;
William Lallemand82fe75c2012-10-23 10:25:10 +02002292
2293 /* no common compression algorithm was found in request header */
2294 if (s->comp_algo == NULL)
2295 goto fail;
2296
2297 /* HTTP < 1.1 should not be compressed */
Willy Tarreau72575502013-12-24 14:41:35 +01002298 if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11))
William Lallemand82fe75c2012-10-23 10:25:10 +02002299 goto fail;
2300
William Lallemandd3002612012-11-26 14:34:47 +01002301 /* 200 only */
2302 if (txn->status != 200)
2303 goto fail;
2304
William Lallemand82fe75c2012-10-23 10:25:10 +02002305 /* Content-Length is null */
2306 if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0)
2307 goto fail;
2308
2309 /* content is already compressed */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002310 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002311 if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx))
2312 goto fail;
2313
Willy Tarreau56e9ffa2013-01-05 16:20:35 +01002314 /* no compression when Cache-Control: no-transform is present in the message */
2315 ctx.idx = 0;
2316 while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) {
2317 if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12))
2318 goto fail;
2319 }
2320
William Lallemand82fe75c2012-10-23 10:25:10 +02002321 comp_type = NULL;
2322
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002323 /* we don't want to compress multipart content-types, nor content-types that are
2324 * not listed in the "compression type" directive if any. If no content-type was
2325 * found but configuration requires one, we don't compress either. Backend has
2326 * the priority.
William Lallemand82fe75c2012-10-23 10:25:10 +02002327 */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002328 ctx.idx = 0;
2329 if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) {
2330 if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0)
2331 goto fail;
2332
2333 if ((s->be->comp && (comp_type = s->be->comp->types)) ||
2334 (s->fe->comp && (comp_type = s->fe->comp->types))) {
William Lallemand82fe75c2012-10-23 10:25:10 +02002335 for (; comp_type; comp_type = comp_type->next) {
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002336 if (ctx.vlen >= comp_type->name_len &&
2337 strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0)
William Lallemand82fe75c2012-10-23 10:25:10 +02002338 /* this Content-Type should be compressed */
2339 break;
2340 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002341 /* this Content-Type should not be compressed */
2342 if (comp_type == NULL)
2343 goto fail;
William Lallemand82fe75c2012-10-23 10:25:10 +02002344 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002345 }
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002346 else { /* no content-type header */
2347 if ((s->be->comp && s->be->comp->types) || (s->fe->comp && s->fe->comp->types))
2348 goto fail; /* a content-type was required */
William Lallemandd3002612012-11-26 14:34:47 +01002349 }
2350
William Lallemandd85f9172012-11-09 17:05:39 +01002351 /* limit compression rate */
2352 if (global.comp_rate_lim > 0)
2353 if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim)
2354 goto fail;
2355
William Lallemand072a2bf2012-11-20 17:01:01 +01002356 /* limit cpu usage */
2357 if (idle_pct < compress_min_idle)
2358 goto fail;
2359
William Lallemand4c49fae2012-11-07 15:00:23 +01002360 /* initialize compression */
William Lallemandf3747832012-11-09 12:33:10 +01002361 if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0)
William Lallemand4c49fae2012-11-07 15:00:23 +01002362 goto fail;
2363
William Lallemandec3e3892012-11-12 17:02:18 +01002364 s->flags |= SN_COMP_READY;
2365
William Lallemand82fe75c2012-10-23 10:25:10 +02002366 /* remove Content-Length header */
Willy Tarreau0a80a8d2012-11-26 16:33:37 +01002367 ctx.idx = 0;
William Lallemand82fe75c2012-10-23 10:25:10 +02002368 if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx))
2369 http_remove_header2(msg, &txn->hdr_idx, &ctx);
2370
2371 /* add Transfer-Encoding header */
2372 if (!(msg->flags & HTTP_MSGF_TE_CHNK))
2373 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26);
2374
2375 /*
2376 * Add Content-Encoding header when it's not identity encoding.
2377 * RFC 2616 : Identity encoding: This content-coding is used only in the
2378 * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding
2379 * header.
2380 */
2381 if (s->comp_algo->add_data != identity_add_data) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002382 trash.len = 18;
2383 memcpy(trash.str, "Content-Encoding: ", trash.len);
2384 memcpy(trash.str + trash.len, s->comp_algo->name, s->comp_algo->name_len);
2385 trash.len += s->comp_algo->name_len;
2386 trash.str[trash.len] = '\0';
2387 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
William Lallemand82fe75c2012-10-23 10:25:10 +02002388 }
William Lallemand82fe75c2012-10-23 10:25:10 +02002389 return 1;
2390
2391fail:
Willy Tarreaub97b6192012-11-19 14:55:02 +01002392 s->comp_algo = NULL;
William Lallemand82fe75c2012-10-23 10:25:10 +02002393 return 0;
2394}
2395
2396
Willy Tarreaud787e662009-07-07 10:14:51 +02002397/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2398 * processing can continue on next analysers, or zero if it either needs more
2399 * data or wants to immediately abort the request (eg: timeout, error, ...). It
2400 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers
2401 * when it has nothing left to do, and may remove any analyser when it wants to
2402 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002403 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02002404int http_wait_for_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002405{
Willy Tarreau59234e92008-11-30 23:51:27 +01002406 /*
2407 * We will parse the partial (or complete) lines.
2408 * We will check the request syntax, and also join multi-line
2409 * headers. An index of all the lines will be elaborated while
2410 * parsing.
2411 *
2412 * For the parsing, we use a 28 states FSM.
2413 *
2414 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002415 * req->buf->p = beginning of request
2416 * req->buf->p + msg->eoh = end of processed headers / start of current one
2417 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002418 * msg->eol = end of current header or line (LF or CRLF)
2419 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002420 *
2421 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreau877e78d2013-04-07 18:48:08 +02002422 * we will set a few fields (txn->meth, sn->flags/SN_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +02002423 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2424 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002425 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002426
Willy Tarreau59234e92008-11-30 23:51:27 +01002427 int cur_idx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002428 int use_close_only;
Willy Tarreau59234e92008-11-30 23:51:27 +01002429 struct http_txn *txn = &s->txn;
2430 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002431 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002432
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002433 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01002434 now_ms, __FUNCTION__,
2435 s,
2436 req,
2437 req->rex, req->wex,
2438 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002439 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002440 req->analysers);
2441
Willy Tarreau52a0c602009-08-16 22:45:38 +02002442 /* we're speaking HTTP here, so let's speak HTTP to the client */
2443 s->srv_error = http_return_srv_error;
2444
Willy Tarreau83e3af02009-12-28 17:39:57 +01002445 /* There's a protected area at the end of the buffer for rewriting
2446 * purposes. We don't want to start to parse the request if the
2447 * protected area is affected, because we may have to move processed
2448 * data later, which is much more complicated.
2449 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002450 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02002451 if (txn->flags & TX_NOT_FIRST) {
2452 if (unlikely(!channel_reserved(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002453 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002454 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002455 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002456 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002457 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002458 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002459 return 0;
2460 }
Willy Tarreau379357a2013-06-08 12:55:46 +02002461 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2462 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
2463 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002464 }
2465
Willy Tarreau065e8332010-01-08 00:30:20 +01002466 /* Note that we have the same problem with the response ; we
2467 * may want to send a redirect, error or anything which requires
2468 * some spare space. So we'll ensure that we have at least
2469 * maxrewrite bytes available in the response buffer before
2470 * processing that one. This will only affect pipelined
2471 * keep-alive requests.
2472 */
2473 if ((txn->flags & TX_NOT_FIRST) &&
Willy Tarreau379357a2013-06-08 12:55:46 +02002474 unlikely(!channel_reserved(s->rep) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02002475 bi_end(s->rep->buf) < b_ptr(s->rep->buf, txn->rsp.next) ||
2476 bi_end(s->rep->buf) > s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)) {
2477 if (s->rep->buf->o) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002478 if (s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002479 goto failed_keep_alive;
Willy Tarreau065e8332010-01-08 00:30:20 +01002480 /* don't let a connection request be initiated */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002481 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002482 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002483 s->rep->flags |= CF_WAKE_WRITE;
Willy Tarreau0499e352010-12-17 07:13:42 +01002484 s->rep->analysers |= an_bit; /* wake us up once it changes */
Willy Tarreau065e8332010-01-08 00:30:20 +01002485 return 0;
2486 }
2487 }
2488
Willy Tarreau9b28e032012-10-12 23:49:43 +02002489 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002490 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002491 }
2492
Willy Tarreau59234e92008-11-30 23:51:27 +01002493 /* 1: we might have to print this header in debug mode */
2494 if (unlikely((global.mode & MODE_DEBUG) &&
2495 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01002496 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002497 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002498
Willy Tarreau9b28e032012-10-12 23:49:43 +02002499 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002500 /* this is a bit complex : in case of error on the request line,
2501 * we know that rq.l is still zero, so we display only the part
2502 * up to the end of the line (truncated by debug_hdr).
2503 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002504 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002505 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002506
Willy Tarreau59234e92008-11-30 23:51:27 +01002507 sol += hdr_idx_first_pos(&txn->hdr_idx);
2508 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002509
Willy Tarreau59234e92008-11-30 23:51:27 +01002510 while (cur_idx) {
2511 eol = sol + txn->hdr_idx.v[cur_idx].len;
2512 debug_hdr("clihdr", s, sol, eol);
2513 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2514 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002515 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002516 }
2517
Willy Tarreau58f10d72006-12-04 02:26:12 +01002518
Willy Tarreau59234e92008-11-30 23:51:27 +01002519 /*
2520 * Now we quickly check if we have found a full valid request.
2521 * If not so, we check the FD and buffer states before leaving.
2522 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002523 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002524 * requests are checked first. When waiting for a second request
2525 * on a keep-alive session, if we encounter and error, close, t/o,
2526 * we note the error in the session flags but don't set any state.
2527 * Since the error will be noted there, it will not be counted by
2528 * process_session() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002529 * Last, we may increase some tracked counters' http request errors on
2530 * the cases that are deliberately the client's fault. For instance,
2531 * a timeout or connection reset is not counted as an error. However
2532 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002533 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002534
Willy Tarreau655dce92009-11-08 13:10:58 +01002535 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002536 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002537 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002538 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002539 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreauda7ff642010-06-23 11:44:09 +02002540 session_inc_http_req_ctr(s);
2541 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002542 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002543 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002544 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002545
Willy Tarreau59234e92008-11-30 23:51:27 +01002546 /* 1: Since we are in header mode, if there's no space
2547 * left for headers, we won't be able to free more
2548 * later, so the session will never terminate. We
2549 * must terminate it now.
2550 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002551 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002552 /* FIXME: check if URI is set and return Status
2553 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002554 */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002555 session_inc_http_req_ctr(s);
2556 session_inc_http_err_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002557 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002558 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002559 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002560 goto return_bad_req;
2561 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002562
Willy Tarreau59234e92008-11-30 23:51:27 +01002563 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002564 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002565 if (!(s->flags & SN_ERR_MASK))
2566 s->flags |= SN_ERR_CLICL;
2567
Willy Tarreaufcffa692010-01-10 14:21:19 +01002568 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002569 goto failed_keep_alive;
2570
Willy Tarreau59234e92008-11-30 23:51:27 +01002571 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002572 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002573 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002574 session_inc_http_err_ctr(s);
2575 }
2576
Willy Tarreaudc979f22012-12-04 10:39:01 +01002577 txn->status = 400;
2578 stream_int_retnclose(req->prod, NULL);
Willy Tarreau59234e92008-11-30 23:51:27 +01002579 msg->msg_state = HTTP_MSG_ERROR;
2580 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002581
Willy Tarreauda7ff642010-06-23 11:44:09 +02002582 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002583 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002584 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002585 if (s->listener->counters)
2586 s->listener->counters->failed_req++;
2587
Willy Tarreau59234e92008-11-30 23:51:27 +01002588 if (!(s->flags & SN_FINST_MASK))
2589 s->flags |= SN_FINST_R;
2590 return 0;
2591 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002592
Willy Tarreau59234e92008-11-30 23:51:27 +01002593 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002594 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002595 if (!(s->flags & SN_ERR_MASK))
2596 s->flags |= SN_ERR_CLITO;
2597
Willy Tarreaufcffa692010-01-10 14:21:19 +01002598 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002599 goto failed_keep_alive;
2600
Willy Tarreau59234e92008-11-30 23:51:27 +01002601 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002602 if (msg->err_pos >= 0) {
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002603 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002604 session_inc_http_err_ctr(s);
2605 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002606 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02002607 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau59234e92008-11-30 23:51:27 +01002608 msg->msg_state = HTTP_MSG_ERROR;
2609 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002610
Willy Tarreauda7ff642010-06-23 11:44:09 +02002611 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002612 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002613 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002614 if (s->listener->counters)
2615 s->listener->counters->failed_req++;
2616
Willy Tarreau59234e92008-11-30 23:51:27 +01002617 if (!(s->flags & SN_FINST_MASK))
2618 s->flags |= SN_FINST_R;
2619 return 0;
2620 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002621
Willy Tarreau59234e92008-11-30 23:51:27 +01002622 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002623 else if (req->flags & CF_SHUTR) {
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002624 if (!(s->flags & SN_ERR_MASK))
2625 s->flags |= SN_ERR_CLICL;
2626
Willy Tarreaufcffa692010-01-10 14:21:19 +01002627 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002628 goto failed_keep_alive;
2629
Willy Tarreau4076a152009-04-02 15:18:36 +02002630 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002631 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002632 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02002633 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau59234e92008-11-30 23:51:27 +01002634 msg->msg_state = HTTP_MSG_ERROR;
2635 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002636
Willy Tarreauda7ff642010-06-23 11:44:09 +02002637 session_inc_http_err_ctr(s);
2638 session_inc_http_req_ctr(s);
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002639 proxy_inc_fe_req_ctr(s->fe);
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01002640 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002641 if (s->listener->counters)
2642 s->listener->counters->failed_req++;
2643
Willy Tarreau59234e92008-11-30 23:51:27 +01002644 if (!(s->flags & SN_FINST_MASK))
2645 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002646 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002647 }
2648
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002649 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002650 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2651 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002652#ifdef TCP_QUICKACK
Willy Tarreau3c728722014-01-23 13:50:42 +01002653 if (s->listener->options & LI_O_NOQUICKACK && req->buf->i && objt_conn(s->req->prod->end) && conn_ctrl_ready(__objt_conn(s->req->prod->end))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002654 /* We need more data, we have to re-enable quick-ack in case we
2655 * previously disabled it, otherwise we might cause the client
2656 * to delay next data.
2657 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002658 setsockopt(__objt_conn(s->req->prod->end)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002659 }
2660#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002661
Willy Tarreaufcffa692010-01-10 14:21:19 +01002662 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2663 /* If the client starts to talk, let's fall back to
2664 * request timeout processing.
2665 */
2666 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002667 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002668 }
2669
Willy Tarreau59234e92008-11-30 23:51:27 +01002670 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002671 if (!tick_isset(req->analyse_exp)) {
2672 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2673 (txn->flags & TX_WAIT_NEXT_RQ) &&
2674 tick_isset(s->be->timeout.httpka))
2675 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2676 else
2677 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2678 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002679
Willy Tarreau59234e92008-11-30 23:51:27 +01002680 /* we're not ready yet */
2681 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002682
2683 failed_keep_alive:
2684 /* Here we process low-level errors for keep-alive requests. In
2685 * short, if the request is not the first one and it experiences
2686 * a timeout, read error or shutdown, we just silently close so
2687 * that the client can try again.
2688 */
2689 txn->status = 0;
2690 msg->msg_state = HTTP_MSG_RQBEFORE;
2691 req->analysers = 0;
2692 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02002693 s->logs.level = 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002694 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau148d0992010-01-10 10:21:21 +01002695 stream_int_retnclose(req->prod, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002696 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002697 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002698
Willy Tarreaud787e662009-07-07 10:14:51 +02002699 /* OK now we have a complete HTTP request with indexed headers. Let's
2700 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002701 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002702 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002703 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002704 * byte after the last LF. msg->sov points to the first byte of data.
2705 * msg->eol cannot be trusted because it may have been left uninitialized
2706 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002707 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002708
Willy Tarreauda7ff642010-06-23 11:44:09 +02002709 session_inc_http_req_ctr(s);
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002710 proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */
2711
Willy Tarreaub16a5742010-01-10 14:46:16 +01002712 if (txn->flags & TX_WAIT_NEXT_RQ) {
2713 /* kill the pending keep-alive timeout */
2714 txn->flags &= ~TX_WAIT_NEXT_RQ;
2715 req->analyse_exp = TICK_ETERNITY;
2716 }
2717
2718
Willy Tarreaud787e662009-07-07 10:14:51 +02002719 /* Maybe we found in invalid header name while we were configured not
2720 * to block on that, so we have to capture it now.
2721 */
2722 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002723 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002724
Willy Tarreau59234e92008-11-30 23:51:27 +01002725 /*
2726 * 1: identify the method
2727 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002728 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002729
2730 /* we can make use of server redirect on GET and HEAD */
2731 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
2732 s->flags |= SN_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002733
Willy Tarreau59234e92008-11-30 23:51:27 +01002734 /*
2735 * 2: check if the URI matches the monitor_uri.
2736 * We have to do this for every request which gets in, because
2737 * the monitor-uri is defined by the frontend.
2738 */
2739 if (unlikely((s->fe->monitor_uri_len != 0) &&
2740 (s->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002741 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreau59234e92008-11-30 23:51:27 +01002742 s->fe->monitor_uri,
2743 s->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002744 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002745 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002746 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002747 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002748
Willy Tarreau59234e92008-11-30 23:51:27 +01002749 s->flags |= SN_MONITOR;
Willy Tarreaueabea072011-09-10 23:29:44 +02002750 s->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002751
Willy Tarreau59234e92008-11-30 23:51:27 +01002752 /* Check if we want to fail this monitor request or not */
Willy Tarreaud787e662009-07-07 10:14:51 +02002753 list_for_each_entry(cond, &s->fe->mon_fail_cond, list) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002754 int ret = acl_exec_cond(cond, s->fe, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002755
Willy Tarreau59234e92008-11-30 23:51:27 +01002756 ret = acl_pass(ret);
2757 if (cond->pol == ACL_COND_UNLESS)
2758 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002759
Willy Tarreau59234e92008-11-30 23:51:27 +01002760 if (ret) {
2761 /* we fail this request, let's return 503 service unavail */
2762 txn->status = 503;
Willy Tarreau783f2582012-09-04 12:19:04 +02002763 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_503));
Willy Tarreau570f2212013-06-10 16:42:09 +02002764 if (!(s->flags & SN_ERR_MASK))
2765 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002766 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002767 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002768 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002769
Willy Tarreau59234e92008-11-30 23:51:27 +01002770 /* nothing to fail, let's reply normaly */
2771 txn->status = 200;
Willy Tarreau783f2582012-09-04 12:19:04 +02002772 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_200));
Willy Tarreau570f2212013-06-10 16:42:09 +02002773 if (!(s->flags & SN_ERR_MASK))
2774 s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002775 goto return_prx_cond;
2776 }
2777
2778 /*
2779 * 3: Maybe we have to copy the original REQURI for the logs ?
2780 * Note: we cannot log anymore if the request has been
2781 * classified as invalid.
2782 */
2783 if (unlikely(s->logs.logwait & LW_REQ)) {
2784 /* we have a complete HTTP request that we must log */
2785 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2786 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002787
Willy Tarreau59234e92008-11-30 23:51:27 +01002788 if (urilen >= REQURI_LEN)
2789 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002790 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002791 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002792
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002793 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002794 s->do_log(s);
2795 } else {
2796 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002797 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002798 }
Willy Tarreau06619262006-12-17 08:37:22 +01002799
Willy Tarreau59234e92008-11-30 23:51:27 +01002800 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002801 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002802 goto return_bad_req;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002803
Willy Tarreau5b154472009-12-21 20:11:07 +01002804 /* ... and check if the request is HTTP/1.1 or above */
2805 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002806 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
2807 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
2808 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002809 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01002810
2811 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01002812 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL | TX_HDR_CONN_UPG);
Willy Tarreau5b154472009-12-21 20:11:07 +01002813
Willy Tarreau88d349d2010-01-25 12:15:43 +01002814 /* if the frontend has "option http-use-proxy-header", we'll check if
2815 * we have what looks like a proxied connection instead of a connection,
2816 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
2817 * Note that this is *not* RFC-compliant, however browsers and proxies
2818 * happen to do that despite being non-standard :-(
2819 * We consider that a request not beginning with either '/' or '*' is
2820 * a proxied connection, which covers both "scheme://location" and
2821 * CONNECT ip:port.
2822 */
2823 if ((s->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002824 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01002825 txn->flags |= TX_USE_PX_CONN;
2826
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002827 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002828 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002829
Willy Tarreau59234e92008-11-30 23:51:27 +01002830 /* 5: we may need to capture headers */
Willy Tarreau42f7d892012-03-24 08:28:09 +01002831 if (unlikely((s->logs.logwait & LW_REQHDR) && txn->req.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02002832 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreau59234e92008-11-30 23:51:27 +01002833 txn->req.cap, s->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02002834
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002835 /* 6: determine the transfer-length.
2836 * According to RFC2616 #4.4, amended by the HTTPbis working group,
2837 * the presence of a message-body in a REQUEST and its transfer length
2838 * must be determined that way (in order of precedence) :
2839 * 1. The presence of a message-body in a request is signaled by the
2840 * inclusion of a Content-Length or Transfer-Encoding header field
2841 * in the request's header fields. When a request message contains
2842 * both a message-body of non-zero length and a method that does
2843 * not define any semantics for that request message-body, then an
2844 * origin server SHOULD either ignore the message-body or respond
2845 * with an appropriate error message (e.g., 413). A proxy or
2846 * gateway, when presented the same request, SHOULD either forward
2847 * the request inbound with the message- body or ignore the
2848 * message-body when determining a response.
2849 *
2850 * 2. If a Transfer-Encoding header field (Section 9.7) is present
2851 * and the "chunked" transfer-coding (Section 6.2) is used, the
2852 * transfer-length is defined by the use of this transfer-coding.
2853 * If a Transfer-Encoding header field is present and the "chunked"
2854 * transfer-coding is not present, the transfer-length is defined
2855 * by the sender closing the connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002856 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002857 * 3. If a Content-Length header field is present, its decimal value in
2858 * OCTETs represents both the entity-length and the transfer-length.
2859 * If a message is received with both a Transfer-Encoding header
2860 * field and a Content-Length header field, the latter MUST be ignored.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002861 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002862 * 4. By the server closing the connection. (Closing the connection
2863 * cannot be used to indicate the end of a request body, since that
2864 * would leave no possibility for the server to send back a response.)
2865 *
2866 * Whenever a transfer-coding is applied to a message-body, the set of
2867 * transfer-codings MUST include "chunked", unless the message indicates
2868 * it is terminated by closing the connection. When the "chunked"
2869 * transfer-coding is used, it MUST be the last transfer-coding applied
2870 * to the message-body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02002871 */
2872
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002873 use_close_only = 0;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002874 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002875 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002876 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002877 http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002878 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002879 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
2880 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002881 /* bad transfer-encoding (chunked followed by something else) */
2882 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002883 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002884 break;
2885 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002886 }
2887
Willy Tarreau32b47f42009-10-18 20:55:02 +02002888 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002889 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002890 http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02002891 signed long long cl;
2892
Willy Tarreauad14f752011-09-02 20:33:27 +02002893 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002894 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002895 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002896 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002897
Willy Tarreauad14f752011-09-02 20:33:27 +02002898 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002899 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002900 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02002901 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002902
Willy Tarreauad14f752011-09-02 20:33:27 +02002903 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002904 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002905 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02002906 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002907
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002908 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002909 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002910 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02002911 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02002912
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002913 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01002914 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002915 }
2916
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002917 /* bodyless requests have a known length */
2918 if (!use_close_only)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01002919 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01002920
Willy Tarreau179085c2014-04-28 16:48:56 +02002921 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
2922 * only change if both the request and the config reference something else.
2923 * Option httpclose by itself sets tunnel mode where headers are mangled.
2924 * However, if another mode is set, it will affect it (eg: server-close/
2925 * keep-alive + httpclose = close). Note that we avoid to redo the same work
2926 * if FE and BE have the same settings (common). The method consists in
2927 * checking if options changed between the two calls (implying that either
2928 * one is non-null, or one of them is non-null and we are there for the first
2929 * time.
2930 */
2931 if (!(txn->flags & TX_HDR_CONN_PRS) ||
2932 ((s->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE))) {
2933 int tmp = TX_CON_WANT_KAL;
2934
2935 if (!((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
2936 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
2937 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
2938 tmp = TX_CON_WANT_TUN;
2939
2940 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
2941 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2942 tmp = TX_CON_WANT_TUN;
2943 }
2944
2945 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
2946 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
2947 /* option httpclose + server_close => forceclose */
2948 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
2949 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2950 tmp = TX_CON_WANT_CLO;
2951 else
2952 tmp = TX_CON_WANT_SCL;
2953 }
2954
2955 if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
2956 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
2957 tmp = TX_CON_WANT_CLO;
2958
2959 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
2960 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
2961
2962 if (!(txn->flags & TX_HDR_CONN_PRS) &&
2963 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
2964 /* parse the Connection header and possibly clean it */
2965 int to_del = 0;
2966 if ((msg->flags & HTTP_MSGF_VER_11) ||
2967 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
2968 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
2969 to_del |= 2; /* remove "keep-alive" */
2970 if (!(msg->flags & HTTP_MSGF_VER_11))
2971 to_del |= 1; /* remove "close" */
2972 http_parse_connection_header(txn, msg, to_del);
2973 }
2974
2975 /* check if client or config asks for explicit close in KAL/SCL */
2976 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
2977 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
2978 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
2979 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
2980 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
2981 s->fe->state == PR_STSTOPPED)) /* frontend is stopping */
2982 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
2983 }
2984
Willy Tarreaud787e662009-07-07 10:14:51 +02002985 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02002986 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02002987 req->analyse_exp = TICK_ETERNITY;
2988 return 1;
2989
2990 return_bad_req:
2991 /* We centralize bad requests processing here */
2992 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2993 /* we detected a parsing error. We want to archive this request
2994 * in the dedicated proxy area for later troubleshooting.
2995 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01002996 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02002997 }
2998
2999 txn->req.msg_state = HTTP_MSG_ERROR;
3000 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02003001 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003002
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003003 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003004 if (s->listener->counters)
3005 s->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02003006
3007 return_prx_cond:
3008 if (!(s->flags & SN_ERR_MASK))
3009 s->flags |= SN_ERR_PRXCOND;
3010 if (!(s->flags & SN_FINST_MASK))
3011 s->flags |= SN_FINST_R;
3012
3013 req->analysers = 0;
3014 req->analyse_exp = TICK_ETERNITY;
3015 return 0;
3016}
3017
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02003018
Willy Tarreau347a35d2013-11-22 17:51:09 +01003019/* This function prepares an applet to handle the stats. It can deal with the
3020 * "100-continue" expectation, check that admin rules are met for POST requests,
3021 * and program a response message if something was unexpected. It cannot fail
3022 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003023 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003024 * s->target which is supposed to already point to the stats applet. The caller
3025 * is expected to have already assigned an appctx to the session.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003026 */
3027int http_handle_stats(struct session *s, struct channel *req)
3028{
3029 struct stats_admin_rule *stats_admin_rule;
3030 struct stream_interface *si = s->rep->prod;
3031 struct http_txn *txn = &s->txn;
3032 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003033 struct uri_auth *uri_auth = s->be->uri_auth;
3034 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003035 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003036
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003037 appctx = si_appctx(si);
3038 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
3039 appctx->st1 = appctx->st2 = 0;
3040 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
3041 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreauaf3cf702014-04-22 22:19:53 +02003042 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn.meth != HTTP_METH_HEAD))
3043 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003044
3045 uri = msg->chn->buf->p + msg->sl.rq.u;
3046 lookup = uri + uri_auth->uri_len;
3047
3048 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
3049 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003050 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003051 break;
3052 }
3053 }
3054
3055 if (uri_auth->refresh) {
3056 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
3057 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003058 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003059 break;
3060 }
3061 }
3062 }
3063
3064 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
3065 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003066 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003067 break;
3068 }
3069 }
3070
3071 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3072 if (memcmp(h, ";st=", 4) == 0) {
3073 int i;
3074 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003075 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003076 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3077 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003078 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003079 break;
3080 }
3081 }
3082 break;
3083 }
3084 }
3085
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003086 appctx->ctx.stats.scope_str = 0;
3087 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003088 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3089 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3090 int itx = 0;
3091 const char *h2;
3092 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3093 const char *err;
3094
3095 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3096 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003097 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003098 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
3099 itx++;
3100 h++;
3101 }
3102
3103 if (itx > STAT_SCOPE_TXT_MAXLEN)
3104 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003105 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003106
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003107 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003108 memcpy(scope_txt, h2, itx);
3109 scope_txt[itx] = '\0';
3110 err = invalid_char(scope_txt);
3111 if (err) {
3112 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003113 appctx->ctx.stats.scope_str = 0;
3114 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003115 }
3116 break;
3117 }
3118 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003119
3120 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003121 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003122 int ret = 1;
3123
3124 if (stats_admin_rule->cond) {
3125 ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
3126 ret = acl_pass(ret);
3127 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3128 ret = !ret;
3129 }
3130
3131 if (ret) {
3132 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003133 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003134 break;
3135 }
3136 }
3137
3138 /* Was the status page requested with a POST ? */
Willy Tarreau347a35d2013-11-22 17:51:09 +01003139 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003140 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02003141 /* we'll need the request body, possibly after sending 100-continue */
3142 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003143 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003144 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003145 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003146 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
3147 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003148 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003149 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003150 else {
3151 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003152 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003153 }
3154
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003155 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003156 return 1;
3157}
3158
Lukas Tribus67db8df2013-06-23 17:37:13 +02003159/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
3160 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
3161 */
3162static inline void inet_set_tos(int fd, struct sockaddr_storage from, int tos)
3163{
3164#ifdef IP_TOS
3165 if (from.ss_family == AF_INET)
3166 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3167#endif
3168#ifdef IPV6_TCLASS
3169 if (from.ss_family == AF_INET6) {
3170 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr))
3171 /* v4-mapped addresses need IP_TOS */
3172 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3173 else
3174 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
3175 }
3176#endif
3177}
3178
Willy Tarreau20b0de52012-12-24 15:45:22 +01003179/* Executes the http-request rules <rules> for session <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02003180 * transaction <txn>. Returns the verdict of the first rule that prevents
3181 * further processing of the request (auth, deny, ...), and defaults to
3182 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
3183 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
3184 * on txn->flags if it encounters a tarpit rule.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003185 */
Willy Tarreau0b748332014-04-29 00:13:29 +02003186enum rule_result
Willy Tarreau96257ec2012-12-27 10:46:37 +01003187http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003188{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003189 struct connection *cli_conn;
Willy Tarreauff011f22011-01-06 17:51:27 +01003190 struct http_req_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003191 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02003192 const char *auth_realm;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003193
Willy Tarreauff011f22011-01-06 17:51:27 +01003194 list_for_each_entry(rule, rules, list) {
Willy Tarreauff011f22011-01-06 17:51:27 +01003195 if (rule->action >= HTTP_REQ_ACT_MAX)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003196 continue;
3197
Willy Tarreau96257ec2012-12-27 10:46:37 +01003198 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003199 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003200 int ret;
3201
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003202 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003203 ret = acl_pass(ret);
3204
Willy Tarreauff011f22011-01-06 17:51:27 +01003205 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003206 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003207
3208 if (!ret) /* condition not matched */
3209 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003210 }
3211
Willy Tarreau20b0de52012-12-24 15:45:22 +01003212
Willy Tarreau96257ec2012-12-27 10:46:37 +01003213 switch (rule->action) {
3214 case HTTP_REQ_ACT_ALLOW:
Willy Tarreau0b748332014-04-29 00:13:29 +02003215 return HTTP_RULE_RES_STOP;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003216
3217 case HTTP_REQ_ACT_DENY:
Willy Tarreau0b748332014-04-29 00:13:29 +02003218 return HTTP_RULE_RES_DENY;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003219
Willy Tarreauccbcc372012-12-27 12:37:57 +01003220 case HTTP_REQ_ACT_TARPIT:
3221 txn->flags |= TX_CLTARPIT;
Willy Tarreau0b748332014-04-29 00:13:29 +02003222 return HTTP_RULE_RES_DENY;
Willy Tarreauccbcc372012-12-27 12:37:57 +01003223
Willy Tarreau96257ec2012-12-27 10:46:37 +01003224 case HTTP_REQ_ACT_AUTH:
Willy Tarreauae3c0102014-04-28 23:22:08 +02003225 /* Auth might be performed on regular http-req rules as well as on stats */
3226 auth_realm = rule->arg.auth.realm;
3227 if (!auth_realm) {
3228 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
3229 auth_realm = STATS_DEFAULT_REALM;
3230 else
3231 auth_realm = px->id;
3232 }
3233 /* send 401/407 depending on whether we use a proxy or not. We still
3234 * count one error, because normal browsing won't significantly
3235 * increase the counter but brute force attempts will.
3236 */
3237 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
3238 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
3239 stream_int_retnclose(&s->si[0], &trash);
3240 session_inc_http_err_ctr(s);
Willy Tarreau0b748332014-04-29 00:13:29 +02003241 return HTTP_RULE_RES_ABRT;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003242
Willy Tarreau81499eb2012-12-27 12:19:02 +01003243 case HTTP_REQ_ACT_REDIR:
Willy Tarreau0b748332014-04-29 00:13:29 +02003244 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3245 return HTTP_RULE_RES_BADREQ;
3246 return HTTP_RULE_RES_DONE;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003247
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003248 case HTTP_REQ_ACT_SET_NICE:
3249 s->task->nice = rule->arg.nice;
3250 break;
3251
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003252 case HTTP_REQ_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003253 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003254 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003255 break;
3256
Willy Tarreau51347ed2013-06-11 19:34:13 +02003257 case HTTP_REQ_ACT_SET_MARK:
3258#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003259 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003260 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003261#endif
3262 break;
3263
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003264 case HTTP_REQ_ACT_SET_LOGL:
3265 s->logs.level = rule->arg.loglevel;
3266 break;
3267
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003268 case HTTP_REQ_ACT_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003269 case HTTP_REQ_ACT_SET_HDR:
3270 ctx.idx = 0;
3271 /* remove all occurrences of the header */
3272 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3273 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3274 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003275 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003276 if (rule->action == HTTP_REQ_ACT_DEL_HDR)
3277 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003278 /* now fall through to header addition */
3279
3280 case HTTP_REQ_ACT_ADD_HDR:
3281 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3282 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3283 trash.len = rule->arg.hdr_add.name_len;
3284 trash.str[trash.len++] = ':';
3285 trash.str[trash.len++] = ' ';
3286 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
3287 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3288 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003289
3290 case HTTP_REQ_ACT_DEL_ACL:
3291 case HTTP_REQ_ACT_DEL_MAP: {
3292 struct pat_ref *ref;
3293 char *key;
3294 int len;
3295
3296 /* collect reference */
3297 ref = pat_ref_lookup(rule->arg.map.ref);
3298 if (!ref)
3299 continue;
3300
3301 /* collect key */
3302 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3303 key = trash.str;
3304 key[len] = '\0';
3305
3306 /* perform update */
3307 /* returned code: 1=ok, 0=ko */
3308 pat_ref_delete(ref, key);
3309
3310 break;
3311 }
3312
3313 case HTTP_REQ_ACT_ADD_ACL: {
3314 struct pat_ref *ref;
3315 char *key;
3316 struct chunk *trash_key;
3317 int len;
3318
3319 trash_key = get_trash_chunk();
3320
3321 /* collect reference */
3322 ref = pat_ref_lookup(rule->arg.map.ref);
3323 if (!ref)
3324 continue;
3325
3326 /* collect key */
3327 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3328 key = trash_key->str;
3329 key[len] = '\0';
3330
3331 /* perform update */
3332 /* add entry only if it does not already exist */
3333 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003334 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003335
3336 break;
3337 }
3338
3339 case HTTP_REQ_ACT_SET_MAP: {
3340 struct pat_ref *ref;
3341 char *key, *value;
3342 struct chunk *trash_key, *trash_value;
3343 int len;
3344
3345 trash_key = get_trash_chunk();
3346 trash_value = get_trash_chunk();
3347
3348 /* collect reference */
3349 ref = pat_ref_lookup(rule->arg.map.ref);
3350 if (!ref)
3351 continue;
3352
3353 /* collect key */
3354 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3355 key = trash_key->str;
3356 key[len] = '\0';
3357
3358 /* collect value */
3359 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3360 value = trash_value->str;
3361 value[len] = '\0';
3362
3363 /* perform update */
3364 if (pat_ref_find_elt(ref, key) != NULL)
3365 /* update entry if it exists */
3366 pat_ref_set(ref, key, value, NULL);
3367 else
3368 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003369 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003370
3371 break;
3372 }
William Lallemand73025dd2014-04-24 14:38:37 +02003373
3374 case HTTP_REQ_ACT_CUSTOM_CONT:
3375 rule->action_ptr(rule, px, s, txn);
3376 break;
3377
3378 case HTTP_REQ_ACT_CUSTOM_STOP:
3379 rule->action_ptr(rule, px, s, txn);
Willy Tarreau0b748332014-04-29 00:13:29 +02003380 return HTTP_RULE_RES_DONE;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003381 }
3382 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003383
3384 /* we reached the end of the rules, nothing to report */
Willy Tarreau0b748332014-04-29 00:13:29 +02003385 return HTTP_RULE_RES_CONT;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003386}
3387
Willy Tarreau71241ab2012-12-27 11:30:54 +01003388
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003389/* Executes the http-response rules <rules> for session <s>, proxy <px> and
3390 * transaction <txn>. Returns the first rule that prevents further processing
3391 * of the response (deny, ...) or NULL if it executed all rules or stopped
3392 * on an allow. It may set the TX_SVDENY on txn->flags if it encounters a deny
3393 * rule.
3394 */
3395static struct http_res_rule *
3396http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn)
3397{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003398 struct connection *cli_conn;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003399 struct http_res_rule *rule;
3400 struct hdr_ctx ctx;
3401
3402 list_for_each_entry(rule, rules, list) {
3403 if (rule->action >= HTTP_RES_ACT_MAX)
3404 continue;
3405
3406 /* check optional condition */
3407 if (rule->cond) {
3408 int ret;
3409
3410 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3411 ret = acl_pass(ret);
3412
3413 if (rule->cond->pol == ACL_COND_UNLESS)
3414 ret = !ret;
3415
3416 if (!ret) /* condition not matched */
3417 continue;
3418 }
3419
3420
3421 switch (rule->action) {
3422 case HTTP_RES_ACT_ALLOW:
3423 return NULL; /* "allow" rules are OK */
3424
3425 case HTTP_RES_ACT_DENY:
3426 txn->flags |= TX_SVDENY;
3427 return rule;
3428
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003429 case HTTP_RES_ACT_SET_NICE:
3430 s->task->nice = rule->arg.nice;
3431 break;
3432
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003433 case HTTP_RES_ACT_SET_TOS:
Willy Tarreau3c728722014-01-23 13:50:42 +01003434 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003435 inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003436 break;
3437
Willy Tarreau51347ed2013-06-11 19:34:13 +02003438 case HTTP_RES_ACT_SET_MARK:
3439#ifdef SO_MARK
Willy Tarreau3c728722014-01-23 13:50:42 +01003440 if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003441 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003442#endif
3443 break;
3444
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003445 case HTTP_RES_ACT_SET_LOGL:
3446 s->logs.level = rule->arg.loglevel;
3447 break;
3448
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003449 case HTTP_RES_ACT_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003450 case HTTP_RES_ACT_SET_HDR:
3451 ctx.idx = 0;
3452 /* remove all occurrences of the header */
3453 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3454 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3455 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3456 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02003457 if (rule->action == HTTP_RES_ACT_DEL_HDR)
3458 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003459 /* now fall through to header addition */
3460
3461 case HTTP_RES_ACT_ADD_HDR:
3462 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3463 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3464 trash.len = rule->arg.hdr_add.name_len;
3465 trash.str[trash.len++] = ':';
3466 trash.str[trash.len++] = ' ';
3467 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
3468 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
3469 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003470
3471 case HTTP_RES_ACT_DEL_ACL:
3472 case HTTP_RES_ACT_DEL_MAP: {
3473 struct pat_ref *ref;
3474 char *key;
3475 int len;
3476
3477 /* collect reference */
3478 ref = pat_ref_lookup(rule->arg.map.ref);
3479 if (!ref)
3480 continue;
3481
3482 /* collect key */
3483 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3484 key = trash.str;
3485 key[len] = '\0';
3486
3487 /* perform update */
3488 /* returned code: 1=ok, 0=ko */
3489 pat_ref_delete(ref, key);
3490
3491 break;
3492 }
3493
3494 case HTTP_RES_ACT_ADD_ACL: {
3495 struct pat_ref *ref;
3496 char *key;
3497 struct chunk *trash_key;
3498 int len;
3499
3500 trash_key = get_trash_chunk();
3501
3502 /* collect reference */
3503 ref = pat_ref_lookup(rule->arg.map.ref);
3504 if (!ref)
3505 continue;
3506
3507 /* collect key */
3508 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3509 key = trash_key->str;
3510 key[len] = '\0';
3511
3512 /* perform update */
3513 /* check if the entry already exists */
3514 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003515 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003516
3517 break;
3518 }
3519
3520 case HTTP_RES_ACT_SET_MAP: {
3521 struct pat_ref *ref;
3522 char *key, *value;
3523 struct chunk *trash_key, *trash_value;
3524 int len;
3525
3526 trash_key = get_trash_chunk();
3527 trash_value = get_trash_chunk();
3528
3529 /* collect reference */
3530 ref = pat_ref_lookup(rule->arg.map.ref);
3531 if (!ref)
3532 continue;
3533
3534 /* collect key */
3535 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3536 key = trash_key->str;
3537 key[len] = '\0';
3538
3539 /* collect value */
3540 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3541 value = trash_value->str;
3542 value[len] = '\0';
3543
3544 /* perform update */
3545 if (pat_ref_find_elt(ref, key) != NULL)
3546 /* update entry if it exists */
3547 pat_ref_set(ref, key, value, NULL);
3548 else
3549 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003550 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003551
3552 break;
3553 }
William Lallemand73025dd2014-04-24 14:38:37 +02003554
3555 case HTTP_RES_ACT_CUSTOM_CONT:
3556 rule->action_ptr(rule, px, s, txn);
3557 break;
3558
3559 case HTTP_RES_ACT_CUSTOM_STOP:
3560 rule->action_ptr(rule, px, s, txn);
3561 return rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003562 }
3563 }
3564
3565 /* we reached the end of the rules, nothing to report */
3566 return NULL;
3567}
3568
3569
Willy Tarreau71241ab2012-12-27 11:30:54 +01003570/* Perform an HTTP redirect based on the information in <rule>. The function
3571 * returns non-zero on success, or zero in case of a, irrecoverable error such
3572 * as too large a request to build a valid response.
3573 */
3574static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn)
3575{
3576 struct http_msg *msg = &txn->req;
3577 const char *msg_fmt;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003578 const char *location;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003579
3580 /* build redirect message */
3581 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04003582 case 308:
3583 msg_fmt = HTTP_308;
3584 break;
3585 case 307:
3586 msg_fmt = HTTP_307;
3587 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003588 case 303:
3589 msg_fmt = HTTP_303;
3590 break;
3591 case 301:
3592 msg_fmt = HTTP_301;
3593 break;
3594 case 302:
3595 default:
3596 msg_fmt = HTTP_302;
3597 break;
3598 }
3599
3600 if (unlikely(!chunk_strcpy(&trash, msg_fmt)))
3601 return 0;
3602
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003603 location = trash.str + trash.len;
3604
Willy Tarreau71241ab2012-12-27 11:30:54 +01003605 switch(rule->type) {
3606 case REDIRECT_TYPE_SCHEME: {
3607 const char *path;
3608 const char *host;
3609 struct hdr_ctx ctx;
3610 int pathlen;
3611 int hostlen;
3612
3613 host = "";
3614 hostlen = 0;
3615 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +02003616 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003617 host = ctx.line + ctx.val;
3618 hostlen = ctx.vlen;
3619 }
3620
3621 path = http_get_path(txn);
3622 /* build message using path */
3623 if (path) {
3624 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3625 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3626 int qs = 0;
3627 while (qs < pathlen) {
3628 if (path[qs] == '?') {
3629 pathlen = qs;
3630 break;
3631 }
3632 qs++;
3633 }
3634 }
3635 } else {
3636 path = "/";
3637 pathlen = 1;
3638 }
3639
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003640 if (rule->rdr_str) { /* this is an old "redirect" rule */
3641 /* check if we can add scheme + "://" + host + path */
3642 if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4)
3643 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003644
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003645 /* add scheme */
3646 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3647 trash.len += rule->rdr_len;
3648 }
3649 else {
3650 /* add scheme with executing log format */
3651 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003652
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003653 /* check if we can add scheme + "://" + host + path */
3654 if (trash.len + 3 + hostlen + pathlen > trash.size - 4)
3655 return 0;
3656 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003657 /* add "://" */
3658 memcpy(trash.str + trash.len, "://", 3);
3659 trash.len += 3;
3660
3661 /* add host */
3662 memcpy(trash.str + trash.len, host, hostlen);
3663 trash.len += hostlen;
3664
3665 /* add path */
3666 memcpy(trash.str + trash.len, path, pathlen);
3667 trash.len += pathlen;
3668
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003669 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003670 if (trash.len && trash.str[trash.len - 1] != '/' &&
3671 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3672 if (trash.len > trash.size - 5)
3673 return 0;
3674 trash.str[trash.len] = '/';
3675 trash.len++;
3676 }
3677
3678 break;
3679 }
3680 case REDIRECT_TYPE_PREFIX: {
3681 const char *path;
3682 int pathlen;
3683
3684 path = http_get_path(txn);
3685 /* build message using path */
3686 if (path) {
3687 pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path;
3688 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
3689 int qs = 0;
3690 while (qs < pathlen) {
3691 if (path[qs] == '?') {
3692 pathlen = qs;
3693 break;
3694 }
3695 qs++;
3696 }
3697 }
3698 } else {
3699 path = "/";
3700 pathlen = 1;
3701 }
3702
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003703 if (rule->rdr_str) { /* this is an old "redirect" rule */
3704 if (trash.len + rule->rdr_len + pathlen > trash.size - 4)
3705 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003706
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003707 /* add prefix. Note that if prefix == "/", we don't want to
3708 * add anything, otherwise it makes it hard for the user to
3709 * configure a self-redirection.
3710 */
3711 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
3712 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3713 trash.len += rule->rdr_len;
3714 }
3715 }
3716 else {
3717 /* add prefix with executing log format */
3718 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
3719
3720 /* Check length */
3721 if (trash.len + pathlen > trash.size - 4)
3722 return 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003723 }
3724
3725 /* add path */
3726 memcpy(trash.str + trash.len, path, pathlen);
3727 trash.len += pathlen;
3728
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003729 /* append a slash at the end of the location if needed and missing */
Willy Tarreau71241ab2012-12-27 11:30:54 +01003730 if (trash.len && trash.str[trash.len - 1] != '/' &&
3731 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
3732 if (trash.len > trash.size - 5)
3733 return 0;
3734 trash.str[trash.len] = '/';
3735 trash.len++;
3736 }
3737
3738 break;
3739 }
3740 case REDIRECT_TYPE_LOCATION:
3741 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003742 if (rule->rdr_str) { /* this is an old "redirect" rule */
3743 if (trash.len + rule->rdr_len > trash.size - 4)
3744 return 0;
3745
3746 /* add location */
3747 memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len);
3748 trash.len += rule->rdr_len;
3749 }
3750 else {
3751 /* add location with executing log format */
3752 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01003753
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003754 /* Check left length */
3755 if (trash.len > trash.size - 4)
3756 return 0;
3757 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003758 break;
3759 }
3760
3761 if (rule->cookie_len) {
3762 memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14);
3763 trash.len += 14;
3764 memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len);
3765 trash.len += rule->cookie_len;
3766 memcpy(trash.str + trash.len, "\r\n", 2);
3767 trash.len += 2;
3768 }
3769
3770 /* add end of headers and the keep-alive/close status.
3771 * We may choose to set keep-alive if the Location begins
3772 * with a slash, because the client will come back to the
3773 * same server.
3774 */
3775 txn->status = rule->code;
3776 /* let's log the request time */
3777 s->logs.tv_request = now;
3778
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01003779 if (*location == '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01003780 (msg->flags & HTTP_MSGF_XFER_LEN) &&
3781 !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len &&
3782 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3783 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3784 /* keep-alive possible */
3785 if (!(msg->flags & HTTP_MSGF_VER_11)) {
3786 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3787 memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30);
3788 trash.len += 30;
3789 } else {
3790 memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24);
3791 trash.len += 24;
3792 }
3793 }
3794 memcpy(trash.str + trash.len, "\r\n\r\n", 4);
3795 trash.len += 4;
3796 bo_inject(txn->rsp.chn, trash.str, trash.len);
3797 /* "eat" the request */
3798 bi_fast_delete(txn->req.chn->buf, msg->sov);
Willy Tarreau6d8bac72014-04-25 12:19:32 +02003799 msg->next -= msg->sov;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003800 msg->sov = 0;
3801 txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY;
3802 s->rep->analysers = AN_RES_HTTP_XFER_BODY;
3803 txn->req.msg_state = HTTP_MSG_CLOSED;
3804 txn->rsp.msg_state = HTTP_MSG_DONE;
3805 } else {
3806 /* keep-alive not possible */
3807 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
3808 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
3809 trash.len += 29;
3810 } else {
3811 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
3812 trash.len += 23;
3813 }
3814 stream_int_retnclose(txn->req.chn->prod, &trash);
3815 txn->req.chn->analysers = 0;
3816 }
3817
3818 if (!(s->flags & SN_ERR_MASK))
Willy Tarreau570f2212013-06-10 16:42:09 +02003819 s->flags |= SN_ERR_LOCAL;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003820 if (!(s->flags & SN_FINST_MASK))
3821 s->flags |= SN_FINST_R;
3822
3823 return 1;
3824}
3825
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003826/* This stream analyser runs all HTTP request processing which is common to
3827 * frontends and backends, which means blocking ACLs, filters, connection-close,
3828 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02003829 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003830 * either needs more data or wants to immediately abort the request (eg: deny,
3831 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02003832 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02003833int http_process_req_common(struct session *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02003834{
Willy Tarreaud787e662009-07-07 10:14:51 +02003835 struct http_txn *txn = &s->txn;
3836 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003837 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01003838 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02003839 enum rule_result verdict;
Willy Tarreaud787e662009-07-07 10:14:51 +02003840
Willy Tarreau655dce92009-11-08 13:10:58 +01003841 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02003842 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003843 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02003844 return 0;
3845 }
3846
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003847 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02003848 now_ms, __FUNCTION__,
3849 s,
3850 req,
3851 req->rex, req->wex,
3852 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003853 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02003854 req->analysers);
3855
Willy Tarreau65410832014-04-28 21:25:43 +02003856 /* just in case we have some per-backend tracking */
3857 session_inc_be_http_req_ctr(s);
3858
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003859 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02003860 if (!LIST_ISEMPTY(&px->http_req_rules)) {
3861 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, txn);
Willy Tarreau51425942010-02-01 10:40:19 +01003862
Willy Tarreau0b748332014-04-29 00:13:29 +02003863 switch (verdict) {
3864 case HTTP_RULE_RES_CONT:
3865 case HTTP_RULE_RES_STOP: /* nothing to do */
3866 break;
Willy Tarreau52542592014-04-28 18:33:26 +02003867
Willy Tarreau0b748332014-04-29 00:13:29 +02003868 case HTTP_RULE_RES_DENY: /* deny or tarpit */
3869 if (txn->flags & TX_CLTARPIT)
3870 goto tarpit;
3871 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02003872
Willy Tarreau0b748332014-04-29 00:13:29 +02003873 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
3874 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02003875
Willy Tarreau0b748332014-04-29 00:13:29 +02003876 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02003877 goto done;
3878
Willy Tarreau0b748332014-04-29 00:13:29 +02003879 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
3880 goto return_bad_req;
3881 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003882 }
3883
Willy Tarreau52542592014-04-28 18:33:26 +02003884 /* OK at this stage, we know that the request was accepted according to
3885 * the http-request rules, we can check for the stats. Note that the
3886 * URI is detected *before* the req* rules in order not to be affected
3887 * by a possible reqrep, while they are processed *after* so that a
3888 * reqdeny can still block them. This clearly needs to change in 1.6!
3889 */
3890 if (stats_check_uri(s->rep->prod, txn, px)) {
3891 s->target = &http_stats_applet.obj_type;
3892 if (unlikely(!stream_int_register_handler(s->rep->prod, objt_applet(s->target)))) {
3893 txn->status = 500;
3894 s->logs.tv_request = now;
3895 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003896
Willy Tarreau52542592014-04-28 18:33:26 +02003897 if (!(s->flags & SN_ERR_MASK))
3898 s->flags |= SN_ERR_RESOURCE;
3899 goto return_prx_cond;
3900 }
3901
3902 /* parse the whole stats request and extract the relevant information */
3903 http_handle_stats(s, req);
Willy Tarreau0b748332014-04-29 00:13:29 +02003904 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, txn);
3905 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003906
Willy Tarreau0b748332014-04-29 00:13:29 +02003907 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
3908 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02003909
Willy Tarreau0b748332014-04-29 00:13:29 +02003910 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
3911 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01003912 }
3913
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003914 /* evaluate the req* rules except reqadd */
3915 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01003916 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003917 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01003918
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003919 if (txn->flags & TX_CLDENY)
3920 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02003921
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003922 if (txn->flags & TX_CLTARPIT)
3923 goto tarpit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003924 }
Willy Tarreau06619262006-12-17 08:37:22 +01003925
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003926 /* add request headers from the rule sets in the same order */
3927 list_for_each_entry(wl, &px->req_add, list) {
3928 if (wl->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003929 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003930 ret = acl_pass(ret);
3931 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
3932 ret = !ret;
3933 if (!ret)
3934 continue;
3935 }
3936
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003937 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003938 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003939 }
3940
Willy Tarreau52542592014-04-28 18:33:26 +02003941
3942 /* Proceed with the stats now. */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003943 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003944 /* process the stats request now */
Willy Tarreau347a35d2013-11-22 17:51:09 +01003945 if (s->fe == s->be) /* report it if the request was intercepted by the frontend */
3946 s->fe->fe_counters.intercepted_req++;
3947
3948 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
3949 s->flags |= SN_ERR_LOCAL; // to mark that it comes from the proxy
3950 if (!(s->flags & SN_FINST_MASK))
3951 s->flags |= SN_FINST_R;
3952
Willy Tarreau70730dd2014-04-24 18:06:27 +02003953 /* we may want to compress the stats page */
3954 if (s->fe->comp || s->be->comp)
3955 select_compression_request_header(s, req->buf);
3956
3957 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02003958 req->analysers = (req->analysers & AN_REQ_HTTP_BODY) |
3959 AN_REQ_HTTP_XFER_BODY | AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE | AN_RES_HTTP_XFER_BODY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003960 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003961 }
Willy Tarreaub2513902006-12-17 14:52:38 +01003962
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003963 /* check whether we have some ACLs set to redirect this request */
3964 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01003965 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01003966 int ret;
3967
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02003968 ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01003969 ret = acl_pass(ret);
3970 if (rule->cond->pol == ACL_COND_UNLESS)
3971 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01003972 if (!ret)
3973 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01003974 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01003975 if (!http_apply_redirect_rule(rule, s, txn))
3976 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003977 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003978 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02003979
Willy Tarreau2be39392010-01-03 17:24:51 +01003980 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
3981 * If this happens, then the data will not come immediately, so we must
3982 * send all what we have without waiting. Note that due to the small gain
3983 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003984 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01003985 * itself once used.
3986 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003987 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01003988
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003989 done: /* done with this analyser, continue with next ones that the calling
3990 * points will have set, if any.
3991 */
3992 req->analysers &= ~an_bit;
3993 req->analyse_exp = TICK_ETERNITY;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02003994 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02003995
Willy Tarreaubbba2a82014-04-28 13:57:26 +02003996 tarpit:
3997 /* When a connection is tarpitted, we use the tarpit timeout,
3998 * which may be the same as the connect timeout if unspecified.
3999 * If unset, then set it to zero because we really want it to
4000 * eventually expire. We build the tarpit as an analyser.
4001 */
4002 channel_erase(s->req);
4003
4004 /* wipe the request out so that we can drop the connection early
4005 * if the client closes first.
4006 */
4007 channel_dont_connect(req);
4008 req->analysers = 0; /* remove switching rules etc... */
4009 req->analysers |= AN_REQ_HTTP_TARPIT;
4010 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
4011 if (!req->analyse_exp)
4012 req->analyse_exp = tick_add(now_ms, 0);
4013 session_inc_http_err_ctr(s);
4014 s->fe->fe_counters.denied_req++;
4015 if (s->fe != s->be)
4016 s->be->be_counters.denied_req++;
4017 if (s->listener->counters)
4018 s->listener->counters->denied_req++;
4019 goto done;
4020
4021 deny: /* this request was blocked (denied) */
Willy Tarreau0b748332014-04-29 00:13:29 +02004022 txn->flags |= TX_CLDENY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004023 txn->status = 403;
4024 s->logs.tv_request = now;
4025 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403));
4026 session_inc_http_err_ctr(s);
4027 s->fe->fe_counters.denied_req++;
4028 if (s->fe != s->be)
4029 s->be->be_counters.denied_req++;
4030 if (s->listener->counters)
4031 s->listener->counters->denied_req++;
4032 goto return_prx_cond;
4033
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004034 return_bad_req:
4035 /* We centralize bad requests processing here */
4036 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
4037 /* we detected a parsing error. We want to archive this request
4038 * in the dedicated proxy area for later troubleshooting.
4039 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004040 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004041 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004042
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004043 txn->req.msg_state = HTTP_MSG_ERROR;
4044 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004045 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004046
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004047 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004048 if (s->listener->counters)
4049 s->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004050
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004051 return_prx_cond:
4052 if (!(s->flags & SN_ERR_MASK))
4053 s->flags |= SN_ERR_PRXCOND;
4054 if (!(s->flags & SN_FINST_MASK))
4055 s->flags |= SN_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01004056
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004057 req->analysers = 0;
4058 req->analyse_exp = TICK_ETERNITY;
4059 return 0;
4060}
Willy Tarreau58f10d72006-12-04 02:26:12 +01004061
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004062/* This function performs all the processing enabled for the current request.
4063 * It returns 1 if the processing can continue on next analysers, or zero if it
4064 * needs more data, encounters an error, or wants to immediately abort the
4065 * request. It relies on buffers flags, and updates s->req->analysers.
4066 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004067int http_process_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004068{
4069 struct http_txn *txn = &s->txn;
4070 struct http_msg *msg = &txn->req;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004071 struct connection *cli_conn = objt_conn(req->prod->end);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004072
Willy Tarreau655dce92009-11-08 13:10:58 +01004073 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004074 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004075 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02004076 return 0;
4077 }
4078
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004079 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004080 now_ms, __FUNCTION__,
4081 s,
4082 req,
4083 req->rex, req->wex,
4084 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004085 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004086 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01004087
William Lallemand82fe75c2012-10-23 10:25:10 +02004088 if (s->fe->comp || s->be->comp)
4089 select_compression_request_header(s, req->buf);
4090
Willy Tarreau59234e92008-11-30 23:51:27 +01004091 /*
4092 * Right now, we know that we have processed the entire headers
4093 * and that unwanted requests have been filtered out. We can do
4094 * whatever we want with the remaining request. Also, now we
4095 * may have separate values for ->fe, ->be.
4096 */
Willy Tarreau06619262006-12-17 08:37:22 +01004097
Willy Tarreau59234e92008-11-30 23:51:27 +01004098 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004099 * If HTTP PROXY is set we simply get remote server address parsing
4100 * incoming request. Note that this requires that a connection is
4101 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01004102 */
4103 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004104 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004105 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004106
Willy Tarreau9471b8c2013-12-15 13:31:35 +01004107 /* Note that for now we don't reuse existing proxy connections */
4108 if (unlikely((conn = si_alloc_conn(req->cons, 0)) == NULL)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004109 txn->req.msg_state = HTTP_MSG_ERROR;
4110 txn->status = 500;
4111 req->analysers = 0;
4112 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
4113
4114 if (!(s->flags & SN_ERR_MASK))
4115 s->flags |= SN_ERR_RESOURCE;
4116 if (!(s->flags & SN_FINST_MASK))
4117 s->flags |= SN_FINST_R;
4118
4119 return 0;
4120 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004121
4122 path = http_get_path(txn);
4123 url2sa(req->buf->p + msg->sl.rq.u,
4124 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01004125 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004126 /* if the path was found, we have to remove everything between
4127 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
4128 * found, we need to replace from req->buf->p + msg->sl.rq.u for
4129 * u_l characters by a single "/".
4130 */
4131 if (path) {
4132 char *cur_ptr = req->buf->p;
4133 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4134 int delta;
4135
4136 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
4137 http_msg_move_end(&txn->req, delta);
4138 cur_end += delta;
4139 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4140 goto return_bad_req;
4141 }
4142 else {
4143 char *cur_ptr = req->buf->p;
4144 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4145 int delta;
4146
4147 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
4148 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
4149 http_msg_move_end(&txn->req, delta);
4150 cur_end += delta;
4151 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4152 goto return_bad_req;
4153 }
Willy Tarreau59234e92008-11-30 23:51:27 +01004154 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004155
Willy Tarreau59234e92008-11-30 23:51:27 +01004156 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004157 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01004158 * Note that doing so might move headers in the request, but
4159 * the fields will stay coherent and the URI will not move.
4160 * This should only be performed in the backend.
4161 */
Willy Tarreaufd39dda2008-10-17 12:01:58 +02004162 if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01004163 && !(txn->flags & (TX_CLDENY|TX_CLTARPIT)))
4164 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02004165
Willy Tarreau59234e92008-11-30 23:51:27 +01004166 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004167 * 8: the appsession cookie was looked up very early in 1.2,
4168 * so let's do the same now.
4169 */
4170
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004171 /* It needs to look into the URI unless persistence must be ignored */
4172 if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02004173 get_srv_from_appsession(s, req->buf->p + msg->sl.rq.u, msg->sl.rq.u_l);
Cyril Bontéb21570a2009-11-29 20:04:48 +01004174 }
4175
William Lallemanda73203e2012-03-12 12:48:57 +01004176 /* add unique-id if "header-unique-id" is specified */
4177
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004178 if (!LIST_ISEMPTY(&s->fe->format_unique_id)) {
4179 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
4180 goto return_bad_req;
4181 s->unique_id[0] = '\0';
William Lallemanda73203e2012-03-12 12:48:57 +01004182 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004183 }
William Lallemanda73203e2012-03-12 12:48:57 +01004184
4185 if (s->fe->header_unique_id && s->unique_id) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004186 chunk_printf(&trash, "%s: %s", s->fe->header_unique_id, s->unique_id);
4187 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01004188 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004189 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01004190 goto return_bad_req;
4191 }
4192
Cyril Bontéb21570a2009-11-29 20:04:48 +01004193 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01004194 * 9: add X-Forwarded-For if either the frontend or the backend
4195 * asks for it.
4196 */
4197 if ((s->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004198 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreau87cf5142011-08-19 22:57:24 +02004199 if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Cyril Bontéa32d2752012-05-29 23:27:41 +02004200 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : s->fe->fwdfor_hdr_name,
4201 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : s->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004202 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004203 /* The header is set to be added only if none is present
4204 * and we found it, so don't do anything.
4205 */
4206 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004207 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004208 /* Add an X-Forwarded-For header unless the source IP is
4209 * in the 'except' network range.
4210 */
4211 if ((!s->fe->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004212 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->fe->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004213 != s->fe->except_net.s_addr) &&
4214 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004215 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004216 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01004217 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01004218 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004219 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02004220
4221 /* Note: we rely on the backend to get the header name to be used for
4222 * x-forwarded-for, because the header is really meant for the backends.
4223 * However, if the backend did not specify any option, we have to rely
4224 * on the frontend's header name.
4225 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004226 if (s->be->fwdfor_hdr_len) {
4227 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004228 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02004229 } else {
Willy Tarreau59234e92008-11-30 23:51:27 +01004230 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004231 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004232 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004233 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01004234
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004235 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01004236 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01004237 }
4238 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004239 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004240 /* FIXME: for the sake of completeness, we should also support
4241 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004242 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004243 int len;
4244 char pn[INET6_ADDRSTRLEN];
4245 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004246 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01004247 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004248
Willy Tarreau59234e92008-11-30 23:51:27 +01004249 /* Note: we rely on the backend to get the header name to be used for
4250 * x-forwarded-for, because the header is really meant for the backends.
4251 * However, if the backend did not specify any option, we have to rely
4252 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004253 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004254 if (s->be->fwdfor_hdr_len) {
4255 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004256 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01004257 } else {
4258 len = s->fe->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004259 memcpy(trash.str, s->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004260 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004261 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02004262
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004263 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01004264 goto return_bad_req;
4265 }
4266 }
4267
4268 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02004269 * 10: add X-Original-To if either the frontend or the backend
4270 * asks for it.
4271 */
4272 if ((s->fe->options | s->be->options) & PR_O_ORGTO) {
4273
4274 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004275 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004276 /* Add an X-Original-To header unless the destination IP is
4277 * in the 'except' network range.
4278 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004279 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02004280
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004281 if (cli_conn->addr.to.ss_family == AF_INET &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02004282 ((!s->fe->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004283 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004284 != s->fe->except_to.s_addr) &&
4285 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004286 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02004287 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004288 int len;
4289 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004290 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02004291
4292 /* Note: we rely on the backend to get the header name to be used for
4293 * x-original-to, because the header is really meant for the backends.
4294 * However, if the backend did not specify any option, we have to rely
4295 * on the frontend's header name.
4296 */
4297 if (s->be->orgto_hdr_len) {
4298 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004299 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02004300 } else {
4301 len = s->fe->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004302 memcpy(trash.str, s->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004303 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004304 len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
Maik Broemme2850cb42009-04-17 18:53:21 +02004305
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004306 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02004307 goto return_bad_req;
4308 }
4309 }
4310 }
4311
Willy Tarreau50fc7772012-11-11 22:19:57 +01004312 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
4313 * If an "Upgrade" token is found, the header is left untouched in order not to have
4314 * to deal with some servers bugs : some of them fail an Upgrade if anything but
4315 * "Upgrade" is present in the Connection header.
4316 */
4317 if (!(txn->flags & TX_HDR_CONN_UPG) &&
4318 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004319 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4320 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004321 unsigned int want_flags = 0;
4322
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004323 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02004324 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004325 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
4326 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreau22a95342010-09-29 14:31:41 +02004327 !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004328 want_flags |= TX_CON_CLO_SET;
4329 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02004330 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004331 ((s->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
4332 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreau22a95342010-09-29 14:31:41 +02004333 ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004334 want_flags |= TX_CON_KAL_SET;
4335 }
4336
4337 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004338 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01004339 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004340
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004341
Willy Tarreau522d6c02009-12-06 18:49:18 +01004342 /* If we have no server assigned yet and we're balancing on url_param
4343 * with a POST request, we may be interested in checking the body for
4344 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01004345 */
4346 if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) &&
4347 s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004348 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004349 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004350 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01004351 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004352
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004353 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01004354 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01004355#ifdef TCP_QUICKACK
4356 /* We expect some data from the client. Unless we know for sure
4357 * we already have a full request, we have to re-enable quick-ack
4358 * in case we previously disabled it, otherwise we might cause
4359 * the client to delay further data.
4360 */
4361 if ((s->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreau3c728722014-01-23 13:50:42 +01004362 cli_conn && conn_ctrl_ready(cli_conn) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004363 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004364 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004365 setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01004366#endif
4367 }
Willy Tarreau03945942009-12-22 16:50:27 +01004368
Willy Tarreau59234e92008-11-30 23:51:27 +01004369 /*************************************************************
4370 * OK, that's finished for the headers. We have done what we *
4371 * could. Let's switch to the DATA state. *
4372 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01004373 req->analyse_exp = TICK_ETERNITY;
4374 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004375
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004376 /* if the server closes the connection, we want to immediately react
4377 * and close the socket to save packets and syscalls.
4378 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01004379 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
4380 req->cons->flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004381
Willy Tarreau59234e92008-11-30 23:51:27 +01004382 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01004383 /* OK let's go on with the BODY now */
4384 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01004385
Willy Tarreau59234e92008-11-30 23:51:27 +01004386 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02004387 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01004388 /* we detected a parsing error. We want to archive this request
4389 * in the dedicated proxy area for later troubleshooting.
4390 */
Willy Tarreau8a0cef22012-03-09 13:39:23 +01004391 http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01004392 }
Willy Tarreau4076a152009-04-02 15:18:36 +02004393
Willy Tarreau59234e92008-11-30 23:51:27 +01004394 txn->req.msg_state = HTTP_MSG_ERROR;
4395 txn->status = 400;
4396 req->analysers = 0;
Willy Tarreau783f2582012-09-04 12:19:04 +02004397 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004398
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004399 s->fe->fe_counters.failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004400 if (s->listener->counters)
4401 s->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004402
Willy Tarreau59234e92008-11-30 23:51:27 +01004403 if (!(s->flags & SN_ERR_MASK))
4404 s->flags |= SN_ERR_PRXCOND;
4405 if (!(s->flags & SN_FINST_MASK))
4406 s->flags |= SN_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02004407 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004408}
Willy Tarreauadfb8562008-08-11 15:24:42 +02004409
Willy Tarreau60b85b02008-11-30 23:28:40 +01004410/* This function is an analyser which processes the HTTP tarpit. It always
4411 * returns zero, at the beginning because it prevents any other processing
4412 * from occurring, and at the end because it terminates the request.
4413 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02004414int http_process_tarpit(struct session *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01004415{
4416 struct http_txn *txn = &s->txn;
4417
4418 /* This connection is being tarpitted. The CLIENT side has
4419 * already set the connect expiration date to the right
4420 * timeout. We just have to check that the client is still
4421 * there and that the timeout has not expired.
4422 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004423 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004424 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004425 !tick_is_expired(req->analyse_exp, now_ms))
4426 return 0;
4427
4428 /* We will set the queue timer to the time spent, just for
4429 * logging purposes. We fake a 500 server error, so that the
4430 * attacker will not suspect his connection has been tarpitted.
4431 * It will not cause trouble to the logs because we can exclude
4432 * the tarpitted connections by filtering on the 'PT' status flags.
4433 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004434 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4435
4436 txn->status = 500;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004437 if (!(req->flags & CF_READ_ERROR))
Willy Tarreau783f2582012-09-04 12:19:04 +02004438 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004439
4440 req->analysers = 0;
4441 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004442
Willy Tarreau60b85b02008-11-30 23:28:40 +01004443 if (!(s->flags & SN_ERR_MASK))
4444 s->flags |= SN_ERR_PRXCOND;
4445 if (!(s->flags & SN_FINST_MASK))
4446 s->flags |= SN_FINST_T;
4447 return 0;
4448}
4449
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004450/* This function is an analyser which waits for the HTTP request body. It waits
4451 * for either the buffer to be full, or the full advertised contents to have
4452 * reached the buffer. It must only be called after the standard HTTP request
4453 * processing has occurred, because it expects the request to be parsed and will
4454 * look for the Expect header. It may send a 100-Continue interim response. It
4455 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4456 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4457 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004458 */
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004459int http_wait_for_request_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004460{
Willy Tarreau522d6c02009-12-06 18:49:18 +01004461 struct http_txn *txn = &s->txn;
Willy Tarreaud34af782008-11-30 23:36:37 +01004462 struct http_msg *msg = &s->txn.req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004463
4464 /* We have to parse the HTTP request body to find any required data.
4465 * "balance url_param check_post" should have been the only way to get
4466 * into this. We were brought here after HTTP header analysis, so all
4467 * related structures are ready.
4468 */
4469
Willy Tarreau890988f2014-04-10 11:59:33 +02004470 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4471 /* This is the first call */
4472 if (msg->msg_state < HTTP_MSG_BODY)
4473 goto missing_data;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004474
Willy Tarreau890988f2014-04-10 11:59:33 +02004475 if (msg->msg_state < HTTP_MSG_100_SENT) {
4476 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4477 * send an HTTP/1.1 100 Continue intermediate response.
4478 */
4479 if (msg->flags & HTTP_MSGF_VER_11) {
4480 struct hdr_ctx ctx;
4481 ctx.idx = 0;
4482 /* Expect is allowed in 1.1, look for it */
4483 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
4484 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
4485 bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len);
4486 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004487 }
Willy Tarreau890988f2014-04-10 11:59:33 +02004488 msg->msg_state = HTTP_MSG_100_SENT;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004489 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004490
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004491 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau877e78d2013-04-07 18:48:08 +02004492 * req->buf->p still points to the beginning of the message. We
4493 * must save the body in msg->next because it survives buffer
4494 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004495 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004496 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004497
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004498 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004499 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4500 else
4501 msg->msg_state = HTTP_MSG_DATA;
4502 }
4503
Willy Tarreau890988f2014-04-10 11:59:33 +02004504 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
4505 /* We're in content-length mode, we just have to wait for enough data. */
4506 if (req->buf->i - msg->sov < msg->body_len)
4507 goto missing_data;
4508
4509 /* OK we have everything we need now */
4510 goto http_end;
4511 }
4512
4513 /* OK here we're parsing a chunked-encoded message */
4514
Willy Tarreau522d6c02009-12-06 18:49:18 +01004515 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004516 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004517 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004518 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004519 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004520 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004521
Willy Tarreau115acb92009-12-26 13:56:06 +01004522 if (!ret)
4523 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004524 else if (ret < 0) {
4525 session_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004526 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004527 }
Willy Tarreaud34af782008-11-30 23:36:37 +01004528 }
4529
Willy Tarreaud98cf932009-12-27 22:54:55 +01004530 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004531 * We have the first data byte is in msg->sov. We're waiting for at
Willy Tarreau226071e2014-04-10 11:55:45 +02004532 * least a whole chunk or the whole content length bytes after msg->sov.
Willy Tarreaud34af782008-11-30 23:36:37 +01004533 */
Willy Tarreau890988f2014-04-10 11:59:33 +02004534 if (msg->msg_state == HTTP_MSG_TRAILERS)
4535 goto http_end;
4536
Willy Tarreau226071e2014-04-10 11:55:45 +02004537 if (req->buf->i - msg->sov >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01004538 goto http_end;
4539
4540 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02004541 /* we get here if we need to wait for more data. If the buffer is full,
4542 * we have the maximum we can expect.
4543 */
4544 if (buffer_full(req->buf, global.tune.maxrewrite))
4545 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01004546
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004547 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01004548 txn->status = 408;
Willy Tarreau783f2582012-09-04 12:19:04 +02004549 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
Willy Tarreau79ebac62010-06-07 13:47:49 +02004550
4551 if (!(s->flags & SN_ERR_MASK))
4552 s->flags |= SN_ERR_CLITO;
4553 if (!(s->flags & SN_FINST_MASK))
4554 s->flags |= SN_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004555 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01004556 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004557
4558 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02004559 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01004560 /* Not enough data. We'll re-use the http-request
4561 * timeout here. Ideally, we should set the timeout
4562 * relative to the accept() date. We just set the
4563 * request timeout once at the beginning of the
4564 * request.
4565 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004566 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01004567 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02004568 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01004569 return 0;
4570 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004571
4572 http_end:
4573 /* The situation will not evolve, so let's give up on the analysis. */
4574 s->logs.tv_request = now; /* update the request timer to reflect full request */
4575 req->analysers &= ~an_bit;
4576 req->analyse_exp = TICK_ETERNITY;
4577 return 1;
4578
4579 return_bad_req: /* let's centralize all bad requests */
4580 txn->req.msg_state = HTTP_MSG_ERROR;
4581 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02004582 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreau522d6c02009-12-06 18:49:18 +01004583
Willy Tarreau79ebac62010-06-07 13:47:49 +02004584 if (!(s->flags & SN_ERR_MASK))
4585 s->flags |= SN_ERR_PRXCOND;
4586 if (!(s->flags & SN_FINST_MASK))
4587 s->flags |= SN_FINST_R;
4588
Willy Tarreau522d6c02009-12-06 18:49:18 +01004589 return_err_msg:
4590 req->analysers = 0;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004591 s->fe->fe_counters.failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004592 if (s->listener->counters)
4593 s->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004594 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01004595}
4596
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004597/* send a server's name with an outgoing request over an established connection.
4598 * Note: this function is designed to be called once the request has been scheduled
4599 * for being forwarded. This is the reason why it rewinds the buffer before
4600 * proceeding.
4601 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01004602int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004603
4604 struct hdr_ctx ctx;
4605
Mark Lamourinec2247f02012-01-04 13:02:01 -05004606 char *hdr_name = be->server_id_hdr_name;
4607 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02004608 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004609 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004610 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004611
William Lallemandd9e90662012-01-30 17:27:17 +01004612 ctx.idx = 0;
4613
Willy Tarreau211cdec2014-04-17 20:18:08 +02004614 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004615 if (old_o) {
4616 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004617 b_rew(chn->buf, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02004618 txn->req.next += old_o;
4619 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004620 }
4621
Willy Tarreau9b28e032012-10-12 23:49:43 +02004622 old_i = chn->buf->i;
4623 while (http_find_header2(hdr_name, hdr_name_len, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05004624 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004625 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004626 }
4627
4628 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004629 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05004630 memcpy(hdr_val, hdr_name, hdr_name_len);
4631 hdr_val += hdr_name_len;
4632 *hdr_val++ = ':';
4633 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004634 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
4635 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05004636
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004637 if (old_o) {
4638 /* If this was a forwarded request, we must readjust the amount of
4639 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02004640 * variations. Note that the current state is >= HTTP_MSG_BODY,
4641 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004642 */
Willy Tarreau877e78d2013-04-07 18:48:08 +02004643 old_o += chn->buf->i - old_i;
4644 b_adv(chn->buf, old_o);
4645 txn->req.next -= old_o;
4646 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02004647 }
4648
Mark Lamourinec2247f02012-01-04 13:02:01 -05004649 return 0;
4650}
4651
Willy Tarreau610ecce2010-01-04 21:15:02 +01004652/* Terminate current transaction and prepare a new one. This is very tricky
4653 * right now but it works.
4654 */
4655void http_end_txn_clean_session(struct session *s)
4656{
Willy Tarreau068621e2013-12-23 15:11:25 +01004657 int prev_status = s->txn.status;
4658
Willy Tarreau610ecce2010-01-04 21:15:02 +01004659 /* FIXME: We need a more portable way of releasing a backend's and a
4660 * server's connections. We need a safer way to reinitialize buffer
4661 * flags. We also need a more accurate method for computing per-request
4662 * data.
4663 */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004664
Willy Tarreau4213a112013-12-15 10:25:42 +01004665 /* unless we're doing keep-alive, we want to quickly close the connection
4666 * to the server.
4667 */
4668 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4669 !si_conn_ready(s->req->cons)) {
4670 s->req->cons->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
4671 si_shutr(s->req->cons);
4672 si_shutw(s->req->cons);
4673 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004674
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004675 if (s->flags & SN_BE_ASSIGNED) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004676 s->be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01004677 if (unlikely(s->srv_conn))
4678 sess_change_server(s, NULL);
4679 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004680
4681 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
4682 session_process_counters(s);
Willy Tarreauf3338342014-01-28 21:40:28 +01004683 session_stop_content_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004684
4685 if (s->txn.status) {
4686 int n;
4687
4688 n = s->txn.status / 100;
4689 if (n < 1 || n > 5)
4690 n = 0;
4691
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004692 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004693 s->fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004694 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004695 s->fe->fe_counters.p.http.comp_rsp++;
4696 }
Willy Tarreau24657792010-02-26 10:30:28 +01004697 if ((s->flags & SN_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004698 (s->be->mode == PR_MODE_HTTP)) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01004699 s->be->be_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004700 s->be->be_counters.p.http.cum_req++;
Willy Tarreau8139b992012-11-27 07:35:31 +01004701 if (s->comp_algo && (s->flags & SN_COMP_READY))
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004702 s->be->be_counters.p.http.comp_rsp++;
4703 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004704 }
4705
4706 /* don't count other requests' data */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004707 s->logs.bytes_in -= s->req->buf->i;
4708 s->logs.bytes_out -= s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004709
4710 /* let's do a final log if we need it */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01004711 if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01004712 !(s->flags & SN_MONITOR) &&
4713 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
4714 s->do_log(s);
4715 }
4716
4717 s->logs.accept_date = date; /* user-visible date for logging */
4718 s->logs.tv_accept = now; /* corrected date for internal use */
4719 tv_zero(&s->logs.tv_request);
4720 s->logs.t_queue = -1;
4721 s->logs.t_connect = -1;
4722 s->logs.t_data = -1;
4723 s->logs.t_close = 0;
4724 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
4725 s->logs.srv_queue_size = 0; /* we will get this number soon */
4726
Willy Tarreau9b28e032012-10-12 23:49:43 +02004727 s->logs.bytes_in = s->req->total = s->req->buf->i;
4728 s->logs.bytes_out = s->rep->total = s->rep->buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004729
4730 if (s->pend_pos)
4731 pendconn_free(s->pend_pos);
4732
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004733 if (objt_server(s->target)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004734 if (s->flags & SN_CURR_SESS) {
4735 s->flags &= ~SN_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004736 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004737 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004738 if (may_dequeue_tasks(objt_server(s->target), s->be))
4739 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01004740 }
4741
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004742 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004743
Willy Tarreau4213a112013-12-15 10:25:42 +01004744 /* only release our endpoint if we don't intend to reuse the
4745 * connection.
4746 */
4747 if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
4748 !si_conn_ready(s->req->cons)) {
4749 si_release_endpoint(s->req->cons);
4750 }
4751
Willy Tarreau610ecce2010-01-04 21:15:02 +01004752 s->req->cons->state = s->req->cons->prev_state = SI_ST_INI;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004753 s->req->cons->err_type = SI_ET_NONE;
Willy Tarreau0b3a4112011-03-27 19:16:56 +02004754 s->req->cons->conn_retries = 0; /* used for logging too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004755 s->req->cons->exp = TICK_ETERNITY;
Willy Tarreauc9200962013-12-31 23:03:09 +01004756 s->req->cons->flags &= SI_FL_DONT_WAKE; /* we're in the context of process_session */
Willy Tarreau644c1012014-04-30 18:11:11 +02004757 s->req->flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WAKE_CONNECT);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004758 s->rep->flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT);
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02004759 s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST);
Willy Tarreau36346242014-02-24 18:26:30 +01004760 s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE|SN_SRV_REUSED);
Willy Tarreau543db622012-11-15 16:41:22 +01004761
Willy Tarreau610ecce2010-01-04 21:15:02 +01004762 s->txn.meth = 0;
4763 http_reset_txn(s);
Willy Tarreaufcffa692010-01-10 14:21:19 +01004764 s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01004765
4766 if (prev_status == 401 || prev_status == 407) {
4767 /* In HTTP keep-alive mode, if we receive a 401, we still have
4768 * a chance of being able to send the visitor again to the same
4769 * server over the same connection. This is required by some
4770 * broken protocols such as NTLM, and anyway whenever there is
4771 * an opportunity for sending the challenge to the proper place,
4772 * it's better to do it (at least it helps with debugging).
4773 */
4774 s->txn.flags |= TX_PREFER_LAST;
4775 }
4776
Willy Tarreauee55dc02010-06-01 10:56:34 +02004777 if (s->fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau610ecce2010-01-04 21:15:02 +01004778 s->req->cons->flags |= SI_FL_INDEP_STR;
4779
Willy Tarreau96e31212011-05-30 18:10:30 +02004780 if (s->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004781 s->req->flags |= CF_NEVER_WAIT;
4782 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02004783 }
4784
Willy Tarreau610ecce2010-01-04 21:15:02 +01004785 /* if the request buffer is not empty, it means we're
4786 * about to process another request, so send pending
4787 * data with MSG_MORE to merge TCP packets when possible.
Willy Tarreau065e8332010-01-08 00:30:20 +01004788 * Just don't do this if the buffer is close to be full,
4789 * because the request will wait for it to flush a little
4790 * bit before proceeding.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004791 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02004792 if (s->req->buf->i) {
4793 if (s->rep->buf->o &&
4794 !buffer_full(s->rep->buf, global.tune.maxrewrite) &&
4795 bi_end(s->rep->buf) <= s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004796 s->rep->flags |= CF_EXPECT_MORE;
Willy Tarreau065e8332010-01-08 00:30:20 +01004797 }
Willy Tarreau90deb182010-01-07 00:20:41 +01004798
4799 /* we're removing the analysers, we MUST re-enable events detection */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004800 channel_auto_read(s->req);
4801 channel_auto_close(s->req);
4802 channel_auto_read(s->rep);
4803 channel_auto_close(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004804
Willy Tarreau27375622013-12-17 00:00:28 +01004805 /* we're in keep-alive with an idle connection, monitor it */
4806 si_idle_conn(s->req->cons);
4807
Willy Tarreau342b11c2010-11-24 16:22:09 +01004808 s->req->analysers = s->listener->analysers;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004809 s->rep->analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004810}
4811
4812
4813/* This function updates the request state machine according to the response
4814 * state machine and buffer flags. It returns 1 if it changes anything (flag
4815 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4816 * it is only used to find when a request/response couple is complete. Both
4817 * this function and its equivalent should loop until both return zero. It
4818 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4819 */
4820int http_sync_req_state(struct session *s)
4821{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004822 struct channel *chn = s->req;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004823 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004824 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004825 unsigned int old_state = txn->req.msg_state;
4826
Willy Tarreau610ecce2010-01-04 21:15:02 +01004827 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
4828 return 0;
4829
4830 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01004831 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004832 * We can shut the read side unless we want to abort_on_close,
4833 * or we have a POST request. The issue with POST requests is
4834 * that some browsers still send a CRLF after the request, and
4835 * this CRLF must be read so that it does not remain in the kernel
4836 * buffers, otherwise a close could cause an RST on some systems
4837 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01004838 * Note that if we're using keep-alive on the client side, we'd
4839 * rather poll now and keep the polling enabled for the whole
4840 * session's life than enabling/disabling it between each
4841 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01004842 */
Willy Tarreau3988d932013-12-27 23:03:08 +01004843 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4844 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
4845 !(s->be->options & PR_O_ABRT_CLOSE) &&
4846 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004847 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004848
Willy Tarreau40f151a2012-12-20 12:10:09 +01004849 /* if the server closes the connection, we want to immediately react
4850 * and close the socket to save packets and syscalls.
4851 */
4852 chn->cons->flags |= SI_FL_NOHALF;
4853
Willy Tarreau610ecce2010-01-04 21:15:02 +01004854 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
4855 goto wait_other_side;
4856
4857 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4858 /* The server has not finished to respond, so we
4859 * don't want to move in order not to upset it.
4860 */
4861 goto wait_other_side;
4862 }
4863
4864 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
4865 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004866 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004867 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004868 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004869 goto wait_other_side;
4870 }
4871
4872 /* When we get here, it means that both the request and the
4873 * response have finished receiving. Depending on the connection
4874 * mode, we'll have to wait for the last bytes to leave in either
4875 * direction, and sometimes for a close to be effective.
4876 */
4877
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004878 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
4879 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004880 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
4881 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004882 }
4883 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
4884 /* Option forceclose is set, or either side wants to close,
4885 * let's enforce it now that we're not expecting any new
4886 * data to come. The caller knows the session is complete
4887 * once both states are CLOSED.
4888 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004889 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4890 channel_shutr_now(chn);
4891 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004892 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004893 }
4894 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01004895 /* The last possible modes are keep-alive and tunnel. Tunnel mode
4896 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004897 */
Willy Tarreau4213a112013-12-15 10:25:42 +01004898 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
4899 channel_auto_read(chn);
4900 txn->req.msg_state = HTTP_MSG_TUNNEL;
4901 chn->flags |= CF_NEVER_WAIT;
4902 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01004903 }
4904
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004905 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004906 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004907 chn->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004908
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004909 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004910 txn->req.msg_state = HTTP_MSG_CLOSING;
4911 goto http_msg_closing;
4912 }
4913 else {
4914 txn->req.msg_state = HTTP_MSG_CLOSED;
4915 goto http_msg_closed;
4916 }
4917 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01004918 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004919 }
4920
4921 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4922 http_msg_closing:
4923 /* nothing else to forward, just waiting for the output buffer
4924 * to be empty and for the shutw_now to take effect.
4925 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004926 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004927 txn->req.msg_state = HTTP_MSG_CLOSED;
4928 goto http_msg_closed;
4929 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004930 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01004931 txn->req.msg_state = HTTP_MSG_ERROR;
4932 goto wait_other_side;
4933 }
4934 }
4935
4936 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4937 http_msg_closed:
Willy Tarreau3988d932013-12-27 23:03:08 +01004938 /* see above in MSG_DONE why we only do this in these states */
4939 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
4940 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
4941 !(s->be->options & PR_O_ABRT_CLOSE))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01004942 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004943 goto wait_other_side;
4944 }
4945
4946 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004947 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004948}
4949
4950
4951/* This function updates the response state machine according to the request
4952 * state machine and buffer flags. It returns 1 if it changes anything (flag
4953 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
4954 * it is only used to find when a request/response couple is complete. Both
4955 * this function and its equivalent should loop until both return zero. It
4956 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
4957 */
4958int http_sync_res_state(struct session *s)
4959{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004960 struct channel *chn = s->rep;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004961 struct http_txn *txn = &s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004962 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004963 unsigned int old_state = txn->rsp.msg_state;
4964
Willy Tarreau610ecce2010-01-04 21:15:02 +01004965 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
4966 return 0;
4967
4968 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4969 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01004970 * still monitor the server connection for a possible close
4971 * while the request is being uploaded, so we don't disable
4972 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01004973 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004974 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01004975
4976 if (txn->req.msg_state == HTTP_MSG_ERROR)
4977 goto wait_other_side;
4978
4979 if (txn->req.msg_state < HTTP_MSG_DONE) {
4980 /* The client seems to still be sending data, probably
4981 * because we got an error response during an upload.
4982 * We have the choice of either breaking the connection
4983 * or letting it pass through. Let's do the later.
4984 */
4985 goto wait_other_side;
4986 }
4987
4988 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
4989 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02004990 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01004991 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02004992 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004993 goto wait_other_side;
4994 }
4995
4996 /* When we get here, it means that both the request and the
4997 * response have finished receiving. Depending on the connection
4998 * mode, we'll have to wait for the last bytes to leave in either
4999 * direction, and sometimes for a close to be effective.
5000 */
5001
5002 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5003 /* Server-close mode : shut read and wait for the request
5004 * side to close its output buffer. The caller will detect
5005 * when we're in DONE and the other is in CLOSED and will
5006 * catch that for the final cleanup.
5007 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005008 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
5009 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005010 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005011 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5012 /* Option forceclose is set, or either side wants to close,
5013 * let's enforce it now that we're not expecting any new
5014 * data to come. The caller knows the session is complete
5015 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005016 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005017 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5018 channel_shutr_now(chn);
5019 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005020 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005021 }
5022 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005023 /* The last possible modes are keep-alive and tunnel. Tunnel will
5024 * need to forward remaining data. Keep-alive will need to monitor
5025 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005026 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005027 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02005028 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01005029 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
5030 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005031 }
5032
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005033 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005034 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005035 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005036 txn->rsp.msg_state = HTTP_MSG_CLOSING;
5037 goto http_msg_closing;
5038 }
5039 else {
5040 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5041 goto http_msg_closed;
5042 }
5043 }
5044 goto wait_other_side;
5045 }
5046
5047 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
5048 http_msg_closing:
5049 /* nothing else to forward, just waiting for the output buffer
5050 * to be empty and for the shutw_now to take effect.
5051 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005052 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005053 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5054 goto http_msg_closed;
5055 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005056 else if (chn->flags & CF_SHUTW) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005057 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005058 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005059 if (objt_server(s->target))
5060 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005061 goto wait_other_side;
5062 }
5063 }
5064
5065 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
5066 http_msg_closed:
5067 /* drop any pending data */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005068 bi_erase(chn);
5069 channel_auto_close(chn);
5070 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005071 goto wait_other_side;
5072 }
5073
5074 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02005075 /* We force the response to leave immediately if we're waiting for the
5076 * other side, since there is no pending shutdown to push it out.
5077 */
5078 if (!channel_is_empty(chn))
5079 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005080 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005081}
5082
5083
5084/* Resync the request and response state machines. Return 1 if either state
5085 * changes.
5086 */
5087int http_resync_states(struct session *s)
5088{
5089 struct http_txn *txn = &s->txn;
5090 int old_req_state = txn->req.msg_state;
5091 int old_res_state = txn->rsp.msg_state;
5092
Willy Tarreau610ecce2010-01-04 21:15:02 +01005093 http_sync_req_state(s);
5094 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005095 if (!http_sync_res_state(s))
5096 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005097 if (!http_sync_req_state(s))
5098 break;
5099 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02005100
Willy Tarreau610ecce2010-01-04 21:15:02 +01005101 /* OK, both state machines agree on a compatible state.
5102 * There are a few cases we're interested in :
5103 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
5104 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
5105 * directions, so let's simply disable both analysers.
5106 * - HTTP_MSG_CLOSED on the response only means we must abort the
5107 * request.
5108 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
5109 * with server-close mode means we've completed one request and we
5110 * must re-initialize the server connection.
5111 */
5112
5113 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
5114 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
5115 (txn->req.msg_state == HTTP_MSG_CLOSED &&
5116 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
5117 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005118 channel_auto_close(s->req);
5119 channel_auto_read(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005120 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005121 channel_auto_close(s->rep);
5122 channel_auto_read(s->rep);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005123 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01005124 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
5125 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->rep->flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005126 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01005127 txn->req.msg_state == HTTP_MSG_ERROR) {
Willy Tarreau90deb182010-01-07 00:20:41 +01005128 s->rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005129 channel_auto_close(s->rep);
5130 channel_auto_read(s->rep);
Willy Tarreau90deb182010-01-07 00:20:41 +01005131 s->req->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005132 channel_abort(s->req);
5133 channel_auto_close(s->req);
5134 channel_auto_read(s->req);
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005135 bi_erase(s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005136 }
Willy Tarreau4213a112013-12-15 10:25:42 +01005137 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
5138 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01005139 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01005140 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
5141 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
5142 /* server-close/keep-alive: terminate this transaction,
5143 * possibly killing the server connection and reinitialize
5144 * a fresh-new transaction.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005145 */
5146 http_end_txn_clean_session(s);
5147 }
5148
Willy Tarreau610ecce2010-01-04 21:15:02 +01005149 return txn->req.msg_state != old_req_state ||
5150 txn->rsp.msg_state != old_res_state;
5151}
5152
Willy Tarreaud98cf932009-12-27 22:54:55 +01005153/* This function is an analyser which forwards request body (including chunk
5154 * sizes if any). It is called as soon as we must forward, even if we forward
5155 * zero byte. The only situation where it must not be called is when we're in
5156 * tunnel mode and we want to forward till the close. It's used both to forward
5157 * remaining data and to resync after end of body. It expects the msg_state to
5158 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
5159 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreau124d9912011-03-01 20:30:48 +01005160 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02005161 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005162 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005163int http_request_forward_body(struct session *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005164{
5165 struct http_txn *txn = &s->txn;
5166 struct http_msg *msg = &s->txn.req;
5167
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005168 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5169 return 0;
5170
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005171 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02005172 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005173 /* Output closed while we were sending data. We must abort and
5174 * wake the other side up.
5175 */
5176 msg->msg_state = HTTP_MSG_ERROR;
5177 http_resync_states(s);
Willy Tarreaub9edf8f2014-05-07 14:24:16 +02005178
5179 if (req->flags & CF_READ_TIMEOUT)
5180 goto cli_timeout;
5181
5182 if (req->flags & CF_WRITE_TIMEOUT)
5183 goto srv_timeout;
5184
Willy Tarreau082b01c2010-01-02 23:58:04 +01005185 return 1;
5186 }
5187
Willy Tarreaud98cf932009-12-27 22:54:55 +01005188 /* Note that we don't have to send 100-continue back because we don't
5189 * need the data to complete our job, and it's up to the server to
5190 * decide whether to return 100, 417 or anything else in return of
5191 * an "Expect: 100-continue" header.
5192 */
5193
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005194 if (msg->sov) {
5195 /* we have msg->sov which points to the first byte of message
5196 * body, and req->buf.p still points to the beginning of the
5197 * message. We forward the headers now, as we don't need them
5198 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005199 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005200 b_adv(req->buf, msg->sov);
5201 msg->next -= msg->sov;
5202 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01005203
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02005204 /* The previous analysers guarantee that the state is somewhere
5205 * between MSG_BODY and the first MSG_DATA. So msg->sol and
5206 * msg->next are always correct.
5207 */
5208 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
5209 if (msg->flags & HTTP_MSGF_TE_CHNK)
5210 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5211 else
5212 msg->msg_state = HTTP_MSG_DATA;
5213 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005214 }
5215
Willy Tarreau7ba23542014-04-17 21:50:00 +02005216 /* Some post-connect processing might want us to refrain from starting to
5217 * forward data. Currently, the only reason for this is "balance url_param"
5218 * whichs need to parse/process the request after we've enabled forwarding.
5219 */
5220 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
5221 if (!(s->rep->flags & CF_READ_ATTACHED)) {
5222 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02005223 req->flags |= CF_WAKE_CONNECT;
Willy Tarreau7ba23542014-04-17 21:50:00 +02005224 goto missing_data;
5225 }
5226 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
5227 }
5228
Willy Tarreau80a92c02014-03-12 10:41:13 +01005229 /* in most states, we should abort in case of early close */
5230 channel_auto_close(req);
5231
Willy Tarreauefdf0942014-04-24 20:08:57 +02005232 if (req->to_forward) {
5233 /* We can't process the buffer's contents yet */
5234 req->flags |= CF_WAKE_WRITE;
5235 goto missing_data;
5236 }
5237
Willy Tarreaud98cf932009-12-27 22:54:55 +01005238 while (1) {
Willy Tarreaucaabe412010-01-03 23:08:28 +01005239 if (msg->msg_state == HTTP_MSG_DATA) {
5240 /* must still forward */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005241 /* we may have some pending data starting at req->buf->p */
5242 if (msg->chunk_len > req->buf->i - msg->next) {
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005243 req->flags |= CF_WAKE_WRITE;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005244 goto missing_data;
Willy Tarreau4afd70a2014-01-25 02:26:39 +01005245 }
Willy Tarreaubed410e2014-04-22 08:19:34 +02005246 msg->next += msg->chunk_len;
5247 msg->chunk_len = 0;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005248
5249 /* nothing left to forward */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005250 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005251 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005252 else
Willy Tarreaucaabe412010-01-03 23:08:28 +01005253 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaucaabe412010-01-03 23:08:28 +01005254 }
5255 else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01005256 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02005257 * set ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01005258 * TRAILERS state.
5259 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005260 int ret = http_parse_chunk_size(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005261
Willy Tarreau54d23df2012-10-25 19:04:45 +02005262 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005263 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005264 else if (ret < 0) {
5265 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005266 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005267 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005268 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005269 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005270 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005271 }
Willy Tarreau54d23df2012-10-25 19:04:45 +02005272 else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01005273 /* we want the CRLF after the data */
Willy Tarreau54d23df2012-10-25 19:04:45 +02005274 int ret = http_skip_chunk_crlf(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005275
5276 if (ret == 0)
5277 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005278 else if (ret < 0) {
5279 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005280 if (msg->err_pos >= 0)
Willy Tarreau54d23df2012-10-25 19:04:45 +02005281 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005282 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005283 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005284 /* we're in MSG_CHUNK_SIZE now */
5285 }
5286 else if (msg->msg_state == HTTP_MSG_TRAILERS) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01005287 int ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005288
5289 if (ret == 0)
5290 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005291 else if (ret < 0) {
5292 session_inc_http_err_ctr(s);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005293 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005294 http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005295 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005296 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005297 /* we're in HTTP_MSG_DONE now */
5298 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005299 else {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005300 int old_state = msg->msg_state;
5301
Willy Tarreau610ecce2010-01-04 21:15:02 +01005302 /* other states, DONE...TUNNEL */
Willy Tarreaubed410e2014-04-22 08:19:34 +02005303
5304 /* we may have some pending data starting at req->buf->p
5305 * such as last chunk of data or trailers.
5306 */
5307 b_adv(req->buf, msg->next);
5308 msg->next = 0;
5309
Willy Tarreau4fe41902010-06-07 22:27:41 +02005310 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005311 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5312 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005313 channel_dont_close(req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005314 if (http_resync_states(s)) {
5315 /* some state changes occurred, maybe the analyser
5316 * was disabled too.
Willy Tarreauface8392010-01-03 11:37:54 +01005317 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005318 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005319 if (req->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005320 /* request errors are most likely due to
5321 * the server aborting the transfer.
5322 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005323 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005324 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01005325 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005326 http_capture_bad_message(&s->fe->invalid_req, s, msg, old_state, s->be);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005327 goto return_bad_req;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01005328 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005329 return 1;
Willy Tarreaub608feb2010-01-02 22:47:18 +01005330 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005331
5332 /* If "option abortonclose" is set on the backend, we
5333 * want to monitor the client's connection and forward
5334 * any shutdown notification to the server, which will
5335 * decide whether to close or to go on processing the
5336 * request.
5337 */
5338 if (s->be->options & PR_O_ABRT_CLOSE) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005339 channel_auto_read(req);
5340 channel_auto_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02005341 }
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005342 else if (s->txn.meth == HTTP_METH_POST) {
5343 /* POST requests may require to read extra CRLF
5344 * sent by broken browsers and which could cause
5345 * an RST to be sent upon close on some systems
5346 * (eg: Linux).
5347 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005348 channel_auto_read(req);
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005349 }
Willy Tarreau5c54c712010-07-17 08:02:58 +02005350
Willy Tarreaub1982e22014-05-06 22:57:53 +02005351 /* if we received everything, we don't want to expire anymore */
5352 if (msg->msg_state == HTTP_MSG_DONE) {
5353 req->flags |= CF_READ_NOEXP;
5354 req->rex = TICK_ETERNITY;
5355 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005356 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005357 }
5358 }
5359
Willy Tarreaud98cf932009-12-27 22:54:55 +01005360 missing_data:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005361 /* we may have some pending data starting at req->buf->p */
5362 b_adv(req->buf, msg->next);
5363 msg->next = 0;
5364 msg->chunk_len -= channel_forward(req, msg->chunk_len);
5365
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005366 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005367 if (req->flags & CF_SHUTR) {
Willy Tarreau79ebac62010-06-07 13:47:49 +02005368 if (!(s->flags & SN_ERR_MASK))
5369 s->flags |= SN_ERR_CLICL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005370 if (!(s->flags & SN_FINST_MASK)) {
5371 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5372 s->flags |= SN_FINST_H;
5373 else
5374 s->flags |= SN_FINST_D;
5375 }
5376
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005377 s->fe->fe_counters.cli_aborts++;
5378 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005379 if (objt_server(s->target))
5380 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005381
5382 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005383 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005384
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005385 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005386 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005387 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005388
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005389 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005390 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005391 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005392 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005393 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005394
Willy Tarreau5c620922011-05-11 19:56:11 +02005395 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005396 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005397 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005398 * modes are already handled by the stream sock layer. We must not do
5399 * this in content-length mode because it could present the MSG_MORE
5400 * flag with the last block of forwarded data, which would cause an
5401 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005402 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005403 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005404 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005405
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005406 return 0;
5407
Willy Tarreaud98cf932009-12-27 22:54:55 +01005408 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005409 s->fe->fe_counters.failed_req++;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005410 if (s->listener->counters)
5411 s->listener->counters->failed_req++;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005412
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005413 return_bad_req_stats_ok:
Willy Tarreaubed410e2014-04-22 08:19:34 +02005414 /* we may have some pending data starting at req->buf->p */
5415 b_adv(req->buf, msg->next);
5416 msg->next = 0;
5417
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005418 txn->req.msg_state = HTTP_MSG_ERROR;
5419 if (txn->status) {
5420 /* Note: we don't send any error if some data were already sent */
5421 stream_int_retnclose(req->prod, NULL);
5422 } else {
5423 txn->status = 400;
Willy Tarreau783f2582012-09-04 12:19:04 +02005424 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005425 }
5426 req->analysers = 0;
5427 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005428
5429 if (!(s->flags & SN_ERR_MASK))
5430 s->flags |= SN_ERR_PRXCOND;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005431 if (!(s->flags & SN_FINST_MASK)) {
5432 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5433 s->flags |= SN_FINST_H;
5434 else
5435 s->flags |= SN_FINST_D;
5436 }
5437 return 0;
5438
5439 aborted_xfer:
5440 txn->req.msg_state = HTTP_MSG_ERROR;
5441 if (txn->status) {
5442 /* Note: we don't send any error if some data were already sent */
5443 stream_int_retnclose(req->prod, NULL);
5444 } else {
5445 txn->status = 502;
Willy Tarreau783f2582012-09-04 12:19:04 +02005446 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_502));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005447 }
5448 req->analysers = 0;
5449 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
5450
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005451 s->fe->fe_counters.srv_aborts++;
5452 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005453 if (objt_server(s->target))
5454 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005455
5456 if (!(s->flags & SN_ERR_MASK))
5457 s->flags |= SN_ERR_SRVCL;
5458 if (!(s->flags & SN_FINST_MASK)) {
5459 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5460 s->flags |= SN_FINST_H;
5461 else
5462 s->flags |= SN_FINST_D;
5463 }
Willy Tarreaub9edf8f2014-05-07 14:24:16 +02005464 return 0;
5465
5466 cli_timeout:
5467 if (!(s->flags & SN_ERR_MASK))
5468 s->flags |= SN_ERR_CLITO;
5469
5470 if (!(s->flags & SN_FINST_MASK)) {
5471 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5472 s->flags |= SN_FINST_H;
5473 else
5474 s->flags |= SN_FINST_D;
5475 }
5476
5477 if (txn->status > 0) {
5478 /* Don't send any error message if something was already sent */
5479 stream_int_retnclose(req->prod, NULL);
5480 }
5481 else {
5482 txn->status = 408;
5483 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408));
5484 }
5485
5486 msg->msg_state = HTTP_MSG_ERROR;
5487 req->analysers = 0;
5488 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
5489
5490 session_inc_http_err_ctr(s);
5491 s->fe->fe_counters.failed_req++;
5492 s->be->be_counters.failed_req++;
5493 if (s->listener->counters)
5494 s->listener->counters->failed_req++;
5495 return 0;
5496
5497 srv_timeout:
5498 if (!(s->flags & SN_ERR_MASK))
5499 s->flags |= SN_ERR_SRVTO;
5500
5501 if (!(s->flags & SN_FINST_MASK)) {
5502 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
5503 s->flags |= SN_FINST_H;
5504 else
5505 s->flags |= SN_FINST_D;
5506 }
5507
5508 if (txn->status > 0) {
5509 /* Don't send any error message if something was already sent */
5510 stream_int_retnclose(req->prod, NULL);
5511 }
5512 else {
5513 txn->status = 504;
5514 stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_504));
5515 }
5516
5517 msg->msg_state = HTTP_MSG_ERROR;
5518 req->analysers = 0;
5519 s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */
5520
5521 s->be->be_counters.failed_resp++;
5522 if (objt_server(s->target)) {
5523 objt_server(s->target)->counters.failed_resp++;
5524 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
5525 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005526 return 0;
5527}
5528
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005529/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5530 * processing can continue on next analysers, or zero if it either needs more
5531 * data or wants to immediately abort the response (eg: timeout, error, ...). It
5532 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers
5533 * when it has nothing left to do, and may remove any analyser when it wants to
5534 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005535 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02005536int http_wait_for_response(struct session *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005537{
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005538 struct http_txn *txn = &s->txn;
5539 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005540 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005541 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005542 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005543 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005544
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005545 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02005546 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005547 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005548 rep,
5549 rep->rex, rep->wex,
5550 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005551 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005552 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005553
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005554 /*
5555 * Now parse the partial (or complete) lines.
5556 * We will check the response syntax, and also join multi-line
5557 * headers. An index of all the lines will be elaborated while
5558 * parsing.
5559 *
5560 * For the parsing, we use a 28 states FSM.
5561 *
5562 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005563 * rep->buf->p = beginning of response
5564 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5565 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005566 * msg->eol = end of current header or line (LF or CRLF)
5567 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005568 */
5569
Willy Tarreau628c40c2014-04-24 19:11:26 +02005570 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01005571 /* There's a protected area at the end of the buffer for rewriting
5572 * purposes. We don't want to start to parse the request if the
5573 * protected area is affected, because we may have to move processed
5574 * data later, which is much more complicated.
5575 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005576 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005577 if (unlikely(!channel_reserved(rep))) {
5578 /* some data has still not left the buffer, wake us once that's done */
5579 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5580 goto abort_response;
5581 channel_dont_close(rep);
5582 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005583 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005584 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005585 }
5586
Willy Tarreau379357a2013-06-08 12:55:46 +02005587 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5588 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5589 buffer_slow_realign(rep->buf);
5590
Willy Tarreau9b28e032012-10-12 23:49:43 +02005591 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005592 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005593 }
5594
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005595 /* 1: we might have to print this header in debug mode */
5596 if (unlikely((global.mode & MODE_DEBUG) &&
5597 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau655dce92009-11-08 13:10:58 +01005598 (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005599 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005600
Willy Tarreau9b28e032012-10-12 23:49:43 +02005601 sol = rep->buf->p;
5602 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005603 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005604
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005605 sol += hdr_idx_first_pos(&txn->hdr_idx);
5606 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005607
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005608 while (cur_idx) {
5609 eol = sol + txn->hdr_idx.v[cur_idx].len;
5610 debug_hdr("srvhdr", s, sol, eol);
5611 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5612 cur_idx = txn->hdr_idx.v[cur_idx].next;
5613 }
5614 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005615
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005616 /*
5617 * Now we quickly check if we have found a full valid response.
5618 * If not so, we check the FD and buffer states before leaving.
5619 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005620 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005621 * responses are checked first.
5622 *
5623 * Depending on whether the client is still there or not, we
5624 * may send an error response back or not. Note that normally
5625 * we should only check for HTTP status there, and check I/O
5626 * errors somewhere else.
5627 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005628
Willy Tarreau655dce92009-11-08 13:10:58 +01005629 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005630 /* Invalid response */
5631 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5632 /* we detected a parsing error. We want to archive this response
5633 * in the dedicated proxy area for later troubleshooting.
5634 */
5635 hdr_response_bad:
5636 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005637 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005638
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005639 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005640 if (objt_server(s->target)) {
5641 objt_server(s->target)->counters.failed_resp++;
5642 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005643 }
Willy Tarreau64648412010-03-05 10:41:54 +01005644 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005645 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005646 rep->analysers = 0;
5647 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005648 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005649 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005650 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005651
5652 if (!(s->flags & SN_ERR_MASK))
5653 s->flags |= SN_ERR_PRXCOND;
5654 if (!(s->flags & SN_FINST_MASK))
5655 s->flags |= SN_FINST_H;
5656
5657 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005658 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005659
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005660 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005661 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02005662 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02005663 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005664 goto hdr_response_bad;
5665 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005666
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005667 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005668 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005669 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005670 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005671 else if (txn->flags & TX_NOT_FIRST)
5672 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02005673
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005674 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005675 if (objt_server(s->target)) {
5676 objt_server(s->target)->counters.failed_resp++;
5677 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005678 }
Willy Tarreau461f6622008-08-15 23:43:19 +02005679
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005680 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005681 rep->analysers = 0;
5682 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005683 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005684 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005685 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau816b9792009-09-15 21:25:21 +02005686
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005687 if (!(s->flags & SN_ERR_MASK))
5688 s->flags |= SN_ERR_SRVCL;
5689 if (!(s->flags & SN_FINST_MASK))
5690 s->flags |= SN_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02005691 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005692 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02005693
Willy Tarreaub9edf8f2014-05-07 14:24:16 +02005694 /* read/write timeout : return a 504 to the client.
5695 * The write timeout may happen when we're uploading POST
5696 * data that the server is not consuming fast enough.
5697 */
5698 else if (rep->flags & (CF_READ_TIMEOUT|CF_WRITE_TIMEOUT)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005699 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005700 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005701 else if (txn->flags & TX_NOT_FIRST)
5702 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005703
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005704 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005705 if (objt_server(s->target)) {
5706 objt_server(s->target)->counters.failed_resp++;
5707 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005708 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005709
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005710 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005711 rep->analysers = 0;
5712 txn->status = 504;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005713 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005714 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005715 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_504));
Willy Tarreau4076a152009-04-02 15:18:36 +02005716
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005717 if (!(s->flags & SN_ERR_MASK))
5718 s->flags |= SN_ERR_SRVTO;
5719 if (!(s->flags & SN_FINST_MASK))
5720 s->flags |= SN_FINST_H;
5721 return 0;
5722 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02005723
Willy Tarreauf003d372012-11-26 13:35:37 +01005724 /* client abort with an abortonclose */
5725 else if ((rep->flags & CF_SHUTR) && ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
5726 s->fe->fe_counters.cli_aborts++;
5727 s->be->be_counters.cli_aborts++;
5728 if (objt_server(s->target))
5729 objt_server(s->target)->counters.cli_aborts++;
5730
5731 rep->analysers = 0;
5732 channel_auto_close(rep);
5733
5734 txn->status = 400;
5735 bi_erase(rep);
5736 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_400));
5737
5738 if (!(s->flags & SN_ERR_MASK))
5739 s->flags |= SN_ERR_CLICL;
5740 if (!(s->flags & SN_FINST_MASK))
5741 s->flags |= SN_FINST_H;
5742
5743 /* process_session() will take care of the error */
5744 return 0;
5745 }
5746
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005747 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005748 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02005749 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005750 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005751 else if (txn->flags & TX_NOT_FIRST)
5752 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01005753
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005754 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005755 if (objt_server(s->target)) {
5756 objt_server(s->target)->counters.failed_resp++;
5757 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005758 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005759
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005760 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005761 rep->analysers = 0;
5762 txn->status = 502;
Willy Tarreauc88ea682009-12-29 14:56:36 +01005763 rep->prod->flags |= SI_FL_NOLINGER;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02005764 bi_erase(rep);
Willy Tarreau783f2582012-09-04 12:19:04 +02005765 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
Willy Tarreau21d2af32008-02-14 20:25:24 +01005766
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005767 if (!(s->flags & SN_ERR_MASK))
5768 s->flags |= SN_ERR_SRVCL;
5769 if (!(s->flags & SN_FINST_MASK))
5770 s->flags |= SN_FINST_H;
5771 return 0;
5772 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005773
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005774 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005775 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005776 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005777 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01005778 else if (txn->flags & TX_NOT_FIRST)
5779 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005780
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005781 s->be->be_counters.failed_resp++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005782 rep->analysers = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005783 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005784
5785 if (!(s->flags & SN_ERR_MASK))
5786 s->flags |= SN_ERR_CLICL;
5787 if (!(s->flags & SN_FINST_MASK))
5788 s->flags |= SN_FINST_H;
5789
5790 /* process_session() will take care of the error */
5791 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005792 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01005793
Willy Tarreau3bed5e92014-05-07 14:50:10 +02005794 /* we don't want to expire on the server side first until the client
5795 * has sent all the expected message body.
5796 */
5797 if (txn->req.msg_state >= HTTP_MSG_BODY && txn->req.msg_state < HTTP_MSG_DONE)
5798 rep->flags |= CF_READ_NOEXP;
5799
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005800 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01005801 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005802 return 0;
5803 }
5804
5805 /* More interesting part now : we know that we have a complete
5806 * response which at least looks like HTTP. We have an indicator
5807 * of each header's length, so we can parse them quickly.
5808 */
5809
5810 if (unlikely(msg->err_pos >= 0))
Willy Tarreau8a0cef22012-03-09 13:39:23 +01005811 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005812
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005813 /*
5814 * 1: get the status code
5815 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005816 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005817 if (n < 1 || n > 5)
5818 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005819 /* when the client triggers a 4xx from the server, it's most often due
5820 * to a missing object or permission. These events should be tracked
5821 * because if they happen often, it may indicate a brute force or a
5822 * vulnerability scan.
5823 */
5824 if (n == 4)
5825 session_inc_http_err_ctr(s);
5826
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005827 if (objt_server(s->target))
5828 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005829
Willy Tarreau5b154472009-12-21 20:11:07 +01005830 /* check if the response is HTTP/1.1 or above */
5831 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005832 ((rep->buf->p[5] > '1') ||
5833 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005834 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01005835
5836 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01005837 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_HDR_CONN_UPG|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01005838
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005839 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005840 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005841
Willy Tarreau9b28e032012-10-12 23:49:43 +02005842 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005843
Willy Tarreau39650402010-03-15 19:44:39 +01005844 /* Adjust server's health based on status code. Note: status codes 501
5845 * and 505 are triggered on demand by client request, so we must not
5846 * count them as server failures.
5847 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005848 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005849 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005850 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005851 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005852 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02005853 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01005854
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005855 /*
5856 * 2: check for cacheability.
5857 */
5858
5859 switch (txn->status) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02005860 case 100:
5861 /*
5862 * We may be facing a 100-continue response, in which case this
5863 * is not the right response, and we're waiting for the next one.
5864 * Let's allow this response to go to the client and wait for the
5865 * next one.
5866 */
5867 hdr_idx_init(&txn->hdr_idx);
5868 msg->next -= channel_forward(rep, msg->next);
5869 msg->msg_state = HTTP_MSG_RPBEFORE;
5870 txn->status = 0;
5871 s->logs.t_data = -1; /* was not a response yet */
5872 goto next_one;
5873
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005874 case 200:
5875 case 203:
5876 case 206:
5877 case 300:
5878 case 301:
5879 case 410:
5880 /* RFC2616 @13.4:
5881 * "A response received with a status code of
5882 * 200, 203, 206, 300, 301 or 410 MAY be stored
5883 * by a cache (...) unless a cache-control
5884 * directive prohibits caching."
5885 *
5886 * RFC2616 @9.5: POST method :
5887 * "Responses to this method are not cacheable,
5888 * unless the response includes appropriate
5889 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005890 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005891 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02005892 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005893 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
5894 break;
5895 default:
5896 break;
5897 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005898
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005899 /*
5900 * 3: we may need to capture headers
5901 */
5902 s->logs.logwait &= ~LW_RESP;
Willy Tarreau42f7d892012-03-24 08:28:09 +01005903 if (unlikely((s->logs.logwait & LW_RSPHDR) && txn->rsp.cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02005904 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005905 txn->rsp.cap, s->fe->rsp_cap);
5906
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005907 /* 4: determine the transfer-length.
5908 * According to RFC2616 #4.4, amended by the HTTPbis working group,
5909 * the presence of a message-body in a RESPONSE and its transfer length
5910 * must be determined that way :
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005911 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005912 * All responses to the HEAD request method MUST NOT include a
5913 * message-body, even though the presence of entity-header fields
5914 * might lead one to believe they do. All 1xx (informational), 204
5915 * (No Content), and 304 (Not Modified) responses MUST NOT include a
5916 * message-body. All other responses do include a message-body,
5917 * although it MAY be of zero length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005918 *
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005919 * 1. Any response which "MUST NOT" include a message-body (such as the
5920 * 1xx, 204 and 304 responses and any response to a HEAD request) is
5921 * always terminated by the first empty line after the header fields,
5922 * regardless of the entity-header fields present in the message.
5923 *
5924 * 2. If a Transfer-Encoding header field (Section 9.7) is present and
5925 * the "chunked" transfer-coding (Section 6.2) is used, the
5926 * transfer-length is defined by the use of this transfer-coding.
5927 * If a Transfer-Encoding header field is present and the "chunked"
5928 * transfer-coding is not present, the transfer-length is defined by
5929 * the sender closing the connection.
5930 *
5931 * 3. If a Content-Length header field is present, its decimal value in
5932 * OCTETs represents both the entity-length and the transfer-length.
5933 * If a message is received with both a Transfer-Encoding header
5934 * field and a Content-Length header field, the latter MUST be ignored.
5935 *
5936 * 4. If the message uses the media type "multipart/byteranges", and
5937 * the transfer-length is not otherwise specified, then this self-
5938 * delimiting media type defines the transfer-length. This media
5939 * type MUST NOT be used unless the sender knows that the recipient
5940 * can parse it; the presence in a request of a Range header with
5941 * multiple byte-range specifiers from a 1.1 client implies that the
5942 * client can parse multipart/byteranges responses.
5943 *
5944 * 5. By the server closing the connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005945 */
5946
5947 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01005948 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005949 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005950 * FIXME: should we parse anyway and return an error on chunked encoding ?
5951 */
5952 if (txn->meth == HTTP_METH_HEAD ||
5953 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005954 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005955 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreau91015352012-11-27 07:31:33 +01005956 s->comp_algo = NULL;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005957 goto skip_content_length;
5958 }
5959
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005960 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005961 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005962 while ((msg->flags & HTTP_MSGF_VER_11) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005963 http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005964 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005965 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
5966 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005967 /* bad transfer-encoding (chunked followed by something else) */
5968 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005969 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005970 break;
5971 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005972 }
5973
5974 /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */
5975 ctx.idx = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005976 while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02005977 http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005978 signed long long cl;
5979
Willy Tarreauad14f752011-09-02 20:33:27 +02005980 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005981 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005982 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005983 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005984
Willy Tarreauad14f752011-09-02 20:33:27 +02005985 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005986 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005987 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02005988 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005989
Willy Tarreauad14f752011-09-02 20:33:27 +02005990 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005991 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005992 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02005993 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005994
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005995 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02005996 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005997 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02005998 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005999
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006000 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01006001 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006002 }
6003
William Lallemand82fe75c2012-10-23 10:25:10 +02006004 if (s->fe->comp || s->be->comp)
6005 select_compression_response_header(s, rep->buf);
6006
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006007skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01006008 /* Now we have to check if we need to modify the Connection header.
6009 * This is more difficult on the response than it is on the request,
6010 * because we can have two different HTTP versions and we don't know
6011 * how the client will interprete a response. For instance, let's say
6012 * that the client sends a keep-alive request in HTTP/1.0 and gets an
6013 * HTTP/1.1 response without any header. Maybe it will bound itself to
6014 * HTTP/1.0 because it only knows about it, and will consider the lack
6015 * of header as a close, or maybe it knows HTTP/1.1 and can consider
6016 * the lack of header as a keep-alive. Thus we will use two flags
6017 * indicating how a request MAY be understood by the client. In case
6018 * of multiple possibilities, we'll fix the header to be explicit. If
6019 * ambiguous cases such as both close and keepalive are seen, then we
6020 * will fall back to explicit close. Note that we won't take risks with
6021 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01006022 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01006023 */
6024
Willy Tarreaudc008c52010-02-01 16:20:08 +01006025 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
6026 txn->status == 101)) {
6027 /* Either we've established an explicit tunnel, or we're
6028 * switching the protocol. In both cases, we're very unlikely
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006029 * to understand the next protocols. We have to switch to tunnel
6030 * mode, so that we transfer the request and responses then let
6031 * this protocol pass unmodified. When we later implement specific
6032 * parsers for such protocols, we'll want to check the Upgrade
Willy Tarreaudc008c52010-02-01 16:20:08 +01006033 * header which contains information about that protocol for
6034 * responses with status 101 (eg: see RFC2817 about TLS).
Willy Tarreau5843d1a2010-02-01 15:13:32 +01006035 */
6036 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
6037 }
Willy Tarreaudc008c52010-02-01 16:20:08 +01006038 else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
6039 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006040 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6041 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01006042 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01006043
Willy Tarreau70dffda2014-01-30 03:07:23 +01006044 /* this situation happens when combining pretend-keepalive with httpclose. */
6045 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006046 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6047 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
Willy Tarreau70dffda2014-01-30 03:07:23 +01006048 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
6049
Willy Tarreau60466522010-01-18 19:08:45 +01006050 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006051 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01006052 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
6053 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01006054
Willy Tarreau60466522010-01-18 19:08:45 +01006055 /* now adjust header transformations depending on current state */
6056 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
6057 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
6058 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006059 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01006060 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006061 }
Willy Tarreau60466522010-01-18 19:08:45 +01006062 else { /* SCL / KAL */
6063 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006064 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01006065 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006066 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006067
Willy Tarreau60466522010-01-18 19:08:45 +01006068 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006069 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01006070
Willy Tarreau60466522010-01-18 19:08:45 +01006071 /* Some keep-alive responses are converted to Server-close if
6072 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01006073 */
Willy Tarreau60466522010-01-18 19:08:45 +01006074 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
6075 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006076 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01006077 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01006078 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006079 }
6080
Willy Tarreau7959a552013-09-23 16:44:27 +02006081 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006082 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02006083
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006084 /* end of job, return OK */
6085 rep->analysers &= ~an_bit;
6086 rep->analyse_exp = TICK_ETERNITY;
6087 channel_auto_close(rep);
6088 return 1;
6089
6090 abort_keep_alive:
6091 /* A keep-alive request to the server failed on a network error.
6092 * The client is required to retry. We need to close without returning
6093 * any other information so that the client retries.
6094 */
6095 txn->status = 0;
6096 rep->analysers = 0;
6097 s->req->analysers = 0;
6098 channel_auto_close(rep);
6099 s->logs.logwait = 0;
6100 s->logs.level = 0;
6101 s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
6102 bi_erase(rep);
6103 stream_int_retnclose(rep->cons, NULL);
6104 return 0;
6105}
6106
6107/* This function performs all the processing enabled for the current response.
6108 * It normally returns 1 unless it wants to break. It relies on buffers flags,
6109 * and updates s->rep->analysers. It might make sense to explode it into several
6110 * other functions. It works like process_request (see indications above).
6111 */
6112int http_process_res_common(struct session *s, struct channel *rep, int an_bit, struct proxy *px)
6113{
6114 struct http_txn *txn = &s->txn;
6115 struct http_msg *msg = &txn->rsp;
6116 struct proxy *cur_proxy;
6117 struct cond_wordlist *wl;
6118 struct http_res_rule *http_res_last_rule = NULL;
6119
6120 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
6121 now_ms, __FUNCTION__,
6122 s,
6123 rep,
6124 rep->rex, rep->wex,
6125 rep->flags,
6126 rep->buf->i,
6127 rep->analysers);
6128
6129 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
6130 return 0;
6131
6132 rep->analysers &= ~an_bit;
6133 rep->analyse_exp = TICK_ETERNITY;
6134
Willy Tarreau70730dd2014-04-24 18:06:27 +02006135 /* The stats applet needs to adjust the Connection header but we don't
6136 * apply any filter there.
6137 */
6138 if (unlikely(objt_applet(s->target) == &http_stats_applet))
6139 goto skip_filters;
6140
Willy Tarreau58975672014-04-24 21:13:57 +02006141 /*
6142 * We will have to evaluate the filters.
6143 * As opposed to version 1.2, now they will be evaluated in the
6144 * filters order and not in the header order. This means that
6145 * each filter has to be validated among all headers.
6146 *
6147 * Filters are tried with ->be first, then with ->fe if it is
6148 * different from ->be.
6149 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006150
Willy Tarreau58975672014-04-24 21:13:57 +02006151 cur_proxy = s->be;
6152 while (1) {
6153 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006154
Willy Tarreau58975672014-04-24 21:13:57 +02006155 /* evaluate http-response rules */
6156 if (!http_res_last_rule)
6157 http_res_last_rule = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s, txn);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02006158
Willy Tarreau58975672014-04-24 21:13:57 +02006159 /* try headers filters */
6160 if (rule_set->rsp_exp != NULL) {
6161 if (apply_filters_to_response(s, rep, rule_set) < 0) {
6162 return_bad_resp:
6163 if (objt_server(s->target)) {
6164 objt_server(s->target)->counters.failed_resp++;
6165 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01006166 }
Willy Tarreau58975672014-04-24 21:13:57 +02006167 s->be->be_counters.failed_resp++;
6168 return_srv_prx_502:
6169 rep->analysers = 0;
6170 txn->status = 502;
6171 s->logs.t_data = -1; /* was not a valid response */
6172 rep->prod->flags |= SI_FL_NOLINGER;
6173 bi_erase(rep);
6174 stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502));
6175 if (!(s->flags & SN_ERR_MASK))
6176 s->flags |= SN_ERR_PRXCOND;
6177 if (!(s->flags & SN_FINST_MASK))
6178 s->flags |= SN_FINST_H;
6179 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006180 }
Willy Tarreau58975672014-04-24 21:13:57 +02006181 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006182
Willy Tarreau58975672014-04-24 21:13:57 +02006183 /* has the response been denied ? */
6184 if (txn->flags & TX_SVDENY) {
6185 if (objt_server(s->target))
6186 objt_server(s->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006187
Willy Tarreau58975672014-04-24 21:13:57 +02006188 s->be->be_counters.denied_resp++;
6189 s->fe->fe_counters.denied_resp++;
6190 if (s->listener->counters)
6191 s->listener->counters->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006192
Willy Tarreau58975672014-04-24 21:13:57 +02006193 goto return_srv_prx_502;
6194 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02006195
Willy Tarreau58975672014-04-24 21:13:57 +02006196 /* add response headers from the rule sets in the same order */
6197 list_for_each_entry(wl, &rule_set->rsp_add, list) {
6198 if (txn->status < 200)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006199 break;
Willy Tarreau58975672014-04-24 21:13:57 +02006200 if (wl->cond) {
6201 int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
6202 ret = acl_pass(ret);
6203 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
6204 ret = !ret;
6205 if (!ret)
6206 continue;
6207 }
6208 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
6209 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006210 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006211
Willy Tarreau58975672014-04-24 21:13:57 +02006212 /* check whether we're already working on the frontend */
6213 if (cur_proxy == s->fe)
6214 break;
6215 cur_proxy = s->fe;
6216 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006217
Willy Tarreau58975672014-04-24 21:13:57 +02006218 /* OK that's all we can do for 1xx responses */
6219 if (unlikely(txn->status < 200))
6220 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006221
Willy Tarreau58975672014-04-24 21:13:57 +02006222 /*
6223 * Now check for a server cookie.
6224 */
6225 if (s->be->cookie_name || s->be->appsession_name || s->fe->capture_name ||
6226 (s->be->options & PR_O_CHK_CACHE))
6227 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006228
Willy Tarreau58975672014-04-24 21:13:57 +02006229 /*
6230 * Check for cache-control or pragma headers if required.
6231 */
6232 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
6233 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006234
Willy Tarreau58975672014-04-24 21:13:57 +02006235 /*
6236 * Add server cookie in the response if needed
6237 */
6238 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
6239 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
6240 (!(s->flags & SN_DIRECT) ||
6241 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
6242 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
6243 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
6244 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
6245 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
6246 !(s->flags & SN_IGNORE_PRST)) {
6247 /* the server is known, it's not the one the client requested, or the
6248 * cookie's last seen date needs to be refreshed. We have to
6249 * insert a set-cookie here, except if we want to insert only on POST
6250 * requests and this one isn't. Note that servers which don't have cookies
6251 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006252 */
Willy Tarreau58975672014-04-24 21:13:57 +02006253 if (!objt_server(s->target)->cookie) {
6254 chunk_printf(&trash,
6255 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
6256 s->be->cookie_name);
6257 }
6258 else {
6259 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006260
Willy Tarreau58975672014-04-24 21:13:57 +02006261 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
6262 /* emit last_date, which is mandatory */
6263 trash.str[trash.len++] = COOKIE_DELIM_DATE;
6264 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
6265 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006266
Willy Tarreau58975672014-04-24 21:13:57 +02006267 if (s->be->cookie_maxlife) {
6268 /* emit first_date, which is either the original one or
6269 * the current date.
6270 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006271 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02006272 s30tob64(txn->cookie_first_date ?
6273 txn->cookie_first_date >> 2 :
6274 (date.tv_sec+3) >> 2, trash.str + trash.len);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006275 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006276 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02006277 }
Willy Tarreau58975672014-04-24 21:13:57 +02006278 chunk_appendf(&trash, "; path=/");
6279 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02006280
Willy Tarreau58975672014-04-24 21:13:57 +02006281 if (s->be->cookie_domain)
6282 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02006283
Willy Tarreau58975672014-04-24 21:13:57 +02006284 if (s->be->ck_opts & PR_CK_HTTPONLY)
6285 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006286
Willy Tarreau58975672014-04-24 21:13:57 +02006287 if (s->be->ck_opts & PR_CK_SECURE)
6288 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006289
Willy Tarreau58975672014-04-24 21:13:57 +02006290 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
6291 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006292
Willy Tarreau58975672014-04-24 21:13:57 +02006293 txn->flags &= ~TX_SCK_MASK;
6294 if (objt_server(s->target)->cookie && (s->flags & SN_DIRECT))
6295 /* the server did not change, only the date was updated */
6296 txn->flags |= TX_SCK_UPDATED;
6297 else
6298 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006299
Willy Tarreau58975672014-04-24 21:13:57 +02006300 /* Here, we will tell an eventual cache on the client side that we don't
6301 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
6302 * Some caches understand the correct form: 'no-cache="set-cookie"', but
6303 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006304 */
Willy Tarreau58975672014-04-24 21:13:57 +02006305 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006306
Willy Tarreau58975672014-04-24 21:13:57 +02006307 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006308
Willy Tarreau58975672014-04-24 21:13:57 +02006309 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
6310 "Cache-control: private", 22) < 0))
6311 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006312 }
Willy Tarreau58975672014-04-24 21:13:57 +02006313 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006314
Willy Tarreau58975672014-04-24 21:13:57 +02006315 /*
6316 * Check if result will be cacheable with a cookie.
6317 * We'll block the response if security checks have caught
6318 * nasty things such as a cacheable cookie.
6319 */
6320 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
6321 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
6322 (s->be->options & PR_O_CHK_CACHE)) {
6323 /* we're in presence of a cacheable response containing
6324 * a set-cookie header. We'll block it as requested by
6325 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006326 */
Willy Tarreau58975672014-04-24 21:13:57 +02006327 if (objt_server(s->target))
6328 objt_server(s->target)->counters.failed_secu++;
Willy Tarreau60466522010-01-18 19:08:45 +01006329
Willy Tarreau58975672014-04-24 21:13:57 +02006330 s->be->be_counters.denied_resp++;
6331 s->fe->fe_counters.denied_resp++;
6332 if (s->listener->counters)
6333 s->listener->counters->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006334
Willy Tarreau58975672014-04-24 21:13:57 +02006335 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
6336 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6337 send_log(s->be, LOG_ALERT,
6338 "Blocking cacheable cookie in response from instance %s, server %s.\n",
6339 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6340 goto return_srv_prx_502;
6341 }
Willy Tarreau03945942009-12-22 16:50:27 +01006342
Willy Tarreau70730dd2014-04-24 18:06:27 +02006343 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02006344 /*
6345 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
6346 * If an "Upgrade" token is found, the header is left untouched in order
6347 * not to have to deal with some client bugs : some of them fail an upgrade
6348 * if anything but "Upgrade" is present in the Connection header.
6349 */
6350 if (!(txn->flags & TX_HDR_CONN_UPG) &&
6351 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
6352 ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6353 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
6354 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006355
Willy Tarreau58975672014-04-24 21:13:57 +02006356 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6357 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
6358 /* we want a keep-alive response here. Keep-alive header
6359 * required if either side is not 1.1.
6360 */
6361 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
6362 want_flags |= TX_CON_KAL_SET;
6363 }
6364 else {
6365 /* we want a close response here. Close header required if
6366 * the server is 1.1, regardless of the client.
6367 */
6368 if (msg->flags & HTTP_MSGF_VER_11)
6369 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006370 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006371
Willy Tarreau58975672014-04-24 21:13:57 +02006372 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
6373 http_change_connection_header(txn, msg, want_flags);
6374 }
6375
6376 skip_header_mangling:
6377 if ((msg->flags & HTTP_MSGF_XFER_LEN) ||
6378 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
6379 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006380
Willy Tarreau58975672014-04-24 21:13:57 +02006381 /* if the user wants to log as soon as possible, without counting
6382 * bytes from the server, then this is the right moment. We have
6383 * to temporarily assign bytes_out to log what we currently have.
6384 */
6385 if (!LIST_ISEMPTY(&s->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
6386 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
6387 s->logs.bytes_out = txn->rsp.eoh;
6388 s->do_log(s);
6389 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006390 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006391 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006392}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006393
Willy Tarreaud98cf932009-12-27 22:54:55 +01006394/* This function is an analyser which forwards response body (including chunk
6395 * sizes if any). It is called as soon as we must forward, even if we forward
6396 * zero byte. The only situation where it must not be called is when we're in
6397 * tunnel mode and we want to forward till the close. It's used both to forward
6398 * remaining data and to resync after end of body. It expects the msg_state to
6399 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
6400 * read more data, or 1 once we can go on with next request or end the session.
Willy Tarreaud3510212014-04-21 11:24:13 +02006401 *
6402 * It is capable of compressing response data both in content-length mode and
6403 * in chunked mode. The state machines follows different flows depending on
6404 * whether content-length and chunked modes are used, since there are no
6405 * trailers in content-length :
6406 *
6407 * chk-mode cl-mode
6408 * ,----- BODY -----.
6409 * / \
6410 * V size > 0 V chk-mode
6411 * .--> SIZE -------------> DATA -------------> CRLF
6412 * | | size == 0 | last byte |
6413 * | v final crlf v inspected |
6414 * | TRAILERS -----------> DONE |
6415 * | |
6416 * `----------------------------------------------'
6417 *
6418 * Compression only happens in the DATA state, and must be flushed in final
6419 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
6420 * is performed at once on final states for all bytes parsed, or when leaving
6421 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006422 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006423int http_response_forward_body(struct session *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006424{
6425 struct http_txn *txn = &s->txn;
6426 struct http_msg *msg = &s->txn.rsp;
William Lallemand82fe75c2012-10-23 10:25:10 +02006427 static struct buffer *tmpbuf = NULL;
6428 int compressing = 0;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006429 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006430
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006431 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6432 return 0;
6433
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006434 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006435 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Willy Tarreau6c2cbe12010-01-03 17:07:49 +01006436 !s->req->analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006437 /* Output closed while we were sending data. We must abort and
6438 * wake the other side up.
6439 */
6440 msg->msg_state = HTTP_MSG_ERROR;
6441 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006442 return 1;
6443 }
6444
Willy Tarreau4fe41902010-06-07 22:27:41 +02006445 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006446 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006447
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006448 if (msg->sov) {
6449 /* we have msg->sov which points to the first byte of message
6450 * body, and res->buf.p still points to the beginning of the
6451 * message. We forward the headers now, as we don't need them
6452 * anymore, and we want to flush them.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006453 */
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006454 b_adv(res->buf, msg->sov);
6455 msg->next -= msg->sov;
6456 msg->sov = 0;
Willy Tarreaua458b672012-03-05 11:17:50 +01006457
Willy Tarreaub59c7bf2014-04-22 14:29:58 +02006458 /* The previous analysers guarantee that the state is somewhere
6459 * between MSG_BODY and the first MSG_DATA. So msg->sol and
6460 * msg->next are always correct.
6461 */
6462 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
6463 if (msg->flags & HTTP_MSGF_TE_CHNK)
6464 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
6465 else
6466 msg->msg_state = HTTP_MSG_DATA;
6467 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01006468 }
6469
Willy Tarreauefdf0942014-04-24 20:08:57 +02006470 if (res->to_forward) {
6471 /* We can't process the buffer's contents yet */
6472 res->flags |= CF_WAKE_WRITE;
6473 goto missing_data;
6474 }
6475
Willy Tarreau32b5ab22014-04-21 11:27:29 +02006476 if (unlikely(s->comp_algo != NULL) && msg->msg_state < HTTP_MSG_TRAILERS) {
6477 /* We need a compression buffer in the DATA state to put the
6478 * output of compressed data, and in CRLF state to let the
6479 * TRAILERS state finish the job of removing the trailing CRLF.
6480 */
6481 if (unlikely(tmpbuf == NULL)) {
6482 /* this is the first time we need the compression buffer */
6483 tmpbuf = pool_alloc2(pool2_buffer);
6484 if (tmpbuf == NULL)
6485 goto aborted_xfer; /* no memory */
6486 }
6487
6488 ret = http_compression_buffer_init(s, res->buf, tmpbuf);
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006489 if (ret < 0) {
6490 res->flags |= CF_WAKE_WRITE;
William Lallemand82fe75c2012-10-23 10:25:10 +02006491 goto missing_data; /* not enough spaces in buffers */
Willy Tarreau4afd70a2014-01-25 02:26:39 +01006492 }
William Lallemand82fe75c2012-10-23 10:25:10 +02006493 compressing = 1;
6494 }
6495
Willy Tarreaud98cf932009-12-27 22:54:55 +01006496 while (1) {
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006497 switch (msg->msg_state - HTTP_MSG_DATA) {
6498 case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */
Willy Tarreauc623c172014-04-18 09:53:50 +02006499 /* we may have some pending data starting at res->buf->p */
6500 if (unlikely(s->comp_algo)) {
Willy Tarreau7f2f8d52014-04-18 00:20:14 +02006501 ret = http_compression_buffer_add_data(s, res->buf, tmpbuf);
William Lallemandbf3ae612012-11-19 12:35:37 +01006502 if (ret < 0)
6503 goto aborted_xfer;
Willy Tarreauc623c172014-04-18 09:53:50 +02006504
Willy Tarreaud5a67832014-04-21 10:54:27 +02006505 if (msg->chunk_len) {
6506 /* input empty or output full */
6507 if (res->buf->i > msg->next)
6508 res->flags |= CF_WAKE_WRITE;
Willy Tarreauc623c172014-04-18 09:53:50 +02006509 goto missing_data;
6510 }
William Lallemandbf3ae612012-11-19 12:35:37 +01006511 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006512 else {
Willy Tarreaud5a67832014-04-21 10:54:27 +02006513 if (msg->chunk_len > res->buf->i - msg->next) {
6514 /* output full */
6515 res->flags |= CF_WAKE_WRITE;
6516 goto missing_data;
6517 }
Willy Tarreauc623c172014-04-18 09:53:50 +02006518 msg->next += msg->chunk_len;
6519 msg->chunk_len = 0;
6520 }
Willy Tarreaucaabe412010-01-03 23:08:28 +01006521
6522 /* nothing left to forward */
William Lallemandbf3ae612012-11-19 12:35:37 +01006523 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau54d23df2012-10-25 19:04:45 +02006524 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
William Lallemandbf3ae612012-11-19 12:35:37 +01006525 } else {
Willy Tarreaucaabe412010-01-03 23:08:28 +01006526 msg->msg_state = HTTP_MSG_DONE;
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006527 break;
William Lallemandbf3ae612012-11-19 12:35:37 +01006528 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006529 /* fall through for HTTP_MSG_CHUNK_CRLF */
6530
6531 case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA:
6532 /* we want the CRLF after the data */
6533
6534 ret = http_skip_chunk_crlf(msg);
6535 if (ret == 0)
6536 goto missing_data;
6537 else if (ret < 0) {
6538 if (msg->err_pos >= 0)
6539 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, s->fe);
6540 goto return_bad_res;
6541 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006542 /* we're in MSG_CHUNK_SIZE now, fall through */
6543
6544 case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA:
Willy Tarreau124d9912011-03-01 20:30:48 +01006545 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreauc24715e2014-04-17 15:21:20 +02006546 * set ->next to point to the body and switch to DATA or
Willy Tarreaua458b672012-03-05 11:17:50 +01006547 * TRAILERS state.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006548 */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006549
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006550 ret = http_parse_chunk_size(msg);
Willy Tarreau54d23df2012-10-25 19:04:45 +02006551 if (ret == 0)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006552 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006553 else if (ret < 0) {
6554 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006555 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006556 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006557 }
Willy Tarreau0161d622013-04-02 01:26:55 +02006558 /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006559 break;
Willy Tarreau5523b322009-12-29 12:05:52 +01006560
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006561 case HTTP_MSG_TRAILERS - HTTP_MSG_DATA:
Willy Tarreau168ebc52014-04-18 00:53:43 +02006562 if (unlikely(compressing)) {
6563 /* we need to flush output contents before syncing FSMs */
6564 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6565 compressing = 0;
6566 }
6567
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006568 ret = http_forward_trailers(msg);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006569 if (ret == 0)
6570 goto missing_data;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006571 else if (ret < 0) {
6572 if (msg->err_pos >= 0)
Willy Tarreau8a0cef22012-03-09 13:39:23 +01006573 http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, s->fe);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006574 goto return_bad_res;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006575 }
Willy Tarreau168ebc52014-04-18 00:53:43 +02006576 /* we're in HTTP_MSG_DONE now, fall through */
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006577
6578 default:
Willy Tarreau610ecce2010-01-04 21:15:02 +01006579 /* other states, DONE...TUNNEL */
Willy Tarreau168ebc52014-04-18 00:53:43 +02006580 if (unlikely(compressing)) {
6581 /* we need to flush output contents before syncing FSMs */
6582 http_compression_buffer_end(s, &res->buf, &tmpbuf, 1);
6583 compressing = 0;
6584 }
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006585
Willy Tarreauc623c172014-04-18 09:53:50 +02006586 /* we may have some pending data starting at res->buf->p
6587 * such as a last chunk of data or trailers.
6588 */
6589 b_adv(res->buf, msg->next);
6590 msg->next = 0;
6591
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006592 ret = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02006593 /* for keep-alive we don't want to forward closes on DONE */
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006594 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6595 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006596 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02006597
Willy Tarreau610ecce2010-01-04 21:15:02 +01006598 if (http_resync_states(s)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01006599 /* some state changes occurred, maybe the analyser
6600 * was disabled too.
Willy Tarreau5523b322009-12-29 12:05:52 +01006601 */
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006602 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006603 if (res->flags & CF_SHUTW) {
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006604 /* response errors are most likely due to
6605 * the client aborting the transfer.
6606 */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006607 goto aborted_xfer;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006608 }
Willy Tarreaue1582eb2010-12-12 13:10:11 +01006609 if (msg->err_pos >= 0)
Willy Tarreaud655ffe2013-04-02 01:48:58 +02006610 http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, s->fe);
Willy Tarreau610ecce2010-01-04 21:15:02 +01006611 goto return_bad_res;
Willy Tarreau3fe693b2010-12-12 12:50:05 +01006612 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006613 return 1;
Willy Tarreau5523b322009-12-29 12:05:52 +01006614 }
Willy Tarreaub1982e22014-05-06 22:57:53 +02006615
6616 /* if we received everything, we don't want to expire anymore */
6617 if (msg->msg_state == HTTP_MSG_DONE) {
6618 res->flags |= CF_READ_NOEXP;
6619 res->rex = TICK_ETERNITY;
6620 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01006621 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006622 }
6623 }
6624
Willy Tarreaud98cf932009-12-27 22:54:55 +01006625 missing_data:
Willy Tarreauc623c172014-04-18 09:53:50 +02006626 /* we may have some pending data starting at res->buf->p */
Willy Tarreau168ebc52014-04-18 00:53:43 +02006627 if (unlikely(compressing)) {
6628 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
William Lallemand82fe75c2012-10-23 10:25:10 +02006629 compressing = 0;
6630 }
Willy Tarreauf003d372012-11-26 13:35:37 +01006631
Willy Tarreauc623c172014-04-18 09:53:50 +02006632 if ((s->comp_algo == NULL || msg->msg_state >= HTTP_MSG_TRAILERS)) {
6633 b_adv(res->buf, msg->next);
6634 msg->next = 0;
6635 msg->chunk_len -= channel_forward(res, msg->chunk_len);
6636 }
6637
Willy Tarreauf003d372012-11-26 13:35:37 +01006638 if (res->flags & CF_SHUTW)
6639 goto aborted_xfer;
6640
6641 /* stop waiting for data if the input is closed before the end. If the
6642 * client side was already closed, it means that the client has aborted,
6643 * so we don't want to count this as a server abort. Otherwise it's a
6644 * server abort.
6645 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006646 if (res->flags & CF_SHUTR) {
Willy Tarreaub2c6a782014-04-23 20:29:01 +02006647 if ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Willy Tarreauf003d372012-11-26 13:35:37 +01006648 goto aborted_xfer;
Willy Tarreau40dba092010-03-04 18:14:51 +01006649 if (!(s->flags & SN_ERR_MASK))
6650 s->flags |= SN_ERR_SRVCL;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006651 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006652 if (objt_server(s->target))
6653 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006654 goto return_bad_res_stats_ok;
Willy Tarreau40dba092010-03-04 18:14:51 +01006655 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006656
Willy Tarreau40dba092010-03-04 18:14:51 +01006657 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau610ecce2010-01-04 21:15:02 +01006658 if (!s->req->analysers)
6659 goto return_bad_res;
6660
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006661 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006662 * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006663 * Similarly, with keep-alive on the client side, we don't want to forward a
6664 * close.
6665 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006666 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006667 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6668 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006669 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006670
Willy Tarreau5c620922011-05-11 19:56:11 +02006671 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006672 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02006673 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006674 * modes are already handled by the stream sock layer. We must not do
6675 * this in content-length mode because it could present the MSG_MORE
6676 * flag with the last block of forwarded data, which would cause an
6677 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006678 */
Willy Tarreau08b4d792012-10-27 01:36:34 +02006679 if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006680 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006681
Willy Tarreaud98cf932009-12-27 22:54:55 +01006682 /* the session handler will take care of timeouts and errors */
6683 return 0;
6684
Willy Tarreau40dba092010-03-04 18:14:51 +01006685 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006686 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006687 if (objt_server(s->target))
6688 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006689
6690 return_bad_res_stats_ok:
Willy Tarreaud01f4262014-04-21 11:00:13 +02006691 if (unlikely(compressing)) {
Willy Tarreau168ebc52014-04-18 00:53:43 +02006692 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
Willy Tarreaud01f4262014-04-21 11:00:13 +02006693 compressing = 0;
6694 }
6695
Willy Tarreauc623c172014-04-18 09:53:50 +02006696 /* we may have some pending data starting at res->buf->p */
6697 if (s->comp_algo == NULL) {
6698 b_adv(res->buf, msg->next);
6699 msg->next = 0;
6700 }
6701
Willy Tarreaud98cf932009-12-27 22:54:55 +01006702 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01006703 /* don't send any error message as we're in the body */
6704 stream_int_retnclose(res->cons, NULL);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006705 res->analysers = 0;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006706 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006707 if (objt_server(s->target))
6708 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006709
6710 if (!(s->flags & SN_ERR_MASK))
6711 s->flags |= SN_ERR_PRXCOND;
6712 if (!(s->flags & SN_FINST_MASK))
Willy Tarreau40dba092010-03-04 18:14:51 +01006713 s->flags |= SN_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006714 return 0;
6715
6716 aborted_xfer:
Willy Tarreau6fef8ae2014-04-22 21:22:06 +02006717 if (unlikely(compressing)) {
6718 http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS);
6719 compressing = 0;
6720 }
6721
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006722 txn->rsp.msg_state = HTTP_MSG_ERROR;
6723 /* don't send any error message as we're in the body */
6724 stream_int_retnclose(res->cons, NULL);
6725 res->analysers = 0;
6726 s->req->analysers = 0; /* we're in data phase, we want to abort both directions */
6727
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006728 s->fe->fe_counters.cli_aborts++;
6729 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006730 if (objt_server(s->target))
6731 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006732
6733 if (!(s->flags & SN_ERR_MASK))
6734 s->flags |= SN_ERR_CLICL;
6735 if (!(s->flags & SN_FINST_MASK))
6736 s->flags |= SN_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006737 return 0;
6738}
6739
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006740/* Iterate the same filter through all request headers.
6741 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006742 * Since it can manage the switch to another backend, it updates the per-proxy
6743 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006744 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006745int apply_filter_to_req_headers(struct session *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01006746{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006747 char term;
6748 char *cur_ptr, *cur_end, *cur_next;
6749 int cur_idx, old_idx, last_hdr;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006750 struct http_txn *txn = &s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006751 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006752 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01006753
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006754 last_hdr = 0;
6755
Willy Tarreau9b28e032012-10-12 23:49:43 +02006756 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006757 old_idx = 0;
6758
6759 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006760 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006761 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006762 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006763 (exp->action == ACT_ALLOW ||
6764 exp->action == ACT_DENY ||
6765 exp->action == ACT_TARPIT))
6766 return 0;
6767
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006768 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006769 if (!cur_idx)
6770 break;
6771
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006772 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006773 cur_ptr = cur_next;
6774 cur_end = cur_ptr + cur_hdr->len;
6775 cur_next = cur_end + cur_hdr->cr + 1;
6776
6777 /* Now we have one header between cur_ptr and cur_end,
6778 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006779 */
6780
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006781 /* The annoying part is that pattern matching needs
6782 * that we modify the contents to null-terminate all
6783 * strings before testing them.
6784 */
6785
6786 term = *cur_end;
6787 *cur_end = '\0';
6788
6789 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6790 switch (exp->action) {
6791 case ACT_SETBE:
6792 /* It is not possible to jump a second time.
6793 * FIXME: should we return an HTTP/500 here so that
6794 * the admin knows there's a problem ?
6795 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006796 if (s->be != s->fe)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006797 break;
6798
6799 /* Swithing Proxy */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006800 session_set_backend(s, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006801 last_hdr = 1;
6802 break;
6803
6804 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006805 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006806 last_hdr = 1;
6807 break;
6808
6809 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006810 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006811 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006812 break;
6813
6814 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006815 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006816 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006817 break;
6818
6819 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006820 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6821 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006822 /* FIXME: if the user adds a newline in the replacement, the
6823 * index will not be recalculated for now, and the new line
6824 * will not be counted as a new header.
6825 */
6826
6827 cur_end += delta;
6828 cur_next += delta;
6829 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006830 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006831 break;
6832
6833 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02006834 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006835 cur_next += delta;
6836
Willy Tarreaufa355d42009-11-29 18:12:29 +01006837 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006838 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6839 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006840 cur_hdr->len = 0;
6841 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006842 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006843 break;
6844
6845 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006846 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006847 if (cur_end)
6848 *cur_end = term; /* restore the string terminator */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006849
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006850 /* keep the link from this header to next one in case of later
6851 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006852 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006853 old_idx = cur_idx;
6854 }
6855 return 0;
6856}
6857
6858
6859/* Apply the filter to the request line.
6860 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6861 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006862 * Since it can manage the switch to another backend, it updates the per-proxy
6863 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006864 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006865int apply_filter_to_req_line(struct session *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006866{
6867 char term;
6868 char *cur_ptr, *cur_end;
6869 int done;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006870 struct http_txn *txn = &s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006871 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006872
Willy Tarreau3d300592007-03-18 18:34:41 +01006873 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006874 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006875 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006876 (exp->action == ACT_ALLOW ||
6877 exp->action == ACT_DENY ||
6878 exp->action == ACT_TARPIT))
6879 return 0;
6880 else if (exp->action == ACT_REMOVE)
6881 return 0;
6882
6883 done = 0;
6884
Willy Tarreau9b28e032012-10-12 23:49:43 +02006885 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006886 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006887
6888 /* Now we have the request line between cur_ptr and cur_end */
6889
6890 /* The annoying part is that pattern matching needs
6891 * that we modify the contents to null-terminate all
6892 * strings before testing them.
6893 */
6894
6895 term = *cur_end;
6896 *cur_end = '\0';
6897
6898 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
6899 switch (exp->action) {
6900 case ACT_SETBE:
6901 /* It is not possible to jump a second time.
6902 * FIXME: should we return an HTTP/500 here so that
6903 * the admin knows there's a problem ?
Willy Tarreau58f10d72006-12-04 02:26:12 +01006904 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006905 if (s->be != s->fe)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006906 break;
6907
6908 /* Swithing Proxy */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006909 session_set_backend(s, (struct proxy *)exp->replace);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006910 done = 1;
6911 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006912
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006913 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006914 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006915 done = 1;
6916 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006917
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006918 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006919 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006920 done = 1;
6921 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006922
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006923 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01006924 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006925 done = 1;
6926 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01006927
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006928 case ACT_REPLACE:
6929 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006930 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
6931 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006932 /* FIXME: if the user adds a newline in the replacement, the
6933 * index will not be recalculated for now, and the new line
6934 * will not be counted as a new header.
6935 */
Willy Tarreaua496b602006-12-17 23:15:24 +01006936
Willy Tarreaufa355d42009-11-29 18:12:29 +01006937 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006938 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02006939 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006940 HTTP_MSG_RQMETH,
6941 cur_ptr, cur_end + 1,
6942 NULL, NULL);
6943 if (unlikely(!cur_end))
6944 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01006945
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006946 /* we have a full request and we know that we have either a CR
6947 * or an LF at <ptr>.
6948 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006949 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
6950 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006951 /* there is no point trying this regex on headers */
6952 return 1;
6953 }
6954 }
6955 *cur_end = term; /* restore the string terminator */
6956 return done;
6957}
Willy Tarreau97de6242006-12-27 17:18:38 +01006958
Willy Tarreau58f10d72006-12-04 02:26:12 +01006959
Willy Tarreau58f10d72006-12-04 02:26:12 +01006960
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006961/*
Willy Tarreau6c123b12010-01-28 20:22:06 +01006962 * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006963 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01006964 * unparsable request. Since it can manage the switch to another backend, it
6965 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006966 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02006967int apply_filters_to_request(struct session *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006968{
Willy Tarreau6c123b12010-01-28 20:22:06 +01006969 struct http_txn *txn = &s->txn;
6970 struct hdr_exp *exp;
6971
6972 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006973 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006974
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006975 /*
6976 * The interleaving of transformations and verdicts
6977 * makes it difficult to decide to continue or stop
6978 * the evaluation.
6979 */
6980
Willy Tarreau6c123b12010-01-28 20:22:06 +01006981 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
6982 break;
6983
Willy Tarreau3d300592007-03-18 18:34:41 +01006984 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006985 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01006986 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01006987 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01006988
6989 /* if this filter had a condition, evaluate it now and skip to
6990 * next filter if the condition does not match.
6991 */
6992 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02006993 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01006994 ret = acl_pass(ret);
6995 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6996 ret = !ret;
6997
6998 if (!ret)
6999 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007000 }
7001
7002 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01007003 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007004 if (unlikely(ret < 0))
7005 return -1;
7006
7007 if (likely(ret == 0)) {
7008 /* The filter did not match the request, it can be
7009 * iterated through all headers.
7010 */
Willy Tarreau6c123b12010-01-28 20:22:06 +01007011 apply_filter_to_req_headers(s, req, exp);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007012 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007013 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007014 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007015}
7016
7017
Willy Tarreaua15645d2007-03-18 16:22:39 +01007018
Willy Tarreau58f10d72006-12-04 02:26:12 +01007019/*
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007020 * Try to retrieve the server associated to the appsession.
7021 * If the server is found, it's assigned to the session.
7022 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007023void manage_client_side_appsession(struct session *s, const char *buf, int len) {
7024 struct http_txn *txn = &s->txn;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007025 appsess *asession = NULL;
7026 char *sessid_temp = NULL;
7027
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007028 if (len > s->be->appsession_len) {
7029 len = s->be->appsession_len;
Cyril Bontéb21570a2009-11-29 20:04:48 +01007030 }
7031
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007032 if (s->be->options2 & PR_O2_AS_REQL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007033 /* request-learn option is enabled : store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007034 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007035 /* free previously allocated memory as we don't need the session id found in the URL anymore */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007036 pool_free2(apools.sessid, txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007037 }
7038
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007039 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007040 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007041 send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007042 return;
7043 }
7044
Willy Tarreaua3377ee2010-01-10 10:49:11 +01007045 memcpy(txn->sessid, buf, len);
7046 txn->sessid[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007047 }
7048
7049 if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) {
7050 Alert("Not enough memory process_cli():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007051 send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007052 return;
7053 }
7054
Cyril Bontéb21570a2009-11-29 20:04:48 +01007055 memcpy(sessid_temp, buf, len);
7056 sessid_temp[len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007057
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007058 asession = appsession_hash_lookup(&(s->be->htbl_proxy), sessid_temp);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007059 /* free previously allocated memory */
7060 pool_free2(apools.sessid, sessid_temp);
7061
7062 if (asession != NULL) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007063 asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession);
7064 if (!(s->be->options2 & PR_O2_AS_REQL))
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007065 asession->request_count++;
7066
7067 if (asession->serverid != NULL) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007068 struct server *srv = s->be->srv;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02007069
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007070 while (srv) {
7071 if (strcmp(srv->id, asession->serverid) == 0) {
Willy Tarreau4de91492010-01-22 19:10:05 +01007072 if ((srv->state & SRV_RUNNING) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007073 (s->be->options & PR_O_PERSIST) ||
7074 (s->flags & SN_FORCE_PRST)) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007075 /* we found the server and it's usable */
7076 txn->flags &= ~TX_CK_MASK;
Willy Tarreau2a6d88d2010-01-24 13:10:43 +01007077 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007078 s->flags |= SN_DIRECT | SN_ASSIGNED;
7079 s->target = &srv->obj_type;
Willy Tarreau664beb82011-03-10 11:38:29 +01007080
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007081 break;
7082 } else {
7083 txn->flags &= ~TX_CK_MASK;
7084 txn->flags |= TX_CK_DOWN;
7085 }
7086 }
7087 srv = srv->next;
7088 }
7089 }
7090 }
7091}
7092
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007093/* Find the end of a cookie value contained between <s> and <e>. It works the
7094 * same way as with headers above except that the semi-colon also ends a token.
7095 * See RFC2965 for more information. Note that it requires a valid header to
7096 * return a valid result.
7097 */
7098char *find_cookie_value_end(char *s, const char *e)
7099{
7100 int quoted, qdpair;
7101
7102 quoted = qdpair = 0;
7103 for (; s < e; s++) {
7104 if (qdpair) qdpair = 0;
7105 else if (quoted) {
7106 if (*s == '\\') qdpair = 1;
7107 else if (*s == '"') quoted = 0;
7108 }
7109 else if (*s == '"') quoted = 1;
7110 else if (*s == ',' || *s == ';') return s;
7111 }
7112 return s;
7113}
7114
7115/* Delete a value in a header between delimiters <from> and <next> in buffer
7116 * <buf>. The number of characters displaced is returned, and the pointer to
7117 * the first delimiter is updated if required. The function tries as much as
7118 * possible to respect the following principles :
7119 * - replace <from> delimiter by the <next> one unless <from> points to a
7120 * colon, in which case <next> is simply removed
7121 * - set exactly one space character after the new first delimiter, unless
7122 * there are not enough characters in the block being moved to do so.
7123 * - remove unneeded spaces before the previous delimiter and after the new
7124 * one.
7125 *
7126 * It is the caller's responsibility to ensure that :
7127 * - <from> points to a valid delimiter or the colon ;
7128 * - <next> points to a valid delimiter or the final CR/LF ;
7129 * - there are non-space chars before <from> ;
7130 * - there is a CR/LF at or after <next>.
7131 */
Willy Tarreauaf819352012-08-27 22:08:00 +02007132int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007133{
7134 char *prev = *from;
7135
7136 if (*prev == ':') {
7137 /* We're removing the first value, preserve the colon and add a
7138 * space if possible.
7139 */
7140 if (!http_is_crlf[(unsigned char)*next])
7141 next++;
7142 prev++;
7143 if (prev < next)
7144 *prev++ = ' ';
7145
7146 while (http_is_spht[(unsigned char)*next])
7147 next++;
7148 } else {
7149 /* Remove useless spaces before the old delimiter. */
7150 while (http_is_spht[(unsigned char)*(prev-1)])
7151 prev--;
7152 *from = prev;
7153
7154 /* copy the delimiter and if possible a space if we're
7155 * not at the end of the line.
7156 */
7157 if (!http_is_crlf[(unsigned char)*next]) {
7158 *prev++ = *next++;
7159 if (prev + 1 < next)
7160 *prev++ = ' ';
7161 while (http_is_spht[(unsigned char)*next])
7162 next++;
7163 }
7164 }
7165 return buffer_replace2(buf, prev, next, NULL, 0);
7166}
7167
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007168/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007169 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007170 * desirable to call it only when needed. This code is quite complex because
7171 * of the multiple very crappy and ambiguous syntaxes we have to support. it
7172 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01007173 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007174void manage_client_side_cookies(struct session *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007175{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007176 struct http_txn *txn = &s->txn;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007177 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007178 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007179 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
7180 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007181
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007182 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01007183 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007184 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007185
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007186 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007187 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007188 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007189
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007190 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007191 hdr_beg = hdr_next;
7192 hdr_end = hdr_beg + cur_hdr->len;
7193 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007194
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007195 /* We have one full header between hdr_beg and hdr_end, and the
7196 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01007197 * "Cookie:" headers.
7198 */
7199
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007200 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007201 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007202 old_idx = cur_idx;
7203 continue;
7204 }
7205
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007206 del_from = NULL; /* nothing to be deleted */
7207 preserve_hdr = 0; /* assume we may kill the whole header */
7208
Willy Tarreau58f10d72006-12-04 02:26:12 +01007209 /* Now look for cookies. Conforming to RFC2109, we have to support
7210 * attributes whose name begin with a '$', and associate them with
7211 * the right cookie, if we want to delete this cookie.
7212 * So there are 3 cases for each cookie read :
7213 * 1) it's a special attribute, beginning with a '$' : ignore it.
7214 * 2) it's a server id cookie that we *MAY* want to delete : save
7215 * some pointers on it (last semi-colon, beginning of cookie...)
7216 * 3) it's an application cookie : we *MAY* have to delete a previous
7217 * "special" cookie.
7218 * At the end of loop, if a "special" cookie remains, we may have to
7219 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007220 * *MUST* delete it.
7221 *
7222 * Note: RFC2965 is unclear about the processing of spaces around
7223 * the equal sign in the ATTR=VALUE form. A careful inspection of
7224 * the RFC explicitly allows spaces before it, and not within the
7225 * tokens (attrs or values). An inspection of RFC2109 allows that
7226 * too but section 10.1.3 lets one think that spaces may be allowed
7227 * after the equal sign too, resulting in some (rare) buggy
7228 * implementations trying to do that. So let's do what servers do.
7229 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
7230 * allowed quoted strings in values, with any possible character
7231 * after a backslash, including control chars and delimitors, which
7232 * causes parsing to become ambiguous. Browsers also allow spaces
7233 * within values even without quotes.
7234 *
7235 * We have to keep multiple pointers in order to support cookie
7236 * removal at the beginning, middle or end of header without
7237 * corrupting the header. All of these headers are valid :
7238 *
7239 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
7240 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
7241 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
7242 * | | | | | | | | |
7243 * | | | | | | | | hdr_end <--+
7244 * | | | | | | | +--> next
7245 * | | | | | | +----> val_end
7246 * | | | | | +-----------> val_beg
7247 * | | | | +--------------> equal
7248 * | | | +----------------> att_end
7249 * | | +---------------------> att_beg
7250 * | +--------------------------> prev
7251 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01007252 */
7253
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007254 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
7255 /* Iterate through all cookies on this line */
7256
7257 /* find att_beg */
7258 att_beg = prev + 1;
7259 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7260 att_beg++;
7261
7262 /* find att_end : this is the first character after the last non
7263 * space before the equal. It may be equal to hdr_end.
7264 */
7265 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007266
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007267 while (equal < hdr_end) {
7268 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01007269 break;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007270 if (http_is_spht[(unsigned char)*equal++])
7271 continue;
7272 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007273 }
7274
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007275 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7276 * is between <att_beg> and <equal>, both may be identical.
7277 */
7278
7279 /* look for end of cookie if there is an equal sign */
7280 if (equal < hdr_end && *equal == '=') {
7281 /* look for the beginning of the value */
7282 val_beg = equal + 1;
7283 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7284 val_beg++;
7285
7286 /* find the end of the value, respecting quotes */
7287 next = find_cookie_value_end(val_beg, hdr_end);
7288
7289 /* make val_end point to the first white space or delimitor after the value */
7290 val_end = next;
7291 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7292 val_end--;
7293 } else {
7294 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01007295 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007296
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007297 /* We have nothing to do with attributes beginning with '$'. However,
7298 * they will automatically be removed if a header before them is removed,
7299 * since they're supposed to be linked together.
7300 */
7301 if (*att_beg == '$')
7302 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007303
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007304 /* Ignore cookies with no equal sign */
7305 if (equal == next) {
7306 /* This is not our cookie, so we must preserve it. But if we already
7307 * scheduled another cookie for removal, we cannot remove the
7308 * complete header, but we can remove the previous block itself.
7309 */
7310 preserve_hdr = 1;
7311 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007312 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007313 val_end += delta;
7314 next += delta;
7315 hdr_end += delta;
7316 hdr_next += delta;
7317 cur_hdr->len += delta;
7318 http_msg_move_end(&txn->req, delta);
7319 prev = del_from;
7320 del_from = NULL;
7321 }
7322 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01007323 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007324
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007325 /* if there are spaces around the equal sign, we need to
7326 * strip them otherwise we'll get trouble for cookie captures,
7327 * or even for rewrites. Since this happens extremely rarely,
7328 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007329 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007330 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7331 int stripped_before = 0;
7332 int stripped_after = 0;
7333
7334 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007335 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007336 equal += stripped_before;
7337 val_beg += stripped_before;
7338 }
7339
7340 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007341 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007342 val_beg += stripped_after;
7343 stripped_before += stripped_after;
7344 }
7345
7346 val_end += stripped_before;
7347 next += stripped_before;
7348 hdr_end += stripped_before;
7349 hdr_next += stripped_before;
7350 cur_hdr->len += stripped_before;
7351 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007352 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007353 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007354
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007355 /* First, let's see if we want to capture this cookie. We check
7356 * that we don't already have a client side cookie, because we
7357 * can only capture one. Also as an optimisation, we ignore
7358 * cookies shorter than the declared name.
7359 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007360 if (s->fe->capture_name != NULL && txn->cli_cookie == NULL &&
7361 (val_end - att_beg >= s->fe->capture_namelen) &&
7362 memcmp(att_beg, s->fe->capture_name, s->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007363 int log_len = val_end - att_beg;
7364
7365 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
7366 Alert("HTTP logging : out of memory.\n");
7367 } else {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007368 if (log_len > s->fe->capture_len)
7369 log_len = s->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007370 memcpy(txn->cli_cookie, att_beg, log_len);
7371 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007372 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007373 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007374
Willy Tarreaubca99692010-10-06 19:25:55 +02007375 /* Persistence cookies in passive, rewrite or insert mode have the
7376 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007377 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007378 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007379 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007380 * For cookies in prefix mode, the form is :
7381 *
7382 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007383 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007384 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
7385 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
7386 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007387 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007388
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007389 /* if we're in cookie prefix mode, we'll search the delimitor so that we
7390 * have the server ID between val_beg and delim, and the original cookie between
7391 * delim+1 and val_end. Otherwise, delim==val_end :
7392 *
7393 * Cookie: NAME=SRV; # in all but prefix modes
7394 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
7395 * | || || | |+-> next
7396 * | || || | +--> val_end
7397 * | || || +---------> delim
7398 * | || |+------------> val_beg
7399 * | || +-------------> att_end = equal
7400 * | |+-----------------> att_beg
7401 * | +------------------> prev
7402 * +-------------------------> hdr_beg
7403 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007404
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007405 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007406 for (delim = val_beg; delim < val_end; delim++)
7407 if (*delim == COOKIE_DELIM)
7408 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02007409 } else {
7410 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007411 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02007412 /* Now check if the cookie contains a date field, which would
7413 * appear after a vertical bar ('|') just after the server name
7414 * and before the delimiter.
7415 */
7416 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
7417 if (vbar1) {
7418 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02007419 * right is the last seen date. It is a base64 encoded
7420 * 30-bit value representing the UNIX date since the
7421 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02007422 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02007423 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02007424 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02007425 if (val_end - vbar1 >= 5) {
7426 val = b64tos30(vbar1);
7427 if (val > 0)
7428 txn->cookie_last_date = val << 2;
7429 }
7430 /* look for a second vertical bar */
7431 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7432 if (vbar1 && (val_end - vbar1 > 5)) {
7433 val = b64tos30(vbar1 + 1);
7434 if (val > 0)
7435 txn->cookie_first_date = val << 2;
7436 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007437 }
7438 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007439
Willy Tarreauf64d1412010-10-07 20:06:11 +02007440 /* if the cookie has an expiration date and the proxy wants to check
7441 * it, then we do that now. We first check if the cookie is too old,
7442 * then only if it has expired. We detect strict overflow because the
7443 * time resolution here is not great (4 seconds). Cookies with dates
7444 * in the future are ignored if their offset is beyond one day. This
7445 * allows an admin to fix timezone issues without expiring everyone
7446 * and at the same time avoids keeping unwanted side effects for too
7447 * long.
7448 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007449 if (txn->cookie_first_date && s->be->cookie_maxlife &&
7450 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007451 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007452 txn->flags &= ~TX_CK_MASK;
7453 txn->flags |= TX_CK_OLD;
7454 delim = val_beg; // let's pretend we have not found the cookie
7455 txn->cookie_first_date = 0;
7456 txn->cookie_last_date = 0;
7457 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007458 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
7459 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007460 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007461 txn->flags &= ~TX_CK_MASK;
7462 txn->flags |= TX_CK_EXPIRED;
7463 delim = val_beg; // let's pretend we have not found the cookie
7464 txn->cookie_first_date = 0;
7465 txn->cookie_last_date = 0;
7466 }
7467
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007468 /* Here, we'll look for the first running server which supports the cookie.
7469 * This allows to share a same cookie between several servers, for example
7470 * to dedicate backup servers to specific servers only.
7471 * However, to prevent clients from sticking to cookie-less backup server
7472 * when they have incidentely learned an empty cookie, we simply ignore
7473 * empty cookies and mark them as invalid.
7474 * The same behaviour is applied when persistence must be ignored.
7475 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007476 if ((delim == val_beg) || (s->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007477 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007478
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007479 while (srv) {
7480 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7481 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
7482 if ((srv->state & SRV_RUNNING) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007483 (s->be->options & PR_O_PERSIST) ||
7484 (s->flags & SN_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007485 /* we found the server and we can use it */
7486 txn->flags &= ~TX_CK_MASK;
7487 txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007488 s->flags |= SN_DIRECT | SN_ASSIGNED;
7489 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007490 break;
7491 } else {
7492 /* we found a server, but it's down,
7493 * mark it as such and go on in case
7494 * another one is available.
7495 */
7496 txn->flags &= ~TX_CK_MASK;
7497 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007498 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007499 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007500 srv = srv->next;
7501 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007502
Willy Tarreauf64d1412010-10-07 20:06:11 +02007503 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007504 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007505 txn->flags &= ~TX_CK_MASK;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007506 if ((s->flags & (SN_IGNORE_PRST | SN_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007507 txn->flags |= TX_CK_UNUSED;
7508 else
7509 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007510 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007511
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007512 /* depending on the cookie mode, we may have to either :
7513 * - delete the complete cookie if we're in insert+indirect mode, so that
7514 * the server never sees it ;
7515 * - remove the server id from the cookie value, and tag the cookie as an
7516 * application cookie so that it does not get accidentely removed later,
7517 * if we're in cookie prefix mode
7518 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007519 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007520 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007521
Willy Tarreau9b28e032012-10-12 23:49:43 +02007522 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007523 val_end += delta;
7524 next += delta;
7525 hdr_end += delta;
7526 hdr_next += delta;
7527 cur_hdr->len += delta;
7528 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007529
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007530 del_from = NULL;
7531 preserve_hdr = 1; /* we want to keep this cookie */
7532 }
7533 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007534 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007535 del_from = prev;
7536 }
7537 } else {
7538 /* This is not our cookie, so we must preserve it. But if we already
7539 * scheduled another cookie for removal, we cannot remove the
7540 * complete header, but we can remove the previous block itself.
7541 */
7542 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007543
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007544 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007545 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007546 if (att_beg >= del_from)
7547 att_beg += delta;
7548 if (att_end >= del_from)
7549 att_end += delta;
7550 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007551 val_end += delta;
7552 next += delta;
7553 hdr_end += delta;
7554 hdr_next += delta;
7555 cur_hdr->len += delta;
7556 http_msg_move_end(&txn->req, delta);
7557 prev = del_from;
7558 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007559 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007560 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007561
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007562 /* Look for the appsession cookie unless persistence must be ignored */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007563 if (!(s->flags & SN_IGNORE_PRST) && (s->be->appsession_name != NULL)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007564 int cmp_len, value_len;
7565 char *value_begin;
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02007566
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007567 if (s->be->options2 & PR_O2_AS_PFX) {
7568 cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len);
7569 value_begin = att_beg + s->be->appsession_name_len;
7570 value_len = val_end - att_beg - s->be->appsession_name_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007571 } else {
7572 cmp_len = att_end - att_beg;
7573 value_begin = val_beg;
7574 value_len = val_end - val_beg;
7575 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01007576
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007577 /* let's see if the cookie is our appcookie */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007578 if (cmp_len == s->be->appsession_name_len &&
7579 memcmp(att_beg, s->be->appsession_name, cmp_len) == 0) {
7580 manage_client_side_appsession(s, value_begin, value_len);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007581 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007582 }
7583
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007584 /* continue with next cookie on this header line */
7585 att_beg = next;
7586 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007587
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007588 /* There are no more cookies on this line.
7589 * We may still have one (or several) marked for deletion at the
7590 * end of the line. We must do this now in two ways :
7591 * - if some cookies must be preserved, we only delete from the
7592 * mark to the end of line ;
7593 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007594 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007595 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007596 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007597 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007598 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007599 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007600 cur_hdr->len += delta;
7601 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007602 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007603
7604 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007605 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7606 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007607 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007608 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007609 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007610 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007611 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007612 }
7613
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007614 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007615 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007616 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007617}
7618
7619
Willy Tarreaua15645d2007-03-18 16:22:39 +01007620/* Iterate the same filter through all response headers contained in <rtr>.
7621 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7622 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007623int apply_filter_to_resp_headers(struct session *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007624{
7625 char term;
7626 char *cur_ptr, *cur_end, *cur_next;
7627 int cur_idx, old_idx, last_hdr;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007628 struct http_txn *txn = &s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007629 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007630 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007631
7632 last_hdr = 0;
7633
Willy Tarreau9b28e032012-10-12 23:49:43 +02007634 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007635 old_idx = 0;
7636
7637 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007638 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007639 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007640 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007641 (exp->action == ACT_ALLOW ||
7642 exp->action == ACT_DENY))
7643 return 0;
7644
7645 cur_idx = txn->hdr_idx.v[old_idx].next;
7646 if (!cur_idx)
7647 break;
7648
7649 cur_hdr = &txn->hdr_idx.v[cur_idx];
7650 cur_ptr = cur_next;
7651 cur_end = cur_ptr + cur_hdr->len;
7652 cur_next = cur_end + cur_hdr->cr + 1;
7653
7654 /* Now we have one header between cur_ptr and cur_end,
7655 * and the next header starts at cur_next.
7656 */
7657
7658 /* The annoying part is that pattern matching needs
7659 * that we modify the contents to null-terminate all
7660 * strings before testing them.
7661 */
7662
7663 term = *cur_end;
7664 *cur_end = '\0';
7665
7666 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7667 switch (exp->action) {
7668 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007669 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007670 last_hdr = 1;
7671 break;
7672
7673 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007674 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007675 last_hdr = 1;
7676 break;
7677
7678 case ACT_REPLACE:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007679 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7680 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007681 /* FIXME: if the user adds a newline in the replacement, the
7682 * index will not be recalculated for now, and the new line
7683 * will not be counted as a new header.
7684 */
7685
7686 cur_end += delta;
7687 cur_next += delta;
7688 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007689 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007690 break;
7691
7692 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007693 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007694 cur_next += delta;
7695
Willy Tarreaufa355d42009-11-29 18:12:29 +01007696 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007697 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7698 txn->hdr_idx.used--;
7699 cur_hdr->len = 0;
7700 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007701 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007702 break;
7703
7704 }
7705 }
7706 if (cur_end)
7707 *cur_end = term; /* restore the string terminator */
7708
7709 /* keep the link from this header to next one in case of later
7710 * removal of next header.
7711 */
7712 old_idx = cur_idx;
7713 }
7714 return 0;
7715}
7716
7717
7718/* Apply the filter to the status line in the response buffer <rtr>.
7719 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7720 * or -1 if a replacement resulted in an invalid status line.
7721 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007722int apply_filter_to_sts_line(struct session *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007723{
7724 char term;
7725 char *cur_ptr, *cur_end;
7726 int done;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007727 struct http_txn *txn = &s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007728 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007729
7730
Willy Tarreau3d300592007-03-18 18:34:41 +01007731 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007732 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007733 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007734 (exp->action == ACT_ALLOW ||
7735 exp->action == ACT_DENY))
7736 return 0;
7737 else if (exp->action == ACT_REMOVE)
7738 return 0;
7739
7740 done = 0;
7741
Willy Tarreau9b28e032012-10-12 23:49:43 +02007742 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007743 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007744
7745 /* Now we have the status line between cur_ptr and cur_end */
7746
7747 /* The annoying part is that pattern matching needs
7748 * that we modify the contents to null-terminate all
7749 * strings before testing them.
7750 */
7751
7752 term = *cur_end;
7753 *cur_end = '\0';
7754
7755 if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) {
7756 switch (exp->action) {
7757 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007758 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007759 done = 1;
7760 break;
7761
7762 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007763 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007764 done = 1;
7765 break;
7766
7767 case ACT_REPLACE:
7768 *cur_end = term; /* restore the string terminator */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007769 trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch);
7770 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007771 /* FIXME: if the user adds a newline in the replacement, the
7772 * index will not be recalculated for now, and the new line
7773 * will not be counted as a new header.
7774 */
7775
Willy Tarreaufa355d42009-11-29 18:12:29 +01007776 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007777 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007778 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02007779 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01007780 cur_ptr, cur_end + 1,
7781 NULL, NULL);
7782 if (unlikely(!cur_end))
7783 return -1;
7784
7785 /* we have a full respnse and we know that we have either a CR
7786 * or an LF at <ptr>.
7787 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02007788 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02007789 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01007790 /* there is no point trying this regex on headers */
7791 return 1;
7792 }
7793 }
7794 *cur_end = term; /* restore the string terminator */
7795 return done;
7796}
7797
7798
7799
7800/*
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007801 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007802 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
7803 * unparsable response.
7804 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02007805int apply_filters_to_response(struct session *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007806{
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007807 struct http_txn *txn = &s->txn;
7808 struct hdr_exp *exp;
7809
7810 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01007811 int ret;
7812
7813 /*
7814 * The interleaving of transformations and verdicts
7815 * makes it difficult to decide to continue or stop
7816 * the evaluation.
7817 */
7818
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007819 if (txn->flags & TX_SVDENY)
7820 break;
7821
Willy Tarreau3d300592007-03-18 18:34:41 +01007822 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01007823 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
7824 exp->action == ACT_PASS)) {
7825 exp = exp->next;
7826 continue;
7827 }
7828
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007829 /* if this filter had a condition, evaluate it now and skip to
7830 * next filter if the condition does not match.
7831 */
7832 if (exp->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02007833 ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007834 ret = acl_pass(ret);
7835 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7836 ret = !ret;
7837 if (!ret)
7838 continue;
7839 }
7840
Willy Tarreaua15645d2007-03-18 16:22:39 +01007841 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007842 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007843 if (unlikely(ret < 0))
7844 return -1;
7845
7846 if (likely(ret == 0)) {
7847 /* The filter did not match the response, it can be
7848 * iterated through all headers.
7849 */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01007850 apply_filter_to_resp_headers(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007851 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007852 }
7853 return 0;
7854}
7855
7856
Willy Tarreaua15645d2007-03-18 16:22:39 +01007857/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007858 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02007859 * desirable to call it only when needed. This function is also used when we
7860 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01007861 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007862void manage_server_side_cookies(struct session *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007863{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007864 struct http_txn *txn = &s->txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01007865 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007866 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007867 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02007868 char *hdr_beg, *hdr_end, *hdr_next;
7869 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007870
Willy Tarreaua15645d2007-03-18 16:22:39 +01007871 /* Iterate through the headers.
7872 * we start with the start line.
7873 */
7874 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007875 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007876
7877 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
7878 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007879 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007880
7881 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02007882 hdr_beg = hdr_next;
7883 hdr_end = hdr_beg + cur_hdr->len;
7884 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007885
Willy Tarreau24581ba2010-08-31 22:39:35 +02007886 /* We have one full header between hdr_beg and hdr_end, and the
7887 * next header starts at hdr_next. We're only interested in
7888 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007889 */
7890
Willy Tarreau24581ba2010-08-31 22:39:35 +02007891 is_cookie2 = 0;
7892 prev = hdr_beg + 10;
7893 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007894 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02007895 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
7896 if (!val) {
7897 old_idx = cur_idx;
7898 continue;
7899 }
7900 is_cookie2 = 1;
7901 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007902 }
7903
Willy Tarreau24581ba2010-08-31 22:39:35 +02007904 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
7905 * <prev> points to the colon.
7906 */
Willy Tarreauf1348312010-10-07 15:54:11 +02007907 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007908
Willy Tarreau24581ba2010-08-31 22:39:35 +02007909 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
7910 * check-cache is enabled) and we are not interested in checking
7911 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02007912 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007913 if (s->be->cookie_name == NULL &&
7914 s->be->appsession_name == NULL &&
7915 s->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007916 return;
7917
Willy Tarreau24581ba2010-08-31 22:39:35 +02007918 /* OK so now we know we have to process this response cookie.
7919 * The format of the Set-Cookie header is slightly different
7920 * from the format of the Cookie header in that it does not
7921 * support the comma as a cookie delimiter (thus the header
7922 * cannot be folded) because the Expires attribute described in
7923 * the original Netscape's spec may contain an unquoted date
7924 * with a comma inside. We have to live with this because
7925 * many browsers don't support Max-Age and some browsers don't
7926 * support quoted strings. However the Set-Cookie2 header is
7927 * clean.
7928 *
7929 * We have to keep multiple pointers in order to support cookie
7930 * removal at the beginning, middle or end of header without
7931 * corrupting the header (in case of set-cookie2). A special
7932 * pointer, <scav> points to the beginning of the set-cookie-av
7933 * fields after the first semi-colon. The <next> pointer points
7934 * either to the end of line (set-cookie) or next unquoted comma
7935 * (set-cookie2). All of these headers are valid :
7936 *
7937 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
7938 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7939 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
7940 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
7941 * | | | | | | | | | |
7942 * | | | | | | | | +-> next hdr_end <--+
7943 * | | | | | | | +------------> scav
7944 * | | | | | | +--------------> val_end
7945 * | | | | | +--------------------> val_beg
7946 * | | | | +----------------------> equal
7947 * | | | +------------------------> att_end
7948 * | | +----------------------------> att_beg
7949 * | +------------------------------> prev
7950 * +-----------------------------------------> hdr_beg
7951 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007952
Willy Tarreau24581ba2010-08-31 22:39:35 +02007953 for (; prev < hdr_end; prev = next) {
7954 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01007955
Willy Tarreau24581ba2010-08-31 22:39:35 +02007956 /* find att_beg */
7957 att_beg = prev + 1;
7958 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
7959 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007960
Willy Tarreau24581ba2010-08-31 22:39:35 +02007961 /* find att_end : this is the first character after the last non
7962 * space before the equal. It may be equal to hdr_end.
7963 */
7964 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007965
Willy Tarreau24581ba2010-08-31 22:39:35 +02007966 while (equal < hdr_end) {
7967 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
7968 break;
7969 if (http_is_spht[(unsigned char)*equal++])
7970 continue;
7971 att_end = equal;
7972 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01007973
Willy Tarreau24581ba2010-08-31 22:39:35 +02007974 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7975 * is between <att_beg> and <equal>, both may be identical.
7976 */
7977
7978 /* look for end of cookie if there is an equal sign */
7979 if (equal < hdr_end && *equal == '=') {
7980 /* look for the beginning of the value */
7981 val_beg = equal + 1;
7982 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
7983 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007984
Willy Tarreau24581ba2010-08-31 22:39:35 +02007985 /* find the end of the value, respecting quotes */
7986 next = find_cookie_value_end(val_beg, hdr_end);
7987
7988 /* make val_end point to the first white space or delimitor after the value */
7989 val_end = next;
7990 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
7991 val_end--;
7992 } else {
7993 /* <equal> points to next comma, semi-colon or EOL */
7994 val_beg = val_end = next = equal;
7995 }
7996
7997 if (next < hdr_end) {
7998 /* Set-Cookie2 supports multiple cookies, and <next> points to
7999 * a colon or semi-colon before the end. So skip all attr-value
8000 * pairs and look for the next comma. For Set-Cookie, since
8001 * commas are permitted in values, skip to the end.
8002 */
8003 if (is_cookie2)
8004 next = find_hdr_value_end(next, hdr_end);
8005 else
8006 next = hdr_end;
8007 }
8008
8009 /* Now everything is as on the diagram above */
8010
8011 /* Ignore cookies with no equal sign */
8012 if (equal == val_end)
8013 continue;
8014
8015 /* If there are spaces around the equal sign, we need to
8016 * strip them otherwise we'll get trouble for cookie captures,
8017 * or even for rewrites. Since this happens extremely rarely,
8018 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008019 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02008020 if (unlikely(att_end != equal || val_beg > equal + 1)) {
8021 int stripped_before = 0;
8022 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008023
Willy Tarreau24581ba2010-08-31 22:39:35 +02008024 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008025 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008026 equal += stripped_before;
8027 val_beg += stripped_before;
8028 }
8029
8030 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008031 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008032 val_beg += stripped_after;
8033 stripped_before += stripped_after;
8034 }
8035
8036 val_end += stripped_before;
8037 next += stripped_before;
8038 hdr_end += stripped_before;
8039 hdr_next += stripped_before;
8040 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02008041 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008042 }
8043
8044 /* First, let's see if we want to capture this cookie. We check
8045 * that we don't already have a server side cookie, because we
8046 * can only capture one. Also as an optimisation, we ignore
8047 * cookies shorter than the declared name.
8048 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008049 if (s->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01008050 txn->srv_cookie == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008051 (val_end - att_beg >= s->fe->capture_namelen) &&
8052 memcmp(att_beg, s->fe->capture_name, s->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008053 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02008054 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008055 Alert("HTTP logging : out of memory.\n");
8056 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01008057 else {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008058 if (log_len > s->fe->capture_len)
8059 log_len = s->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01008060 memcpy(txn->srv_cookie, att_beg, log_len);
8061 txn->srv_cookie[log_len] = 0;
8062 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008063 }
8064
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008065 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008066 /* now check if we need to process it for persistence */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008067 if (!(s->flags & SN_IGNORE_PRST) &&
8068 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
8069 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02008070 /* assume passive cookie by default */
8071 txn->flags &= ~TX_SCK_MASK;
8072 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008073
8074 /* If the cookie is in insert mode on a known server, we'll delete
8075 * this occurrence because we'll insert another one later.
8076 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02008077 * a direct access.
8078 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008079 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02008080 /* The "preserve" flag was set, we don't want to touch the
8081 * server's cookie.
8082 */
8083 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008084 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
8085 ((s->flags & SN_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008086 /* this cookie must be deleted */
8087 if (*prev == ':' && next == hdr_end) {
8088 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008089 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008090 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
8091 txn->hdr_idx.used--;
8092 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01008093 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008094 hdr_next += delta;
8095 http_msg_move_end(&txn->rsp, delta);
8096 /* note: while both invalid now, <next> and <hdr_end>
8097 * are still equal, so the for() will stop as expected.
8098 */
8099 } else {
8100 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008101 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008102 next = prev;
8103 hdr_end += delta;
8104 hdr_next += delta;
8105 cur_hdr->len += delta;
8106 http_msg_move_end(&txn->rsp, delta);
8107 }
Willy Tarreauf1348312010-10-07 15:54:11 +02008108 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01008109 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008110 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008111 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008112 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008113 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01008114 * with this server since we know it.
8115 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008116 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008117 next += delta;
8118 hdr_end += delta;
8119 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008120 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008121 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008122
Willy Tarreauf1348312010-10-07 15:54:11 +02008123 txn->flags &= ~TX_SCK_MASK;
8124 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008125 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008126 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008127 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02008128 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01008129 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008130 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008131 next += delta;
8132 hdr_end += delta;
8133 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008134 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008135 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008136
Willy Tarreau827aee92011-03-10 16:55:02 +01008137 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02008138 txn->flags &= ~TX_SCK_MASK;
8139 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008140 }
8141 }
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02008142 /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008143 else if (!(s->flags & SN_IGNORE_PRST) && (s->be->appsession_name != NULL)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008144 int cmp_len, value_len;
8145 char *value_begin;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008146
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008147 if (s->be->options2 & PR_O2_AS_PFX) {
8148 cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len);
8149 value_begin = att_beg + s->be->appsession_name_len;
8150 value_len = MIN(s->be->appsession_len, val_end - att_beg - s->be->appsession_name_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008151 } else {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008152 cmp_len = att_end - att_beg;
8153 value_begin = val_beg;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008154 value_len = MIN(s->be->appsession_len, val_end - val_beg);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008155 }
Cyril Bontéb21570a2009-11-29 20:04:48 +01008156
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008157 if ((cmp_len == s->be->appsession_name_len) &&
8158 (memcmp(att_beg, s->be->appsession_name, s->be->appsession_name_len) == 0)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008159 /* free a possibly previously allocated memory */
8160 pool_free2(apools.sessid, txn->sessid);
8161
Cyril Bontéb21570a2009-11-29 20:04:48 +01008162 /* Store the sessid in the session for future use */
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008163 if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008164 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008165 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
Cyril Bontéb21570a2009-11-29 20:04:48 +01008166 return;
8167 }
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008168 memcpy(txn->sessid, value_begin, value_len);
8169 txn->sessid[value_len] = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008170 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02008171 }
8172 /* that's done for this cookie, check the next one on the same
8173 * line when next != hdr_end (only if is_cookie2).
8174 */
8175 }
8176 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008177 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008178 }
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008179
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008180 if (txn->sessid != NULL) {
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008181 appsess *asession = NULL;
8182 /* only do insert, if lookup fails */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008183 asession = appsession_hash_lookup(&(s->be->htbl_proxy), txn->sessid);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008184 if (asession == NULL) {
Willy Tarreau1fac7532010-01-09 19:23:06 +01008185 size_t server_id_len;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008186 if ((asession = pool_alloc2(pool2_appsess)) == NULL) {
8187 Alert("Not enough Memory process_srv():asession:calloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008188 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n");
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008189 return;
8190 }
Willy Tarreau77eb9b82010-11-19 11:29:06 +01008191 asession->serverid = NULL; /* to avoid a double free in case of allocation error */
8192
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008193 if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) {
8194 Alert("Not enough Memory process_srv():asession->sessid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008195 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
8196 s->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008197 return;
8198 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008199 memcpy(asession->sessid, txn->sessid, s->be->appsession_len);
8200 asession->sessid[s->be->appsession_len] = 0;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008201
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008202 server_id_len = strlen(objt_server(s->target)->id) + 1;
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008203 if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) {
Willy Tarreau77eb9b82010-11-19 11:29:06 +01008204 Alert("Not enough Memory process_srv():asession->serverid:malloc().\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008205 send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n");
8206 s->be->htbl_proxy.destroy(asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008207 return;
8208 }
8209 asession->serverid[0] = '\0';
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008210 memcpy(asession->serverid, objt_server(s->target)->id, server_id_len);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008211
8212 asession->request_count = 0;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008213 appsession_hash_insert(&(s->be->htbl_proxy), asession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008214 }
8215
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008216 asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession);
Cyril Bontébf47aeb2009-10-15 00:15:40 +02008217 asession->request_count++;
8218 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008219}
8220
8221
Willy Tarreaua15645d2007-03-18 16:22:39 +01008222/*
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008223 * Check if response is cacheable or not. Updates s->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008224 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008225void check_response_for_cacheability(struct session *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008226{
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008227 struct http_txn *txn = &s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008228 char *p1, *p2;
8229
8230 char *cur_ptr, *cur_end, *cur_next;
8231 int cur_idx;
8232
Willy Tarreau5df51872007-11-25 16:20:08 +01008233 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008234 return;
8235
8236 /* Iterate through the headers.
8237 * we start with the start line.
8238 */
8239 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008240 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008241
8242 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
8243 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008244 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008245
8246 cur_hdr = &txn->hdr_idx.v[cur_idx];
8247 cur_ptr = cur_next;
8248 cur_end = cur_ptr + cur_hdr->len;
8249 cur_next = cur_end + cur_hdr->cr + 1;
8250
8251 /* We have one full header between cur_ptr and cur_end, and the
8252 * next header starts at cur_next. We're only interested in
8253 * "Cookie:" headers.
8254 */
8255
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008256 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
8257 if (val) {
8258 if ((cur_end - (cur_ptr + val) >= 8) &&
8259 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
8260 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
8261 return;
8262 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008263 }
8264
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008265 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
8266 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008267 continue;
8268
8269 /* OK, right now we know we have a cache-control header at cur_ptr */
8270
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008271 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008272
8273 if (p1 >= cur_end) /* no more info */
8274 continue;
8275
8276 /* p1 is at the beginning of the value */
8277 p2 = p1;
8278
Willy Tarreau8f8e6452007-06-17 21:51:38 +02008279 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008280 p2++;
8281
8282 /* we have a complete value between p1 and p2 */
8283 if (p2 < cur_end && *p2 == '=') {
8284 /* we have something of the form no-cache="set-cookie" */
8285 if ((cur_end - p1 >= 21) &&
8286 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
8287 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01008288 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008289 continue;
8290 }
8291
8292 /* OK, so we know that either p2 points to the end of string or to a comma */
8293 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02008294 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaua15645d2007-03-18 16:22:39 +01008295 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
8296 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
8297 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008298 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008299 return;
8300 }
8301
8302 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008303 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008304 continue;
8305 }
8306 }
8307}
8308
8309
Willy Tarreau58f10d72006-12-04 02:26:12 +01008310/*
8311 * Try to retrieve a known appsession in the URI, then the associated server.
8312 * If the server is found, it's assigned to the session.
8313 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008314void get_srv_from_appsession(struct session *s, const char *begin, int len)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008315{
Cyril Bontéb21570a2009-11-29 20:04:48 +01008316 char *end_params, *first_param, *cur_param, *next_param;
8317 char separator;
8318 int value_len;
8319
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008320 int mode = s->be->options2 & PR_O2_AS_M_ANY;
Willy Tarreau58f10d72006-12-04 02:26:12 +01008321
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008322 if (s->be->appsession_name == NULL ||
8323 (s->txn.meth != HTTP_METH_GET && s->txn.meth != HTTP_METH_POST && s->txn.meth != HTTP_METH_HEAD)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008324 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008325 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008326
Cyril Bontéb21570a2009-11-29 20:04:48 +01008327 first_param = NULL;
8328 switch (mode) {
8329 case PR_O2_AS_M_PP:
8330 first_param = memchr(begin, ';', len);
8331 break;
8332 case PR_O2_AS_M_QS:
8333 first_param = memchr(begin, '?', len);
8334 break;
8335 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008336
Cyril Bontéb21570a2009-11-29 20:04:48 +01008337 if (first_param == NULL) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01008338 return;
Cyril Bontéb21570a2009-11-29 20:04:48 +01008339 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008340
Cyril Bontéb21570a2009-11-29 20:04:48 +01008341 switch (mode) {
8342 case PR_O2_AS_M_PP:
8343 if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) {
8344 end_params = (char *) begin + len;
8345 }
8346 separator = ';';
8347 break;
8348 case PR_O2_AS_M_QS:
8349 end_params = (char *) begin + len;
8350 separator = '&';
8351 break;
8352 default:
8353 /* unknown mode, shouldn't happen */
8354 return;
8355 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008356
Cyril Bontéb21570a2009-11-29 20:04:48 +01008357 cur_param = next_param = end_params;
8358 while (cur_param > first_param) {
8359 cur_param--;
8360 if ((cur_param[0] == separator) || (cur_param == first_param)) {
8361 /* let's see if this is the appsession parameter */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008362 if ((cur_param + s->be->appsession_name_len + 1 < next_param) &&
8363 ((s->be->options2 & PR_O2_AS_PFX) || cur_param[s->be->appsession_name_len + 1] == '=') &&
8364 (strncasecmp(cur_param + 1, s->be->appsession_name, s->be->appsession_name_len) == 0)) {
Cyril Bontéb21570a2009-11-29 20:04:48 +01008365 /* Cool... it's the right one */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008366 cur_param += s->be->appsession_name_len + (s->be->options2 & PR_O2_AS_PFX ? 1 : 2);
8367 value_len = MIN(s->be->appsession_len, next_param - cur_param);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008368 if (value_len > 0) {
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008369 manage_client_side_appsession(s, cur_param, value_len);
Cyril Bontéb21570a2009-11-29 20:04:48 +01008370 }
8371 break;
8372 }
8373 next_param = cur_param;
8374 }
8375 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01008376#if defined(DEBUG_HASH)
Aleksandar Lazic697bbb02008-08-13 19:57:02 +02008377 Alert("get_srv_from_appsession\n");
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008378 appsession_hash_dump(&(s->be->htbl_proxy));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008379#endif
Willy Tarreau58f10d72006-12-04 02:26:12 +01008380}
8381
Willy Tarreaub2513902006-12-17 14:52:38 +01008382/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02008383 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008384 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01008385 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02008386 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01008387 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01008388 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008389 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01008390 */
Willy Tarreau295a8372011-03-10 11:25:07 +01008391int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01008392{
8393 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01008394 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008395 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01008396
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008397 if (!uri_auth)
8398 return 0;
8399
Cyril Bonté70be45d2010-10-12 00:14:35 +02008400 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008401 return 0;
8402
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008403 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01008404 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01008405 return 0;
8406
Willy Tarreau414e9bb2013-11-23 00:30:38 +01008407 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01008408 return 0;
8409
Willy Tarreaub2513902006-12-17 14:52:38 +01008410 return 1;
8411}
8412
Willy Tarreau4076a152009-04-02 15:18:36 +02008413/*
8414 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008415 * By default it tries to report the error position as msg->err_pos. However if
8416 * this one is not set, it will then report msg->next, which is the last known
8417 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008418 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02008419 */
8420void http_capture_bad_message(struct error_snapshot *es, struct session *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008421 struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01008422 enum ht_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02008423{
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008424 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008425 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008426
Willy Tarreau9b28e032012-10-12 23:49:43 +02008427 es->len = MIN(chn->buf->i, sizeof(es->buf));
8428 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008429 len1 = MIN(len1, es->len);
8430 len2 = es->len - len1; /* remaining data if buffer wraps */
8431
Willy Tarreau9b28e032012-10-12 23:49:43 +02008432 memcpy(es->buf, chn->buf->p, len1);
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008433 if (len2)
Willy Tarreau9b28e032012-10-12 23:49:43 +02008434 memcpy(es->buf + len1, chn->buf->data, len2);
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008435
Willy Tarreau4076a152009-04-02 15:18:36 +02008436 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008437 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008438 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008439 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008440
Willy Tarreau4076a152009-04-02 15:18:36 +02008441 es->when = date; // user-visible date
8442 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008443 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02008444 es->oe = other_end;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008445 if (objt_conn(s->req->prod->end))
8446 es->src = __objt_conn(s->req->prod->end)->addr.from;
8447 else
8448 memset(&es->src, 0, sizeof(es->src));
8449
Willy Tarreau078272e2010-12-12 12:46:33 +01008450 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01008451 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008452 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008453 es->s_flags = s->flags;
8454 es->t_flags = s->txn.flags;
8455 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008456 es->b_out = chn->buf->o;
8457 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008458 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008459 es->m_clen = msg->chunk_len;
8460 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02008461}
Willy Tarreaub2513902006-12-17 14:52:38 +01008462
Willy Tarreau294c4732011-12-16 21:35:50 +01008463/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8464 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8465 * performed over the whole headers. Otherwise it must contain a valid header
8466 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8467 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8468 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8469 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008470 * -1. The value fetch stops at commas, so this function is suited for use with
8471 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01008472 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02008473 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008474unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01008475 struct hdr_idx *idx, int occ,
8476 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02008477{
Willy Tarreau294c4732011-12-16 21:35:50 +01008478 struct hdr_ctx local_ctx;
8479 char *ptr_hist[MAX_HDR_HISTORY];
8480 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02008481 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01008482 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02008483
Willy Tarreau294c4732011-12-16 21:35:50 +01008484 if (!ctx) {
8485 local_ctx.idx = 0;
8486 ctx = &local_ctx;
8487 }
8488
Willy Tarreaubce70882009-09-07 11:51:47 +02008489 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008490 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008491 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02008492 occ--;
8493 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008494 *vptr = ctx->line + ctx->val;
8495 *vlen = ctx->vlen;
8496 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008497 }
8498 }
Willy Tarreau294c4732011-12-16 21:35:50 +01008499 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02008500 }
8501
8502 /* negative occurrence, we scan all the list then walk back */
8503 if (-occ > MAX_HDR_HISTORY)
8504 return 0;
8505
Willy Tarreau294c4732011-12-16 21:35:50 +01008506 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008507 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008508 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8509 len_hist[hist_ptr] = ctx->vlen;
8510 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008511 hist_ptr = 0;
8512 found++;
8513 }
8514 if (-occ > found)
8515 return 0;
8516 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008517 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8518 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8519 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008520 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008521 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008522 if (hist_ptr >= MAX_HDR_HISTORY)
8523 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008524 *vptr = ptr_hist[hist_ptr];
8525 *vlen = len_hist[hist_ptr];
8526 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008527}
8528
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008529/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8530 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8531 * performed over the whole headers. Otherwise it must contain a valid header
8532 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8533 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8534 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8535 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8536 * -1. This function differs from http_get_hdr() in that it only returns full
8537 * line header values and does not stop at commas.
8538 * The return value is 0 if nothing was found, or non-zero otherwise.
8539 */
8540unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8541 struct hdr_idx *idx, int occ,
8542 struct hdr_ctx *ctx, char **vptr, int *vlen)
8543{
8544 struct hdr_ctx local_ctx;
8545 char *ptr_hist[MAX_HDR_HISTORY];
8546 int len_hist[MAX_HDR_HISTORY];
8547 unsigned int hist_ptr;
8548 int found;
8549
8550 if (!ctx) {
8551 local_ctx.idx = 0;
8552 ctx = &local_ctx;
8553 }
8554
8555 if (occ >= 0) {
8556 /* search from the beginning */
8557 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8558 occ--;
8559 if (occ <= 0) {
8560 *vptr = ctx->line + ctx->val;
8561 *vlen = ctx->vlen;
8562 return 1;
8563 }
8564 }
8565 return 0;
8566 }
8567
8568 /* negative occurrence, we scan all the list then walk back */
8569 if (-occ > MAX_HDR_HISTORY)
8570 return 0;
8571
8572 found = hist_ptr = 0;
8573 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8574 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8575 len_hist[hist_ptr] = ctx->vlen;
8576 if (++hist_ptr >= MAX_HDR_HISTORY)
8577 hist_ptr = 0;
8578 found++;
8579 }
8580 if (-occ > found)
8581 return 0;
8582 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
8583 * find occurrence -occ, so we have to check [hist_ptr+occ].
8584 */
8585 hist_ptr += occ;
8586 if (hist_ptr >= MAX_HDR_HISTORY)
8587 hist_ptr -= MAX_HDR_HISTORY;
8588 *vptr = ptr_hist[hist_ptr];
8589 *vlen = len_hist[hist_ptr];
8590 return 1;
8591}
8592
Willy Tarreaubaaee002006-06-26 02:48:02 +02008593/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008594 * Print a debug line with a header. Always stop at the first CR or LF char,
8595 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8596 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008597 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008598void debug_hdr(const char *dir, struct session *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008599{
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008600 int max;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008601 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008602 dir,
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008603 objt_conn(s->req->prod->end) ? (unsigned short)objt_conn(s->req->prod->end)->t.sock.fd : -1,
8604 objt_conn(s->req->cons->end) ? (unsigned short)objt_conn(s->req->cons->end)->t.sock.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008605
8606 for (max = 0; start + max < end; max++)
8607 if (start[max] == '\r' || start[max] == '\n')
8608 break;
8609
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008610 UBOUND(max, trash.size - trash.len - 3);
8611 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8612 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008613 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008614}
8615
Willy Tarreau0937bc42009-12-22 15:03:09 +01008616/*
8617 * Initialize a new HTTP transaction for session <s>. It is assumed that all
8618 * the required fields are properly allocated and that we only need to (re)init
8619 * them. This should be used before processing any new request.
8620 */
8621void http_init_txn(struct session *s)
8622{
8623 struct http_txn *txn = &s->txn;
8624 struct proxy *fe = s->fe;
8625
8626 txn->flags = 0;
8627 txn->status = -1;
8628
Willy Tarreauf64d1412010-10-07 20:06:11 +02008629 txn->cookie_first_date = 0;
8630 txn->cookie_last_date = 0;
8631
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008632 txn->req.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008633 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008634 txn->req.next = 0;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01008635 txn->rsp.flags = 0;
Willy Tarreau26927362012-05-18 23:22:52 +02008636 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +01008637 txn->rsp.next = 0;
Willy Tarreau124d9912011-03-01 20:30:48 +01008638 txn->req.chunk_len = 0LL;
8639 txn->req.body_len = 0LL;
8640 txn->rsp.chunk_len = 0LL;
8641 txn->rsp.body_len = 0LL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008642 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8643 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreau394db372012-10-12 22:40:39 +02008644 txn->req.chn = s->req;
8645 txn->rsp.chn = s->rep;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008646
8647 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008648
8649 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8650 if (fe->options2 & PR_O2_REQBUG_OK)
8651 txn->req.err_pos = -1; /* let buggy requests pass */
8652
Willy Tarreau46023632010-01-07 22:51:47 +01008653 if (txn->req.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008654 memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *));
8655
Willy Tarreau46023632010-01-07 22:51:47 +01008656 if (txn->rsp.cap)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008657 memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *));
8658
8659 if (txn->hdr_idx.v)
8660 hdr_idx_init(&txn->hdr_idx);
8661}
8662
8663/* to be used at the end of a transaction */
8664void http_end_txn(struct session *s)
8665{
8666 struct http_txn *txn = &s->txn;
8667
Willy Tarreau75195602014-03-11 15:48:55 +01008668 /* release any possible compression context */
8669 if (s->flags & SN_COMP_READY)
8670 s->comp_algo->end(&s->comp_ctx);
8671 s->comp_algo = NULL;
8672 s->flags &= ~SN_COMP_READY;
8673
Willy Tarreau0937bc42009-12-22 15:03:09 +01008674 /* these ones will have been dynamically allocated */
8675 pool_free2(pool2_requri, txn->uri);
8676 pool_free2(pool2_capture, txn->cli_cookie);
8677 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008678 pool_free2(apools.sessid, txn->sessid);
William Lallemanda73203e2012-03-12 12:48:57 +01008679 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008680
William Lallemanda73203e2012-03-12 12:48:57 +01008681 s->unique_id = NULL;
Willy Tarreaua3377ee2010-01-10 10:49:11 +01008682 txn->sessid = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008683 txn->uri = NULL;
8684 txn->srv_cookie = NULL;
8685 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008686
8687 if (txn->req.cap) {
8688 struct cap_hdr *h;
8689 for (h = s->fe->req_cap; h; h = h->next)
8690 pool_free2(h->pool, txn->req.cap[h->index]);
8691 memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *));
8692 }
8693
8694 if (txn->rsp.cap) {
8695 struct cap_hdr *h;
8696 for (h = s->fe->rsp_cap; h; h = h->next)
8697 pool_free2(h->pool, txn->rsp.cap[h->index]);
8698 memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *));
8699 }
8700
Willy Tarreau0937bc42009-12-22 15:03:09 +01008701}
8702
8703/* to be used at the end of a transaction to prepare a new one */
8704void http_reset_txn(struct session *s)
8705{
8706 http_end_txn(s);
8707 http_init_txn(s);
8708
8709 s->be = s->fe;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008710 s->logs.logwait = s->fe->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008711 s->logs.level = 0;
Simon Hormanaf514952011-06-21 14:34:57 +09008712 session_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008713 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008714 /* re-init store persistence */
8715 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008716 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008717
Willy Tarreau0937bc42009-12-22 15:03:09 +01008718 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008719
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02008720 s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008721
Willy Tarreau739cfba2010-01-25 23:11:14 +01008722 /* We must trim any excess data from the response buffer, because we
8723 * may have blocked an invalid response from a server that we don't
8724 * want to accidentely forward once we disable the analysers, nor do
8725 * we want those data to come along with next response. A typical
8726 * example of such data would be from a buggy server responding to
8727 * a HEAD with some data, or sending more than the advertised
8728 * content-length.
8729 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008730 if (unlikely(s->rep->buf->i))
8731 s->rep->buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008732
Willy Tarreau0937bc42009-12-22 15:03:09 +01008733 s->req->rto = s->fe->timeout.client;
Willy Tarreaud04e8582010-05-31 12:31:35 +02008734 s->req->wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008735
Willy Tarreaud04e8582010-05-31 12:31:35 +02008736 s->rep->rto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008737 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008738
8739 s->req->rex = TICK_ETERNITY;
8740 s->req->wex = TICK_ETERNITY;
8741 s->req->analyse_exp = TICK_ETERNITY;
8742 s->rep->rex = TICK_ETERNITY;
8743 s->rep->wex = TICK_ETERNITY;
8744 s->rep->analyse_exp = TICK_ETERNITY;
8745}
Willy Tarreau58f10d72006-12-04 02:26:12 +01008746
Willy Tarreauff011f22011-01-06 17:51:27 +01008747void free_http_req_rules(struct list *r) {
8748 struct http_req_rule *tr, *pr;
8749
8750 list_for_each_entry_safe(pr, tr, r, list) {
8751 LIST_DEL(&pr->list);
Willy Tarreau20b0de52012-12-24 15:45:22 +01008752 if (pr->action == HTTP_REQ_ACT_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008753 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01008754
8755 free(pr);
8756 }
8757}
8758
Willy Tarreaue365c0b2013-06-11 16:06:12 +02008759/* parse an "http-request" rule */
Willy Tarreauff011f22011-01-06 17:51:27 +01008760struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
8761{
8762 struct http_req_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02008763 struct http_req_action_kw *custom = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01008764 int cur_arg;
8765
8766 rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule));
8767 if (!rule) {
8768 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008769 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01008770 }
8771
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008772 if (!strcmp(args[0], "allow")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008773 rule->action = HTTP_REQ_ACT_ALLOW;
8774 cur_arg = 1;
Willy Tarreau5bd67592014-04-28 22:00:46 +02008775 } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block")) {
Willy Tarreauff011f22011-01-06 17:51:27 +01008776 rule->action = HTTP_REQ_ACT_DENY;
8777 cur_arg = 1;
Willy Tarreauccbcc372012-12-27 12:37:57 +01008778 } else if (!strcmp(args[0], "tarpit")) {
8779 rule->action = HTTP_REQ_ACT_TARPIT;
8780 cur_arg = 1;
Willy Tarreauff011f22011-01-06 17:51:27 +01008781 } else if (!strcmp(args[0], "auth")) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008782 rule->action = HTTP_REQ_ACT_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01008783 cur_arg = 1;
8784
8785 while(*args[cur_arg]) {
8786 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01008787 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01008788 cur_arg+=2;
8789 continue;
8790 } else
8791 break;
8792 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02008793 } else if (!strcmp(args[0], "set-nice")) {
8794 rule->action = HTTP_REQ_ACT_SET_NICE;
8795 cur_arg = 1;
8796
8797 if (!*args[cur_arg] ||
8798 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8799 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
8800 file, linenum, args[0]);
8801 goto out_err;
8802 }
8803 rule->arg.nice = atoi(args[cur_arg]);
8804 if (rule->arg.nice < -1024)
8805 rule->arg.nice = -1024;
8806 else if (rule->arg.nice > 1024)
8807 rule->arg.nice = 1024;
8808 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02008809 } else if (!strcmp(args[0], "set-tos")) {
8810#ifdef IP_TOS
8811 char *err;
8812 rule->action = HTTP_REQ_ACT_SET_TOS;
8813 cur_arg = 1;
8814
8815 if (!*args[cur_arg] ||
8816 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8817 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8818 file, linenum, args[0]);
8819 goto out_err;
8820 }
8821
8822 rule->arg.tos = strtol(args[cur_arg], &err, 0);
8823 if (err && *err != '\0') {
8824 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8825 file, linenum, err, args[0]);
8826 goto out_err;
8827 }
8828 cur_arg++;
8829#else
8830 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
8831 goto out_err;
8832#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02008833 } else if (!strcmp(args[0], "set-mark")) {
8834#ifdef SO_MARK
8835 char *err;
8836 rule->action = HTTP_REQ_ACT_SET_MARK;
8837 cur_arg = 1;
8838
8839 if (!*args[cur_arg] ||
8840 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8841 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
8842 file, linenum, args[0]);
8843 goto out_err;
8844 }
8845
8846 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
8847 if (err && *err != '\0') {
8848 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
8849 file, linenum, err, args[0]);
8850 goto out_err;
8851 }
8852 cur_arg++;
8853 global.last_checks |= LSTCHK_NETADM;
8854#else
8855 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
8856 goto out_err;
8857#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02008858 } else if (!strcmp(args[0], "set-log-level")) {
8859 rule->action = HTTP_REQ_ACT_SET_LOGL;
8860 cur_arg = 1;
8861
8862 if (!*args[cur_arg] ||
8863 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
8864 bad_log_level:
8865 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
8866 file, linenum, args[0]);
8867 goto out_err;
8868 }
8869 if (strcmp(args[cur_arg], "silent") == 0)
8870 rule->arg.loglevel = -1;
8871 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
8872 goto bad_log_level;
8873 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008874 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
8875 rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR;
8876 cur_arg = 1;
8877
Willy Tarreau8d1c5162013-04-03 14:13:58 +02008878 if (!*args[cur_arg] || !*args[cur_arg+1] ||
8879 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
Willy Tarreau20b0de52012-12-24 15:45:22 +01008880 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
8881 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01008882 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008883 }
8884
8885 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8886 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8887 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02008888
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01008889 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01008890 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01008891 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8892 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01008893 free(proxy->conf.lfs_file);
8894 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8895 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01008896 cur_arg += 2;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02008897 } else if (strcmp(args[0], "del-header") == 0) {
8898 rule->action = HTTP_REQ_ACT_DEL_HDR;
8899 cur_arg = 1;
8900
8901 if (!*args[cur_arg] ||
8902 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
8903 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8904 file, linenum, args[0]);
8905 goto out_err;
8906 }
8907
8908 rule->arg.hdr_add.name = strdup(args[cur_arg]);
8909 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
8910
8911 proxy->conf.args.ctx = ARGC_HRQ;
8912 free(proxy->conf.lfs_file);
8913 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8914 proxy->conf.lfs_line = proxy->conf.args.line;
8915 cur_arg += 1;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008916 } else if (strcmp(args[0], "redirect") == 0) {
8917 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01008918 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01008919
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01008920 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1)) == NULL) {
Willy Tarreau81499eb2012-12-27 12:19:02 +01008921 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
8922 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
8923 goto out_err;
8924 }
8925
8926 /* this redirect rule might already contain a parsed condition which
8927 * we'll pass to the http-request rule.
8928 */
8929 rule->action = HTTP_REQ_ACT_REDIR;
8930 rule->arg.redir = redir;
8931 rule->cond = redir->cond;
8932 redir->cond = NULL;
8933 cur_arg = 2;
8934 return rule;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008935 } else if (strncmp(args[0], "add-acl", 7) == 0) {
8936 /* http-request add-acl(<reference (acl name)>) <key pattern> */
8937 rule->action = HTTP_REQ_ACT_ADD_ACL;
8938 /*
8939 * '+ 8' for 'add-acl('
8940 * '- 9' for 'add-acl(' + trailing ')'
8941 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008942 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008943
8944 cur_arg = 1;
8945
8946 if (!*args[cur_arg] ||
8947 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
8948 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8949 file, linenum, args[0]);
8950 goto out_err;
8951 }
8952
8953 LIST_INIT(&rule->arg.map.key);
8954 proxy->conf.args.ctx = ARGC_HRQ;
8955 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
8956 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8957 file, linenum);
8958 free(proxy->conf.lfs_file);
8959 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8960 proxy->conf.lfs_line = proxy->conf.args.line;
8961 cur_arg += 1;
8962 } else if (strncmp(args[0], "del-acl", 7) == 0) {
8963 /* http-request del-acl(<reference (acl name)>) <key pattern> */
8964 rule->action = HTTP_REQ_ACT_DEL_ACL;
8965 /*
8966 * '+ 8' for 'del-acl('
8967 * '- 9' for 'del-acl(' + trailing ')'
8968 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008969 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008970
8971 cur_arg = 1;
8972
8973 if (!*args[cur_arg] ||
8974 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
8975 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
8976 file, linenum, args[0]);
8977 goto out_err;
8978 }
8979
8980 LIST_INIT(&rule->arg.map.key);
8981 proxy->conf.args.ctx = ARGC_HRQ;
8982 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
8983 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
8984 file, linenum);
8985 free(proxy->conf.lfs_file);
8986 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
8987 proxy->conf.lfs_line = proxy->conf.args.line;
8988 cur_arg += 1;
8989 } else if (strncmp(args[0], "del-map", 7) == 0) {
8990 /* http-request del-map(<reference (map name)>) <key pattern> */
8991 rule->action = HTTP_REQ_ACT_DEL_MAP;
8992 /*
8993 * '+ 8' for 'del-map('
8994 * '- 9' for 'del-map(' + trailing ')'
8995 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02008996 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02008997
8998 cur_arg = 1;
8999
9000 if (!*args[cur_arg] ||
9001 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9002 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9003 file, linenum, args[0]);
9004 goto out_err;
9005 }
9006
9007 LIST_INIT(&rule->arg.map.key);
9008 proxy->conf.args.ctx = ARGC_HRQ;
9009 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9010 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9011 file, linenum);
9012 free(proxy->conf.lfs_file);
9013 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9014 proxy->conf.lfs_line = proxy->conf.args.line;
9015 cur_arg += 1;
9016 } else if (strncmp(args[0], "set-map", 7) == 0) {
9017 /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */
9018 rule->action = HTTP_REQ_ACT_SET_MAP;
9019 /*
9020 * '+ 8' for 'set-map('
9021 * '- 9' for 'set-map(' + trailing ')'
9022 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009023 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009024
9025 cur_arg = 1;
9026
9027 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9028 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9029 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9030 file, linenum, args[0]);
9031 goto out_err;
9032 }
9033
9034 LIST_INIT(&rule->arg.map.key);
9035 LIST_INIT(&rule->arg.map.value);
9036 proxy->conf.args.ctx = ARGC_HRQ;
9037
9038 /* key pattern */
9039 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9040 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9041 file, linenum);
9042
9043 /* value pattern */
9044 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9045 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9046 file, linenum);
9047 free(proxy->conf.lfs_file);
9048 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9049 proxy->conf.lfs_line = proxy->conf.args.line;
9050
9051 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02009052 } else if (((custom = action_http_req_custom(args[0])) != NULL)) {
9053 char *errmsg = NULL;
9054 cur_arg = 1;
9055 /* try in the module list */
9056 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9057 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9058 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9059 free(errmsg);
9060 goto out_err;
9061 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009062 } else {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009063 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', but got '%s'%s.\n",
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009064 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01009065 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009066 }
9067
9068 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9069 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009070 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009071
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009072 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9073 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
9074 file, linenum, args[0], errmsg);
9075 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009076 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009077 }
9078 rule->cond = cond;
9079 }
9080 else if (*args[cur_arg]) {
9081 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
9082 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9083 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009084 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009085 }
9086
9087 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009088 out_err:
9089 free(rule);
9090 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009091}
9092
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009093/* parse an "http-respose" rule */
9094struct http_res_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
9095{
9096 struct http_res_rule *rule;
William Lallemand73025dd2014-04-24 14:38:37 +02009097 struct http_res_action_kw *custom = NULL;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009098 int cur_arg;
9099
9100 rule = calloc(1, sizeof(*rule));
9101 if (!rule) {
9102 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
9103 goto out_err;
9104 }
9105
9106 if (!strcmp(args[0], "allow")) {
9107 rule->action = HTTP_RES_ACT_ALLOW;
9108 cur_arg = 1;
9109 } else if (!strcmp(args[0], "deny")) {
9110 rule->action = HTTP_RES_ACT_DENY;
9111 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009112 } else if (!strcmp(args[0], "set-nice")) {
9113 rule->action = HTTP_RES_ACT_SET_NICE;
9114 cur_arg = 1;
9115
9116 if (!*args[cur_arg] ||
9117 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9118 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
9119 file, linenum, args[0]);
9120 goto out_err;
9121 }
9122 rule->arg.nice = atoi(args[cur_arg]);
9123 if (rule->arg.nice < -1024)
9124 rule->arg.nice = -1024;
9125 else if (rule->arg.nice > 1024)
9126 rule->arg.nice = 1024;
9127 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009128 } else if (!strcmp(args[0], "set-tos")) {
9129#ifdef IP_TOS
9130 char *err;
9131 rule->action = HTTP_RES_ACT_SET_TOS;
9132 cur_arg = 1;
9133
9134 if (!*args[cur_arg] ||
9135 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9136 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9137 file, linenum, args[0]);
9138 goto out_err;
9139 }
9140
9141 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9142 if (err && *err != '\0') {
9143 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9144 file, linenum, err, args[0]);
9145 goto out_err;
9146 }
9147 cur_arg++;
9148#else
9149 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9150 goto out_err;
9151#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009152 } else if (!strcmp(args[0], "set-mark")) {
9153#ifdef SO_MARK
9154 char *err;
9155 rule->action = HTTP_RES_ACT_SET_MARK;
9156 cur_arg = 1;
9157
9158 if (!*args[cur_arg] ||
9159 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9160 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9161 file, linenum, args[0]);
9162 goto out_err;
9163 }
9164
9165 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9166 if (err && *err != '\0') {
9167 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9168 file, linenum, err, args[0]);
9169 goto out_err;
9170 }
9171 cur_arg++;
9172 global.last_checks |= LSTCHK_NETADM;
9173#else
9174 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9175 goto out_err;
9176#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009177 } else if (!strcmp(args[0], "set-log-level")) {
9178 rule->action = HTTP_RES_ACT_SET_LOGL;
9179 cur_arg = 1;
9180
9181 if (!*args[cur_arg] ||
9182 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9183 bad_log_level:
9184 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
9185 file, linenum, args[0]);
9186 goto out_err;
9187 }
9188 if (strcmp(args[cur_arg], "silent") == 0)
9189 rule->arg.loglevel = -1;
9190 else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0)
9191 goto bad_log_level;
9192 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009193 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
9194 rule->action = *args[0] == 'a' ? HTTP_RES_ACT_ADD_HDR : HTTP_RES_ACT_SET_HDR;
9195 cur_arg = 1;
9196
9197 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9198 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9199 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9200 file, linenum, args[0]);
9201 goto out_err;
9202 }
9203
9204 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9205 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9206 LIST_INIT(&rule->arg.hdr_add.fmt);
9207
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009208 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009209 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009210 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9211 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009212 free(proxy->conf.lfs_file);
9213 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9214 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009215 cur_arg += 2;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009216 } else if (strcmp(args[0], "del-header") == 0) {
9217 rule->action = HTTP_RES_ACT_DEL_HDR;
9218 cur_arg = 1;
9219
9220 if (!*args[cur_arg] ||
9221 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9222 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9223 file, linenum, args[0]);
9224 goto out_err;
9225 }
9226
9227 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9228 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9229
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009230 proxy->conf.args.ctx = ARGC_HRS;
9231 free(proxy->conf.lfs_file);
9232 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9233 proxy->conf.lfs_line = proxy->conf.args.line;
9234 cur_arg += 1;
9235 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9236 /* http-request add-acl(<reference (acl name)>) <key pattern> */
9237 rule->action = HTTP_RES_ACT_ADD_ACL;
9238 /*
9239 * '+ 8' for 'add-acl('
9240 * '- 9' for 'add-acl(' + trailing ')'
9241 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009242 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009243
9244 cur_arg = 1;
9245
9246 if (!*args[cur_arg] ||
9247 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9248 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9249 file, linenum, args[0]);
9250 goto out_err;
9251 }
9252
9253 LIST_INIT(&rule->arg.map.key);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009254 proxy->conf.args.ctx = ARGC_HRS;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009255 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9256 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9257 file, linenum);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009258 free(proxy->conf.lfs_file);
9259 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9260 proxy->conf.lfs_line = proxy->conf.args.line;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009261
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009262 cur_arg += 1;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009263 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9264 /* http-response del-acl(<reference (acl name)>) <key pattern> */
9265 rule->action = HTTP_RES_ACT_DEL_ACL;
9266 /*
9267 * '+ 8' for 'del-acl('
9268 * '- 9' for 'del-acl(' + trailing ')'
9269 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009270 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009271
9272 cur_arg = 1;
9273
9274 if (!*args[cur_arg] ||
9275 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9276 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9277 file, linenum, args[0]);
9278 goto out_err;
9279 }
9280
9281 LIST_INIT(&rule->arg.map.key);
9282 proxy->conf.args.ctx = ARGC_HRS;
9283 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9284 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9285 file, linenum);
9286 free(proxy->conf.lfs_file);
9287 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9288 proxy->conf.lfs_line = proxy->conf.args.line;
9289 cur_arg += 1;
9290 } else if (strncmp(args[0], "del-map", 7) == 0) {
9291 /* http-response del-map(<reference (map name)>) <key pattern> */
9292 rule->action = HTTP_RES_ACT_DEL_MAP;
9293 /*
9294 * '+ 8' for 'del-map('
9295 * '- 9' for 'del-map(' + trailing ')'
9296 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009297 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009298
9299 cur_arg = 1;
9300
9301 if (!*args[cur_arg] ||
9302 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9303 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9304 file, linenum, args[0]);
9305 goto out_err;
9306 }
9307
9308 LIST_INIT(&rule->arg.map.key);
9309 proxy->conf.args.ctx = ARGC_HRS;
9310 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9311 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9312 file, linenum);
9313 free(proxy->conf.lfs_file);
9314 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9315 proxy->conf.lfs_line = proxy->conf.args.line;
9316 cur_arg += 1;
9317 } else if (strncmp(args[0], "set-map", 7) == 0) {
9318 /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */
9319 rule->action = HTTP_RES_ACT_SET_MAP;
9320 /*
9321 * '+ 8' for 'set-map('
9322 * '- 9' for 'set-map(' + trailing ')'
9323 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009324 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009325
9326 cur_arg = 1;
9327
9328 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9329 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9330 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9331 file, linenum, args[0]);
9332 goto out_err;
9333 }
9334
9335 LIST_INIT(&rule->arg.map.key);
9336 LIST_INIT(&rule->arg.map.value);
9337
9338 proxy->conf.args.ctx = ARGC_HRS;
9339
9340 /* key pattern */
9341 parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
9342 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9343 file, linenum);
9344
9345 /* value pattern */
9346 parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
9347 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR,
9348 file, linenum);
9349
9350 free(proxy->conf.lfs_file);
9351 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9352 proxy->conf.lfs_line = proxy->conf.args.line;
9353
9354 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02009355 } else if (((custom = action_http_res_custom(args[0])) != NULL)) {
9356 char *errmsg = NULL;
9357 cur_arg = 1;
9358 /* try in the module list */
9359 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) {
9360 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9361 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9362 free(errmsg);
9363 goto out_err;
9364 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009365 } else {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009366 Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'del-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'del-acl', 'add-acl', 'del-map', 'set-map', but got '%s'%s.\n",
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009367 file, linenum, args[0], *args[0] ? "" : " (missing argument)");
9368 goto out_err;
9369 }
9370
9371 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9372 struct acl_cond *cond;
9373 char *errmsg = NULL;
9374
9375 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9376 Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
9377 file, linenum, args[0], errmsg);
9378 free(errmsg);
9379 goto out_err;
9380 }
9381 rule->cond = cond;
9382 }
9383 else if (*args[cur_arg]) {
9384 Alert("parsing [%s:%d]: 'http-response %s' expects"
9385 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9386 file, linenum, args[0], args[cur_arg]);
9387 goto out_err;
9388 }
9389
9390 return rule;
9391 out_err:
9392 free(rule);
9393 return NULL;
9394}
9395
Willy Tarreau4baae242012-12-27 12:00:31 +01009396/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009397 * with <err> filled with the error message. If <use_fmt> is not null, builds a
9398 * dynamic log-format rule instead of a static string.
Willy Tarreau4baae242012-12-27 12:00:31 +01009399 */
9400struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009401 const char **args, char **errmsg, int use_fmt)
Willy Tarreau4baae242012-12-27 12:00:31 +01009402{
9403 struct redirect_rule *rule;
9404 int cur_arg;
9405 int type = REDIRECT_TYPE_NONE;
9406 int code = 302;
9407 const char *destination = NULL;
9408 const char *cookie = NULL;
9409 int cookie_set = 0;
9410 unsigned int flags = REDIRECT_FLAG_NONE;
9411 struct acl_cond *cond = NULL;
9412
9413 cur_arg = 0;
9414 while (*(args[cur_arg])) {
9415 if (strcmp(args[cur_arg], "location") == 0) {
9416 if (!*args[cur_arg + 1])
9417 goto missing_arg;
9418
9419 type = REDIRECT_TYPE_LOCATION;
9420 cur_arg++;
9421 destination = args[cur_arg];
9422 }
9423 else if (strcmp(args[cur_arg], "prefix") == 0) {
9424 if (!*args[cur_arg + 1])
9425 goto missing_arg;
9426
9427 type = REDIRECT_TYPE_PREFIX;
9428 cur_arg++;
9429 destination = args[cur_arg];
9430 }
9431 else if (strcmp(args[cur_arg], "scheme") == 0) {
9432 if (!*args[cur_arg + 1])
9433 goto missing_arg;
9434
9435 type = REDIRECT_TYPE_SCHEME;
9436 cur_arg++;
9437 destination = args[cur_arg];
9438 }
9439 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
9440 if (!*args[cur_arg + 1])
9441 goto missing_arg;
9442
9443 cur_arg++;
9444 cookie = args[cur_arg];
9445 cookie_set = 1;
9446 }
9447 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
9448 if (!*args[cur_arg + 1])
9449 goto missing_arg;
9450
9451 cur_arg++;
9452 cookie = args[cur_arg];
9453 cookie_set = 0;
9454 }
9455 else if (strcmp(args[cur_arg], "code") == 0) {
9456 if (!*args[cur_arg + 1])
9457 goto missing_arg;
9458
9459 cur_arg++;
9460 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009461 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +01009462 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04009463 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +01009464 args[cur_arg - 1], args[cur_arg]);
9465 return NULL;
9466 }
9467 }
9468 else if (!strcmp(args[cur_arg],"drop-query")) {
9469 flags |= REDIRECT_FLAG_DROP_QS;
9470 }
9471 else if (!strcmp(args[cur_arg],"append-slash")) {
9472 flags |= REDIRECT_FLAG_APPEND_SLASH;
9473 }
9474 else if (strcmp(args[cur_arg], "if") == 0 ||
9475 strcmp(args[cur_arg], "unless") == 0) {
9476 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
9477 if (!cond) {
9478 memprintf(errmsg, "error in condition: %s", *errmsg);
9479 return NULL;
9480 }
9481 break;
9482 }
9483 else {
9484 memprintf(errmsg,
9485 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
9486 args[cur_arg]);
9487 return NULL;
9488 }
9489 cur_arg++;
9490 }
9491
9492 if (type == REDIRECT_TYPE_NONE) {
9493 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
9494 return NULL;
9495 }
9496
9497 rule = (struct redirect_rule *)calloc(1, sizeof(*rule));
9498 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +01009499 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009500
9501 if (!use_fmt) {
9502 /* old-style static redirect rule */
9503 rule->rdr_str = strdup(destination);
9504 rule->rdr_len = strlen(destination);
9505 }
9506 else {
9507 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009508
9509 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
9510 * if prefix == "/", we don't want to add anything, otherwise it
9511 * makes it hard for the user to configure a self-redirection.
9512 */
9513 proxy->conf.args.ctx = ARGC_RDR;
9514 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01009515 parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01009516 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
9517 file, linenum);
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009518 free(curproxy->conf.lfs_file);
9519 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
9520 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009521 }
9522 }
9523
Willy Tarreau4baae242012-12-27 12:00:31 +01009524 if (cookie) {
9525 /* depending on cookie_set, either we want to set the cookie, or to clear it.
9526 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
9527 */
9528 rule->cookie_len = strlen(cookie);
9529 if (cookie_set) {
9530 rule->cookie_str = malloc(rule->cookie_len + 10);
9531 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9532 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
9533 rule->cookie_len += 9;
9534 } else {
9535 rule->cookie_str = malloc(rule->cookie_len + 21);
9536 memcpy(rule->cookie_str, cookie, rule->cookie_len);
9537 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
9538 rule->cookie_len += 20;
9539 }
9540 }
9541 rule->type = type;
9542 rule->code = code;
9543 rule->flags = flags;
9544 LIST_INIT(&rule->list);
9545 return rule;
9546
9547 missing_arg:
9548 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
9549 return NULL;
9550}
9551
Willy Tarreau8797c062007-05-07 00:55:35 +02009552/************************************************************************/
9553/* The code below is dedicated to ACL parsing and matching */
9554/************************************************************************/
9555
9556
Willy Tarreau14174bc2012-04-16 14:34:04 +02009557/* This function ensures that the prerequisites for an L7 fetch are ready,
9558 * which means that a request or response is ready. If some data is missing,
9559 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +02009560 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
9561 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +02009562 *
9563 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +02009564 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
9565 * decide whether or not an HTTP message is present ;
9566 * 0 if the requested data cannot be fetched or if it is certain that
9567 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009568 * 1 if an HTTP message is ready
9569 */
9570static int
Willy Tarreau506d0502013-07-06 13:29:24 +02009571smp_prefetch_http(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02009572 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +02009573{
9574 struct http_txn *txn = l7;
9575 struct http_msg *msg = &txn->req;
9576
9577 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
9578 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
9579 */
9580
9581 if (unlikely(!s || !txn))
9582 return 0;
9583
9584 /* Check for a dependency on a request */
Willy Tarreauf853c462012-04-23 18:53:56 +02009585 smp->type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009586
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009587 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009588 if (unlikely(!s->req))
9589 return 0;
9590
Willy Tarreauaae75e32013-03-29 12:31:49 +01009591 /* If the buffer does not leave enough free space at the end,
9592 * we must first realign it.
9593 */
9594 if (s->req->buf->p > s->req->buf->data &&
9595 s->req->buf->i + s->req->buf->p > s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)
9596 buffer_slow_realign(s->req->buf);
9597
Willy Tarreau14174bc2012-04-16 14:34:04 +02009598 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +02009599 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +02009600 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009601
9602 /* Try to decode HTTP request */
Willy Tarreau9b28e032012-10-12 23:49:43 +02009603 if (likely(msg->next < s->req->buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +02009604 http_msg_analyzer(msg, &txn->hdr_idx);
9605
9606 /* Still no valid request ? */
9607 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02009608 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02009609 buffer_full(s->req->buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +02009610 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009611 }
9612 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +02009613 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009614 return 0;
9615 }
9616
9617 /* OK we just got a valid HTTP request. We have some minor
9618 * preparation to perform so that further checks can rely
9619 * on HTTP tests.
9620 */
Willy Tarreauaae75e32013-03-29 12:31:49 +01009621
9622 /* If the request was parsed but was too large, we must absolutely
9623 * return an error so that it is not processed. At the moment this
9624 * cannot happen, but if the parsers are to change in the future,
9625 * we want this check to be maintained.
9626 */
9627 if (unlikely(s->req->buf->i + s->req->buf->p >
9628 s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)) {
9629 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreau506d0502013-07-06 13:29:24 +02009630 smp->data.uint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +01009631 return 1;
9632 }
9633
Willy Tarreau9b28e032012-10-12 23:49:43 +02009634 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +02009635 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
9636 s->flags |= SN_REDIRECTABLE;
9637
Willy Tarreau506d0502013-07-06 13:29:24 +02009638 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
9639 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009640 }
9641
Willy Tarreau506d0502013-07-06 13:29:24 +02009642 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +02009643 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +02009644 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009645
9646 /* otherwise everything's ready for the request */
9647 }
Willy Tarreau24e32d82012-04-23 23:55:44 +02009648 else {
9649 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +02009650 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
9651 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009652 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +02009653 }
Willy Tarreau14174bc2012-04-16 14:34:04 +02009654 }
9655
9656 /* everything's OK */
Willy Tarreau506d0502013-07-06 13:29:24 +02009657 smp->data.uint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +02009658 return 1;
9659}
Willy Tarreau8797c062007-05-07 00:55:35 +02009660
Willy Tarreauc0239e02012-04-16 14:42:55 +02009661#define CHECK_HTTP_MESSAGE_FIRST() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009662 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 1); if (r <= 0) return r; } while (0)
Willy Tarreauc0239e02012-04-16 14:42:55 +02009663
Willy Tarreau24e32d82012-04-23 23:55:44 +02009664#define CHECK_HTTP_MESSAGE_FIRST_PERM() \
Willy Tarreau506d0502013-07-06 13:29:24 +02009665 do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 0); if (r <= 0) return r; } while (0)
Willy Tarreau24e32d82012-04-23 23:55:44 +02009666
Willy Tarreau8797c062007-05-07 00:55:35 +02009667
9668/* 1. Check on METHOD
9669 * We use the pre-parsed method if it is known, and store its number as an
9670 * integer. If it is unknown, we use the pointer and the length.
9671 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009672static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +02009673{
9674 int len, meth;
Thierry FOURNIER0b2fe4a2013-12-06 20:33:50 +01009675 struct chunk *trash;
Willy Tarreau8797c062007-05-07 00:55:35 +02009676
Thierry FOURNIER580c32c2014-01-24 10:58:12 +01009677 len = strlen(text);
9678 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +02009679
9680 pattern->val.i = meth;
9681 if (meth == HTTP_METH_OTHER) {
Thierry FOURNIERedc15c32013-12-13 15:36:59 +01009682 trash = get_trash_chunk();
9683 if (trash->size < len) {
9684 memprintf(err, "no space avalaible in the buffer. expect %d, provides %d",
9685 len, trash->size);
9686 return 0;
Thierry FOURNIER0b2fe4a2013-12-06 20:33:50 +01009687 }
Thierry FOURNIERedc15c32013-12-13 15:36:59 +01009688 pattern->ptr.str = trash->str;
Willy Tarreau8797c062007-05-07 00:55:35 +02009689 pattern->len = len;
9690 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009691 else {
9692 pattern->ptr.str = NULL;
9693 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009694 }
Willy Tarreau8797c062007-05-07 00:55:35 +02009695 return 1;
9696}
9697
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009698/* This function fetches the method of current HTTP request and stores
9699 * it in the global pattern struct as a chunk. There are two possibilities :
9700 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
9701 * in <len> and <ptr> is NULL ;
9702 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
9703 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01009704 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009705 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009706static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009707smp_fetch_meth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009708 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009709{
9710 int meth;
9711 struct http_txn *txn = l7;
9712
Willy Tarreau24e32d82012-04-23 23:55:44 +02009713 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009714
Willy Tarreau8797c062007-05-07 00:55:35 +02009715 meth = txn->meth;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009716 smp->type = SMP_T_METH;
9717 smp->data.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +02009718 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +02009719 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
9720 /* ensure the indexes are not affected */
9721 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009722 smp->flags |= SMP_F_CONST;
Thierry FOURNIERd4373142013-12-17 01:10:10 +01009723 smp->data.meth.str.len = txn->req.sl.rq.m_l;
9724 smp->data.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009725 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009726 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009727 return 1;
9728}
9729
Willy Tarreau8e5e9552011-12-16 15:38:49 +01009730/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009731static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +02009732{
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009733 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009734 struct pattern_list *lst;
9735 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009736
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009737 list_for_each_entry(lst, &expr->patterns, list) {
9738 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +02009739
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009740 /* well-known method */
9741 if (pattern->val.i != HTTP_METH_OTHER) {
9742 if (smp->data.meth.meth == pattern->val.i)
9743 return pattern;
9744 else
9745 continue;
9746 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02009747
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009748 /* Other method, we must compare the strings */
9749 if (pattern->len != smp->data.meth.str.len)
9750 continue;
9751
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02009752 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01009753 if ((icase && strncasecmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0) ||
9754 (!icase && strncmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0))
9755 return pattern;
9756 }
9757 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +02009758}
9759
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009760static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009761smp_fetch_rqver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009762 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009763{
9764 struct http_txn *txn = l7;
9765 char *ptr;
9766 int len;
9767
Willy Tarreauc0239e02012-04-16 14:42:55 +02009768 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009769
Willy Tarreau8797c062007-05-07 00:55:35 +02009770 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009771 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +02009772
9773 while ((len-- > 0) && (*ptr++ != '/'));
9774 if (len <= 0)
9775 return 0;
9776
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009777 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009778 smp->data.str.str = ptr;
9779 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009780
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009781 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009782 return 1;
9783}
9784
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009785static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009786smp_fetch_stver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009787 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009788{
9789 struct http_txn *txn = l7;
9790 char *ptr;
9791 int len;
9792
Willy Tarreauc0239e02012-04-16 14:42:55 +02009793 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009794
Willy Tarreauf26b2522012-12-14 08:33:14 +01009795 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9796 return 0;
9797
Willy Tarreau8797c062007-05-07 00:55:35 +02009798 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009799 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +02009800
9801 while ((len-- > 0) && (*ptr++ != '/'));
9802 if (len <= 0)
9803 return 0;
9804
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009805 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009806 smp->data.str.str = ptr;
9807 smp->data.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +02009808
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009809 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009810 return 1;
9811}
9812
9813/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009814static int
Willy Tarreau409bcde2013-01-08 00:31:00 +01009815smp_fetch_stcode(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009816 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009817{
9818 struct http_txn *txn = l7;
9819 char *ptr;
9820 int len;
9821
Willy Tarreauc0239e02012-04-16 14:42:55 +02009822 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009823
Willy Tarreauf26b2522012-12-14 08:33:14 +01009824 if (txn->rsp.msg_state < HTTP_MSG_BODY)
9825 return 0;
9826
Willy Tarreau8797c062007-05-07 00:55:35 +02009827 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009828 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +02009829
Willy Tarreauf853c462012-04-23 18:53:56 +02009830 smp->type = SMP_T_UINT;
9831 smp->data.uint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +02009832 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009833 return 1;
9834}
9835
9836/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +02009837static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009838smp_fetch_url(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009839 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau8797c062007-05-07 00:55:35 +02009840{
9841 struct http_txn *txn = l7;
9842
Willy Tarreauc0239e02012-04-16 14:42:55 +02009843 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +02009844
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009845 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +02009846 smp->data.str.len = txn->req.sl.rq.u_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +02009847 smp->data.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009848 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +02009849 return 1;
9850}
9851
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009852static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009853smp_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009854 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009855{
9856 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009857 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009858
Willy Tarreauc0239e02012-04-16 14:42:55 +02009859 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009860
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009861 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009862 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +01009863 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009864
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009865 smp->type = SMP_T_IPV4;
9866 smp->data.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +02009867 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009868 return 1;
9869}
9870
9871static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +02009872smp_fetch_url_port(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009873 const struct arg *args, struct sample *smp, const char *kw)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009874{
9875 struct http_txn *txn = l7;
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009876 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009877
Willy Tarreauc0239e02012-04-16 14:42:55 +02009878 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009879
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01009880 url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL);
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009881 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
9882 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009883
Willy Tarreau4c804ec2013-09-30 14:37:14 +02009884 smp->type = SMP_T_UINT;
9885 smp->data.uint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +02009886 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01009887 return 1;
9888}
9889
Willy Tarreau185b5c42012-04-26 15:11:51 +02009890/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
9891 * Accepts an optional argument of type string containing the header field name,
9892 * and an optional argument of type signed or unsigned integer to request an
9893 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009894 * headers are considered from the first one. It does not stop on commas and
9895 * returns full lines instead (useful for User-Agent or Date for example).
9896 */
9897static int
9898smp_fetch_fhdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009899 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009900{
9901 struct http_txn *txn = l7;
9902 struct hdr_idx *idx = &txn->hdr_idx;
9903 struct hdr_ctx *ctx = smp->ctx.a[0];
9904 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
9905 int occ = 0;
9906 const char *name_str = NULL;
9907 int name_len = 0;
9908
9909 if (!ctx) {
9910 /* first call */
9911 ctx = &static_hdr_ctx;
9912 ctx->idx = 0;
9913 smp->ctx.a[0] = ctx;
9914 }
9915
9916 if (args) {
9917 if (args[0].type != ARGT_STR)
9918 return 0;
9919 name_str = args[0].data.str.str;
9920 name_len = args[0].data.str.len;
9921
9922 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
9923 occ = args[1].data.uint;
9924 }
9925
9926 CHECK_HTTP_MESSAGE_FIRST();
9927
9928 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
9929 /* search for header from the beginning */
9930 ctx->idx = 0;
9931
9932 if (!occ && !(opt & SMP_OPT_ITERATE))
9933 /* no explicit occurrence and single fetch => last header by default */
9934 occ = -1;
9935
9936 if (!occ)
9937 /* prepare to report multiple occurrences for ACL fetches */
9938 smp->flags |= SMP_F_NOT_LAST;
9939
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009940 smp->type = SMP_T_STR;
9941 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009942 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
9943 return 1;
9944
9945 smp->flags &= ~SMP_F_NOT_LAST;
9946 return 0;
9947}
9948
9949/* 6. Check on HTTP header count. The number of occurrences is returned.
9950 * Accepts exactly 1 argument of type string. It does not stop on commas and
9951 * returns full lines instead (useful for User-Agent or Date for example).
9952 */
9953static int
9954smp_fetch_fhdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009955 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04ff9f12013-06-10 18:39:42 +02009956{
9957 struct http_txn *txn = l7;
9958 struct hdr_idx *idx = &txn->hdr_idx;
9959 struct hdr_ctx ctx;
9960 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
9961 int cnt;
9962
9963 if (!args || args->type != ARGT_STR)
9964 return 0;
9965
9966 CHECK_HTTP_MESSAGE_FIRST();
9967
9968 ctx.idx = 0;
9969 cnt = 0;
9970 while (http_find_full_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
9971 cnt++;
9972
9973 smp->type = SMP_T_UINT;
9974 smp->data.uint = cnt;
9975 smp->flags = SMP_F_VOL_HDR;
9976 return 1;
9977}
9978
9979/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
9980 * Accepts an optional argument of type string containing the header field name,
9981 * and an optional argument of type signed or unsigned integer to request an
9982 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +02009983 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +02009984 */
Willy Tarreau33a7e692007-06-10 19:45:56 +02009985static int
Willy Tarreau185b5c42012-04-26 15:11:51 +02009986smp_fetch_hdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02009987 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +02009988{
9989 struct http_txn *txn = l7;
9990 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +02009991 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02009992 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau185b5c42012-04-26 15:11:51 +02009993 int occ = 0;
9994 const char *name_str = NULL;
9995 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +02009996
Willy Tarreaua890d072013-04-02 12:01:06 +02009997 if (!ctx) {
9998 /* first call */
9999 ctx = &static_hdr_ctx;
10000 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +020010001 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010002 }
10003
Willy Tarreau185b5c42012-04-26 15:11:51 +020010004 if (args) {
10005 if (args[0].type != ARGT_STR)
10006 return 0;
10007 name_str = args[0].data.str.str;
10008 name_len = args[0].data.str.len;
10009
10010 if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT)
10011 occ = args[1].data.uint;
10012 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010013
Willy Tarreaue333ec92012-04-16 16:26:40 +020010014 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +020010015
Willy Tarreau185b5c42012-04-26 15:11:51 +020010016 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010017 /* search for header from the beginning */
10018 ctx->idx = 0;
10019
Willy Tarreau185b5c42012-04-26 15:11:51 +020010020 if (!occ && !(opt & SMP_OPT_ITERATE))
10021 /* no explicit occurrence and single fetch => last header by default */
10022 occ = -1;
10023
10024 if (!occ)
10025 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +020010026 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +010010027
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010028 smp->type = SMP_T_STR;
10029 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010030 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010031 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010032
Willy Tarreau37406352012-04-23 16:16:37 +020010033 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010034 return 0;
10035}
10036
Willy Tarreauc11416f2007-06-17 16:58:38 +020010037/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +020010038 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010039 */
10040static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010041smp_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010042 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010043{
10044 struct http_txn *txn = l7;
10045 struct hdr_idx *idx = &txn->hdr_idx;
10046 struct hdr_ctx ctx;
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010047 const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010048 int cnt;
Willy Tarreau8797c062007-05-07 00:55:35 +020010049
Willy Tarreau24e32d82012-04-23 23:55:44 +020010050 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010051 return 0;
10052
Willy Tarreaue333ec92012-04-16 16:26:40 +020010053 CHECK_HTTP_MESSAGE_FIRST();
10054
Willy Tarreau33a7e692007-06-10 19:45:56 +020010055 ctx.idx = 0;
10056 cnt = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010057 while (http_find_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010058 cnt++;
10059
Willy Tarreauf853c462012-04-23 18:53:56 +020010060 smp->type = SMP_T_UINT;
10061 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010062 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010063 return 1;
10064}
10065
Willy Tarreau185b5c42012-04-26 15:11:51 +020010066/* Fetch an HTTP header's integer value. The integer value is returned. It
10067 * takes a mandatory argument of type string and an optional one of type int
10068 * to designate a specific occurrence. It returns an unsigned integer, which
10069 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +020010070 */
10071static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010072smp_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010073 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010074{
Willy Tarreauef38c392013-07-22 16:29:32 +020010075 int ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw);
Willy Tarreaue333ec92012-04-16 16:26:40 +020010076
Willy Tarreauf853c462012-04-23 18:53:56 +020010077 if (ret > 0) {
10078 smp->type = SMP_T_UINT;
10079 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10080 }
Willy Tarreau33a7e692007-06-10 19:45:56 +020010081
Willy Tarreaud53e2422012-04-16 17:21:11 +020010082 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010083}
10084
Cyril Bonté69fa9922012-10-25 00:01:06 +020010085/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
10086 * and an optional one of type int to designate a specific occurrence.
10087 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +020010088 */
10089static int
Willy Tarreau185b5c42012-04-26 15:11:51 +020010090smp_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010091 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau106f9792009-09-19 07:54:16 +020010092{
Willy Tarreaud53e2422012-04-16 17:21:11 +020010093 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010094
Willy Tarreauef38c392013-07-22 16:29:32 +020010095 while ((ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw)) > 0) {
Cyril Bonté69fa9922012-10-25 00:01:06 +020010096 if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) {
10097 smp->type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +020010098 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010099 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +010010100 struct chunk *temp = get_trash_chunk();
Cyril Bonté69fa9922012-10-25 00:01:06 +020010101 if (smp->data.str.len < temp->size - 1) {
10102 memcpy(temp->str, smp->data.str.str, smp->data.str.len);
10103 temp->str[smp->data.str.len] = '\0';
10104 if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) {
10105 smp->type = SMP_T_IPV6;
10106 break;
10107 }
10108 }
10109 }
10110
Willy Tarreaud53e2422012-04-16 17:21:11 +020010111 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +020010112 if (!(smp->flags & SMP_F_NOT_LAST))
10113 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +020010114 }
Willy Tarreaud53e2422012-04-16 17:21:11 +020010115 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +020010116}
10117
Willy Tarreau737b0c12007-06-10 21:28:46 +020010118/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
10119 * the first '/' after the possible hostname, and ends before the possible '?'.
10120 */
10121static int
Willy Tarreau6812bcf2012-04-29 09:28:50 +020010122smp_fetch_path(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010123 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010124{
10125 struct http_txn *txn = l7;
10126 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010127
Willy Tarreauc0239e02012-04-16 14:42:55 +020010128 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010129
Willy Tarreau9b28e032012-10-12 23:49:43 +020010130 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +010010131 ptr = http_get_path(txn);
10132 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010133 return 0;
10134
10135 /* OK, we got the '/' ! */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010136 smp->type = SMP_T_STR;
Willy Tarreauf853c462012-04-23 18:53:56 +020010137 smp->data.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010138
10139 while (ptr < end && *ptr != '?')
10140 ptr++;
10141
Willy Tarreauf853c462012-04-23 18:53:56 +020010142 smp->data.str.len = ptr - smp->data.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010143 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010144 return 1;
10145}
10146
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010147/* This produces a concatenation of the first occurrence of the Host header
10148 * followed by the path component if it begins with a slash ('/'). This means
10149 * that '*' will not be added, resulting in exactly the first Host entry.
10150 * If no Host header is found, then the path is returned as-is. The returned
10151 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010152 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010153 */
10154static int
10155smp_fetch_base(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010156 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010157{
10158 struct http_txn *txn = l7;
10159 char *ptr, *end, *beg;
10160 struct hdr_ctx ctx;
10161
10162 CHECK_HTTP_MESSAGE_FIRST();
10163
10164 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010165 if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen)
Willy Tarreauef38c392013-07-22 16:29:32 +020010166 return smp_fetch_path(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010167
10168 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau19d14ef2012-10-29 16:51:55 +010010169 memcpy(trash.str, ctx.line + ctx.val, ctx.vlen);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010170 smp->type = SMP_T_STR;
Willy Tarreau19d14ef2012-10-29 16:51:55 +010010171 smp->data.str.str = trash.str;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010172 smp->data.str.len = ctx.vlen;
10173
10174 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010175 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010176 beg = http_get_path(txn);
10177 if (!beg)
10178 beg = end;
10179
10180 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10181
10182 if (beg < ptr && *beg == '/') {
10183 memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg);
10184 smp->data.str.len += ptr - beg;
10185 }
10186
10187 smp->flags = SMP_F_VOL_1ST;
10188 return 1;
10189}
10190
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010191/* This produces a 32-bit hash of the concatenation of the first occurrence of
10192 * the Host header followed by the path component if it begins with a slash ('/').
10193 * This means that '*' will not be added, resulting in exactly the first Host
10194 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010195 * is hashed using the path hash followed by a full avalanche hash and provides a
10196 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010197 * high-traffic sites without having to store whole paths.
10198 */
10199static int
10200smp_fetch_base32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010201 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010202{
10203 struct http_txn *txn = l7;
10204 struct hdr_ctx ctx;
10205 unsigned int hash = 0;
10206 char *ptr, *beg, *end;
10207 int len;
10208
10209 CHECK_HTTP_MESSAGE_FIRST();
10210
10211 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010212 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010213 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10214 ptr = ctx.line + ctx.val;
10215 len = ctx.vlen;
10216 while (len--)
10217 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10218 }
10219
10220 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010221 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010222 beg = http_get_path(txn);
10223 if (!beg)
10224 beg = end;
10225
10226 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10227
10228 if (beg < ptr && *beg == '/') {
10229 while (beg < ptr)
10230 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10231 }
10232 hash = full_hash(hash);
10233
10234 smp->type = SMP_T_UINT;
10235 smp->data.uint = hash;
10236 smp->flags = SMP_F_VOL_1ST;
10237 return 1;
10238}
10239
Willy Tarreau4a550602012-12-09 14:53:32 +010010240/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010241 * path as returned by smp_fetch_base32(). The idea is to have per-source and
10242 * per-path counters. The result is a binary block from 8 to 20 bytes depending
10243 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +010010244 * that in environments where IPv6 is insignificant, truncating the output to
10245 * 8 bytes would still work.
10246 */
10247static int
10248smp_fetch_base32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010249 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a550602012-12-09 14:53:32 +010010250{
Willy Tarreau47ca5452012-12-23 20:22:19 +010010251 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010252 struct connection *cli_conn = objt_conn(l4->si[0].end);
10253
10254 if (!cli_conn)
10255 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +010010256
Willy Tarreauef38c392013-07-22 16:29:32 +020010257 if (!smp_fetch_base32(px, l4, l7, opt, args, smp, kw))
Willy Tarreau4a550602012-12-09 14:53:32 +010010258 return 0;
10259
Willy Tarreau47ca5452012-12-23 20:22:19 +010010260 temp = get_trash_chunk();
Willy Tarreau4a550602012-12-09 14:53:32 +010010261 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
10262 temp->len += sizeof(smp->data.uint);
10263
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010264 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +010010265 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010266 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +010010267 temp->len += 4;
10268 break;
10269 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010270 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +010010271 temp->len += 16;
10272 break;
10273 default:
10274 return 0;
10275 }
10276
10277 smp->data.str = *temp;
10278 smp->type = SMP_T_BIN;
10279 return 1;
10280}
10281
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010282static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010283smp_fetch_proto_http(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010284 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010285{
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010286 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
10287 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
10288 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010289
Willy Tarreau24e32d82012-04-23 23:55:44 +020010290 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010291
Willy Tarreauf853c462012-04-23 18:53:56 +020010292 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020010293 smp->data.uint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010294 return 1;
10295}
10296
Willy Tarreau7f18e522010-10-22 20:04:13 +020010297/* return a valid test if the current request is the first one on the connection */
10298static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010299smp_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010300 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau7f18e522010-10-22 20:04:13 +020010301{
10302 if (!s)
10303 return 0;
10304
Willy Tarreauf853c462012-04-23 18:53:56 +020010305 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020010306 smp->data.uint = !(s->txn.flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +020010307 return 1;
10308}
10309
Willy Tarreau34db1082012-04-19 17:16:54 +020010310/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010311static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010312smp_fetch_http_auth(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010313 const struct arg *args, struct sample *smp, const char *kw)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010314{
10315
Willy Tarreau24e32d82012-04-23 23:55:44 +020010316 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010317 return 0;
10318
Willy Tarreauc0239e02012-04-16 14:42:55 +020010319 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010320
Willy Tarreauc0239e02012-04-16 14:42:55 +020010321 if (!get_http_auth(l4))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010322 return 0;
10323
Willy Tarreauf853c462012-04-23 18:53:56 +020010324 smp->type = SMP_T_BOOL;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010325 smp->data.uint = check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010010326 return 1;
10327}
Willy Tarreau8797c062007-05-07 00:55:35 +020010328
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010329/* Accepts exactly 1 argument of type userlist */
10330static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010331smp_fetch_http_auth_grp(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010332 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010333{
10334
10335 if (!args || args->type != ARGT_USR)
10336 return 0;
10337
10338 CHECK_HTTP_MESSAGE_FIRST();
10339
10340 if (!get_http_auth(l4))
10341 return 0;
10342
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010343 /* if the user does not belong to the userlist or has a wrong password,
10344 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010345 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010346 */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010347 if (!check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass))
10348 return 0;
10349
10350 /* pat_match_auth() will need the user list */
10351 smp->ctx.a[0] = args->data.usr;
10352
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010353 smp->type = SMP_T_STR;
10354 smp->flags = SMP_F_CONST;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010010355 smp->data.str.str = l4->txn.auth.user;
10356 smp->data.str.len = strlen(l4->txn.auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020010357
10358 return 1;
10359}
10360
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010361/* Try to find the next occurrence of a cookie name in a cookie header value.
10362 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
10363 * the cookie value is returned into *value and *value_l, and the function
10364 * returns a pointer to the next pointer to search from if the value was found.
10365 * Otherwise if the cookie was not found, NULL is returned and neither value
10366 * nor value_l are touched. The input <hdr> string should first point to the
10367 * header's value, and the <hdr_end> pointer must point to the first character
10368 * not part of the value. <list> must be non-zero if value may represent a list
10369 * of values (cookie headers). This makes it faster to abort parsing when no
10370 * list is expected.
10371 */
10372static char *
10373extract_cookie_value(char *hdr, const char *hdr_end,
10374 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +020010375 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010376{
10377 char *equal, *att_end, *att_beg, *val_beg, *val_end;
10378 char *next;
10379
10380 /* we search at least a cookie name followed by an equal, and more
10381 * generally something like this :
10382 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
10383 */
10384 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
10385 /* Iterate through all cookies on this line */
10386
10387 while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg])
10388 att_beg++;
10389
10390 /* find att_end : this is the first character after the last non
10391 * space before the equal. It may be equal to hdr_end.
10392 */
10393 equal = att_end = att_beg;
10394
10395 while (equal < hdr_end) {
10396 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
10397 break;
10398 if (http_is_spht[(unsigned char)*equal++])
10399 continue;
10400 att_end = equal;
10401 }
10402
10403 /* here, <equal> points to '=', a delimitor or the end. <att_end>
10404 * is between <att_beg> and <equal>, both may be identical.
10405 */
10406
10407 /* look for end of cookie if there is an equal sign */
10408 if (equal < hdr_end && *equal == '=') {
10409 /* look for the beginning of the value */
10410 val_beg = equal + 1;
10411 while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg])
10412 val_beg++;
10413
10414 /* find the end of the value, respecting quotes */
10415 next = find_cookie_value_end(val_beg, hdr_end);
10416
10417 /* make val_end point to the first white space or delimitor after the value */
10418 val_end = next;
10419 while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)])
10420 val_end--;
10421 } else {
10422 val_beg = val_end = next = equal;
10423 }
10424
10425 /* We have nothing to do with attributes beginning with '$'. However,
10426 * they will automatically be removed if a header before them is removed,
10427 * since they're supposed to be linked together.
10428 */
10429 if (*att_beg == '$')
10430 continue;
10431
10432 /* Ignore cookies with no equal sign */
10433 if (equal == next)
10434 continue;
10435
10436 /* Now we have the cookie name between att_beg and att_end, and
10437 * its value between val_beg and val_end.
10438 */
10439
10440 if (att_end - att_beg == cookie_name_l &&
10441 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
10442 /* let's return this value and indicate where to go on from */
10443 *value = val_beg;
10444 *value_l = val_end - val_beg;
10445 return next + 1;
10446 }
10447
10448 /* Set-Cookie headers only have the name in the first attr=value part */
10449 if (!list)
10450 break;
10451 }
10452
10453 return NULL;
10454}
10455
William Lallemanda43ba4e2014-01-28 18:14:25 +010010456/* Fetch a captured HTTP request header. The index is the position of
10457 * the "capture" option in the configuration file
10458 */
10459static int
10460smp_fetch_capture_header_req(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10461 const struct arg *args, struct sample *smp, const char *kw)
10462{
10463 struct proxy *fe = l4->fe;
10464 struct http_txn *txn = l7;
10465 int idx;
10466
10467 if (!args || args->type != ARGT_UINT)
10468 return 0;
10469
10470 idx = args->data.uint;
10471
10472 if (idx > (fe->nb_req_cap - 1) || txn->req.cap == NULL || txn->req.cap[idx] == NULL)
10473 return 0;
10474
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010475 smp->type = SMP_T_STR;
10476 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010477 smp->data.str.str = txn->req.cap[idx];
10478 smp->data.str.len = strlen(txn->req.cap[idx]);
10479
10480 return 1;
10481}
10482
10483/* Fetch a captured HTTP response header. The index is the position of
10484 * the "capture" option in the configuration file
10485 */
10486static int
10487smp_fetch_capture_header_res(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10488 const struct arg *args, struct sample *smp, const char *kw)
10489{
10490 struct proxy *fe = l4->fe;
10491 struct http_txn *txn = l7;
10492 int idx;
10493
10494 if (!args || args->type != ARGT_UINT)
10495 return 0;
10496
10497 idx = args->data.uint;
10498
10499 if (idx > (fe->nb_rsp_cap - 1) || txn->rsp.cap == NULL || txn->rsp.cap[idx] == NULL)
10500 return 0;
10501
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010502 smp->type = SMP_T_STR;
10503 smp->flags |= SMP_F_CONST;
William Lallemanda43ba4e2014-01-28 18:14:25 +010010504 smp->data.str.str = txn->rsp.cap[idx];
10505 smp->data.str.len = strlen(txn->rsp.cap[idx]);
10506
10507 return 1;
10508}
10509
William Lallemand65ad6e12014-01-31 15:08:02 +010010510/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
10511static int
10512smp_fetch_capture_req_method(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10513 const struct arg *args, struct sample *smp, const char *kw)
10514{
10515 struct chunk *temp;
10516 struct http_txn *txn = l7;
William Lallemand96a77852014-02-05 00:30:02 +010010517 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010518
10519 if (!txn->uri)
10520 return 0;
10521
William Lallemand96a77852014-02-05 00:30:02 +010010522 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010010523
William Lallemand96a77852014-02-05 00:30:02 +010010524 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10525 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010526
William Lallemand96a77852014-02-05 00:30:02 +010010527 temp = get_trash_chunk();
10528 temp->str = txn->uri;
10529 temp->len = ptr - txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010010530 smp->data.str = *temp;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010531 smp->type = SMP_T_STR;
10532 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010533
10534 return 1;
10535
10536}
10537
10538/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
10539static int
10540smp_fetch_capture_req_uri(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10541 const struct arg *args, struct sample *smp, const char *kw)
10542{
10543 struct chunk *temp;
10544 struct http_txn *txn = l7;
10545 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010010546
10547 if (!txn->uri)
10548 return 0;
William Lallemand96a77852014-02-05 00:30:02 +010010549
William Lallemand65ad6e12014-01-31 15:08:02 +010010550 ptr = txn->uri;
10551
10552 while (*ptr != ' ' && *ptr != '\0') /* find first space */
10553 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +010010554
William Lallemand65ad6e12014-01-31 15:08:02 +010010555 if (!*ptr)
10556 return 0;
10557
10558 ptr++; /* skip the space */
10559
10560 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010010561 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010010562 if (!ptr)
10563 return 0;
10564 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
10565 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010010566
10567 smp->data.str = *temp;
William Lallemand96a77852014-02-05 00:30:02 +010010568 smp->data.str.len = ptr - temp->str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010569 smp->type = SMP_T_STR;
10570 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010010571
10572 return 1;
10573}
10574
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020010575/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
10576 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10577 */
10578static int
10579smp_fetch_capture_req_ver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10580 const struct arg *args, struct sample *smp, const char *kw)
10581{
10582 struct http_txn *txn = l7;
10583
10584 if (txn->req.msg_state < HTTP_MSG_HDR_FIRST)
10585 return 0;
10586
10587 if (txn->req.flags & HTTP_MSGF_VER_11)
10588 smp->data.str.str = "HTTP/1.1";
10589 else
10590 smp->data.str.str = "HTTP/1.0";
10591
10592 smp->data.str.len = 8;
10593 smp->type = SMP_T_STR;
10594 smp->flags = SMP_F_CONST;
10595 return 1;
10596
10597}
10598
10599/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
10600 * as a string (either "HTTP/1.0" or "HTTP/1.1").
10601 */
10602static int
10603smp_fetch_capture_res_ver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
10604 const struct arg *args, struct sample *smp, const char *kw)
10605{
10606 struct http_txn *txn = l7;
10607
10608 if (txn->rsp.msg_state < HTTP_MSG_HDR_FIRST)
10609 return 0;
10610
10611 if (txn->rsp.flags & HTTP_MSGF_VER_11)
10612 smp->data.str.str = "HTTP/1.1";
10613 else
10614 smp->data.str.str = "HTTP/1.0";
10615
10616 smp->data.str.len = 8;
10617 smp->type = SMP_T_STR;
10618 smp->flags = SMP_F_CONST;
10619 return 1;
10620
10621}
10622
William Lallemand65ad6e12014-01-31 15:08:02 +010010623
Willy Tarreaue333ec92012-04-16 16:26:40 +020010624/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020010625 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020010626 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020010627 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020010628 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020010629 * Accepts exactly 1 argument of type string. If the input options indicate
10630 * that no iterating is desired, then only last value is fetched if any.
William Lallemand07c8b242014-05-02 17:11:07 +020010631 * The returned sample is of type CSTR. Can be used to parse cookies in other
10632 * files.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010633 */
William Lallemand07c8b242014-05-02 17:11:07 +020010634int smp_fetch_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010635 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010636{
10637 struct http_txn *txn = l7;
10638 struct hdr_idx *idx = &txn->hdr_idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010639 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020010640 const struct http_msg *msg;
10641 const char *hdr_name;
10642 int hdr_name_len;
10643 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020010644 int occ = 0;
10645 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010646
Willy Tarreau24e32d82012-04-23 23:55:44 +020010647 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010648 return 0;
10649
Willy Tarreaua890d072013-04-02 12:01:06 +020010650 if (!ctx) {
10651 /* first call */
10652 ctx = &static_hdr_ctx;
10653 ctx->idx = 0;
10654 smp->ctx.a[2] = ctx;
10655 }
10656
Willy Tarreaue333ec92012-04-16 16:26:40 +020010657 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010658
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010659 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010660 msg = &txn->req;
10661 hdr_name = "Cookie";
10662 hdr_name_len = 6;
10663 } else {
10664 msg = &txn->rsp;
10665 hdr_name = "Set-Cookie";
10666 hdr_name_len = 10;
10667 }
10668
Willy Tarreau28376d62012-04-26 21:26:10 +020010669 if (!occ && !(opt & SMP_OPT_ITERATE))
10670 /* no explicit occurrence and single fetch => last cookie by default */
10671 occ = -1;
10672
10673 /* OK so basically here, either we want only one value and it's the
10674 * last one, or we want to iterate over all of them and we fetch the
10675 * next one.
10676 */
10677
Willy Tarreau9b28e032012-10-12 23:49:43 +020010678 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020010679 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010680 /* search for the header from the beginning, we must first initialize
10681 * the search parameters.
10682 */
Willy Tarreau37406352012-04-23 16:16:37 +020010683 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010684 ctx->idx = 0;
10685 }
10686
Willy Tarreau28376d62012-04-26 21:26:10 +020010687 smp->flags |= SMP_F_VOL_HDR;
10688
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010689 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020010690 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
10691 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010692 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
10693 goto out;
10694
Willy Tarreau24e32d82012-04-23 23:55:44 +020010695 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010696 continue;
10697
Willy Tarreau37406352012-04-23 16:16:37 +020010698 smp->ctx.a[0] = ctx->line + ctx->val;
10699 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010700 }
10701
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010702 smp->type = SMP_T_STR;
10703 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020010704 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020010705 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010706 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020010707 &smp->data.str.str,
10708 &smp->data.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020010709 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020010710 found = 1;
10711 if (occ >= 0) {
10712 /* one value was returned into smp->data.str.{str,len} */
10713 smp->flags |= SMP_F_NOT_LAST;
10714 return 1;
10715 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010716 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010717 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010718 }
Willy Tarreau28376d62012-04-26 21:26:10 +020010719 /* all cookie headers and values were scanned. If we're looking for the
10720 * last occurrence, we may return it now.
10721 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010722 out:
Willy Tarreau37406352012-04-23 16:16:37 +020010723 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020010724 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010725}
10726
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010727/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020010728 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010010729 * multiple cookies may be parsed on the same line. The returned sample is of
10730 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010731 */
10732static int
Willy Tarreau409bcde2013-01-08 00:31:00 +010010733smp_fetch_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010734 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010735{
10736 struct http_txn *txn = l7;
10737 struct hdr_idx *idx = &txn->hdr_idx;
10738 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010739 const struct http_msg *msg;
10740 const char *hdr_name;
10741 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010742 int cnt;
10743 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010744 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010745
Willy Tarreau24e32d82012-04-23 23:55:44 +020010746 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020010747 return 0;
10748
Willy Tarreaue333ec92012-04-16 16:26:40 +020010749 CHECK_HTTP_MESSAGE_FIRST();
10750
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010751 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020010752 msg = &txn->req;
10753 hdr_name = "Cookie";
10754 hdr_name_len = 6;
10755 } else {
10756 msg = &txn->rsp;
10757 hdr_name = "Set-Cookie";
10758 hdr_name_len = 10;
10759 }
10760
Willy Tarreau9b28e032012-10-12 23:49:43 +020010761 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020010762 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010763 ctx.idx = 0;
10764 cnt = 0;
10765
10766 while (1) {
10767 /* Note: val_beg == NULL every time we need to fetch a new header */
10768 if (!val_beg) {
10769 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
10770 break;
10771
Willy Tarreau24e32d82012-04-23 23:55:44 +020010772 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010773 continue;
10774
10775 val_beg = ctx.line + ctx.val;
10776 val_end = val_beg + ctx.vlen;
10777 }
10778
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010779 smp->type = SMP_T_STR;
10780 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010781 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020010782 args->data.str.str, args->data.str.len,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010783 (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Willy Tarreauf853c462012-04-23 18:53:56 +020010784 &smp->data.str.str,
10785 &smp->data.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010786 cnt++;
10787 }
10788 }
10789
Willy Tarreaub169eba2013-12-16 15:14:43 +010010790 smp->type = SMP_T_UINT;
Willy Tarreauf853c462012-04-23 18:53:56 +020010791 smp->data.uint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010792 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020010793 return 1;
10794}
10795
Willy Tarreau51539362012-05-08 12:46:28 +020010796/* Fetch an cookie's integer value. The integer value is returned. It
10797 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
10798 */
10799static int
10800smp_fetch_cookie_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010801 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau51539362012-05-08 12:46:28 +020010802{
Willy Tarreauef38c392013-07-22 16:29:32 +020010803 int ret = smp_fetch_cookie(px, l4, l7, opt, args, smp, kw);
Willy Tarreau51539362012-05-08 12:46:28 +020010804
10805 if (ret > 0) {
10806 smp->type = SMP_T_UINT;
10807 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10808 }
10809
10810 return ret;
10811}
10812
Willy Tarreau8797c062007-05-07 00:55:35 +020010813/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020010814/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020010815/************************************************************************/
10816
David Cournapeau16023ee2010-12-23 20:55:41 +090010817/*
10818 * Given a path string and its length, find the position of beginning of the
10819 * query string. Returns NULL if no query string is found in the path.
10820 *
10821 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
10822 *
10823 * find_query_string(path, n) points to "yo=mama;ye=daddy" string.
10824 */
bedis4c75cca2012-10-05 08:38:24 +020010825static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010826{
10827 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020010828
bedis4c75cca2012-10-05 08:38:24 +020010829 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090010830 return p ? p + 1 : NULL;
10831}
10832
bedis4c75cca2012-10-05 08:38:24 +020010833static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010834{
bedis4c75cca2012-10-05 08:38:24 +020010835 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090010836}
10837
10838/*
10839 * Given a url parameter, find the starting position of the first occurence,
10840 * or NULL if the parameter is not found.
10841 *
10842 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
10843 * the function will return query_string+8.
10844 */
10845static char*
10846find_url_param_pos(char* query_string, size_t query_string_l,
bedis4c75cca2012-10-05 08:38:24 +020010847 char* url_param_name, size_t url_param_name_l,
10848 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010849{
10850 char *pos, *last;
10851
10852 pos = query_string;
10853 last = query_string + query_string_l - url_param_name_l - 1;
10854
10855 while (pos <= last) {
10856 if (pos[url_param_name_l] == '=') {
10857 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
10858 return pos;
10859 pos += url_param_name_l + 1;
10860 }
bedis4c75cca2012-10-05 08:38:24 +020010861 while (pos <= last && !is_param_delimiter(*pos, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010862 pos++;
10863 pos++;
10864 }
10865 return NULL;
10866}
10867
10868/*
10869 * Given a url parameter name, returns its value and size into *value and
10870 * *value_l respectively, and returns non-zero. If the parameter is not found,
10871 * zero is returned and value/value_l are not touched.
10872 */
10873static int
10874find_url_param_value(char* path, size_t path_l,
10875 char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020010876 char** value, int* value_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090010877{
10878 char *query_string, *qs_end;
10879 char *arg_start;
10880 char *value_start, *value_end;
10881
bedis4c75cca2012-10-05 08:38:24 +020010882 query_string = find_param_list(path, path_l, delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090010883 if (!query_string)
10884 return 0;
10885
10886 qs_end = path + path_l;
10887 arg_start = find_url_param_pos(query_string, qs_end - query_string,
bedis4c75cca2012-10-05 08:38:24 +020010888 url_param_name, url_param_name_l,
10889 delim);
David Cournapeau16023ee2010-12-23 20:55:41 +090010890 if (!arg_start)
10891 return 0;
10892
10893 value_start = arg_start + url_param_name_l + 1;
10894 value_end = value_start;
10895
bedis4c75cca2012-10-05 08:38:24 +020010896 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010897 value_end++;
10898
10899 *value = value_start;
10900 *value_l = value_end - value_start;
Willy Tarreau00134332011-01-04 14:57:34 +010010901 return value_end != value_start;
David Cournapeau16023ee2010-12-23 20:55:41 +090010902}
10903
10904static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010905smp_fetch_url_param(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010906 const struct arg *args, struct sample *smp, const char *kw)
David Cournapeau16023ee2010-12-23 20:55:41 +090010907{
bedis4c75cca2012-10-05 08:38:24 +020010908 char delim = '?';
David Cournapeau16023ee2010-12-23 20:55:41 +090010909 struct http_txn *txn = l7;
10910 struct http_msg *msg = &txn->req;
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010911
bedis4c75cca2012-10-05 08:38:24 +020010912 if (!args || args[0].type != ARGT_STR ||
10913 (args[1].type && args[1].type != ARGT_STR))
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010914 return 0;
10915
10916 CHECK_HTTP_MESSAGE_FIRST();
David Cournapeau16023ee2010-12-23 20:55:41 +090010917
bedis4c75cca2012-10-05 08:38:24 +020010918 if (args[1].type)
10919 delim = *args[1].data.str.str;
10920
Willy Tarreau9b28e032012-10-12 23:49:43 +020010921 if (!find_url_param_value(msg->chn->buf->p + msg->sl.rq.u, msg->sl.rq.u_l,
bedis4c75cca2012-10-05 08:38:24 +020010922 args->data.str.str, args->data.str.len,
10923 &smp->data.str.str, &smp->data.str.len,
10924 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090010925 return 0;
10926
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010927 smp->type = SMP_T_STR;
10928 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
David Cournapeau16023ee2010-12-23 20:55:41 +090010929 return 1;
10930}
10931
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010932/* Return the signed integer value for the specified url parameter (see url_param
10933 * above).
10934 */
10935static int
10936smp_fetch_url_param_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +020010937 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010938{
Willy Tarreauef38c392013-07-22 16:29:32 +020010939 int ret = smp_fetch_url_param(px, l4, l7, opt, args, smp, kw);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010940
10941 if (ret > 0) {
10942 smp->type = SMP_T_UINT;
10943 smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len);
10944 }
10945
10946 return ret;
10947}
10948
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010949/* This produces a 32-bit hash of the concatenation of the first occurrence of
10950 * the Host header followed by the path component if it begins with a slash ('/').
10951 * This means that '*' will not be added, resulting in exactly the first Host
10952 * entry. If no Host header is found, then the path is used. The resulting value
10953 * is hashed using the url hash followed by a full avalanche hash and provides a
10954 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
10955 * high-traffic sites without having to store whole paths.
10956 * this differs from the base32 functions in that it includes the url parameters
10957 * as well as the path
10958 */
10959static int
10960smp_fetch_url32(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010010961 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010962{
10963 struct http_txn *txn = l7;
10964 struct hdr_ctx ctx;
10965 unsigned int hash = 0;
10966 char *ptr, *beg, *end;
10967 int len;
10968
10969 CHECK_HTTP_MESSAGE_FIRST();
10970
10971 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010972 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010973 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10974 ptr = ctx.line + ctx.val;
10975 len = ctx.vlen;
10976 while (len--)
10977 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10978 }
10979
10980 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010981 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010982 beg = http_get_path(txn);
10983 if (!beg)
10984 beg = end;
10985
10986 for (ptr = beg; ptr < end ; ptr++);
10987
10988 if (beg < ptr && *beg == '/') {
10989 while (beg < ptr)
10990 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10991 }
10992 hash = full_hash(hash);
10993
10994 smp->type = SMP_T_UINT;
10995 smp->data.uint = hash;
10996 smp->flags = SMP_F_VOL_1ST;
10997 return 1;
10998}
10999
11000/* This concatenates the source address with the 32-bit hash of the Host and
11001 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
11002 * per-url counters. The result is a binary block from 8 to 20 bytes depending
11003 * on the source address length. The URL hash is stored before the address so
11004 * that in environments where IPv6 is insignificant, truncating the output to
11005 * 8 bytes would still work.
11006 */
11007static int
11008smp_fetch_url32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreaue155ec22013-11-18 18:33:22 +010011009 const struct arg *args, struct sample *smp, const char *kw)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011010{
11011 struct chunk *temp;
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011012 struct connection *cli_conn = objt_conn(l4->si[0].end);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011013
Willy Tarreaue155ec22013-11-18 18:33:22 +010011014 if (!smp_fetch_url32(px, l4, l7, opt, args, smp, kw))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011015 return 0;
11016
11017 temp = get_trash_chunk();
11018 memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint));
11019 temp->len += sizeof(smp->data.uint);
11020
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011021 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011022 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011023 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011024 temp->len += 4;
11025 break;
11026 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020011027 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011028 temp->len += 16;
11029 break;
11030 default:
11031 return 0;
11032 }
11033
11034 smp->data.str = *temp;
11035 smp->type = SMP_T_BIN;
11036 return 1;
11037}
11038
Willy Tarreau185b5c42012-04-26 15:11:51 +020011039/* This function is used to validate the arguments passed to any "hdr" fetch
11040 * keyword. These keywords support an optional positive or negative occurrence
11041 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
11042 * is assumed that the types are already the correct ones. Returns 0 on error,
11043 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
11044 * error message in case of error, that the caller is responsible for freeing.
11045 * The initial location must either be freeable or NULL.
11046 */
11047static int val_hdr(struct arg *arg, char **err_msg)
11048{
11049 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020011050 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020011051 return 0;
11052 }
11053 return 1;
11054}
11055
Willy Tarreau276fae92013-07-25 14:36:01 +020011056/* takes an UINT value on input supposed to represent the time since EPOCH,
11057 * adds an optional offset found in args[0] and emits a string representing
11058 * the date in RFC-1123/5322 format.
11059 */
11060static int sample_conv_http_date(const struct arg *args, struct sample *smp)
11061{
11062 const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
11063 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
11064 struct chunk *temp;
11065 struct tm *tm;
11066 time_t curr_date = smp->data.uint;
11067
11068 /* add offset */
11069 if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT))
11070 curr_date += args[0].data.sint;
11071
11072 tm = gmtime(&curr_date);
11073
11074 temp = get_trash_chunk();
11075 temp->len = snprintf(temp->str, temp->size - temp->len,
11076 "%s, %02d %s %04d %02d:%02d:%02d GMT",
11077 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
11078 tm->tm_hour, tm->tm_min, tm->tm_sec);
11079
11080 smp->data.str = *temp;
11081 smp->type = SMP_T_STR;
11082 return 1;
11083}
11084
Thierry FOURNIERad903512014-04-11 17:51:01 +020011085/* Match language range with language tag. RFC2616 14.4:
11086 *
11087 * A language-range matches a language-tag if it exactly equals
11088 * the tag, or if it exactly equals a prefix of the tag such
11089 * that the first tag character following the prefix is "-".
11090 *
11091 * Return 1 if the strings match, else return 0.
11092 */
11093static inline int language_range_match(const char *range, int range_len,
11094 const char *tag, int tag_len)
11095{
11096 const char *end = range + range_len;
11097 const char *tend = tag + tag_len;
11098 while (range < end) {
11099 if (*range == '-' && tag == tend)
11100 return 1;
11101 if (*range != *tag || tag == tend)
11102 return 0;
11103 range++;
11104 tag++;
11105 }
11106 /* Return true only if the last char of the tag is matched. */
11107 return tag == tend;
11108}
11109
11110/* Arguments: The list of expected value, the number of parts returned and the separator */
11111static int sample_conv_q_prefered(const struct arg *args, struct sample *smp)
11112{
11113 const char *al = smp->data.str.str;
11114 const char *end = al + smp->data.str.len;
11115 const char *token;
11116 int toklen;
11117 int qvalue;
11118 const char *str;
11119 const char *w;
11120 int best_q = 0;
11121
11122 /* Set the constant to the sample, because the output of the
11123 * function will be peek in the constant configuration string.
11124 */
11125 smp->flags |= SMP_F_CONST;
11126 smp->data.str.size = 0;
11127 smp->data.str.str = "";
11128 smp->data.str.len = 0;
11129
11130 /* Parse the accept language */
11131 while (1) {
11132
11133 /* Jump spaces, quit if the end is detected. */
11134 while (al < end && isspace(*al))
11135 al++;
11136 if (al >= end)
11137 break;
11138
11139 /* Start of the fisrt word. */
11140 token = al;
11141
11142 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
11143 while (al < end && *al != ';' && *al != ',' && !isspace(*al))
11144 al++;
11145 if (al == token)
11146 goto expect_comma;
11147
11148 /* Length of the token. */
11149 toklen = al - token;
11150 qvalue = 1000;
11151
11152 /* Check if the token exists in the list. If the token not exists,
11153 * jump to the next token.
11154 */
11155 str = args[0].data.str.str;
11156 w = str;
11157 while (1) {
11158 if (*str == ';' || *str == '\0') {
11159 if (language_range_match(token, toklen, w, str-w))
11160 goto look_for_q;
11161 if (*str == '\0')
11162 goto expect_comma;
11163 w = str + 1;
11164 }
11165 str++;
11166 }
11167 goto expect_comma;
11168
11169look_for_q:
11170
11171 /* Jump spaces, quit if the end is detected. */
11172 while (al < end && isspace(*al))
11173 al++;
11174 if (al >= end)
11175 goto process_value;
11176
11177 /* If ',' is found, process the result */
11178 if (*al == ',')
11179 goto process_value;
11180
11181 /* If the character is different from ';', look
11182 * for the end of the header part in best effort.
11183 */
11184 if (*al != ';')
11185 goto expect_comma;
11186
11187 /* Assumes that the char is ';', now expect "q=". */
11188 al++;
11189
11190 /* Jump spaces, process value if the end is detected. */
11191 while (al < end && isspace(*al))
11192 al++;
11193 if (al >= end)
11194 goto process_value;
11195
11196 /* Expect 'q'. If no 'q', continue in best effort */
11197 if (*al != 'q')
11198 goto process_value;
11199 al++;
11200
11201 /* Jump spaces, process value if the end is detected. */
11202 while (al < end && isspace(*al))
11203 al++;
11204 if (al >= end)
11205 goto process_value;
11206
11207 /* Expect '='. If no '=', continue in best effort */
11208 if (*al != '=')
11209 goto process_value;
11210 al++;
11211
11212 /* Jump spaces, process value if the end is detected. */
11213 while (al < end && isspace(*al))
11214 al++;
11215 if (al >= end)
11216 goto process_value;
11217
11218 /* Parse the q value. */
11219 qvalue = parse_qvalue(al, &al);
11220
11221process_value:
11222
11223 /* If the new q value is the best q value, then store the associated
11224 * language in the response. If qvalue is the biggest value (1000),
11225 * break the process.
11226 */
11227 if (qvalue > best_q) {
11228 smp->data.str.str = (char *)w;
11229 smp->data.str.len = str - w;
11230 if (qvalue >= 1000)
11231 break;
11232 best_q = qvalue;
11233 }
11234
11235expect_comma:
11236
11237 /* Expect comma or end. If the end is detected, quit the loop. */
11238 while (al < end && *al != ',')
11239 al++;
11240 if (al >= end)
11241 break;
11242
11243 /* Comma is found, jump it and restart the analyzer. */
11244 al++;
11245 }
11246
11247 /* Set default value if required. */
11248 if (smp->data.str.len == 0 && args[1].type == ARGT_STR) {
11249 smp->data.str.str = args[1].data.str.str;
11250 smp->data.str.len = args[1].data.str.len;
11251 }
11252
11253 /* Return true only if a matching language was found. */
11254 return smp->data.str.len != 0;
11255}
11256
William Lallemand73025dd2014-04-24 14:38:37 +020011257/*
11258 * Return the struct http_req_action_kw associated to a keyword.
11259 */
11260struct http_req_action_kw *action_http_req_custom(const char *kw)
11261{
11262 if (!LIST_ISEMPTY(&http_req_keywords.list)) {
11263 struct http_req_action_kw_list *kw_list;
11264 int i;
11265
11266 list_for_each_entry(kw_list, &http_req_keywords.list, list) {
11267 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
11268 if (!strcmp(kw, kw_list->kw[i].kw))
11269 return &kw_list->kw[i];
11270 }
11271 }
11272 }
11273 return NULL;
11274}
11275
11276/*
11277 * Return the struct http_res_action_kw associated to a keyword.
11278 */
11279struct http_res_action_kw *action_http_res_custom(const char *kw)
11280{
11281 if (!LIST_ISEMPTY(&http_res_keywords.list)) {
11282 struct http_res_action_kw_list *kw_list;
11283 int i;
11284
11285 list_for_each_entry(kw_list, &http_res_keywords.list, list) {
11286 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
11287 if (!strcmp(kw, kw_list->kw[i].kw))
11288 return &kw_list->kw[i];
11289 }
11290 }
11291 }
11292 return NULL;
11293}
11294
Willy Tarreau4a568972010-05-12 08:08:50 +020011295/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011296/* All supported ACL keywords must be declared here. */
11297/************************************************************************/
11298
11299/* Note: must not be declared <const> as its list will be overwritten.
11300 * Please take care of keeping this list alphabetically sorted.
11301 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020011302static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011303 { "base", "base", PAT_MATCH_STR },
11304 { "base_beg", "base", PAT_MATCH_BEG },
11305 { "base_dir", "base", PAT_MATCH_DIR },
11306 { "base_dom", "base", PAT_MATCH_DOM },
11307 { "base_end", "base", PAT_MATCH_END },
11308 { "base_len", "base", PAT_MATCH_LEN },
11309 { "base_reg", "base", PAT_MATCH_REG },
11310 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020011311
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011312 { "cook", "req.cook", PAT_MATCH_STR },
11313 { "cook_beg", "req.cook", PAT_MATCH_BEG },
11314 { "cook_dir", "req.cook", PAT_MATCH_DIR },
11315 { "cook_dom", "req.cook", PAT_MATCH_DOM },
11316 { "cook_end", "req.cook", PAT_MATCH_END },
11317 { "cook_len", "req.cook", PAT_MATCH_LEN },
11318 { "cook_reg", "req.cook", PAT_MATCH_REG },
11319 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011320
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011321 { "hdr", "req.hdr", PAT_MATCH_STR },
11322 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
11323 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
11324 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
11325 { "hdr_end", "req.hdr", PAT_MATCH_END },
11326 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
11327 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
11328 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011329
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011330 /* these two declarations uses strings with list storage (in place
11331 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
11332 * and delete functions are relative to the list management. The parse
11333 * and match method are related to the corresponding fetch methods. This
11334 * is very particular ACL declaration mode.
11335 */
11336 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
11337 { "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_meth },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011338
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011339 { "path", "path", PAT_MATCH_STR },
11340 { "path_beg", "path", PAT_MATCH_BEG },
11341 { "path_dir", "path", PAT_MATCH_DIR },
11342 { "path_dom", "path", PAT_MATCH_DOM },
11343 { "path_end", "path", PAT_MATCH_END },
11344 { "path_len", "path", PAT_MATCH_LEN },
11345 { "path_reg", "path", PAT_MATCH_REG },
11346 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011347
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011348 { "req_ver", "req.ver", PAT_MATCH_STR },
11349 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011350
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011351 { "scook", "res.cook", PAT_MATCH_STR },
11352 { "scook_beg", "res.cook", PAT_MATCH_BEG },
11353 { "scook_dir", "res.cook", PAT_MATCH_DIR },
11354 { "scook_dom", "res.cook", PAT_MATCH_DOM },
11355 { "scook_end", "res.cook", PAT_MATCH_END },
11356 { "scook_len", "res.cook", PAT_MATCH_LEN },
11357 { "scook_reg", "res.cook", PAT_MATCH_REG },
11358 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011359
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011360 { "shdr", "res.hdr", PAT_MATCH_STR },
11361 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
11362 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
11363 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
11364 { "shdr_end", "res.hdr", PAT_MATCH_END },
11365 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
11366 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
11367 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011368
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011369 { "url", "url", PAT_MATCH_STR },
11370 { "url_beg", "url", PAT_MATCH_BEG },
11371 { "url_dir", "url", PAT_MATCH_DIR },
11372 { "url_dom", "url", PAT_MATCH_DOM },
11373 { "url_end", "url", PAT_MATCH_END },
11374 { "url_len", "url", PAT_MATCH_LEN },
11375 { "url_reg", "url", PAT_MATCH_REG },
11376 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011377
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010011378 { "urlp", "urlp", PAT_MATCH_STR },
11379 { "urlp_beg", "urlp", PAT_MATCH_BEG },
11380 { "urlp_dir", "urlp", PAT_MATCH_DIR },
11381 { "urlp_dom", "urlp", PAT_MATCH_DOM },
11382 { "urlp_end", "urlp", PAT_MATCH_END },
11383 { "urlp_len", "urlp", PAT_MATCH_LEN },
11384 { "urlp_reg", "urlp", PAT_MATCH_REG },
11385 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011386
Willy Tarreau8ed669b2013-01-11 15:49:37 +010011387 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020011388}};
11389
11390/************************************************************************/
11391/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020011392/************************************************************************/
11393/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020011394static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011395 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011396 { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
11397 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
11398
William Lallemanda43ba4e2014-01-28 18:14:25 +010011399 /* capture are allocated and are permanent in the session */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011400 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011401
11402 /* retrieve these captures from the HTTP logs */
11403 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11404 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11405 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
11406
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011407 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011408 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010011409
Willy Tarreau409bcde2013-01-08 00:31:00 +010011410 /* cookie is valid in both directions (eg: for "stick ...") but cook*
11411 * are only here to match the ACL's name, are request-only and are used
11412 * for ACL compatibility only.
11413 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011414 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
11415 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011416 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11417 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11418
11419 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
11420 * only here to match the ACL's name, are request-only and are used for
11421 * ACL compatibility only.
11422 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011423 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011424 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11425 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
11426 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
11427
Willy Tarreau0a0daec2013-04-02 22:44:58 +020011428 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011429 { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011430 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010011431 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011432 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011433
11434 /* HTTP protocol on the request path */
11435 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011436 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011437
11438 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011439 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
11440 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011441
11442 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011443 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
11444 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011445
Willy Tarreau18ed2562013-01-14 15:56:36 +010011446 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011447 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011448 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11449 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11450
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011451 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020011452 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011453 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011454 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11455 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
11456 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV },
11457
11458 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011459 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011460 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11461 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11462
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011463 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau04ff9f12013-06-10 18:39:42 +020011464 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011465 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010011466 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11467 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
11468 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
11469
Willy Tarreau409bcde2013-01-08 00:31:00 +010011470 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011471 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011472 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11473 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011474 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010011475
11476 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011477 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011478 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV },
11479 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
11480 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV },
11481
11482 { "status", smp_fetch_stcode, 0, NULL, SMP_T_UINT, SMP_USE_HRSHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011483 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011484 { "url32", smp_fetch_url32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
11485 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011486 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
11487 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011488 { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
11489 { "urlp" , smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010011490 { "urlp_val", smp_fetch_url_param_val, ARG2(1,STR,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV },
11491 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020011492}};
11493
Willy Tarreau8797c062007-05-07 00:55:35 +020011494
Willy Tarreau276fae92013-07-25 14:36:01 +020011495/* Note: must not be declared <const> as its list will be overwritten */
11496static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIERad903512014-04-11 17:51:01 +020011497 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_T_STR},
11498 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020011499 { NULL, NULL, 0, 0, 0 },
11500}};
11501
Willy Tarreau8797c062007-05-07 00:55:35 +020011502__attribute__((constructor))
11503static void __http_protocol_init(void)
11504{
11505 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020011506 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020011507 sample_register_convs(&sample_conv_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +020011508}
11509
11510
Willy Tarreau58f10d72006-12-04 02:26:12 +010011511/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020011512 * Local variables:
11513 * c-indent-level: 8
11514 * c-basic-offset: 8
11515 * End:
11516 */