blob: 3b6f0afa4d95bcbc044f82e3d480db907e179c3f [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
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010028#include <common/base64.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/compat.h>
31#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010032#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/memory.h>
34#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020036#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020037#include <common/time.h>
38#include <common/uri_auth.h>
39#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41#include <types/capture.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010042#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <types/global.h>
William Lallemand9ed62032016-11-21 17:49:11 +010045#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
Willy Tarreau8797c062007-05-07 00:55:35 +020047#include <proto/acl.h>
Thierry FOURNIER322a1242015-08-19 09:07:47 +020048#include <proto/action.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020049#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010050#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020052#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010053#include <proto/checks.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010054#include <proto/cli.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020055#include <proto/compression.h>
William Lallemand9ed62032016-11-21 17:49:11 +010056#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020057#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020058#include <proto/filters.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020059#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020060#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010061#include <proto/hdr_idx.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010062#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020063#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020064#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010065#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020067#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010068#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020069#include <proto/stream.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010070#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020071#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020072#include <proto/pattern.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020073#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074
Willy Tarreau522d6c02009-12-06 18:49:18 +010075const char HTTP_100[] =
76 "HTTP/1.1 100 Continue\r\n\r\n";
77
78const struct chunk http_100_chunk = {
79 .str = (char *)&HTTP_100,
80 .len = sizeof(HTTP_100)-1
81};
82
Willy Tarreaua9679ac2010-01-03 17:32:57 +010083/* Warning: no "connection" header is provided with the 3xx messages below */
Willy Tarreaub463dfb2008-06-07 23:08:56 +020084const char *HTTP_301 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010085 "HTTP/1.1 301 Moved Permanently\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010086 "Content-length: 0\r\n"
Willy Tarreaub463dfb2008-06-07 23:08:56 +020087 "Location: "; /* not terminated since it will be concatenated with the URL */
88
Willy Tarreau0f772532006-12-23 20:51:41 +010089const char *HTTP_302 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010090 "HTTP/1.1 302 Found\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010091 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010092 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010093 "Location: "; /* not terminated since it will be concatenated with the URL */
94
95/* same as 302 except that the browser MUST retry with the GET method */
96const char *HTTP_303 =
Willy Tarreaubc5aa192010-01-03 15:09:36 +010097 "HTTP/1.1 303 See Other\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +010098 "Cache-Control: no-cache\r\n"
Willy Tarreaubc5aa192010-01-03 15:09:36 +010099 "Content-length: 0\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100100 "Location: "; /* not terminated since it will be concatenated with the URL */
101
Yves Lafon3e8d1ae2013-03-11 11:06:05 -0400102
103/* same as 302 except that the browser MUST retry with the same method */
104const char *HTTP_307 =
105 "HTTP/1.1 307 Temporary Redirect\r\n"
106 "Cache-Control: no-cache\r\n"
107 "Content-length: 0\r\n"
108 "Location: "; /* not terminated since it will be concatenated with the URL */
109
110/* same as 301 except that the browser MUST retry with the same method */
111const char *HTTP_308 =
112 "HTTP/1.1 308 Permanent Redirect\r\n"
113 "Content-length: 0\r\n"
114 "Location: "; /* not terminated since it will be concatenated with the URL */
115
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116/* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */
117const char *HTTP_401_fmt =
118 "HTTP/1.0 401 Unauthorized\r\n"
119 "Cache-Control: no-cache\r\n"
120 "Connection: close\r\n"
Willy Tarreau791d66d2006-07-08 16:53:38 +0200121 "Content-Type: text/html\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122 "WWW-Authenticate: Basic realm=\"%s\"\r\n"
123 "\r\n"
124 "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
125
Willy Tarreau844a7e72010-01-31 21:46:18 +0100126const char *HTTP_407_fmt =
127 "HTTP/1.0 407 Unauthorized\r\n"
128 "Cache-Control: no-cache\r\n"
129 "Connection: close\r\n"
130 "Content-Type: text/html\r\n"
131 "Proxy-Authenticate: Basic realm=\"%s\"\r\n"
132 "\r\n"
Godbach1f1fae62014-12-17 16:32:05 +0800133 "<html><body><h1>407 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n";
Willy Tarreau844a7e72010-01-31 21:46:18 +0100134
Willy Tarreau0f772532006-12-23 20:51:41 +0100135
136const int http_err_codes[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200137 [HTTP_ERR_200] = 200, /* used by "monitor-uri" */
Willy Tarreau0f772532006-12-23 20:51:41 +0100138 [HTTP_ERR_400] = 400,
139 [HTTP_ERR_403] = 403,
CJ Ess108b1dd2015-04-07 12:03:37 -0400140 [HTTP_ERR_405] = 405,
Willy Tarreau0f772532006-12-23 20:51:41 +0100141 [HTTP_ERR_408] = 408,
CJ Ess108b1dd2015-04-07 12:03:37 -0400142 [HTTP_ERR_429] = 429,
Willy Tarreau0f772532006-12-23 20:51:41 +0100143 [HTTP_ERR_500] = 500,
144 [HTTP_ERR_502] = 502,
145 [HTTP_ERR_503] = 503,
146 [HTTP_ERR_504] = 504,
147};
148
Willy Tarreau80587432006-12-24 17:47:20 +0100149static const char *http_err_msgs[HTTP_ERR_SIZE] = {
Willy Tarreauae94d4d2011-05-11 16:28:49 +0200150 [HTTP_ERR_200] =
151 "HTTP/1.0 200 OK\r\n"
152 "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>200 OK</h1>\nService ready.\n</body></html>\n",
157
Willy Tarreau0f772532006-12-23 20:51:41 +0100158 [HTTP_ERR_400] =
Willy Tarreau80587432006-12-24 17:47:20 +0100159 "HTTP/1.0 400 Bad request\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100160 "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>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n",
165
166 [HTTP_ERR_403] =
167 "HTTP/1.0 403 Forbidden\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>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n",
173
CJ Ess108b1dd2015-04-07 12:03:37 -0400174 [HTTP_ERR_405] =
175 "HTTP/1.0 405 Method Not Allowed\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>405 Method Not Allowed</h1>\nA request was made of a resource using a request method not supported by that resource\n</body></html>\n",
181
Willy Tarreau0f772532006-12-23 20:51:41 +0100182 [HTTP_ERR_408] =
183 "HTTP/1.0 408 Request Time-out\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>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n",
189
CJ Ess108b1dd2015-04-07 12:03:37 -0400190 [HTTP_ERR_429] =
191 "HTTP/1.0 429 Too Many Requests\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>429 Too Many Requests</h1>\nYou have sent too many requests in a given amount of time.\n</body></html>\n",
197
Willy Tarreau0f772532006-12-23 20:51:41 +0100198 [HTTP_ERR_500] =
Jarno Huuskonen16ad94a2017-01-09 14:17:10 +0200199 "HTTP/1.0 500 Internal Server Error\r\n"
Willy Tarreau0f772532006-12-23 20:51:41 +0100200 "Cache-Control: no-cache\r\n"
201 "Connection: close\r\n"
202 "Content-Type: text/html\r\n"
203 "\r\n"
Jarno Huuskonen16ad94a2017-01-09 14:17:10 +0200204 "<html><body><h1>500 Internal Server Error</h1>\nAn internal server error occured.\n</body></html>\n",
Willy Tarreau0f772532006-12-23 20:51:41 +0100205
206 [HTTP_ERR_502] =
207 "HTTP/1.0 502 Bad Gateway\r\n"
208 "Cache-Control: no-cache\r\n"
209 "Connection: close\r\n"
210 "Content-Type: text/html\r\n"
211 "\r\n"
212 "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n",
213
214 [HTTP_ERR_503] =
215 "HTTP/1.0 503 Service Unavailable\r\n"
216 "Cache-Control: no-cache\r\n"
217 "Connection: close\r\n"
218 "Content-Type: text/html\r\n"
219 "\r\n"
220 "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n",
221
222 [HTTP_ERR_504] =
223 "HTTP/1.0 504 Gateway Time-out\r\n"
224 "Cache-Control: no-cache\r\n"
225 "Connection: close\r\n"
226 "Content-Type: text/html\r\n"
227 "\r\n"
228 "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n",
229
230};
231
Cyril Bonté19979e12012-04-04 12:57:21 +0200232/* status codes available for the stats admin page (strictly 4 chars length) */
233const char *stat_status_codes[STAT_STATUS_SIZE] = {
234 [STAT_STATUS_DENY] = "DENY",
235 [STAT_STATUS_DONE] = "DONE",
236 [STAT_STATUS_ERRP] = "ERRP",
237 [STAT_STATUS_EXCD] = "EXCD",
238 [STAT_STATUS_NONE] = "NONE",
239 [STAT_STATUS_PART] = "PART",
240 [STAT_STATUS_UNKN] = "UNKN",
241};
242
243
William Lallemand73025dd2014-04-24 14:38:37 +0200244/* List head of all known action keywords for "http-request" */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200245struct action_kw_list http_req_keywords = {
William Lallemand73025dd2014-04-24 14:38:37 +0200246 .list = LIST_HEAD_INIT(http_req_keywords.list)
247};
248
249/* List head of all known action keywords for "http-response" */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200250struct action_kw_list http_res_keywords = {
William Lallemand73025dd2014-04-24 14:38:37 +0200251 .list = LIST_HEAD_INIT(http_res_keywords.list)
252};
253
Willy Tarreau80587432006-12-24 17:47:20 +0100254/* We must put the messages here since GCC cannot initialize consts depending
255 * on strlen().
256 */
257struct chunk http_err_chunks[HTTP_ERR_SIZE];
258
Willy Tarreaua890d072013-04-02 12:01:06 +0200259/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
260static struct hdr_ctx static_hdr_ctx;
261
Willy Tarreau42250582007-04-01 01:30:43 +0200262#define FD_SETS_ARE_BITFIELDS
263#ifdef FD_SETS_ARE_BITFIELDS
264/*
265 * This map is used with all the FD_* macros to check whether a particular bit
266 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
267 * which should be encoded. When FD_ISSET() returns non-zero, it means that the
268 * byte should be encoded. Be careful to always pass bytes from 0 to 255
269 * exclusively to the macros.
270 */
271fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
272fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100273fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
Willy Tarreau42250582007-04-01 01:30:43 +0200274
275#else
276#error "Check if your OS uses bitfields for fd_sets"
277#endif
278
Willy Tarreau87b09662015-04-03 00:22:06 +0200279static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
Willy Tarreau0b748332014-04-29 00:13:29 +0200280
David Carlier7365f7d2016-04-04 11:54:42 +0100281static inline int http_msg_forward_body(struct stream *s, struct http_msg *msg);
282static inline int http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +0100283
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +0200284/* This function returns a reason associated with the HTTP status.
285 * This function never fails, a message is always returned.
286 */
287const char *get_reason(unsigned int status)
288{
289 switch (status) {
290 case 100: return "Continue";
291 case 101: return "Switching Protocols";
292 case 102: return "Processing";
293 case 200: return "OK";
294 case 201: return "Created";
295 case 202: return "Accepted";
296 case 203: return "Non-Authoritative Information";
297 case 204: return "No Content";
298 case 205: return "Reset Content";
299 case 206: return "Partial Content";
300 case 207: return "Multi-Status";
301 case 210: return "Content Different";
302 case 226: return "IM Used";
303 case 300: return "Multiple Choices";
304 case 301: return "Moved Permanently";
305 case 302: return "Moved Temporarily";
306 case 303: return "See Other";
307 case 304: return "Not Modified";
308 case 305: return "Use Proxy";
309 case 307: return "Temporary Redirect";
310 case 308: return "Permanent Redirect";
311 case 310: return "Too many Redirects";
312 case 400: return "Bad Request";
313 case 401: return "Unauthorized";
314 case 402: return "Payment Required";
315 case 403: return "Forbidden";
316 case 404: return "Not Found";
317 case 405: return "Method Not Allowed";
318 case 406: return "Not Acceptable";
319 case 407: return "Proxy Authentication Required";
320 case 408: return "Request Time-out";
321 case 409: return "Conflict";
322 case 410: return "Gone";
323 case 411: return "Length Required";
324 case 412: return "Precondition Failed";
325 case 413: return "Request Entity Too Large";
326 case 414: return "Request-URI Too Long";
327 case 415: return "Unsupported Media Type";
328 case 416: return "Requested range unsatisfiable";
329 case 417: return "Expectation failed";
330 case 418: return "I'm a teapot";
331 case 422: return "Unprocessable entity";
332 case 423: return "Locked";
333 case 424: return "Method failure";
334 case 425: return "Unordered Collection";
335 case 426: return "Upgrade Required";
336 case 428: return "Precondition Required";
337 case 429: return "Too Many Requests";
338 case 431: return "Request Header Fields Too Large";
339 case 449: return "Retry With";
340 case 450: return "Blocked by Windows Parental Controls";
341 case 451: return "Unavailable For Legal Reasons";
342 case 456: return "Unrecoverable Error";
343 case 499: return "client has closed connection";
344 case 500: return "Internal Server Error";
345 case 501: return "Not Implemented";
Jarno Huuskonen59af2df2016-12-28 10:49:01 +0200346 case 502: return "Bad Gateway or Proxy Error";
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +0200347 case 503: return "Service Unavailable";
348 case 504: return "Gateway Time-out";
349 case 505: return "HTTP Version not supported";
350 case 506: return "Variant also negociate";
351 case 507: return "Insufficient storage";
352 case 508: return "Loop detected";
353 case 509: return "Bandwidth Limit Exceeded";
354 case 510: return "Not extended";
355 case 511: return "Network authentication required";
356 case 520: return "Web server is returning an unknown error";
357 default:
358 switch (status) {
359 case 100 ... 199: return "Informational";
360 case 200 ... 299: return "Success";
361 case 300 ... 399: return "Redirection";
362 case 400 ... 499: return "Client Error";
363 case 500 ... 599: return "Server Error";
364 default: return "Other";
365 }
366 }
367}
368
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200369/* This function returns HTTP_ERR_<num> (enum) matching http status code.
370 * Returned value should match codes from http_err_codes.
371 */
372static const int http_get_status_idx(unsigned int status)
373{
374 switch (status) {
375 case 200: return HTTP_ERR_200;
376 case 400: return HTTP_ERR_400;
377 case 403: return HTTP_ERR_403;
378 case 405: return HTTP_ERR_405;
379 case 408: return HTTP_ERR_408;
380 case 429: return HTTP_ERR_429;
381 case 500: return HTTP_ERR_500;
382 case 502: return HTTP_ERR_502;
383 case 503: return HTTP_ERR_503;
384 case 504: return HTTP_ERR_504;
385 default: return HTTP_ERR_500;
386 }
387}
388
Willy Tarreau80587432006-12-24 17:47:20 +0100389void init_proto_http()
390{
Willy Tarreau42250582007-04-01 01:30:43 +0200391 int i;
392 char *tmp;
Willy Tarreau80587432006-12-24 17:47:20 +0100393 int msg;
Willy Tarreau42250582007-04-01 01:30:43 +0200394
Willy Tarreau80587432006-12-24 17:47:20 +0100395 for (msg = 0; msg < HTTP_ERR_SIZE; msg++) {
396 if (!http_err_msgs[msg]) {
397 Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg);
398 abort();
399 }
400
401 http_err_chunks[msg].str = (char *)http_err_msgs[msg];
402 http_err_chunks[msg].len = strlen(http_err_msgs[msg]);
403 }
Willy Tarreau42250582007-04-01 01:30:43 +0200404
405 /* initialize the log header encoding map : '{|}"#' should be encoded with
406 * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ).
407 * URL encoding only requires '"', '#' to be encoded as well as non-
408 * printable characters above.
409 */
410 memset(hdr_encode_map, 0, sizeof(hdr_encode_map));
411 memset(url_encode_map, 0, sizeof(url_encode_map));
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100412 memset(http_encode_map, 0, sizeof(url_encode_map));
Willy Tarreau42250582007-04-01 01:30:43 +0200413 for (i = 0; i < 32; i++) {
414 FD_SET(i, hdr_encode_map);
415 FD_SET(i, url_encode_map);
416 }
417 for (i = 127; i < 256; i++) {
418 FD_SET(i, hdr_encode_map);
419 FD_SET(i, url_encode_map);
420 }
421
422 tmp = "\"#{|}";
423 while (*tmp) {
424 FD_SET(*tmp, hdr_encode_map);
425 tmp++;
426 }
427
428 tmp = "\"#";
429 while (*tmp) {
430 FD_SET(*tmp, url_encode_map);
431 tmp++;
432 }
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200433
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100434 /* initialize the http header encoding map. The draft httpbis define the
435 * header content as:
436 *
437 * HTTP-message = start-line
438 * *( header-field CRLF )
439 * CRLF
440 * [ message-body ]
441 * header-field = field-name ":" OWS field-value OWS
442 * field-value = *( field-content / obs-fold )
443 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
444 * obs-fold = CRLF 1*( SP / HTAB )
445 * field-vchar = VCHAR / obs-text
446 * VCHAR = %x21-7E
447 * obs-text = %x80-FF
448 *
449 * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB.
450 * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The
451 * "obs-fold" is volontary forgotten because haproxy remove this.
452 */
453 memset(http_encode_map, 0, sizeof(http_encode_map));
454 for (i = 0x00; i <= 0x08; i++)
455 FD_SET(i, http_encode_map);
456 for (i = 0x0a; i <= 0x1f; i++)
457 FD_SET(i, http_encode_map);
458 FD_SET(0x7f, http_encode_map);
459
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200460 /* memory allocations */
Willy Tarreau63986c72015-04-03 22:55:33 +0200461 pool2_http_txn = create_pool("http_txn", sizeof(struct http_txn), MEM_F_SHARED);
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200462 pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED);
William Lallemanda73203e2012-03-12 12:48:57 +0100463 pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED);
Willy Tarreau80587432006-12-24 17:47:20 +0100464}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200465
Willy Tarreau53b6c742006-12-17 13:37:46 +0100466/*
467 * We have 26 list of methods (1 per first letter), each of which can have
468 * up to 3 entries (2 valid, 1 null).
469 */
470struct http_method_desc {
Willy Tarreauc8987b32013-12-06 23:43:17 +0100471 enum http_meth_t meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +0100472 int len;
473 const char text[8];
474};
475
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100476const struct http_method_desc http_methods[26][3] = {
Willy Tarreau53b6c742006-12-17 13:37:46 +0100477 ['C' - 'A'] = {
478 [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" },
479 },
480 ['D' - 'A'] = {
481 [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" },
482 },
483 ['G' - 'A'] = {
484 [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" },
485 },
486 ['H' - 'A'] = {
487 [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" },
488 },
Christopher Fauletd57ad642015-07-31 14:26:57 +0200489 ['O' - 'A'] = {
490 [0] = { .meth = HTTP_METH_OPTIONS , .len=7, .text="OPTIONS" },
491 },
Willy Tarreau53b6c742006-12-17 13:37:46 +0100492 ['P' - 'A'] = {
493 [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" },
494 [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" },
495 },
496 ['T' - 'A'] = {
497 [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" },
498 },
499 /* rest is empty like this :
Willy Tarreaub7ce4242015-09-03 17:15:21 +0200500 * [0] = { .meth = HTTP_METH_OTHER , .len=0, .text="" },
Willy Tarreau53b6c742006-12-17 13:37:46 +0100501 */
502};
503
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100504const struct http_method_name http_known_methods[HTTP_METH_OTHER] = {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100505 [HTTP_METH_OPTIONS] = { "OPTIONS", 7 },
506 [HTTP_METH_GET] = { "GET", 3 },
507 [HTTP_METH_HEAD] = { "HEAD", 4 },
508 [HTTP_METH_POST] = { "POST", 4 },
509 [HTTP_METH_PUT] = { "PUT", 3 },
510 [HTTP_METH_DELETE] = { "DELETE", 6 },
511 [HTTP_METH_TRACE] = { "TRACE", 5 },
512 [HTTP_METH_CONNECT] = { "CONNECT", 7 },
513};
514
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100515/* It is about twice as fast on recent architectures to lookup a byte in a
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200516 * table than to perform a boolean AND or OR between two tests. Refer to
Willy Tarreau2235b262016-11-05 15:50:20 +0100517 * RFC2616/RFC5234/RFC7230 for those chars. A token is any ASCII char that is
518 * neither a separator nor a CTL char. An http ver_token is any ASCII which can
519 * be found in an HTTP version, which includes 'H', 'T', 'P', '/', '.' and any
520 * digit. Note: please do not overwrite values in assignment since gcc-2.95
521 * will not handle them correctly. It's worth noting that chars 128..255 are
522 * nothing, not even control chars.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100523 */
Willy Tarreau2235b262016-11-05 15:50:20 +0100524const unsigned char http_char_classes[256] = {
525 [ 0] = HTTP_FLG_CTL,
526 [ 1] = HTTP_FLG_CTL,
527 [ 2] = HTTP_FLG_CTL,
528 [ 3] = HTTP_FLG_CTL,
529 [ 4] = HTTP_FLG_CTL,
530 [ 5] = HTTP_FLG_CTL,
531 [ 6] = HTTP_FLG_CTL,
532 [ 7] = HTTP_FLG_CTL,
533 [ 8] = HTTP_FLG_CTL,
534 [ 9] = HTTP_FLG_SPHT | HTTP_FLG_LWS | HTTP_FLG_SEP | HTTP_FLG_CTL,
535 [ 10] = HTTP_FLG_CRLF | HTTP_FLG_LWS | HTTP_FLG_CTL,
536 [ 11] = HTTP_FLG_CTL,
537 [ 12] = HTTP_FLG_CTL,
538 [ 13] = HTTP_FLG_CRLF | HTTP_FLG_LWS | HTTP_FLG_CTL,
539 [ 14] = HTTP_FLG_CTL,
540 [ 15] = HTTP_FLG_CTL,
541 [ 16] = HTTP_FLG_CTL,
542 [ 17] = HTTP_FLG_CTL,
543 [ 18] = HTTP_FLG_CTL,
544 [ 19] = HTTP_FLG_CTL,
545 [ 20] = HTTP_FLG_CTL,
546 [ 21] = HTTP_FLG_CTL,
547 [ 22] = HTTP_FLG_CTL,
548 [ 23] = HTTP_FLG_CTL,
549 [ 24] = HTTP_FLG_CTL,
550 [ 25] = HTTP_FLG_CTL,
551 [ 26] = HTTP_FLG_CTL,
552 [ 27] = HTTP_FLG_CTL,
553 [ 28] = HTTP_FLG_CTL,
554 [ 29] = HTTP_FLG_CTL,
555 [ 30] = HTTP_FLG_CTL,
556 [ 31] = HTTP_FLG_CTL,
557 [' '] = HTTP_FLG_SPHT | HTTP_FLG_LWS | HTTP_FLG_SEP,
558 ['!'] = HTTP_FLG_TOK,
559 ['"'] = HTTP_FLG_SEP,
560 ['#'] = HTTP_FLG_TOK,
561 ['$'] = HTTP_FLG_TOK,
562 ['%'] = HTTP_FLG_TOK,
563 ['&'] = HTTP_FLG_TOK,
564 [ 39] = HTTP_FLG_TOK,
565 ['('] = HTTP_FLG_SEP,
566 [')'] = HTTP_FLG_SEP,
567 ['*'] = HTTP_FLG_TOK,
568 ['+'] = HTTP_FLG_TOK,
569 [','] = HTTP_FLG_SEP,
570 ['-'] = HTTP_FLG_TOK,
571 ['.'] = HTTP_FLG_TOK | HTTP_FLG_VER,
572 ['/'] = HTTP_FLG_SEP | HTTP_FLG_VER,
573 ['0'] = HTTP_FLG_TOK | HTTP_FLG_VER,
574 ['1'] = HTTP_FLG_TOK | HTTP_FLG_VER,
575 ['2'] = HTTP_FLG_TOK | HTTP_FLG_VER,
576 ['3'] = HTTP_FLG_TOK | HTTP_FLG_VER,
577 ['4'] = HTTP_FLG_TOK | HTTP_FLG_VER,
578 ['5'] = HTTP_FLG_TOK | HTTP_FLG_VER,
579 ['6'] = HTTP_FLG_TOK | HTTP_FLG_VER,
580 ['7'] = HTTP_FLG_TOK | HTTP_FLG_VER,
581 ['8'] = HTTP_FLG_TOK | HTTP_FLG_VER,
582 ['9'] = HTTP_FLG_TOK | HTTP_FLG_VER,
583 [':'] = HTTP_FLG_SEP,
584 [';'] = HTTP_FLG_SEP,
585 ['<'] = HTTP_FLG_SEP,
586 ['='] = HTTP_FLG_SEP,
587 ['>'] = HTTP_FLG_SEP,
588 ['?'] = HTTP_FLG_SEP,
589 ['@'] = HTTP_FLG_SEP,
590 ['A'] = HTTP_FLG_TOK,
591 ['B'] = HTTP_FLG_TOK,
592 ['C'] = HTTP_FLG_TOK,
593 ['D'] = HTTP_FLG_TOK,
594 ['E'] = HTTP_FLG_TOK,
595 ['F'] = HTTP_FLG_TOK,
596 ['G'] = HTTP_FLG_TOK,
597 ['H'] = HTTP_FLG_TOK | HTTP_FLG_VER,
598 ['I'] = HTTP_FLG_TOK,
599 ['J'] = HTTP_FLG_TOK,
600 ['K'] = HTTP_FLG_TOK,
601 ['L'] = HTTP_FLG_TOK,
602 ['M'] = HTTP_FLG_TOK,
603 ['N'] = HTTP_FLG_TOK,
604 ['O'] = HTTP_FLG_TOK,
605 ['P'] = HTTP_FLG_TOK | HTTP_FLG_VER,
606 ['Q'] = HTTP_FLG_TOK,
607 ['R'] = HTTP_FLG_TOK | HTTP_FLG_VER,
608 ['S'] = HTTP_FLG_TOK | HTTP_FLG_VER,
609 ['T'] = HTTP_FLG_TOK | HTTP_FLG_VER,
610 ['U'] = HTTP_FLG_TOK,
611 ['V'] = HTTP_FLG_TOK,
612 ['W'] = HTTP_FLG_TOK,
613 ['X'] = HTTP_FLG_TOK,
614 ['Y'] = HTTP_FLG_TOK,
615 ['Z'] = HTTP_FLG_TOK,
616 ['['] = HTTP_FLG_SEP,
617 [ 92] = HTTP_FLG_SEP,
618 [']'] = HTTP_FLG_SEP,
619 ['^'] = HTTP_FLG_TOK,
620 ['_'] = HTTP_FLG_TOK,
621 ['`'] = HTTP_FLG_TOK,
622 ['a'] = HTTP_FLG_TOK,
623 ['b'] = HTTP_FLG_TOK,
624 ['c'] = HTTP_FLG_TOK,
625 ['d'] = HTTP_FLG_TOK,
626 ['e'] = HTTP_FLG_TOK,
627 ['f'] = HTTP_FLG_TOK,
628 ['g'] = HTTP_FLG_TOK,
629 ['h'] = HTTP_FLG_TOK,
630 ['i'] = HTTP_FLG_TOK,
631 ['j'] = HTTP_FLG_TOK,
632 ['k'] = HTTP_FLG_TOK,
633 ['l'] = HTTP_FLG_TOK,
634 ['m'] = HTTP_FLG_TOK,
635 ['n'] = HTTP_FLG_TOK,
636 ['o'] = HTTP_FLG_TOK,
637 ['p'] = HTTP_FLG_TOK,
638 ['q'] = HTTP_FLG_TOK,
639 ['r'] = HTTP_FLG_TOK,
640 ['s'] = HTTP_FLG_TOK,
641 ['t'] = HTTP_FLG_TOK,
642 ['u'] = HTTP_FLG_TOK,
643 ['v'] = HTTP_FLG_TOK,
644 ['w'] = HTTP_FLG_TOK,
645 ['x'] = HTTP_FLG_TOK,
646 ['y'] = HTTP_FLG_TOK,
647 ['z'] = HTTP_FLG_TOK,
648 ['{'] = HTTP_FLG_SEP,
649 ['|'] = HTTP_FLG_TOK,
650 ['}'] = HTTP_FLG_SEP,
651 ['~'] = HTTP_FLG_TOK,
652 [127] = HTTP_FLG_CTL,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100653};
654
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100655/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100656 * Adds a header and its CRLF at the tail of the message's buffer, just before
657 * the last CRLF. Text length is measured first, so it cannot be NULL.
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100658 * The header is also automatically added to the index <hdr_idx>, and the end
659 * of headers is automatically adjusted. The number of bytes added is returned
660 * on success, otherwise <0 is returned indicating an error.
661 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100662int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100663{
664 int bytes, len;
665
666 len = strlen(text);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200667 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100668 if (!bytes)
669 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100670 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100671 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
672}
673
674/*
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100675 * Adds a header and its CRLF at the tail of the message's buffer, just before
676 * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100677 * the buffer is only opened and the space reserved, but nothing is copied.
678 * The header is also automatically added to the index <hdr_idx>, and the end
679 * of headers is automatically adjusted. The number of bytes added is returned
680 * on success, otherwise <0 is returned indicating an error.
681 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100682int http_header_add_tail2(struct http_msg *msg,
683 struct hdr_idx *hdr_idx, const char *text, int len)
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100684{
685 int bytes;
686
Willy Tarreau9b28e032012-10-12 23:49:43 +0200687 bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100688 if (!bytes)
689 return -1;
Willy Tarreaufa355d42009-11-29 18:12:29 +0100690 http_msg_move_end(msg, bytes);
Willy Tarreau4af6f3a2007-03-18 22:36:26 +0100691 return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail);
692}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200693
694/*
Willy Tarreauaa9dce32007-03-18 23:50:16 +0100695 * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon.
696 * If so, returns the position of the first non-space character relative to
697 * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries
698 * to return a pointer to the place after the first space. Returns 0 if the
699 * header name does not match. Checks are case-insensitive.
700 */
701int http_header_match2(const char *hdr, const char *end,
702 const char *name, int len)
703{
704 const char *val;
705
706 if (hdr + len >= end)
707 return 0;
708 if (hdr[len] != ':')
709 return 0;
710 if (strncasecmp(hdr, name, len) != 0)
711 return 0;
712 val = hdr + len + 1;
713 while (val < end && HTTP_IS_SPHT(*val))
714 val++;
715 if ((val >= end) && (len + 2 <= end - hdr))
716 return len + 2; /* we may replace starting from second space */
717 return val - hdr;
718}
719
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200720/* Find the first or next occurrence of header <name> in message buffer <sol>
721 * using headers index <idx>, and return it in the <ctx> structure. This
722 * structure holds everything necessary to use the header and find next
723 * occurrence. If its <idx> member is 0, the header is searched from the
724 * beginning. Otherwise, the next occurrence is returned. The function returns
725 * 1 when it finds a value, and 0 when there is no more. It is very similar to
726 * http_find_header2() except that it is designed to work with full-line headers
727 * whose comma is not a delimiter but is part of the syntax. As a special case,
728 * if ctx->val is NULL when searching for a new values of a header, the current
729 * header is rescanned. This allows rescanning after a header deletion.
730 */
731int http_find_full_header2(const char *name, int len,
732 char *sol, struct hdr_idx *idx,
733 struct hdr_ctx *ctx)
734{
735 char *eol, *sov;
736 int cur_idx, old_idx;
737
738 cur_idx = ctx->idx;
739 if (cur_idx) {
740 /* We have previously returned a header, let's search another one */
741 sol = ctx->line;
742 eol = sol + idx->v[cur_idx].len;
743 goto next_hdr;
744 }
745
746 /* first request for this header */
747 sol += hdr_idx_first_pos(idx);
748 old_idx = 0;
749 cur_idx = hdr_idx_first_idx(idx);
750 while (cur_idx) {
751 eol = sol + idx->v[cur_idx].len;
752
753 if (len == 0) {
754 /* No argument was passed, we want any header.
755 * To achieve this, we simply build a fake request. */
756 while (sol + len < eol && sol[len] != ':')
757 len++;
758 name = sol;
759 }
760
761 if ((len < eol - sol) &&
762 (sol[len] == ':') &&
763 (strncasecmp(sol, name, len) == 0)) {
764 ctx->del = len;
765 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100766 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200767 sov++;
768
769 ctx->line = sol;
770 ctx->prev = old_idx;
771 ctx->idx = cur_idx;
772 ctx->val = sov - sol;
773 ctx->tws = 0;
Willy Tarreau2235b262016-11-05 15:50:20 +0100774 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreau04ff9f12013-06-10 18:39:42 +0200775 eol--;
776 ctx->tws++;
777 }
778 ctx->vlen = eol - sov;
779 return 1;
780 }
781 next_hdr:
782 sol = eol + idx->v[cur_idx].cr + 1;
783 old_idx = cur_idx;
784 cur_idx = idx->v[cur_idx].next;
785 }
786 return 0;
787}
788
Willy Tarreauc90dc232015-02-20 13:51:36 +0100789/* Find the first or next header field in message buffer <sol> using headers
790 * index <idx>, and return it in the <ctx> structure. This structure holds
791 * everything necessary to use the header and find next occurrence. If its
792 * <idx> member is 0, the first header is retrieved. Otherwise, the next
793 * occurrence is returned. The function returns 1 when it finds a value, and
794 * 0 when there is no more. It is equivalent to http_find_full_header2() with
795 * no header name.
796 */
797int http_find_next_header(char *sol, struct hdr_idx *idx, struct hdr_ctx *ctx)
798{
799 char *eol, *sov;
800 int cur_idx, old_idx;
801 int len;
802
803 cur_idx = ctx->idx;
804 if (cur_idx) {
805 /* We have previously returned a header, let's search another one */
806 sol = ctx->line;
807 eol = sol + idx->v[cur_idx].len;
808 goto next_hdr;
809 }
810
811 /* first request for this header */
812 sol += hdr_idx_first_pos(idx);
813 old_idx = 0;
814 cur_idx = hdr_idx_first_idx(idx);
815 while (cur_idx) {
816 eol = sol + idx->v[cur_idx].len;
817
818 len = 0;
819 while (1) {
820 if (len >= eol - sol)
821 goto next_hdr;
822 if (sol[len] == ':')
823 break;
824 len++;
825 }
826
827 ctx->del = len;
828 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100829 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreauc90dc232015-02-20 13:51:36 +0100830 sov++;
831
832 ctx->line = sol;
833 ctx->prev = old_idx;
834 ctx->idx = cur_idx;
835 ctx->val = sov - sol;
836 ctx->tws = 0;
837
Willy Tarreau2235b262016-11-05 15:50:20 +0100838 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreauc90dc232015-02-20 13:51:36 +0100839 eol--;
840 ctx->tws++;
841 }
842 ctx->vlen = eol - sov;
843 return 1;
844
845 next_hdr:
846 sol = eol + idx->v[cur_idx].cr + 1;
847 old_idx = cur_idx;
848 cur_idx = idx->v[cur_idx].next;
849 }
850 return 0;
851}
852
Willy Tarreau68085d82010-01-18 14:54:04 +0100853/* Find the end of the header value contained between <s> and <e>. See RFC2616,
854 * par 2.2 for more information. Note that it requires a valid header to return
855 * a valid result. This works for headers defined as comma-separated lists.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200856 */
Willy Tarreau68085d82010-01-18 14:54:04 +0100857char *find_hdr_value_end(char *s, const char *e)
Willy Tarreau33a7e692007-06-10 19:45:56 +0200858{
859 int quoted, qdpair;
860
861 quoted = qdpair = 0;
Willy Tarreaue6d9c212016-11-05 18:23:38 +0100862
863#if defined(__x86_64__) || \
864 defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || \
865 defined(__ARM_ARCH_7A__)
866 /* speedup: skip everything not a comma nor a double quote */
867 for (; s <= e - sizeof(int); s += sizeof(int)) {
868 unsigned int c = *(int *)s; // comma
869 unsigned int q = c; // quote
870
871 c ^= 0x2c2c2c2c; // contains one zero on a comma
872 q ^= 0x22222222; // contains one zero on a quote
873
874 c = (c - 0x01010101) & ~c; // contains 0x80 below a comma
875 q = (q - 0x01010101) & ~q; // contains 0x80 below a quote
876
877 if ((c | q) & 0x80808080)
878 break; // found a comma or a quote
879 }
880#endif
Willy Tarreau33a7e692007-06-10 19:45:56 +0200881 for (; s < e; s++) {
882 if (qdpair) qdpair = 0;
Willy Tarreau0f7f51f2010-08-30 11:06:34 +0200883 else if (quoted) {
884 if (*s == '\\') qdpair = 1;
885 else if (*s == '"') quoted = 0;
886 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200887 else if (*s == '"') quoted = 1;
888 else if (*s == ',') return s;
889 }
890 return s;
891}
892
893/* Find the first or next occurrence of header <name> in message buffer <sol>
894 * using headers index <idx>, and return it in the <ctx> structure. This
895 * structure holds everything necessary to use the header and find next
896 * occurrence. If its <idx> member is 0, the header is searched from the
897 * beginning. Otherwise, the next occurrence is returned. The function returns
Willy Tarreau68085d82010-01-18 14:54:04 +0100898 * 1 when it finds a value, and 0 when there is no more. It is designed to work
899 * with headers defined as comma-separated lists. As a special case, if ctx->val
900 * is NULL when searching for a new values of a header, the current header is
901 * rescanned. This allows rescanning after a header deletion.
Willy Tarreau33a7e692007-06-10 19:45:56 +0200902 */
903int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +0100904 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200905 struct hdr_ctx *ctx)
906{
Willy Tarreau68085d82010-01-18 14:54:04 +0100907 char *eol, *sov;
908 int cur_idx, old_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200909
Willy Tarreau68085d82010-01-18 14:54:04 +0100910 cur_idx = ctx->idx;
911 if (cur_idx) {
Willy Tarreau33a7e692007-06-10 19:45:56 +0200912 /* We have previously returned a value, let's search
913 * another one on the same line.
914 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200915 sol = ctx->line;
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200916 ctx->del = ctx->val + ctx->vlen + ctx->tws;
Willy Tarreau68085d82010-01-18 14:54:04 +0100917 sov = sol + ctx->del;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200918 eol = sol + idx->v[cur_idx].len;
919
920 if (sov >= eol)
921 /* no more values in this header */
922 goto next_hdr;
923
Willy Tarreau68085d82010-01-18 14:54:04 +0100924 /* values remaining for this header, skip the comma but save it
925 * for later use (eg: for header deletion).
926 */
Willy Tarreau33a7e692007-06-10 19:45:56 +0200927 sov++;
Willy Tarreau2235b262016-11-05 15:50:20 +0100928 while (sov < eol && HTTP_IS_LWS((*sov)))
Willy Tarreau33a7e692007-06-10 19:45:56 +0200929 sov++;
930
931 goto return_hdr;
932 }
933
934 /* first request for this header */
935 sol += hdr_idx_first_pos(idx);
Willy Tarreau68085d82010-01-18 14:54:04 +0100936 old_idx = 0;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200937 cur_idx = hdr_idx_first_idx(idx);
Willy Tarreau33a7e692007-06-10 19:45:56 +0200938 while (cur_idx) {
939 eol = sol + idx->v[cur_idx].len;
940
Willy Tarreau1ad7c6d2007-06-10 21:42:55 +0200941 if (len == 0) {
942 /* No argument was passed, we want any header.
943 * To achieve this, we simply build a fake request. */
944 while (sol + len < eol && sol[len] != ':')
945 len++;
946 name = sol;
947 }
948
Willy Tarreau33a7e692007-06-10 19:45:56 +0200949 if ((len < eol - sol) &&
950 (sol[len] == ':') &&
951 (strncasecmp(sol, name, len) == 0)) {
Willy Tarreau68085d82010-01-18 14:54:04 +0100952 ctx->del = len;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200953 sov = sol + len + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100954 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau33a7e692007-06-10 19:45:56 +0200955 sov++;
Willy Tarreau68085d82010-01-18 14:54:04 +0100956
Willy Tarreau33a7e692007-06-10 19:45:56 +0200957 ctx->line = sol;
Willy Tarreau68085d82010-01-18 14:54:04 +0100958 ctx->prev = old_idx;
959 return_hdr:
Willy Tarreau33a7e692007-06-10 19:45:56 +0200960 ctx->idx = cur_idx;
961 ctx->val = sov - sol;
962
963 eol = find_hdr_value_end(sov, eol);
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200964 ctx->tws = 0;
Willy Tarreau2235b262016-11-05 15:50:20 +0100965 while (eol > sov && HTTP_IS_LWS(*(eol - 1))) {
Willy Tarreau588bd4f2011-09-01 22:22:28 +0200966 eol--;
967 ctx->tws++;
968 }
Willy Tarreau33a7e692007-06-10 19:45:56 +0200969 ctx->vlen = eol - sov;
970 return 1;
971 }
972 next_hdr:
973 sol = eol + idx->v[cur_idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +0100974 old_idx = cur_idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +0200975 cur_idx = idx->v[cur_idx].next;
976 }
977 return 0;
978}
979
980int http_find_header(const char *name,
Willy Tarreau68085d82010-01-18 14:54:04 +0100981 char *sol, struct hdr_idx *idx,
Willy Tarreau33a7e692007-06-10 19:45:56 +0200982 struct hdr_ctx *ctx)
983{
984 return http_find_header2(name, strlen(name), sol, idx, ctx);
985}
986
Willy Tarreau68085d82010-01-18 14:54:04 +0100987/* Remove one value of a header. This only works on a <ctx> returned by one of
988 * the http_find_header functions. The value is removed, as well as surrounding
989 * commas if any. If the removed value was alone, the whole header is removed.
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100990 * The ctx is always updated accordingly, as well as the buffer and HTTP
Willy Tarreau68085d82010-01-18 14:54:04 +0100991 * message <msg>. The new index is returned. If it is zero, it means there is
992 * no more header, so any processing may stop. The ctx is always left in a form
993 * that can be handled by http_find_header2() to find next occurrence.
994 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100995int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx)
Willy Tarreau68085d82010-01-18 14:54:04 +0100996{
997 int cur_idx = ctx->idx;
998 char *sol = ctx->line;
999 struct hdr_idx_elem *hdr;
1000 int delta, skip_comma;
1001
1002 if (!cur_idx)
1003 return 0;
1004
1005 hdr = &idx->v[cur_idx];
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001006 if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) {
Willy Tarreau68085d82010-01-18 14:54:04 +01001007 /* This was the only value of the header, we must now remove it entirely. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001008 delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0);
Willy Tarreau68085d82010-01-18 14:54:04 +01001009 http_msg_move_end(msg, delta);
1010 idx->used--;
1011 hdr->len = 0; /* unused entry */
1012 idx->v[ctx->prev].next = idx->v[ctx->idx].next;
Willy Tarreau5c4784f2011-02-12 13:07:35 +01001013 if (idx->tail == ctx->idx)
1014 idx->tail = ctx->prev;
Willy Tarreau68085d82010-01-18 14:54:04 +01001015 ctx->idx = ctx->prev; /* walk back to the end of previous header */
Willy Tarreau7c1c2172015-01-07 17:23:50 +01001016 ctx->line -= idx->v[ctx->idx].len + idx->v[ctx->idx].cr + 1;
Willy Tarreau68085d82010-01-18 14:54:04 +01001017 ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001018 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +01001019 return ctx->idx;
1020 }
1021
1022 /* This was not the only value of this header. We have to remove between
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001023 * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the
1024 * last entry of the list, we remove the last separator.
Willy Tarreau68085d82010-01-18 14:54:04 +01001025 */
1026
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001027 skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001028 delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma,
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001029 sol + ctx->val + ctx->vlen + ctx->tws + skip_comma,
Willy Tarreau68085d82010-01-18 14:54:04 +01001030 NULL, 0);
1031 hdr->len += delta;
1032 http_msg_move_end(msg, delta);
1033 ctx->val = ctx->del;
Willy Tarreau588bd4f2011-09-01 22:22:28 +02001034 ctx->tws = ctx->vlen = 0;
Willy Tarreau68085d82010-01-18 14:54:04 +01001035 return ctx->idx;
1036}
1037
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001038/* This function handles a server error at the stream interface level. The
1039 * stream interface is assumed to be already in a closed state. An optional
Willy Tarreau2019f952017-03-14 11:07:31 +01001040 * message is copied into the input buffer.
Willy Tarreau2d3d94c2008-11-30 20:20:08 +01001041 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +01001042 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001043 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001044static void http_server_error(struct stream *s, struct stream_interface *si,
Willy Tarreau2019f952017-03-14 11:07:31 +01001045 int err, int finst, const struct chunk *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001046{
Willy Tarreau2019f952017-03-14 11:07:31 +01001047 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001048 channel_auto_read(si_oc(si));
1049 channel_abort(si_oc(si));
1050 channel_auto_close(si_oc(si));
1051 channel_erase(si_oc(si));
1052 channel_auto_close(si_ic(si));
1053 channel_auto_read(si_ic(si));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001054 if (msg)
Willy Tarreau2bb4a962014-11-28 11:11:05 +01001055 bo_inject(si_ic(si), msg->str, msg->len);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001056 if (!(s->flags & SF_ERR_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001057 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001058 if (!(s->flags & SF_FINST_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02001059 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001060}
1061
Willy Tarreau87b09662015-04-03 00:22:06 +02001062/* This function returns the appropriate error location for the given stream
Willy Tarreau80587432006-12-24 17:47:20 +01001063 * and message.
1064 */
1065
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001066struct chunk *http_error_message(struct stream *s)
Willy Tarreau80587432006-12-24 17:47:20 +01001067{
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001068 const int msgnum = http_get_status_idx(s->txn->status);
1069
Willy Tarreaue2e27a52007-04-01 00:01:37 +02001070 if (s->be->errmsg[msgnum].str)
1071 return &s->be->errmsg[msgnum];
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001072 else if (strm_fe(s)->errmsg[msgnum].str)
1073 return &strm_fe(s)->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +01001074 else
1075 return &http_err_chunks[msgnum];
1076}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001077
Christopher Fauleta94e5a52015-12-09 15:55:06 +01001078void
1079http_reply_and_close(struct stream *s, short status, struct chunk *msg)
1080{
Christopher Fauletd7c91962015-04-30 11:48:27 +02001081 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
Christopher Faulet3e344292015-11-24 16:24:13 +01001082 FLT_STRM_CB(s, flt_http_reply(s, status, msg));
Christopher Fauleta94e5a52015-12-09 15:55:06 +01001083 stream_int_retnclose(&s->si[0], msg);
1084}
1085
Willy Tarreau53b6c742006-12-17 13:37:46 +01001086/*
Willy Tarreaub7ce4242015-09-03 17:15:21 +02001087 * returns a known method among HTTP_METH_* or HTTP_METH_OTHER for all unknown
1088 * ones.
Willy Tarreau53b6c742006-12-17 13:37:46 +01001089 */
Thierry FOURNIERd4373142013-12-17 01:10:10 +01001090enum http_meth_t find_http_meth(const char *str, const int len)
Willy Tarreau53b6c742006-12-17 13:37:46 +01001091{
1092 unsigned char m;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001093 const struct http_method_desc *h;
Willy Tarreau53b6c742006-12-17 13:37:46 +01001094
1095 m = ((unsigned)*str - 'A');
1096
1097 if (m < 26) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001098 for (h = http_methods[m]; h->len > 0; h++) {
1099 if (unlikely(h->len != len))
Willy Tarreau53b6c742006-12-17 13:37:46 +01001100 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001101 if (likely(memcmp(str, h->text, h->len) == 0))
Willy Tarreau53b6c742006-12-17 13:37:46 +01001102 return h->meth;
Willy Tarreau53b6c742006-12-17 13:37:46 +01001103 };
Willy Tarreau53b6c742006-12-17 13:37:46 +01001104 }
Willy Tarreaub7ce4242015-09-03 17:15:21 +02001105 return HTTP_METH_OTHER;
Willy Tarreau53b6c742006-12-17 13:37:46 +01001106}
1107
Willy Tarreau21d2af32008-02-14 20:25:24 +01001108/* Parse the URI from the given transaction (which is assumed to be in request
1109 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
1110 * It is returned otherwise.
1111 */
Thierry FOURNIER3c331782015-09-17 19:33:35 +02001112char *http_get_path(struct http_txn *txn)
Willy Tarreau21d2af32008-02-14 20:25:24 +01001113{
1114 char *ptr, *end;
1115
Willy Tarreau9b28e032012-10-12 23:49:43 +02001116 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
Willy Tarreau21d2af32008-02-14 20:25:24 +01001117 end = ptr + txn->req.sl.rq.u_l;
1118
1119 if (ptr >= end)
1120 return NULL;
1121
1122 /* RFC2616, par. 5.1.2 :
1123 * Request-URI = "*" | absuri | abspath | authority
1124 */
1125
1126 if (*ptr == '*')
1127 return NULL;
1128
1129 if (isalpha((unsigned char)*ptr)) {
1130 /* this is a scheme as described by RFC3986, par. 3.1 */
1131 ptr++;
1132 while (ptr < end &&
1133 (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.'))
1134 ptr++;
1135 /* skip '://' */
1136 if (ptr == end || *ptr++ != ':')
1137 return NULL;
1138 if (ptr == end || *ptr++ != '/')
1139 return NULL;
1140 if (ptr == end || *ptr++ != '/')
1141 return NULL;
1142 }
1143 /* skip [user[:passwd]@]host[:[port]] */
1144
1145 while (ptr < end && *ptr != '/')
1146 ptr++;
1147
1148 if (ptr == end)
1149 return NULL;
1150
1151 /* OK, we got the '/' ! */
1152 return ptr;
1153}
1154
William Lallemand65ad6e12014-01-31 15:08:02 +01001155/* Parse the URI from the given string and look for the "/" beginning the PATH.
1156 * If not found, return NULL. It is returned otherwise.
1157 */
1158static char *
1159http_get_path_from_string(char *str)
1160{
1161 char *ptr = str;
1162
1163 /* RFC2616, par. 5.1.2 :
1164 * Request-URI = "*" | absuri | abspath | authority
1165 */
1166
1167 if (*ptr == '*')
1168 return NULL;
1169
1170 if (isalpha((unsigned char)*ptr)) {
1171 /* this is a scheme as described by RFC3986, par. 3.1 */
1172 ptr++;
1173 while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')
1174 ptr++;
1175 /* skip '://' */
1176 if (*ptr == '\0' || *ptr++ != ':')
1177 return NULL;
1178 if (*ptr == '\0' || *ptr++ != '/')
1179 return NULL;
1180 if (*ptr == '\0' || *ptr++ != '/')
1181 return NULL;
1182 }
1183 /* skip [user[:passwd]@]host[:[port]] */
1184
1185 while (*ptr != '\0' && *ptr != ' ' && *ptr != '/')
1186 ptr++;
1187
1188 if (*ptr == '\0' || *ptr == ' ')
1189 return NULL;
1190
1191 /* OK, we got the '/' ! */
1192 return ptr;
1193}
1194
Willy Tarreau71241ab2012-12-27 11:30:54 +01001195/* Returns a 302 for a redirectable request that reaches a server working in
1196 * in redirect mode. This may only be called just after the stream interface
1197 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
1198 * follow normal proxy processing. NOTE: this function is designed to support
1199 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +01001200 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001201void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001202{
1203 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +01001204 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001205 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001206 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001207
1208 /* 1: create the response header */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001209 trash.len = strlen(HTTP_302);
1210 memcpy(trash.str, HTTP_302, trash.len);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001211
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001212 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001213
Willy Tarreauefb453c2008-10-26 20:49:47 +01001214 /* 2: add the server's prefix */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001215 if (trash.len + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001216 return;
1217
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001218 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +01001219 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001220 memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len);
1221 trash.len += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +01001222 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001223
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001224 /* 3: add the request URI. Since it was already forwarded, we need
1225 * to temporarily rewind the buffer.
1226 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001227 txn = s->txn;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001228 b_rew(s->req.buf, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001229
Willy Tarreauefb453c2008-10-26 20:49:47 +01001230 path = http_get_path(txn);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001231 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 +02001232
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001233 b_adv(s->req.buf, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +02001234
Willy Tarreauefb453c2008-10-26 20:49:47 +01001235 if (!path)
1236 return;
1237
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001238 if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +01001239 return;
1240
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001241 memcpy(trash.str + trash.len, path, len);
1242 trash.len += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001243
1244 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001245 memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29);
1246 trash.len += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001247 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001248 memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23);
1249 trash.len += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +01001250 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001251
1252 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001253 si_shutr(si);
1254 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001255 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001256 si->state = SI_ST_CLO;
1257
1258 /* send the message */
Willy Tarreau2019f952017-03-14 11:07:31 +01001259 txn->status = 302;
1260 http_server_error(s, si, SF_ERR_LOCAL, SF_FINST_C, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001261
1262 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +01001263 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05001264 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +01001265}
1266
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001267/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +01001268 * that the server side is closed. Note that err_type is actually a
1269 * bitmask, where almost only aborts may be cumulated with other
1270 * values. We consider that aborted operations are more important
1271 * than timeouts or errors due to the fact that nobody else in the
1272 * logs might explain incomplete retries. All others should avoid
1273 * being cumulated. It should normally not be possible to have multiple
1274 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +01001275 * Note that connection errors appearing on the second request of a keep-alive
1276 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +01001277 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001278void http_return_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +01001279{
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001280 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +01001281
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001282 /* set s->txn->status for http_error_message(s) */
1283 s->txn->status = 503;
1284
Willy Tarreauefb453c2008-10-26 20:49:47 +01001285 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001286 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001287 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001288 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001289 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001290 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001291 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001292 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001293 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001294 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001295 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001296 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +01001297 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001298 else if (err_type & SI_ET_CONN_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001299 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001300 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001301 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +01001302 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001303 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001304 (s->flags & SF_SRV_REUSED) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001305 http_error_message(s));
Willy Tarreau2d400bb2012-05-14 12:11:47 +02001306 else if (err_type & SI_ET_CONN_RES)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001307 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001308 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001309 http_error_message(s));
1310 else { /* SI_ET_CONN_OTHER and others */
1311 s->txn->status = 500;
Willy Tarreaue7dff022015-04-03 01:14:29 +02001312 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +01001313 http_error_message(s));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001314 }
Willy Tarreauefb453c2008-10-26 20:49:47 +01001315}
1316
Willy Tarreau42250582007-04-01 01:30:43 +02001317extern const char sess_term_cond[8];
1318extern const char sess_fin_state[8];
1319extern const char *monthname[12];
Willy Tarreau63986c72015-04-03 22:55:33 +02001320struct pool_head *pool2_http_txn;
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001321struct pool_head *pool2_requri;
Willy Tarreau193b8c62012-11-22 00:17:38 +01001322struct pool_head *pool2_capture = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001323struct pool_head *pool2_uniqueid;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001324
Willy Tarreau117f59e2007-03-04 18:17:17 +01001325/*
1326 * Capture headers from message starting at <som> according to header list
Willy Tarreau54da8db2014-06-13 16:11:48 +02001327 * <cap_hdr>, and fill the <cap> pointers appropriately.
Willy Tarreau117f59e2007-03-04 18:17:17 +01001328 */
1329void capture_headers(char *som, struct hdr_idx *idx,
1330 char **cap, struct cap_hdr *cap_hdr)
1331{
1332 char *eol, *sol, *col, *sov;
1333 int cur_idx;
1334 struct cap_hdr *h;
1335 int len;
1336
1337 sol = som + hdr_idx_first_pos(idx);
1338 cur_idx = hdr_idx_first_idx(idx);
1339
1340 while (cur_idx) {
1341 eol = sol + idx->v[cur_idx].len;
1342
1343 col = sol;
1344 while (col < eol && *col != ':')
1345 col++;
1346
1347 sov = col + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01001348 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau117f59e2007-03-04 18:17:17 +01001349 sov++;
1350
1351 for (h = cap_hdr; h; h = h->next) {
Willy Tarreau54da8db2014-06-13 16:11:48 +02001352 if (h->namelen && (h->namelen == col - sol) &&
Willy Tarreau117f59e2007-03-04 18:17:17 +01001353 (strncasecmp(sol, h->name, h->namelen) == 0)) {
1354 if (cap[h->index] == NULL)
1355 cap[h->index] =
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001356 pool_alloc2(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +01001357
1358 if (cap[h->index] == NULL) {
1359 Alert("HTTP capture : out of memory.\n");
1360 continue;
1361 }
1362
1363 len = eol - sov;
1364 if (len > h->len)
1365 len = h->len;
1366
1367 memcpy(cap[h->index], sov, len);
1368 cap[h->index][len]=0;
1369 }
1370 }
1371 sol = eol + idx->v[cur_idx].cr + 1;
1372 cur_idx = idx->v[cur_idx].next;
1373 }
1374}
1375
1376
Willy Tarreau42250582007-04-01 01:30:43 +02001377/* either we find an LF at <ptr> or we jump to <bad>.
1378 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001379#define EXPECT_LF_HERE(ptr, bad, st) do { if (unlikely(*(ptr) != '\n')) { state = st; goto bad;}; } while (0)
Willy Tarreau42250582007-04-01 01:30:43 +02001380
1381/* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK,
1382 * otherwise to <http_msg_ood> with <state> set to <st>.
1383 */
1384#define EAT_AND_JUMP_OR_RETURN(good, st) do { \
1385 ptr++; \
1386 if (likely(ptr < end)) \
1387 goto good; \
1388 else { \
1389 state = (st); \
1390 goto http_msg_ood; \
1391 } \
1392 } while (0)
1393
1394
Willy Tarreaubaaee002006-06-26 02:48:02 +02001395/*
Willy Tarreaua15645d2007-03-18 16:22:39 +01001396 * This function parses a status line between <ptr> and <end>, starting with
Willy Tarreau8973c702007-01-21 23:58:29 +01001397 * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP,
1398 * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others
1399 * will give undefined results.
1400 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1401 * and that msg->sol points to the beginning of the response.
1402 * If a complete line is found (which implies that at least one CR or LF is
1403 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1404 * returned indicating an incomplete line (which does not mean that parts have
1405 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1406 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1407 * upon next call.
1408 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001409 * This function was intentionally designed to be called from
Willy Tarreau8973c702007-01-21 23:58:29 +01001410 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1411 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001412 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreau8973c702007-01-21 23:58:29 +01001413 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001414const char *http_parse_stsline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001415 enum ht_state state, const char *ptr, const char *end,
1416 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreau8973c702007-01-21 23:58:29 +01001417{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001418 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001419
Willy Tarreau8973c702007-01-21 23:58:29 +01001420 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001421 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001422 http_msg_rpver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001423 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8973c702007-01-21 23:58:29 +01001424 EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER);
1425
1426 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001427 msg->sl.st.v_l = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001428 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1429 }
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001430 msg->err_state = HTTP_MSG_RPVER;
Willy Tarreau7552c032009-03-01 11:10:40 +01001431 state = HTTP_MSG_ERROR;
1432 break;
1433
Willy Tarreau8973c702007-01-21 23:58:29 +01001434 case HTTP_MSG_RPVER_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001435 http_msg_rpver_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001436 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001437 msg->sl.st.c = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001438 goto http_msg_rpcode;
1439 }
1440 if (likely(HTTP_IS_SPHT(*ptr)))
1441 EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP);
1442 /* so it's a CR/LF, this is invalid */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001443 msg->err_state = HTTP_MSG_RPVER_SP;
Willy Tarreau7552c032009-03-01 11:10:40 +01001444 state = HTTP_MSG_ERROR;
1445 break;
Willy Tarreau8973c702007-01-21 23:58:29 +01001446
Willy Tarreau8973c702007-01-21 23:58:29 +01001447 case HTTP_MSG_RPCODE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001448 http_msg_rpcode:
Willy Tarreau8973c702007-01-21 23:58:29 +01001449 if (likely(!HTTP_IS_LWS(*ptr)))
1450 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE);
1451
1452 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001453 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001454 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1455 }
1456
1457 /* so it's a CR/LF, so there is no reason phrase */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001458 msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c;
Willy Tarreau8973c702007-01-21 23:58:29 +01001459 http_msg_rsp_reason:
1460 /* FIXME: should we support HTTP responses without any reason phrase ? */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001461 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001462 msg->sl.st.r_l = 0;
1463 goto http_msg_rpline_eol;
1464
Willy Tarreau8973c702007-01-21 23:58:29 +01001465 case HTTP_MSG_RPCODE_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001466 http_msg_rpcode_sp:
Willy Tarreau8973c702007-01-21 23:58:29 +01001467 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001468 msg->sl.st.r = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001469 goto http_msg_rpreason;
1470 }
1471 if (likely(HTTP_IS_SPHT(*ptr)))
1472 EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP);
1473 /* so it's a CR/LF, so there is no reason phrase */
1474 goto http_msg_rsp_reason;
1475
Willy Tarreau8973c702007-01-21 23:58:29 +01001476 case HTTP_MSG_RPREASON:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001477 http_msg_rpreason:
Willy Tarreau8973c702007-01-21 23:58:29 +01001478 if (likely(!HTTP_IS_CRLF(*ptr)))
1479 EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON);
Willy Tarreauea1175a2012-03-05 15:52:30 +01001480 msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r;
Willy Tarreau8973c702007-01-21 23:58:29 +01001481 http_msg_rpline_eol:
1482 /* We have seen the end of line. Note that we do not
1483 * necessarily have the \n yet, but at least we know that we
1484 * have EITHER \r OR \n, otherwise the response would not be
1485 * complete. We can then record the response length and return
1486 * to the caller which will be able to register it.
1487 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001488 msg->sl.st.l = ptr - msg_start - msg->sol;
Willy Tarreau8973c702007-01-21 23:58:29 +01001489 return ptr;
1490
Willy Tarreau8973c702007-01-21 23:58:29 +01001491 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001492#ifdef DEBUG_FULL
Willy Tarreau8973c702007-01-21 23:58:29 +01001493 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1494 exit(1);
1495#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001496 ;
Willy Tarreau8973c702007-01-21 23:58:29 +01001497 }
1498
1499 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001500 /* out of valid data */
Willy Tarreau8973c702007-01-21 23:58:29 +01001501 if (ret_state)
1502 *ret_state = state;
1503 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001504 *ret_ptr = ptr - msg_start;
Willy Tarreau8973c702007-01-21 23:58:29 +01001505 return NULL;
Willy Tarreau8973c702007-01-21 23:58:29 +01001506}
1507
Willy Tarreau8973c702007-01-21 23:58:29 +01001508/*
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001509 * This function parses a request line between <ptr> and <end>, starting with
1510 * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP,
1511 * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others
1512 * will give undefined results.
1513 * Note that it is upon the caller's responsibility to ensure that ptr < end,
1514 * and that msg->sol points to the beginning of the request.
1515 * If a complete line is found (which implies that at least one CR or LF is
1516 * found before <end>, the updated <ptr> is returned, otherwise NULL is
1517 * returned indicating an incomplete line (which does not mean that parts have
1518 * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are
1519 * non-NULL, they are fed with the new <ptr> and <state> values to be passed
1520 * upon next call.
1521 *
Willy Tarreau9cdde232007-05-02 20:58:19 +02001522 * This function was intentionally designed to be called from
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001523 * http_msg_analyzer() with the lowest overhead. It should integrate perfectly
1524 * within its state machine and use the same macros, hence the need for same
Willy Tarreau9cdde232007-05-02 20:58:19 +02001525 * labels and variable names. Note that msg->sol is left unchanged.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001526 */
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001527const char *http_parse_reqline(struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01001528 enum ht_state state, const char *ptr, const char *end,
1529 unsigned int *ret_ptr, enum ht_state *ret_state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001530{
Willy Tarreau9b28e032012-10-12 23:49:43 +02001531 const char *msg_start = msg->chn->buf->p;
Willy Tarreau62f791e2012-03-09 11:32:30 +01001532
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001533 switch (state) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001534 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001535 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001536 if (likely(HTTP_IS_TOKEN(*ptr)))
1537 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001538
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001539 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001540 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001541 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1542 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001543
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001544 if (likely(HTTP_IS_CRLF(*ptr))) {
1545 /* HTTP 0.9 request */
Willy Tarreauea1175a2012-03-05 15:52:30 +01001546 msg->sl.rq.m_l = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001547 http_msg_req09_uri:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001548 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001549 http_msg_req09_uri_e:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001550 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001551 http_msg_req09_ver:
Willy Tarreauea1175a2012-03-05 15:52:30 +01001552 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001553 msg->sl.rq.v_l = 0;
1554 goto http_msg_rqline_eol;
1555 }
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001556 msg->err_state = HTTP_MSG_RQMETH;
Willy Tarreau7552c032009-03-01 11:10:40 +01001557 state = HTTP_MSG_ERROR;
1558 break;
1559
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001560 case HTTP_MSG_RQMETH_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001561 http_msg_rqmeth_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001562 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001563 msg->sl.rq.u = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001564 goto http_msg_rquri;
1565 }
1566 if (likely(HTTP_IS_SPHT(*ptr)))
1567 EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP);
1568 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1569 goto http_msg_req09_uri;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001570
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001571 case HTTP_MSG_RQURI:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001572 http_msg_rquri:
Willy Tarreau5f10ea32016-11-05 17:52:06 +01001573#if defined(__x86_64__) || \
1574 defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || \
1575 defined(__ARM_ARCH_7A__)
1576 /* speedup: skip bytes not between 0x21 and 0x7e inclusive */
1577 while (ptr <= end - sizeof(int)) {
1578 int x = *(int *)ptr - 0x21212121;
1579 if (x & 0x80808080)
1580 break;
1581
1582 x -= 0x5e5e5e5e;
1583 if (!(x & 0x80808080))
1584 break;
1585
1586 ptr += sizeof(int);
1587 }
1588#endif
Willy Tarreau2afff9c2017-01-04 14:44:46 +01001589 if (ptr >= end) {
1590 state = HTTP_MSG_RQURI;
1591 goto http_msg_ood;
1592 }
Willy Tarreau5f10ea32016-11-05 17:52:06 +01001593 http_msg_rquri2:
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001594 if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */
Willy Tarreau5f10ea32016-11-05 17:52:06 +01001595 EAT_AND_JUMP_OR_RETURN(http_msg_rquri2, HTTP_MSG_RQURI);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001596
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001597 if (likely(HTTP_IS_SPHT(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001598 msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001599 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1600 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001601
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001602 if (likely((unsigned char)*ptr >= 128)) {
Willy Tarreau422246e2012-01-07 23:54:13 +01001603 /* non-ASCII chars are forbidden unless option
1604 * accept-invalid-http-request is enabled in the frontend.
1605 * In any case, we capture the faulty char.
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001606 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001607 if (msg->err_pos < -1)
1608 goto invalid_char;
1609 if (msg->err_pos == -1)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001610 msg->err_pos = ptr - msg_start;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001611 EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI);
1612 }
1613
1614 if (likely(HTTP_IS_CRLF(*ptr))) {
1615 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1616 goto http_msg_req09_uri_e;
1617 }
1618
1619 /* OK forbidden chars, 0..31 or 127 */
Willy Tarreau422246e2012-01-07 23:54:13 +01001620 invalid_char:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001621 msg->err_pos = ptr - msg_start;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001622 msg->err_state = HTTP_MSG_RQURI;
Willy Tarreau2e9506d2012-01-07 23:22:31 +01001623 state = HTTP_MSG_ERROR;
1624 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001625
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001626 case HTTP_MSG_RQURI_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001627 http_msg_rquri_sp:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001628 if (likely(!HTTP_IS_LWS(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001629 msg->sl.rq.v = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001630 goto http_msg_rqver;
1631 }
1632 if (likely(HTTP_IS_SPHT(*ptr)))
1633 EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP);
1634 /* so it's a CR/LF, meaning an HTTP 0.9 request */
1635 goto http_msg_req09_ver;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001636
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001637 case HTTP_MSG_RQVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001638 http_msg_rqver:
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001639 if (likely(HTTP_IS_VER_TOKEN(*ptr)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001640 EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER);
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001641
1642 if (likely(HTTP_IS_CRLF(*ptr))) {
Willy Tarreauea1175a2012-03-05 15:52:30 +01001643 msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001644 http_msg_rqline_eol:
1645 /* We have seen the end of line. Note that we do not
1646 * necessarily have the \n yet, but at least we know that we
1647 * have EITHER \r OR \n, otherwise the request would not be
1648 * complete. We can then record the request length and return
1649 * to the caller which will be able to register it.
1650 */
Willy Tarreau3a215be2012-03-09 21:39:51 +01001651 msg->sl.rq.l = ptr - msg_start - msg->sol;
Willy Tarreau4b89ad42007-03-04 18:13:58 +01001652 return ptr;
1653 }
1654
1655 /* neither an HTTP_VER token nor a CRLF */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001656 msg->err_state = HTTP_MSG_RQVER;
Willy Tarreau7552c032009-03-01 11:10:40 +01001657 state = HTTP_MSG_ERROR;
1658 break;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001659
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001660 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01001661#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001662 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
1663 exit(1);
1664#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01001665 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001666 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01001667
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001668 http_msg_ood:
Willy Tarreau7552c032009-03-01 11:10:40 +01001669 /* out of valid data */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001670 if (ret_state)
1671 *ret_state = state;
1672 if (ret_ptr)
Willy Tarreaua458b672012-03-05 11:17:50 +01001673 *ret_ptr = ptr - msg_start;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001674 return NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001675}
Willy Tarreau58f10d72006-12-04 02:26:12 +01001676
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001677/*
1678 * Returns the data from Authorization header. Function may be called more
1679 * than once so data is stored in txn->auth_data. When no header is found
1680 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
Thierry FOURNIER98d96952014-01-23 12:13:02 +01001681 * searching again for something we are unable to find anyway. However, if
1682 * the result if valid, the cache is not reused because we would risk to
Willy Tarreau87b09662015-04-03 00:22:06 +02001683 * have the credentials overwritten by another stream in parallel.
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001684 */
1685
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001686/* This bufffer is initialized in the file 'src/haproxy.c'. This length is
1687 * set according to global.tune.bufsize.
1688 */
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001689char *get_http_auth_buff;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001690
1691int
Willy Tarreau87b09662015-04-03 00:22:06 +02001692get_http_auth(struct stream *s)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001693{
1694
Willy Tarreaueee5b512015-04-03 23:46:31 +02001695 struct http_txn *txn = s->txn;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001696 struct chunk auth_method;
1697 struct hdr_ctx ctx;
1698 char *h, *p;
1699 int len;
1700
1701#ifdef DEBUG_AUTH
Willy Tarreau87b09662015-04-03 00:22:06 +02001702 printf("Auth for stream %p: %d\n", s, txn->auth.method);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001703#endif
1704
1705 if (txn->auth.method == HTTP_AUTH_WRONG)
1706 return 0;
1707
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001708 txn->auth.method = HTTP_AUTH_WRONG;
1709
1710 ctx.idx = 0;
Willy Tarreau844a7e72010-01-31 21:46:18 +01001711
1712 if (txn->flags & TX_USE_PX_CONN) {
1713 h = "Proxy-Authorization";
1714 len = strlen(h);
1715 } else {
1716 h = "Authorization";
1717 len = strlen(h);
1718 }
1719
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001720 if (!http_find_header2(h, len, s->req.buf->p, &txn->hdr_idx, &ctx))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001721 return 0;
1722
1723 h = ctx.line + ctx.val;
1724
1725 p = memchr(h, ' ', ctx.vlen);
Willy Tarreau5c557d12016-03-13 08:17:02 +01001726 len = p - h;
1727 if (!p || len <= 0)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001728 return 0;
1729
David Carlier7365f7d2016-04-04 11:54:42 +01001730 if (chunk_initlen(&auth_method, h, 0, len) != 1)
1731 return 0;
1732
Willy Tarreau5c557d12016-03-13 08:17:02 +01001733 chunk_initlen(&txn->auth.method_data, p + 1, 0, ctx.vlen - len - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001734
1735 if (!strncasecmp("Basic", auth_method.str, auth_method.len)) {
1736
1737 len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len,
Willy Tarreau7e2c6472012-10-29 20:44:36 +01001738 get_http_auth_buff, global.tune.bufsize - 1);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001739
1740 if (len < 0)
1741 return 0;
1742
1743
1744 get_http_auth_buff[len] = '\0';
1745
1746 p = strchr(get_http_auth_buff, ':');
1747
1748 if (!p)
1749 return 0;
1750
1751 txn->auth.user = get_http_auth_buff;
1752 *p = '\0';
1753 txn->auth.pass = p+1;
1754
1755 txn->auth.method = HTTP_AUTH_BASIC;
1756 return 1;
1757 }
1758
1759 return 0;
1760}
1761
Willy Tarreau58f10d72006-12-04 02:26:12 +01001762
Willy Tarreau8973c702007-01-21 23:58:29 +01001763/*
1764 * This function parses an HTTP message, either a request or a response,
Willy Tarreau8b1323e2012-03-09 14:46:19 +01001765 * depending on the initial msg->msg_state. The caller is responsible for
1766 * ensuring that the message does not wrap. The function can be preempted
1767 * everywhere when data are missing and recalled at the exact same location
1768 * with no information loss. The message may even be realigned between two
1769 * calls. The header index is re-initialized when switching from
Willy Tarreau9cdde232007-05-02 20:58:19 +02001770 * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other
Willy Tarreau26927362012-05-18 23:22:52 +02001771 * fields. Note that msg->sol will be initialized after completing the first
1772 * state, so that none of the msg pointers has to be initialized prior to the
1773 * first call.
Willy Tarreau8973c702007-01-21 23:58:29 +01001774 */
Willy Tarreaua560c212012-03-09 13:50:57 +01001775void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001776{
Willy Tarreau3770f232013-12-07 00:01:53 +01001777 enum ht_state state; /* updated only when leaving the FSM */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001778 register char *ptr, *end; /* request pointers, to avoid dereferences */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001779 struct buffer *buf;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001780
Willy Tarreaub326fcc2007-03-03 13:54:32 +01001781 state = msg->msg_state;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001782 buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001783 ptr = buf->p + msg->next;
1784 end = buf->p + buf->i;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001785
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001786 if (unlikely(ptr >= end))
1787 goto http_msg_ood;
Willy Tarreau58f10d72006-12-04 02:26:12 +01001788
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001789 switch (state) {
Willy Tarreau8973c702007-01-21 23:58:29 +01001790 /*
1791 * First, states that are specific to the response only.
1792 * We check them first so that request and headers are
1793 * closer to each other (accessed more often).
1794 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001795 case HTTP_MSG_RPBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001796 http_msg_rpbefore:
Willy Tarreau8973c702007-01-21 23:58:29 +01001797 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001798 /* we have a start of message, but we have to check
1799 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001800 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001801 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001802 if (unlikely(ptr != buf->p)) {
1803 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001804 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001805 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001806 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8973c702007-01-21 23:58:29 +01001807 }
Willy Tarreau26927362012-05-18 23:22:52 +02001808 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001809 msg->sl.st.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001810 hdr_idx_init(idx);
1811 state = HTTP_MSG_RPVER;
1812 goto http_msg_rpver;
1813 }
1814
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001815 if (unlikely(!HTTP_IS_CRLF(*ptr))) {
1816 state = HTTP_MSG_RPBEFORE;
Willy Tarreau8973c702007-01-21 23:58:29 +01001817 goto http_msg_invalid;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001818 }
Willy Tarreau8973c702007-01-21 23:58:29 +01001819
1820 if (unlikely(*ptr == '\n'))
1821 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1822 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR);
1823 /* stop here */
1824
Willy Tarreau8973c702007-01-21 23:58:29 +01001825 case HTTP_MSG_RPBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001826 http_msg_rpbefore_cr:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001827 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_RPBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001828 EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE);
1829 /* stop here */
1830
Willy Tarreau8973c702007-01-21 23:58:29 +01001831 case HTTP_MSG_RPVER:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001832 http_msg_rpver:
Willy Tarreau8973c702007-01-21 23:58:29 +01001833 case HTTP_MSG_RPVER_SP:
1834 case HTTP_MSG_RPCODE:
1835 case HTTP_MSG_RPCODE_SP:
1836 case HTTP_MSG_RPREASON:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001837 ptr = (char *)http_parse_stsline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001838 state, ptr, end,
1839 &msg->next, &msg->msg_state);
Willy Tarreau8973c702007-01-21 23:58:29 +01001840 if (unlikely(!ptr))
1841 return;
1842
1843 /* we have a full response and we know that we have either a CR
1844 * or an LF at <ptr>.
1845 */
Willy Tarreau8973c702007-01-21 23:58:29 +01001846 hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r');
1847
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001848 msg->sol = ptr - buf->p;
Willy Tarreau8973c702007-01-21 23:58:29 +01001849 if (likely(*ptr == '\r'))
1850 EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END);
1851 goto http_msg_rpline_end;
1852
Willy Tarreau8973c702007-01-21 23:58:29 +01001853 case HTTP_MSG_RPLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001854 http_msg_rpline_end:
Willy Tarreau8973c702007-01-21 23:58:29 +01001855 /* msg->sol must point to the first of CR or LF. */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001856 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_RPLINE_END);
Willy Tarreau8973c702007-01-21 23:58:29 +01001857 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
1858 /* stop here */
1859
1860 /*
1861 * Second, states that are specific to the request only
1862 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001863 case HTTP_MSG_RQBEFORE:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001864 http_msg_rqbefore:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001865 if (likely(HTTP_IS_TOKEN(*ptr))) {
Willy Tarreau15de77e2010-01-02 21:59:16 +01001866 /* we have a start of message, but we have to check
1867 * first if we need to remove some CRLF. We can only
Willy Tarreau2e046c62012-03-01 16:08:30 +01001868 * do this when o=0.
Willy Tarreau15de77e2010-01-02 21:59:16 +01001869 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001870 if (likely(ptr != buf->p)) {
1871 if (buf->o)
Willy Tarreau15de77e2010-01-02 21:59:16 +01001872 goto http_msg_ood;
Willy Tarreau1d3bcce2009-12-27 15:50:06 +01001873 /* Remove empty leading lines, as recommended by RFC2616. */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001874 bi_fast_delete(buf, ptr - buf->p);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001875 }
Willy Tarreau26927362012-05-18 23:22:52 +02001876 msg->sol = 0;
Willy Tarreaue92693a2012-09-24 21:13:39 +02001877 msg->sl.rq.l = 0; /* used in debug mode */
Willy Tarreau8973c702007-01-21 23:58:29 +01001878 state = HTTP_MSG_RQMETH;
1879 goto http_msg_rqmeth;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001880 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001881
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001882 if (unlikely(!HTTP_IS_CRLF(*ptr))) {
1883 state = HTTP_MSG_RQBEFORE;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001884 goto http_msg_invalid;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001885 }
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001886
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001887 if (unlikely(*ptr == '\n'))
1888 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
1889 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8973c702007-01-21 23:58:29 +01001890 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001891
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001892 case HTTP_MSG_RQBEFORE_CR:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001893 http_msg_rqbefore_cr:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001894 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_RQBEFORE_CR);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001895 EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE);
Willy Tarreau8973c702007-01-21 23:58:29 +01001896 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001897
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001898 case HTTP_MSG_RQMETH:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001899 http_msg_rqmeth:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001900 case HTTP_MSG_RQMETH_SP:
1901 case HTTP_MSG_RQURI:
1902 case HTTP_MSG_RQURI_SP:
1903 case HTTP_MSG_RQVER:
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02001904 ptr = (char *)http_parse_reqline(msg,
Willy Tarreaua458b672012-03-05 11:17:50 +01001905 state, ptr, end,
1906 &msg->next, &msg->msg_state);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001907 if (unlikely(!ptr))
1908 return;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001909
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001910 /* we have a full request and we know that we have either a CR
1911 * or an LF at <ptr>.
1912 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001913 hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r');
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001914
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001915 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001916 if (likely(*ptr == '\r'))
1917 EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001918 goto http_msg_rqline_end;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001919
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001920 case HTTP_MSG_RQLINE_END:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001921 http_msg_rqline_end:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001922 /* check for HTTP/0.9 request : no version information available.
1923 * msg->sol must point to the first of CR or LF.
1924 */
1925 if (unlikely(msg->sl.rq.v_l == 0))
1926 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001927
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001928 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_RQLINE_END);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001929 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST);
Willy Tarreau8973c702007-01-21 23:58:29 +01001930 /* stop here */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001931
Willy Tarreau8973c702007-01-21 23:58:29 +01001932 /*
1933 * Common states below
1934 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001935 case HTTP_MSG_HDR_FIRST:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001936 http_msg_hdr_first:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001937 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001938 if (likely(!HTTP_IS_CRLF(*ptr))) {
1939 goto http_msg_hdr_name;
1940 }
1941
1942 if (likely(*ptr == '\r'))
1943 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
1944 goto http_msg_last_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001945
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001946 case HTTP_MSG_HDR_NAME:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001947 http_msg_hdr_name:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001948 /* assumes msg->sol points to the first char */
1949 if (likely(HTTP_IS_TOKEN(*ptr)))
1950 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001951
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001952 if (likely(*ptr == ':'))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001953 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau58f10d72006-12-04 02:26:12 +01001954
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001955 if (likely(msg->err_pos < -1) || *ptr == '\n') {
1956 state = HTTP_MSG_HDR_NAME;
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001957 goto http_msg_invalid;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001958 }
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001959
1960 if (msg->err_pos == -1) /* capture error pointer */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001961 msg->err_pos = ptr - buf->p; /* >= 0 now */
Willy Tarreau32a4ec02009-04-02 11:35:18 +02001962
1963 /* and we still accept this non-token character */
1964 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001965
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001966 case HTTP_MSG_HDR_L1_SP:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001967 http_msg_hdr_l1_sp:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01001968 /* assumes msg->sol points to the first char */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001969 if (likely(HTTP_IS_SPHT(*ptr)))
1970 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01001971
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001972 /* header value can be basically anything except CR/LF */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001973 msg->sov = ptr - buf->p;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001974
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001975 if (likely(!HTTP_IS_CRLF(*ptr))) {
1976 goto http_msg_hdr_val;
1977 }
1978
1979 if (likely(*ptr == '\r'))
1980 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF);
1981 goto http_msg_hdr_l1_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001982
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001983 case HTTP_MSG_HDR_L1_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001984 http_msg_hdr_l1_lf:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001985 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_HDR_L1_LF);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001986 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01001987
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001988 case HTTP_MSG_HDR_L1_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02001989 http_msg_hdr_l1_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001990 if (likely(HTTP_IS_SPHT(*ptr))) {
1991 /* replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02001992 for (; buf->p + msg->sov < ptr; msg->sov++)
1993 buf->p[msg->sov] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001994 goto http_msg_hdr_l1_sp;
1995 }
Willy Tarreauaa9dce32007-03-18 23:50:16 +01001996 /* we had a header consisting only in spaces ! */
Willy Tarreau12e48b32012-03-05 16:57:34 +01001997 msg->eol = msg->sov;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01001998 goto http_msg_complete_header;
1999
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002000 case HTTP_MSG_HDR_VAL:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02002001 http_msg_hdr_val:
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002002 /* assumes msg->sol points to the first char, and msg->sov
2003 * points to the first character of the value.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002004 */
Willy Tarreau0431f9d2016-11-05 17:35:40 +01002005
2006 /* speedup: we'll skip packs of 4 or 8 bytes not containing bytes 0x0D
2007 * and lower. In fact since most of the time is spent in the loop, we
2008 * also remove the sign bit test so that bytes 0x8e..0x0d break the
2009 * loop, but we don't care since they're very rare in header values.
2010 */
2011#if defined(__x86_64__)
2012 while (ptr <= end - sizeof(long)) {
2013 if ((*(long *)ptr - 0x0e0e0e0e0e0e0e0eULL) & 0x8080808080808080ULL)
2014 goto http_msg_hdr_val2;
2015 ptr += sizeof(long);
2016 }
2017#endif
2018#if defined(__x86_64__) || \
2019 defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || \
2020 defined(__ARM_ARCH_7A__)
2021 while (ptr <= end - sizeof(int)) {
2022 if ((*(int*)ptr - 0x0e0e0e0e) & 0x80808080)
2023 goto http_msg_hdr_val2;
2024 ptr += sizeof(int);
2025 }
2026#endif
Willy Tarreau2afff9c2017-01-04 14:44:46 +01002027 if (ptr >= end) {
2028 state = HTTP_MSG_HDR_VAL;
2029 goto http_msg_ood;
2030 }
Willy Tarreau0431f9d2016-11-05 17:35:40 +01002031 http_msg_hdr_val2:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002032 if (likely(!HTTP_IS_CRLF(*ptr)))
Willy Tarreau0431f9d2016-11-05 17:35:40 +01002033 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val2, HTTP_MSG_HDR_VAL);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002034
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002035 msg->eol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002036 /* Note: we could also copy eol into ->eoh so that we have the
2037 * real header end in case it ends with lots of LWS, but is this
2038 * really needed ?
2039 */
2040 if (likely(*ptr == '\r'))
2041 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF);
2042 goto http_msg_hdr_l2_lf;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002043
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002044 case HTTP_MSG_HDR_L2_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02002045 http_msg_hdr_l2_lf:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002046 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_HDR_L2_LF);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002047 EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS);
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002048
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002049 case HTTP_MSG_HDR_L2_LWS:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02002050 http_msg_hdr_l2_lws:
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002051 if (unlikely(HTTP_IS_SPHT(*ptr))) {
2052 /* LWS: replace HT,CR,LF with spaces */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002053 for (; buf->p + msg->eol < ptr; msg->eol++)
2054 buf->p[msg->eol] = ' ';
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002055 goto http_msg_hdr_val;
2056 }
2057 http_msg_complete_header:
2058 /*
2059 * It was a new header, so the last one is finished.
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002060 * Assumes msg->sol points to the first char, msg->sov points
2061 * to the first character of the value and msg->eol to the
2062 * first CR or LF so we know how the line ends. We insert last
2063 * header into the index.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002064 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002065 if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r',
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002066 idx, idx->tail) < 0)) {
2067 state = HTTP_MSG_HDR_L2_LWS;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002068 goto http_msg_invalid;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002069 }
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002070
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002071 msg->sol = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002072 if (likely(!HTTP_IS_CRLF(*ptr))) {
2073 goto http_msg_hdr_name;
2074 }
2075
2076 if (likely(*ptr == '\r'))
2077 EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF);
2078 goto http_msg_last_lf;
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002079
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002080 case HTTP_MSG_LAST_LF:
Willy Tarreaue3f284a2010-09-28 19:42:42 +02002081 http_msg_last_lf:
Willy Tarreau0558a022014-03-13 15:48:45 +01002082 /* Assumes msg->sol points to the first of either CR or LF.
2083 * Sets ->sov and ->next to the total header length, ->eoh to
2084 * the last CRLF, and ->eol to the last CRLF length (1 or 2).
2085 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002086 EXPECT_LF_HERE(ptr, http_msg_invalid, HTTP_MSG_LAST_LF);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002087 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002088 msg->sov = msg->next = ptr - buf->p;
Willy Tarreau3a215be2012-03-09 21:39:51 +01002089 msg->eoh = msg->sol;
2090 msg->sol = 0;
Willy Tarreau0558a022014-03-13 15:48:45 +01002091 msg->eol = msg->sov - msg->eoh;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01002092 msg->msg_state = HTTP_MSG_BODY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002093 return;
Willy Tarreaub56928a2012-04-16 14:51:55 +02002094
2095 case HTTP_MSG_ERROR:
2096 /* this may only happen if we call http_msg_analyser() twice with an error */
2097 break;
2098
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002099 default:
Willy Tarreau3770f232013-12-07 00:01:53 +01002100#ifdef DEBUG_FULL
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002101 fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state);
2102 exit(1);
Willy Tarreau230fd0b2006-12-17 12:05:00 +01002103#endif
Willy Tarreau3770f232013-12-07 00:01:53 +01002104 ;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002105 }
2106 http_msg_ood:
2107 /* out of data */
Willy Tarreaub326fcc2007-03-03 13:54:32 +01002108 msg->msg_state = state;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002109 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002110 return;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002111
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002112 http_msg_invalid:
2113 /* invalid message */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002114 msg->err_state = state;
Willy Tarreaub326fcc2007-03-03 13:54:32 +01002115 msg->msg_state = HTTP_MSG_ERROR;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002116 msg->next = ptr - buf->p;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002117 return;
2118}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01002119
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002120/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
2121 * conversion succeeded, 0 in case of error. If the request was already 1.X,
2122 * nothing is done and 1 is returned.
2123 */
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002124static int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002125{
2126 int delta;
2127 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +01002128 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002129
2130 if (msg->sl.rq.v_l != 0)
2131 return 1;
2132
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03002133 /* RFC 1945 allows only GET for HTTP/0.9 requests */
2134 if (txn->meth != HTTP_METH_GET)
2135 return 0;
2136
Willy Tarreau9b28e032012-10-12 23:49:43 +02002137 cur_end = msg->chn->buf->p + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002138
2139 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +03002140 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
2141 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002142 }
2143 /* add HTTP version */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002144 delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +01002145 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002146 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02002147 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002148 HTTP_MSG_RQMETH,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002149 msg->chn->buf->p, cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +02002150 NULL, NULL);
2151 if (unlikely(!cur_end))
2152 return 0;
2153
2154 /* we have a full HTTP/1.0 request now and we know that
2155 * we have either a CR or an LF at <ptr>.
2156 */
2157 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
2158 return 1;
2159}
2160
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002161/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002162 * and "keep-alive" values. If we already know that some headers may safely
2163 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002164 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
2165 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +01002166 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002167 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
2168 * found, and TX_CON_*_SET is adjusted depending on what is left so only
2169 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002170 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +01002171 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002172void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +01002173{
Willy Tarreau5b154472009-12-21 20:11:07 +01002174 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002175 const char *hdr_val = "Connection";
2176 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +01002177
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002178 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +01002179 return;
2180
Willy Tarreau88d349d2010-01-25 12:15:43 +01002181 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2182 hdr_val = "Proxy-Connection";
2183 hdr_len = 16;
2184 }
2185
Willy Tarreau5b154472009-12-21 20:11:07 +01002186 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002187 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002188 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002189 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
2190 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002191 if (to_del & 2)
2192 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002193 else
2194 txn->flags |= TX_CON_KAL_SET;
2195 }
2196 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2197 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002198 if (to_del & 1)
2199 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002200 else
2201 txn->flags |= TX_CON_CLO_SET;
2202 }
Willy Tarreau50fc7772012-11-11 22:19:57 +01002203 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
2204 txn->flags |= TX_HDR_CONN_UPG;
2205 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002206 }
2207
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002208 txn->flags |= TX_HDR_CONN_PRS;
2209 return;
2210}
Willy Tarreau5b154472009-12-21 20:11:07 +01002211
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002212/* Apply desired changes on the Connection: header. Values may be removed and/or
2213 * added depending on the <wanted> flags, which are exclusively composed of
2214 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
2215 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
2216 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002217void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002218{
2219 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002220 const char *hdr_val = "Connection";
2221 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002222
2223 ctx.idx = 0;
2224
Willy Tarreau88d349d2010-01-25 12:15:43 +01002225
2226 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2227 hdr_val = "Proxy-Connection";
2228 hdr_len = 16;
2229 }
2230
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002231 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002232 while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002233 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
2234 if (wanted & TX_CON_KAL_SET)
2235 txn->flags |= TX_CON_KAL_SET;
2236 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002237 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +01002238 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002239 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
2240 if (wanted & TX_CON_CLO_SET)
2241 txn->flags |= TX_CON_CLO_SET;
2242 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002243 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +01002244 }
Willy Tarreau5b154472009-12-21 20:11:07 +01002245 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002246
2247 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
2248 return;
2249
2250 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
2251 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002252 hdr_val = "Connection: close";
2253 hdr_len = 17;
2254 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2255 hdr_val = "Proxy-Connection: close";
2256 hdr_len = 23;
2257 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002258 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002259 }
2260
2261 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
2262 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +01002263 hdr_val = "Connection: keep-alive";
2264 hdr_len = 22;
2265 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
2266 hdr_val = "Proxy-Connection: keep-alive";
2267 hdr_len = 28;
2268 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +01002269 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +01002270 }
2271 return;
Willy Tarreau5b154472009-12-21 20:11:07 +01002272}
2273
Christopher Faulet113f7de2015-12-14 14:52:13 +01002274/* Parse the chunk size at msg->next. Once done, caller should adjust ->next to
2275 * point to the first byte of data after the chunk size, so that we know we can
2276 * forward exactly msg->next bytes. msg->sol contains the exact number of bytes
2277 * forming the chunk size. That way it is always possible to differentiate
2278 * between the start of the body and the start of the data. Return the number
2279 * of byte parsed on success, 0 when some data is missing, <0 on error. Note:
2280 * this function is designed to parse wrapped CRLF at the end of the buffer.
Willy Tarreau115acb92009-12-26 13:56:06 +01002281 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002282static inline int http_parse_chunk_size(struct http_msg *msg)
Willy Tarreau115acb92009-12-26 13:56:06 +01002283{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002284 const struct buffer *buf = msg->chn->buf;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002285 const char *ptr = b_ptr(buf, msg->next);
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002286 const char *ptr_old = ptr;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002287 const char *end = buf->data + buf->size;
2288 const char *stop = bi_end(buf);
Willy Tarreau115acb92009-12-26 13:56:06 +01002289 unsigned int chunk = 0;
2290
2291 /* The chunk size is in the following form, though we are only
2292 * interested in the size and CRLF :
2293 * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF
2294 */
2295 while (1) {
2296 int c;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002297 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01002298 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002299 c = hex2i(*ptr);
Willy Tarreau115acb92009-12-26 13:56:06 +01002300 if (c < 0) /* not a hex digit anymore */
2301 break;
Willy Tarreau0161d622013-04-02 01:26:55 +02002302 if (unlikely(++ptr >= end))
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002303 ptr = buf->data;
Willy Tarreau431946e2012-02-24 19:20:12 +01002304 if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002305 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002306 chunk = (chunk << 4) + c;
2307 }
2308
Willy Tarreaud98cf932009-12-27 22:54:55 +01002309 /* empty size not allowed */
Willy Tarreau0161d622013-04-02 01:26:55 +02002310 if (unlikely(ptr == ptr_old))
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002311 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002312
Willy Tarreau2235b262016-11-05 15:50:20 +01002313 while (HTTP_IS_SPHT(*ptr)) {
Willy Tarreaud98cf932009-12-27 22:54:55 +01002314 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002315 ptr = buf->data;
Willy Tarreau0161d622013-04-02 01:26:55 +02002316 if (unlikely(ptr == stop))
Willy Tarreau115acb92009-12-26 13:56:06 +01002317 return 0;
Willy Tarreau115acb92009-12-26 13:56:06 +01002318 }
2319
Willy Tarreaud98cf932009-12-27 22:54:55 +01002320 /* Up to there, we know that at least one byte is present at *ptr. Check
2321 * for the end of chunk size.
2322 */
2323 while (1) {
2324 if (likely(HTTP_IS_CRLF(*ptr))) {
2325 /* we now have a CR or an LF at ptr */
2326 if (likely(*ptr == '\r')) {
2327 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002328 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002329 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002330 return 0;
2331 }
Willy Tarreau115acb92009-12-26 13:56:06 +01002332
Willy Tarreaud98cf932009-12-27 22:54:55 +01002333 if (*ptr != '\n')
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002334 goto error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002335 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002336 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002337 /* done */
2338 break;
2339 }
2340 else if (*ptr == ';') {
2341 /* chunk extension, ends at next CRLF */
2342 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002343 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002344 if (ptr == stop)
Willy Tarreau115acb92009-12-26 13:56:06 +01002345 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002346
2347 while (!HTTP_IS_CRLF(*ptr)) {
2348 if (++ptr >= end)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002349 ptr = buf->data;
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002350 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002351 return 0;
2352 }
2353 /* we have a CRLF now, loop above */
2354 continue;
Willy Tarreau115acb92009-12-26 13:56:06 +01002355 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002356 else
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002357 goto error;
Willy Tarreau115acb92009-12-26 13:56:06 +01002358 }
2359
Christopher Faulet113f7de2015-12-14 14:52:13 +01002360 /* OK we found our CRLF and now <ptr> points to the next byte, which may
2361 * or may not be present. We save the number of bytes parsed into
2362 * msg->sol.
Willy Tarreau115acb92009-12-26 13:56:06 +01002363 */
Willy Tarreauc24715e2014-04-17 15:21:20 +02002364 msg->sol = ptr - ptr_old;
Willy Tarreau0161d622013-04-02 01:26:55 +02002365 if (unlikely(ptr < ptr_old))
Willy Tarreauc24715e2014-04-17 15:21:20 +02002366 msg->sol += buf->size;
Willy Tarreau124d9912011-03-01 20:30:48 +01002367 msg->chunk_len = chunk;
2368 msg->body_len += chunk;
Christopher Faulet113f7de2015-12-14 14:52:13 +01002369 return msg->sol;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002370 error:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002371 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002372 return -1;
Willy Tarreau115acb92009-12-26 13:56:06 +01002373}
2374
Christopher Faulet113f7de2015-12-14 14:52:13 +01002375/* This function skips trailers in the buffer associated with HTTP message
2376 * <msg>. The first visited position is msg->next. If the end of the trailers is
2377 * found, the function returns >0. So, the caller can automatically schedul it
2378 * to be forwarded, and switch msg->msg_state to HTTP_MSG_DONE. If not enough
2379 * data are available, the function does not change anything except maybe
2380 * msg->sol if it could parse some lines, and returns zero. If a parse error
2381 * is encountered, the function returns < 0 and does not change anything except
2382 * maybe msg->sol. Note that the message must already be in HTTP_MSG_TRAILERS
2383 * state before calling this function, which implies that all non-trailers data
2384 * have already been scheduled for forwarding, and that msg->next exactly
2385 * matches the length of trailers already parsed and not forwarded. It is also
2386 * important to note that this function is designed to be able to parse wrapped
2387 * headers at end of buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002388 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002389static int http_forward_trailers(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002390{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002391 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002392
Christopher Faulet113f7de2015-12-14 14:52:13 +01002393 /* we have msg->next which points to next line. Look for CRLF. But
2394 * first, we reset msg->sol */
2395 msg->sol = 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002396 while (1) {
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002397 const char *p1 = NULL, *p2 = NULL;
Christopher Faulet2fb28802015-12-01 10:40:57 +01002398 const char *start = b_ptr(buf, msg->next + msg->sol);
2399 const char *stop = bi_end(buf);
2400 const char *ptr = start;
2401 int bytes = 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002402
2403 /* scan current line and stop at LF or CRLF */
2404 while (1) {
Willy Tarreau363a5bb2012-03-02 20:14:45 +01002405 if (ptr == stop)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002406 return 0;
2407
2408 if (*ptr == '\n') {
2409 if (!p1)
2410 p1 = ptr;
2411 p2 = ptr;
2412 break;
2413 }
2414
2415 if (*ptr == '\r') {
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002416 if (p1) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002417 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002418 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002419 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01002420 p1 = ptr;
2421 }
2422
2423 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002424 if (ptr >= buf->data + buf->size)
2425 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002426 }
2427
2428 /* after LF; point to beginning of next line */
2429 p2++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002430 if (p2 >= buf->data + buf->size)
2431 p2 = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002432
Christopher Faulet2fb28802015-12-01 10:40:57 +01002433 bytes = p2 - start;
Willy Tarreau638cd022010-01-03 07:42:04 +01002434 if (bytes < 0)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002435 bytes += buf->size;
Christopher Faulet2fb28802015-12-01 10:40:57 +01002436 msg->sol += bytes;
Willy Tarreau638cd022010-01-03 07:42:04 +01002437
Christopher Fauletd7c91962015-04-30 11:48:27 +02002438 /* LF/CRLF at beginning of line => end of trailers at p2.
2439 * Everything was scheduled for forwarding, there's nothing left
Christopher Faulet2fb28802015-12-01 10:40:57 +01002440 * from this message. */
2441 if (p1 == start)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002442 return 1;
Christopher Faulet2fb28802015-12-01 10:40:57 +01002443
Willy Tarreaud98cf932009-12-27 22:54:55 +01002444 /* OK, next line then */
Willy Tarreaud98cf932009-12-27 22:54:55 +01002445 }
2446}
2447
Christopher Faulet113f7de2015-12-14 14:52:13 +01002448/* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF or
2449 * a possible LF alone at the end of a chunk. The caller should adjust msg->next
2450 * in order to include this part into the next forwarding phase. Note that the
2451 * caller must ensure that ->p points to the first byte to parse. It returns
2452 * the number of bytes parsed on success, so the caller can set msg_state to
2453 * HTTP_MSG_CHUNK_SIZE. If not enough data are available, the function does not
2454 * change anything and returns zero. If a parse error is encountered, the
2455 * function returns < 0. Note: this function is designed to parse wrapped CRLF
2456 * at the end of the buffer.
Willy Tarreaud98cf932009-12-27 22:54:55 +01002457 */
Willy Tarreau24e6d972012-10-26 00:49:52 +02002458static inline int http_skip_chunk_crlf(struct http_msg *msg)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002459{
Willy Tarreau9b28e032012-10-12 23:49:43 +02002460 const struct buffer *buf = msg->chn->buf;
Willy Tarreau4baf44b2012-03-09 14:10:20 +01002461 const char *ptr;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002462 int bytes;
2463
2464 /* NB: we'll check data availabilty at the end. It's not a
2465 * problem because whatever we match first will be checked
2466 * against the correct length.
2467 */
2468 bytes = 1;
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002469 ptr = b_ptr(buf, msg->next);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002470 if (*ptr == '\r') {
2471 bytes++;
2472 ptr++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002473 if (ptr >= buf->data + buf->size)
2474 ptr = buf->data;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002475 }
2476
Willy Tarreau0669d7d2014-04-17 11:40:10 +02002477 if (msg->next + bytes > buf->i)
Willy Tarreaud98cf932009-12-27 22:54:55 +01002478 return 0;
2479
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002480 if (*ptr != '\n') {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02002481 msg->err_pos = buffer_count(buf, buf->p, ptr);
Willy Tarreaud98cf932009-12-27 22:54:55 +01002482 return -1;
Willy Tarreaue1582eb2010-12-12 13:10:11 +01002483 }
Christopher Faulet113f7de2015-12-14 14:52:13 +01002484 return bytes;
Willy Tarreaud98cf932009-12-27 22:54:55 +01002485}
Willy Tarreau5b154472009-12-21 20:11:07 +01002486
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002487/* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the
2488 * value is larger than 1000, it is bound to 1000. The parser consumes up to
2489 * 1 digit, one dot and 3 digits and stops on the first invalid character.
2490 * Unparsable qvalues return 1000 as "q=1.000".
2491 */
Thierry FOURNIERad903512014-04-11 17:51:01 +02002492int parse_qvalue(const char *qvalue, const char **end)
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002493{
2494 int q = 1000;
2495
Willy Tarreau506c69a2014-07-08 00:59:48 +02002496 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002497 goto out;
2498 q = (*qvalue++ - '0') * 1000;
2499
2500 if (*qvalue++ != '.')
2501 goto out;
2502
Willy Tarreau506c69a2014-07-08 00:59:48 +02002503 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002504 goto out;
2505 q += (*qvalue++ - '0') * 100;
2506
Willy Tarreau506c69a2014-07-08 00:59:48 +02002507 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002508 goto out;
2509 q += (*qvalue++ - '0') * 10;
2510
Willy Tarreau506c69a2014-07-08 00:59:48 +02002511 if (!isdigit((unsigned char)*qvalue))
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002512 goto out;
2513 q += (*qvalue++ - '0') * 1;
2514 out:
2515 if (q > 1000)
2516 q = 1000;
Willy Tarreau38b3aa52014-04-22 23:32:05 +02002517 if (end)
Thierry FOURNIERad903512014-04-11 17:51:01 +02002518 *end = qvalue;
Willy Tarreau0e9b1b42014-03-19 12:07:52 +01002519 return q;
2520}
William Lallemand82fe75c2012-10-23 10:25:10 +02002521
Willy Tarreau87b09662015-04-03 00:22:06 +02002522void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg)
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002523{
Willy Tarreaud0d8da92015-04-04 02:10:38 +02002524 struct proxy *fe = strm_fe(s);
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002525 int tmp = TX_CON_WANT_KAL;
2526
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002527 if (!((fe->options2|s->be->options2) & PR_O2_FAKE_KA)) {
2528 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002529 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
2530 tmp = TX_CON_WANT_TUN;
2531
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002532 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002533 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2534 tmp = TX_CON_WANT_TUN;
2535 }
2536
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002537 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002538 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) {
2539 /* option httpclose + server_close => forceclose */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002540 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002541 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
2542 tmp = TX_CON_WANT_CLO;
2543 else
2544 tmp = TX_CON_WANT_SCL;
2545 }
2546
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002547 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL ||
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002548 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
2549 tmp = TX_CON_WANT_CLO;
2550
2551 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
2552 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
2553
2554 if (!(txn->flags & TX_HDR_CONN_PRS) &&
2555 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
2556 /* parse the Connection header and possibly clean it */
2557 int to_del = 0;
2558 if ((msg->flags & HTTP_MSGF_VER_11) ||
2559 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002560 !((fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002561 to_del |= 2; /* remove "keep-alive" */
2562 if (!(msg->flags & HTTP_MSGF_VER_11))
2563 to_del |= 1; /* remove "close" */
2564 http_parse_connection_header(txn, msg, to_del);
2565 }
2566
2567 /* check if client or config asks for explicit close in KAL/SCL */
2568 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
2569 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
2570 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
2571 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
2572 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002573 fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02002574 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
2575}
William Lallemand82fe75c2012-10-23 10:25:10 +02002576
Willy Tarreaud787e662009-07-07 10:14:51 +02002577/* This stream analyser waits for a complete HTTP request. It returns 1 if the
2578 * processing can continue on next analysers, or zero if it either needs more
2579 * data or wants to immediately abort the request (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002580 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
Willy Tarreaud787e662009-07-07 10:14:51 +02002581 * when it has nothing left to do, and may remove any analyser when it wants to
2582 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002583 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002584int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002585{
Willy Tarreau59234e92008-11-30 23:51:27 +01002586 /*
2587 * We will parse the partial (or complete) lines.
2588 * We will check the request syntax, and also join multi-line
2589 * headers. An index of all the lines will be elaborated while
2590 * parsing.
2591 *
2592 * For the parsing, we use a 28 states FSM.
2593 *
2594 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02002595 * req->buf->p = beginning of request
2596 * req->buf->p + msg->eoh = end of processed headers / start of current one
2597 * req->buf->p + req->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02002598 * msg->eol = end of current header or line (LF or CRLF)
2599 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +02002600 *
2601 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreaue7dff022015-04-03 01:14:29 +02002602 * we will set a few fields (txn->meth, sn->flags/SF_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +02002603 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
2604 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +01002605 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002606
Willy Tarreau59234e92008-11-30 23:51:27 +01002607 int cur_idx;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002608 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002609 struct http_txn *txn = s->txn;
Willy Tarreau59234e92008-11-30 23:51:27 +01002610 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +02002611 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +01002612
Willy Tarreau87b09662015-04-03 00:22:06 +02002613 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +01002614 now_ms, __FUNCTION__,
2615 s,
2616 req,
2617 req->rex, req->wex,
2618 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002619 req->buf->i,
Willy Tarreau6bf17362009-02-24 10:48:35 +01002620 req->analysers);
2621
Willy Tarreau52a0c602009-08-16 22:45:38 +02002622 /* we're speaking HTTP here, so let's speak HTTP to the client */
2623 s->srv_error = http_return_srv_error;
2624
Willy Tarreau83e3af02009-12-28 17:39:57 +01002625 /* There's a protected area at the end of the buffer for rewriting
2626 * purposes. We don't want to start to parse the request if the
2627 * protected area is affected, because we may have to move processed
2628 * data later, which is much more complicated.
2629 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002630 if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02002631
2632 /* This point is executed when some data is avalaible for analysis,
2633 * so we log the end of the idle time. */
2634 if (s->logs.t_idle == -1)
2635 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
2636
Willy Tarreau379357a2013-06-08 12:55:46 +02002637 if (txn->flags & TX_NOT_FIRST) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01002638 if (unlikely(!channel_is_rewritable(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002639 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +01002640 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002641 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002642 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002643 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002644 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +01002645 return 0;
2646 }
Willy Tarreau379357a2013-06-08 12:55:46 +02002647 if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) ||
2648 bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite))
2649 buffer_slow_realign(req->buf);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002650 }
2651
Willy Tarreau9b28e032012-10-12 23:49:43 +02002652 if (likely(msg->next < req->buf->i)) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +01002653 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01002654 }
2655
Willy Tarreau59234e92008-11-30 23:51:27 +01002656 /* 1: we might have to print this header in debug mode */
2657 if (unlikely((global.mode & MODE_DEBUG) &&
2658 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02002659 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002660 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002661
Willy Tarreau9b28e032012-10-12 23:49:43 +02002662 sol = req->buf->p;
Willy Tarreaue92693a2012-09-24 21:13:39 +02002663 /* this is a bit complex : in case of error on the request line,
2664 * we know that rq.l is still zero, so we display only the part
2665 * up to the end of the line (truncated by debug_hdr).
2666 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002667 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i);
Willy Tarreau59234e92008-11-30 23:51:27 +01002668 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +01002669
Willy Tarreau59234e92008-11-30 23:51:27 +01002670 sol += hdr_idx_first_pos(&txn->hdr_idx);
2671 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002672
Willy Tarreau59234e92008-11-30 23:51:27 +01002673 while (cur_idx) {
2674 eol = sol + txn->hdr_idx.v[cur_idx].len;
2675 debug_hdr("clihdr", s, sol, eol);
2676 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
2677 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002678 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002679 }
2680
Willy Tarreau58f10d72006-12-04 02:26:12 +01002681
Willy Tarreau59234e92008-11-30 23:51:27 +01002682 /*
2683 * Now we quickly check if we have found a full valid request.
2684 * If not so, we check the FD and buffer states before leaving.
2685 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01002686 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002687 * requests are checked first. When waiting for a second request
Willy Tarreau87b09662015-04-03 00:22:06 +02002688 * on a keep-alive stream, if we encounter and error, close, t/o,
2689 * we note the error in the stream flags but don't set any state.
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002690 * Since the error will be noted there, it will not be counted by
Willy Tarreau87b09662015-04-03 00:22:06 +02002691 * process_stream() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +02002692 * Last, we may increase some tracked counters' http request errors on
2693 * the cases that are deliberately the client's fault. For instance,
2694 * a timeout or connection reset is not counted as an error. However
2695 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +01002696 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01002697
Willy Tarreau655dce92009-11-08 13:10:58 +01002698 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002699 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002700 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002701 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002702 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau87b09662015-04-03 00:22:06 +02002703 stream_inc_http_req_ctr(s);
2704 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002705 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002706 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +01002707 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002708
Willy Tarreau59234e92008-11-30 23:51:27 +01002709 /* 1: Since we are in header mode, if there's no space
2710 * left for headers, we won't be able to free more
Willy Tarreau87b09662015-04-03 00:22:06 +02002711 * later, so the stream will never terminate. We
Willy Tarreau59234e92008-11-30 23:51:27 +01002712 * must terminate it now.
2713 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002714 if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002715 /* FIXME: check if URI is set and return Status
2716 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +01002717 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002718 stream_inc_http_req_ctr(s);
2719 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002720 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +02002721 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02002722 msg->err_pos = req->buf->i;
Willy Tarreau59234e92008-11-30 23:51:27 +01002723 goto return_bad_req;
2724 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002725
Willy Tarreau59234e92008-11-30 23:51:27 +01002726 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002727 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002728 if (!(s->flags & SF_ERR_MASK))
2729 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002730
Willy Tarreaufcffa692010-01-10 14:21:19 +01002731 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002732 goto failed_keep_alive;
2733
Willy Tarreau0f228a02015-05-01 15:37:53 +02002734 if (sess->fe->options & PR_O_IGNORE_PRB)
2735 goto failed_keep_alive;
2736
Willy Tarreau59234e92008-11-30 23:51:27 +01002737 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002738 if (msg->err_pos >= 0) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002739 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02002740 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002741 }
2742
Willy Tarreaudc979f22012-12-04 10:39:01 +01002743 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002744 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01002745 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauleta94e5a52015-12-09 15:55:06 +01002746 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002747 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +02002748 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002749 proxy_inc_fe_req_ctr(sess->fe);
2750 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002751 if (sess->listener->counters)
2752 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002753
Willy Tarreaue7dff022015-04-03 01:14:29 +02002754 if (!(s->flags & SF_FINST_MASK))
2755 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01002756 return 0;
2757 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +02002758
Willy Tarreau59234e92008-11-30 23:51:27 +01002759 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002760 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002761 if (!(s->flags & SF_ERR_MASK))
2762 s->flags |= SF_ERR_CLITO;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002763
Willy Tarreaufcffa692010-01-10 14:21:19 +01002764 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002765 goto failed_keep_alive;
2766
Willy Tarreau0f228a02015-05-01 15:37:53 +02002767 if (sess->fe->options & PR_O_IGNORE_PRB)
2768 goto failed_keep_alive;
2769
Willy Tarreau59234e92008-11-30 23:51:27 +01002770 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +02002771 if (msg->err_pos >= 0) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002772 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +02002773 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02002774 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002775 txn->status = 408;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002776 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01002777 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002778 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +01002779 req->analysers &= AN_REQ_FLT_END;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002780
Willy Tarreau87b09662015-04-03 00:22:06 +02002781 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002782 proxy_inc_fe_req_ctr(sess->fe);
2783 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002784 if (sess->listener->counters)
2785 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002786
Willy Tarreaue7dff022015-04-03 01:14:29 +02002787 if (!(s->flags & SF_FINST_MASK))
2788 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +01002789 return 0;
2790 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02002791
Willy Tarreau59234e92008-11-30 23:51:27 +01002792 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002793 else if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002794 if (!(s->flags & SF_ERR_MASK))
2795 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +01002796
Willy Tarreaufcffa692010-01-10 14:21:19 +01002797 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +01002798 goto failed_keep_alive;
2799
Willy Tarreau0f228a02015-05-01 15:37:53 +02002800 if (sess->fe->options & PR_O_IGNORE_PRB)
2801 goto failed_keep_alive;
2802
Willy Tarreau4076a152009-04-02 15:18:36 +02002803 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002804 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +01002805 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002806 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01002807 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002808 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +01002809 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +02002810 stream_inc_http_err_ctr(s);
2811 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002812 proxy_inc_fe_req_ctr(sess->fe);
2813 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002814 if (sess->listener->counters)
2815 sess->listener->counters->failed_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002816
Willy Tarreaue7dff022015-04-03 01:14:29 +02002817 if (!(s->flags & SF_FINST_MASK))
2818 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02002819 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01002820 }
2821
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002822 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002823 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002824 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau5e205522011-12-17 16:34:27 +01002825#ifdef TCP_QUICKACK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002826 if (sess->listener->options & LI_O_NOQUICKACK && req->buf->i &&
2827 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
Willy Tarreau5e205522011-12-17 16:34:27 +01002828 /* We need more data, we have to re-enable quick-ack in case we
2829 * previously disabled it, otherwise we might cause the client
2830 * to delay next data.
2831 */
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02002832 setsockopt(__objt_conn(sess->origin)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01002833 }
2834#endif
Willy Tarreau1b194fe2009-03-21 21:10:04 +01002835
Willy Tarreaufcffa692010-01-10 14:21:19 +01002836 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
2837 /* If the client starts to talk, let's fall back to
2838 * request timeout processing.
2839 */
2840 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +01002841 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +01002842 }
2843
Willy Tarreau59234e92008-11-30 23:51:27 +01002844 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +01002845 if (!tick_isset(req->analyse_exp)) {
2846 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
2847 (txn->flags & TX_WAIT_NEXT_RQ) &&
2848 tick_isset(s->be->timeout.httpka))
2849 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
2850 else
2851 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
2852 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002853
Willy Tarreau59234e92008-11-30 23:51:27 +01002854 /* we're not ready yet */
2855 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002856
2857 failed_keep_alive:
2858 /* Here we process low-level errors for keep-alive requests. In
2859 * short, if the request is not the first one and it experiences
2860 * a timeout, read error or shutdown, we just silently close so
2861 * that the client can try again.
2862 */
2863 txn->status = 0;
2864 msg->msg_state = HTTP_MSG_RQBEFORE;
Christopher Faulet0184ea72017-01-05 14:06:34 +01002865 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaub608feb2010-01-02 22:47:18 +01002866 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +02002867 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002868 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01002869 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +01002870 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +01002871 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002872
Willy Tarreaud787e662009-07-07 10:14:51 +02002873 /* OK now we have a complete HTTP request with indexed headers. Let's
2874 * complete the request parsing by setting a few fields we will need
Willy Tarreau9b28e032012-10-12 23:49:43 +02002875 * later. At this point, we have the last CRLF at req->buf->data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +01002876 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +01002877 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01002878 * byte after the last LF. msg->sov points to the first byte of data.
2879 * msg->eol cannot be trusted because it may have been left uninitialized
2880 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +02002881 */
Willy Tarreau9cdde232007-05-02 20:58:19 +02002882
Willy Tarreau87b09662015-04-03 00:22:06 +02002883 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002884 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002885
Willy Tarreaub16a5742010-01-10 14:46:16 +01002886 if (txn->flags & TX_WAIT_NEXT_RQ) {
2887 /* kill the pending keep-alive timeout */
2888 txn->flags &= ~TX_WAIT_NEXT_RQ;
2889 req->analyse_exp = TICK_ETERNITY;
2890 }
2891
2892
Willy Tarreaud787e662009-07-07 10:14:51 +02002893 /* Maybe we found in invalid header name while we were configured not
2894 * to block on that, so we have to capture it now.
2895 */
2896 if (unlikely(msg->err_pos >= 0))
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002897 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +02002898
Willy Tarreau59234e92008-11-30 23:51:27 +01002899 /*
2900 * 1: identify the method
2901 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002902 txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +01002903
2904 /* we can make use of server redirect on GET and HEAD */
2905 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +02002906 s->flags |= SF_REDIRECTABLE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +02002907
Willy Tarreau59234e92008-11-30 23:51:27 +01002908 /*
2909 * 2: check if the URI matches the monitor_uri.
2910 * We have to do this for every request which gets in, because
2911 * the monitor-uri is defined by the frontend.
2912 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002913 if (unlikely((sess->fe->monitor_uri_len != 0) &&
2914 (sess->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02002915 !memcmp(req->buf->p + msg->sl.rq.u,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002916 sess->fe->monitor_uri,
2917 sess->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01002918 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002919 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +01002920 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002921 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002922
Willy Tarreaue7dff022015-04-03 01:14:29 +02002923 s->flags |= SF_MONITOR;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002924 sess->fe->fe_counters.intercepted_req++;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002925
Willy Tarreau59234e92008-11-30 23:51:27 +01002926 /* Check if we want to fail this monitor request or not */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002927 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
Willy Tarreau192252e2015-04-04 01:47:55 +02002928 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +02002929
Willy Tarreau59234e92008-11-30 23:51:27 +01002930 ret = acl_pass(ret);
2931 if (cond->pol == ACL_COND_UNLESS)
2932 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002933
Willy Tarreau59234e92008-11-30 23:51:27 +01002934 if (ret) {
2935 /* we fail this request, let's return 503 service unavail */
2936 txn->status = 503;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002937 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02002938 if (!(s->flags & SF_ERR_MASK))
2939 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002940 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +01002941 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002942 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002943
Willy Tarreau59234e92008-11-30 23:51:27 +01002944 /* nothing to fail, let's reply normaly */
2945 txn->status = 200;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002946 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02002947 if (!(s->flags & SF_ERR_MASK))
2948 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +01002949 goto return_prx_cond;
2950 }
2951
2952 /*
2953 * 3: Maybe we have to copy the original REQURI for the logs ?
2954 * Note: we cannot log anymore if the request has been
2955 * classified as invalid.
2956 */
2957 if (unlikely(s->logs.logwait & LW_REQ)) {
2958 /* we have a complete HTTP request that we must log */
2959 if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) {
2960 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002961
Willy Tarreau59234e92008-11-30 23:51:27 +01002962 if (urilen >= REQURI_LEN)
2963 urilen = REQURI_LEN - 1;
Willy Tarreau9b28e032012-10-12 23:49:43 +02002964 memcpy(txn->uri, req->buf->p, urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +01002965 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002966
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002967 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +01002968 s->do_log(s);
2969 } else {
2970 Alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01002971 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002972 }
Willy Tarreau06619262006-12-17 08:37:22 +01002973
Willy Tarreau91852eb2015-05-01 13:26:00 +02002974 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
2975 * exactly one digit "." one digit. This check may be disabled using
2976 * option accept-invalid-http-request.
2977 */
2978 if (!(sess->fe->options2 & PR_O2_REQBUG_OK)) {
2979 if (msg->sl.rq.v_l != 8) {
2980 msg->err_pos = msg->sl.rq.v;
2981 goto return_bad_req;
2982 }
2983
2984 if (req->buf->p[msg->sl.rq.v + 4] != '/' ||
2985 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 5]) ||
2986 req->buf->p[msg->sl.rq.v + 6] != '.' ||
2987 !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 7])) {
2988 msg->err_pos = msg->sl.rq.v + 4;
2989 goto return_bad_req;
2990 }
2991 }
Willy Tarreau13317662015-05-01 13:47:08 +02002992 else {
2993 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
2994 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
2995 goto return_bad_req;
2996 }
Willy Tarreau91852eb2015-05-01 13:26:00 +02002997
Willy Tarreau5b154472009-12-21 20:11:07 +01002998 /* ... and check if the request is HTTP/1.1 or above */
2999 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02003000 ((req->buf->p[msg->sl.rq.v + 5] > '1') ||
3001 ((req->buf->p[msg->sl.rq.v + 5] == '1') &&
3002 (req->buf->p[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003003 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01003004
3005 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01003006 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 +01003007
Willy Tarreau88d349d2010-01-25 12:15:43 +01003008 /* if the frontend has "option http-use-proxy-header", we'll check if
3009 * we have what looks like a proxied connection instead of a connection,
3010 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
3011 * Note that this is *not* RFC-compliant, however browsers and proxies
3012 * happen to do that despite being non-standard :-(
3013 * We consider that a request not beginning with either '/' or '*' is
3014 * a proxied connection, which covers both "scheme://location" and
3015 * CONNECT ip:port.
3016 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003017 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02003018 req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +01003019 txn->flags |= TX_USE_PX_CONN;
3020
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003021 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003022 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003023
Willy Tarreau59234e92008-11-30 23:51:27 +01003024 /* 5: we may need to capture headers */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02003025 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02003026 capture_headers(req->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02003027 s->req_cap, sess->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +02003028
Willy Tarreau557f1992015-05-01 10:05:17 +02003029 /* 6: determine the transfer-length according to RFC2616 #4.4, updated
3030 * by RFC7230#3.3.3 :
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003031 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003032 * The length of a message body is determined by one of the following
3033 * (in order of precedence):
Willy Tarreau32b47f42009-10-18 20:55:02 +02003034 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003035 * 1. Any response to a HEAD request and any response with a 1xx
3036 * (Informational), 204 (No Content), or 304 (Not Modified) status
3037 * code is always terminated by the first empty line after the
3038 * header fields, regardless of the header fields present in the
3039 * message, and thus cannot contain a message body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02003040 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003041 * 2. Any 2xx (Successful) response to a CONNECT request implies that
3042 * the connection will become a tunnel immediately after the empty
3043 * line that concludes the header fields. A client MUST ignore any
3044 * Content-Length or Transfer-Encoding header fields received in
3045 * such a message.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003046 *
Willy Tarreau557f1992015-05-01 10:05:17 +02003047 * 3. If a Transfer-Encoding header field is present and the chunked
3048 * transfer coding (Section 4.1) is the final encoding, the message
3049 * body length is determined by reading and decoding the chunked
3050 * data until the transfer coding indicates the data is complete.
3051 *
3052 * If a Transfer-Encoding header field is present in a response and
3053 * the chunked transfer coding is not the final encoding, the
3054 * message body length is determined by reading the connection until
3055 * it is closed by the server. If a Transfer-Encoding header field
3056 * is present in a request and the chunked transfer coding is not
3057 * the final encoding, the message body length cannot be determined
3058 * reliably; the server MUST respond with the 400 (Bad Request)
3059 * status code and then close the connection.
3060 *
3061 * If a message is received with both a Transfer-Encoding and a
3062 * Content-Length header field, the Transfer-Encoding overrides the
3063 * Content-Length. Such a message might indicate an attempt to
3064 * perform request smuggling (Section 9.5) or response splitting
3065 * (Section 9.4) and ought to be handled as an error. A sender MUST
3066 * remove the received Content-Length field prior to forwarding such
3067 * a message downstream.
3068 *
3069 * 4. If a message is received without Transfer-Encoding and with
3070 * either multiple Content-Length header fields having differing
3071 * field-values or a single Content-Length header field having an
3072 * invalid value, then the message framing is invalid and the
3073 * recipient MUST treat it as an unrecoverable error. If this is a
3074 * request message, the server MUST respond with a 400 (Bad Request)
3075 * status code and then close the connection. If this is a response
3076 * message received by a proxy, the proxy MUST close the connection
3077 * to the server, discard the received response, and send a 502 (Bad
3078 * Gateway) response to the client. If this is a response message
3079 * received by a user agent, the user agent MUST close the
3080 * connection to the server and discard the received response.
3081 *
3082 * 5. If a valid Content-Length header field is present without
3083 * Transfer-Encoding, its decimal value defines the expected message
3084 * body length in octets. If the sender closes the connection or
3085 * the recipient times out before the indicated number of octets are
3086 * received, the recipient MUST consider the message to be
3087 * incomplete and close the connection.
3088 *
3089 * 6. If this is a request message and none of the above are true, then
3090 * the message body length is zero (no message body is present).
3091 *
3092 * 7. Otherwise, this is a response message without a declared message
3093 * body length, so the message body length is determined by the
3094 * number of octets received prior to the server closing the
3095 * connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02003096 */
3097
Willy Tarreau32b47f42009-10-18 20:55:02 +02003098 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003099 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreau4979d5c2015-05-01 10:06:30 +02003100 while (http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003101 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003102 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
3103 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau34dfc602015-05-01 10:09:49 +02003104 /* chunked not last, return badreq */
3105 goto return_bad_req;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003106 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003107 }
3108
Willy Tarreau1c913912015-04-30 10:57:51 +02003109 /* Chunked requests must have their content-length removed */
Willy Tarreau32b47f42009-10-18 20:55:02 +02003110 ctx.idx = 0;
Willy Tarreau1c913912015-04-30 10:57:51 +02003111 if (msg->flags & HTTP_MSGF_TE_CHNK) {
3112 while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx))
3113 http_remove_header2(msg, &txn->hdr_idx, &ctx);
3114 }
Willy Tarreau34dfc602015-05-01 10:09:49 +02003115 else while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02003116 signed long long cl;
3117
Willy Tarreauad14f752011-09-02 20:33:27 +02003118 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003119 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003120 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02003121 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003122
Willy Tarreauad14f752011-09-02 20:33:27 +02003123 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003124 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003125 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02003126 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003127
Willy Tarreauad14f752011-09-02 20:33:27 +02003128 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003129 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003130 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02003131 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003132
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003133 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003134 msg->err_pos = ctx.line + ctx.val - req->buf->p;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003135 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02003136 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02003137
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003138 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01003139 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02003140 }
3141
Willy Tarreau34dfc602015-05-01 10:09:49 +02003142 /* even bodyless requests have a known length */
3143 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01003144
Willy Tarreau179085c2014-04-28 16:48:56 +02003145 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
3146 * only change if both the request and the config reference something else.
3147 * Option httpclose by itself sets tunnel mode where headers are mangled.
3148 * However, if another mode is set, it will affect it (eg: server-close/
3149 * keep-alive + httpclose = close). Note that we avoid to redo the same work
3150 * if FE and BE have the same settings (common). The method consists in
3151 * checking if options changed between the two calls (implying that either
3152 * one is non-null, or one of them is non-null and we are there for the first
3153 * time.
3154 */
3155 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003156 ((sess->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02003157 http_adjust_conn_mode(s, txn, msg);
Willy Tarreau179085c2014-04-28 16:48:56 +02003158
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02003159 /* we may have to wait for the request's body */
3160 if ((s->be->options & PR_O_WREQ_BODY) &&
3161 (msg->body_len || (msg->flags & HTTP_MSGF_TE_CHNK)))
3162 req->analysers |= AN_REQ_HTTP_BODY;
3163
Willy Tarreaud787e662009-07-07 10:14:51 +02003164 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02003165 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02003166 req->analyse_exp = TICK_ETERNITY;
3167 return 1;
3168
3169 return_bad_req:
3170 /* We centralize bad requests processing here */
3171 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
3172 /* we detected a parsing error. We want to archive this request
3173 * in the dedicated proxy area for later troubleshooting.
3174 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003175 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02003176 }
3177
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003178 txn->req.err_state = txn->req.msg_state;
Willy Tarreaud787e662009-07-07 10:14:51 +02003179 txn->req.msg_state = HTTP_MSG_ERROR;
3180 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003181 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003182
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003183 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003184 if (sess->listener->counters)
3185 sess->listener->counters->failed_req++;
Willy Tarreaud787e662009-07-07 10:14:51 +02003186
3187 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02003188 if (!(s->flags & SF_ERR_MASK))
3189 s->flags |= SF_ERR_PRXCOND;
3190 if (!(s->flags & SF_FINST_MASK))
3191 s->flags |= SF_FINST_R;
Willy Tarreaud787e662009-07-07 10:14:51 +02003192
Christopher Faulet0184ea72017-01-05 14:06:34 +01003193 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaud787e662009-07-07 10:14:51 +02003194 req->analyse_exp = TICK_ETERNITY;
3195 return 0;
3196}
3197
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02003198
Willy Tarreau347a35d2013-11-22 17:51:09 +01003199/* This function prepares an applet to handle the stats. It can deal with the
3200 * "100-continue" expectation, check that admin rules are met for POST requests,
3201 * and program a response message if something was unexpected. It cannot fail
3202 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003203 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003204 * s->target which is supposed to already point to the stats applet. The caller
Willy Tarreau87b09662015-04-03 00:22:06 +02003205 * is expected to have already assigned an appctx to the stream.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003206 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003207int http_handle_stats(struct stream *s, struct channel *req)
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003208{
3209 struct stats_admin_rule *stats_admin_rule;
Willy Tarreau350f4872014-11-28 14:42:25 +01003210 struct stream_interface *si = &s->si[1];
Willy Tarreau192252e2015-04-04 01:47:55 +02003211 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003212 struct http_txn *txn = s->txn;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003213 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003214 struct uri_auth *uri_auth = s->be->uri_auth;
3215 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003216 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003217
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003218 appctx = si_appctx(si);
3219 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
3220 appctx->st1 = appctx->st2 = 0;
3221 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
3222 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreaueee5b512015-04-03 23:46:31 +02003223 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn->meth != HTTP_METH_HEAD))
Willy Tarreauaf3cf702014-04-22 22:19:53 +02003224 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003225
3226 uri = msg->chn->buf->p + msg->sl.rq.u;
3227 lookup = uri + uri_auth->uri_len;
3228
3229 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
3230 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003231 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003232 break;
3233 }
3234 }
3235
3236 if (uri_auth->refresh) {
3237 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
3238 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003239 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003240 break;
3241 }
3242 }
3243 }
3244
3245 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
3246 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003247 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003248 break;
3249 }
3250 }
3251
Willy Tarreau1e62df92016-01-11 18:57:53 +01003252 for (h = lookup; h <= uri + msg->sl.rq.u_l - 6; h++) {
3253 if (memcmp(h, ";typed", 6) == 0) {
3254 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
3255 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
3256 break;
3257 }
3258 }
3259
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003260 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3261 if (memcmp(h, ";st=", 4) == 0) {
3262 int i;
3263 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003264 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003265 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3266 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003267 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003268 break;
3269 }
3270 }
3271 break;
3272 }
3273 }
3274
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003275 appctx->ctx.stats.scope_str = 0;
3276 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003277 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
3278 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3279 int itx = 0;
3280 const char *h2;
3281 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3282 const char *err;
3283
3284 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3285 h2 = h;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003286 appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003287 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
3288 itx++;
3289 h++;
3290 }
3291
3292 if (itx > STAT_SCOPE_TXT_MAXLEN)
3293 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003294 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003295
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003296 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003297 memcpy(scope_txt, h2, itx);
3298 scope_txt[itx] = '\0';
3299 err = invalid_char(scope_txt);
3300 if (err) {
3301 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003302 appctx->ctx.stats.scope_str = 0;
3303 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003304 }
3305 break;
3306 }
3307 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003308
3309 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01003310 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003311 int ret = 1;
3312
3313 if (stats_admin_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02003314 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003315 ret = acl_pass(ret);
3316 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3317 ret = !ret;
3318 }
3319
3320 if (ret) {
3321 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003322 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003323 break;
3324 }
3325 }
3326
3327 /* Was the status page requested with a POST ? */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02003328 if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003329 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Willy Tarreaucfe7fdd2014-04-26 22:08:32 +02003330 /* we'll need the request body, possibly after sending 100-continue */
Willy Tarreaub8cdf522015-05-29 01:09:15 +02003331 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE)
3332 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003333 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003334 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003335 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003336 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
3337 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003338 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003339 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01003340 else {
3341 /* So it was another method (GET/HEAD) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003342 appctx->st0 = STAT_HTTP_HEAD;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003343 }
3344
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003345 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003346 return 1;
3347}
3348
Lukas Tribus67db8df2013-06-23 17:37:13 +02003349/* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets
3350 * (as per RFC3260 #4 and BCP37 #4.2 and #5.2).
3351 */
Vincent Bernat6e615892016-05-18 16:17:44 +02003352void inet_set_tos(int fd, const struct sockaddr_storage *from, int tos)
Lukas Tribus67db8df2013-06-23 17:37:13 +02003353{
3354#ifdef IP_TOS
Vincent Bernat6e615892016-05-18 16:17:44 +02003355 if (from->ss_family == AF_INET)
Lukas Tribus67db8df2013-06-23 17:37:13 +02003356 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3357#endif
3358#ifdef IPV6_TCLASS
Vincent Bernat6e615892016-05-18 16:17:44 +02003359 if (from->ss_family == AF_INET6) {
3360 if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)from)->sin6_addr))
Lukas Tribus67db8df2013-06-23 17:37:13 +02003361 /* v4-mapped addresses need IP_TOS */
3362 setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
3363 else
3364 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos));
3365 }
3366#endif
3367}
3368
Willy Tarreau87b09662015-04-03 00:22:06 +02003369int http_transform_header_str(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003370 const char* name, unsigned int name_len,
3371 const char *str, struct my_regex *re,
3372 int action)
Sasha Pachev218f0642014-06-16 12:05:59 -06003373{
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003374 struct hdr_ctx ctx;
3375 char *buf = msg->chn->buf->p;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003376 struct hdr_idx *idx = &s->txn->hdr_idx;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003377 int (*http_find_hdr_func)(const char *name, int len, char *sol,
3378 struct hdr_idx *idx, struct hdr_ctx *ctx);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003379 struct chunk *output = get_trash_chunk();
3380
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003381 ctx.idx = 0;
Sasha Pachev218f0642014-06-16 12:05:59 -06003382
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003383 /* Choose the header browsing function. */
3384 switch (action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003385 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003386 http_find_hdr_func = http_find_header2;
3387 break;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003388 case ACT_HTTP_REPLACE_HDR:
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003389 http_find_hdr_func = http_find_full_header2;
3390 break;
3391 default: /* impossible */
3392 return -1;
3393 }
3394
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003395 while (http_find_hdr_func(name, name_len, buf, idx, &ctx)) {
3396 struct hdr_idx_elem *hdr = idx->v + ctx.idx;
Sasha Pachev218f0642014-06-16 12:05:59 -06003397 int delta;
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003398 char *val = ctx.line + ctx.val;
3399 char* val_end = val + ctx.vlen;
Sasha Pachev218f0642014-06-16 12:05:59 -06003400
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003401 if (!regex_exec_match2(re, val, val_end-val, MAX_MATCH, pmatch, 0))
3402 continue;
Sasha Pachev218f0642014-06-16 12:05:59 -06003403
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003404 output->len = exp_replace(output->str, output->size, val, str, pmatch);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003405 if (output->len == -1)
Sasha Pachev218f0642014-06-16 12:05:59 -06003406 return -1;
Sasha Pachev218f0642014-06-16 12:05:59 -06003407
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003408 delta = buffer_replace2(msg->chn->buf, val, val_end, output->str, output->len);
Sasha Pachev218f0642014-06-16 12:05:59 -06003409
3410 hdr->len += delta;
3411 http_msg_move_end(msg, delta);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01003412
3413 /* Adjust the length of the current value of the index. */
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003414 ctx.vlen += delta;
Sasha Pachev218f0642014-06-16 12:05:59 -06003415 }
3416
3417 return 0;
3418}
3419
Willy Tarreau87b09662015-04-03 00:22:06 +02003420static int http_transform_header(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003421 const char* name, unsigned int name_len,
3422 struct list *fmt, struct my_regex *re,
3423 int action)
3424{
Christopher Faulet07a0fec2017-02-08 12:17:07 +01003425 struct chunk *replace;
3426 int ret = -1;
3427
3428 replace = alloc_trash_chunk();
3429 if (!replace)
3430 goto leave;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003431
3432 replace->len = build_logline(s, replace->str, replace->size, fmt);
3433 if (replace->len >= replace->size - 1)
Christopher Faulet07a0fec2017-02-08 12:17:07 +01003434 goto leave;
3435
3436 ret = http_transform_header_str(s, msg, name, name_len, replace->str, re, action);
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003437
Christopher Faulet07a0fec2017-02-08 12:17:07 +01003438 leave:
3439 free_trash_chunk(replace);
3440 return ret;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01003441}
3442
Willy Tarreau87b09662015-04-03 00:22:06 +02003443/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02003444 * transaction <txn>. Returns the verdict of the first rule that prevents
3445 * further processing of the request (auth, deny, ...), and defaults to
3446 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
3447 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
Willy Tarreau58727ec2016-05-25 16:23:59 +02003448 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
3449 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
3450 * status.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003451 */
Willy Tarreau0b748332014-04-29 00:13:29 +02003452enum rule_result
Willy Tarreau58727ec2016-05-25 16:23:59 +02003453http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s, int *deny_status)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003454{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003455 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003456 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003457 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003458 struct act_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01003459 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02003460 const char *auth_realm;
Willy Tarreauacc98002015-09-27 23:34:39 +02003461 int act_flags = 0;
Thierry Fournier4b788f72016-06-01 13:35:36 +02003462 int len;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003463
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003464 /* If "the current_rule_list" match the executed rule list, we are in
3465 * resume condition. If a resume is needed it is always in the action
3466 * and never in the ACL or converters. In this case, we initialise the
3467 * current rule, and go to the action execution point.
3468 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02003469 if (s->current_rule) {
3470 rule = s->current_rule;
3471 s->current_rule = NULL;
3472 if (s->current_rule_list == rules)
3473 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003474 }
3475 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02003476
Willy Tarreauff011f22011-01-06 17:51:27 +01003477 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003478
Willy Tarreau96257ec2012-12-27 10:46:37 +01003479 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01003480 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01003481 int ret;
3482
Willy Tarreau192252e2015-04-04 01:47:55 +02003483 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003484 ret = acl_pass(ret);
3485
Willy Tarreauff011f22011-01-06 17:51:27 +01003486 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003487 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003488
3489 if (!ret) /* condition not matched */
3490 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003491 }
3492
Willy Tarreauacc98002015-09-27 23:34:39 +02003493 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003494resume_execution:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003495 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003496 case ACT_ACTION_ALLOW:
Willy Tarreau0b748332014-04-29 00:13:29 +02003497 return HTTP_RULE_RES_STOP;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003498
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003499 case ACT_ACTION_DENY:
Willy Tarreau58727ec2016-05-25 16:23:59 +02003500 if (deny_status)
3501 *deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02003502 return HTTP_RULE_RES_DENY;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003503
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003504 case ACT_HTTP_REQ_TARPIT:
Willy Tarreauccbcc372012-12-27 12:37:57 +01003505 txn->flags |= TX_CLTARPIT;
Willy Tarreau58727ec2016-05-25 16:23:59 +02003506 if (deny_status)
3507 *deny_status = rule->deny_status;
Willy Tarreau0b748332014-04-29 00:13:29 +02003508 return HTTP_RULE_RES_DENY;
Willy Tarreauccbcc372012-12-27 12:37:57 +01003509
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003510 case ACT_HTTP_REQ_AUTH:
Willy Tarreauae3c0102014-04-28 23:22:08 +02003511 /* Auth might be performed on regular http-req rules as well as on stats */
3512 auth_realm = rule->arg.auth.realm;
3513 if (!auth_realm) {
3514 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
3515 auth_realm = STATS_DEFAULT_REALM;
3516 else
3517 auth_realm = px->id;
3518 }
3519 /* send 401/407 depending on whether we use a proxy or not. We still
3520 * count one error, because normal browsing won't significantly
3521 * increase the counter but brute force attempts will.
3522 */
3523 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
3524 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
Christopher Fauleta94e5a52015-12-09 15:55:06 +01003525 http_reply_and_close(s, txn->status, &trash);
Willy Tarreau87b09662015-04-03 00:22:06 +02003526 stream_inc_http_err_ctr(s);
Willy Tarreau0b748332014-04-29 00:13:29 +02003527 return HTTP_RULE_RES_ABRT;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003528
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003529 case ACT_HTTP_REDIR:
Willy Tarreau0b748332014-04-29 00:13:29 +02003530 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3531 return HTTP_RULE_RES_BADREQ;
3532 return HTTP_RULE_RES_DONE;
Willy Tarreau81499eb2012-12-27 12:19:02 +01003533
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003534 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003535 s->task->nice = rule->arg.nice;
3536 break;
3537
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003538 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003539 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Vincent Bernat6e615892016-05-18 16:17:44 +02003540 inet_set_tos(cli_conn->t.sock.fd, &cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003541 break;
3542
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003543 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02003544#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003545 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003546 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003547#endif
3548 break;
3549
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003550 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003551 s->logs.level = rule->arg.loglevel;
3552 break;
3553
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003554 case ACT_HTTP_REPLACE_HDR:
3555 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003556 if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name,
3557 rule->arg.hdr_add.name_len,
3558 &rule->arg.hdr_add.fmt,
3559 &rule->arg.hdr_add.re, rule->action))
Sasha Pachev218f0642014-06-16 12:05:59 -06003560 return HTTP_RULE_RES_BADREQ;
3561 break;
3562
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003563 case ACT_HTTP_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01003564 ctx.idx = 0;
3565 /* remove all occurrences of the header */
3566 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3567 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3568 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01003569 }
Willy Tarreau85603282015-01-21 20:39:27 +01003570 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01003571
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003572 case ACT_HTTP_SET_HDR:
3573 case ACT_HTTP_ADD_HDR:
Thierry Fournier4b788f72016-06-01 13:35:36 +02003574 /* The scope of the trash buffer must be limited to this function. The
3575 * build_logline() function can execute a lot of other function which
3576 * can use the trash buffer. So for limiting the scope of this global
3577 * buffer, we build first the header value using build_logline, and
3578 * after we store the header name.
3579 */
3580 len = rule->arg.hdr_add.name_len + 2,
3581 len += build_logline(s, trash.str + len, trash.size - len, &rule->arg.hdr_add.fmt);
Willy Tarreau96257ec2012-12-27 10:46:37 +01003582 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
Thierry Fournier4b788f72016-06-01 13:35:36 +02003583 trash.str[rule->arg.hdr_add.name_len] = ':';
3584 trash.str[rule->arg.hdr_add.name_len + 1] = ' ';
3585 trash.len = len;
Willy Tarreau85603282015-01-21 20:39:27 +01003586
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003587 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01003588 /* remove all occurrences of the header */
3589 ctx.idx = 0;
3590 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3591 txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
3592 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
3593 }
3594 }
3595
Willy Tarreau96257ec2012-12-27 10:46:37 +01003596 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len);
3597 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003598
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003599 case ACT_HTTP_DEL_ACL:
3600 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003601 struct pat_ref *ref;
3602 char *key;
3603 int len;
3604
3605 /* collect reference */
3606 ref = pat_ref_lookup(rule->arg.map.ref);
3607 if (!ref)
3608 continue;
3609
3610 /* collect key */
3611 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3612 key = trash.str;
3613 key[len] = '\0';
3614
3615 /* perform update */
3616 /* returned code: 1=ok, 0=ko */
3617 pat_ref_delete(ref, key);
3618
3619 break;
3620 }
3621
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003622 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003623 struct pat_ref *ref;
3624 char *key;
3625 struct chunk *trash_key;
3626 int len;
3627
3628 trash_key = get_trash_chunk();
3629
3630 /* collect reference */
3631 ref = pat_ref_lookup(rule->arg.map.ref);
3632 if (!ref)
3633 continue;
3634
3635 /* collect key */
3636 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3637 key = trash_key->str;
3638 key[len] = '\0';
3639
3640 /* perform update */
3641 /* add entry only if it does not already exist */
3642 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003643 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003644
3645 break;
3646 }
3647
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003648 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003649 struct pat_ref *ref;
3650 char *key, *value;
3651 struct chunk *trash_key, *trash_value;
3652 int len;
3653
3654 trash_key = get_trash_chunk();
3655 trash_value = get_trash_chunk();
3656
3657 /* collect reference */
3658 ref = pat_ref_lookup(rule->arg.map.ref);
3659 if (!ref)
3660 continue;
3661
3662 /* collect key */
3663 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3664 key = trash_key->str;
3665 key[len] = '\0';
3666
3667 /* collect value */
3668 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3669 value = trash_value->str;
3670 value[len] = '\0';
3671
3672 /* perform update */
3673 if (pat_ref_find_elt(ref, key) != NULL)
3674 /* update entry if it exists */
3675 pat_ref_set(ref, key, value, NULL);
3676 else
3677 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003678 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003679
3680 break;
3681 }
William Lallemand73025dd2014-04-24 14:38:37 +02003682
Thierry FOURNIER42148732015-09-02 17:17:33 +02003683 case ACT_CUSTOM:
Willy Tarreauacc98002015-09-27 23:34:39 +02003684 if ((px->options & PR_O_ABRT_CLOSE) && (s->req.flags & (CF_SHUTR|CF_READ_NULL|CF_READ_ERROR)))
3685 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02003686
Willy Tarreauacc98002015-09-27 23:34:39 +02003687 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003688 case ACT_RET_ERR:
3689 case ACT_RET_CONT:
3690 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02003691 case ACT_RET_STOP:
3692 return HTTP_RULE_RES_DONE;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02003693 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02003694 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003695 return HTTP_RULE_RES_YIELD;
3696 }
William Lallemand73025dd2014-04-24 14:38:37 +02003697 break;
3698
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003699 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
Willy Tarreau09448f72014-06-25 18:12:15 +02003700 /* Note: only the first valid tracking parameter of each
3701 * applies.
3702 */
3703
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003704 if (stkctr_entry(&s->stkctr[http_trk_idx(rule->action)]) == NULL) {
Willy Tarreau09448f72014-06-25 18:12:15 +02003705 struct stktable *t;
3706 struct stksess *ts;
3707 struct stktable_key *key;
3708 void *ptr;
3709
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02003710 t = rule->arg.trk_ctr.table.t;
3711 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
Willy Tarreau09448f72014-06-25 18:12:15 +02003712
3713 if (key && (ts = stktable_get_entry(t, key))) {
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003714 stream_track_stkctr(&s->stkctr[http_trk_idx(rule->action)], t, ts);
Willy Tarreau09448f72014-06-25 18:12:15 +02003715
3716 /* let's count a new HTTP request as it's the first time we do it */
3717 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3718 if (ptr)
3719 stktable_data_cast(ptr, http_req_cnt)++;
3720
3721 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3722 if (ptr)
3723 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3724 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3725
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003726 stkctr_set_flags(&s->stkctr[http_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003727 if (sess->fe != s->be)
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003728 stkctr_set_flags(&s->stkctr[http_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreau09448f72014-06-25 18:12:15 +02003729 }
3730 }
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02003731 break;
3732
Thierry FOURNIER22e49012015-08-05 19:13:48 +02003733 /* other flags exists, but normaly, they never be matched. */
3734 default:
3735 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003736 }
3737 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01003738
3739 /* we reached the end of the rules, nothing to report */
Willy Tarreau0b748332014-04-29 00:13:29 +02003740 return HTTP_RULE_RES_CONT;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01003741}
3742
Willy Tarreau71241ab2012-12-27 11:30:54 +01003743
Willy Tarreau51d861a2015-05-22 17:30:48 +02003744/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
3745 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
3746 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
3747 * is returned, the process can continue the evaluation of next rule list. If
3748 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
3749 * is returned, it means the operation could not be processed and a server error
3750 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
3751 * deny rule. If *YIELD is returned, the caller must call again the function
3752 * with the same context.
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003753 */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003754static enum rule_result
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003755http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003756{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003757 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02003758 struct http_txn *txn = s->txn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003759 struct connection *cli_conn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003760 struct act_rule *rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003761 struct hdr_ctx ctx;
Willy Tarreauacc98002015-09-27 23:34:39 +02003762 int act_flags = 0;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003763
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003764 /* If "the current_rule_list" match the executed rule list, we are in
3765 * resume condition. If a resume is needed it is always in the action
3766 * and never in the ACL or converters. In this case, we initialise the
3767 * current rule, and go to the action execution point.
3768 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02003769 if (s->current_rule) {
3770 rule = s->current_rule;
3771 s->current_rule = NULL;
3772 if (s->current_rule_list == rules)
3773 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003774 }
3775 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02003776
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003777 list_for_each_entry(rule, rules, list) {
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003778
3779 /* check optional condition */
3780 if (rule->cond) {
3781 int ret;
3782
Willy Tarreau192252e2015-04-04 01:47:55 +02003783 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003784 ret = acl_pass(ret);
3785
3786 if (rule->cond->pol == ACL_COND_UNLESS)
3787 ret = !ret;
3788
3789 if (!ret) /* condition not matched */
3790 continue;
3791 }
3792
Willy Tarreauacc98002015-09-27 23:34:39 +02003793 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01003794resume_execution:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003795 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003796 case ACT_ACTION_ALLOW:
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003797 return HTTP_RULE_RES_STOP; /* "allow" rules are OK */
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003798
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003799 case ACT_ACTION_DENY:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003800 txn->flags |= TX_SVDENY;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01003801 return HTTP_RULE_RES_STOP;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003802
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003803 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02003804 s->task->nice = rule->arg.nice;
3805 break;
3806
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003807 case ACT_HTTP_SET_TOS:
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003808 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Vincent Bernat6e615892016-05-18 16:17:44 +02003809 inet_set_tos(cli_conn->t.sock.fd, &cli_conn->addr.from, rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02003810 break;
3811
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003812 case ACT_HTTP_SET_MARK:
Willy Tarreau51347ed2013-06-11 19:34:13 +02003813#ifdef SO_MARK
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02003814 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003815 setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark));
Willy Tarreau51347ed2013-06-11 19:34:13 +02003816#endif
3817 break;
3818
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003819 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02003820 s->logs.level = rule->arg.loglevel;
3821 break;
3822
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003823 case ACT_HTTP_REPLACE_HDR:
3824 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01003825 if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name,
3826 rule->arg.hdr_add.name_len,
3827 &rule->arg.hdr_add.fmt,
3828 &rule->arg.hdr_add.re, rule->action))
Christopher Fauletcdade942017-02-08 12:41:31 +01003829 return HTTP_RULE_RES_BADREQ;
Sasha Pachev218f0642014-06-16 12:05:59 -06003830 break;
3831
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003832 case ACT_HTTP_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003833 ctx.idx = 0;
3834 /* remove all occurrences of the header */
3835 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3836 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3837 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3838 }
Willy Tarreau85603282015-01-21 20:39:27 +01003839 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003840
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003841 case ACT_HTTP_SET_HDR:
3842 case ACT_HTTP_ADD_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003843 chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name);
3844 memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3845 trash.len = rule->arg.hdr_add.name_len;
3846 trash.str[trash.len++] = ':';
3847 trash.str[trash.len++] = ' ';
3848 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01003849
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003850 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01003851 /* remove all occurrences of the header */
3852 ctx.idx = 0;
3853 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
3854 txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) {
3855 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
3856 }
3857 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02003858 http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len);
3859 break;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003860
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003861 case ACT_HTTP_DEL_ACL:
3862 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003863 struct pat_ref *ref;
3864 char *key;
3865 int len;
3866
3867 /* collect reference */
3868 ref = pat_ref_lookup(rule->arg.map.ref);
3869 if (!ref)
3870 continue;
3871
3872 /* collect key */
3873 len = build_logline(s, trash.str, trash.size, &rule->arg.map.key);
3874 key = trash.str;
3875 key[len] = '\0';
3876
3877 /* perform update */
3878 /* returned code: 1=ok, 0=ko */
3879 pat_ref_delete(ref, key);
3880
3881 break;
3882 }
3883
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003884 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003885 struct pat_ref *ref;
3886 char *key;
3887 struct chunk *trash_key;
3888 int len;
3889
3890 trash_key = get_trash_chunk();
3891
3892 /* collect reference */
3893 ref = pat_ref_lookup(rule->arg.map.ref);
3894 if (!ref)
3895 continue;
3896
3897 /* collect key */
3898 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3899 key = trash_key->str;
3900 key[len] = '\0';
3901
3902 /* perform update */
3903 /* check if the entry already exists */
3904 if (pat_ref_find_elt(ref, key) == NULL)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003905 pat_ref_add(ref, key, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003906
3907 break;
3908 }
3909
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003910 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003911 struct pat_ref *ref;
3912 char *key, *value;
3913 struct chunk *trash_key, *trash_value;
3914 int len;
3915
3916 trash_key = get_trash_chunk();
3917 trash_value = get_trash_chunk();
3918
3919 /* collect reference */
3920 ref = pat_ref_lookup(rule->arg.map.ref);
3921 if (!ref)
3922 continue;
3923
3924 /* collect key */
3925 len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key);
3926 key = trash_key->str;
3927 key[len] = '\0';
3928
3929 /* collect value */
3930 len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value);
3931 value = trash_value->str;
3932 value[len] = '\0';
3933
3934 /* perform update */
3935 if (pat_ref_find_elt(ref, key) != NULL)
3936 /* update entry if it exists */
3937 pat_ref_set(ref, key, value, NULL);
3938 else
3939 /* insert a new entry */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02003940 pat_ref_add(ref, key, value, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02003941
3942 break;
3943 }
William Lallemand73025dd2014-04-24 14:38:37 +02003944
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02003945 case ACT_HTTP_REDIR:
Willy Tarreau51d861a2015-05-22 17:30:48 +02003946 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3947 return HTTP_RULE_RES_BADREQ;
3948 return HTTP_RULE_RES_DONE;
3949
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003950 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
3951 /* Note: only the first valid tracking parameter of each
3952 * applies.
3953 */
3954
3955 if (stkctr_entry(&s->stkctr[http_trk_idx(rule->action)]) == NULL) {
3956 struct stktable *t;
3957 struct stksess *ts;
3958 struct stktable_key *key;
3959 void *ptr;
3960
3961 t = rule->arg.trk_ctr.table.t;
3962 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_RES | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
3963
3964 if (key && (ts = stktable_get_entry(t, key))) {
3965 stream_track_stkctr(&s->stkctr[http_trk_idx(rule->action)], t, ts);
3966
3967 /* let's count a new HTTP request as it's the first time we do it */
3968 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3969 if (ptr)
3970 stktable_data_cast(ptr, http_req_cnt)++;
3971
3972 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3973 if (ptr)
3974 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3975 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3976
3977 stkctr_set_flags(&s->stkctr[http_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
3978 if (sess->fe != s->be)
3979 stkctr_set_flags(&s->stkctr[http_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3980
3981 /* When the client triggers a 4xx from the server, it's most often due
3982 * to a missing object or permission. These events should be tracked
3983 * because if they happen often, it may indicate a brute force or a
3984 * vulnerability scan. Normally this is done when receiving the response
3985 * but here we're tracking after this ought to have been done so we have
3986 * to do it on purpose.
3987 */
Willy Tarreau3146a4c2016-07-26 15:22:33 +02003988 if ((unsigned)(txn->status - 400) < 100) {
3989 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT);
3990 if (ptr)
3991 stktable_data_cast(ptr, http_err_cnt)++;
3992
3993 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE);
3994 if (ptr)
3995 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
3996 t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
3997 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08003998 }
3999 }
4000 break;
4001
Thierry FOURNIER42148732015-09-02 17:17:33 +02004002 case ACT_CUSTOM:
Willy Tarreauacc98002015-09-27 23:34:39 +02004003 if ((px->options & PR_O_ABRT_CLOSE) && (s->req.flags & (CF_SHUTR|CF_READ_NULL|CF_READ_ERROR)))
4004 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02004005
Willy Tarreauacc98002015-09-27 23:34:39 +02004006 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02004007 case ACT_RET_ERR:
4008 case ACT_RET_CONT:
4009 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02004010 case ACT_RET_STOP:
4011 return HTTP_RULE_RES_STOP;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02004012 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02004013 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004014 return HTTP_RULE_RES_YIELD;
4015 }
William Lallemand73025dd2014-04-24 14:38:37 +02004016 break;
4017
Thierry FOURNIER22e49012015-08-05 19:13:48 +02004018 /* other flags exists, but normaly, they never be matched. */
4019 default:
4020 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02004021 }
4022 }
4023
4024 /* we reached the end of the rules, nothing to report */
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01004025 return HTTP_RULE_RES_CONT;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02004026}
4027
4028
Willy Tarreau71241ab2012-12-27 11:30:54 +01004029/* Perform an HTTP redirect based on the information in <rule>. The function
4030 * returns non-zero on success, or zero in case of a, irrecoverable error such
4031 * as too large a request to build a valid response.
4032 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004033static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Willy Tarreau71241ab2012-12-27 11:30:54 +01004034{
Willy Tarreaub329a312015-05-22 16:27:37 +02004035 struct http_msg *req = &txn->req;
4036 struct http_msg *res = &txn->rsp;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004037 const char *msg_fmt;
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004038 struct chunk *chunk;
4039 int ret = 0;
4040
4041 chunk = alloc_trash_chunk();
4042 if (!chunk)
4043 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004044
4045 /* build redirect message */
4046 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04004047 case 308:
4048 msg_fmt = HTTP_308;
4049 break;
4050 case 307:
4051 msg_fmt = HTTP_307;
4052 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004053 case 303:
4054 msg_fmt = HTTP_303;
4055 break;
4056 case 301:
4057 msg_fmt = HTTP_301;
4058 break;
4059 case 302:
4060 default:
4061 msg_fmt = HTTP_302;
4062 break;
4063 }
4064
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004065 if (unlikely(!chunk_strcpy(chunk, msg_fmt)))
4066 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004067
4068 switch(rule->type) {
4069 case REDIRECT_TYPE_SCHEME: {
4070 const char *path;
4071 const char *host;
4072 struct hdr_ctx ctx;
4073 int pathlen;
4074 int hostlen;
4075
4076 host = "";
4077 hostlen = 0;
4078 ctx.idx = 0;
Willy Tarreaub329a312015-05-22 16:27:37 +02004079 if (http_find_header2("Host", 4, req->chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004080 host = ctx.line + ctx.val;
4081 hostlen = ctx.vlen;
4082 }
4083
4084 path = http_get_path(txn);
4085 /* build message using path */
4086 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02004087 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004088 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
4089 int qs = 0;
4090 while (qs < pathlen) {
4091 if (path[qs] == '?') {
4092 pathlen = qs;
4093 break;
4094 }
4095 qs++;
4096 }
4097 }
4098 } else {
4099 path = "/";
4100 pathlen = 1;
4101 }
4102
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004103 if (rule->rdr_str) { /* this is an old "redirect" rule */
4104 /* check if we can add scheme + "://" + host + path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004105 if (chunk->len + rule->rdr_len + 3 + hostlen + pathlen > chunk->size - 4)
4106 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004107
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004108 /* add scheme */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004109 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
4110 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004111 }
4112 else {
4113 /* add scheme with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004114 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004115
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004116 /* check if we can add scheme + "://" + host + path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004117 if (chunk->len + 3 + hostlen + pathlen > chunk->size - 4)
4118 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004119 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004120 /* add "://" */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004121 memcpy(chunk->str + chunk->len, "://", 3);
4122 chunk->len += 3;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004123
4124 /* add host */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004125 memcpy(chunk->str + chunk->len, host, hostlen);
4126 chunk->len += hostlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004127
4128 /* add path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004129 memcpy(chunk->str + chunk->len, path, pathlen);
4130 chunk->len += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004131
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004132 /* append a slash at the end of the location if needed and missing */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004133 if (chunk->len && chunk->str[chunk->len - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01004134 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004135 if (chunk->len > chunk->size - 5)
4136 goto leave;
4137 chunk->str[chunk->len] = '/';
4138 chunk->len++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004139 }
4140
4141 break;
4142 }
4143 case REDIRECT_TYPE_PREFIX: {
4144 const char *path;
4145 int pathlen;
4146
4147 path = http_get_path(txn);
4148 /* build message using path */
4149 if (path) {
Willy Tarreaub329a312015-05-22 16:27:37 +02004150 pathlen = req->sl.rq.u_l + (req->chn->buf->p + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004151 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
4152 int qs = 0;
4153 while (qs < pathlen) {
4154 if (path[qs] == '?') {
4155 pathlen = qs;
4156 break;
4157 }
4158 qs++;
4159 }
4160 }
4161 } else {
4162 path = "/";
4163 pathlen = 1;
4164 }
4165
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004166 if (rule->rdr_str) { /* this is an old "redirect" rule */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004167 if (chunk->len + rule->rdr_len + pathlen > chunk->size - 4)
4168 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004169
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004170 /* add prefix. Note that if prefix == "/", we don't want to
4171 * add anything, otherwise it makes it hard for the user to
4172 * configure a self-redirection.
4173 */
4174 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004175 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
4176 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004177 }
4178 }
4179 else {
4180 /* add prefix with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004181 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004182
4183 /* Check length */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004184 if (chunk->len + pathlen > chunk->size - 4)
4185 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004186 }
4187
4188 /* add path */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004189 memcpy(chunk->str + chunk->len, path, pathlen);
4190 chunk->len += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004191
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004192 /* append a slash at the end of the location if needed and missing */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004193 if (chunk->len && chunk->str[chunk->len - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01004194 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004195 if (chunk->len > chunk->size - 5)
4196 goto leave;
4197 chunk->str[chunk->len] = '/';
4198 chunk->len++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004199 }
4200
4201 break;
4202 }
4203 case REDIRECT_TYPE_LOCATION:
4204 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004205 if (rule->rdr_str) { /* this is an old "redirect" rule */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004206 if (chunk->len + rule->rdr_len > chunk->size - 4)
4207 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004208
4209 /* add location */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004210 memcpy(chunk->str + chunk->len, rule->rdr_str, rule->rdr_len);
4211 chunk->len += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004212 }
4213 else {
4214 /* add location with executing log format */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004215 chunk->len += build_logline(s, chunk->str + chunk->len, chunk->size - chunk->len, &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004216
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004217 /* Check left length */
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004218 if (chunk->len > chunk->size - 4)
4219 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01004220 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004221 break;
4222 }
4223
4224 if (rule->cookie_len) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004225 memcpy(chunk->str + chunk->len, "\r\nSet-Cookie: ", 14);
4226 chunk->len += 14;
4227 memcpy(chunk->str + chunk->len, rule->cookie_str, rule->cookie_len);
4228 chunk->len += rule->cookie_len;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004229 }
4230
Willy Tarreau19b14122017-02-28 09:48:11 +01004231 /* add end of headers and the keep-alive/close status. */
Willy Tarreau71241ab2012-12-27 11:30:54 +01004232 txn->status = rule->code;
4233 /* let's log the request time */
4234 s->logs.tv_request = now;
4235
Willy Tarreau19b14122017-02-28 09:48:11 +01004236 if ((req->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau2de8a502015-05-28 17:23:54 +02004237 ((!(req->flags & HTTP_MSGF_TE_CHNK) && !req->body_len) || (req->msg_state == HTTP_MSG_DONE)) &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01004238 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
4239 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
4240 /* keep-alive possible */
Willy Tarreaub329a312015-05-22 16:27:37 +02004241 if (!(req->flags & HTTP_MSGF_VER_11)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004242 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004243 memcpy(chunk->str + chunk->len, "\r\nProxy-Connection: keep-alive", 30);
4244 chunk->len += 30;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004245 } else {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004246 memcpy(chunk->str + chunk->len, "\r\nConnection: keep-alive", 24);
4247 chunk->len += 24;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004248 }
4249 }
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004250 memcpy(chunk->str + chunk->len, "\r\n\r\n", 4);
4251 chunk->len += 4;
4252 FLT_STRM_CB(s, flt_http_reply(s, txn->status, chunk));
4253 bo_inject(res->chn, chunk->str, chunk->len);
Willy Tarreau71241ab2012-12-27 11:30:54 +01004254 /* "eat" the request */
Willy Tarreaub329a312015-05-22 16:27:37 +02004255 bi_fast_delete(req->chn->buf, req->sov);
4256 req->next -= req->sov;
4257 req->sov = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01004258 s->req.analysers = AN_REQ_HTTP_XFER_BODY | (s->req.analysers & AN_REQ_FLT_END);
Christopher Faulet014e39c2017-03-10 13:52:30 +01004259 s->res.analysers = AN_RES_HTTP_XFER_BODY | (s->res.analysers & AN_RES_FLT_END);
Willy Tarreaub329a312015-05-22 16:27:37 +02004260 req->msg_state = HTTP_MSG_CLOSED;
4261 res->msg_state = HTTP_MSG_DONE;
Willy Tarreau51d861a2015-05-22 17:30:48 +02004262 /* Trim any possible response */
4263 res->chn->buf->i = 0;
4264 res->next = res->sov = 0;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004265 } else {
4266 /* keep-alive not possible */
4267 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004268 memcpy(chunk->str + chunk->len, "\r\nProxy-Connection: close\r\n\r\n", 29);
4269 chunk->len += 29;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004270 } else {
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004271 memcpy(chunk->str + chunk->len, "\r\nConnection: close\r\n\r\n", 23);
4272 chunk->len += 23;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004273 }
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004274 http_reply_and_close(s, txn->status, chunk);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004275 req->chn->analysers &= AN_REQ_FLT_END;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004276 }
4277
Willy Tarreaue7dff022015-04-03 01:14:29 +02004278 if (!(s->flags & SF_ERR_MASK))
4279 s->flags |= SF_ERR_LOCAL;
4280 if (!(s->flags & SF_FINST_MASK))
4281 s->flags |= SF_FINST_R;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004282
Thierry FOURNIER0d945762017-01-28 07:39:53 +01004283 ret = 1;
4284 leave:
4285 free_trash_chunk(chunk);
4286 return ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004287}
4288
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004289/* This stream analyser runs all HTTP request processing which is common to
4290 * frontends and backends, which means blocking ACLs, filters, connection-close,
4291 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02004292 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004293 * either needs more data or wants to immediately abort the request (eg: deny,
4294 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02004295 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004296int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02004297{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004298 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004299 struct http_txn *txn = s->txn;
Willy Tarreaud787e662009-07-07 10:14:51 +02004300 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004301 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01004302 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02004303 enum rule_result verdict;
Willy Tarreau58727ec2016-05-25 16:23:59 +02004304 int deny_status = HTTP_ERR_403;
Willy Tarreaud787e662009-07-07 10:14:51 +02004305
Willy Tarreau655dce92009-11-08 13:10:58 +01004306 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004307 /* we need more data */
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004308 goto return_prx_yield;
Willy Tarreau51aecc72009-07-12 09:47:04 +02004309 }
4310
Willy Tarreau87b09662015-04-03 00:22:06 +02004311 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02004312 now_ms, __FUNCTION__,
4313 s,
4314 req,
4315 req->rex, req->wex,
4316 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004317 req->buf->i,
Willy Tarreaud787e662009-07-07 10:14:51 +02004318 req->analysers);
4319
Willy Tarreau65410832014-04-28 21:25:43 +02004320 /* just in case we have some per-backend tracking */
Willy Tarreau87b09662015-04-03 00:22:06 +02004321 stream_inc_be_http_req_ctr(s);
Willy Tarreau65410832014-04-28 21:25:43 +02004322
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004323 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02004324 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Willy Tarreau58727ec2016-05-25 16:23:59 +02004325 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, &deny_status);
Willy Tarreau51425942010-02-01 10:40:19 +01004326
Willy Tarreau0b748332014-04-29 00:13:29 +02004327 switch (verdict) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004328 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
4329 goto return_prx_yield;
4330
Willy Tarreau0b748332014-04-29 00:13:29 +02004331 case HTTP_RULE_RES_CONT:
4332 case HTTP_RULE_RES_STOP: /* nothing to do */
4333 break;
Willy Tarreau52542592014-04-28 18:33:26 +02004334
Willy Tarreau0b748332014-04-29 00:13:29 +02004335 case HTTP_RULE_RES_DENY: /* deny or tarpit */
4336 if (txn->flags & TX_CLTARPIT)
4337 goto tarpit;
4338 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004339
Willy Tarreau0b748332014-04-29 00:13:29 +02004340 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
4341 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02004342
Willy Tarreau0b748332014-04-29 00:13:29 +02004343 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02004344 goto done;
4345
Willy Tarreau0b748332014-04-29 00:13:29 +02004346 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
4347 goto return_bad_req;
4348 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004349 }
4350
Willy Tarreau52542592014-04-28 18:33:26 +02004351 /* OK at this stage, we know that the request was accepted according to
4352 * the http-request rules, we can check for the stats. Note that the
4353 * URI is detected *before* the req* rules in order not to be affected
4354 * by a possible reqrep, while they are processed *after* so that a
4355 * reqdeny can still block them. This clearly needs to change in 1.6!
4356 */
Willy Tarreau350f4872014-11-28 14:42:25 +01004357 if (stats_check_uri(&s->si[1], txn, px)) {
Willy Tarreau52542592014-04-28 18:33:26 +02004358 s->target = &http_stats_applet.obj_type;
Willy Tarreau350f4872014-11-28 14:42:25 +01004359 if (unlikely(!stream_int_register_handler(&s->si[1], objt_applet(s->target)))) {
Willy Tarreau52542592014-04-28 18:33:26 +02004360 txn->status = 500;
4361 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004362 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004363
Willy Tarreaue7dff022015-04-03 01:14:29 +02004364 if (!(s->flags & SF_ERR_MASK))
4365 s->flags |= SF_ERR_RESOURCE;
Willy Tarreau52542592014-04-28 18:33:26 +02004366 goto return_prx_cond;
4367 }
4368
4369 /* parse the whole stats request and extract the relevant information */
4370 http_handle_stats(s, req);
Willy Tarreau58727ec2016-05-25 16:23:59 +02004371 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, &deny_status);
Willy Tarreau0b748332014-04-29 00:13:29 +02004372 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004373
Willy Tarreau0b748332014-04-29 00:13:29 +02004374 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
4375 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02004376
Willy Tarreau0b748332014-04-29 00:13:29 +02004377 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
4378 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01004379 }
4380
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004381 /* evaluate the req* rules except reqadd */
4382 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01004383 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004384 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01004385
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004386 if (txn->flags & TX_CLDENY)
4387 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02004388
Jarno Huuskonen800d1762017-03-06 14:56:36 +02004389 if (txn->flags & TX_CLTARPIT) {
4390 deny_status = HTTP_ERR_500;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004391 goto tarpit;
Jarno Huuskonen800d1762017-03-06 14:56:36 +02004392 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004393 }
Willy Tarreau06619262006-12-17 08:37:22 +01004394
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004395 /* add request headers from the rule sets in the same order */
4396 list_for_each_entry(wl, &px->req_add, list) {
4397 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02004398 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004399 ret = acl_pass(ret);
4400 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
4401 ret = !ret;
4402 if (!ret)
4403 continue;
4404 }
4405
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004406 if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004407 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01004408 }
4409
Willy Tarreau52542592014-04-28 18:33:26 +02004410
4411 /* Proceed with the stats now. */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01004412 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01004413 /* process the stats request now */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004414 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
4415 sess->fe->fe_counters.intercepted_req++;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004416
Willy Tarreaue7dff022015-04-03 01:14:29 +02004417 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
4418 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
4419 if (!(s->flags & SF_FINST_MASK))
4420 s->flags |= SF_FINST_R;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004421
Willy Tarreau70730dd2014-04-24 18:06:27 +02004422 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Christopher Faulet0184ea72017-01-05 14:06:34 +01004423 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
4424 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004425 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004426 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004427 }
Willy Tarreaub2513902006-12-17 14:52:38 +01004428
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004429 /* check whether we have some ACLs set to redirect this request */
4430 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01004431 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01004432 int ret;
4433
Willy Tarreau192252e2015-04-04 01:47:55 +02004434 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01004435 ret = acl_pass(ret);
4436 if (rule->cond->pol == ACL_COND_UNLESS)
4437 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01004438 if (!ret)
4439 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01004440 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01004441 if (!http_apply_redirect_rule(rule, s, txn))
4442 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004443 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004444 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004445
Willy Tarreau2be39392010-01-03 17:24:51 +01004446 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
4447 * If this happens, then the data will not come immediately, so we must
4448 * send all what we have without waiting. Note that due to the small gain
4449 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004450 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01004451 * itself once used.
4452 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004453 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01004454
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004455 done: /* done with this analyser, continue with next ones that the calling
4456 * points will have set, if any.
4457 */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004458 req->analyse_exp = TICK_ETERNITY;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004459 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
4460 req->analysers &= ~an_bit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004461 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02004462
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004463 tarpit:
4464 /* When a connection is tarpitted, we use the tarpit timeout,
4465 * which may be the same as the connect timeout if unspecified.
4466 * If unset, then set it to zero because we really want it to
4467 * eventually expire. We build the tarpit as an analyser.
4468 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004469 channel_erase(&s->req);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004470
4471 /* wipe the request out so that we can drop the connection early
4472 * if the client closes first.
4473 */
4474 channel_dont_connect(req);
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02004475
4476 /* Allow cookie logging
4477 */
4478 if (s->be->cookie_name || sess->fe->capture_name)
4479 manage_client_side_cookies(s, req);
4480
Jarno Huuskonen800d1762017-03-06 14:56:36 +02004481 txn->status = http_err_codes[deny_status];
4482
Christopher Faulet0184ea72017-01-05 14:06:34 +01004483 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004484 req->analysers |= AN_REQ_HTTP_TARPIT;
4485 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
4486 if (!req->analyse_exp)
4487 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreau87b09662015-04-03 00:22:06 +02004488 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004489 sess->fe->fe_counters.denied_req++;
4490 if (sess->fe != s->be)
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004491 s->be->be_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004492 if (sess->listener->counters)
4493 sess->listener->counters->denied_req++;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02004494 goto done_without_exp;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004495
4496 deny: /* this request was blocked (denied) */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02004497
4498 /* Allow cookie logging
4499 */
4500 if (s->be->cookie_name || sess->fe->capture_name)
4501 manage_client_side_cookies(s, req);
4502
Willy Tarreau0b748332014-04-29 00:13:29 +02004503 txn->flags |= TX_CLDENY;
Willy Tarreau58727ec2016-05-25 16:23:59 +02004504 txn->status = http_err_codes[deny_status];
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004505 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004506 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau87b09662015-04-03 00:22:06 +02004507 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004508 sess->fe->fe_counters.denied_req++;
4509 if (sess->fe != s->be)
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004510 s->be->be_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004511 if (sess->listener->counters)
4512 sess->listener->counters->denied_req++;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02004513 goto return_prx_cond;
4514
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004515 return_bad_req:
4516 /* We centralize bad requests processing here */
4517 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
4518 /* we detected a parsing error. We want to archive this request
4519 * in the dedicated proxy area for later troubleshooting.
4520 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004521 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004522 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02004523
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004524 txn->req.err_state = txn->req.msg_state;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004525 txn->req.msg_state = HTTP_MSG_ERROR;
4526 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004527 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004528
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004529 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004530 if (sess->listener->counters)
4531 sess->listener->counters->failed_req++;
Willy Tarreau6e4261e2007-09-18 18:36:05 +02004532
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004533 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02004534 if (!(s->flags & SF_ERR_MASK))
4535 s->flags |= SF_ERR_PRXCOND;
4536 if (!(s->flags & SF_FINST_MASK))
4537 s->flags |= SF_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01004538
Christopher Faulet0184ea72017-01-05 14:06:34 +01004539 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004540 req->analyse_exp = TICK_ETERNITY;
4541 return 0;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004542
4543 return_prx_yield:
4544 channel_dont_connect(req);
4545 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004546}
Willy Tarreau58f10d72006-12-04 02:26:12 +01004547
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004548/* This function performs all the processing enabled for the current request.
4549 * It returns 1 if the processing can continue on next analysers, or zero if it
4550 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004551 * request. It relies on buffers flags, and updates s->req.analysers.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004552 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004553int http_process_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004554{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004555 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004556 struct http_txn *txn = s->txn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004557 struct http_msg *msg = &txn->req;
Willy Tarreauee335e62015-04-21 18:15:13 +02004558 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreau58f10d72006-12-04 02:26:12 +01004559
Willy Tarreau655dce92009-11-08 13:10:58 +01004560 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02004561 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004562 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02004563 return 0;
4564 }
4565
Willy Tarreau87b09662015-04-03 00:22:06 +02004566 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004567 now_ms, __FUNCTION__,
4568 s,
4569 req,
4570 req->rex, req->wex,
4571 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004572 req->buf->i,
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02004573 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01004574
Willy Tarreau59234e92008-11-30 23:51:27 +01004575 /*
4576 * Right now, we know that we have processed the entire headers
4577 * and that unwanted requests have been filtered out. We can do
4578 * whatever we want with the remaining request. Also, now we
4579 * may have separate values for ->fe, ->be.
4580 */
Willy Tarreau06619262006-12-17 08:37:22 +01004581
Willy Tarreau59234e92008-11-30 23:51:27 +01004582 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004583 * If HTTP PROXY is set we simply get remote server address parsing
4584 * incoming request. Note that this requires that a connection is
4585 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01004586 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02004587 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004588 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004589 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004590
Willy Tarreau9471b8c2013-12-15 13:31:35 +01004591 /* Note that for now we don't reuse existing proxy connections */
Willy Tarreau973a5422015-08-05 21:47:23 +02004592 if (unlikely((conn = si_alloc_conn(&s->si[1])) == NULL)) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004593 txn->req.err_state = txn->req.msg_state;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004594 txn->req.msg_state = HTTP_MSG_ERROR;
4595 txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01004596 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004597 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004598
Willy Tarreaue7dff022015-04-03 01:14:29 +02004599 if (!(s->flags & SF_ERR_MASK))
4600 s->flags |= SF_ERR_RESOURCE;
4601 if (!(s->flags & SF_FINST_MASK))
4602 s->flags |= SF_FINST_R;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004603
4604 return 0;
4605 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004606
4607 path = http_get_path(txn);
4608 url2sa(req->buf->p + msg->sl.rq.u,
4609 path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l,
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01004610 &conn->addr.to, NULL);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01004611 /* if the path was found, we have to remove everything between
4612 * req->buf->p + msg->sl.rq.u and path (excluded). If it was not
4613 * found, we need to replace from req->buf->p + msg->sl.rq.u for
4614 * u_l characters by a single "/".
4615 */
4616 if (path) {
4617 char *cur_ptr = req->buf->p;
4618 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4619 int delta;
4620
4621 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0);
4622 http_msg_move_end(&txn->req, delta);
4623 cur_end += delta;
4624 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4625 goto return_bad_req;
4626 }
4627 else {
4628 char *cur_ptr = req->buf->p;
4629 char *cur_end = cur_ptr + txn->req.sl.rq.l;
4630 int delta;
4631
4632 delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u,
4633 req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
4634 http_msg_move_end(&txn->req, delta);
4635 cur_end += delta;
4636 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
4637 goto return_bad_req;
4638 }
Willy Tarreau59234e92008-11-30 23:51:27 +01004639 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01004640
Willy Tarreau59234e92008-11-30 23:51:27 +01004641 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01004642 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01004643 * Note that doing so might move headers in the request, but
4644 * the fields will stay coherent and the URI will not move.
4645 * This should only be performed in the backend.
4646 */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02004647 if (s->be->cookie_name || sess->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01004648 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02004649
William Lallemanda73203e2012-03-12 12:48:57 +01004650 /* add unique-id if "header-unique-id" is specified */
4651
Thierry Fournierf4011dd2016-03-29 17:23:51 +02004652 if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) {
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004653 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
4654 goto return_bad_req;
4655 s->unique_id[0] = '\0';
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004656 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02004657 }
William Lallemanda73203e2012-03-12 12:48:57 +01004658
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004659 if (sess->fe->header_unique_id && s->unique_id) {
4660 chunk_printf(&trash, "%s: %s", sess->fe->header_unique_id, s->unique_id);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004661 if (trash.len < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01004662 goto return_bad_req;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004663 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01004664 goto return_bad_req;
4665 }
4666
Cyril Bontéb21570a2009-11-29 20:04:48 +01004667 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01004668 * 9: add X-Forwarded-For if either the frontend or the backend
4669 * asks for it.
4670 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004671 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004672 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004673 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
4674 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
4675 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004676 req->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02004677 /* The header is set to be added only if none is present
4678 * and we found it, so don't do anything.
4679 */
4680 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004681 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004682 /* Add an X-Forwarded-For header unless the source IP is
4683 * in the 'except' network range.
4684 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004685 if ((!sess->fe->except_mask.s_addr ||
4686 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
4687 != sess->fe->except_net.s_addr) &&
Willy Tarreau59234e92008-11-30 23:51:27 +01004688 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004689 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01004690 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01004691 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01004692 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004693 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02004694
4695 /* Note: we rely on the backend to get the header name to be used for
4696 * x-forwarded-for, because the header is really meant for the backends.
4697 * However, if the backend did not specify any option, we have to rely
4698 * on the frontend's header name.
4699 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004700 if (s->be->fwdfor_hdr_len) {
4701 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004702 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02004703 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004704 len = sess->fe->fwdfor_hdr_len;
4705 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004706 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004707 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 +01004708
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004709 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01004710 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01004711 }
4712 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004713 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01004714 /* FIXME: for the sake of completeness, we should also support
4715 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004716 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004717 int len;
4718 char pn[INET6_ADDRSTRLEN];
4719 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004720 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01004721 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004722
Willy Tarreau59234e92008-11-30 23:51:27 +01004723 /* Note: we rely on the backend to get the header name to be used for
4724 * x-forwarded-for, because the header is really meant for the backends.
4725 * However, if the backend did not specify any option, we have to rely
4726 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004727 */
Willy Tarreau59234e92008-11-30 23:51:27 +01004728 if (s->be->fwdfor_hdr_len) {
4729 len = s->be->fwdfor_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004730 memcpy(trash.str, s->be->fwdfor_hdr_name, len);
Willy Tarreau59234e92008-11-30 23:51:27 +01004731 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004732 len = sess->fe->fwdfor_hdr_len;
4733 memcpy(trash.str, sess->fe->fwdfor_hdr_name, len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02004734 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004735 len += snprintf(trash.str + len, trash.size - len, ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02004736
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004737 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01004738 goto return_bad_req;
4739 }
4740 }
4741
4742 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02004743 * 10: add X-Original-To if either the frontend or the backend
4744 * asks for it.
4745 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004746 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004747
4748 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004749 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004750 /* Add an X-Original-To header unless the destination IP is
4751 * in the 'except' network range.
4752 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004753 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02004754
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004755 if (cli_conn->addr.to.ss_family == AF_INET &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004756 ((!sess->fe->except_mask_to.s_addr ||
4757 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
4758 != sess->fe->except_to.s_addr) &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02004759 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004760 (((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 +02004761 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02004762 int len;
4763 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004764 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02004765
4766 /* Note: we rely on the backend to get the header name to be used for
4767 * x-original-to, because the header is really meant for the backends.
4768 * However, if the backend did not specify any option, we have to rely
4769 * on the frontend's header name.
4770 */
4771 if (s->be->orgto_hdr_len) {
4772 len = s->be->orgto_hdr_len;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004773 memcpy(trash.str, s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02004774 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004775 len = sess->fe->orgto_hdr_len;
4776 memcpy(trash.str, sess->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01004777 }
Willy Tarreaue9187f82014-04-14 15:27:14 +02004778 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 +02004779
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004780 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02004781 goto return_bad_req;
4782 }
4783 }
4784 }
4785
Willy Tarreau50fc7772012-11-11 22:19:57 +01004786 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
4787 * If an "Upgrade" token is found, the header is left untouched in order not to have
4788 * to deal with some servers bugs : some of them fail an Upgrade if anything but
4789 * "Upgrade" is present in the Connection header.
4790 */
4791 if (!(txn->flags & TX_HDR_CONN_UPG) &&
4792 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004793 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004794 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004795 unsigned int want_flags = 0;
4796
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004797 if (msg->flags & HTTP_MSGF_VER_11) {
Willy Tarreau22a95342010-09-29 14:31:41 +02004798 if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004799 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004800 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004801 !((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004802 want_flags |= TX_CON_CLO_SET;
4803 } else {
Willy Tarreau22a95342010-09-29 14:31:41 +02004804 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004805 ((sess->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL &&
Willy Tarreau02bce8b2014-01-30 00:15:28 +01004806 (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004807 ((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004808 want_flags |= TX_CON_KAL_SET;
4809 }
4810
4811 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004812 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01004813 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004814
Willy Tarreaubbf0b372010-01-18 16:54:40 +01004815
Willy Tarreau522d6c02009-12-06 18:49:18 +01004816 /* If we have no server assigned yet and we're balancing on url_param
4817 * with a POST request, we may be interested in checking the body for
4818 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01004819 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02004820 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreaueee5b512015-04-03 23:46:31 +02004821 s->txn->meth == HTTP_METH_POST && s->be->url_param_name != NULL &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004822 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004823 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01004824 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01004825 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004826
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004827 if (msg->flags & HTTP_MSGF_XFER_LEN) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004828 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004829 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau5e205522011-12-17 16:34:27 +01004830#ifdef TCP_QUICKACK
4831 /* We expect some data from the client. Unless we know for sure
4832 * we already have a full request, we have to re-enable quick-ack
4833 * in case we previously disabled it, otherwise we might cause
4834 * the client to delay further data.
4835 */
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004836 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Willy Tarreau3c728722014-01-23 13:50:42 +01004837 cli_conn && conn_ctrl_ready(cli_conn) &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004838 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02004839 (msg->body_len > req->buf->i - txn->req.eoh - 2)))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004840 setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau5e205522011-12-17 16:34:27 +01004841#endif
4842 }
Willy Tarreau03945942009-12-22 16:50:27 +01004843
Willy Tarreau59234e92008-11-30 23:51:27 +01004844 /*************************************************************
4845 * OK, that's finished for the headers. We have done what we *
4846 * could. Let's switch to the DATA state. *
4847 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01004848 req->analyse_exp = TICK_ETERNITY;
4849 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004850
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004851 /* if the server closes the connection, we want to immediately react
4852 * and close the socket to save packets and syscalls.
4853 */
Willy Tarreau40f151a2012-12-20 12:10:09 +01004854 if (!(req->analysers & AN_REQ_HTTP_XFER_BODY))
Willy Tarreau350f4872014-11-28 14:42:25 +01004855 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02004856
Willy Tarreau59234e92008-11-30 23:51:27 +01004857 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01004858 /* OK let's go on with the BODY now */
4859 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01004860
Willy Tarreau59234e92008-11-30 23:51:27 +01004861 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02004862 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01004863 /* we detected a parsing error. We want to archive this request
4864 * in the dedicated proxy area for later troubleshooting.
4865 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004866 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, sess->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01004867 }
Willy Tarreau4076a152009-04-02 15:18:36 +02004868
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004869 txn->req.err_state = txn->req.msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01004870 txn->req.msg_state = HTTP_MSG_ERROR;
4871 txn->status = 400;
Christopher Faulet0184ea72017-01-05 14:06:34 +01004872 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004873 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004874
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004875 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004876 if (sess->listener->counters)
4877 sess->listener->counters->failed_req++;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004878
Willy Tarreaue7dff022015-04-03 01:14:29 +02004879 if (!(s->flags & SF_ERR_MASK))
4880 s->flags |= SF_ERR_PRXCOND;
4881 if (!(s->flags & SF_FINST_MASK))
4882 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02004883 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004884}
Willy Tarreauadfb8562008-08-11 15:24:42 +02004885
Willy Tarreau60b85b02008-11-30 23:28:40 +01004886/* This function is an analyser which processes the HTTP tarpit. It always
4887 * returns zero, at the beginning because it prevents any other processing
4888 * from occurring, and at the end because it terminates the request.
4889 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004890int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01004891{
Willy Tarreaueee5b512015-04-03 23:46:31 +02004892 struct http_txn *txn = s->txn;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004893
4894 /* This connection is being tarpitted. The CLIENT side has
4895 * already set the connect expiration date to the right
4896 * timeout. We just have to check that the client is still
4897 * there and that the timeout has not expired.
4898 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004899 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004900 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01004901 !tick_is_expired(req->analyse_exp, now_ms))
4902 return 0;
4903
4904 /* We will set the queue timer to the time spent, just for
4905 * logging purposes. We fake a 500 server error, so that the
4906 * attacker will not suspect his connection has been tarpitted.
4907 * It will not cause trouble to the logs because we can exclude
4908 * the tarpitted connections by filtering on the 'PT' status flags.
4909 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01004910 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
4911
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004912 if (!(req->flags & CF_READ_ERROR))
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004913 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau60b85b02008-11-30 23:28:40 +01004914
Christopher Faulet0184ea72017-01-05 14:06:34 +01004915 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004916 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004917
Willy Tarreaue7dff022015-04-03 01:14:29 +02004918 if (!(s->flags & SF_ERR_MASK))
4919 s->flags |= SF_ERR_PRXCOND;
4920 if (!(s->flags & SF_FINST_MASK))
4921 s->flags |= SF_FINST_T;
Willy Tarreau60b85b02008-11-30 23:28:40 +01004922 return 0;
4923}
4924
Willy Tarreau5a8f9472014-04-10 11:16:06 +02004925/* This function is an analyser which waits for the HTTP request body. It waits
4926 * for either the buffer to be full, or the full advertised contents to have
4927 * reached the buffer. It must only be called after the standard HTTP request
4928 * processing has occurred, because it expects the request to be parsed and will
4929 * look for the Expect header. It may send a 100-Continue interim response. It
4930 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
4931 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
4932 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01004933 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004934int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01004935{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004936 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004937 struct http_txn *txn = s->txn;
4938 struct http_msg *msg = &s->txn->req;
Willy Tarreaud34af782008-11-30 23:36:37 +01004939
4940 /* We have to parse the HTTP request body to find any required data.
4941 * "balance url_param check_post" should have been the only way to get
4942 * into this. We were brought here after HTTP header analysis, so all
4943 * related structures are ready.
4944 */
4945
Willy Tarreau890988f2014-04-10 11:59:33 +02004946 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
4947 /* This is the first call */
4948 if (msg->msg_state < HTTP_MSG_BODY)
4949 goto missing_data;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004950
Willy Tarreau890988f2014-04-10 11:59:33 +02004951 if (msg->msg_state < HTTP_MSG_100_SENT) {
4952 /* If we have HTTP/1.1 and Expect: 100-continue, then we must
4953 * send an HTTP/1.1 100 Continue intermediate response.
4954 */
4955 if (msg->flags & HTTP_MSGF_VER_11) {
4956 struct hdr_ctx ctx;
4957 ctx.idx = 0;
4958 /* Expect is allowed in 1.1, look for it */
4959 if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) &&
4960 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004961 bo_inject(&s->res, http_100_chunk.str, http_100_chunk.len);
Thierry FOURNIER / OZON.IO43ad11d2016-12-12 15:19:58 +01004962 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau890988f2014-04-10 11:59:33 +02004963 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004964 }
Willy Tarreau890988f2014-04-10 11:59:33 +02004965 msg->msg_state = HTTP_MSG_100_SENT;
Willy Tarreau522d6c02009-12-06 18:49:18 +01004966 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01004967
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01004968 /* we have msg->sov which points to the first byte of message body.
Willy Tarreau877e78d2013-04-07 18:48:08 +02004969 * req->buf->p still points to the beginning of the message. We
4970 * must save the body in msg->next because it survives buffer
4971 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01004972 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01004973 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01004974
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004975 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01004976 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
4977 else
4978 msg->msg_state = HTTP_MSG_DATA;
4979 }
4980
Willy Tarreau890988f2014-04-10 11:59:33 +02004981 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
4982 /* We're in content-length mode, we just have to wait for enough data. */
Willy Tarreaue115b492015-05-01 23:05:14 +02004983 if (http_body_bytes(msg) < msg->body_len)
Willy Tarreau890988f2014-04-10 11:59:33 +02004984 goto missing_data;
4985
4986 /* OK we have everything we need now */
4987 goto http_end;
4988 }
4989
4990 /* OK here we're parsing a chunked-encoded message */
4991
Willy Tarreau522d6c02009-12-06 18:49:18 +01004992 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01004993 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01004994 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01004995 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01004996 */
Willy Tarreau4baf44b2012-03-09 14:10:20 +01004997 int ret = http_parse_chunk_size(msg);
Willy Tarreaud34af782008-11-30 23:36:37 +01004998
Willy Tarreau115acb92009-12-26 13:56:06 +01004999 if (!ret)
5000 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005001 else if (ret < 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005002 stream_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01005003 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02005004 }
Christopher Faulet113f7de2015-12-14 14:52:13 +01005005 msg->next += ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +02005006 msg->msg_state = msg->chunk_len ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreaud34af782008-11-30 23:36:37 +01005007 }
5008
Willy Tarreaud98cf932009-12-27 22:54:55 +01005009 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaue115b492015-05-01 23:05:14 +02005010 * We have the first data byte is in msg->sov + msg->sol. We're waiting
5011 * for at least a whole chunk or the whole content length bytes after
5012 * msg->sov + msg->sol.
Willy Tarreaud34af782008-11-30 23:36:37 +01005013 */
Willy Tarreau890988f2014-04-10 11:59:33 +02005014 if (msg->msg_state == HTTP_MSG_TRAILERS)
5015 goto http_end;
5016
Willy Tarreaue115b492015-05-01 23:05:14 +02005017 if (http_body_bytes(msg) >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01005018 goto http_end;
5019
5020 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02005021 /* we get here if we need to wait for more data. If the buffer is full,
5022 * we have the maximum we can expect.
5023 */
5024 if (buffer_full(req->buf, global.tune.maxrewrite))
5025 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01005026
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005027 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01005028 txn->status = 408;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005029 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau79ebac62010-06-07 13:47:49 +02005030
Willy Tarreaue7dff022015-04-03 01:14:29 +02005031 if (!(s->flags & SF_ERR_MASK))
5032 s->flags |= SF_ERR_CLITO;
5033 if (!(s->flags & SF_FINST_MASK))
5034 s->flags |= SF_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01005035 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01005036 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01005037
5038 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02005039 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01005040 /* Not enough data. We'll re-use the http-request
5041 * timeout here. Ideally, we should set the timeout
5042 * relative to the accept() date. We just set the
5043 * request timeout once at the beginning of the
5044 * request.
5045 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005046 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01005047 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02005048 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01005049 return 0;
5050 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01005051
5052 http_end:
5053 /* The situation will not evolve, so let's give up on the analysis. */
5054 s->logs.tv_request = now; /* update the request timer to reflect full request */
5055 req->analysers &= ~an_bit;
5056 req->analyse_exp = TICK_ETERNITY;
5057 return 1;
5058
5059 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005060 txn->req.err_state = txn->req.msg_state;
Willy Tarreau522d6c02009-12-06 18:49:18 +01005061 txn->req.msg_state = HTTP_MSG_ERROR;
5062 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005063 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau522d6c02009-12-06 18:49:18 +01005064
Willy Tarreaue7dff022015-04-03 01:14:29 +02005065 if (!(s->flags & SF_ERR_MASK))
5066 s->flags |= SF_ERR_PRXCOND;
5067 if (!(s->flags & SF_FINST_MASK))
5068 s->flags |= SF_FINST_R;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005069
Willy Tarreau522d6c02009-12-06 18:49:18 +01005070 return_err_msg:
Christopher Faulet0184ea72017-01-05 14:06:34 +01005071 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005072 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005073 if (sess->listener->counters)
5074 sess->listener->counters->failed_req++;
Willy Tarreau522d6c02009-12-06 18:49:18 +01005075 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01005076}
5077
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005078/* send a server's name with an outgoing request over an established connection.
5079 * Note: this function is designed to be called once the request has been scheduled
5080 * for being forwarded. This is the reason why it rewinds the buffer before
5081 * proceeding.
5082 */
Willy Tarreau45c0d982012-03-09 12:11:57 +01005083int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05005084
5085 struct hdr_ctx ctx;
5086
Mark Lamourinec2247f02012-01-04 13:02:01 -05005087 char *hdr_name = be->server_id_hdr_name;
5088 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02005089 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05005090 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005091 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05005092
William Lallemandd9e90662012-01-30 17:27:17 +01005093 ctx.idx = 0;
5094
Willy Tarreau211cdec2014-04-17 20:18:08 +02005095 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005096 if (old_o) {
5097 /* The request was already skipped, let's restore it */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005098 b_rew(chn->buf, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02005099 txn->req.next += old_o;
Christopher Fauletd7c91962015-04-30 11:48:27 +02005100 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005101 }
5102
Willy Tarreau9b28e032012-10-12 23:49:43 +02005103 old_i = chn->buf->i;
5104 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 -05005105 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01005106 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05005107 }
5108
5109 /* Add the new header requested with the server value */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005110 hdr_val = trash.str;
Mark Lamourinec2247f02012-01-04 13:02:01 -05005111 memcpy(hdr_val, hdr_name, hdr_name_len);
5112 hdr_val += hdr_name_len;
5113 *hdr_val++ = ':';
5114 *hdr_val++ = ' ';
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005115 hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val);
5116 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str);
Mark Lamourinec2247f02012-01-04 13:02:01 -05005117
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005118 if (old_o) {
5119 /* If this was a forwarded request, we must readjust the amount of
5120 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02005121 * variations. Note that the current state is >= HTTP_MSG_BODY,
5122 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005123 */
Willy Tarreau877e78d2013-04-07 18:48:08 +02005124 old_o += chn->buf->i - old_i;
5125 b_adv(chn->buf, old_o);
5126 txn->req.next -= old_o;
5127 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02005128 }
5129
Mark Lamourinec2247f02012-01-04 13:02:01 -05005130 return 0;
5131}
5132
Willy Tarreau610ecce2010-01-04 21:15:02 +01005133/* Terminate current transaction and prepare a new one. This is very tricky
5134 * right now but it works.
5135 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005136void http_end_txn_clean_session(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005137{
Willy Tarreaueee5b512015-04-03 23:46:31 +02005138 int prev_status = s->txn->status;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005139 struct proxy *fe = strm_fe(s);
Willy Tarreau858b1032015-12-07 17:04:59 +01005140 struct proxy *be = s->be;
Willy Tarreau323a2d92015-08-04 19:00:17 +02005141 struct connection *srv_conn;
5142 struct server *srv;
Willy Tarreau449d74a2015-08-05 17:16:33 +02005143 unsigned int prev_flags = s->txn->flags;
Willy Tarreau068621e2013-12-23 15:11:25 +01005144
Willy Tarreau610ecce2010-01-04 21:15:02 +01005145 /* FIXME: We need a more portable way of releasing a backend's and a
5146 * server's connections. We need a safer way to reinitialize buffer
5147 * flags. We also need a more accurate method for computing per-request
5148 * data.
5149 */
Willy Tarreau323a2d92015-08-04 19:00:17 +02005150 srv_conn = objt_conn(s->si[1].end);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005151
Willy Tarreau4213a112013-12-15 10:25:42 +01005152 /* unless we're doing keep-alive, we want to quickly close the connection
5153 * to the server.
5154 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005155 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01005156 !si_conn_ready(&s->si[1])) {
5157 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
5158 si_shutr(&s->si[1]);
5159 si_shutw(&s->si[1]);
Willy Tarreau4213a112013-12-15 10:25:42 +01005160 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005161
Willy Tarreaue7dff022015-04-03 01:14:29 +02005162 if (s->flags & SF_BE_ASSIGNED) {
Willy Tarreau858b1032015-12-07 17:04:59 +01005163 be->beconn--;
Willy Tarreau2d5cd472012-03-01 23:34:37 +01005164 if (unlikely(s->srv_conn))
5165 sess_change_server(s, NULL);
5166 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005167
5168 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02005169 stream_process_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005170
Willy Tarreaueee5b512015-04-03 23:46:31 +02005171 if (s->txn->status) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005172 int n;
5173
Willy Tarreaueee5b512015-04-03 23:46:31 +02005174 n = s->txn->status / 100;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005175 if (n < 1 || n > 5)
5176 n = 0;
5177
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005178 if (fe->mode == PR_MODE_HTTP) {
5179 fe->fe_counters.p.http.rsp[n]++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005180 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02005181 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau858b1032015-12-07 17:04:59 +01005182 (be->mode == PR_MODE_HTTP)) {
5183 be->be_counters.p.http.rsp[n]++;
5184 be->be_counters.p.http.cum_req++;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01005185 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005186 }
5187
5188 /* don't count other requests' data */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005189 s->logs.bytes_in -= s->req.buf->i;
5190 s->logs.bytes_out -= s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005191
5192 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005193 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02005194 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005195 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005196 s->do_log(s);
5197 }
5198
Willy Tarreaud713bcc2014-06-25 15:36:04 +02005199 /* stop tracking content-based counters */
Willy Tarreau87b09662015-04-03 00:22:06 +02005200 stream_stop_content_counters(s);
5201 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02005202
Willy Tarreau610ecce2010-01-04 21:15:02 +01005203 s->logs.accept_date = date; /* user-visible date for logging */
5204 s->logs.tv_accept = now; /* corrected date for internal use */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02005205 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
5206 s->logs.t_idle = -1;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005207 tv_zero(&s->logs.tv_request);
5208 s->logs.t_queue = -1;
5209 s->logs.t_connect = -1;
5210 s->logs.t_data = -1;
5211 s->logs.t_close = 0;
5212 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
5213 s->logs.srv_queue_size = 0; /* we will get this number soon */
5214
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005215 s->logs.bytes_in = s->req.total = s->req.buf->i;
5216 s->logs.bytes_out = s->res.total = s->res.buf->i;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005217
5218 if (s->pend_pos)
5219 pendconn_free(s->pend_pos);
5220
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005221 if (objt_server(s->target)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02005222 if (s->flags & SF_CURR_SESS) {
5223 s->flags &= ~SF_CURR_SESS;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005224 objt_server(s->target)->cur_sess--;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005225 }
Willy Tarreau858b1032015-12-07 17:04:59 +01005226 if (may_dequeue_tasks(objt_server(s->target), be))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005227 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01005228 }
5229
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005230 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005231
Willy Tarreau4213a112013-12-15 10:25:42 +01005232 /* only release our endpoint if we don't intend to reuse the
5233 * connection.
5234 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005235 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Willy Tarreau350f4872014-11-28 14:42:25 +01005236 !si_conn_ready(&s->si[1])) {
5237 si_release_endpoint(&s->si[1]);
Willy Tarreau323a2d92015-08-04 19:00:17 +02005238 srv_conn = NULL;
Willy Tarreau4213a112013-12-15 10:25:42 +01005239 }
5240
Willy Tarreau350f4872014-11-28 14:42:25 +01005241 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
5242 s->si[1].err_type = SI_ET_NONE;
5243 s->si[1].conn_retries = 0; /* used for logging too */
5244 s->si[1].exp = TICK_ETERNITY;
Willy Tarreau87b09662015-04-03 00:22:06 +02005245 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005246 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|CF_WROTE_DATA);
5247 s->res.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|CF_WROTE_DATA);
Willy Tarreaue7dff022015-04-03 01:14:29 +02005248 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
5249 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
5250 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Willy Tarreau543db622012-11-15 16:41:22 +01005251
Willy Tarreaueee5b512015-04-03 23:46:31 +02005252 s->txn->meth = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005253 http_reset_txn(s);
Willy Tarreaueee5b512015-04-03 23:46:31 +02005254 s->txn->flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01005255
5256 if (prev_status == 401 || prev_status == 407) {
5257 /* In HTTP keep-alive mode, if we receive a 401, we still have
5258 * a chance of being able to send the visitor again to the same
5259 * server over the same connection. This is required by some
5260 * broken protocols such as NTLM, and anyway whenever there is
5261 * an opportunity for sending the challenge to the proper place,
5262 * it's better to do it (at least it helps with debugging).
5263 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02005264 s->txn->flags |= TX_PREFER_LAST;
Willy Tarreaubd99d582015-09-02 10:40:43 +02005265 if (srv_conn)
5266 srv_conn->flags |= CO_FL_PRIVATE;
Willy Tarreau068621e2013-12-23 15:11:25 +01005267 }
5268
Willy Tarreau53f96852016-02-02 18:50:47 +01005269 /* Never ever allow to reuse a connection from a non-reuse backend */
5270 if (srv_conn && (be->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
5271 srv_conn->flags |= CO_FL_PRIVATE;
5272
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005273 if (fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau350f4872014-11-28 14:42:25 +01005274 s->si[1].flags |= SI_FL_INDEP_STR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005275
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005276 if (fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005277 s->req.flags |= CF_NEVER_WAIT;
5278 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02005279 }
5280
Willy Tarreau714ea782015-11-25 20:11:11 +01005281 /* we're removing the analysers, we MUST re-enable events detection.
5282 * We don't enable close on the response channel since it's either
5283 * already closed, or in keep-alive with an idle connection handler.
5284 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005285 channel_auto_read(&s->req);
5286 channel_auto_close(&s->req);
5287 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005288
Willy Tarreau1c59bd52015-11-02 20:20:11 +01005289 /* we're in keep-alive with an idle connection, monitor it if not already done */
5290 if (srv_conn && LIST_ISEMPTY(&srv_conn->list)) {
Willy Tarreau323a2d92015-08-04 19:00:17 +02005291 srv = objt_server(srv_conn->target);
Willy Tarreau8dff9982015-08-04 20:45:52 +02005292 if (!srv)
5293 si_idle_conn(&s->si[1], NULL);
Willy Tarreau53f96852016-02-02 18:50:47 +01005294 else if (srv_conn->flags & CO_FL_PRIVATE)
Willy Tarreau8dff9982015-08-04 20:45:52 +02005295 si_idle_conn(&s->si[1], &srv->priv_conns);
Willy Tarreau449d74a2015-08-05 17:16:33 +02005296 else if (prev_flags & TX_NOT_FIRST)
5297 /* note: we check the request, not the connection, but
5298 * this is valid for strategies SAFE and AGGR, and in
5299 * case of ALWS, we don't care anyway.
5300 */
5301 si_idle_conn(&s->si[1], &srv->safe_conns);
Willy Tarreau8dff9982015-08-04 20:45:52 +02005302 else
5303 si_idle_conn(&s->si[1], &srv->idle_conns);
Willy Tarreau4320eaa2015-08-05 11:08:30 +02005304 }
Christopher Faulete6006242017-03-10 11:52:44 +01005305 s->req.analysers = strm_li(s) ? strm_li(s)->analysers : 0;
5306 s->res.analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005307}
5308
5309
5310/* This function updates the request state machine according to the response
5311 * state machine and buffer flags. It returns 1 if it changes anything (flag
5312 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
5313 * it is only used to find when a request/response couple is complete. Both
5314 * this function and its equivalent should loop until both return zero. It
5315 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5316 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005317int http_sync_req_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005318{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005319 struct channel *chn = &s->req;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005320 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005321 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005322 unsigned int old_state = txn->req.msg_state;
5323
Willy Tarreau610ecce2010-01-04 21:15:02 +01005324 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY))
5325 return 0;
5326
5327 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01005328 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005329 * We can shut the read side unless we want to abort_on_close,
5330 * or we have a POST request. The issue with POST requests is
5331 * that some browsers still send a CRLF after the request, and
5332 * this CRLF must be read so that it does not remain in the kernel
5333 * buffers, otherwise a close could cause an RST on some systems
5334 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01005335 * Note that if we're using keep-alive on the client side, we'd
5336 * rather poll now and keep the polling enabled for the whole
Willy Tarreau87b09662015-04-03 00:22:06 +02005337 * stream's life than enabling/disabling it between each
Willy Tarreau3988d932013-12-27 23:03:08 +01005338 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01005339 */
Willy Tarreau3988d932013-12-27 23:03:08 +01005340 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5341 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5342 !(s->be->options & PR_O_ABRT_CLOSE) &&
5343 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005344 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005345
Willy Tarreau40f151a2012-12-20 12:10:09 +01005346 /* if the server closes the connection, we want to immediately react
5347 * and close the socket to save packets and syscalls.
5348 */
Willy Tarreau350f4872014-11-28 14:42:25 +01005349 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau40f151a2012-12-20 12:10:09 +01005350
Willy Tarreau7f876a12015-11-18 11:59:55 +01005351 /* In any case we've finished parsing the request so we must
5352 * disable Nagle when sending data because 1) we're not going
5353 * to shut this side, and 2) the server is waiting for us to
5354 * send pending data.
5355 */
5356 chn->flags |= CF_NEVER_WAIT;
5357
Willy Tarreau610ecce2010-01-04 21:15:02 +01005358 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
5359 goto wait_other_side;
5360
5361 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
5362 /* The server has not finished to respond, so we
5363 * don't want to move in order not to upset it.
5364 */
5365 goto wait_other_side;
5366 }
5367
5368 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
5369 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005370 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005371 txn->req.msg_state = HTTP_MSG_TUNNEL;
5372 goto wait_other_side;
5373 }
5374
5375 /* When we get here, it means that both the request and the
5376 * response have finished receiving. Depending on the connection
5377 * mode, we'll have to wait for the last bytes to leave in either
5378 * direction, and sometimes for a close to be effective.
5379 */
5380
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005381 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5382 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005383 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
5384 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005385 }
5386 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5387 /* Option forceclose is set, or either side wants to close,
5388 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02005389 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005390 * once both states are CLOSED.
5391 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005392 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5393 channel_shutr_now(chn);
5394 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005395 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005396 }
5397 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005398 /* The last possible modes are keep-alive and tunnel. Tunnel mode
5399 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005400 */
Willy Tarreau4213a112013-12-15 10:25:42 +01005401 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
5402 channel_auto_read(chn);
5403 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau4213a112013-12-15 10:25:42 +01005404 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005405 }
5406
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005407 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005408 /* if we've just closed an output, let's switch */
Willy Tarreau350f4872014-11-28 14:42:25 +01005409 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005410
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005411 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005412 txn->req.msg_state = HTTP_MSG_CLOSING;
5413 goto http_msg_closing;
5414 }
5415 else {
5416 txn->req.msg_state = HTTP_MSG_CLOSED;
5417 goto http_msg_closed;
5418 }
5419 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005420 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005421 }
5422
5423 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
5424 http_msg_closing:
5425 /* nothing else to forward, just waiting for the output buffer
5426 * to be empty and for the shutw_now to take effect.
5427 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005428 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005429 txn->req.msg_state = HTTP_MSG_CLOSED;
5430 goto http_msg_closed;
5431 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005432 else if (chn->flags & CF_SHUTW) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005433 txn->req.err_state = txn->req.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005434 txn->req.msg_state = HTTP_MSG_ERROR;
5435 goto wait_other_side;
5436 }
5437 }
5438
5439 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
5440 http_msg_closed:
Willy Tarreau3988d932013-12-27 23:03:08 +01005441 /* see above in MSG_DONE why we only do this in these states */
5442 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
5443 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
5444 !(s->be->options & PR_O_ABRT_CLOSE))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01005445 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005446 goto wait_other_side;
5447 }
5448
5449 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005450 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005451}
5452
5453
5454/* This function updates the response state machine according to the request
5455 * state machine and buffer flags. It returns 1 if it changes anything (flag
5456 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
5457 * it is only used to find when a request/response couple is complete. Both
5458 * this function and its equivalent should loop until both return zero. It
5459 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
5460 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005461int http_sync_res_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005462{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005463 struct channel *chn = &s->res;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005464 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005465 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005466 unsigned int old_state = txn->rsp.msg_state;
5467
Willy Tarreau610ecce2010-01-04 21:15:02 +01005468 if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY))
5469 return 0;
5470
5471 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
5472 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01005473 * still monitor the server connection for a possible close
5474 * while the request is being uploaded, so we don't disable
5475 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005476 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005477 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01005478
5479 if (txn->req.msg_state == HTTP_MSG_ERROR)
5480 goto wait_other_side;
5481
5482 if (txn->req.msg_state < HTTP_MSG_DONE) {
5483 /* The client seems to still be sending data, probably
5484 * because we got an error response during an upload.
5485 * We have the choice of either breaking the connection
5486 * or letting it pass through. Let's do the later.
5487 */
5488 goto wait_other_side;
5489 }
5490
5491 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
5492 /* if any side switches to tunnel mode, the other one does too */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005493 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005494 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreaufc47f912012-10-20 10:38:09 +02005495 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005496 goto wait_other_side;
5497 }
5498
5499 /* When we get here, it means that both the request and the
5500 * response have finished receiving. Depending on the connection
5501 * mode, we'll have to wait for the last bytes to leave in either
5502 * direction, and sometimes for a close to be effective.
5503 */
5504
5505 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5506 /* Server-close mode : shut read and wait for the request
5507 * side to close its output buffer. The caller will detect
5508 * when we're in DONE and the other is in CLOSED and will
5509 * catch that for the final cleanup.
5510 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005511 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
5512 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005513 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005514 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
5515 /* Option forceclose is set, or either side wants to close,
5516 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02005517 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005518 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005519 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005520 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5521 channel_shutr_now(chn);
5522 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01005523 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005524 }
5525 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01005526 /* The last possible modes are keep-alive and tunnel. Tunnel will
5527 * need to forward remaining data. Keep-alive will need to monitor
5528 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01005529 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005530 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02005531 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01005532 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
5533 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005534 }
5535
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005536 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005537 /* if we've just closed an output, let's switch */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005538 if (!channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005539 txn->rsp.msg_state = HTTP_MSG_CLOSING;
5540 goto http_msg_closing;
5541 }
5542 else {
5543 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5544 goto http_msg_closed;
5545 }
5546 }
5547 goto wait_other_side;
5548 }
5549
5550 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
5551 http_msg_closing:
5552 /* nothing else to forward, just waiting for the output buffer
5553 * to be empty and for the shutw_now to take effect.
5554 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005555 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005556 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5557 goto http_msg_closed;
5558 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005559 else if (chn->flags & CF_SHUTW) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005560 txn->req.err_state = txn->req.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005561 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005562 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005563 if (objt_server(s->target))
5564 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005565 goto wait_other_side;
5566 }
5567 }
5568
5569 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
5570 http_msg_closed:
5571 /* drop any pending data */
Willy Tarreau319f7452015-01-14 20:32:59 +01005572 channel_truncate(chn);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005573 channel_auto_close(chn);
5574 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005575 goto wait_other_side;
5576 }
5577
5578 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02005579 /* We force the response to leave immediately if we're waiting for the
5580 * other side, since there is no pending shutdown to push it out.
5581 */
5582 if (!channel_is_empty(chn))
5583 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02005584 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005585}
5586
5587
5588/* Resync the request and response state machines. Return 1 if either state
5589 * changes.
5590 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005591int http_resync_states(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005592{
Willy Tarreaueee5b512015-04-03 23:46:31 +02005593 struct http_txn *txn = s->txn;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005594 int old_req_state = txn->req.msg_state;
5595 int old_res_state = txn->rsp.msg_state;
5596
Willy Tarreau610ecce2010-01-04 21:15:02 +01005597 http_sync_req_state(s);
5598 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01005599 if (!http_sync_res_state(s))
5600 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005601 if (!http_sync_req_state(s))
5602 break;
5603 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02005604
Willy Tarreau610ecce2010-01-04 21:15:02 +01005605 /* OK, both state machines agree on a compatible state.
5606 * There are a few cases we're interested in :
5607 * - HTTP_MSG_TUNNEL on either means we have to disable both analysers
5608 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
5609 * directions, so let's simply disable both analysers.
5610 * - HTTP_MSG_CLOSED on the response only means we must abort the
5611 * request.
5612 * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response
5613 * with server-close mode means we've completed one request and we
5614 * must re-initialize the server connection.
5615 */
5616
5617 if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
5618 txn->rsp.msg_state == HTTP_MSG_TUNNEL ||
5619 (txn->req.msg_state == HTTP_MSG_CLOSED &&
5620 txn->rsp.msg_state == HTTP_MSG_CLOSED)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01005621 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005622 channel_auto_close(&s->req);
5623 channel_auto_read(&s->req);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005624 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005625 channel_auto_close(&s->res);
5626 channel_auto_read(&s->res);
Christopher Faulet6962f4e2016-11-28 14:21:27 +01005627 if (txn->req.msg_state == HTTP_MSG_TUNNEL && HAS_REQ_DATA_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01005628 s->req.analysers |= AN_REQ_FLT_XFER_DATA;
Christopher Faulet6962f4e2016-11-28 14:21:27 +01005629 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL && HAS_RSP_DATA_FILTERS(s))
Christopher Faulet0184ea72017-01-05 14:06:34 +01005630 s->res.analysers |= AN_RES_FLT_XFER_DATA;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005631 }
Willy Tarreau40f151a2012-12-20 12:10:09 +01005632 else if ((txn->req.msg_state >= HTTP_MSG_DONE &&
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005633 (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->res.flags & CF_SHUTW))) ||
Willy Tarreau2fa144c2010-01-04 23:13:26 +01005634 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01005635 txn->req.msg_state == HTTP_MSG_ERROR) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01005636 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005637 channel_auto_close(&s->res);
5638 channel_auto_read(&s->res);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005639 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005640 channel_abort(&s->req);
5641 channel_auto_close(&s->req);
5642 channel_auto_read(&s->req);
5643 channel_truncate(&s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01005644 }
Willy Tarreau4213a112013-12-15 10:25:42 +01005645 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
5646 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01005647 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01005648 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
5649 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
5650 /* server-close/keep-alive: terminate this transaction,
5651 * possibly killing the server connection and reinitialize
Willy Tarreau3de5bd62016-05-02 16:07:07 +02005652 * a fresh-new transaction, but only once we're sure there's
5653 * enough room in the request and response buffer to process
Christopher Fauletc0c672a2017-03-28 11:51:33 +02005654 * another request. They must not hold any pending output data
5655 * and the response buffer must realigned
5656 * (realign is done is http_end_txn_clean_session).
Willy Tarreau610ecce2010-01-04 21:15:02 +01005657 */
Willy Tarreau3de5bd62016-05-02 16:07:07 +02005658 if (s->req.buf->o)
5659 s->req.flags |= CF_WAKE_WRITE;
Christopher Fauletc0c672a2017-03-28 11:51:33 +02005660 else if (s->res.buf->o)
Willy Tarreau3de5bd62016-05-02 16:07:07 +02005661 s->res.flags |= CF_WAKE_WRITE;
Christopher Faulete6006242017-03-10 11:52:44 +01005662 else {
5663 s->req.analysers = AN_REQ_FLT_END;
5664 s->res.analysers = AN_RES_FLT_END;
5665 txn->flags |= TX_WAIT_CLEANUP;
5666 return 1;
5667 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01005668 }
5669
Willy Tarreau610ecce2010-01-04 21:15:02 +01005670 return txn->req.msg_state != old_req_state ||
5671 txn->rsp.msg_state != old_res_state;
5672}
5673
Willy Tarreaud98cf932009-12-27 22:54:55 +01005674/* This function is an analyser which forwards request body (including chunk
5675 * sizes if any). It is called as soon as we must forward, even if we forward
5676 * zero byte. The only situation where it must not be called is when we're in
5677 * tunnel mode and we want to forward till the close. It's used both to forward
5678 * remaining data and to resync after end of body. It expects the msg_state to
5679 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02005680 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreau124d9912011-03-01 20:30:48 +01005681 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02005682 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005683 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005684int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005685{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005686 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005687 struct http_txn *txn = s->txn;
5688 struct http_msg *msg = &s->txn->req;
Christopher Faulet3e344292015-11-24 16:24:13 +01005689 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005690
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005691 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5692 return 0;
5693
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005694 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02005695 ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005696 /* Output closed while we were sending data. We must abort and
5697 * wake the other side up.
5698 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005699 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02005700 msg->msg_state = HTTP_MSG_ERROR;
5701 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005702 return 1;
5703 }
5704
Willy Tarreaud98cf932009-12-27 22:54:55 +01005705 /* Note that we don't have to send 100-continue back because we don't
5706 * need the data to complete our job, and it's up to the server to
5707 * decide whether to return 100, 417 or anything else in return of
5708 * an "Expect: 100-continue" header.
5709 */
Christopher Fauletd7c91962015-04-30 11:48:27 +02005710 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005711 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
5712 ? HTTP_MSG_CHUNK_SIZE
5713 : HTTP_MSG_DATA);
Christopher Fauletd7c91962015-04-30 11:48:27 +02005714
5715 /* TODO/filters: when http-buffer-request option is set or if a
5716 * rule on url_param exists, the first chunk size could be
5717 * already parsed. In that case, msg->next is after the chunk
5718 * size (including the CRLF after the size). So this case should
5719 * be handled to */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005720 }
5721
Willy Tarreau7ba23542014-04-17 21:50:00 +02005722 /* Some post-connect processing might want us to refrain from starting to
5723 * forward data. Currently, the only reason for this is "balance url_param"
5724 * whichs need to parse/process the request after we've enabled forwarding.
5725 */
5726 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005727 if (!(s->res.flags & CF_READ_ATTACHED)) {
Willy Tarreau7ba23542014-04-17 21:50:00 +02005728 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02005729 req->flags |= CF_WAKE_CONNECT;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005730 goto missing_data_or_waiting;
Willy Tarreau7ba23542014-04-17 21:50:00 +02005731 }
5732 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
5733 }
5734
Willy Tarreau80a92c02014-03-12 10:41:13 +01005735 /* in most states, we should abort in case of early close */
5736 channel_auto_close(req);
5737
Willy Tarreauefdf0942014-04-24 20:08:57 +02005738 if (req->to_forward) {
5739 /* We can't process the buffer's contents yet */
5740 req->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005741 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02005742 }
5743
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005744 if (msg->msg_state < HTTP_MSG_DONE) {
5745 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
5746 ? http_msg_forward_chunked_body(s, msg)
5747 : http_msg_forward_body(s, msg));
5748 if (!ret)
5749 goto missing_data_or_waiting;
5750 if (ret < 0)
5751 goto return_bad_req;
5752 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02005753
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005754 /* other states, DONE...TUNNEL */
5755 /* we don't want to forward closes on DONE except in tunnel mode. */
5756 if ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
5757 channel_dont_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02005758
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005759 if (http_resync_states(s)) {
5760 /* some state changes occurred, maybe the analyser
5761 * was disabled too. */
5762 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5763 if (req->flags & CF_SHUTW) {
5764 /* request errors are most likely due to the
5765 * server aborting the transfer. */
5766 goto aborted_xfer;
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02005767 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005768 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005769 http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->err_state, s->be);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005770 goto return_bad_req;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005771 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005772 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005773 }
5774
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005775 /* If "option abortonclose" is set on the backend, we want to monitor
5776 * the client's connection and forward any shutdown notification to the
5777 * server, which will decide whether to close or to go on processing the
5778 * request. We only do that in tunnel mode, and not in other modes since
5779 * it can be abused to exhaust source ports. */
5780 if (s->be->options & PR_O_ABRT_CLOSE) {
5781 channel_auto_read(req);
5782 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) &&
5783 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN))
5784 s->si[1].flags |= SI_FL_NOLINGER;
5785 channel_auto_close(req);
5786 }
5787 else if (s->txn->meth == HTTP_METH_POST) {
5788 /* POST requests may require to read extra CRLF sent by broken
5789 * browsers and which could cause an RST to be sent upon close
5790 * on some systems (eg: Linux). */
5791 channel_auto_read(req);
5792 }
5793 return 0;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005794
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005795 missing_data_or_waiting:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005796 /* stop waiting for data if the input is closed before the end */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005797 if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02005798 if (!(s->flags & SF_ERR_MASK))
5799 s->flags |= SF_ERR_CLICL;
5800 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005801 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005802 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005803 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005804 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005805 }
5806
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005807 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005808 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005809 if (objt_server(s->target))
5810 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005811
5812 goto return_bad_req_stats_ok;
Willy Tarreau79ebac62010-06-07 13:47:49 +02005813 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005814
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005815 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005816 if (req->flags & CF_SHUTW)
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005817 goto aborted_xfer;
Willy Tarreau610ecce2010-01-04 21:15:02 +01005818
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005819 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005820 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005821 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005822 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005823 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005824
Willy Tarreau5c620922011-05-11 19:56:11 +02005825 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005826 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005827 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005828 * modes are already handled by the stream sock layer. We must not do
5829 * this in content-length mode because it could present the MSG_MORE
5830 * flag with the last block of forwarded data, which would cause an
5831 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005832 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01005833 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005834 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005835
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005836 return 0;
5837
Willy Tarreaud98cf932009-12-27 22:54:55 +01005838 return_bad_req: /* let's centralize all bad requests */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005839 sess->fe->fe_counters.failed_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005840 if (sess->listener->counters)
5841 sess->listener->counters->failed_req++;
Willy Tarreaubed410e2014-04-22 08:19:34 +02005842
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005843 return_bad_req_stats_ok:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005844 txn->req.err_state = txn->req.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005845 txn->req.msg_state = HTTP_MSG_ERROR;
5846 if (txn->status) {
5847 /* Note: we don't send any error if some data were already sent */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01005848 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005849 } else {
5850 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005851 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005852 }
Christopher Faulet0184ea72017-01-05 14:06:34 +01005853 req->analysers &= AN_REQ_FLT_END;
5854 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005855
Willy Tarreaue7dff022015-04-03 01:14:29 +02005856 if (!(s->flags & SF_ERR_MASK))
5857 s->flags |= SF_ERR_PRXCOND;
5858 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005859 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005860 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005861 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005862 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005863 }
5864 return 0;
5865
5866 aborted_xfer:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005867 txn->req.err_state = txn->req.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005868 txn->req.msg_state = HTTP_MSG_ERROR;
5869 if (txn->status) {
5870 /* Note: we don't send any error if some data were already sent */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01005871 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005872 } else {
5873 txn->status = 502;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02005874 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005875 }
Christopher Faulet0184ea72017-01-05 14:06:34 +01005876 req->analysers &= AN_REQ_FLT_END;
5877 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005878
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005879 sess->fe->fe_counters.srv_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01005880 s->be->be_counters.srv_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005881 if (objt_server(s->target))
5882 objt_server(s->target)->counters.srv_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005883
Willy Tarreaue7dff022015-04-03 01:14:29 +02005884 if (!(s->flags & SF_ERR_MASK))
5885 s->flags |= SF_ERR_SRVCL;
5886 if (!(s->flags & SF_FINST_MASK)) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005887 if (txn->rsp.msg_state < HTTP_MSG_ERROR)
Willy Tarreaue7dff022015-04-03 01:14:29 +02005888 s->flags |= SF_FINST_H;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005889 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02005890 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005891 }
Willy Tarreaud98cf932009-12-27 22:54:55 +01005892 return 0;
5893}
5894
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005895/* This stream analyser waits for a complete HTTP response. It returns 1 if the
5896 * processing can continue on next analysers, or zero if it either needs more
5897 * data or wants to immediately abort the response (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005898 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005899 * when it has nothing left to do, and may remove any analyser when it wants to
5900 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005901 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005902int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02005903{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005904 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005905 struct http_txn *txn = s->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005906 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02005907 struct hdr_ctx ctx;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01005908 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005909 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02005910 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02005911
Willy Tarreau87b09662015-04-03 00:22:06 +02005912 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02005913 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005914 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005915 rep,
5916 rep->rex, rep->wex,
5917 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005918 rep->buf->i,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02005919 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02005920
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005921 /*
5922 * Now parse the partial (or complete) lines.
5923 * We will check the response syntax, and also join multi-line
5924 * headers. An index of all the lines will be elaborated while
5925 * parsing.
5926 *
5927 * For the parsing, we use a 28 states FSM.
5928 *
5929 * Here is the information we currently have :
Willy Tarreau9b28e032012-10-12 23:49:43 +02005930 * rep->buf->p = beginning of response
5931 * rep->buf->p + msg->eoh = end of processed headers / start of current one
5932 * rep->buf->p + rep->buf->i = end of input data
Willy Tarreau26927362012-05-18 23:22:52 +02005933 * msg->eol = end of current header or line (LF or CRLF)
5934 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005935 */
5936
Willy Tarreau628c40c2014-04-24 19:11:26 +02005937 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01005938 /* There's a protected area at the end of the buffer for rewriting
5939 * purposes. We don't want to start to parse the request if the
5940 * protected area is affected, because we may have to move processed
5941 * data later, which is much more complicated.
5942 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02005943 if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01005944 if (unlikely(!channel_is_rewritable(rep))) {
Willy Tarreau379357a2013-06-08 12:55:46 +02005945 /* some data has still not left the buffer, wake us once that's done */
5946 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
5947 goto abort_response;
5948 channel_dont_close(rep);
5949 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01005950 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02005951 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01005952 }
5953
Willy Tarreau379357a2013-06-08 12:55:46 +02005954 if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) ||
5955 bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite))
5956 buffer_slow_realign(rep->buf);
5957
Willy Tarreau9b28e032012-10-12 23:49:43 +02005958 if (likely(msg->next < rep->buf->i))
Willy Tarreaua560c212012-03-09 13:50:57 +01005959 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01005960 }
5961
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005962 /* 1: we might have to print this header in debug mode */
5963 if (unlikely((global.mode & MODE_DEBUG) &&
5964 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02005965 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005966 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005967
Willy Tarreau9b28e032012-10-12 23:49:43 +02005968 sol = rep->buf->p;
5969 eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005970 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005971
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005972 sol += hdr_idx_first_pos(&txn->hdr_idx);
5973 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005974
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005975 while (cur_idx) {
5976 eol = sol + txn->hdr_idx.v[cur_idx].len;
5977 debug_hdr("srvhdr", s, sol, eol);
5978 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
5979 cur_idx = txn->hdr_idx.v[cur_idx].next;
5980 }
5981 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005982
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005983 /*
5984 * Now we quickly check if we have found a full valid response.
5985 * If not so, we check the FD and buffer states before leaving.
5986 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01005987 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005988 * responses are checked first.
5989 *
5990 * Depending on whether the client is still there or not, we
5991 * may send an error response back or not. Note that normally
5992 * we should only check for HTTP status there, and check I/O
5993 * errors somewhere else.
5994 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005995
Willy Tarreau655dce92009-11-08 13:10:58 +01005996 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02005997 /* Invalid response */
5998 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5999 /* we detected a parsing error. We want to archive this response
6000 * in the dedicated proxy area for later troubleshooting.
6001 */
6002 hdr_response_bad:
6003 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006004 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006005
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006006 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006007 if (objt_server(s->target)) {
6008 objt_server(s->target)->counters.failed_resp++;
6009 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006010 }
Willy Tarreau64648412010-03-05 10:41:54 +01006011 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006012 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006013 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006014 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01006015 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006016 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006017 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006018
Willy Tarreaue7dff022015-04-03 01:14:29 +02006019 if (!(s->flags & SF_ERR_MASK))
6020 s->flags |= SF_ERR_PRXCOND;
6021 if (!(s->flags & SF_FINST_MASK))
6022 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006023
6024 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006025 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006026
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006027 /* too large response does not fit in buffer. */
Willy Tarreau9b28e032012-10-12 23:49:43 +02006028 else if (buffer_full(rep->buf, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02006029 if (msg->err_pos < 0)
Willy Tarreau9b28e032012-10-12 23:49:43 +02006030 msg->err_pos = rep->buf->i;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006031 goto hdr_response_bad;
6032 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006033
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006034 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006035 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006036 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006037 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006038 else if (txn->flags & TX_NOT_FIRST)
6039 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02006040
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006041 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006042 if (objt_server(s->target)) {
6043 objt_server(s->target)->counters.failed_resp++;
6044 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006045 }
Willy Tarreau461f6622008-08-15 23:43:19 +02006046
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006047 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006048 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006049 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01006050 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006051 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006052 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau816b9792009-09-15 21:25:21 +02006053
Willy Tarreaue7dff022015-04-03 01:14:29 +02006054 if (!(s->flags & SF_ERR_MASK))
6055 s->flags |= SF_ERR_SRVCL;
6056 if (!(s->flags & SF_FINST_MASK))
6057 s->flags |= SF_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02006058 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006059 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006060
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02006061 /* read timeout : return a 504 to the client. */
6062 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006063 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006064 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01006065
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006066 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006067 if (objt_server(s->target)) {
6068 objt_server(s->target)->counters.failed_resp++;
6069 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006070 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006071
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006072 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006073 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006074 txn->status = 504;
Willy Tarreau350f4872014-11-28 14:42:25 +01006075 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006076 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006077 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau4076a152009-04-02 15:18:36 +02006078
Willy Tarreaue7dff022015-04-03 01:14:29 +02006079 if (!(s->flags & SF_ERR_MASK))
6080 s->flags |= SF_ERR_SRVTO;
6081 if (!(s->flags & SF_FINST_MASK))
6082 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006083 return 0;
6084 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02006085
Willy Tarreauf003d372012-11-26 13:35:37 +01006086 /* client abort with an abortonclose */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006087 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006088 sess->fe->fe_counters.cli_aborts++;
Willy Tarreauf003d372012-11-26 13:35:37 +01006089 s->be->be_counters.cli_aborts++;
6090 if (objt_server(s->target))
6091 objt_server(s->target)->counters.cli_aborts++;
6092
Christopher Faulet0184ea72017-01-05 14:06:34 +01006093 rep->analysers &= AN_RES_FLT_END;
Willy Tarreauf003d372012-11-26 13:35:37 +01006094 channel_auto_close(rep);
6095
6096 txn->status = 400;
Willy Tarreau319f7452015-01-14 20:32:59 +01006097 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006098 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreauf003d372012-11-26 13:35:37 +01006099
Willy Tarreaue7dff022015-04-03 01:14:29 +02006100 if (!(s->flags & SF_ERR_MASK))
6101 s->flags |= SF_ERR_CLICL;
6102 if (!(s->flags & SF_FINST_MASK))
6103 s->flags |= SF_FINST_H;
Willy Tarreauf003d372012-11-26 13:35:37 +01006104
Willy Tarreau87b09662015-04-03 00:22:06 +02006105 /* process_stream() will take care of the error */
Willy Tarreauf003d372012-11-26 13:35:37 +01006106 return 0;
6107 }
6108
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02006109 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006110 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02006111 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006112 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006113 else if (txn->flags & TX_NOT_FIRST)
6114 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01006115
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006116 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006117 if (objt_server(s->target)) {
6118 objt_server(s->target)->counters.failed_resp++;
6119 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006120 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006121
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006122 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01006123 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006124 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01006125 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006126 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006127 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau21d2af32008-02-14 20:25:24 +01006128
Willy Tarreaue7dff022015-04-03 01:14:29 +02006129 if (!(s->flags & SF_ERR_MASK))
6130 s->flags |= SF_ERR_SRVCL;
6131 if (!(s->flags & SF_FINST_MASK))
6132 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006133 return 0;
6134 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02006135
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006136 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006137 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006138 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006139 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01006140 else if (txn->flags & TX_NOT_FIRST)
6141 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02006142
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006143 s->be->be_counters.failed_resp++;
Christopher Faulet0184ea72017-01-05 14:06:34 +01006144 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006145 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006146
Willy Tarreaue7dff022015-04-03 01:14:29 +02006147 if (!(s->flags & SF_ERR_MASK))
6148 s->flags |= SF_ERR_CLICL;
6149 if (!(s->flags & SF_FINST_MASK))
6150 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006151
Willy Tarreau87b09662015-04-03 00:22:06 +02006152 /* process_stream() will take care of the error */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006153 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006154 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01006155
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006156 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01006157 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006158 return 0;
6159 }
6160
6161 /* More interesting part now : we know that we have a complete
6162 * response which at least looks like HTTP. We have an indicator
6163 * of each header's length, so we can parse them quickly.
6164 */
6165
6166 if (unlikely(msg->err_pos >= 0))
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006167 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006168
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006169 /*
6170 * 1: get the status code
6171 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02006172 n = rep->buf->p[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006173 if (n < 1 || n > 5)
6174 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02006175 /* when the client triggers a 4xx from the server, it's most often due
6176 * to a missing object or permission. These events should be tracked
6177 * because if they happen often, it may indicate a brute force or a
6178 * vulnerability scan.
6179 */
6180 if (n == 4)
Willy Tarreau87b09662015-04-03 00:22:06 +02006181 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02006182
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006183 if (objt_server(s->target))
6184 objt_server(s->target)->counters.p.http.rsp[n]++;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006185
Willy Tarreau91852eb2015-05-01 13:26:00 +02006186 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
6187 * exactly one digit "." one digit. This check may be disabled using
6188 * option accept-invalid-http-response.
6189 */
6190 if (!(s->be->options2 & PR_O2_RSPBUG_OK)) {
6191 if (msg->sl.st.v_l != 8) {
6192 msg->err_pos = 0;
6193 goto hdr_response_bad;
6194 }
6195
6196 if (rep->buf->p[4] != '/' ||
6197 !isdigit((unsigned char)rep->buf->p[5]) ||
6198 rep->buf->p[6] != '.' ||
6199 !isdigit((unsigned char)rep->buf->p[7])) {
6200 msg->err_pos = 4;
6201 goto hdr_response_bad;
6202 }
6203 }
6204
Willy Tarreau5b154472009-12-21 20:11:07 +01006205 /* check if the response is HTTP/1.1 or above */
6206 if ((msg->sl.st.v_l == 8) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02006207 ((rep->buf->p[5] > '1') ||
6208 ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006209 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01006210
6211 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01006212 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 +01006213
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006214 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006215 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006216
Willy Tarreau9b28e032012-10-12 23:49:43 +02006217 txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006218
Willy Tarreau39650402010-03-15 19:44:39 +01006219 /* Adjust server's health based on status code. Note: status codes 501
6220 * and 505 are triggered on demand by client request, so we must not
6221 * count them as server failures.
6222 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006223 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006224 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006225 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006226 else
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006227 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02006228 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01006229
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006230 /*
6231 * 2: check for cacheability.
6232 */
6233
6234 switch (txn->status) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02006235 case 100:
6236 /*
6237 * We may be facing a 100-continue response, in which case this
6238 * is not the right response, and we're waiting for the next one.
6239 * Let's allow this response to go to the client and wait for the
6240 * next one.
6241 */
6242 hdr_idx_init(&txn->hdr_idx);
6243 msg->next -= channel_forward(rep, msg->next);
6244 msg->msg_state = HTTP_MSG_RPBEFORE;
6245 txn->status = 0;
6246 s->logs.t_data = -1; /* was not a response yet */
Christopher Faulet3e344292015-11-24 16:24:13 +01006247 FLT_STRM_CB(s, flt_http_reset(s, msg));
Willy Tarreau628c40c2014-04-24 19:11:26 +02006248 goto next_one;
6249
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006250 case 200:
6251 case 203:
6252 case 206:
6253 case 300:
6254 case 301:
6255 case 410:
6256 /* RFC2616 @13.4:
6257 * "A response received with a status code of
6258 * 200, 203, 206, 300, 301 or 410 MAY be stored
6259 * by a cache (...) unless a cache-control
6260 * directive prohibits caching."
6261 *
6262 * RFC2616 @9.5: POST method :
6263 * "Responses to this method are not cacheable,
6264 * unless the response includes appropriate
6265 * Cache-Control or Expires header fields."
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006266 */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006267 if (likely(txn->meth != HTTP_METH_POST) &&
Willy Tarreau67402132012-05-31 20:40:20 +02006268 ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)))
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006269 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
6270 break;
6271 default:
6272 break;
6273 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006274
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006275 /*
6276 * 3: we may need to capture headers
6277 */
6278 s->logs.logwait &= ~LW_RESP;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02006279 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Willy Tarreau9b28e032012-10-12 23:49:43 +02006280 capture_headers(rep->buf->p, &txn->hdr_idx,
Willy Tarreaucb7dd012015-04-03 22:16:32 +02006281 s->res_cap, sess->fe->rsp_cap);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02006282
Willy Tarreau557f1992015-05-01 10:05:17 +02006283 /* 4: determine the transfer-length according to RFC2616 #4.4, updated
6284 * by RFC7230#3.3.3 :
6285 *
6286 * The length of a message body is determined by one of the following
6287 * (in order of precedence):
6288 *
Christopher Fauletd1cd2092016-11-28 10:14:03 +01006289 * 1. Any 2xx (Successful) response to a CONNECT request implies that
6290 * the connection will become a tunnel immediately after the empty
6291 * line that concludes the header fields. A client MUST ignore
6292 * any Content-Length or Transfer-Encoding header fields received
6293 * in such a message. Any 101 response (Switching Protocols) is
6294 * managed in the same manner.
6295 *
6296 * 2. Any response to a HEAD request and any response with a 1xx
Willy Tarreau557f1992015-05-01 10:05:17 +02006297 * (Informational), 204 (No Content), or 304 (Not Modified) status
6298 * code is always terminated by the first empty line after the
6299 * header fields, regardless of the header fields present in the
6300 * message, and thus cannot contain a message body.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006301 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006302 * 3. If a Transfer-Encoding header field is present and the chunked
6303 * transfer coding (Section 4.1) is the final encoding, the message
6304 * body length is determined by reading and decoding the chunked
6305 * data until the transfer coding indicates the data is complete.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006306 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006307 * If a Transfer-Encoding header field is present in a response and
6308 * the chunked transfer coding is not the final encoding, the
6309 * message body length is determined by reading the connection until
6310 * it is closed by the server. If a Transfer-Encoding header field
6311 * is present in a request and the chunked transfer coding is not
6312 * the final encoding, the message body length cannot be determined
6313 * reliably; the server MUST respond with the 400 (Bad Request)
6314 * status code and then close the connection.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006315 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006316 * If a message is received with both a Transfer-Encoding and a
6317 * Content-Length header field, the Transfer-Encoding overrides the
6318 * Content-Length. Such a message might indicate an attempt to
6319 * perform request smuggling (Section 9.5) or response splitting
6320 * (Section 9.4) and ought to be handled as an error. A sender MUST
6321 * remove the received Content-Length field prior to forwarding such
6322 * a message downstream.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006323 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006324 * 4. If a message is received without Transfer-Encoding and with
6325 * either multiple Content-Length header fields having differing
6326 * field-values or a single Content-Length header field having an
6327 * invalid value, then the message framing is invalid and the
6328 * recipient MUST treat it as an unrecoverable error. If this is a
6329 * request message, the server MUST respond with a 400 (Bad Request)
6330 * status code and then close the connection. If this is a response
6331 * message received by a proxy, the proxy MUST close the connection
6332 * to the server, discard the received response, and send a 502 (Bad
6333 * Gateway) response to the client. If this is a response message
6334 * received by a user agent, the user agent MUST close the
6335 * connection to the server and discard the received response.
6336 *
6337 * 5. If a valid Content-Length header field is present without
6338 * Transfer-Encoding, its decimal value defines the expected message
6339 * body length in octets. If the sender closes the connection or
6340 * the recipient times out before the indicated number of octets are
6341 * received, the recipient MUST consider the message to be
6342 * incomplete and close the connection.
6343 *
6344 * 6. If this is a request message and none of the above are true, then
6345 * the message body length is zero (no message body is present).
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006346 *
Willy Tarreau557f1992015-05-01 10:05:17 +02006347 * 7. Otherwise, this is a response message without a declared message
6348 * body length, so the message body length is determined by the
6349 * number of octets received prior to the server closing the
6350 * connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006351 */
6352
6353 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01006354 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006355 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006356 * FIXME: should we parse anyway and return an error on chunked encoding ?
6357 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01006358 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
6359 txn->status == 101)) {
6360 /* Either we've established an explicit tunnel, or we're
6361 * switching the protocol. In both cases, we're very unlikely
6362 * to understand the next protocols. We have to switch to tunnel
6363 * mode, so that we transfer the request and responses then let
6364 * this protocol pass unmodified. When we later implement specific
6365 * parsers for such protocols, we'll want to check the Upgrade
6366 * header which contains information about that protocol for
6367 * responses with status 101 (eg: see RFC2817 about TLS).
6368 */
6369 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
6370 msg->flags |= HTTP_MSGF_XFER_LEN;
6371 goto end;
6372 }
6373
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006374 if (txn->meth == HTTP_METH_HEAD ||
6375 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006376 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006377 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006378 goto skip_content_length;
6379 }
6380
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006381 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006382 ctx.idx = 0;
Willy Tarreau4979d5c2015-05-01 10:06:30 +02006383 while (http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006384 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006385 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
6386 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006387 /* bad transfer-encoding (chunked followed by something else) */
6388 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006389 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01006390 break;
6391 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006392 }
6393
Willy Tarreau1c913912015-04-30 10:57:51 +02006394 /* Chunked responses must have their content-length removed */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006395 ctx.idx = 0;
Willy Tarreaub4d0c032015-05-01 10:25:45 +02006396 if (use_close_only || (msg->flags & HTTP_MSGF_TE_CHNK)) {
Willy Tarreau1c913912015-04-30 10:57:51 +02006397 while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx))
6398 http_remove_header2(msg, &txn->hdr_idx, &ctx);
6399 }
Willy Tarreaub4d0c032015-05-01 10:25:45 +02006400 else while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006401 signed long long cl;
6402
Willy Tarreauad14f752011-09-02 20:33:27 +02006403 if (!ctx.vlen) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006404 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006405 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006406 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006407
Willy Tarreauad14f752011-09-02 20:33:27 +02006408 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006409 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006410 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02006411 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006412
Willy Tarreauad14f752011-09-02 20:33:27 +02006413 if (cl < 0) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006414 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006415 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02006416 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006417
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006418 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02006419 msg->err_pos = ctx.line + ctx.val - rep->buf->p;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006420 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02006421 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006422
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006423 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01006424 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02006425 }
6426
Christopher Fauletd1cd2092016-11-28 10:14:03 +01006427 skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01006428 /* Now we have to check if we need to modify the Connection header.
6429 * This is more difficult on the response than it is on the request,
6430 * because we can have two different HTTP versions and we don't know
6431 * how the client will interprete a response. For instance, let's say
6432 * that the client sends a keep-alive request in HTTP/1.0 and gets an
6433 * HTTP/1.1 response without any header. Maybe it will bound itself to
6434 * HTTP/1.0 because it only knows about it, and will consider the lack
6435 * of header as a close, or maybe it knows HTTP/1.1 and can consider
6436 * the lack of header as a keep-alive. Thus we will use two flags
6437 * indicating how a request MAY be understood by the client. In case
6438 * of multiple possibilities, we'll fix the header to be explicit. If
6439 * ambiguous cases such as both close and keepalive are seen, then we
6440 * will fall back to explicit close. Note that we won't take risks with
6441 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01006442 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01006443 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01006444 if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
6445 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN ||
6446 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
6447 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
Willy Tarreau60466522010-01-18 19:08:45 +01006448 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01006449
Willy Tarreau70dffda2014-01-30 03:07:23 +01006450 /* this situation happens when combining pretend-keepalive with httpclose. */
6451 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006452 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006453 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))
Willy Tarreau70dffda2014-01-30 03:07:23 +01006454 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
6455
Willy Tarreau60466522010-01-18 19:08:45 +01006456 /* on unknown transfer length, we must close */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006457 if (!(msg->flags & HTTP_MSGF_XFER_LEN) &&
Willy Tarreau60466522010-01-18 19:08:45 +01006458 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
6459 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01006460
Willy Tarreau60466522010-01-18 19:08:45 +01006461 /* now adjust header transformations depending on current state */
6462 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN ||
6463 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
6464 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006465 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01006466 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006467 }
Willy Tarreau60466522010-01-18 19:08:45 +01006468 else { /* SCL / KAL */
6469 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006470 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01006471 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01006472 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006473
Willy Tarreau60466522010-01-18 19:08:45 +01006474 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01006475 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01006476
Willy Tarreau60466522010-01-18 19:08:45 +01006477 /* Some keep-alive responses are converted to Server-close if
6478 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01006479 */
Willy Tarreau60466522010-01-18 19:08:45 +01006480 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
6481 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01006482 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01006483 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01006484 }
Willy Tarreau5b154472009-12-21 20:11:07 +01006485 }
6486
Christopher Fauletd1cd2092016-11-28 10:14:03 +01006487 end:
Willy Tarreau7959a552013-09-23 16:44:27 +02006488 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006489 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02006490
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006491 /* end of job, return OK */
6492 rep->analysers &= ~an_bit;
6493 rep->analyse_exp = TICK_ETERNITY;
6494 channel_auto_close(rep);
6495 return 1;
6496
6497 abort_keep_alive:
6498 /* A keep-alive request to the server failed on a network error.
6499 * The client is required to retry. We need to close without returning
6500 * any other information so that the client retries.
6501 */
6502 txn->status = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01006503 rep->analysers &= AN_RES_FLT_END;
6504 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006505 channel_auto_close(rep);
6506 s->logs.logwait = 0;
6507 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006508 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau319f7452015-01-14 20:32:59 +01006509 channel_truncate(rep);
Christopher Fauleta94e5a52015-12-09 15:55:06 +01006510 http_reply_and_close(s, txn->status, NULL);
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006511 return 0;
6512}
6513
6514/* This function performs all the processing enabled for the current response.
6515 * It normally returns 1 unless it wants to break. It relies on buffers flags,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006516 * and updates s->res.analysers. It might make sense to explode it into several
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006517 * other functions. It works like process_request (see indications above).
6518 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006519int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006520{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006521 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006522 struct http_txn *txn = s->txn;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006523 struct http_msg *msg = &txn->rsp;
6524 struct proxy *cur_proxy;
6525 struct cond_wordlist *wl;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01006526 enum rule_result ret = HTTP_RULE_RES_CONT;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006527
Willy Tarreau87b09662015-04-03 00:22:06 +02006528 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreauf118d9f2014-04-24 18:26:08 +02006529 now_ms, __FUNCTION__,
6530 s,
6531 rep,
6532 rep->rex, rep->wex,
6533 rep->flags,
6534 rep->buf->i,
6535 rep->analysers);
6536
6537 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
6538 return 0;
6539
Willy Tarreau70730dd2014-04-24 18:06:27 +02006540 /* The stats applet needs to adjust the Connection header but we don't
6541 * apply any filter there.
6542 */
Willy Tarreau612adb82015-03-10 15:25:54 +01006543 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
6544 rep->analysers &= ~an_bit;
6545 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau70730dd2014-04-24 18:06:27 +02006546 goto skip_filters;
Willy Tarreau612adb82015-03-10 15:25:54 +01006547 }
Willy Tarreau70730dd2014-04-24 18:06:27 +02006548
Willy Tarreau58975672014-04-24 21:13:57 +02006549 /*
6550 * We will have to evaluate the filters.
6551 * As opposed to version 1.2, now they will be evaluated in the
6552 * filters order and not in the header order. This means that
6553 * each filter has to be validated among all headers.
6554 *
6555 * Filters are tried with ->be first, then with ->fe if it is
6556 * different from ->be.
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006557 *
6558 * Maybe we are in resume condiion. In this case I choose the
6559 * "struct proxy" which contains the rule list matching the resume
6560 * pointer. If none of theses "struct proxy" match, I initialise
6561 * the process with the first one.
6562 *
6563 * In fact, I check only correspondance betwwen the current list
6564 * pointer and the ->fe rule list. If it doesn't match, I initialize
6565 * the loop with the ->be.
Willy Tarreau58975672014-04-24 21:13:57 +02006566 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006567 if (s->current_rule_list == &sess->fe->http_res_rules)
6568 cur_proxy = sess->fe;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006569 else
6570 cur_proxy = s->be;
Willy Tarreau58975672014-04-24 21:13:57 +02006571 while (1) {
6572 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006573
Willy Tarreau58975672014-04-24 21:13:57 +02006574 /* evaluate http-response rules */
Willy Tarreau51d861a2015-05-22 17:30:48 +02006575 if (ret == HTTP_RULE_RES_CONT) {
Willy Tarreau987e3fb2015-04-04 01:09:08 +02006576 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02006577
Willy Tarreau51d861a2015-05-22 17:30:48 +02006578 if (ret == HTTP_RULE_RES_BADREQ)
6579 goto return_srv_prx_502;
6580
6581 if (ret == HTTP_RULE_RES_DONE) {
6582 rep->analysers &= ~an_bit;
6583 rep->analyse_exp = TICK_ETERNITY;
6584 return 1;
6585 }
6586 }
6587
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006588 /* we need to be called again. */
6589 if (ret == HTTP_RULE_RES_YIELD) {
6590 channel_dont_close(rep);
6591 return 0;
6592 }
6593
Willy Tarreau58975672014-04-24 21:13:57 +02006594 /* try headers filters */
6595 if (rule_set->rsp_exp != NULL) {
6596 if (apply_filters_to_response(s, rep, rule_set) < 0) {
6597 return_bad_resp:
6598 if (objt_server(s->target)) {
6599 objt_server(s->target)->counters.failed_resp++;
6600 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01006601 }
Willy Tarreau58975672014-04-24 21:13:57 +02006602 s->be->be_counters.failed_resp++;
6603 return_srv_prx_502:
Christopher Faulet0184ea72017-01-05 14:06:34 +01006604 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau58975672014-04-24 21:13:57 +02006605 txn->status = 502;
6606 s->logs.t_data = -1; /* was not a valid response */
Willy Tarreau350f4872014-11-28 14:42:25 +01006607 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01006608 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02006609 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02006610 if (!(s->flags & SF_ERR_MASK))
6611 s->flags |= SF_ERR_PRXCOND;
6612 if (!(s->flags & SF_FINST_MASK))
6613 s->flags |= SF_FINST_H;
Willy Tarreau58975672014-04-24 21:13:57 +02006614 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006615 }
Willy Tarreau58975672014-04-24 21:13:57 +02006616 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006617
Willy Tarreau58975672014-04-24 21:13:57 +02006618 /* has the response been denied ? */
6619 if (txn->flags & TX_SVDENY) {
6620 if (objt_server(s->target))
6621 objt_server(s->target)->counters.failed_secu++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006622
Willy Tarreau58975672014-04-24 21:13:57 +02006623 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006624 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006625 if (sess->listener->counters)
6626 sess->listener->counters->denied_resp++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006627
Willy Tarreau58975672014-04-24 21:13:57 +02006628 goto return_srv_prx_502;
6629 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02006630
Willy Tarreau58975672014-04-24 21:13:57 +02006631 /* add response headers from the rule sets in the same order */
6632 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreauce730de2014-09-16 10:40:38 +02006633 if (txn->status < 200 && txn->status != 101)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006634 break;
Willy Tarreau58975672014-04-24 21:13:57 +02006635 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02006636 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreau58975672014-04-24 21:13:57 +02006637 ret = acl_pass(ret);
6638 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
6639 ret = !ret;
6640 if (!ret)
6641 continue;
6642 }
6643 if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0))
6644 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006645 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02006646
Willy Tarreau58975672014-04-24 21:13:57 +02006647 /* check whether we're already working on the frontend */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006648 if (cur_proxy == sess->fe)
Willy Tarreau58975672014-04-24 21:13:57 +02006649 break;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006650 cur_proxy = sess->fe;
Willy Tarreau58975672014-04-24 21:13:57 +02006651 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006652
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01006653 /* After this point, this anayzer can't return yield, so we can
6654 * remove the bit corresponding to this analyzer from the list.
6655 *
6656 * Note that the intermediate returns and goto found previously
6657 * reset the analyzers.
6658 */
6659 rep->analysers &= ~an_bit;
6660 rep->analyse_exp = TICK_ETERNITY;
6661
Willy Tarreau58975672014-04-24 21:13:57 +02006662 /* OK that's all we can do for 1xx responses */
Willy Tarreauce730de2014-09-16 10:40:38 +02006663 if (unlikely(txn->status < 200 && txn->status != 101))
Willy Tarreau58975672014-04-24 21:13:57 +02006664 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01006665
Willy Tarreau58975672014-04-24 21:13:57 +02006666 /*
6667 * Now check for a server cookie.
6668 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02006669 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Willy Tarreau58975672014-04-24 21:13:57 +02006670 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006671
Willy Tarreau58975672014-04-24 21:13:57 +02006672 /*
6673 * Check for cache-control or pragma headers if required.
6674 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006675 if (((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)) && txn->status != 101)
Willy Tarreau58975672014-04-24 21:13:57 +02006676 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02006677
Willy Tarreau58975672014-04-24 21:13:57 +02006678 /*
6679 * Add server cookie in the response if needed
6680 */
6681 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
6682 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02006683 (!(s->flags & SF_DIRECT) ||
Willy Tarreau58975672014-04-24 21:13:57 +02006684 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
6685 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
6686 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
6687 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
6688 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02006689 !(s->flags & SF_IGNORE_PRST)) {
Willy Tarreau58975672014-04-24 21:13:57 +02006690 /* the server is known, it's not the one the client requested, or the
6691 * cookie's last seen date needs to be refreshed. We have to
6692 * insert a set-cookie here, except if we want to insert only on POST
6693 * requests and this one isn't. Note that servers which don't have cookies
6694 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006695 */
Willy Tarreau58975672014-04-24 21:13:57 +02006696 if (!objt_server(s->target)->cookie) {
6697 chunk_printf(&trash,
6698 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
6699 s->be->cookie_name);
6700 }
6701 else {
6702 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006703
Willy Tarreau58975672014-04-24 21:13:57 +02006704 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
6705 /* emit last_date, which is mandatory */
6706 trash.str[trash.len++] = COOKIE_DELIM_DATE;
6707 s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len);
6708 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006709
Willy Tarreau58975672014-04-24 21:13:57 +02006710 if (s->be->cookie_maxlife) {
6711 /* emit first_date, which is either the original one or
6712 * the current date.
6713 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006714 trash.str[trash.len++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02006715 s30tob64(txn->cookie_first_date ?
6716 txn->cookie_first_date >> 2 :
6717 (date.tv_sec+3) >> 2, trash.str + trash.len);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006718 trash.len += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02006719 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02006720 }
Willy Tarreau58975672014-04-24 21:13:57 +02006721 chunk_appendf(&trash, "; path=/");
6722 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02006723
Willy Tarreau58975672014-04-24 21:13:57 +02006724 if (s->be->cookie_domain)
6725 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02006726
Willy Tarreau58975672014-04-24 21:13:57 +02006727 if (s->be->ck_opts & PR_CK_HTTPONLY)
6728 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006729
Willy Tarreau58975672014-04-24 21:13:57 +02006730 if (s->be->ck_opts & PR_CK_SECURE)
6731 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02006732
Willy Tarreau58975672014-04-24 21:13:57 +02006733 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0))
6734 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006735
Willy Tarreau58975672014-04-24 21:13:57 +02006736 txn->flags &= ~TX_SCK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02006737 if (objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
Willy Tarreau58975672014-04-24 21:13:57 +02006738 /* the server did not change, only the date was updated */
6739 txn->flags |= TX_SCK_UPDATED;
6740 else
6741 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006742
Willy Tarreau58975672014-04-24 21:13:57 +02006743 /* Here, we will tell an eventual cache on the client side that we don't
6744 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
6745 * Some caches understand the correct form: 'no-cache="set-cookie"', but
6746 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006747 */
Willy Tarreau58975672014-04-24 21:13:57 +02006748 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006749
Willy Tarreau58975672014-04-24 21:13:57 +02006750 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02006751
Willy Tarreau58975672014-04-24 21:13:57 +02006752 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
6753 "Cache-control: private", 22) < 0))
6754 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006755 }
Willy Tarreau58975672014-04-24 21:13:57 +02006756 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006757
Willy Tarreau58975672014-04-24 21:13:57 +02006758 /*
6759 * Check if result will be cacheable with a cookie.
6760 * We'll block the response if security checks have caught
6761 * nasty things such as a cacheable cookie.
6762 */
6763 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
6764 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
6765 (s->be->options & PR_O_CHK_CACHE)) {
6766 /* we're in presence of a cacheable response containing
6767 * a set-cookie header. We'll block it as requested by
6768 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006769 */
Willy Tarreau58975672014-04-24 21:13:57 +02006770 if (objt_server(s->target))
6771 objt_server(s->target)->counters.failed_secu++;
Willy Tarreau60466522010-01-18 19:08:45 +01006772
Willy Tarreau58975672014-04-24 21:13:57 +02006773 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006774 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02006775 if (sess->listener->counters)
6776 sess->listener->counters->denied_resp++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006777
Willy Tarreau58975672014-04-24 21:13:57 +02006778 Alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
6779 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6780 send_log(s->be, LOG_ALERT,
6781 "Blocking cacheable cookie in response from instance %s, server %s.\n",
6782 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
6783 goto return_srv_prx_502;
6784 }
Willy Tarreau03945942009-12-22 16:50:27 +01006785
Willy Tarreau70730dd2014-04-24 18:06:27 +02006786 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02006787 /*
6788 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
6789 * If an "Upgrade" token is found, the header is left untouched in order
6790 * not to have to deal with some client bugs : some of them fail an upgrade
Willy Tarreauce730de2014-09-16 10:40:38 +02006791 * if anything but "Upgrade" is present in the Connection header. We don't
6792 * want to touch any 101 response either since it's switching to another
6793 * protocol.
Willy Tarreau58975672014-04-24 21:13:57 +02006794 */
Willy Tarreauce730de2014-09-16 10:40:38 +02006795 if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) &&
Willy Tarreau58975672014-04-24 21:13:57 +02006796 (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006797 ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL ||
Willy Tarreau58975672014-04-24 21:13:57 +02006798 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) {
6799 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02006800
Willy Tarreau58975672014-04-24 21:13:57 +02006801 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6802 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
6803 /* we want a keep-alive response here. Keep-alive header
6804 * required if either side is not 1.1.
6805 */
6806 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
6807 want_flags |= TX_CON_KAL_SET;
6808 }
6809 else {
6810 /* we want a close response here. Close header required if
6811 * the server is 1.1, regardless of the client.
6812 */
6813 if (msg->flags & HTTP_MSGF_VER_11)
6814 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006815 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006816
Willy Tarreau58975672014-04-24 21:13:57 +02006817 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
6818 http_change_connection_header(txn, msg, want_flags);
6819 }
6820
6821 skip_header_mangling:
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01006822 if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_DATA_FILTERS(s, rep) ||
Christopher Fauletd7c91962015-04-30 11:48:27 +02006823 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01006824 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
Willy Tarreau58975672014-04-24 21:13:57 +02006825 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Christopher Fauletd7c91962015-04-30 11:48:27 +02006826 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006827
Willy Tarreau58975672014-04-24 21:13:57 +02006828 /* if the user wants to log as soon as possible, without counting
6829 * bytes from the server, then this is the right moment. We have
6830 * to temporarily assign bytes_out to log what we currently have.
6831 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006832 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau58975672014-04-24 21:13:57 +02006833 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
6834 s->logs.bytes_out = txn->rsp.eoh;
6835 s->do_log(s);
6836 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006837 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01006838 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02006839}
Willy Tarreaua15645d2007-03-18 16:22:39 +01006840
Willy Tarreaud98cf932009-12-27 22:54:55 +01006841/* This function is an analyser which forwards response body (including chunk
6842 * sizes if any). It is called as soon as we must forward, even if we forward
6843 * zero byte. The only situation where it must not be called is when we're in
6844 * tunnel mode and we want to forward till the close. It's used both to forward
6845 * remaining data and to resync after end of body. It expects the msg_state to
6846 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02006847 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreaud3510212014-04-21 11:24:13 +02006848 *
6849 * It is capable of compressing response data both in content-length mode and
6850 * in chunked mode. The state machines follows different flows depending on
6851 * whether content-length and chunked modes are used, since there are no
6852 * trailers in content-length :
6853 *
6854 * chk-mode cl-mode
6855 * ,----- BODY -----.
6856 * / \
6857 * V size > 0 V chk-mode
6858 * .--> SIZE -------------> DATA -------------> CRLF
6859 * | | size == 0 | last byte |
6860 * | v final crlf v inspected |
6861 * | TRAILERS -----------> DONE |
6862 * | |
6863 * `----------------------------------------------'
6864 *
6865 * Compression only happens in the DATA state, and must be flushed in final
6866 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
6867 * is performed at once on final states for all bytes parsed, or when leaving
6868 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01006869 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006870int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01006871{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006872 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006873 struct http_txn *txn = s->txn;
6874 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet3e344292015-11-24 16:24:13 +01006875 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006876
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006877 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
6878 return 0;
6879
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006880 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau9b28e032012-10-12 23:49:43 +02006881 ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) ||
Christopher Fauletd7c91962015-04-30 11:48:27 +02006882 !s->req.analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02006883 /* Output closed while we were sending data. We must abort and
6884 * wake the other side up.
6885 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006886 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02006887 msg->msg_state = HTTP_MSG_ERROR;
6888 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01006889 return 1;
6890 }
6891
Willy Tarreau4fe41902010-06-07 22:27:41 +02006892 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006893 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01006894
Christopher Fauletd7c91962015-04-30 11:48:27 +02006895 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006896 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
6897 ? HTTP_MSG_CHUNK_SIZE
6898 : HTTP_MSG_DATA);
Willy Tarreaud98cf932009-12-27 22:54:55 +01006899 }
6900
Willy Tarreauefdf0942014-04-24 20:08:57 +02006901 if (res->to_forward) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006902 /* We can't process the buffer's contents yet */
Willy Tarreauefdf0942014-04-24 20:08:57 +02006903 res->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006904 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02006905 }
6906
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006907 if (msg->msg_state < HTTP_MSG_DONE) {
6908 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
6909 ? http_msg_forward_chunked_body(s, msg)
6910 : http_msg_forward_body(s, msg));
6911 if (!ret)
6912 goto missing_data_or_waiting;
6913 if (ret < 0)
6914 goto return_bad_res;
6915 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02006916
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006917 /* other states, DONE...TUNNEL */
6918 /* for keep-alive we don't want to forward closes on DONE */
6919 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6920 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
6921 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02006922
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006923 if (http_resync_states(s)) {
6924 /* some state changes occurred, maybe the analyser was disabled
6925 * too. */
6926 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
6927 if (res->flags & CF_SHUTW) {
6928 /* response errors are most likely due to the
6929 * client aborting the transfer. */
6930 goto aborted_xfer;
Willy Tarreau5523b322009-12-29 12:05:52 +01006931 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006932 if (msg->err_pos >= 0)
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006933 http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->err_state, strm_fe(s));
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006934 goto return_bad_res;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006935 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006936 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006937 }
Willy Tarreauf51d03c2016-05-02 15:25:15 +02006938 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01006939
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006940 missing_data_or_waiting:
Willy Tarreauf003d372012-11-26 13:35:37 +01006941 if (res->flags & CF_SHUTW)
6942 goto aborted_xfer;
6943
6944 /* stop waiting for data if the input is closed before the end. If the
6945 * client side was already closed, it means that the client has aborted,
6946 * so we don't want to count this as a server abort. Otherwise it's a
6947 * server abort.
6948 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006949 if (res->flags & CF_SHUTR) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006950 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Willy Tarreauf003d372012-11-26 13:35:37 +01006951 goto aborted_xfer;
Christopher Fauleta46bbd82015-06-19 09:00:58 +02006952 /* If we have some pending data, we continue the processing */
6953 if (!buffer_pending(res->buf)) {
6954 if (!(s->flags & SF_ERR_MASK))
6955 s->flags |= SF_ERR_SRVCL;
6956 s->be->be_counters.srv_aborts++;
6957 if (objt_server(s->target))
6958 objt_server(s->target)->counters.srv_aborts++;
6959 goto return_bad_res_stats_ok;
6960 }
Willy Tarreau40dba092010-03-04 18:14:51 +01006961 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01006962
Willy Tarreau40dba092010-03-04 18:14:51 +01006963 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006964 if (!s->req.analysers)
Willy Tarreau610ecce2010-01-04 21:15:02 +01006965 goto return_bad_res;
6966
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01006967 /* When TE: chunked is used, we need to get there again to parse
6968 * remaining chunks even if the server has closed, so we don't want to
6969 * set CF_DONTCLOSE. Similarly, if the body length is undefined, if
6970 * keep-alive is set on the client side or if there are filters
6971 * registered on the stream, we don't want to forward a close
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006972 */
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01006973 if ((msg->flags & HTTP_MSGF_TE_CHNK) || !(msg->flags & HTTP_MSGF_XFER_LEN) ||
6974 HAS_DATA_FILTERS(s, res) ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006975 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
6976 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02006977 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02006978
Willy Tarreau5c620922011-05-11 19:56:11 +02006979 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006980 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02006981 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01006982 * modes are already handled by the stream sock layer. We must not do
6983 * this in content-length mode because it could present the MSG_MORE
6984 * flag with the last block of forwarded data, which would cause an
6985 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02006986 */
Christopher Faulet92d36382015-11-05 13:35:03 +01006987 if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING))
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02006988 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02006989
Willy Tarreau87b09662015-04-03 00:22:06 +02006990 /* the stream handler will take care of timeouts and errors */
Willy Tarreaud98cf932009-12-27 22:54:55 +01006991 return 0;
6992
Willy Tarreau40dba092010-03-04 18:14:51 +01006993 return_bad_res: /* let's centralize all bad responses */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01006994 s->be->be_counters.failed_resp++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006995 if (objt_server(s->target))
6996 objt_server(s->target)->counters.failed_resp++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01006997
6998 return_bad_res_stats_ok:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01006999 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreaud98cf932009-12-27 22:54:55 +01007000 txn->rsp.msg_state = HTTP_MSG_ERROR;
Willy Tarreau148d0992010-01-10 10:21:21 +01007001 /* don't send any error message as we're in the body */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01007002 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01007003 res->analysers &= AN_RES_FLT_END;
7004 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007005 if (objt_server(s->target))
7006 health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Willy Tarreaud98cf932009-12-27 22:54:55 +01007007
Willy Tarreaue7dff022015-04-03 01:14:29 +02007008 if (!(s->flags & SF_ERR_MASK))
7009 s->flags |= SF_ERR_PRXCOND;
7010 if (!(s->flags & SF_FINST_MASK))
7011 s->flags |= SF_FINST_D;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007012 return 0;
7013
7014 aborted_xfer:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01007015 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007016 txn->rsp.msg_state = HTTP_MSG_ERROR;
7017 /* don't send any error message as we're in the body */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01007018 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01007019 res->analysers &= AN_RES_FLT_END;
7020 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007021
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007022 sess->fe->fe_counters.cli_aborts++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01007023 s->be->be_counters.cli_aborts++;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007024 if (objt_server(s->target))
7025 objt_server(s->target)->counters.cli_aborts++;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01007026
Willy Tarreaue7dff022015-04-03 01:14:29 +02007027 if (!(s->flags & SF_ERR_MASK))
7028 s->flags |= SF_ERR_CLICL;
7029 if (!(s->flags & SF_FINST_MASK))
7030 s->flags |= SF_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01007031 return 0;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007032}
7033
7034
7035static inline int
7036http_msg_forward_body(struct stream *s, struct http_msg *msg)
7037{
7038 struct channel *chn = msg->chn;
7039 int ret;
7040
7041 /* Here we have the guarantee to be in HTTP_MSG_DATA or HTTP_MSG_ENDING state */
7042
7043 if (msg->msg_state == HTTP_MSG_ENDING)
7044 goto ending;
7045
7046 /* Neither content-length, nor transfer-encoding was found, so we must
7047 * read the body until the server connection is closed. In that case, we
7048 * eat data as they come. Of course, this happens for response only. */
7049 if (!(msg->flags & HTTP_MSGF_XFER_LEN)) {
7050 unsigned long long len = (chn->buf->i - msg->next);
7051 msg->chunk_len += len;
7052 msg->body_len += len;
7053 }
Christopher Fauletda02e172015-12-04 09:25:05 +01007054 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
7055 /* default_ret */ MIN(msg->chunk_len, chn->buf->i - msg->next),
7056 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007057 msg->next += ret;
7058 msg->chunk_len -= ret;
7059 if (msg->chunk_len) {
7060 /* input empty or output full */
7061 if (chn->buf->i > msg->next)
7062 chn->flags |= CF_WAKE_WRITE;
7063 goto missing_data_or_waiting;
7064 }
7065
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01007066 /* The server still sending data that should be filtered */
7067 if (!(msg->flags & HTTP_MSGF_XFER_LEN) && !(chn->flags & CF_SHUTR))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007068 goto missing_data_or_waiting;
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01007069
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007070 msg->msg_state = HTTP_MSG_ENDING;
7071
7072 ending:
7073 /* we may have some pending data starting at res->buf->p such as a last
7074 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01007075 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
7076 /* default_ret */ msg->next,
7077 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007078 b_adv(chn->buf, ret);
7079 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02007080 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
7081 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02007082 if (msg->next)
7083 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02007084
Christopher Fauletda02e172015-12-04 09:25:05 +01007085 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
7086 /* default_ret */ 1,
7087 /* on_error */ goto error,
7088 /* on_wait */ goto waiting);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007089 msg->msg_state = HTTP_MSG_DONE;
7090 return 1;
7091
7092 missing_data_or_waiting:
7093 /* we may have some pending data starting at chn->buf->p */
Christopher Fauletda02e172015-12-04 09:25:05 +01007094 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
7095 /* default_ret */ msg->next,
7096 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007097 b_adv(chn->buf, ret);
7098 msg->next -= ret;
7099 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
7100 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01007101 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007102 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02007103 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007104 return 0;
7105 error:
7106 return -1;
7107}
7108
7109static inline int
7110http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg)
7111{
7112 struct channel *chn = msg->chn;
7113 int ret;
7114
7115 /* Here we have the guarantee to be in one of the following state:
7116 * HTTP_MSG_DATA, HTTP_MSG_CHUNK_SIZE, HTTP_MSG_CHUNK_CRLF,
7117 * HTTP_MSG_TRAILERS or HTTP_MSG_ENDING. */
7118
7119 switch_states:
7120 switch (msg->msg_state) {
7121 case HTTP_MSG_DATA:
Christopher Fauletda02e172015-12-04 09:25:05 +01007122 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
7123 /* default_ret */ MIN(msg->chunk_len, chn->buf->i - msg->next),
7124 /* on_error */ goto error);
7125 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007126 msg->chunk_len -= ret;
7127 if (msg->chunk_len) {
7128 /* input empty or output full */
7129 if (chn->buf->i > msg->next)
7130 chn->flags |= CF_WAKE_WRITE;
7131 goto missing_data_or_waiting;
7132 }
7133
7134 /* nothing left to forward for this chunk*/
7135 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
7136 /* fall through for HTTP_MSG_CHUNK_CRLF */
7137
7138 case HTTP_MSG_CHUNK_CRLF:
7139 /* we want the CRLF after the data */
7140 ret = http_skip_chunk_crlf(msg);
7141 if (ret == 0)
7142 goto missing_data_or_waiting;
7143 if (ret < 0)
7144 goto chunk_parsing_error;
Christopher Faulet113f7de2015-12-14 14:52:13 +01007145 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007146 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
7147 /* fall through for HTTP_MSG_CHUNK_SIZE */
7148
7149 case HTTP_MSG_CHUNK_SIZE:
7150 /* read the chunk size and assign it to ->chunk_len,
7151 * then set ->next to point to the body and switch to
7152 * DATA or TRAILERS state.
7153 */
7154 ret = http_parse_chunk_size(msg);
7155 if (ret == 0)
7156 goto missing_data_or_waiting;
7157 if (ret < 0)
7158 goto chunk_parsing_error;
Christopher Faulet113f7de2015-12-14 14:52:13 +01007159 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007160 if (msg->chunk_len) {
7161 msg->msg_state = HTTP_MSG_DATA;
7162 goto switch_states;
7163 }
7164 msg->msg_state = HTTP_MSG_TRAILERS;
7165 /* fall through for HTTP_MSG_TRAILERS */
7166
7167 case HTTP_MSG_TRAILERS:
7168 ret = http_forward_trailers(msg);
7169 if (ret < 0)
7170 goto chunk_parsing_error;
Christopher Fauletda02e172015-12-04 09:25:05 +01007171 FLT_STRM_DATA_CB(s, chn, flt_http_chunk_trailers(s, msg),
7172 /* default_ret */ 1,
7173 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007174 msg->next += msg->sol;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007175 if (!ret)
7176 goto missing_data_or_waiting;
7177 break;
7178
7179 case HTTP_MSG_ENDING:
7180 goto ending;
7181
7182 default:
7183 /* This should no happen in this function */
7184 goto error;
7185 }
7186
7187 msg->msg_state = HTTP_MSG_ENDING;
7188 ending:
7189 /* we may have some pending data starting at res->buf->p such as a last
7190 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01007191 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007192 /* default_ret */ msg->next,
7193 /* on_error */ goto error);
7194 b_adv(chn->buf, ret);
7195 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02007196 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
7197 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02007198 if (msg->next)
7199 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02007200
Christopher Fauletda02e172015-12-04 09:25:05 +01007201 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007202 /* default_ret */ 1,
7203 /* on_error */ goto error,
7204 /* on_wait */ goto waiting);
7205 msg->msg_state = HTTP_MSG_DONE;
7206 return 1;
7207
7208 missing_data_or_waiting:
7209 /* we may have some pending data starting at chn->buf->p */
Christopher Fauletda02e172015-12-04 09:25:05 +01007210 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007211 /* default_ret */ msg->next,
7212 /* on_error */ goto error);
7213 b_adv(chn->buf, ret);
7214 msg->next -= ret;
7215 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
7216 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01007217 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007218 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02007219 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007220 return 0;
7221
7222 chunk_parsing_error:
7223 if (msg->err_pos >= 0) {
7224 if (chn->flags & CF_ISRESP)
7225 http_capture_bad_message(&s->be->invalid_rep, s, msg,
7226 msg->msg_state, strm_fe(s));
7227 else
7228 http_capture_bad_message(&strm_fe(s)->invalid_req, s,
7229 msg, msg->msg_state, s->be);
7230 }
7231 error:
7232 return -1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01007233}
7234
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01007235
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007236/* Iterate the same filter through all request headers.
7237 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007238 * Since it can manage the switch to another backend, it updates the per-proxy
7239 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007240 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007241int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007242{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007243 char *cur_ptr, *cur_end, *cur_next;
7244 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007245 struct http_txn *txn = s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007246 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007247 int delta;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01007248
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007249 last_hdr = 0;
7250
Willy Tarreau9b28e032012-10-12 23:49:43 +02007251 cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007252 old_idx = 0;
7253
7254 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007255 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007256 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007257 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007258 (exp->action == ACT_ALLOW ||
7259 exp->action == ACT_DENY ||
7260 exp->action == ACT_TARPIT))
7261 return 0;
7262
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007263 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007264 if (!cur_idx)
7265 break;
7266
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007267 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007268 cur_ptr = cur_next;
7269 cur_end = cur_ptr + cur_hdr->len;
7270 cur_next = cur_end + cur_hdr->cr + 1;
7271
7272 /* Now we have one header between cur_ptr and cur_end,
7273 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007274 */
7275
Willy Tarreau15a53a42015-01-21 13:39:42 +01007276 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007277 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007278 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007279 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007280 last_hdr = 1;
7281 break;
7282
7283 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007284 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007285 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007286 break;
7287
7288 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01007289 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007290 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007291 break;
7292
7293 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007294 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7295 if (trash.len < 0)
7296 return -1;
7297
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007298 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007299 /* FIXME: if the user adds a newline in the replacement, the
7300 * index will not be recalculated for now, and the new line
7301 * will not be counted as a new header.
7302 */
7303
7304 cur_end += delta;
7305 cur_next += delta;
7306 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007307 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007308 break;
7309
7310 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02007311 delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007312 cur_next += delta;
7313
Willy Tarreaufa355d42009-11-29 18:12:29 +01007314 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007315 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7316 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007317 cur_hdr->len = 0;
7318 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01007319 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007320 break;
7321
7322 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007323 }
7324
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007325 /* keep the link from this header to next one in case of later
7326 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007327 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007328 old_idx = cur_idx;
7329 }
7330 return 0;
7331}
7332
7333
7334/* Apply the filter to the request line.
7335 * Returns 0 if nothing has been done, 1 if the filter has been applied,
7336 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01007337 * Since it can manage the switch to another backend, it updates the per-proxy
7338 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007339 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007340int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007341{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007342 char *cur_ptr, *cur_end;
7343 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007344 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007345 int delta;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007346
Willy Tarreau3d300592007-03-18 18:34:41 +01007347 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007348 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007349 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007350 (exp->action == ACT_ALLOW ||
7351 exp->action == ACT_DENY ||
7352 exp->action == ACT_TARPIT))
7353 return 0;
7354 else if (exp->action == ACT_REMOVE)
7355 return 0;
7356
7357 done = 0;
7358
Willy Tarreau9b28e032012-10-12 23:49:43 +02007359 cur_ptr = req->buf->p;
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007360 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007361
7362 /* Now we have the request line between cur_ptr and cur_end */
7363
Willy Tarreau15a53a42015-01-21 13:39:42 +01007364 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007365 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007366 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01007367 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007368 done = 1;
7369 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007370
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007371 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01007372 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007373 done = 1;
7374 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007375
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007376 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01007377 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007378 done = 1;
7379 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01007380
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007381 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06007382 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
7383 if (trash.len < 0)
7384 return -1;
7385
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007386 delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007387 /* FIXME: if the user adds a newline in the replacement, the
7388 * index will not be recalculated for now, and the new line
7389 * will not be counted as a new header.
7390 */
Willy Tarreaua496b602006-12-17 23:15:24 +01007391
Willy Tarreaufa355d42009-11-29 18:12:29 +01007392 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007393 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007394 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007395 HTTP_MSG_RQMETH,
7396 cur_ptr, cur_end + 1,
7397 NULL, NULL);
7398 if (unlikely(!cur_end))
7399 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01007400
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007401 /* we have a full request and we know that we have either a CR
7402 * or an LF at <ptr>.
7403 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007404 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
7405 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007406 /* there is no point trying this regex on headers */
7407 return 1;
7408 }
7409 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007410 return done;
7411}
Willy Tarreau97de6242006-12-27 17:18:38 +01007412
Willy Tarreau58f10d72006-12-04 02:26:12 +01007413
Willy Tarreau58f10d72006-12-04 02:26:12 +01007414
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007415/*
Willy Tarreau87b09662015-04-03 00:22:06 +02007416 * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007417 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01007418 * unparsable request. Since it can manage the switch to another backend, it
7419 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007420 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007421int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007422{
Willy Tarreau192252e2015-04-04 01:47:55 +02007423 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007424 struct http_txn *txn = s->txn;
Willy Tarreau6c123b12010-01-28 20:22:06 +01007425 struct hdr_exp *exp;
7426
7427 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007428 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007429
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007430 /*
7431 * The interleaving of transformations and verdicts
7432 * makes it difficult to decide to continue or stop
7433 * the evaluation.
7434 */
7435
Willy Tarreau6c123b12010-01-28 20:22:06 +01007436 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
7437 break;
7438
Willy Tarreau3d300592007-03-18 18:34:41 +01007439 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007440 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01007441 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007442 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01007443
7444 /* if this filter had a condition, evaluate it now and skip to
7445 * next filter if the condition does not match.
7446 */
7447 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02007448 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01007449 ret = acl_pass(ret);
7450 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
7451 ret = !ret;
7452
7453 if (!ret)
7454 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007455 }
7456
7457 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01007458 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007459 if (unlikely(ret < 0))
7460 return -1;
7461
7462 if (likely(ret == 0)) {
7463 /* The filter did not match the request, it can be
7464 * iterated through all headers.
7465 */
Willy Tarreau34d4c3c2015-01-30 20:58:58 +01007466 if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0))
7467 return -1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007468 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007469 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007470 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007471}
7472
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007473
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007474/* Find the end of a cookie value contained between <s> and <e>. It works the
7475 * same way as with headers above except that the semi-colon also ends a token.
7476 * See RFC2965 for more information. Note that it requires a valid header to
7477 * return a valid result.
7478 */
7479char *find_cookie_value_end(char *s, const char *e)
7480{
7481 int quoted, qdpair;
7482
7483 quoted = qdpair = 0;
7484 for (; s < e; s++) {
7485 if (qdpair) qdpair = 0;
7486 else if (quoted) {
7487 if (*s == '\\') qdpair = 1;
7488 else if (*s == '"') quoted = 0;
7489 }
7490 else if (*s == '"') quoted = 1;
7491 else if (*s == ',' || *s == ';') return s;
7492 }
7493 return s;
7494}
7495
7496/* Delete a value in a header between delimiters <from> and <next> in buffer
7497 * <buf>. The number of characters displaced is returned, and the pointer to
7498 * the first delimiter is updated if required. The function tries as much as
7499 * possible to respect the following principles :
7500 * - replace <from> delimiter by the <next> one unless <from> points to a
7501 * colon, in which case <next> is simply removed
7502 * - set exactly one space character after the new first delimiter, unless
7503 * there are not enough characters in the block being moved to do so.
7504 * - remove unneeded spaces before the previous delimiter and after the new
7505 * one.
7506 *
7507 * It is the caller's responsibility to ensure that :
7508 * - <from> points to a valid delimiter or the colon ;
7509 * - <next> points to a valid delimiter or the final CR/LF ;
7510 * - there are non-space chars before <from> ;
7511 * - there is a CR/LF at or after <next>.
7512 */
Willy Tarreauaf819352012-08-27 22:08:00 +02007513int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007514{
7515 char *prev = *from;
7516
7517 if (*prev == ':') {
7518 /* We're removing the first value, preserve the colon and add a
7519 * space if possible.
7520 */
Willy Tarreau2235b262016-11-05 15:50:20 +01007521 if (!HTTP_IS_CRLF(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007522 next++;
7523 prev++;
7524 if (prev < next)
7525 *prev++ = ' ';
7526
Willy Tarreau2235b262016-11-05 15:50:20 +01007527 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007528 next++;
7529 } else {
7530 /* Remove useless spaces before the old delimiter. */
Willy Tarreau2235b262016-11-05 15:50:20 +01007531 while (HTTP_IS_SPHT(*(prev-1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007532 prev--;
7533 *from = prev;
7534
7535 /* copy the delimiter and if possible a space if we're
7536 * not at the end of the line.
7537 */
Willy Tarreau2235b262016-11-05 15:50:20 +01007538 if (!HTTP_IS_CRLF(*next)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007539 *prev++ = *next++;
7540 if (prev + 1 < next)
7541 *prev++ = ' ';
Willy Tarreau2235b262016-11-05 15:50:20 +01007542 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007543 next++;
7544 }
7545 }
7546 return buffer_replace2(buf, prev, next, NULL, 0);
7547}
7548
Cyril Bontébf47aeb2009-10-15 00:15:40 +02007549/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01007550 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007551 * desirable to call it only when needed. This code is quite complex because
7552 * of the multiple very crappy and ambiguous syntaxes we have to support. it
7553 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01007554 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007555void manage_client_side_cookies(struct stream *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007556{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007557 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007558 struct session *sess = s->sess;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007559 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007560 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007561 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
7562 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007563
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007564 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01007565 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02007566 hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007567
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007568 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007569 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007570 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007571
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007572 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007573 hdr_beg = hdr_next;
7574 hdr_end = hdr_beg + cur_hdr->len;
7575 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007576
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007577 /* We have one full header between hdr_beg and hdr_end, and the
7578 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01007579 * "Cookie:" headers.
7580 */
7581
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007582 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01007583 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007584 old_idx = cur_idx;
7585 continue;
7586 }
7587
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007588 del_from = NULL; /* nothing to be deleted */
7589 preserve_hdr = 0; /* assume we may kill the whole header */
7590
Willy Tarreau58f10d72006-12-04 02:26:12 +01007591 /* Now look for cookies. Conforming to RFC2109, we have to support
7592 * attributes whose name begin with a '$', and associate them with
7593 * the right cookie, if we want to delete this cookie.
7594 * So there are 3 cases for each cookie read :
7595 * 1) it's a special attribute, beginning with a '$' : ignore it.
7596 * 2) it's a server id cookie that we *MAY* want to delete : save
7597 * some pointers on it (last semi-colon, beginning of cookie...)
7598 * 3) it's an application cookie : we *MAY* have to delete a previous
7599 * "special" cookie.
7600 * At the end of loop, if a "special" cookie remains, we may have to
7601 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007602 * *MUST* delete it.
7603 *
7604 * Note: RFC2965 is unclear about the processing of spaces around
7605 * the equal sign in the ATTR=VALUE form. A careful inspection of
7606 * the RFC explicitly allows spaces before it, and not within the
7607 * tokens (attrs or values). An inspection of RFC2109 allows that
7608 * too but section 10.1.3 lets one think that spaces may be allowed
7609 * after the equal sign too, resulting in some (rare) buggy
7610 * implementations trying to do that. So let's do what servers do.
7611 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
7612 * allowed quoted strings in values, with any possible character
7613 * after a backslash, including control chars and delimitors, which
7614 * causes parsing to become ambiguous. Browsers also allow spaces
7615 * within values even without quotes.
7616 *
7617 * We have to keep multiple pointers in order to support cookie
7618 * removal at the beginning, middle or end of header without
7619 * corrupting the header. All of these headers are valid :
7620 *
7621 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
7622 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
7623 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
7624 * | | | | | | | | |
7625 * | | | | | | | | hdr_end <--+
7626 * | | | | | | | +--> next
7627 * | | | | | | +----> val_end
7628 * | | | | | +-----------> val_beg
7629 * | | | | +--------------> equal
7630 * | | | +----------------> att_end
7631 * | | +---------------------> att_beg
7632 * | +--------------------------> prev
7633 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01007634 */
7635
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007636 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
7637 /* Iterate through all cookies on this line */
7638
7639 /* find att_beg */
7640 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01007641 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007642 att_beg++;
7643
7644 /* find att_end : this is the first character after the last non
7645 * space before the equal. It may be equal to hdr_end.
7646 */
7647 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007648
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007649 while (equal < hdr_end) {
7650 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01007651 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01007652 if (HTTP_IS_SPHT(*equal++))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007653 continue;
7654 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007655 }
7656
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007657 /* here, <equal> points to '=', a delimitor or the end. <att_end>
7658 * is between <att_beg> and <equal>, both may be identical.
7659 */
7660
7661 /* look for end of cookie if there is an equal sign */
7662 if (equal < hdr_end && *equal == '=') {
7663 /* look for the beginning of the value */
7664 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01007665 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007666 val_beg++;
7667
7668 /* find the end of the value, respecting quotes */
7669 next = find_cookie_value_end(val_beg, hdr_end);
7670
7671 /* make val_end point to the first white space or delimitor after the value */
7672 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01007673 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007674 val_end--;
7675 } else {
7676 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01007677 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007678
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007679 /* We have nothing to do with attributes beginning with '$'. However,
7680 * they will automatically be removed if a header before them is removed,
7681 * since they're supposed to be linked together.
7682 */
7683 if (*att_beg == '$')
7684 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007685
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007686 /* Ignore cookies with no equal sign */
7687 if (equal == next) {
7688 /* This is not our cookie, so we must preserve it. But if we already
7689 * scheduled another cookie for removal, we cannot remove the
7690 * complete header, but we can remove the previous block itself.
7691 */
7692 preserve_hdr = 1;
7693 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007694 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007695 val_end += delta;
7696 next += delta;
7697 hdr_end += delta;
7698 hdr_next += delta;
7699 cur_hdr->len += delta;
7700 http_msg_move_end(&txn->req, delta);
7701 prev = del_from;
7702 del_from = NULL;
7703 }
7704 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01007705 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007706
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007707 /* if there are spaces around the equal sign, we need to
7708 * strip them otherwise we'll get trouble for cookie captures,
7709 * or even for rewrites. Since this happens extremely rarely,
7710 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007711 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007712 if (unlikely(att_end != equal || val_beg > equal + 1)) {
7713 int stripped_before = 0;
7714 int stripped_after = 0;
7715
7716 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007717 stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007718 equal += stripped_before;
7719 val_beg += stripped_before;
7720 }
7721
7722 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007723 stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007724 val_beg += stripped_after;
7725 stripped_before += stripped_after;
7726 }
7727
7728 val_end += stripped_before;
7729 next += stripped_before;
7730 hdr_end += stripped_before;
7731 hdr_next += stripped_before;
7732 cur_hdr->len += stripped_before;
7733 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007734 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007735 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007736
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007737 /* First, let's see if we want to capture this cookie. We check
7738 * that we don't already have a client side cookie, because we
7739 * can only capture one. Also as an optimisation, we ignore
7740 * cookies shorter than the declared name.
7741 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007742 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
7743 (val_end - att_beg >= sess->fe->capture_namelen) &&
7744 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007745 int log_len = val_end - att_beg;
7746
7747 if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) {
7748 Alert("HTTP logging : out of memory.\n");
7749 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007750 if (log_len > sess->fe->capture_len)
7751 log_len = sess->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007752 memcpy(txn->cli_cookie, att_beg, log_len);
7753 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007754 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007755 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007756
Willy Tarreaubca99692010-10-06 19:25:55 +02007757 /* Persistence cookies in passive, rewrite or insert mode have the
7758 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007759 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007760 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007761 *
Willy Tarreaubca99692010-10-06 19:25:55 +02007762 * For cookies in prefix mode, the form is :
7763 *
7764 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007765 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007766 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
7767 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
7768 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007769 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007770
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007771 /* if we're in cookie prefix mode, we'll search the delimitor so that we
7772 * have the server ID between val_beg and delim, and the original cookie between
7773 * delim+1 and val_end. Otherwise, delim==val_end :
7774 *
7775 * Cookie: NAME=SRV; # in all but prefix modes
7776 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
7777 * | || || | |+-> next
7778 * | || || | +--> val_end
7779 * | || || +---------> delim
7780 * | || |+------------> val_beg
7781 * | || +-------------> att_end = equal
7782 * | |+-----------------> att_beg
7783 * | +------------------> prev
7784 * +-------------------------> hdr_beg
7785 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007786
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007787 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007788 for (delim = val_beg; delim < val_end; delim++)
7789 if (*delim == COOKIE_DELIM)
7790 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02007791 } else {
7792 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007793 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02007794 /* Now check if the cookie contains a date field, which would
7795 * appear after a vertical bar ('|') just after the server name
7796 * and before the delimiter.
7797 */
7798 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
7799 if (vbar1) {
7800 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02007801 * right is the last seen date. It is a base64 encoded
7802 * 30-bit value representing the UNIX date since the
7803 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02007804 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02007805 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02007806 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02007807 if (val_end - vbar1 >= 5) {
7808 val = b64tos30(vbar1);
7809 if (val > 0)
7810 txn->cookie_last_date = val << 2;
7811 }
7812 /* look for a second vertical bar */
7813 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
7814 if (vbar1 && (val_end - vbar1 > 5)) {
7815 val = b64tos30(vbar1 + 1);
7816 if (val > 0)
7817 txn->cookie_first_date = val << 2;
7818 }
Willy Tarreaubca99692010-10-06 19:25:55 +02007819 }
7820 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007821
Willy Tarreauf64d1412010-10-07 20:06:11 +02007822 /* if the cookie has an expiration date and the proxy wants to check
7823 * it, then we do that now. We first check if the cookie is too old,
7824 * then only if it has expired. We detect strict overflow because the
7825 * time resolution here is not great (4 seconds). Cookies with dates
7826 * in the future are ignored if their offset is beyond one day. This
7827 * allows an admin to fix timezone issues without expiring everyone
7828 * and at the same time avoids keeping unwanted side effects for too
7829 * long.
7830 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007831 if (txn->cookie_first_date && s->be->cookie_maxlife &&
7832 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007833 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007834 txn->flags &= ~TX_CK_MASK;
7835 txn->flags |= TX_CK_OLD;
7836 delim = val_beg; // let's pretend we have not found the cookie
7837 txn->cookie_first_date = 0;
7838 txn->cookie_last_date = 0;
7839 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007840 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
7841 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02007842 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02007843 txn->flags &= ~TX_CK_MASK;
7844 txn->flags |= TX_CK_EXPIRED;
7845 delim = val_beg; // let's pretend we have not found the cookie
7846 txn->cookie_first_date = 0;
7847 txn->cookie_last_date = 0;
7848 }
7849
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007850 /* Here, we'll look for the first running server which supports the cookie.
7851 * This allows to share a same cookie between several servers, for example
7852 * to dedicate backup servers to specific servers only.
7853 * However, to prevent clients from sticking to cookie-less backup server
7854 * when they have incidentely learned an empty cookie, we simply ignore
7855 * empty cookies and mark them as invalid.
7856 * The same behaviour is applied when persistence must be ignored.
7857 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02007858 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007859 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007860
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007861 while (srv) {
7862 if (srv->cookie && (srv->cklen == delim - val_beg) &&
7863 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
Willy Tarreau892337c2014-05-13 23:41:20 +02007864 if ((srv->state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007865 (s->be->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02007866 (s->flags & SF_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007867 /* we found the server and we can use it */
7868 txn->flags &= ~TX_CK_MASK;
Willy Tarreau892337c2014-05-13 23:41:20 +02007869 txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007870 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007871 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007872 break;
7873 } else {
7874 /* we found a server, but it's down,
7875 * mark it as such and go on in case
7876 * another one is available.
7877 */
7878 txn->flags &= ~TX_CK_MASK;
7879 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007880 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007881 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007882 srv = srv->next;
7883 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007884
Willy Tarreauf64d1412010-10-07 20:06:11 +02007885 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007886 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007887 txn->flags &= ~TX_CK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02007888 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02007889 txn->flags |= TX_CK_UNUSED;
7890 else
7891 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007892 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007893
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007894 /* depending on the cookie mode, we may have to either :
7895 * - delete the complete cookie if we're in insert+indirect mode, so that
7896 * the server never sees it ;
7897 * - remove the server id from the cookie value, and tag the cookie as an
7898 * application cookie so that it does not get accidentely removed later,
7899 * if we're in cookie prefix mode
7900 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007901 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007902 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007903
Willy Tarreau9b28e032012-10-12 23:49:43 +02007904 delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007905 val_end += delta;
7906 next += delta;
7907 hdr_end += delta;
7908 hdr_next += delta;
7909 cur_hdr->len += delta;
7910 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007911
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007912 del_from = NULL;
7913 preserve_hdr = 1; /* we want to keep this cookie */
7914 }
7915 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007916 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007917 del_from = prev;
7918 }
7919 } else {
7920 /* This is not our cookie, so we must preserve it. But if we already
7921 * scheduled another cookie for removal, we cannot remove the
7922 * complete header, but we can remove the previous block itself.
7923 */
7924 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007925
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007926 if (del_from != NULL) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007927 int delta = del_hdr_value(req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01007928 if (att_beg >= del_from)
7929 att_beg += delta;
7930 if (att_end >= del_from)
7931 att_end += delta;
7932 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007933 val_end += delta;
7934 next += delta;
7935 hdr_end += delta;
7936 hdr_next += delta;
7937 cur_hdr->len += delta;
7938 http_msg_move_end(&txn->req, delta);
7939 prev = del_from;
7940 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007941 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007942 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007943
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007944 /* continue with next cookie on this header line */
7945 att_beg = next;
7946 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007947
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007948 /* There are no more cookies on this line.
7949 * We may still have one (or several) marked for deletion at the
7950 * end of the line. We must do this now in two ways :
7951 * - if some cookies must be preserved, we only delete from the
7952 * mark to the end of line ;
7953 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01007954 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007955 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01007956 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007957 if (preserve_hdr) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007958 delta = del_hdr_value(req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007959 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007960 cur_hdr->len += delta;
7961 } else {
Willy Tarreau9b28e032012-10-12 23:49:43 +02007962 delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007963
7964 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01007965 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
7966 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007967 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01007968 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01007969 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007970 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01007971 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01007972 }
7973
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007974 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01007975 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02007976 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01007977}
7978
7979
Willy Tarreaua15645d2007-03-18 16:22:39 +01007980/* Iterate the same filter through all response headers contained in <rtr>.
7981 * Returns 1 if this filter can be stopped upon return, otherwise 0.
7982 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007983int apply_filter_to_resp_headers(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01007984{
Willy Tarreaua15645d2007-03-18 16:22:39 +01007985 char *cur_ptr, *cur_end, *cur_next;
7986 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02007987 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007988 struct hdr_idx_elem *cur_hdr;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007989 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007990
7991 last_hdr = 0;
7992
Willy Tarreau9b28e032012-10-12 23:49:43 +02007993 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01007994 old_idx = 0;
7995
7996 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007997 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01007998 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01007999 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01008000 (exp->action == ACT_ALLOW ||
8001 exp->action == ACT_DENY))
8002 return 0;
8003
8004 cur_idx = txn->hdr_idx.v[old_idx].next;
8005 if (!cur_idx)
8006 break;
8007
8008 cur_hdr = &txn->hdr_idx.v[cur_idx];
8009 cur_ptr = cur_next;
8010 cur_end = cur_ptr + cur_hdr->len;
8011 cur_next = cur_end + cur_hdr->cr + 1;
8012
8013 /* Now we have one header between cur_ptr and cur_end,
8014 * and the next header starts at cur_next.
8015 */
8016
Willy Tarreau15a53a42015-01-21 13:39:42 +01008017 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008018 switch (exp->action) {
8019 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01008020 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008021 last_hdr = 1;
8022 break;
8023
8024 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01008025 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008026 last_hdr = 1;
8027 break;
8028
8029 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06008030 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
8031 if (trash.len < 0)
8032 return -1;
8033
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008034 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008035 /* FIXME: if the user adds a newline in the replacement, the
8036 * index will not be recalculated for now, and the new line
8037 * will not be counted as a new header.
8038 */
8039
8040 cur_end += delta;
8041 cur_next += delta;
8042 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008043 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008044 break;
8045
8046 case ACT_REMOVE:
Willy Tarreau9b28e032012-10-12 23:49:43 +02008047 delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008048 cur_next += delta;
8049
Willy Tarreaufa355d42009-11-29 18:12:29 +01008050 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008051 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
8052 txn->hdr_idx.used--;
8053 cur_hdr->len = 0;
8054 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01008055 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008056 break;
8057
8058 }
8059 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008060
8061 /* keep the link from this header to next one in case of later
8062 * removal of next header.
8063 */
8064 old_idx = cur_idx;
8065 }
8066 return 0;
8067}
8068
8069
8070/* Apply the filter to the status line in the response buffer <rtr>.
8071 * Returns 0 if nothing has been done, 1 if the filter has been applied,
8072 * or -1 if a replacement resulted in an invalid status line.
8073 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008074int apply_filter_to_sts_line(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008075{
Willy Tarreaua15645d2007-03-18 16:22:39 +01008076 char *cur_ptr, *cur_end;
8077 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02008078 struct http_txn *txn = s->txn;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008079 int delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008080
8081
Willy Tarreau3d300592007-03-18 18:34:41 +01008082 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008083 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01008084 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01008085 (exp->action == ACT_ALLOW ||
8086 exp->action == ACT_DENY))
8087 return 0;
8088 else if (exp->action == ACT_REMOVE)
8089 return 0;
8090
8091 done = 0;
8092
Willy Tarreau9b28e032012-10-12 23:49:43 +02008093 cur_ptr = rtr->buf->p;
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02008094 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008095
8096 /* Now we have the status line between cur_ptr and cur_end */
8097
Willy Tarreau15a53a42015-01-21 13:39:42 +01008098 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008099 switch (exp->action) {
8100 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01008101 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008102 done = 1;
8103 break;
8104
8105 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01008106 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008107 done = 1;
8108 break;
8109
8110 case ACT_REPLACE:
Sasha Pachevc6002042014-05-26 12:33:48 -06008111 trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch);
8112 if (trash.len < 0)
8113 return -1;
8114
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008115 delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008116 /* FIXME: if the user adds a newline in the replacement, the
8117 * index will not be recalculated for now, and the new line
8118 * will not be counted as a new header.
8119 */
8120
Willy Tarreaufa355d42009-11-29 18:12:29 +01008121 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008122 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008123 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02008124 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01008125 cur_ptr, cur_end + 1,
8126 NULL, NULL);
8127 if (unlikely(!cur_end))
8128 return -1;
8129
8130 /* we have a full respnse and we know that we have either a CR
8131 * or an LF at <ptr>.
8132 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008133 txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02008134 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01008135 /* there is no point trying this regex on headers */
8136 return 1;
8137 }
8138 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008139 return done;
8140}
8141
8142
8143
8144/*
Willy Tarreau87b09662015-04-03 00:22:06 +02008145 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of stream <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008146 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
8147 * unparsable response.
8148 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008149int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008150{
Willy Tarreau192252e2015-04-04 01:47:55 +02008151 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02008152 struct http_txn *txn = s->txn;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008153 struct hdr_exp *exp;
8154
8155 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008156 int ret;
8157
8158 /*
8159 * The interleaving of transformations and verdicts
8160 * makes it difficult to decide to continue or stop
8161 * the evaluation.
8162 */
8163
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008164 if (txn->flags & TX_SVDENY)
8165 break;
8166
Willy Tarreau3d300592007-03-18 18:34:41 +01008167 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01008168 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
8169 exp->action == ACT_PASS)) {
8170 exp = exp->next;
8171 continue;
8172 }
8173
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008174 /* if this filter had a condition, evaluate it now and skip to
8175 * next filter if the condition does not match.
8176 */
8177 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02008178 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008179 ret = acl_pass(ret);
8180 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
8181 ret = !ret;
8182 if (!ret)
8183 continue;
8184 }
8185
Willy Tarreaua15645d2007-03-18 16:22:39 +01008186 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01008187 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008188 if (unlikely(ret < 0))
8189 return -1;
8190
8191 if (likely(ret == 0)) {
8192 /* The filter did not match the response, it can be
8193 * iterated through all headers.
8194 */
Sasha Pachevc6002042014-05-26 12:33:48 -06008195 if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0))
8196 return -1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008197 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008198 }
8199 return 0;
8200}
8201
8202
Willy Tarreaua15645d2007-03-18 16:22:39 +01008203/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01008204 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02008205 * desirable to call it only when needed. This function is also used when we
8206 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01008207 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008208void manage_server_side_cookies(struct stream *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008209{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008210 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008211 struct session *sess = s->sess;
Willy Tarreau827aee92011-03-10 16:55:02 +01008212 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008213 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008214 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008215 char *hdr_beg, *hdr_end, *hdr_next;
8216 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008217
Willy Tarreaua15645d2007-03-18 16:22:39 +01008218 /* Iterate through the headers.
8219 * we start with the start line.
8220 */
8221 old_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008222 hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008223
8224 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
8225 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008226 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008227
8228 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02008229 hdr_beg = hdr_next;
8230 hdr_end = hdr_beg + cur_hdr->len;
8231 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008232
Willy Tarreau24581ba2010-08-31 22:39:35 +02008233 /* We have one full header between hdr_beg and hdr_end, and the
8234 * next header starts at hdr_next. We're only interested in
8235 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008236 */
8237
Willy Tarreau24581ba2010-08-31 22:39:35 +02008238 is_cookie2 = 0;
8239 prev = hdr_beg + 10;
8240 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008241 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008242 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
8243 if (!val) {
8244 old_idx = cur_idx;
8245 continue;
8246 }
8247 is_cookie2 = 1;
8248 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008249 }
8250
Willy Tarreau24581ba2010-08-31 22:39:35 +02008251 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
8252 * <prev> points to the colon.
8253 */
Willy Tarreauf1348312010-10-07 15:54:11 +02008254 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008255
Willy Tarreau24581ba2010-08-31 22:39:35 +02008256 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
8257 * check-cache is enabled) and we are not interested in checking
8258 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02008259 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02008260 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008261 return;
8262
Willy Tarreau24581ba2010-08-31 22:39:35 +02008263 /* OK so now we know we have to process this response cookie.
8264 * The format of the Set-Cookie header is slightly different
8265 * from the format of the Cookie header in that it does not
8266 * support the comma as a cookie delimiter (thus the header
8267 * cannot be folded) because the Expires attribute described in
8268 * the original Netscape's spec may contain an unquoted date
8269 * with a comma inside. We have to live with this because
8270 * many browsers don't support Max-Age and some browsers don't
8271 * support quoted strings. However the Set-Cookie2 header is
8272 * clean.
8273 *
8274 * We have to keep multiple pointers in order to support cookie
8275 * removal at the beginning, middle or end of header without
8276 * corrupting the header (in case of set-cookie2). A special
8277 * pointer, <scav> points to the beginning of the set-cookie-av
8278 * fields after the first semi-colon. The <next> pointer points
8279 * either to the end of line (set-cookie) or next unquoted comma
8280 * (set-cookie2). All of these headers are valid :
8281 *
8282 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
8283 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8284 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
8285 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
8286 * | | | | | | | | | |
8287 * | | | | | | | | +-> next hdr_end <--+
8288 * | | | | | | | +------------> scav
8289 * | | | | | | +--------------> val_end
8290 * | | | | | +--------------------> val_beg
8291 * | | | | +----------------------> equal
8292 * | | | +------------------------> att_end
8293 * | | +----------------------------> att_beg
8294 * | +------------------------------> prev
8295 * +-----------------------------------------> hdr_beg
8296 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008297
Willy Tarreau24581ba2010-08-31 22:39:35 +02008298 for (; prev < hdr_end; prev = next) {
8299 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008300
Willy Tarreau24581ba2010-08-31 22:39:35 +02008301 /* find att_beg */
8302 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01008303 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02008304 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008305
Willy Tarreau24581ba2010-08-31 22:39:35 +02008306 /* find att_end : this is the first character after the last non
8307 * space before the equal. It may be equal to hdr_end.
8308 */
8309 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008310
Willy Tarreau24581ba2010-08-31 22:39:35 +02008311 while (equal < hdr_end) {
8312 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
8313 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01008314 if (HTTP_IS_SPHT(*equal++))
Willy Tarreau24581ba2010-08-31 22:39:35 +02008315 continue;
8316 att_end = equal;
8317 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008318
Willy Tarreau24581ba2010-08-31 22:39:35 +02008319 /* here, <equal> points to '=', a delimitor or the end. <att_end>
8320 * is between <att_beg> and <equal>, both may be identical.
8321 */
8322
8323 /* look for end of cookie if there is an equal sign */
8324 if (equal < hdr_end && *equal == '=') {
8325 /* look for the beginning of the value */
8326 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01008327 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02008328 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008329
Willy Tarreau24581ba2010-08-31 22:39:35 +02008330 /* find the end of the value, respecting quotes */
8331 next = find_cookie_value_end(val_beg, hdr_end);
8332
8333 /* make val_end point to the first white space or delimitor after the value */
8334 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01008335 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreau24581ba2010-08-31 22:39:35 +02008336 val_end--;
8337 } else {
8338 /* <equal> points to next comma, semi-colon or EOL */
8339 val_beg = val_end = next = equal;
8340 }
8341
8342 if (next < hdr_end) {
8343 /* Set-Cookie2 supports multiple cookies, and <next> points to
8344 * a colon or semi-colon before the end. So skip all attr-value
8345 * pairs and look for the next comma. For Set-Cookie, since
8346 * commas are permitted in values, skip to the end.
8347 */
8348 if (is_cookie2)
8349 next = find_hdr_value_end(next, hdr_end);
8350 else
8351 next = hdr_end;
8352 }
8353
8354 /* Now everything is as on the diagram above */
8355
8356 /* Ignore cookies with no equal sign */
8357 if (equal == val_end)
8358 continue;
8359
8360 /* If there are spaces around the equal sign, we need to
8361 * strip them otherwise we'll get trouble for cookie captures,
8362 * or even for rewrites. Since this happens extremely rarely,
8363 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008364 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02008365 if (unlikely(att_end != equal || val_beg > equal + 1)) {
8366 int stripped_before = 0;
8367 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008368
Willy Tarreau24581ba2010-08-31 22:39:35 +02008369 if (att_end != equal) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008370 stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008371 equal += stripped_before;
8372 val_beg += stripped_before;
8373 }
8374
8375 if (val_beg > equal + 1) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02008376 stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008377 val_beg += stripped_after;
8378 stripped_before += stripped_after;
8379 }
8380
8381 val_end += stripped_before;
8382 next += stripped_before;
8383 hdr_end += stripped_before;
8384 hdr_next += stripped_before;
8385 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02008386 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008387 }
8388
8389 /* First, let's see if we want to capture this cookie. We check
8390 * that we don't already have a server side cookie, because we
8391 * can only capture one. Also as an optimisation, we ignore
8392 * cookies shorter than the declared name.
8393 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008394 if (sess->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01008395 txn->srv_cookie == NULL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008396 (val_end - att_beg >= sess->fe->capture_namelen) &&
8397 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008398 int log_len = val_end - att_beg;
Willy Tarreau086b3b42007-05-13 21:45:51 +02008399 if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008400 Alert("HTTP logging : out of memory.\n");
8401 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01008402 else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008403 if (log_len > sess->fe->capture_len)
8404 log_len = sess->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01008405 memcpy(txn->srv_cookie, att_beg, log_len);
8406 txn->srv_cookie[log_len] = 0;
8407 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008408 }
8409
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008410 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008411 /* now check if we need to process it for persistence */
Willy Tarreaue7dff022015-04-03 01:14:29 +02008412 if (!(s->flags & SF_IGNORE_PRST) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008413 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
8414 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02008415 /* assume passive cookie by default */
8416 txn->flags &= ~TX_SCK_MASK;
8417 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008418
8419 /* If the cookie is in insert mode on a known server, we'll delete
8420 * this occurrence because we'll insert another one later.
8421 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02008422 * a direct access.
8423 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008424 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02008425 /* The "preserve" flag was set, we don't want to touch the
8426 * server's cookie.
8427 */
8428 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008429 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02008430 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008431 /* this cookie must be deleted */
8432 if (*prev == ':' && next == hdr_end) {
8433 /* whole header */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008434 delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008435 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
8436 txn->hdr_idx.used--;
8437 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01008438 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008439 hdr_next += delta;
8440 http_msg_move_end(&txn->rsp, delta);
8441 /* note: while both invalid now, <next> and <hdr_end>
8442 * are still equal, so the for() will stop as expected.
8443 */
8444 } else {
8445 /* just remove the value */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008446 int delta = del_hdr_value(res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008447 next = prev;
8448 hdr_end += delta;
8449 hdr_next += delta;
8450 cur_hdr->len += delta;
8451 http_msg_move_end(&txn->rsp, delta);
8452 }
Willy Tarreauf1348312010-10-07 15:54:11 +02008453 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01008454 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008455 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008456 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008457 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02008458 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01008459 * with this server since we know it.
8460 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008461 delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008462 next += delta;
8463 hdr_end += delta;
8464 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008465 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008466 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008467
Willy Tarreauf1348312010-10-07 15:54:11 +02008468 txn->flags &= ~TX_SCK_MASK;
8469 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008470 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008471 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01008472 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02008473 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01008474 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008475 delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02008476 next += delta;
8477 hdr_end += delta;
8478 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008479 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01008480 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008481
Willy Tarreau827aee92011-03-10 16:55:02 +01008482 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02008483 txn->flags &= ~TX_SCK_MASK;
8484 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008485 }
8486 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02008487 /* that's done for this cookie, check the next one on the same
8488 * line when next != hdr_end (only if is_cookie2).
8489 */
8490 }
8491 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008492 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02008493 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008494}
8495
8496
Willy Tarreaua15645d2007-03-18 16:22:39 +01008497/*
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008498 * Check if response is cacheable or not. Updates s->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01008499 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008500void check_response_for_cacheability(struct stream *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008501{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008502 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008503 char *p1, *p2;
8504
8505 char *cur_ptr, *cur_end, *cur_next;
8506 int cur_idx;
8507
Willy Tarreau5df51872007-11-25 16:20:08 +01008508 if (!(txn->flags & TX_CACHEABLE))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008509 return;
8510
8511 /* Iterate through the headers.
8512 * we start with the start line.
8513 */
8514 cur_idx = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008515 cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01008516
8517 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
8518 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008519 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008520
8521 cur_hdr = &txn->hdr_idx.v[cur_idx];
8522 cur_ptr = cur_next;
8523 cur_end = cur_ptr + cur_hdr->len;
8524 cur_next = cur_end + cur_hdr->cr + 1;
8525
8526 /* We have one full header between cur_ptr and cur_end, and the
8527 * next header starts at cur_next. We're only interested in
8528 * "Cookie:" headers.
8529 */
8530
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008531 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
8532 if (val) {
8533 if ((cur_end - (cur_ptr + val) >= 8) &&
8534 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
8535 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
8536 return;
8537 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01008538 }
8539
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008540 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
8541 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01008542 continue;
8543
8544 /* OK, right now we know we have a cache-control header at cur_ptr */
8545
Willy Tarreauaa9dce32007-03-18 23:50:16 +01008546 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01008547
8548 if (p1 >= cur_end) /* no more info */
8549 continue;
8550
8551 /* p1 is at the beginning of the value */
8552 p2 = p1;
8553
Willy Tarreau8f8e6452007-06-17 21:51:38 +02008554 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01008555 p2++;
8556
8557 /* we have a complete value between p1 and p2 */
8558 if (p2 < cur_end && *p2 == '=') {
8559 /* we have something of the form no-cache="set-cookie" */
8560 if ((cur_end - p1 >= 21) &&
8561 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
8562 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01008563 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008564 continue;
8565 }
8566
8567 /* OK, so we know that either p2 points to the end of string or to a comma */
8568 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02008569 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaua15645d2007-03-18 16:22:39 +01008570 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) ||
8571 ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) ||
8572 ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008573 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008574 return;
8575 }
8576
8577 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01008578 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01008579 continue;
8580 }
8581 }
8582}
8583
Willy Tarreau58f10d72006-12-04 02:26:12 +01008584
Willy Tarreaub2513902006-12-17 14:52:38 +01008585/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02008586 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008587 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01008588 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02008589 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01008590 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01008591 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008592 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01008593 */
Willy Tarreau295a8372011-03-10 11:25:07 +01008594int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01008595{
8596 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01008597 struct http_msg *msg = &txn->req;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008598 const char *uri = msg->chn->buf->p+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01008599
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008600 if (!uri_auth)
8601 return 0;
8602
Cyril Bonté70be45d2010-10-12 00:14:35 +02008603 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01008604 return 0;
8605
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01008606 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01008607 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01008608 return 0;
8609
Willy Tarreau414e9bb2013-11-23 00:30:38 +01008610 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01008611 return 0;
8612
Willy Tarreaub2513902006-12-17 14:52:38 +01008613 return 1;
8614}
8615
Willy Tarreau4076a152009-04-02 15:18:36 +02008616/*
8617 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008618 * By default it tries to report the error position as msg->err_pos. However if
8619 * this one is not set, it will then report msg->next, which is the last known
8620 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008621 * displays buffers as a contiguous area starting at buf->p.
Willy Tarreau4076a152009-04-02 15:18:36 +02008622 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008623void http_capture_bad_message(struct error_snapshot *es, struct stream *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008624 struct http_msg *msg,
Willy Tarreau3770f232013-12-07 00:01:53 +01008625 enum ht_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02008626{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008627 struct session *sess = strm_sess(s);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008628 struct channel *chn = msg->chn;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008629 int len1, len2;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01008630
Willy Tarreauf3764b72016-03-31 13:45:10 +02008631 es->len = MIN(chn->buf->i, global.tune.bufsize);
Willy Tarreau9b28e032012-10-12 23:49:43 +02008632 len1 = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008633 len1 = MIN(len1, es->len);
8634 len2 = es->len - len1; /* remaining data if buffer wraps */
8635
Willy Tarreauf3764b72016-03-31 13:45:10 +02008636 if (!es->buf)
8637 es->buf = malloc(global.tune.bufsize);
8638
8639 if (es->buf) {
8640 memcpy(es->buf, chn->buf->p, len1);
8641 if (len2)
8642 memcpy(es->buf + len1, chn->buf->data, len2);
8643 }
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008644
Willy Tarreau4076a152009-04-02 15:18:36 +02008645 if (msg->err_pos >= 0)
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008646 es->pos = msg->err_pos;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008647 else
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02008648 es->pos = msg->next;
Willy Tarreau81f2fb92010-12-12 13:09:08 +01008649
Willy Tarreau4076a152009-04-02 15:18:36 +02008650 es->when = date; // user-visible date
8651 es->sid = s->uniq_id;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008652 es->srv = objt_server(s->target);
Willy Tarreau4076a152009-04-02 15:18:36 +02008653 es->oe = other_end;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008654 if (objt_conn(sess->origin))
8655 es->src = __objt_conn(sess->origin)->addr.from;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008656 else
8657 memset(&es->src, 0, sizeof(es->src));
8658
Willy Tarreau078272e2010-12-12 12:46:33 +01008659 es->state = state;
Willy Tarreau10479e42010-12-12 14:00:34 +01008660 es->ev_id = error_snapshot_id++;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008661 es->b_flags = chn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008662 es->s_flags = s->flags;
Willy Tarreaueee5b512015-04-03 23:46:31 +02008663 es->t_flags = s->txn->flags;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008664 es->m_flags = msg->flags;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008665 es->b_out = chn->buf->o;
8666 es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02008667 es->b_tot = chn->total;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02008668 es->m_clen = msg->chunk_len;
8669 es->m_blen = msg->body_len;
Willy Tarreau4076a152009-04-02 15:18:36 +02008670}
Willy Tarreaub2513902006-12-17 14:52:38 +01008671
Willy Tarreau294c4732011-12-16 21:35:50 +01008672/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8673 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8674 * performed over the whole headers. Otherwise it must contain a valid header
8675 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8676 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8677 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8678 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008679 * -1. The value fetch stops at commas, so this function is suited for use with
8680 * list headers.
Willy Tarreau294c4732011-12-16 21:35:50 +01008681 * The return value is 0 if nothing was found, or non-zero otherwise.
Willy Tarreaubce70882009-09-07 11:51:47 +02008682 */
Willy Tarreau185b5c42012-04-26 15:11:51 +02008683unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +01008684 struct hdr_idx *idx, int occ,
8685 struct hdr_ctx *ctx, char **vptr, int *vlen)
Willy Tarreaubce70882009-09-07 11:51:47 +02008686{
Willy Tarreau294c4732011-12-16 21:35:50 +01008687 struct hdr_ctx local_ctx;
8688 char *ptr_hist[MAX_HDR_HISTORY];
8689 int len_hist[MAX_HDR_HISTORY];
Willy Tarreaubce70882009-09-07 11:51:47 +02008690 unsigned int hist_ptr;
Willy Tarreau294c4732011-12-16 21:35:50 +01008691 int found;
Willy Tarreaubce70882009-09-07 11:51:47 +02008692
Willy Tarreau294c4732011-12-16 21:35:50 +01008693 if (!ctx) {
8694 local_ctx.idx = 0;
8695 ctx = &local_ctx;
8696 }
8697
Willy Tarreaubce70882009-09-07 11:51:47 +02008698 if (occ >= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008699 /* search from the beginning */
Willy Tarreau9b28e032012-10-12 23:49:43 +02008700 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreaubce70882009-09-07 11:51:47 +02008701 occ--;
8702 if (occ <= 0) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008703 *vptr = ctx->line + ctx->val;
8704 *vlen = ctx->vlen;
8705 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008706 }
8707 }
Willy Tarreau294c4732011-12-16 21:35:50 +01008708 return 0;
Willy Tarreaubce70882009-09-07 11:51:47 +02008709 }
8710
8711 /* negative occurrence, we scan all the list then walk back */
8712 if (-occ > MAX_HDR_HISTORY)
8713 return 0;
8714
Willy Tarreau294c4732011-12-16 21:35:50 +01008715 found = hist_ptr = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +02008716 while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
Willy Tarreau294c4732011-12-16 21:35:50 +01008717 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8718 len_hist[hist_ptr] = ctx->vlen;
8719 if (++hist_ptr >= MAX_HDR_HISTORY)
Willy Tarreaubce70882009-09-07 11:51:47 +02008720 hist_ptr = 0;
8721 found++;
8722 }
8723 if (-occ > found)
8724 return 0;
8725 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Willy Tarreau67dad272013-06-12 22:27:44 +02008726 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8727 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8728 * to remain in the 0..9 range.
Willy Tarreaubce70882009-09-07 11:51:47 +02008729 */
Willy Tarreau67dad272013-06-12 22:27:44 +02008730 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreaubce70882009-09-07 11:51:47 +02008731 if (hist_ptr >= MAX_HDR_HISTORY)
8732 hist_ptr -= MAX_HDR_HISTORY;
Willy Tarreau294c4732011-12-16 21:35:50 +01008733 *vptr = ptr_hist[hist_ptr];
8734 *vlen = len_hist[hist_ptr];
8735 return 1;
Willy Tarreaubce70882009-09-07 11:51:47 +02008736}
8737
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008738/* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of
8739 * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is
8740 * performed over the whole headers. Otherwise it must contain a valid header
8741 * context, initialised with ctx->idx=0 for the first lookup in a series. If
8742 * <occ> is positive or null, occurrence #occ from the beginning (or last ctx)
8743 * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less
8744 * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is
8745 * -1. This function differs from http_get_hdr() in that it only returns full
8746 * line header values and does not stop at commas.
8747 * The return value is 0 if nothing was found, or non-zero otherwise.
8748 */
8749unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
8750 struct hdr_idx *idx, int occ,
8751 struct hdr_ctx *ctx, char **vptr, int *vlen)
8752{
8753 struct hdr_ctx local_ctx;
8754 char *ptr_hist[MAX_HDR_HISTORY];
8755 int len_hist[MAX_HDR_HISTORY];
8756 unsigned int hist_ptr;
8757 int found;
8758
8759 if (!ctx) {
8760 local_ctx.idx = 0;
8761 ctx = &local_ctx;
8762 }
8763
8764 if (occ >= 0) {
8765 /* search from the beginning */
8766 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8767 occ--;
8768 if (occ <= 0) {
8769 *vptr = ctx->line + ctx->val;
8770 *vlen = ctx->vlen;
8771 return 1;
8772 }
8773 }
8774 return 0;
8775 }
8776
8777 /* negative occurrence, we scan all the list then walk back */
8778 if (-occ > MAX_HDR_HISTORY)
8779 return 0;
8780
8781 found = hist_ptr = 0;
8782 while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) {
8783 ptr_hist[hist_ptr] = ctx->line + ctx->val;
8784 len_hist[hist_ptr] = ctx->vlen;
8785 if (++hist_ptr >= MAX_HDR_HISTORY)
8786 hist_ptr = 0;
8787 found++;
8788 }
8789 if (-occ > found)
8790 return 0;
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008791
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008792 /* OK now we have the last occurrence in [hist_ptr-1], and we need to
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008793 * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have
8794 * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ]
8795 * to remain in the 0..9 range.
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008796 */
Nenad Merdanovic69ad4b92016-03-29 13:14:30 +02008797 hist_ptr += occ + MAX_HDR_HISTORY;
Willy Tarreau04ff9f12013-06-10 18:39:42 +02008798 if (hist_ptr >= MAX_HDR_HISTORY)
8799 hist_ptr -= MAX_HDR_HISTORY;
8800 *vptr = ptr_hist[hist_ptr];
8801 *vlen = len_hist[hist_ptr];
8802 return 1;
8803}
8804
Willy Tarreaubaaee002006-06-26 02:48:02 +02008805/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02008806 * Print a debug line with a header. Always stop at the first CR or LF char,
8807 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
8808 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01008809 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008810void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01008811{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008812 struct session *sess = strm_sess(s);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008813 int max;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008814
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02008815 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02008816 dir,
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02008817 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->t.sock.fd : -1,
Willy Tarreau350f4872014-11-28 14:42:25 +01008818 objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02008819
8820 for (max = 0; start + max < end; max++)
8821 if (start[max] == '\r' || start[max] == '\n')
8822 break;
8823
Willy Tarreau19d14ef2012-10-29 16:51:55 +01008824 UBOUND(max, trash.size - trash.len - 3);
8825 trash.len += strlcpy2(trash.str + trash.len, start, max + 1);
8826 trash.str[trash.len++] = '\n';
Willy Tarreau89efaed2013-12-13 15:14:55 +01008827 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreau58f10d72006-12-04 02:26:12 +01008828}
8829
Willy Tarreaueee5b512015-04-03 23:46:31 +02008830
8831/* Allocate a new HTTP transaction for stream <s> unless there is one already.
8832 * The hdr_idx is allocated as well. In case of allocation failure, everything
8833 * allocated is freed and NULL is returned. Otherwise the new transaction is
8834 * assigned to the stream and returned.
8835 */
8836struct http_txn *http_alloc_txn(struct stream *s)
8837{
8838 struct http_txn *txn = s->txn;
8839
8840 if (txn)
8841 return txn;
8842
8843 txn = pool_alloc2(pool2_http_txn);
8844 if (!txn)
8845 return txn;
8846
8847 txn->hdr_idx.size = global.tune.max_http_hdr;
8848 txn->hdr_idx.v = pool_alloc2(pool2_hdr_idx);
8849 if (!txn->hdr_idx.v) {
8850 pool_free2(pool2_http_txn, txn);
8851 return NULL;
8852 }
8853
8854 s->txn = txn;
8855 return txn;
8856}
8857
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02008858void http_txn_reset_req(struct http_txn *txn)
8859{
8860 txn->req.flags = 0;
8861 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
8862 txn->req.next = 0;
8863 txn->req.chunk_len = 0LL;
8864 txn->req.body_len = 0LL;
8865 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
8866}
8867
8868void http_txn_reset_res(struct http_txn *txn)
8869{
8870 txn->rsp.flags = 0;
8871 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
8872 txn->rsp.next = 0;
8873 txn->rsp.chunk_len = 0LL;
8874 txn->rsp.body_len = 0LL;
8875 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
8876}
8877
Willy Tarreau0937bc42009-12-22 15:03:09 +01008878/*
Willy Tarreau87b09662015-04-03 00:22:06 +02008879 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
Willy Tarreau0937bc42009-12-22 15:03:09 +01008880 * the required fields are properly allocated and that we only need to (re)init
8881 * them. This should be used before processing any new request.
8882 */
Willy Tarreau87b09662015-04-03 00:22:06 +02008883void http_init_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008884{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008885 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008886 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008887
8888 txn->flags = 0;
8889 txn->status = -1;
8890
Willy Tarreauf64d1412010-10-07 20:06:11 +02008891 txn->cookie_first_date = 0;
8892 txn->cookie_last_date = 0;
8893
Willy Tarreaueee5b512015-04-03 23:46:31 +02008894 txn->srv_cookie = NULL;
8895 txn->cli_cookie = NULL;
8896 txn->uri = NULL;
8897
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02008898 http_txn_reset_req(txn);
8899 http_txn_reset_res(txn);
8900
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008901 txn->req.chn = &s->req;
8902 txn->rsp.chn = &s->res;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008903
8904 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008905
8906 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
8907 if (fe->options2 & PR_O2_REQBUG_OK)
8908 txn->req.err_pos = -1; /* let buggy requests pass */
8909
Willy Tarreau0937bc42009-12-22 15:03:09 +01008910 if (txn->hdr_idx.v)
8911 hdr_idx_init(&txn->hdr_idx);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02008912
8913 vars_init(&s->vars_txn, SCOPE_TXN);
8914 vars_init(&s->vars_reqres, SCOPE_REQ);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008915}
8916
8917/* to be used at the end of a transaction */
Willy Tarreau87b09662015-04-03 00:22:06 +02008918void http_end_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008919{
Willy Tarreaueee5b512015-04-03 23:46:31 +02008920 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008921 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008922
8923 /* these ones will have been dynamically allocated */
8924 pool_free2(pool2_requri, txn->uri);
8925 pool_free2(pool2_capture, txn->cli_cookie);
8926 pool_free2(pool2_capture, txn->srv_cookie);
William Lallemanda73203e2012-03-12 12:48:57 +01008927 pool_free2(pool2_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01008928
William Lallemanda73203e2012-03-12 12:48:57 +01008929 s->unique_id = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008930 txn->uri = NULL;
8931 txn->srv_cookie = NULL;
8932 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01008933
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008934 if (s->req_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008935 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008936 for (h = fe->req_cap; h; h = h->next)
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008937 pool_free2(h->pool, s->req_cap[h->index]);
8938 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008939 }
8940
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008941 if (s->res_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01008942 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02008943 for (h = fe->rsp_cap; h; h = h->next)
Willy Tarreaucb7dd012015-04-03 22:16:32 +02008944 pool_free2(h->pool, s->res_cap[h->index]);
8945 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01008946 }
8947
Willy Tarreau6204cd92016-03-10 16:33:04 +01008948 vars_prune(&s->vars_txn, s->sess, s);
8949 vars_prune(&s->vars_reqres, s->sess, s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01008950}
8951
8952/* to be used at the end of a transaction to prepare a new one */
Willy Tarreau87b09662015-04-03 00:22:06 +02008953void http_reset_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01008954{
8955 http_end_txn(s);
8956 http_init_txn(s);
8957
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01008958 /* reinitialise the current rule list pointer to NULL. We are sure that
8959 * any rulelist match the NULL pointer.
8960 */
8961 s->current_rule_list = NULL;
8962
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008963 s->be = strm_fe(s);
8964 s->logs.logwait = strm_fe(s)->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02008965 s->logs.level = 0;
Willy Tarreau87b09662015-04-03 00:22:06 +02008966 stream_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01008967 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008968 /* re-init store persistence */
8969 s->store_count = 0;
Willy Tarreau1f0da242014-01-25 11:01:50 +01008970 s->uniq_id = global.req_count++;
Emeric Brunb982a3d2010-01-04 15:45:53 +01008971
Willy Tarreau0937bc42009-12-22 15:03:09 +01008972 s->pend_pos = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008973
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008974 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01008975
Willy Tarreau739cfba2010-01-25 23:11:14 +01008976 /* We must trim any excess data from the response buffer, because we
8977 * may have blocked an invalid response from a server that we don't
8978 * want to accidentely forward once we disable the analysers, nor do
8979 * we want those data to come along with next response. A typical
8980 * example of such data would be from a buggy server responding to
8981 * a HEAD with some data, or sending more than the advertised
8982 * content-length.
8983 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008984 if (unlikely(s->res.buf->i))
8985 s->res.buf->i = 0;
Willy Tarreau739cfba2010-01-25 23:11:14 +01008986
Christopher Fauletc0c672a2017-03-28 11:51:33 +02008987 /* Now we can realign the response buffer */
8988 buffer_realign(s->res.buf);
8989
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008990 s->req.rto = strm_fe(s)->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008991 s->req.wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008992
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008993 s->res.rto = TICK_ETERNITY;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02008994 s->res.wto = strm_fe(s)->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01008995
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008996 s->req.rex = TICK_ETERNITY;
8997 s->req.wex = TICK_ETERNITY;
8998 s->req.analyse_exp = TICK_ETERNITY;
8999 s->res.rex = TICK_ETERNITY;
9000 s->res.wex = TICK_ETERNITY;
9001 s->res.analyse_exp = TICK_ETERNITY;
Hongbo Longe39683c2017-03-10 18:41:51 +01009002 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01009003}
Willy Tarreau58f10d72006-12-04 02:26:12 +01009004
Sasha Pachev218f0642014-06-16 12:05:59 -06009005void free_http_res_rules(struct list *r)
9006{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009007 struct act_rule *tr, *pr;
Sasha Pachev218f0642014-06-16 12:05:59 -06009008
9009 list_for_each_entry_safe(pr, tr, r, list) {
9010 LIST_DEL(&pr->list);
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009011 regex_free(&pr->arg.hdr_add.re);
Sasha Pachev218f0642014-06-16 12:05:59 -06009012 free(pr);
9013 }
9014}
9015
9016void free_http_req_rules(struct list *r)
9017{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009018 struct act_rule *tr, *pr;
Willy Tarreauff011f22011-01-06 17:51:27 +01009019
9020 list_for_each_entry_safe(pr, tr, r, list) {
9021 LIST_DEL(&pr->list);
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009022 if (pr->action == ACT_HTTP_REQ_AUTH)
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009023 free(pr->arg.auth.realm);
Willy Tarreauff011f22011-01-06 17:51:27 +01009024
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009025 regex_free(&pr->arg.hdr_add.re);
Willy Tarreauff011f22011-01-06 17:51:27 +01009026 free(pr);
9027 }
9028}
9029
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009030/* parse an "http-request" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009031struct act_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreauff011f22011-01-06 17:51:27 +01009032{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009033 struct act_rule *rule;
Thierry FOURNIER36481b82015-08-19 09:01:53 +02009034 struct action_kw *custom = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009035 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009036 char *error;
Willy Tarreauff011f22011-01-06 17:51:27 +01009037
Vincent Bernat02779b62016-04-03 13:48:43 +02009038 rule = calloc(1, sizeof(*rule));
Willy Tarreauff011f22011-01-06 17:51:27 +01009039 if (!rule) {
9040 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009041 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009042 }
9043
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009044 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009045 rule->action = ACT_ACTION_ALLOW;
Willy Tarreauff011f22011-01-06 17:51:27 +01009046 cur_arg = 1;
Jarno Huuskonen800d1762017-03-06 14:56:36 +02009047 } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block") || !strcmp(args[0], "tarpit")) {
CJ Ess108b1dd2015-04-07 12:03:37 -04009048 int code;
9049 int hc;
9050
Jarno Huuskonen800d1762017-03-06 14:56:36 +02009051 if (!strcmp(args[0], "tarpit")) {
9052 rule->action = ACT_HTTP_REQ_TARPIT;
9053 rule->deny_status = HTTP_ERR_500;
9054 }
9055 else {
9056 rule->action = ACT_ACTION_DENY;
9057 rule->deny_status = HTTP_ERR_403;
9058 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009059 cur_arg = 1;
CJ Ess108b1dd2015-04-07 12:03:37 -04009060 if (strcmp(args[cur_arg], "deny_status") == 0) {
9061 cur_arg++;
9062 if (!args[cur_arg]) {
9063 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing status code.\n",
9064 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
9065 goto out_err;
9066 }
9067
9068 code = atol(args[cur_arg]);
9069 cur_arg++;
9070 for (hc = 0; hc < HTTP_ERR_SIZE; hc++) {
9071 if (http_err_codes[hc] == code) {
9072 rule->deny_status = hc;
9073 break;
9074 }
9075 }
9076
9077 if (hc >= HTTP_ERR_SIZE) {
Jarno Huuskonen800d1762017-03-06 14:56:36 +02009078 Warning("parsing [%s:%d] : status code %d not handled, using default code %d.\n",
9079 file, linenum, code, http_err_codes[rule->deny_status]);
CJ Ess108b1dd2015-04-07 12:03:37 -04009080 }
9081 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009082 } else if (!strcmp(args[0], "auth")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009083 rule->action = ACT_HTTP_REQ_AUTH;
Willy Tarreauff011f22011-01-06 17:51:27 +01009084 cur_arg = 1;
9085
9086 while(*args[cur_arg]) {
9087 if (!strcmp(args[cur_arg], "realm")) {
Willy Tarreau5c2e1982012-12-24 12:00:25 +01009088 rule->arg.auth.realm = strdup(args[cur_arg + 1]);
Willy Tarreauff011f22011-01-06 17:51:27 +01009089 cur_arg+=2;
9090 continue;
9091 } else
9092 break;
9093 }
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009094 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009095 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009096 cur_arg = 1;
9097
9098 if (!*args[cur_arg] ||
9099 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9100 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n",
9101 file, linenum, args[0]);
9102 goto out_err;
9103 }
9104 rule->arg.nice = atoi(args[cur_arg]);
9105 if (rule->arg.nice < -1024)
9106 rule->arg.nice = -1024;
9107 else if (rule->arg.nice > 1024)
9108 rule->arg.nice = 1024;
9109 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009110 } else if (!strcmp(args[0], "set-tos")) {
9111#ifdef IP_TOS
9112 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009113 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009114 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-request %s' expects exactly 1 argument (integer/hex value).\n",
9119 file, linenum, args[0]);
9120 goto out_err;
9121 }
9122
9123 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9124 if (err && *err != '\0') {
9125 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
9126 file, linenum, err, args[0]);
9127 goto out_err;
9128 }
9129 cur_arg++;
9130#else
9131 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9132 goto out_err;
9133#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009134 } else if (!strcmp(args[0], "set-mark")) {
9135#ifdef SO_MARK
9136 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009137 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02009138 cur_arg = 1;
9139
9140 if (!*args[cur_arg] ||
9141 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9142 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n",
9143 file, linenum, args[0]);
9144 goto out_err;
9145 }
9146
9147 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9148 if (err && *err != '\0') {
9149 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n",
9150 file, linenum, err, args[0]);
9151 goto out_err;
9152 }
9153 cur_arg++;
9154 global.last_checks |= LSTCHK_NETADM;
9155#else
9156 Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9157 goto out_err;
9158#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009159 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009160 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009161 cur_arg = 1;
9162
9163 if (!*args[cur_arg] ||
9164 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9165 bad_log_level:
9166 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n",
9167 file, linenum, args[0]);
9168 goto out_err;
9169 }
9170 if (strcmp(args[cur_arg], "silent") == 0)
9171 rule->arg.loglevel = -1;
9172 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
9173 goto bad_log_level;
9174 cur_arg++;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009175 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009176 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009177 cur_arg = 1;
9178
Willy Tarreau8d1c5162013-04-03 14:13:58 +02009179 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9180 (*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 +01009181 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9182 file, linenum, args[0]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009183 goto out_err;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009184 }
9185
9186 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9187 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9188 LIST_INIT(&rule->arg.hdr_add.fmt);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02009189
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009190 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009191 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009192 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009193 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9194 Alert("parsing [%s:%d]: 'http-request %s': %s.\n",
9195 file, linenum, args[0], error);
9196 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009197 goto out_err;
9198 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009199 free(proxy->conf.lfs_file);
9200 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9201 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreau20b0de52012-12-24 15:45:22 +01009202 cur_arg += 2;
Willy Tarreaub8543922014-06-17 18:58:26 +02009203 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009204 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06009205 cur_arg = 1;
9206
9207 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann92df3702014-06-24 11:10:00 +02009208 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
Sasha Pachev218f0642014-06-16 12:05:59 -06009209 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 3 arguments.\n",
9210 file, linenum, args[0]);
9211 goto out_err;
9212 }
9213
9214 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9215 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9216 LIST_INIT(&rule->arg.hdr_add.fmt);
9217
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009218 error = NULL;
9219 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
9220 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
9221 args[cur_arg + 1], error);
9222 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009223 goto out_err;
9224 }
9225
9226 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009227 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009228 if (!parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009229 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9230 Alert("parsing [%s:%d]: 'http-request %s': %s.\n",
9231 file, linenum, args[0], error);
9232 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009233 goto out_err;
9234 }
Sasha Pachev218f0642014-06-16 12:05:59 -06009235
9236 free(proxy->conf.lfs_file);
9237 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9238 proxy->conf.lfs_line = proxy->conf.args.line;
9239 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009240 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009241 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009242 cur_arg = 1;
9243
9244 if (!*args[cur_arg] ||
9245 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9246 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9247 file, linenum, args[0]);
9248 goto out_err;
9249 }
9250
9251 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9252 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9253
9254 proxy->conf.args.ctx = ARGC_HRQ;
9255 free(proxy->conf.lfs_file);
9256 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9257 proxy->conf.lfs_line = proxy->conf.args.line;
9258 cur_arg += 1;
Willy Tarreau09448f72014-06-25 18:12:15 +02009259 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
9260 args[0][9] == '\0' && args[0][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02009261 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau09448f72014-06-25 18:12:15 +02009262 struct sample_expr *expr;
9263 unsigned int where;
9264 char *err = NULL;
9265
9266 cur_arg = 1;
9267 proxy->conf.args.ctx = ARGC_TRK;
9268
9269 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9270 if (!expr) {
9271 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9272 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
9273 free(err);
9274 goto out_err;
9275 }
9276
9277 where = 0;
9278 if (proxy->cap & PR_CAP_FE)
9279 where |= SMP_VAL_FE_HRQ_HDR;
9280 if (proxy->cap & PR_CAP_BE)
9281 where |= SMP_VAL_BE_HRQ_HDR;
9282
9283 if (!(expr->fetch->val & where)) {
9284 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :"
9285 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9286 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9287 args[cur_arg-1], sample_src_names(expr->fetch->use));
9288 free(expr);
9289 goto out_err;
9290 }
9291
9292 if (strcmp(args[cur_arg], "table") == 0) {
9293 cur_arg++;
9294 if (!args[cur_arg]) {
9295 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing table name.\n",
9296 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
9297 free(expr);
9298 goto out_err;
9299 }
9300 /* we copy the table name for now, it will be resolved later */
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02009301 rule->arg.trk_ctr.table.n = strdup(args[cur_arg]);
Willy Tarreau09448f72014-06-25 18:12:15 +02009302 cur_arg++;
9303 }
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02009304 rule->arg.trk_ctr.expr = expr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009305 rule->action = ACT_ACTION_TRK_SC0 + args[0][8] - '0';
Willy Tarreau81499eb2012-12-27 12:19:02 +01009306 } else if (strcmp(args[0], "redirect") == 0) {
9307 struct redirect_rule *redir;
Willy Tarreau6d4890c2013-11-18 18:04:25 +01009308 char *errmsg = NULL;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009309
Willy Tarreaube4653b2015-05-28 15:26:58 +02009310 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 0)) == NULL) {
Willy Tarreau81499eb2012-12-27 12:19:02 +01009311 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9312 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9313 goto out_err;
9314 }
9315
9316 /* this redirect rule might already contain a parsed condition which
9317 * we'll pass to the http-request rule.
9318 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009319 rule->action = ACT_HTTP_REDIR;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009320 rule->arg.redir = redir;
9321 rule->cond = redir->cond;
9322 redir->cond = NULL;
9323 cur_arg = 2;
9324 return rule;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009325 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9326 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009327 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009328 /*
9329 * '+ 8' for 'add-acl('
9330 * '- 9' for 'add-acl(' + trailing ')'
9331 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009332 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009333
9334 cur_arg = 1;
9335
9336 if (!*args[cur_arg] ||
9337 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9338 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9339 file, linenum, args[0]);
9340 goto out_err;
9341 }
9342
9343 LIST_INIT(&rule->arg.map.key);
9344 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009345 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009346 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009347 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9348 Alert("parsing [%s:%d]: 'http-request %s': %s.\n",
9349 file, linenum, args[0], error);
9350 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009351 goto out_err;
9352 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009353 free(proxy->conf.lfs_file);
9354 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9355 proxy->conf.lfs_line = proxy->conf.args.line;
9356 cur_arg += 1;
9357 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9358 /* http-request del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009359 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009360 /*
9361 * '+ 8' for 'del-acl('
9362 * '- 9' for 'del-acl(' + trailing ')'
9363 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009364 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009365
9366 cur_arg = 1;
9367
9368 if (!*args[cur_arg] ||
9369 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9370 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9371 file, linenum, args[0]);
9372 goto out_err;
9373 }
9374
9375 LIST_INIT(&rule->arg.map.key);
9376 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009377 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009378 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009379 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9380 Alert("parsing [%s:%d]: 'http-request %s': %s.\n",
9381 file, linenum, args[0], error);
9382 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009383 goto out_err;
9384 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009385 free(proxy->conf.lfs_file);
9386 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9387 proxy->conf.lfs_line = proxy->conf.args.line;
9388 cur_arg += 1;
9389 } else if (strncmp(args[0], "del-map", 7) == 0) {
9390 /* http-request del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009391 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009392 /*
9393 * '+ 8' for 'del-map('
9394 * '- 9' for 'del-map(' + trailing ')'
9395 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009396 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009397
9398 cur_arg = 1;
9399
9400 if (!*args[cur_arg] ||
9401 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9402 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n",
9403 file, linenum, args[0]);
9404 goto out_err;
9405 }
9406
9407 LIST_INIT(&rule->arg.map.key);
9408 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009409 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009410 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009411 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9412 Alert("parsing [%s:%d]: 'http-request %s': %s.\n",
9413 file, linenum, args[0], error);
9414 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009415 goto out_err;
9416 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009417 free(proxy->conf.lfs_file);
9418 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9419 proxy->conf.lfs_line = proxy->conf.args.line;
9420 cur_arg += 1;
9421 } else if (strncmp(args[0], "set-map", 7) == 0) {
9422 /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009423 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009424 /*
9425 * '+ 8' for 'set-map('
9426 * '- 9' for 'set-map(' + trailing ')'
9427 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009428 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009429
9430 cur_arg = 1;
9431
9432 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9433 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9434 Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n",
9435 file, linenum, args[0]);
9436 goto out_err;
9437 }
9438
9439 LIST_INIT(&rule->arg.map.key);
9440 LIST_INIT(&rule->arg.map.value);
9441 proxy->conf.args.ctx = ARGC_HRQ;
9442
9443 /* key pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009444 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009445 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009446 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9447 Alert("parsing [%s:%d]: 'http-request %s' key: %s.\n",
9448 file, linenum, args[0], error);
9449 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009450 goto out_err;
9451 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009452
9453 /* value pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009454 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009455 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009456 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &error)) {
9457 Alert("parsing [%s:%d]: 'http-request %s' pattern: %s.\n",
9458 file, linenum, args[0], error);
9459 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009460 goto out_err;
9461 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009462 free(proxy->conf.lfs_file);
9463 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9464 proxy->conf.lfs_line = proxy->conf.args.line;
9465
9466 cur_arg += 2;
William Lallemand73025dd2014-04-24 14:38:37 +02009467 } else if (((custom = action_http_req_custom(args[0])) != NULL)) {
9468 char *errmsg = NULL;
9469 cur_arg = 1;
9470 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02009471 rule->from = ACT_F_HTTP_REQ;
Thierry FOURNIER85c6c972015-09-22 19:14:35 +02009472 rule->kw = custom;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009473 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) == ACT_RET_PRS_ERR) {
William Lallemand73025dd2014-04-24 14:38:37 +02009474 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n",
9475 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9476 free(errmsg);
9477 goto out_err;
9478 }
Willy Tarreauff011f22011-01-06 17:51:27 +01009479 } else {
Thierry FOURNIERab95e652015-10-02 08:24:51 +02009480 action_build_list(&http_req_keywords.list, &trash);
9481 Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', "
9482 "'tarpit', 'add-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', "
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009483 "'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', 'track-sc*'"
William Lallemand2e785f22016-05-25 01:48:42 +02009484 "%s%s, but got '%s'%s.\n",
Thierry FOURNIERab95e652015-10-02 08:24:51 +02009485 file, linenum, *trash.str ? ", " : "", trash.str, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreau81499eb2012-12-27 12:19:02 +01009486 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009487 }
9488
9489 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9490 struct acl_cond *cond;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009491 char *errmsg = NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009492
Willy Tarreaub7451bb2012-04-27 12:38:15 +02009493 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9494 Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n",
9495 file, linenum, args[0], errmsg);
9496 free(errmsg);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009497 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009498 }
9499 rule->cond = cond;
9500 }
9501 else if (*args[cur_arg]) {
9502 Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or"
9503 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9504 file, linenum, args[0], args[cur_arg]);
Willy Tarreau81499eb2012-12-27 12:19:02 +01009505 goto out_err;
Willy Tarreauff011f22011-01-06 17:51:27 +01009506 }
9507
9508 return rule;
Willy Tarreau81499eb2012-12-27 12:19:02 +01009509 out_err:
9510 free(rule);
9511 return NULL;
Willy Tarreauff011f22011-01-06 17:51:27 +01009512}
9513
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009514/* parse an "http-respose" rule */
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009515struct act_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009516{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02009517 struct act_rule *rule;
Thierry FOURNIER36481b82015-08-19 09:01:53 +02009518 struct action_kw *custom = NULL;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009519 int cur_arg;
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009520 char *error;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009521
9522 rule = calloc(1, sizeof(*rule));
9523 if (!rule) {
9524 Alert("parsing [%s:%d]: out of memory.\n", file, linenum);
9525 goto out_err;
9526 }
9527
9528 if (!strcmp(args[0], "allow")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009529 rule->action = ACT_ACTION_ALLOW;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009530 cur_arg = 1;
9531 } else if (!strcmp(args[0], "deny")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009532 rule->action = ACT_ACTION_DENY;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009533 cur_arg = 1;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009534 } else if (!strcmp(args[0], "set-nice")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009535 rule->action = ACT_HTTP_SET_NICE;
Willy Tarreauf4c43c12013-06-11 17:01:13 +02009536 cur_arg = 1;
9537
9538 if (!*args[cur_arg] ||
9539 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9540 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n",
9541 file, linenum, args[0]);
9542 goto out_err;
9543 }
9544 rule->arg.nice = atoi(args[cur_arg]);
9545 if (rule->arg.nice < -1024)
9546 rule->arg.nice = -1024;
9547 else if (rule->arg.nice > 1024)
9548 rule->arg.nice = 1024;
9549 cur_arg++;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009550 } else if (!strcmp(args[0], "set-tos")) {
9551#ifdef IP_TOS
9552 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009553 rule->action = ACT_HTTP_SET_TOS;
Willy Tarreau42cf39e2013-06-11 18:51:32 +02009554 cur_arg = 1;
9555
9556 if (!*args[cur_arg] ||
9557 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9558 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9559 file, linenum, args[0]);
9560 goto out_err;
9561 }
9562
9563 rule->arg.tos = strtol(args[cur_arg], &err, 0);
9564 if (err && *err != '\0') {
9565 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9566 file, linenum, err, args[0]);
9567 goto out_err;
9568 }
9569 cur_arg++;
9570#else
9571 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]);
9572 goto out_err;
9573#endif
Willy Tarreau51347ed2013-06-11 19:34:13 +02009574 } else if (!strcmp(args[0], "set-mark")) {
9575#ifdef SO_MARK
9576 char *err;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009577 rule->action = ACT_HTTP_SET_MARK;
Willy Tarreau51347ed2013-06-11 19:34:13 +02009578 cur_arg = 1;
9579
9580 if (!*args[cur_arg] ||
9581 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9582 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n",
9583 file, linenum, args[0]);
9584 goto out_err;
9585 }
9586
9587 rule->arg.mark = strtoul(args[cur_arg], &err, 0);
9588 if (err && *err != '\0') {
9589 Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n",
9590 file, linenum, err, args[0]);
9591 goto out_err;
9592 }
9593 cur_arg++;
9594 global.last_checks |= LSTCHK_NETADM;
9595#else
9596 Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]);
9597 goto out_err;
9598#endif
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009599 } else if (!strcmp(args[0], "set-log-level")) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009600 rule->action = ACT_HTTP_SET_LOGL;
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009601 cur_arg = 1;
9602
9603 if (!*args[cur_arg] ||
9604 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
9605 bad_log_level:
9606 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n",
9607 file, linenum, args[0]);
9608 goto out_err;
9609 }
9610 if (strcmp(args[cur_arg], "silent") == 0)
9611 rule->arg.loglevel = -1;
Ruoshan Huangdd016782016-06-15 22:16:03 +08009612 else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0)
Willy Tarreau9a355ec2013-06-11 17:45:46 +02009613 goto bad_log_level;
9614 cur_arg++;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009615 } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009616 rule->action = *args[0] == 'a' ? ACT_HTTP_ADD_HDR : ACT_HTTP_SET_HDR;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009617 cur_arg = 1;
9618
9619 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9620 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9621 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9622 file, linenum, args[0]);
9623 goto out_err;
9624 }
9625
9626 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9627 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9628 LIST_INIT(&rule->arg.hdr_add.fmt);
9629
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +01009630 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009631 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009632 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009633 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9634 Alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9635 file, linenum, args[0], error);
9636 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009637 goto out_err;
9638 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +01009639 free(proxy->conf.lfs_file);
9640 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9641 proxy->conf.lfs_line = proxy->conf.args.line;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009642 cur_arg += 2;
Sasha Pachev218f0642014-06-16 12:05:59 -06009643 } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009644 rule->action = args[0][8] == 'h' ? ACT_HTTP_REPLACE_HDR : ACT_HTTP_REPLACE_VAL;
Sasha Pachev218f0642014-06-16 12:05:59 -06009645 cur_arg = 1;
9646
9647 if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] ||
Baptiste Assmann12cb00b2014-08-08 17:29:06 +02009648 (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) {
9649 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 3 arguments.\n",
Sasha Pachev218f0642014-06-16 12:05:59 -06009650 file, linenum, args[0]);
9651 goto out_err;
9652 }
9653
9654 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9655 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9656 LIST_INIT(&rule->arg.hdr_add.fmt);
9657
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02009658 error = NULL;
9659 if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) {
9660 Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum,
9661 args[cur_arg + 1], error);
9662 free(error);
Sasha Pachev218f0642014-06-16 12:05:59 -06009663 goto out_err;
9664 }
9665
9666 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009667 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009668 if (!parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009669 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9670 Alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9671 file, linenum, args[0], error);
9672 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009673 goto out_err;
9674 }
Sasha Pachev218f0642014-06-16 12:05:59 -06009675
9676 free(proxy->conf.lfs_file);
9677 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9678 proxy->conf.lfs_line = proxy->conf.args.line;
9679 cur_arg += 3;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009680 } else if (strcmp(args[0], "del-header") == 0) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009681 rule->action = ACT_HTTP_DEL_HDR;
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009682 cur_arg = 1;
9683
9684 if (!*args[cur_arg] ||
9685 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9686 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9687 file, linenum, args[0]);
9688 goto out_err;
9689 }
9690
9691 rule->arg.hdr_add.name = strdup(args[cur_arg]);
9692 rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name);
9693
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009694 proxy->conf.args.ctx = ARGC_HRS;
9695 free(proxy->conf.lfs_file);
9696 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9697 proxy->conf.lfs_line = proxy->conf.args.line;
9698 cur_arg += 1;
9699 } else if (strncmp(args[0], "add-acl", 7) == 0) {
9700 /* http-request add-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009701 rule->action = ACT_HTTP_ADD_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009702 /*
9703 * '+ 8' for 'add-acl('
9704 * '- 9' for 'add-acl(' + trailing ')'
9705 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009706 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009707
9708 cur_arg = 1;
9709
9710 if (!*args[cur_arg] ||
9711 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9712 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9713 file, linenum, args[0]);
9714 goto out_err;
9715 }
9716
9717 LIST_INIT(&rule->arg.map.key);
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009718 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009719 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009720 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009721 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9722 Alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9723 file, linenum, args[0], error);
9724 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009725 goto out_err;
9726 }
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009727 free(proxy->conf.lfs_file);
9728 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9729 proxy->conf.lfs_line = proxy->conf.args.line;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009730
Thierry FOURNIERdad3d1d2014-04-22 18:07:25 +02009731 cur_arg += 1;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009732 } else if (strncmp(args[0], "del-acl", 7) == 0) {
9733 /* http-response del-acl(<reference (acl name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009734 rule->action = ACT_HTTP_DEL_ACL;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009735 /*
9736 * '+ 8' for 'del-acl('
9737 * '- 9' for 'del-acl(' + trailing ')'
9738 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009739 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009740
9741 cur_arg = 1;
9742
9743 if (!*args[cur_arg] ||
9744 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9745 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9746 file, linenum, args[0]);
9747 goto out_err;
9748 }
9749
9750 LIST_INIT(&rule->arg.map.key);
9751 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009752 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009753 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009754 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9755 Alert("parsing [%s:%d]: 'http-response %s': %s.\n",
9756 file, linenum, args[0], error);
9757 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009758 goto out_err;
9759 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009760 free(proxy->conf.lfs_file);
9761 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9762 proxy->conf.lfs_line = proxy->conf.args.line;
9763 cur_arg += 1;
9764 } else if (strncmp(args[0], "del-map", 7) == 0) {
9765 /* http-response del-map(<reference (map name)>) <key pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009766 rule->action = ACT_HTTP_DEL_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009767 /*
9768 * '+ 8' for 'del-map('
9769 * '- 9' for 'del-map(' + trailing ')'
9770 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009771 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009772
9773 cur_arg = 1;
9774
9775 if (!*args[cur_arg] ||
9776 (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) {
9777 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n",
9778 file, linenum, args[0]);
9779 goto out_err;
9780 }
9781
9782 LIST_INIT(&rule->arg.map.key);
9783 proxy->conf.args.ctx = ARGC_HRS;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009784 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009785 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009786 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9787 Alert("parsing [%s:%d]: 'http-response %s' %s.\n",
9788 file, linenum, args[0], error);
9789 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009790 goto out_err;
9791 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009792 free(proxy->conf.lfs_file);
9793 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9794 proxy->conf.lfs_line = proxy->conf.args.line;
9795 cur_arg += 1;
9796 } else if (strncmp(args[0], "set-map", 7) == 0) {
9797 /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009798 rule->action = ACT_HTTP_SET_MAP;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009799 /*
9800 * '+ 8' for 'set-map('
9801 * '- 9' for 'set-map(' + trailing ')'
9802 */
Willy Tarreau6c09c2c2014-04-25 21:38:08 +02009803 rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009804
9805 cur_arg = 1;
9806
9807 if (!*args[cur_arg] || !*args[cur_arg+1] ||
9808 (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) {
9809 Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n",
9810 file, linenum, args[0]);
9811 goto out_err;
9812 }
9813
9814 LIST_INIT(&rule->arg.map.key);
9815 LIST_INIT(&rule->arg.map.value);
9816
9817 proxy->conf.args.ctx = ARGC_HRS;
9818
9819 /* key pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009820 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009821 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009822 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9823 Alert("parsing [%s:%d]: 'http-response %s' name: %s.\n",
9824 file, linenum, args[0], error);
9825 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009826 goto out_err;
9827 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009828
9829 /* value pattern */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009830 error = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009831 if (!parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01009832 (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, &error)) {
9833 Alert("parsing [%s:%d]: 'http-response %s' value: %s.\n",
9834 file, linenum, args[0], error);
9835 free(error);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01009836 goto out_err;
9837 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02009838
9839 free(proxy->conf.lfs_file);
9840 proxy->conf.lfs_file = strdup(proxy->conf.args.file);
9841 proxy->conf.lfs_line = proxy->conf.args.line;
9842
9843 cur_arg += 2;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009844 } else if (strcmp(args[0], "redirect") == 0) {
9845 struct redirect_rule *redir;
9846 char *errmsg = NULL;
9847
9848 if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1, 1)) == NULL) {
9849 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9850 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9851 goto out_err;
9852 }
9853
9854 /* this redirect rule might already contain a parsed condition which
9855 * we'll pass to the http-request rule.
9856 */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02009857 rule->action = ACT_HTTP_REDIR;
Willy Tarreau51d861a2015-05-22 17:30:48 +02009858 rule->arg.redir = redir;
9859 rule->cond = redir->cond;
9860 redir->cond = NULL;
9861 cur_arg = 2;
9862 return rule;
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009863 } else if (strncmp(args[0], "track-sc", 8) == 0 &&
9864 args[0][9] == '\0' && args[0][8] >= '0' &&
9865 args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
9866 struct sample_expr *expr;
9867 unsigned int where;
9868 char *err = NULL;
9869
9870 cur_arg = 1;
9871 proxy->conf.args.ctx = ARGC_TRK;
9872
9873 expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args);
9874 if (!expr) {
9875 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9876 file, linenum, proxy_type_str(proxy), proxy->id, args[0], err);
9877 free(err);
9878 goto out_err;
9879 }
9880
9881 where = 0;
9882 if (proxy->cap & PR_CAP_FE)
9883 where |= SMP_VAL_FE_HRS_HDR;
9884 if (proxy->cap & PR_CAP_BE)
9885 where |= SMP_VAL_BE_HRS_HDR;
9886
9887 if (!(expr->fetch->val & where)) {
9888 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule :"
9889 " fetch method '%s' extracts information from '%s', none of which is available here.\n",
9890 file, linenum, proxy_type_str(proxy), proxy->id, args[0],
9891 args[cur_arg-1], sample_src_names(expr->fetch->use));
9892 free(expr);
9893 goto out_err;
9894 }
9895
9896 if (strcmp(args[cur_arg], "table") == 0) {
9897 cur_arg++;
9898 if (!args[cur_arg]) {
9899 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : missing table name.\n",
9900 file, linenum, proxy_type_str(proxy), proxy->id, args[0]);
9901 free(expr);
9902 goto out_err;
9903 }
9904 /* we copy the table name for now, it will be resolved later */
9905 rule->arg.trk_ctr.table.n = strdup(args[cur_arg]);
9906 cur_arg++;
9907 }
9908 rule->arg.trk_ctr.expr = expr;
9909 rule->action = ACT_ACTION_TRK_SC0 + args[0][8] - '0';
William Lallemand73025dd2014-04-24 14:38:37 +02009910 } else if (((custom = action_http_res_custom(args[0])) != NULL)) {
9911 char *errmsg = NULL;
9912 cur_arg = 1;
9913 /* try in the module list */
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02009914 rule->from = ACT_F_HTTP_RES;
Thierry FOURNIER85c6c972015-09-22 19:14:35 +02009915 rule->kw = custom;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009916 if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) == ACT_RET_PRS_ERR) {
William Lallemand73025dd2014-04-24 14:38:37 +02009917 Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n",
9918 file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg);
9919 free(errmsg);
9920 goto out_err;
9921 }
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009922 } else {
Thierry FOURNIERab95e652015-10-02 08:24:51 +02009923 action_build_list(&http_res_keywords.list, &trash);
9924 Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', "
9925 "'add-header', 'del-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', "
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08009926 "'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', 'track-sc*'"
William Lallemand2e785f22016-05-25 01:48:42 +02009927 "%s%s, but got '%s'%s.\n",
Thierry FOURNIERab95e652015-10-02 08:24:51 +02009928 file, linenum, *trash.str ? ", " : "", trash.str, args[0], *args[0] ? "" : " (missing argument)");
Willy Tarreaue365c0b2013-06-11 16:06:12 +02009929 goto out_err;
9930 }
9931
9932 if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) {
9933 struct acl_cond *cond;
9934 char *errmsg = NULL;
9935
9936 if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) {
9937 Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n",
9938 file, linenum, args[0], errmsg);
9939 free(errmsg);
9940 goto out_err;
9941 }
9942 rule->cond = cond;
9943 }
9944 else if (*args[cur_arg]) {
9945 Alert("parsing [%s:%d]: 'http-response %s' expects"
9946 " either 'if' or 'unless' followed by a condition but found '%s'.\n",
9947 file, linenum, args[0], args[cur_arg]);
9948 goto out_err;
9949 }
9950
9951 return rule;
9952 out_err:
9953 free(rule);
9954 return NULL;
9955}
9956
Willy Tarreau4baae242012-12-27 12:00:31 +01009957/* Parses a redirect rule. Returns the redirect rule on success or NULL on error,
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01009958 * with <err> filled with the error message. If <use_fmt> is not null, builds a
Willy Tarreaube4653b2015-05-28 15:26:58 +02009959 * dynamic log-format rule instead of a static string. Parameter <dir> indicates
9960 * the direction of the rule, and equals 0 for request, non-zero for responses.
Willy Tarreau4baae242012-12-27 12:00:31 +01009961 */
9962struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
Willy Tarreaube4653b2015-05-28 15:26:58 +02009963 const char **args, char **errmsg, int use_fmt, int dir)
Willy Tarreau4baae242012-12-27 12:00:31 +01009964{
9965 struct redirect_rule *rule;
9966 int cur_arg;
9967 int type = REDIRECT_TYPE_NONE;
9968 int code = 302;
9969 const char *destination = NULL;
9970 const char *cookie = NULL;
9971 int cookie_set = 0;
9972 unsigned int flags = REDIRECT_FLAG_NONE;
9973 struct acl_cond *cond = NULL;
9974
9975 cur_arg = 0;
9976 while (*(args[cur_arg])) {
9977 if (strcmp(args[cur_arg], "location") == 0) {
9978 if (!*args[cur_arg + 1])
9979 goto missing_arg;
9980
9981 type = REDIRECT_TYPE_LOCATION;
9982 cur_arg++;
9983 destination = args[cur_arg];
9984 }
9985 else if (strcmp(args[cur_arg], "prefix") == 0) {
9986 if (!*args[cur_arg + 1])
9987 goto missing_arg;
Willy Tarreau4baae242012-12-27 12:00:31 +01009988 type = REDIRECT_TYPE_PREFIX;
9989 cur_arg++;
9990 destination = args[cur_arg];
9991 }
9992 else if (strcmp(args[cur_arg], "scheme") == 0) {
9993 if (!*args[cur_arg + 1])
9994 goto missing_arg;
9995
9996 type = REDIRECT_TYPE_SCHEME;
9997 cur_arg++;
9998 destination = args[cur_arg];
9999 }
10000 else if (strcmp(args[cur_arg], "set-cookie") == 0) {
10001 if (!*args[cur_arg + 1])
10002 goto missing_arg;
10003
10004 cur_arg++;
10005 cookie = args[cur_arg];
10006 cookie_set = 1;
10007 }
10008 else if (strcmp(args[cur_arg], "clear-cookie") == 0) {
10009 if (!*args[cur_arg + 1])
10010 goto missing_arg;
10011
10012 cur_arg++;
10013 cookie = args[cur_arg];
10014 cookie_set = 0;
10015 }
10016 else if (strcmp(args[cur_arg], "code") == 0) {
10017 if (!*args[cur_arg + 1])
10018 goto missing_arg;
10019
10020 cur_arg++;
10021 code = atol(args[cur_arg]);
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040010022 if (code < 301 || code > 308 || (code > 303 && code < 307)) {
Willy Tarreau4baae242012-12-27 12:00:31 +010010023 memprintf(errmsg,
Yves Lafon3e8d1ae2013-03-11 11:06:05 -040010024 "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)",
Willy Tarreau4baae242012-12-27 12:00:31 +010010025 args[cur_arg - 1], args[cur_arg]);
10026 return NULL;
10027 }
10028 }
10029 else if (!strcmp(args[cur_arg],"drop-query")) {
10030 flags |= REDIRECT_FLAG_DROP_QS;
10031 }
10032 else if (!strcmp(args[cur_arg],"append-slash")) {
10033 flags |= REDIRECT_FLAG_APPEND_SLASH;
10034 }
10035 else if (strcmp(args[cur_arg], "if") == 0 ||
10036 strcmp(args[cur_arg], "unless") == 0) {
10037 cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg);
10038 if (!cond) {
10039 memprintf(errmsg, "error in condition: %s", *errmsg);
10040 return NULL;
10041 }
10042 break;
10043 }
10044 else {
10045 memprintf(errmsg,
10046 "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')",
10047 args[cur_arg]);
10048 return NULL;
10049 }
10050 cur_arg++;
10051 }
10052
10053 if (type == REDIRECT_TYPE_NONE) {
10054 memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')");
10055 return NULL;
10056 }
10057
Willy Tarreaube4653b2015-05-28 15:26:58 +020010058 if (dir && type != REDIRECT_TYPE_LOCATION) {
10059 memprintf(errmsg, "response only supports redirect type 'location'");
10060 return NULL;
10061 }
10062
Vincent Bernat3c2f2f22016-04-03 13:48:42 +020010063 rule = calloc(1, sizeof(*rule));
Willy Tarreau4baae242012-12-27 12:00:31 +010010064 rule->cond = cond;
Willy Tarreau60e08382013-12-03 00:48:45 +010010065 LIST_INIT(&rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +010010066
10067 if (!use_fmt) {
10068 /* old-style static redirect rule */
10069 rule->rdr_str = strdup(destination);
10070 rule->rdr_len = strlen(destination);
10071 }
10072 else {
10073 /* log-format based redirect rule */
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +010010074
10075 /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case,
10076 * if prefix == "/", we don't want to add anything, otherwise it
10077 * makes it hard for the user to configure a self-redirection.
10078 */
Godbachd9722032014-12-18 15:44:58 +080010079 curproxy->conf.args.ctx = ARGC_RDR;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +010010080 if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +010010081 if (!parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP,
10082 dir ? (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRS_HDR : SMP_VAL_BE_HRS_HDR
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010010083 : (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR,
10084 errmsg)) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +010010085 return NULL;
10086 }
Willy Tarreau59ad1a22014-01-29 14:39:58 +010010087 free(curproxy->conf.lfs_file);
10088 curproxy->conf.lfs_file = strdup(curproxy->conf.args.file);
10089 curproxy->conf.lfs_line = curproxy->conf.args.line;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +010010090 }
10091 }
10092
Willy Tarreau4baae242012-12-27 12:00:31 +010010093 if (cookie) {
10094 /* depending on cookie_set, either we want to set the cookie, or to clear it.
10095 * a clear consists in appending "; path=/; Max-Age=0;" at the end.
10096 */
10097 rule->cookie_len = strlen(cookie);
10098 if (cookie_set) {
10099 rule->cookie_str = malloc(rule->cookie_len + 10);
10100 memcpy(rule->cookie_str, cookie, rule->cookie_len);
10101 memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10);
10102 rule->cookie_len += 9;
10103 } else {
10104 rule->cookie_str = malloc(rule->cookie_len + 21);
10105 memcpy(rule->cookie_str, cookie, rule->cookie_len);
10106 memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21);
10107 rule->cookie_len += 20;
10108 }
10109 }
10110 rule->type = type;
10111 rule->code = code;
10112 rule->flags = flags;
10113 LIST_INIT(&rule->list);
10114 return rule;
10115
10116 missing_arg:
10117 memprintf(errmsg, "missing argument for '%s'", args[cur_arg]);
10118 return NULL;
10119}
10120
Willy Tarreau8797c062007-05-07 00:55:35 +020010121/************************************************************************/
10122/* The code below is dedicated to ACL parsing and matching */
10123/************************************************************************/
10124
10125
Willy Tarreau14174bc2012-04-16 14:34:04 +020010126/* This function ensures that the prerequisites for an L7 fetch are ready,
10127 * which means that a request or response is ready. If some data is missing,
10128 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Willy Tarreau24e32d82012-04-23 23:55:44 +020010129 * to extract data from L7. If <req_vol> is non-null during a request prefetch,
10130 * another test is made to ensure the required information is not gone.
Willy Tarreau14174bc2012-04-16 14:34:04 +020010131 *
10132 * The function returns :
Willy Tarreau506d0502013-07-06 13:29:24 +020010133 * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
10134 * decide whether or not an HTTP message is present ;
10135 * 0 if the requested data cannot be fetched or if it is certain that
10136 * we'll never have any HTTP message there ;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010137 * 1 if an HTTP message is ready
10138 */
James Rosewell91a41cb2015-09-18 17:11:16 +010010139int smp_prefetch_http(struct proxy *px, struct stream *s, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +020010140 const struct arg *args, struct sample *smp, int req_vol)
Willy Tarreau14174bc2012-04-16 14:34:04 +020010141{
Willy Tarreau192252e2015-04-04 01:47:55 +020010142 struct http_txn *txn;
10143 struct http_msg *msg;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010144
Willy Tarreaube508f12016-03-10 11:47:01 +010010145 /* Note: it is possible that <s> is NULL when called before stream
10146 * initialization (eg: tcp-request connection), so this function is the
10147 * one responsible for guarding against this case for all HTTP users.
Willy Tarreau14174bc2012-04-16 14:34:04 +020010148 */
Willy Tarreau192252e2015-04-04 01:47:55 +020010149 if (!s)
10150 return 0;
Willy Tarreaube508f12016-03-10 11:47:01 +010010151
Thierry FOURNIERed08d6a2015-09-24 08:40:18 +020010152 if (!s->txn) {
10153 if (unlikely(!http_alloc_txn(s)))
10154 return 0; /* not enough memory */
10155 http_init_txn(s);
10156 }
Willy Tarreau192252e2015-04-04 01:47:55 +020010157 txn = s->txn;
Willy Tarreau192252e2015-04-04 01:47:55 +020010158 msg = &txn->req;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010159
10160 /* Check for a dependency on a request */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010161 smp->data.type = SMP_T_BOOL;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010162
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020010163 if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreauaae75e32013-03-29 12:31:49 +010010164 /* If the buffer does not leave enough free space at the end,
10165 * we must first realign it.
10166 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010010167 if (s->req.buf->p > s->req.buf->data &&
10168 s->req.buf->i + s->req.buf->p > s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)
10169 buffer_slow_realign(s->req.buf);
Willy Tarreauaae75e32013-03-29 12:31:49 +010010170
Willy Tarreau14174bc2012-04-16 14:34:04 +020010171 if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) {
Willy Tarreau472b1ee2013-10-14 22:41:30 +020010172 if (msg->msg_state == HTTP_MSG_ERROR)
Willy Tarreau506d0502013-07-06 13:29:24 +020010173 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010174
10175 /* Try to decode HTTP request */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010010176 if (likely(msg->next < s->req.buf->i))
Willy Tarreau14174bc2012-04-16 14:34:04 +020010177 http_msg_analyzer(msg, &txn->hdr_idx);
10178
10179 /* Still no valid request ? */
10180 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +020010181 if ((msg->msg_state == HTTP_MSG_ERROR) ||
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010010182 buffer_full(s->req.buf, global.tune.maxrewrite)) {
Willy Tarreau506d0502013-07-06 13:29:24 +020010183 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010184 }
10185 /* wait for final state */
Willy Tarreau37406352012-04-23 16:16:37 +020010186 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010187 return 0;
10188 }
10189
10190 /* OK we just got a valid HTTP request. We have some minor
10191 * preparation to perform so that further checks can rely
10192 * on HTTP tests.
10193 */
Willy Tarreauaae75e32013-03-29 12:31:49 +010010194
10195 /* If the request was parsed but was too large, we must absolutely
10196 * return an error so that it is not processed. At the moment this
10197 * cannot happen, but if the parsers are to change in the future,
10198 * we want this check to be maintained.
10199 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010010200 if (unlikely(s->req.buf->i + s->req.buf->p >
10201 s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +010010202 msg->err_state = msg->msg_state;
Willy Tarreauaae75e32013-03-29 12:31:49 +010010203 msg->msg_state = HTTP_MSG_ERROR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010204 smp->data.u.sint = 1;
Willy Tarreauaae75e32013-03-29 12:31:49 +010010205 return 1;
10206 }
10207
Willy Tarreau9b28e032012-10-12 23:49:43 +020010208 txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l);
Willy Tarreau14174bc2012-04-16 14:34:04 +020010209 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +020010210 s->flags |= SF_REDIRECTABLE;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010211
Willy Tarreau506d0502013-07-06 13:29:24 +020010212 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
10213 return 0;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010214 }
10215
Willy Tarreau506d0502013-07-06 13:29:24 +020010216 if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) {
Willy Tarreau14174bc2012-04-16 14:34:04 +020010217 return 0; /* data might have moved and indexes changed */
Willy Tarreau506d0502013-07-06 13:29:24 +020010218 }
Willy Tarreau14174bc2012-04-16 14:34:04 +020010219
10220 /* otherwise everything's ready for the request */
10221 }
Willy Tarreau24e32d82012-04-23 23:55:44 +020010222 else {
10223 /* Check for a dependency on a response */
Willy Tarreau506d0502013-07-06 13:29:24 +020010224 if (txn->rsp.msg_state < HTTP_MSG_BODY) {
10225 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010226 return 0;
Willy Tarreau506d0502013-07-06 13:29:24 +020010227 }
Willy Tarreau14174bc2012-04-16 14:34:04 +020010228 }
10229
10230 /* everything's OK */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010231 smp->data.u.sint = 1;
Willy Tarreau14174bc2012-04-16 14:34:04 +020010232 return 1;
10233}
Willy Tarreau8797c062007-05-07 00:55:35 +020010234
Willy Tarreau8797c062007-05-07 00:55:35 +020010235/* 1. Check on METHOD
10236 * We use the pre-parsed method if it is known, and store its number as an
10237 * integer. If it is unknown, we use the pointer and the length.
10238 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +020010239static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err)
Willy Tarreau8797c062007-05-07 00:55:35 +020010240{
10241 int len, meth;
10242
Thierry FOURNIER580c32c2014-01-24 10:58:12 +010010243 len = strlen(text);
10244 meth = find_http_meth(text, len);
Willy Tarreau8797c062007-05-07 00:55:35 +020010245
10246 pattern->val.i = meth;
10247 if (meth == HTTP_METH_OTHER) {
Willy Tarreau912c1192014-08-29 15:15:50 +020010248 pattern->ptr.str = (char *)text;
Willy Tarreau8797c062007-05-07 00:55:35 +020010249 pattern->len = len;
10250 }
Thierry FOURNIERd4373142013-12-17 01:10:10 +010010251 else {
10252 pattern->ptr.str = NULL;
10253 pattern->len = 0;
Thierry FOURNIERd4373142013-12-17 01:10:10 +010010254 }
Willy Tarreau8797c062007-05-07 00:55:35 +020010255 return 1;
10256}
10257
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010258/* This function fetches the method of current HTTP request and stores
10259 * it in the global pattern struct as a chunk. There are two possibilities :
10260 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
10261 * in <len> and <ptr> is NULL ;
10262 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
10263 * <len> to its length.
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010010264 * This is intended to be used with pat_match_meth() only.
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010265 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010266static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010267smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010268{
10269 int meth;
Willy Tarreaube508f12016-03-10 11:47:01 +010010270 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010271
Willy Tarreau24e32d82012-04-23 23:55:44 +020010272 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010273
Willy Tarreaube508f12016-03-10 11:47:01 +010010274 txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010275 meth = txn->meth;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010276 smp->data.type = SMP_T_METH;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010277 smp->data.u.meth.meth = meth;
Willy Tarreau8797c062007-05-07 00:55:35 +020010278 if (meth == HTTP_METH_OTHER) {
Willy Tarreauc11416f2007-06-17 16:58:38 +020010279 if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE)
10280 /* ensure the indexes are not affected */
10281 return 0;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010282 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010283 smp->data.u.meth.str.len = txn->req.sl.rq.m_l;
10284 smp->data.u.meth.str.str = txn->req.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +020010285 }
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010286 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010287 return 1;
10288}
10289
Willy Tarreau8e5e9552011-12-16 15:38:49 +010010290/* See above how the method is stored in the global pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010291static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill)
Willy Tarreau8797c062007-05-07 00:55:35 +020010292{
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010293 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010294 struct pattern_list *lst;
10295 struct pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010296
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010297 list_for_each_entry(lst, &expr->patterns, list) {
10298 pattern = &lst->pat;
Willy Tarreau8797c062007-05-07 00:55:35 +020010299
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010300 /* well-known method */
10301 if (pattern->val.i != HTTP_METH_OTHER) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010302 if (smp->data.u.meth.meth == pattern->val.i)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010303 return pattern;
10304 else
10305 continue;
10306 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +020010307
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010308 /* Other method, we must compare the strings */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010309 if (pattern->len != smp->data.u.meth.str.len)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010310 continue;
10311
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +020010312 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010313 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0) ||
10314 (!icase && strncmp(pattern->ptr.str, smp->data.u.meth.str.str, smp->data.u.meth.str.len) == 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +010010315 return pattern;
10316 }
10317 return NULL;
Willy Tarreau8797c062007-05-07 00:55:35 +020010318}
10319
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010320static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010321smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010322{
Willy Tarreaube508f12016-03-10 11:47:01 +010010323 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010324 char *ptr;
10325 int len;
10326
Willy Tarreauc0239e02012-04-16 14:42:55 +020010327 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010328
Willy Tarreaube508f12016-03-10 11:47:01 +010010329 txn = smp->strm->txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010330 len = txn->req.sl.rq.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010331 ptr = txn->req.chn->buf->p + txn->req.sl.rq.v;
Willy Tarreau8797c062007-05-07 00:55:35 +020010332
10333 while ((len-- > 0) && (*ptr++ != '/'));
10334 if (len <= 0)
10335 return 0;
10336
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010337 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010338 smp->data.u.str.str = ptr;
10339 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +020010340
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010341 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010342 return 1;
10343}
10344
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010345static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010346smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010347{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010348 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010349 char *ptr;
10350 int len;
10351
Willy Tarreauc0239e02012-04-16 14:42:55 +020010352 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010353
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010354 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +010010355 if (txn->rsp.msg_state < HTTP_MSG_BODY)
10356 return 0;
10357
Willy Tarreau8797c062007-05-07 00:55:35 +020010358 len = txn->rsp.sl.st.v_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010359 ptr = txn->rsp.chn->buf->p;
Willy Tarreau8797c062007-05-07 00:55:35 +020010360
10361 while ((len-- > 0) && (*ptr++ != '/'));
10362 if (len <= 0)
10363 return 0;
10364
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010365 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010366 smp->data.u.str.str = ptr;
10367 smp->data.u.str.len = len;
Willy Tarreau8797c062007-05-07 00:55:35 +020010368
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010369 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010370 return 1;
10371}
10372
10373/* 3. Check on Status Code. We manipulate integers here. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010374static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010375smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010376{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010377 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010378 char *ptr;
10379 int len;
10380
Willy Tarreauc0239e02012-04-16 14:42:55 +020010381 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010382
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010383 txn = smp->strm->txn;
Willy Tarreauf26b2522012-12-14 08:33:14 +010010384 if (txn->rsp.msg_state < HTTP_MSG_BODY)
10385 return 0;
10386
Willy Tarreau8797c062007-05-07 00:55:35 +020010387 len = txn->rsp.sl.st.c_l;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010388 ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c;
Willy Tarreau8797c062007-05-07 00:55:35 +020010389
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010390 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010391 smp->data.u.sint = __strl2ui(ptr, len);
Willy Tarreau37406352012-04-23 16:16:37 +020010392 smp->flags = SMP_F_VOL_1ST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010393 return 1;
10394}
10395
Thierry Fournierf4011dd2016-03-29 17:23:51 +020010396static int
10397smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private)
10398{
10399 if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id))
10400 return 0;
10401
10402 if (!smp->strm->unique_id) {
10403 if ((smp->strm->unique_id = pool_alloc2(pool2_uniqueid)) == NULL)
10404 return 0;
10405 smp->strm->unique_id[0] = '\0';
10406 }
10407 smp->data.u.str.len = build_logline(smp->strm, smp->strm->unique_id,
10408 UNIQUEID_LEN, &smp->sess->fe->format_unique_id);
10409
10410 smp->data.type = SMP_T_STR;
10411 smp->data.u.str.str = smp->strm->unique_id;
10412 smp->flags = SMP_F_CONST;
10413 return 1;
10414}
10415
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010416/* returns the longest available part of the body. This requires that the body
10417 * has been waited for using http-buffer-request.
10418 */
10419static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010420smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010421{
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010422 struct http_msg *msg;
10423 unsigned long len;
10424 unsigned long block1;
10425 char *body;
10426 struct chunk *temp;
10427
10428 CHECK_HTTP_MESSAGE_FIRST();
10429
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010430 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +010010431 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010432 else
Willy Tarreaube508f12016-03-10 11:47:01 +010010433 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010434
10435 len = http_body_bytes(msg);
10436 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
10437
10438 block1 = len;
10439 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
10440 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
10441
10442 if (block1 == len) {
10443 /* buffer is not wrapped (or empty) */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010444 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010445 smp->data.u.str.str = body;
10446 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010447 smp->flags = SMP_F_VOL_TEST | SMP_F_CONST;
10448 }
10449 else {
10450 /* buffer is wrapped, we need to defragment it */
10451 temp = get_trash_chunk();
10452 memcpy(temp->str, body, block1);
10453 memcpy(temp->str + block1, msg->chn->buf->data, len - block1);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010454 smp->data.type = SMP_T_BIN;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010455 smp->data.u.str.str = temp->str;
10456 smp->data.u.str.len = len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010457 smp->flags = SMP_F_VOL_TEST;
10458 }
10459 return 1;
10460}
10461
10462
10463/* returns the available length of the body. This requires that the body
10464 * has been waited for using http-buffer-request.
10465 */
10466static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010467smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010468{
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010469 struct http_msg *msg;
10470
10471 CHECK_HTTP_MESSAGE_FIRST();
10472
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010473 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +010010474 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010475 else
Willy Tarreaube508f12016-03-10 11:47:01 +010010476 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010477
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010478 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010479 smp->data.u.sint = http_body_bytes(msg);
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010480
10481 smp->flags = SMP_F_VOL_TEST;
10482 return 1;
10483}
10484
10485
10486/* returns the advertised length of the body, or the advertised size of the
10487 * chunks available in the buffer. This requires that the body has been waited
10488 * for using http-buffer-request.
10489 */
10490static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010491smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010492{
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010493 struct http_msg *msg;
10494
10495 CHECK_HTTP_MESSAGE_FIRST();
10496
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010497 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +010010498 msg = &smp->strm->txn->req;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010499 else
Willy Tarreaube508f12016-03-10 11:47:01 +010010500 msg = &smp->strm->txn->rsp;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010501
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010502 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010503 smp->data.u.sint = msg->body_len;
Willy Tarreaua5910cc2015-05-02 00:46:08 +020010504
10505 smp->flags = SMP_F_VOL_TEST;
10506 return 1;
10507}
10508
10509
Willy Tarreau8797c062007-05-07 00:55:35 +020010510/* 4. Check on URL/URI. A pointer to the URI is stored. */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020010511static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010512smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +020010513{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010514 struct http_txn *txn;
Willy Tarreau8797c062007-05-07 00:55:35 +020010515
Willy Tarreauc0239e02012-04-16 14:42:55 +020010516 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010517
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010518 txn = smp->strm->txn;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010519 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010520 smp->data.u.str.len = txn->req.sl.rq.u_l;
10521 smp->data.u.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010522 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau8797c062007-05-07 00:55:35 +020010523 return 1;
10524}
10525
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010526static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010527smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010528{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010529 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010530 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010531
Willy Tarreauc0239e02012-04-16 14:42:55 +020010532 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010533
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010534 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010535 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 +020010536 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
Willy Tarreauf4362b32011-12-16 17:49:52 +010010537 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010538
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010539 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010540 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
Willy Tarreau37406352012-04-23 16:16:37 +020010541 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010542 return 1;
10543}
10544
10545static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010546smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010547{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010548 struct http_txn *txn;
Willy Tarreau4c804ec2013-09-30 14:37:14 +020010549 struct sockaddr_storage addr;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010550
Willy Tarreauc0239e02012-04-16 14:42:55 +020010551 CHECK_HTTP_MESSAGE_FIRST();
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010552
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010553 txn = smp->strm->txn;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010010554 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 +020010555 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
10556 return 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010557
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010558 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010559 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
Willy Tarreau21e5b0e2012-04-23 19:25:44 +020010560 smp->flags = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010561 return 1;
10562}
10563
Willy Tarreau185b5c42012-04-26 15:11:51 +020010564/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10565 * Accepts an optional argument of type string containing the header field name,
10566 * and an optional argument of type signed or unsigned integer to request an
10567 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010568 * headers are considered from the first one. It does not stop on commas and
10569 * returns full lines instead (useful for User-Agent or Date for example).
10570 */
10571static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010572smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010573{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010574 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010575 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010576 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010577 int occ = 0;
10578 const char *name_str = NULL;
10579 int name_len = 0;
10580
10581 if (!ctx) {
10582 /* first call */
10583 ctx = &static_hdr_ctx;
10584 ctx->idx = 0;
10585 smp->ctx.a[0] = ctx;
10586 }
10587
10588 if (args) {
10589 if (args[0].type != ARGT_STR)
10590 return 0;
10591 name_str = args[0].data.str.str;
10592 name_len = args[0].data.str.len;
10593
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010594 if (args[1].type == ARGT_SINT)
10595 occ = args[1].data.sint;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010596 }
10597
10598 CHECK_HTTP_MESSAGE_FIRST();
10599
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010600 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010601 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010602
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010603 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
10604 /* search for header from the beginning */
10605 ctx->idx = 0;
10606
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010607 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010608 /* no explicit occurrence and single fetch => last header by default */
10609 occ = -1;
10610
10611 if (!occ)
10612 /* prepare to report multiple occurrences for ACL fetches */
10613 smp->flags |= SMP_F_NOT_LAST;
10614
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010615 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010616 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010617 if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010618 return 1;
10619
10620 smp->flags &= ~SMP_F_NOT_LAST;
10621 return 0;
10622}
10623
10624/* 6. Check on HTTP header count. The number of occurrences is returned.
10625 * Accepts exactly 1 argument of type string. It does not stop on commas and
10626 * returns full lines instead (useful for User-Agent or Date for example).
10627 */
10628static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010629smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010630{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010631 struct hdr_idx *idx;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010632 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010633 const struct http_msg *msg;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010634 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010635 const char *name = NULL;
10636 int len = 0;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010637
Willy Tarreau601a4d12015-04-01 19:16:09 +020010638 if (args && args->type == ARGT_STR) {
10639 name = args->data.str.str;
10640 len = args->data.str.len;
10641 }
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010642
10643 CHECK_HTTP_MESSAGE_FIRST();
10644
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010645 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010646 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010647
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010648 ctx.idx = 0;
10649 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010650 while (http_find_full_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010651 cnt++;
10652
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010653 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010654 smp->data.u.sint = cnt;
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010655 smp->flags = SMP_F_VOL_HDR;
10656 return 1;
10657}
10658
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010659static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010660smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010661{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010662 struct hdr_idx *idx;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010663 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010664 const struct http_msg *msg;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010665 struct chunk *temp;
10666 char del = ',';
10667
10668 if (args && args->type == ARGT_STR)
10669 del = *args[0].data.str.str;
10670
10671 CHECK_HTTP_MESSAGE_FIRST();
10672
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010673 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010674 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010675
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010676 temp = get_trash_chunk();
10677
10678 ctx.idx = 0;
10679 while (http_find_next_header(msg->chn->buf->p, idx, &ctx)) {
10680 if (temp->len)
10681 temp->str[temp->len++] = del;
10682 memcpy(temp->str + temp->len, ctx.line, ctx.del);
10683 temp->len += ctx.del;
10684 }
10685
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010686 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010687 smp->data.u.str.str = temp->str;
10688 smp->data.u.str.len = temp->len;
Willy Tarreaueb27ec72015-02-20 13:55:29 +010010689 smp->flags = SMP_F_VOL_HDR;
10690 return 1;
10691}
10692
Willy Tarreau04ff9f12013-06-10 18:39:42 +020010693/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
10694 * Accepts an optional argument of type string containing the header field name,
10695 * and an optional argument of type signed or unsigned integer to request an
10696 * explicit occurrence of the header. Note that in the event of a missing name,
Willy Tarreau185b5c42012-04-26 15:11:51 +020010697 * headers are considered from the first one.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010698 */
Willy Tarreau33a7e692007-06-10 19:45:56 +020010699static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010700smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010701{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010702 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010703 struct hdr_ctx *ctx = smp->ctx.a[0];
Willy Tarreau15e91e12015-04-04 00:52:09 +020010704 const struct http_msg *msg;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010705 int occ = 0;
10706 const char *name_str = NULL;
10707 int name_len = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010708
Willy Tarreaua890d072013-04-02 12:01:06 +020010709 if (!ctx) {
10710 /* first call */
10711 ctx = &static_hdr_ctx;
10712 ctx->idx = 0;
Willy Tarreauffb6f082013-04-02 23:16:53 +020010713 smp->ctx.a[0] = ctx;
Willy Tarreaua890d072013-04-02 12:01:06 +020010714 }
10715
Willy Tarreau185b5c42012-04-26 15:11:51 +020010716 if (args) {
10717 if (args[0].type != ARGT_STR)
10718 return 0;
10719 name_str = args[0].data.str.str;
10720 name_len = args[0].data.str.len;
10721
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020010722 if (args[1].type == ARGT_SINT)
10723 occ = args[1].data.sint;
Willy Tarreau185b5c42012-04-26 15:11:51 +020010724 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010725
Willy Tarreaue333ec92012-04-16 16:26:40 +020010726 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau33a7e692007-06-10 19:45:56 +020010727
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010728 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010729 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010730
Willy Tarreau185b5c42012-04-26 15:11:51 +020010731 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010732 /* search for header from the beginning */
10733 ctx->idx = 0;
10734
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010735 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau185b5c42012-04-26 15:11:51 +020010736 /* no explicit occurrence and single fetch => last header by default */
10737 occ = -1;
10738
10739 if (!occ)
10740 /* prepare to report multiple occurrences for ACL fetches */
Willy Tarreau37406352012-04-23 16:16:37 +020010741 smp->flags |= SMP_F_NOT_LAST;
Willy Tarreau664092c2011-12-16 19:11:42 +010010742
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010743 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010744 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010745 if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.u.str.str, &smp->data.u.str.len))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010746 return 1;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010747
Willy Tarreau37406352012-04-23 16:16:37 +020010748 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010749 return 0;
10750}
10751
Willy Tarreauc11416f2007-06-17 16:58:38 +020010752/* 6. Check on HTTP header count. The number of occurrences is returned.
Willy Tarreau34db1082012-04-19 17:16:54 +020010753 * Accepts exactly 1 argument of type string.
Willy Tarreauc11416f2007-06-17 16:58:38 +020010754 */
10755static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010756smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010757{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010758 struct hdr_idx *idx;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010759 struct hdr_ctx ctx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010760 const struct http_msg *msg;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010761 int cnt;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010762 const char *name = NULL;
10763 int len = 0;
Willy Tarreau8797c062007-05-07 00:55:35 +020010764
Willy Tarreau601a4d12015-04-01 19:16:09 +020010765 if (args && args->type == ARGT_STR) {
10766 name = args->data.str.str;
10767 len = args->data.str.len;
10768 }
Willy Tarreau34db1082012-04-19 17:16:54 +020010769
Willy Tarreaue333ec92012-04-16 16:26:40 +020010770 CHECK_HTTP_MESSAGE_FIRST();
10771
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010772 idx = &smp->strm->txn->hdr_idx;
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010773 msg = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &smp->strm->txn->req : &smp->strm->txn->rsp;
Willy Tarreau15e91e12015-04-04 00:52:09 +020010774
Willy Tarreau33a7e692007-06-10 19:45:56 +020010775 ctx.idx = 0;
10776 cnt = 0;
Willy Tarreau601a4d12015-04-01 19:16:09 +020010777 while (http_find_header2(name, len, msg->chn->buf->p, idx, &ctx))
Willy Tarreau33a7e692007-06-10 19:45:56 +020010778 cnt++;
10779
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010780 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010781 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020010782 smp->flags = SMP_F_VOL_HDR;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010783 return 1;
10784}
10785
Willy Tarreau185b5c42012-04-26 15:11:51 +020010786/* Fetch an HTTP header's integer value. The integer value is returned. It
10787 * takes a mandatory argument of type string and an optional one of type int
10788 * to designate a specific occurrence. It returns an unsigned integer, which
10789 * may or may not be appropriate for everything.
Willy Tarreau33a7e692007-06-10 19:45:56 +020010790 */
10791static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010792smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau33a7e692007-06-10 19:45:56 +020010793{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010794 int ret = smp_fetch_hdr(args, smp, kw, private);
Willy Tarreaue333ec92012-04-16 16:26:40 +020010795
Willy Tarreauf853c462012-04-23 18:53:56 +020010796 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010797 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010798 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreauf853c462012-04-23 18:53:56 +020010799 }
Willy Tarreau33a7e692007-06-10 19:45:56 +020010800
Willy Tarreaud53e2422012-04-16 17:21:11 +020010801 return ret;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010802}
10803
Cyril Bonté69fa9922012-10-25 00:01:06 +020010804/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
10805 * and an optional one of type int to designate a specific occurrence.
10806 * It returns an IPv4 or IPv6 address.
Willy Tarreau106f9792009-09-19 07:54:16 +020010807 */
10808static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010809smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau106f9792009-09-19 07:54:16 +020010810{
Willy Tarreaud53e2422012-04-16 17:21:11 +020010811 int ret;
Willy Tarreaue333ec92012-04-16 16:26:40 +020010812
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010813 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010814 if (url2ipv4((char *)smp->data.u.str.str, &smp->data.u.ipv4)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010815 smp->data.type = SMP_T_IPV4;
Willy Tarreaud53e2422012-04-16 17:21:11 +020010816 break;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010817 } else {
Willy Tarreau47ca5452012-12-23 20:22:19 +010010818 struct chunk *temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010819 if (smp->data.u.str.len < temp->size - 1) {
10820 memcpy(temp->str, smp->data.u.str.str, smp->data.u.str.len);
10821 temp->str[smp->data.u.str.len] = '\0';
10822 if (inet_pton(AF_INET6, temp->str, &smp->data.u.ipv6)) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010823 smp->data.type = SMP_T_IPV6;
Cyril Bonté69fa9922012-10-25 00:01:06 +020010824 break;
10825 }
10826 }
10827 }
10828
Willy Tarreaud53e2422012-04-16 17:21:11 +020010829 /* if the header doesn't match an IP address, fetch next one */
Willy Tarreau185b5c42012-04-26 15:11:51 +020010830 if (!(smp->flags & SMP_F_NOT_LAST))
10831 return 0;
Willy Tarreau106f9792009-09-19 07:54:16 +020010832 }
Willy Tarreaud53e2422012-04-16 17:21:11 +020010833 return ret;
Willy Tarreau106f9792009-09-19 07:54:16 +020010834}
10835
Willy Tarreau737b0c12007-06-10 21:28:46 +020010836/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
10837 * the first '/' after the possible hostname, and ends before the possible '?'.
10838 */
10839static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010840smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010841{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010842 struct http_txn *txn;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010843 char *ptr, *end;
Willy Tarreau33a7e692007-06-10 19:45:56 +020010844
Willy Tarreauc0239e02012-04-16 14:42:55 +020010845 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreauc11416f2007-06-17 16:58:38 +020010846
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010847 txn = smp->strm->txn;
Willy Tarreau9b28e032012-10-12 23:49:43 +020010848 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreau21d2af32008-02-14 20:25:24 +010010849 ptr = http_get_path(txn);
10850 if (!ptr)
Willy Tarreau737b0c12007-06-10 21:28:46 +020010851 return 0;
10852
10853 /* OK, we got the '/' ! */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010854 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010855 smp->data.u.str.str = ptr;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010856
10857 while (ptr < end && *ptr != '?')
10858 ptr++;
10859
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010860 smp->data.u.str.len = ptr - smp->data.u.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010010861 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau737b0c12007-06-10 21:28:46 +020010862 return 1;
10863}
10864
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010865/* This produces a concatenation of the first occurrence of the Host header
10866 * followed by the path component if it begins with a slash ('/'). This means
10867 * that '*' will not be added, resulting in exactly the first Host entry.
10868 * If no Host header is found, then the path is returned as-is. The returned
10869 * value is stored in the trash so it does not need to be marked constant.
Willy Tarreaub169eba2013-12-16 15:14:43 +010010870 * The returned sample is of type string.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010871 */
10872static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010873smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010874{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010875 struct http_txn *txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010876 char *ptr, *end, *beg;
10877 struct hdr_ctx ctx;
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010878 struct chunk *temp;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010879
10880 CHECK_HTTP_MESSAGE_FIRST();
10881
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010882 txn = smp->strm->txn;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010883 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010884 if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen)
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010885 return smp_fetch_path(args, smp, kw, private);
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010886
10887 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
Willy Tarreau3caf2af2014-06-24 17:27:02 +020010888 temp = get_trash_chunk();
10889 memcpy(temp->str, ctx.line + ctx.val, ctx.vlen);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010890 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010891 smp->data.u.str.str = temp->str;
10892 smp->data.u.str.len = ctx.vlen;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010893
10894 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010895 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010896 beg = http_get_path(txn);
10897 if (!beg)
10898 beg = end;
10899
10900 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10901
10902 if (beg < ptr && *beg == '/') {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010903 memcpy(smp->data.u.str.str + smp->data.u.str.len, beg, ptr - beg);
10904 smp->data.u.str.len += ptr - beg;
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020010905 }
10906
10907 smp->flags = SMP_F_VOL_1ST;
10908 return 1;
10909}
10910
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010911/* This produces a 32-bit hash of the concatenation of the first occurrence of
10912 * the Host header followed by the path component if it begins with a slash ('/').
10913 * This means that '*' will not be added, resulting in exactly the first Host
10914 * entry. If no Host header is found, then the path is used. The resulting value
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010915 * is hashed using the path hash followed by a full avalanche hash and provides a
10916 * 32-bit integer value. This fetch is useful for tracking per-path activity on
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010917 * high-traffic sites without having to store whole paths.
10918 */
Thierry FOURNIER055b9d52014-07-15 16:11:07 +020010919int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010920smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010921{
Willy Tarreau15e91e12015-04-04 00:52:09 +020010922 struct http_txn *txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010923 struct hdr_ctx ctx;
10924 unsigned int hash = 0;
10925 char *ptr, *beg, *end;
10926 int len;
10927
10928 CHECK_HTTP_MESSAGE_FIRST();
10929
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010930 txn = smp->strm->txn;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010931 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020010932 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010933 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
10934 ptr = ctx.line + ctx.val;
10935 len = ctx.vlen;
10936 while (len--)
10937 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
10938 }
10939
10940 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020010941 end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010942 beg = http_get_path(txn);
10943 if (!beg)
10944 beg = end;
10945
10946 for (ptr = beg; ptr < end && *ptr != '?'; ptr++);
10947
10948 if (beg < ptr && *beg == '/') {
10949 while (beg < ptr)
10950 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
10951 }
10952 hash = full_hash(hash);
10953
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010954 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010955 smp->data.u.sint = hash;
Willy Tarreauab1f7b72012-12-09 13:38:54 +010010956 smp->flags = SMP_F_VOL_1ST;
10957 return 1;
10958}
10959
Willy Tarreau4a550602012-12-09 14:53:32 +010010960/* This concatenates the source address with the 32-bit hash of the Host and
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000010961 * path as returned by smp_fetch_base32(). The idea is to have per-source and
10962 * per-path counters. The result is a binary block from 8 to 20 bytes depending
10963 * on the source address length. The path hash is stored before the address so
Willy Tarreau4a550602012-12-09 14:53:32 +010010964 * that in environments where IPv6 is insignificant, truncating the output to
10965 * 8 bytes would still work.
10966 */
10967static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010968smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a550602012-12-09 14:53:32 +010010969{
Willy Tarreau47ca5452012-12-23 20:22:19 +010010970 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020010971 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010972
10973 if (!cli_conn)
10974 return 0;
Willy Tarreau4a550602012-12-09 14:53:32 +010010975
Thierry FOURNIER0786d052015-05-11 15:42:45 +020010976 if (!smp_fetch_base32(args, smp, kw, private))
Willy Tarreau4a550602012-12-09 14:53:32 +010010977 return 0;
10978
Willy Tarreau47ca5452012-12-23 20:22:19 +010010979 temp = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010980 *(unsigned int *)temp->str = htonl(smp->data.u.sint);
Willy Tarreau5ad6e1d2014-07-15 21:34:06 +020010981 temp->len += sizeof(unsigned int);
Willy Tarreau4a550602012-12-09 14:53:32 +010010982
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010983 switch (cli_conn->addr.from.ss_family) {
Willy Tarreau4a550602012-12-09 14:53:32 +010010984 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010985 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Willy Tarreau4a550602012-12-09 14:53:32 +010010986 temp->len += 4;
10987 break;
10988 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020010989 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Willy Tarreau4a550602012-12-09 14:53:32 +010010990 temp->len += 16;
10991 break;
10992 default:
10993 return 0;
10994 }
10995
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020010996 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020010997 smp->data.type = SMP_T_BIN;
Willy Tarreau4a550602012-12-09 14:53:32 +010010998 return 1;
10999}
11000
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011001/* Extracts the query string, which comes after the question mark '?'. If no
11002 * question mark is found, nothing is returned. Otherwise it returns a sample
11003 * of type string carrying the whole query string.
11004 */
11005static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011006smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011007{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011008 struct http_txn *txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011009 char *ptr, *end;
11010
11011 CHECK_HTTP_MESSAGE_FIRST();
11012
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011013 txn = smp->strm->txn;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011014 ptr = txn->req.chn->buf->p + txn->req.sl.rq.u;
11015 end = ptr + txn->req.sl.rq.u_l;
11016
11017 /* look up the '?' */
11018 do {
11019 if (ptr == end)
11020 return 0;
11021 } while (*ptr++ != '?');
11022
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011023 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011024 smp->data.u.str.str = ptr;
11025 smp->data.u.str.len = end - ptr;
Willy Tarreau49ad95c2015-01-19 15:06:26 +010011026 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
11027 return 1;
11028}
11029
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011030static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011031smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011032{
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011033 /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged
11034 * as a layer7 ACL, which involves automatic allocation of hdr_idx.
11035 */
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011036
Willy Tarreau24e32d82012-04-23 23:55:44 +020011037 CHECK_HTTP_MESSAGE_FIRST_PERM();
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011038
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011039 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011040 smp->data.u.sint = 1;
Willy Tarreau2492d5b2009-07-11 00:06:00 +020011041 return 1;
11042}
11043
Willy Tarreau7f18e522010-10-22 20:04:13 +020011044/* return a valid test if the current request is the first one on the connection */
11045static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011046smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7f18e522010-10-22 20:04:13 +020011047{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011048 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011049 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
Willy Tarreau7f18e522010-10-22 20:04:13 +020011050 return 1;
11051}
11052
Willy Tarreau34db1082012-04-19 17:16:54 +020011053/* Accepts exactly 1 argument of type userlist */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010011054static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011055smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010011056{
11057
Willy Tarreau24e32d82012-04-23 23:55:44 +020011058 if (!args || args->type != ARGT_USR)
Willy Tarreau34db1082012-04-19 17:16:54 +020011059 return 0;
11060
Willy Tarreauc0239e02012-04-16 14:42:55 +020011061 CHECK_HTTP_MESSAGE_FIRST();
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010011062
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011063 if (!get_http_auth(smp->strm))
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010011064 return 0;
11065
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011066 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011067 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011068 smp->strm->txn->auth.pass);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010011069 return 1;
11070}
Willy Tarreau8797c062007-05-07 00:55:35 +020011071
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011072/* Accepts exactly 1 argument of type userlist */
11073static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011074smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011075{
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011076 if (!args || args->type != ARGT_USR)
11077 return 0;
11078
11079 CHECK_HTTP_MESSAGE_FIRST();
11080
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011081 if (!get_http_auth(smp->strm))
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011082 return 0;
11083
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011084 /* if the user does not belong to the userlist or has a wrong password,
11085 * report that it unconditionally does not match. Otherwise we return
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010011086 * a string containing the username.
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011087 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011088 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
11089 smp->strm->txn->auth.pass))
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +010011090 return 0;
11091
11092 /* pat_match_auth() will need the user list */
11093 smp->ctx.a[0] = args->data.usr;
11094
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011095 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011096 smp->flags = SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011097 smp->data.u.str.str = smp->strm->txn->auth.user;
11098 smp->data.u.str.len = strlen(smp->strm->txn->auth.user);
Willy Tarreau4a3fd4c2012-05-10 23:18:26 +020011099
11100 return 1;
11101}
11102
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011103/* Try to find the next occurrence of a cookie name in a cookie header value.
11104 * The lookup begins at <hdr>. The pointer and size of the next occurrence of
11105 * the cookie value is returned into *value and *value_l, and the function
11106 * returns a pointer to the next pointer to search from if the value was found.
11107 * Otherwise if the cookie was not found, NULL is returned and neither value
11108 * nor value_l are touched. The input <hdr> string should first point to the
11109 * header's value, and the <hdr_end> pointer must point to the first character
11110 * not part of the value. <list> must be non-zero if value may represent a list
11111 * of values (cookie headers). This makes it faster to abort parsing when no
11112 * list is expected.
11113 */
David Carlier4686f792015-09-25 14:10:50 +010011114char *
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011115extract_cookie_value(char *hdr, const char *hdr_end,
11116 char *cookie_name, size_t cookie_name_l, int list,
Willy Tarreau3fb818c2012-04-11 17:21:08 +020011117 char **value, int *value_l)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011118{
11119 char *equal, *att_end, *att_beg, *val_beg, *val_end;
11120 char *next;
11121
11122 /* we search at least a cookie name followed by an equal, and more
11123 * generally something like this :
11124 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
11125 */
11126 for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) {
11127 /* Iterate through all cookies on this line */
11128
Willy Tarreau2235b262016-11-05 15:50:20 +010011129 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011130 att_beg++;
11131
11132 /* find att_end : this is the first character after the last non
11133 * space before the equal. It may be equal to hdr_end.
11134 */
11135 equal = att_end = att_beg;
11136
11137 while (equal < hdr_end) {
11138 if (*equal == '=' || *equal == ';' || (list && *equal == ','))
11139 break;
Willy Tarreau2235b262016-11-05 15:50:20 +010011140 if (HTTP_IS_SPHT(*equal++))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011141 continue;
11142 att_end = equal;
11143 }
11144
11145 /* here, <equal> points to '=', a delimitor or the end. <att_end>
11146 * is between <att_beg> and <equal>, both may be identical.
11147 */
11148
11149 /* look for end of cookie if there is an equal sign */
11150 if (equal < hdr_end && *equal == '=') {
11151 /* look for the beginning of the value */
11152 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +010011153 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011154 val_beg++;
11155
11156 /* find the end of the value, respecting quotes */
11157 next = find_cookie_value_end(val_beg, hdr_end);
11158
11159 /* make val_end point to the first white space or delimitor after the value */
11160 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +010011161 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011162 val_end--;
11163 } else {
11164 val_beg = val_end = next = equal;
11165 }
11166
11167 /* We have nothing to do with attributes beginning with '$'. However,
11168 * they will automatically be removed if a header before them is removed,
11169 * since they're supposed to be linked together.
11170 */
11171 if (*att_beg == '$')
11172 continue;
11173
11174 /* Ignore cookies with no equal sign */
11175 if (equal == next)
11176 continue;
11177
11178 /* Now we have the cookie name between att_beg and att_end, and
11179 * its value between val_beg and val_end.
11180 */
11181
11182 if (att_end - att_beg == cookie_name_l &&
11183 memcmp(att_beg, cookie_name, cookie_name_l) == 0) {
11184 /* let's return this value and indicate where to go on from */
11185 *value = val_beg;
11186 *value_l = val_end - val_beg;
11187 return next + 1;
11188 }
11189
11190 /* Set-Cookie headers only have the name in the first attr=value part */
11191 if (!list)
11192 break;
11193 }
11194
11195 return NULL;
11196}
11197
William Lallemanda43ba4e2014-01-28 18:14:25 +010011198/* Fetch a captured HTTP request header. The index is the position of
11199 * the "capture" option in the configuration file
11200 */
11201static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011202smp_fetch_capture_header_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011203{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011204 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011205 int idx;
11206
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011207 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011208 return 0;
11209
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011210 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010011211
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011212 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011213 return 0;
11214
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011215 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011216 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011217 smp->data.u.str.str = smp->strm->req_cap[idx];
11218 smp->data.u.str.len = strlen(smp->strm->req_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011219
11220 return 1;
11221}
11222
11223/* Fetch a captured HTTP response header. The index is the position of
11224 * the "capture" option in the configuration file
11225 */
11226static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011227smp_fetch_capture_header_res(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011228{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011229 struct proxy *fe = strm_fe(smp->strm);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011230 int idx;
11231
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011232 if (!args || args->type != ARGT_SINT)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011233 return 0;
11234
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020011235 idx = args->data.sint;
William Lallemanda43ba4e2014-01-28 18:14:25 +010011236
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011237 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
William Lallemanda43ba4e2014-01-28 18:14:25 +010011238 return 0;
11239
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011240 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011241 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011242 smp->data.u.str.str = smp->strm->res_cap[idx];
11243 smp->data.u.str.len = strlen(smp->strm->res_cap[idx]);
William Lallemanda43ba4e2014-01-28 18:14:25 +010011244
11245 return 1;
11246}
11247
William Lallemand65ad6e12014-01-31 15:08:02 +010011248/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
11249static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011250smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010011251{
11252 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011253 struct http_txn *txn = smp->strm->txn;
William Lallemand96a77852014-02-05 00:30:02 +010011254 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010011255
Willy Tarreau15e91e12015-04-04 00:52:09 +020011256 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010011257 return 0;
11258
William Lallemand96a77852014-02-05 00:30:02 +010011259 ptr = txn->uri;
William Lallemand65ad6e12014-01-31 15:08:02 +010011260
William Lallemand96a77852014-02-05 00:30:02 +010011261 while (*ptr != ' ' && *ptr != '\0') /* find first space */
11262 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010011263
William Lallemand96a77852014-02-05 00:30:02 +010011264 temp = get_trash_chunk();
11265 temp->str = txn->uri;
11266 temp->len = ptr - txn->uri;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011267 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011268 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011269 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010011270
11271 return 1;
11272
11273}
11274
11275/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
11276static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011277smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
William Lallemand65ad6e12014-01-31 15:08:02 +010011278{
11279 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011280 struct http_txn *txn = smp->strm->txn;
William Lallemand65ad6e12014-01-31 15:08:02 +010011281 char *ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +010011282
Willy Tarreau15e91e12015-04-04 00:52:09 +020011283 if (!txn || !txn->uri)
William Lallemand65ad6e12014-01-31 15:08:02 +010011284 return 0;
William Lallemand96a77852014-02-05 00:30:02 +010011285
William Lallemand65ad6e12014-01-31 15:08:02 +010011286 ptr = txn->uri;
11287
11288 while (*ptr != ' ' && *ptr != '\0') /* find first space */
11289 ptr++;
William Lallemand96a77852014-02-05 00:30:02 +010011290
William Lallemand65ad6e12014-01-31 15:08:02 +010011291 if (!*ptr)
11292 return 0;
11293
11294 ptr++; /* skip the space */
11295
11296 temp = get_trash_chunk();
William Lallemand96a77852014-02-05 00:30:02 +010011297 ptr = temp->str = http_get_path_from_string(ptr);
William Lallemand65ad6e12014-01-31 15:08:02 +010011298 if (!ptr)
11299 return 0;
11300 while (*ptr != ' ' && *ptr != '\0') /* find space after URI */
11301 ptr++;
William Lallemand65ad6e12014-01-31 15:08:02 +010011302
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011303 smp->data.u.str = *temp;
11304 smp->data.u.str.len = ptr - temp->str;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011305 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011306 smp->flags = SMP_F_CONST;
William Lallemand65ad6e12014-01-31 15:08:02 +010011307
11308 return 1;
11309}
11310
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011311/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
11312 * as a string (either "HTTP/1.0" or "HTTP/1.1").
11313 */
11314static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011315smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011316{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011317 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011318
Willy Tarreau15e91e12015-04-04 00:52:09 +020011319 if (!txn || txn->req.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011320 return 0;
11321
11322 if (txn->req.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011323 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011324 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011325 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011326
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011327 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011328 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011329 smp->flags = SMP_F_CONST;
11330 return 1;
11331
11332}
11333
11334/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
11335 * as a string (either "HTTP/1.0" or "HTTP/1.1").
11336 */
11337static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011338smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011339{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011340 struct http_txn *txn = smp->strm->txn;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011341
Willy Tarreau15e91e12015-04-04 00:52:09 +020011342 if (!txn || txn->rsp.msg_state < HTTP_MSG_HDR_FIRST)
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011343 return 0;
11344
11345 if (txn->rsp.flags & HTTP_MSGF_VER_11)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011346 smp->data.u.str.str = "HTTP/1.1";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011347 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011348 smp->data.u.str.str = "HTTP/1.0";
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011349
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011350 smp->data.u.str.len = 8;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011351 smp->data.type = SMP_T_STR;
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020011352 smp->flags = SMP_F_CONST;
11353 return 1;
11354
11355}
11356
William Lallemand65ad6e12014-01-31 15:08:02 +010011357
Willy Tarreaue333ec92012-04-16 16:26:40 +020011358/* Iterate over all cookies present in a message. The context is stored in
Willy Tarreau37406352012-04-23 16:16:37 +020011359 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
Willy Tarreaua890d072013-04-02 12:01:06 +020011360 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
Willy Tarreaue333ec92012-04-16 16:26:40 +020011361 * the direction, multiple cookies may be parsed on the same line or not.
Willy Tarreau24e32d82012-04-23 23:55:44 +020011362 * The cookie name is in args and the name length in args->data.str.len.
Willy Tarreau28376d62012-04-26 21:26:10 +020011363 * Accepts exactly 1 argument of type string. If the input options indicate
11364 * that no iterating is desired, then only last value is fetched if any.
William Lallemand07c8b242014-05-02 17:11:07 +020011365 * The returned sample is of type CSTR. Can be used to parse cookies in other
11366 * files.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011367 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011368int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011369{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011370 struct http_txn *txn;
11371 struct hdr_idx *idx;
Willy Tarreaua890d072013-04-02 12:01:06 +020011372 struct hdr_ctx *ctx = smp->ctx.a[2];
Willy Tarreaue333ec92012-04-16 16:26:40 +020011373 const struct http_msg *msg;
11374 const char *hdr_name;
11375 int hdr_name_len;
11376 char *sol;
Willy Tarreau28376d62012-04-26 21:26:10 +020011377 int occ = 0;
11378 int found = 0;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011379
Willy Tarreau24e32d82012-04-23 23:55:44 +020011380 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020011381 return 0;
11382
Willy Tarreaua890d072013-04-02 12:01:06 +020011383 if (!ctx) {
11384 /* first call */
11385 ctx = &static_hdr_ctx;
11386 ctx->idx = 0;
11387 smp->ctx.a[2] = ctx;
11388 }
11389
Willy Tarreaue333ec92012-04-16 16:26:40 +020011390 CHECK_HTTP_MESSAGE_FIRST();
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011391
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011392 txn = smp->strm->txn;
11393 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020011394
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011395 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020011396 msg = &txn->req;
11397 hdr_name = "Cookie";
11398 hdr_name_len = 6;
11399 } else {
11400 msg = &txn->rsp;
11401 hdr_name = "Set-Cookie";
11402 hdr_name_len = 10;
11403 }
11404
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011405 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
Willy Tarreau28376d62012-04-26 21:26:10 +020011406 /* no explicit occurrence and single fetch => last cookie by default */
11407 occ = -1;
11408
11409 /* OK so basically here, either we want only one value and it's the
11410 * last one, or we want to iterate over all of them and we fetch the
11411 * next one.
11412 */
11413
Willy Tarreau9b28e032012-10-12 23:49:43 +020011414 sol = msg->chn->buf->p;
Willy Tarreau37406352012-04-23 16:16:37 +020011415 if (!(smp->flags & SMP_F_NOT_LAST)) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011416 /* search for the header from the beginning, we must first initialize
11417 * the search parameters.
11418 */
Willy Tarreau37406352012-04-23 16:16:37 +020011419 smp->ctx.a[0] = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011420 ctx->idx = 0;
11421 }
11422
Willy Tarreau28376d62012-04-26 21:26:10 +020011423 smp->flags |= SMP_F_VOL_HDR;
11424
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011425 while (1) {
Willy Tarreau37406352012-04-23 16:16:37 +020011426 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
11427 if (!smp->ctx.a[0]) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011428 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx))
11429 goto out;
11430
Willy Tarreau24e32d82012-04-23 23:55:44 +020011431 if (ctx->vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011432 continue;
11433
Willy Tarreau37406352012-04-23 16:16:37 +020011434 smp->ctx.a[0] = ctx->line + ctx->val;
11435 smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011436 }
11437
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011438 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011439 smp->flags |= SMP_F_CONST;
Willy Tarreau37406352012-04-23 16:16:37 +020011440 smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
Willy Tarreau24e32d82012-04-23 23:55:44 +020011441 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011442 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011443 &smp->data.u.str.str,
11444 &smp->data.u.str.len);
Willy Tarreau37406352012-04-23 16:16:37 +020011445 if (smp->ctx.a[0]) {
Willy Tarreau28376d62012-04-26 21:26:10 +020011446 found = 1;
11447 if (occ >= 0) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011448 /* one value was returned into smp->data.u.str.{str,len} */
Willy Tarreau28376d62012-04-26 21:26:10 +020011449 smp->flags |= SMP_F_NOT_LAST;
11450 return 1;
11451 }
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011452 }
Willy Tarreau28376d62012-04-26 21:26:10 +020011453 /* if we're looking for last occurrence, let's loop */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011454 }
Willy Tarreau28376d62012-04-26 21:26:10 +020011455 /* all cookie headers and values were scanned. If we're looking for the
11456 * last occurrence, we may return it now.
11457 */
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011458 out:
Willy Tarreau37406352012-04-23 16:16:37 +020011459 smp->flags &= ~SMP_F_NOT_LAST;
Willy Tarreau28376d62012-04-26 21:26:10 +020011460 return found;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011461}
11462
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011463/* Iterate over all cookies present in a request to count how many occurrences
Willy Tarreau24e32d82012-04-23 23:55:44 +020011464 * match the name in args and args->data.str.len. If <multi> is non-null, then
Willy Tarreaub169eba2013-12-16 15:14:43 +010011465 * multiple cookies may be parsed on the same line. The returned sample is of
11466 * type UINT. Accepts exactly 1 argument of type string.
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011467 */
11468static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011469smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011470{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011471 struct http_txn *txn;
11472 struct hdr_idx *idx;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011473 struct hdr_ctx ctx;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011474 const struct http_msg *msg;
11475 const char *hdr_name;
11476 int hdr_name_len;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011477 int cnt;
11478 char *val_beg, *val_end;
Willy Tarreaue333ec92012-04-16 16:26:40 +020011479 char *sol;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011480
Willy Tarreau24e32d82012-04-23 23:55:44 +020011481 if (!args || args->type != ARGT_STR)
Willy Tarreau34db1082012-04-19 17:16:54 +020011482 return 0;
11483
Willy Tarreaue333ec92012-04-16 16:26:40 +020011484 CHECK_HTTP_MESSAGE_FIRST();
11485
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011486 txn = smp->strm->txn;
11487 idx = &smp->strm->txn->hdr_idx;
Willy Tarreau15e91e12015-04-04 00:52:09 +020011488
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011489 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) {
Willy Tarreaue333ec92012-04-16 16:26:40 +020011490 msg = &txn->req;
11491 hdr_name = "Cookie";
11492 hdr_name_len = 6;
11493 } else {
11494 msg = &txn->rsp;
11495 hdr_name = "Set-Cookie";
11496 hdr_name_len = 10;
11497 }
11498
Willy Tarreau9b28e032012-10-12 23:49:43 +020011499 sol = msg->chn->buf->p;
Willy Tarreau46787ed2012-04-11 17:28:40 +020011500 val_end = val_beg = NULL;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011501 ctx.idx = 0;
11502 cnt = 0;
11503
11504 while (1) {
11505 /* Note: val_beg == NULL every time we need to fetch a new header */
11506 if (!val_beg) {
11507 if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx))
11508 break;
11509
Willy Tarreau24e32d82012-04-23 23:55:44 +020011510 if (ctx.vlen < args->data.str.len + 1)
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011511 continue;
11512
11513 val_beg = ctx.line + ctx.val;
11514 val_end = val_beg + ctx.vlen;
11515 }
11516
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011517 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010011518 smp->flags |= SMP_F_CONST;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011519 while ((val_beg = extract_cookie_value(val_beg, val_end,
Willy Tarreau24e32d82012-04-23 23:55:44 +020011520 args->data.str.str, args->data.str.len,
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011521 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011522 &smp->data.u.str.str,
11523 &smp->data.u.str.len))) {
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011524 cnt++;
11525 }
11526 }
11527
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011528 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011529 smp->data.u.sint = cnt;
Willy Tarreau37406352012-04-23 16:16:37 +020011530 smp->flags |= SMP_F_VOL_HDR;
Willy Tarreau04aa6a92012-04-06 18:57:55 +020011531 return 1;
11532}
11533
Willy Tarreau51539362012-05-08 12:46:28 +020011534/* Fetch an cookie's integer value. The integer value is returned. It
11535 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
11536 */
11537static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011538smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau51539362012-05-08 12:46:28 +020011539{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011540 int ret = smp_fetch_cookie(args, smp, kw, private);
Willy Tarreau51539362012-05-08 12:46:28 +020011541
11542 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011543 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011544 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreau51539362012-05-08 12:46:28 +020011545 }
11546
11547 return ret;
11548}
11549
Willy Tarreau8797c062007-05-07 00:55:35 +020011550/************************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +020011551/* The code below is dedicated to sample fetches */
Willy Tarreau4a568972010-05-12 08:08:50 +020011552/************************************************************************/
11553
David Cournapeau16023ee2010-12-23 20:55:41 +090011554/*
11555 * Given a path string and its length, find the position of beginning of the
11556 * query string. Returns NULL if no query string is found in the path.
11557 *
11558 * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22:
11559 *
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011560 * find_query_string(path, n, '?') points to "yo=mama;ye=daddy" string.
David Cournapeau16023ee2010-12-23 20:55:41 +090011561 */
bedis4c75cca2012-10-05 08:38:24 +020011562static inline char *find_param_list(char *path, size_t path_l, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011563{
11564 char *p;
Emeric Brun485479d2010-09-23 18:02:19 +020011565
bedis4c75cca2012-10-05 08:38:24 +020011566 p = memchr(path, delim, path_l);
David Cournapeau16023ee2010-12-23 20:55:41 +090011567 return p ? p + 1 : NULL;
11568}
11569
bedis4c75cca2012-10-05 08:38:24 +020011570static inline int is_param_delimiter(char c, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011571{
bedis4c75cca2012-10-05 08:38:24 +020011572 return c == '&' || c == ';' || c == delim;
David Cournapeau16023ee2010-12-23 20:55:41 +090011573}
11574
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011575/* after increasing a pointer value, it can exceed the first buffer
11576 * size. This function transform the value of <ptr> according with
11577 * the expected position. <chunks> is an array of the one or two
11578 * avalaible chunks. The first value is the start of the first chunk,
11579 * the second value if the end+1 of the first chunks. The third value
11580 * is NULL or the start of the second chunk and the fourth value is
11581 * the end+1 of the second chunk. The function returns 1 if does a
11582 * wrap, else returns 0.
11583 */
11584static inline int fix_pointer_if_wrap(const char **chunks, const char **ptr)
11585{
11586 if (*ptr < chunks[1])
11587 return 0;
11588 if (!chunks[2])
11589 return 0;
11590 *ptr = chunks[2] + ( *ptr - chunks[1] );
11591 return 1;
11592}
11593
David Cournapeau16023ee2010-12-23 20:55:41 +090011594/*
11595 * Given a url parameter, find the starting position of the first occurence,
11596 * or NULL if the parameter is not found.
11597 *
11598 * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye",
11599 * the function will return query_string+8.
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011600 *
Willy Tarreauf6625822015-12-27 14:51:01 +010011601 * Warning: this function returns a pointer that can point to the first chunk
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011602 * or the second chunk. The caller must be check the position before using the
11603 * result.
David Cournapeau16023ee2010-12-23 20:55:41 +090011604 */
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011605static const char *
11606find_url_param_pos(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011607 const char* url_param_name, size_t url_param_name_l,
bedis4c75cca2012-10-05 08:38:24 +020011608 char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011609{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011610 const char *pos, *last, *equal;
11611 const char **bufs = chunks;
11612 int l1, l2;
David Cournapeau16023ee2010-12-23 20:55:41 +090011613
David Cournapeau16023ee2010-12-23 20:55:41 +090011614
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011615 pos = bufs[0];
11616 last = bufs[1];
Willy Tarreauf6625822015-12-27 14:51:01 +010011617 while (pos < last) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011618 /* Check the equal. */
11619 equal = pos + url_param_name_l;
11620 if (fix_pointer_if_wrap(chunks, &equal)) {
11621 if (equal >= chunks[3])
11622 return NULL;
11623 } else {
11624 if (equal >= chunks[1])
11625 return NULL;
11626 }
11627 if (*equal == '=') {
11628 if (pos + url_param_name_l > last) {
11629 /* process wrap case, we detect a wrap. In this case, the
11630 * comparison is performed in two parts.
11631 */
11632
11633 /* This is the end, we dont have any other chunk. */
11634 if (bufs != chunks || !bufs[2])
11635 return NULL;
11636
11637 /* Compute the length of each part of the comparison. */
11638 l1 = last - pos;
11639 l2 = url_param_name_l - l1;
11640
11641 /* The second buffer is too short to contain the compared string. */
11642 if (bufs[2] + l2 > bufs[3])
11643 return NULL;
11644
11645 if (memcmp(pos, url_param_name, l1) == 0 &&
11646 memcmp(bufs[2], url_param_name+l1, l2) == 0)
11647 return pos;
11648
11649 /* Perform wrapping and jump the string who fail the comparison. */
11650 bufs += 2;
11651 pos = bufs[0] + l2;
11652 last = bufs[1];
11653
11654 } else {
11655 /* process a simple comparison. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011656 if (memcmp(pos, url_param_name, url_param_name_l) == 0)
11657 return pos;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011658 pos += url_param_name_l + 1;
11659 if (fix_pointer_if_wrap(chunks, &pos))
11660 last = bufs[2];
11661 }
11662 }
11663
11664 while (1) {
11665 /* Look for the next delimiter. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011666 while (pos < last && !is_param_delimiter(*pos, delim))
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011667 pos++;
11668 if (pos < last)
11669 break;
11670 /* process buffer wrapping. */
11671 if (bufs != chunks || !bufs[2])
11672 return NULL;
11673 bufs += 2;
11674 pos = bufs[0];
11675 last = bufs[1];
David Cournapeau16023ee2010-12-23 20:55:41 +090011676 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011677 pos++;
11678 }
11679 return NULL;
11680}
11681
11682/*
Cyril Bontéce1ef4d2015-11-26 21:39:56 +010011683 * Given a url parameter name and a query string, find the next value.
11684 * An empty url_param_name matches the first available parameter.
11685 * If the parameter is found, 1 is returned and *vstart / *vend are updated to
11686 * respectively provide a pointer to the value and its end.
11687 * Otherwise, 0 is returned and vstart/vend are not modified.
David Cournapeau16023ee2010-12-23 20:55:41 +090011688 */
11689static int
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011690find_next_url_param(const char **chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011691 const char* url_param_name, size_t url_param_name_l,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011692 const char **vstart, const char **vend, char delim)
David Cournapeau16023ee2010-12-23 20:55:41 +090011693{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011694 const char *arg_start, *qs_end;
11695 const char *value_start, *value_end;
David Cournapeau16023ee2010-12-23 20:55:41 +090011696
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011697 arg_start = chunks[0];
11698 qs_end = chunks[1];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011699 if (url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011700 /* Looks for an argument name. */
11701 arg_start = find_url_param_pos(chunks,
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011702 url_param_name, url_param_name_l,
11703 delim);
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011704 /* Check for wrapping. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011705 if (arg_start >= qs_end)
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011706 qs_end = chunks[3];
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011707 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011708 if (!arg_start)
11709 return 0;
11710
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011711 if (!url_param_name_l) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011712 while (1) {
11713 /* looks for the first argument. */
11714 value_start = memchr(arg_start, '=', qs_end - arg_start);
11715 if (!value_start) {
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011716 /* Check for wrapping. */
11717 if (arg_start >= chunks[0] &&
Willy Tarreauf6625822015-12-27 14:51:01 +010011718 arg_start < chunks[1] &&
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011719 chunks[2]) {
11720 arg_start = chunks[2];
11721 qs_end = chunks[3];
11722 continue;
11723 }
11724 return 0;
11725 }
11726 break;
11727 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011728 value_start++;
11729 }
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011730 else {
11731 /* Jump the argument length. */
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011732 value_start = arg_start + url_param_name_l + 1;
11733
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011734 /* Check for pointer wrapping. */
11735 if (fix_pointer_if_wrap(chunks, &value_start)) {
11736 /* Update the end pointer. */
11737 qs_end = chunks[3];
11738
11739 /* Check for overflow. */
Willy Tarreauf6625822015-12-27 14:51:01 +010011740 if (value_start >= qs_end)
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011741 return 0;
11742 }
11743 }
11744
David Cournapeau16023ee2010-12-23 20:55:41 +090011745 value_end = value_start;
11746
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011747 while (1) {
11748 while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim))
11749 value_end++;
11750 if (value_end < qs_end)
11751 break;
11752 /* process buffer wrapping. */
11753 if (value_end >= chunks[0] &&
Willy Tarreauf6625822015-12-27 14:51:01 +010011754 value_end < chunks[1] &&
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011755 chunks[2]) {
11756 value_end = chunks[2];
11757 qs_end = chunks[3];
11758 continue;
11759 }
11760 break;
11761 }
David Cournapeau16023ee2010-12-23 20:55:41 +090011762
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011763 *vstart = value_start;
11764 *vend = value_end;
Cyril Bontéce1ef4d2015-11-26 21:39:56 +010011765 return 1;
David Cournapeau16023ee2010-12-23 20:55:41 +090011766}
11767
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011768/* This scans a URL-encoded query string. It takes an optionally wrapping
11769 * string whose first contigous chunk has its beginning in ctx->a[0] and end
11770 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
11771 * pointers are updated for next iteration before leaving.
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011772 */
David Cournapeau16023ee2010-12-23 20:55:41 +090011773static int
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011774smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
David Cournapeau16023ee2010-12-23 20:55:41 +090011775{
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011776 const char *vstart, *vend;
11777 struct chunk *temp;
11778 const char **chunks = (const char **)smp->ctx.a;
bedis4c75cca2012-10-05 08:38:24 +020011779
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011780 if (!find_next_url_param(chunks,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011781 name, name_len,
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011782 &vstart, &vend,
Thierry FOURNIER0948d412015-05-20 15:22:37 +020011783 delim))
David Cournapeau16023ee2010-12-23 20:55:41 +090011784 return 0;
11785
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011786 /* Create sample. If the value is contiguous, return the pointer as CONST,
11787 * if the value is wrapped, copy-it in a buffer.
11788 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011789 smp->data.type = SMP_T_STR;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011790 if (chunks[2] &&
11791 vstart >= chunks[0] && vstart <= chunks[1] &&
11792 vend >= chunks[2] && vend <= chunks[3]) {
11793 /* Wrapped case. */
11794 temp = get_trash_chunk();
11795 memcpy(temp->str, vstart, chunks[1] - vstart);
11796 memcpy(temp->str + ( chunks[1] - vstart ), chunks[2], vend - chunks[2]);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011797 smp->data.u.str.str = temp->str;
11798 smp->data.u.str.len = ( chunks[1] - vstart ) + ( vend - chunks[2] );
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011799 } else {
11800 /* Contiguous case. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011801 smp->data.u.str.str = (char *)vstart;
11802 smp->data.u.str.len = vend - vstart;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011803 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
11804 }
11805
11806 /* Update context, check wrapping. */
11807 chunks[0] = vend;
11808 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
11809 chunks[1] = chunks[3];
11810 chunks[2] = NULL;
11811 }
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011812
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011813 if (chunks[0] < chunks[1])
Willy Tarreau1ede1da2015-05-07 16:06:18 +020011814 smp->flags |= SMP_F_NOT_LAST;
11815
David Cournapeau16023ee2010-12-23 20:55:41 +090011816 return 1;
11817}
11818
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011819/* This function iterates over each parameter of the query string. It uses
11820 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011821 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
11822 * An optional parameter name is passed in args[0], otherwise any parameter is
11823 * considered. It supports an optional delimiter argument for the beginning of
11824 * the string in args[1], which defaults to "?".
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011825 */
11826static int
11827smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11828{
11829 struct http_msg *msg;
11830 char delim = '?';
11831 const char *name;
11832 int name_len;
11833
Dragan Dosen26f77e52015-05-25 10:02:11 +020011834 if (!args ||
11835 (args[0].type && args[0].type != ARGT_STR) ||
11836 (args[1].type && args[1].type != ARGT_STR))
11837 return 0;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011838
Dragan Dosen26f77e52015-05-25 10:02:11 +020011839 name = "";
11840 name_len = 0;
11841 if (args->type == ARGT_STR) {
11842 name = args->data.str.str;
11843 name_len = args->data.str.len;
11844 }
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011845
Dragan Dosen26f77e52015-05-25 10:02:11 +020011846 if (args[1].type)
11847 delim = *args[1].data.str.str;
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011848
Dragan Dosen26f77e52015-05-25 10:02:11 +020011849 if (!smp->ctx.a[0]) { // first call, find the query string
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011850 CHECK_HTTP_MESSAGE_FIRST();
11851
11852 msg = &smp->strm->txn->req;
11853
11854 smp->ctx.a[0] = find_param_list(msg->chn->buf->p + msg->sl.rq.u,
11855 msg->sl.rq.u_l, delim);
11856 if (!smp->ctx.a[0])
11857 return 0;
11858
11859 smp->ctx.a[1] = msg->chn->buf->p + msg->sl.rq.u + msg->sl.rq.u_l;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011860
11861 /* Assume that the context is filled with NULL pointer
11862 * before the first call.
11863 * smp->ctx.a[2] = NULL;
11864 * smp->ctx.a[3] = NULL;
11865 */
Thierry FOURNIER4fdc74c2015-05-19 14:46:23 +020011866 }
11867
11868 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
11869}
11870
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011871/* This function iterates over each parameter of the body. This requires
11872 * that the body has been waited for using http-buffer-request. It uses
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011873 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
11874 * contigous part of the body, and optionally ctx->a[2..3] to reference the
11875 * optional second part if the body wraps at the end of the buffer. An optional
11876 * parameter name is passed in args[0], otherwise any parameter is considered.
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011877 */
11878static int
11879smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
11880{
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011881 struct http_msg *msg;
11882 unsigned long len;
11883 unsigned long block1;
11884 char *body;
11885 const char *name;
11886 int name_len;
11887
11888 if (!args || (args[0].type && args[0].type != ARGT_STR))
11889 return 0;
11890
11891 name = "";
11892 name_len = 0;
11893 if (args[0].type == ARGT_STR) {
11894 name = args[0].data.str.str;
11895 name_len = args[0].data.str.len;
11896 }
11897
11898 if (!smp->ctx.a[0]) { // first call, find the query string
11899 CHECK_HTTP_MESSAGE_FIRST();
11900
11901 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ)
Willy Tarreaube508f12016-03-10 11:47:01 +010011902 msg = &smp->strm->txn->req;
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011903 else
Willy Tarreaube508f12016-03-10 11:47:01 +010011904 msg = &smp->strm->txn->rsp;
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011905
11906 len = http_body_bytes(msg);
11907 body = b_ptr(msg->chn->buf, -http_data_rewind(msg));
11908
11909 block1 = len;
11910 if (block1 > msg->chn->buf->data + msg->chn->buf->size - body)
11911 block1 = msg->chn->buf->data + msg->chn->buf->size - body;
11912
11913 if (block1 == len) {
11914 /* buffer is not wrapped (or empty) */
11915 smp->ctx.a[0] = body;
11916 smp->ctx.a[1] = body + len;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011917
11918 /* Assume that the context is filled with NULL pointer
11919 * before the first call.
11920 * smp->ctx.a[2] = NULL;
11921 * smp->ctx.a[3] = NULL;
11922 */
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011923 }
11924 else {
11925 /* buffer is wrapped, we need to defragment it */
11926 smp->ctx.a[0] = body;
11927 smp->ctx.a[1] = body + block1;
Thierry FOURNIER8be451c2015-05-20 15:28:12 +020011928 smp->ctx.a[2] = msg->chn->buf->data;
11929 smp->ctx.a[3] = msg->chn->buf->data + ( len - block1 );
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020011930 }
11931 }
11932 return smp_fetch_param('&', name, name_len, args, smp, kw, private);
11933}
11934
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011935/* Return the signed integer value for the specified url parameter (see url_param
11936 * above).
11937 */
11938static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011939smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011940{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011941 int ret = smp_fetch_url_param(args, smp, kw, private);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011942
11943 if (ret > 0) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011944 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011945 smp->data.u.sint = strl2ic(smp->data.u.str.str, smp->data.u.str.len);
Willy Tarreaua9fddca2012-07-31 07:51:48 +020011946 }
11947
11948 return ret;
11949}
11950
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011951/* This produces a 32-bit hash of the concatenation of the first occurrence of
11952 * the Host header followed by the path component if it begins with a slash ('/').
11953 * This means that '*' will not be added, resulting in exactly the first Host
11954 * entry. If no Host header is found, then the path is used. The resulting value
11955 * is hashed using the url hash followed by a full avalanche hash and provides a
11956 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
11957 * high-traffic sites without having to store whole paths.
11958 * this differs from the base32 functions in that it includes the url parameters
11959 * as well as the path
11960 */
11961static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020011962smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011963{
Willy Tarreau15e91e12015-04-04 00:52:09 +020011964 struct http_txn *txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011965 struct hdr_ctx ctx;
11966 unsigned int hash = 0;
11967 char *ptr, *beg, *end;
11968 int len;
11969
11970 CHECK_HTTP_MESSAGE_FIRST();
11971
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020011972 txn = smp->strm->txn;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011973 ctx.idx = 0;
Willy Tarreau877e78d2013-04-07 18:48:08 +020011974 if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011975 /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */
11976 ptr = ctx.line + ctx.val;
11977 len = ctx.vlen;
11978 while (len--)
11979 hash = *(ptr++) + (hash << 6) + (hash << 16) - hash;
11980 }
11981
11982 /* now retrieve the path */
Willy Tarreau877e78d2013-04-07 18:48:08 +020011983 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 +000011984 beg = http_get_path(txn);
11985 if (!beg)
11986 beg = end;
11987
11988 for (ptr = beg; ptr < end ; ptr++);
11989
11990 if (beg < ptr && *beg == '/') {
11991 while (beg < ptr)
11992 hash = *(beg++) + (hash << 6) + (hash << 16) - hash;
11993 }
11994 hash = full_hash(hash);
11995
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020011996 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020011997 smp->data.u.sint = hash;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000011998 smp->flags = SMP_F_VOL_1ST;
11999 return 1;
12000}
12001
12002/* This concatenates the source address with the 32-bit hash of the Host and
12003 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
12004 * per-url counters. The result is a binary block from 8 to 20 bytes depending
12005 * on the source address length. The URL hash is stored before the address so
12006 * that in environments where IPv6 is insignificant, truncating the output to
12007 * 8 bytes would still work.
12008 */
12009static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020012010smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012011{
12012 struct chunk *temp;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020012013 struct connection *cli_conn = objt_conn(smp->sess->origin);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012014
Dragan Dosendb5af612016-06-16 11:23:01 +020012015 if (!cli_conn)
12016 return 0;
12017
Thierry FOURNIER0786d052015-05-11 15:42:45 +020012018 if (!smp_fetch_url32(args, smp, kw, private))
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012019 return 0;
12020
12021 temp = get_trash_chunk();
Dragan Dosene5f41332016-06-16 11:08:08 +020012022 *(unsigned int *)temp->str = htonl(smp->data.u.sint);
12023 temp->len += sizeof(unsigned int);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012024
Willy Tarreaub363a1f2013-10-01 10:45:07 +020012025 switch (cli_conn->addr.from.ss_family) {
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012026 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020012027 memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012028 temp->len += 4;
12029 break;
12030 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020012031 memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16);
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012032 temp->len += 16;
12033 break;
12034 default:
12035 return 0;
12036 }
12037
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012038 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020012039 smp->data.type = SMP_T_BIN;
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000012040 return 1;
12041}
12042
Willy Tarreau185b5c42012-04-26 15:11:51 +020012043/* This function is used to validate the arguments passed to any "hdr" fetch
12044 * keyword. These keywords support an optional positive or negative occurrence
12045 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
12046 * is assumed that the types are already the correct ones. Returns 0 on error,
12047 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
12048 * error message in case of error, that the caller is responsible for freeing.
12049 * The initial location must either be freeable or NULL.
12050 */
Thierry FOURNIER49f45af2014-12-08 19:50:43 +010012051int val_hdr(struct arg *arg, char **err_msg)
Willy Tarreau185b5c42012-04-26 15:11:51 +020012052{
12053 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +020012054 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
Willy Tarreau185b5c42012-04-26 15:11:51 +020012055 return 0;
12056 }
12057 return 1;
12058}
12059
Willy Tarreau276fae92013-07-25 14:36:01 +020012060/* takes an UINT value on input supposed to represent the time since EPOCH,
12061 * adds an optional offset found in args[0] and emits a string representing
12062 * the date in RFC-1123/5322 format.
12063 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020012064static int sample_conv_http_date(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau276fae92013-07-25 14:36:01 +020012065{
Cyril Bontéf78d8962016-01-22 19:40:28 +010012066 const char day[7][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
Willy Tarreau276fae92013-07-25 14:36:01 +020012067 const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
12068 struct chunk *temp;
12069 struct tm *tm;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012070 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012071 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Willy Tarreau276fae92013-07-25 14:36:01 +020012072
12073 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012074 if (args && (args[0].type == ARGT_SINT))
Willy Tarreau276fae92013-07-25 14:36:01 +020012075 curr_date += args[0].data.sint;
12076
12077 tm = gmtime(&curr_date);
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +020012078 if (!tm)
12079 return 0;
Willy Tarreau276fae92013-07-25 14:36:01 +020012080
12081 temp = get_trash_chunk();
12082 temp->len = snprintf(temp->str, temp->size - temp->len,
12083 "%s, %02d %s %04d %02d:%02d:%02d GMT",
12084 day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year,
12085 tm->tm_hour, tm->tm_min, tm->tm_sec);
12086
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012087 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020012088 smp->data.type = SMP_T_STR;
Willy Tarreau276fae92013-07-25 14:36:01 +020012089 return 1;
12090}
12091
Thierry FOURNIERad903512014-04-11 17:51:01 +020012092/* Match language range with language tag. RFC2616 14.4:
12093 *
12094 * A language-range matches a language-tag if it exactly equals
12095 * the tag, or if it exactly equals a prefix of the tag such
12096 * that the first tag character following the prefix is "-".
12097 *
12098 * Return 1 if the strings match, else return 0.
12099 */
12100static inline int language_range_match(const char *range, int range_len,
12101 const char *tag, int tag_len)
12102{
12103 const char *end = range + range_len;
12104 const char *tend = tag + tag_len;
12105 while (range < end) {
12106 if (*range == '-' && tag == tend)
12107 return 1;
12108 if (*range != *tag || tag == tend)
12109 return 0;
12110 range++;
12111 tag++;
12112 }
12113 /* Return true only if the last char of the tag is matched. */
12114 return tag == tend;
12115}
12116
12117/* Arguments: The list of expected value, the number of parts returned and the separator */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020012118static int sample_conv_q_prefered(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIERad903512014-04-11 17:51:01 +020012119{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012120 const char *al = smp->data.u.str.str;
12121 const char *end = al + smp->data.u.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012122 const char *token;
12123 int toklen;
12124 int qvalue;
12125 const char *str;
12126 const char *w;
12127 int best_q = 0;
12128
12129 /* Set the constant to the sample, because the output of the
12130 * function will be peek in the constant configuration string.
12131 */
12132 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012133 smp->data.u.str.size = 0;
12134 smp->data.u.str.str = "";
12135 smp->data.u.str.len = 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012136
12137 /* Parse the accept language */
12138 while (1) {
12139
12140 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012141 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012142 al++;
12143 if (al >= end)
12144 break;
12145
12146 /* Start of the fisrt word. */
12147 token = al;
12148
12149 /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012150 while (al < end && *al != ';' && *al != ',' && !isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012151 al++;
12152 if (al == token)
12153 goto expect_comma;
12154
12155 /* Length of the token. */
12156 toklen = al - token;
12157 qvalue = 1000;
12158
12159 /* Check if the token exists in the list. If the token not exists,
12160 * jump to the next token.
12161 */
12162 str = args[0].data.str.str;
12163 w = str;
12164 while (1) {
12165 if (*str == ';' || *str == '\0') {
12166 if (language_range_match(token, toklen, w, str-w))
12167 goto look_for_q;
12168 if (*str == '\0')
12169 goto expect_comma;
12170 w = str + 1;
12171 }
12172 str++;
12173 }
12174 goto expect_comma;
12175
12176look_for_q:
12177
12178 /* Jump spaces, quit if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012179 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012180 al++;
12181 if (al >= end)
12182 goto process_value;
12183
12184 /* If ',' is found, process the result */
12185 if (*al == ',')
12186 goto process_value;
12187
12188 /* If the character is different from ';', look
12189 * for the end of the header part in best effort.
12190 */
12191 if (*al != ';')
12192 goto expect_comma;
12193
12194 /* Assumes that the char is ';', now expect "q=". */
12195 al++;
12196
12197 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012198 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012199 al++;
12200 if (al >= end)
12201 goto process_value;
12202
12203 /* Expect 'q'. If no 'q', continue in best effort */
12204 if (*al != 'q')
12205 goto process_value;
12206 al++;
12207
12208 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012209 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012210 al++;
12211 if (al >= end)
12212 goto process_value;
12213
12214 /* Expect '='. If no '=', continue in best effort */
12215 if (*al != '=')
12216 goto process_value;
12217 al++;
12218
12219 /* Jump spaces, process value if the end is detected. */
Willy Tarreau506c69a2014-07-08 00:59:48 +020012220 while (al < end && isspace((unsigned char)*al))
Thierry FOURNIERad903512014-04-11 17:51:01 +020012221 al++;
12222 if (al >= end)
12223 goto process_value;
12224
12225 /* Parse the q value. */
12226 qvalue = parse_qvalue(al, &al);
12227
12228process_value:
12229
12230 /* If the new q value is the best q value, then store the associated
12231 * language in the response. If qvalue is the biggest value (1000),
12232 * break the process.
12233 */
12234 if (qvalue > best_q) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012235 smp->data.u.str.str = (char *)w;
12236 smp->data.u.str.len = str - w;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012237 if (qvalue >= 1000)
12238 break;
12239 best_q = qvalue;
12240 }
12241
12242expect_comma:
12243
12244 /* Expect comma or end. If the end is detected, quit the loop. */
12245 while (al < end && *al != ',')
12246 al++;
12247 if (al >= end)
12248 break;
12249
12250 /* Comma is found, jump it and restart the analyzer. */
12251 al++;
12252 }
12253
12254 /* Set default value if required. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012255 if (smp->data.u.str.len == 0 && args[1].type == ARGT_STR) {
12256 smp->data.u.str.str = args[1].data.str.str;
12257 smp->data.u.str.len = args[1].data.str.len;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012258 }
12259
12260 /* Return true only if a matching language was found. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012261 return smp->data.u.str.len != 0;
Thierry FOURNIERad903512014-04-11 17:51:01 +020012262}
12263
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012264/* This fetch url-decode any input string. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +020012265static int sample_conv_url_dec(const struct arg *args, struct sample *smp, void *private)
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012266{
12267 /* If the constant flag is set or if not size is avalaible at
12268 * the end of the buffer, copy the string in other buffer
12269 * before decoding.
12270 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012271 if (smp->flags & SMP_F_CONST || smp->data.u.str.size <= smp->data.u.str.len) {
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012272 struct chunk *str = get_trash_chunk();
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012273 memcpy(str->str, smp->data.u.str.str, smp->data.u.str.len);
12274 smp->data.u.str.str = str->str;
12275 smp->data.u.str.size = str->size;
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012276 smp->flags &= ~SMP_F_CONST;
12277 }
12278
12279 /* Add final \0 required by url_decode(), and convert the input string. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012280 smp->data.u.str.str[smp->data.u.str.len] = '\0';
12281 smp->data.u.str.len = url_decode(smp->data.u.str.str);
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020012282 return 1;
12283}
12284
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012285static int smp_conv_req_capture(const struct arg *args, struct sample *smp, void *private)
12286{
12287 struct proxy *fe = strm_fe(smp->strm);
12288 int idx, i;
12289 struct cap_hdr *hdr;
12290 int len;
12291
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012292 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012293 return 0;
12294
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012295 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012296
12297 /* Check the availibity of the capture id. */
12298 if (idx > fe->nb_req_cap - 1)
12299 return 0;
12300
12301 /* Look for the original configuration. */
12302 for (hdr = fe->req_cap, i = fe->nb_req_cap - 1;
12303 hdr != NULL && i != idx ;
12304 i--, hdr = hdr->next);
12305 if (!hdr)
12306 return 0;
12307
12308 /* check for the memory allocation */
12309 if (smp->strm->req_cap[hdr->index] == NULL)
12310 smp->strm->req_cap[hdr->index] = pool_alloc2(hdr->pool);
12311 if (smp->strm->req_cap[hdr->index] == NULL)
12312 return 0;
12313
12314 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012315 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012316 if (len > hdr->len)
12317 len = hdr->len;
12318
12319 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012320 memcpy(smp->strm->req_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012321 smp->strm->req_cap[idx][len] = '\0';
12322
12323 return 1;
12324}
12325
12326static int smp_conv_res_capture(const struct arg *args, struct sample *smp, void *private)
12327{
12328 struct proxy *fe = strm_fe(smp->strm);
12329 int idx, i;
12330 struct cap_hdr *hdr;
12331 int len;
12332
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012333 if (!args || args->type != ARGT_SINT)
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012334 return 0;
12335
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020012336 idx = args->data.sint;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012337
12338 /* Check the availibity of the capture id. */
12339 if (idx > fe->nb_rsp_cap - 1)
12340 return 0;
12341
12342 /* Look for the original configuration. */
12343 for (hdr = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
12344 hdr != NULL && i != idx ;
12345 i--, hdr = hdr->next);
12346 if (!hdr)
12347 return 0;
12348
12349 /* check for the memory allocation */
12350 if (smp->strm->res_cap[hdr->index] == NULL)
12351 smp->strm->res_cap[hdr->index] = pool_alloc2(hdr->pool);
12352 if (smp->strm->res_cap[hdr->index] == NULL)
12353 return 0;
12354
12355 /* Check length. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012356 len = smp->data.u.str.len;
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012357 if (len > hdr->len)
12358 len = hdr->len;
12359
12360 /* Capture input data. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012361 memcpy(smp->strm->res_cap[idx], smp->data.u.str.str, len);
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020012362 smp->strm->res_cap[idx][len] = '\0';
12363
12364 return 1;
12365}
12366
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012367/* This function executes one of the set-{method,path,query,uri} actions. It
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012368 * takes the string from the variable 'replace' with length 'len', then modifies
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012369 * the relevant part of the request line accordingly. Then it updates various
12370 * pointers to the next elements which were moved, and the total buffer length.
12371 * It finds the action to be performed in p[2], previously filled by function
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012372 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
12373 * error, though this can be revisited when this code is finally exploited.
12374 *
12375 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
12376 * query string and 3 to replace uri.
12377 *
12378 * In query string case, the mark question '?' must be set at the start of the
12379 * string by the caller, event if the replacement query string is empty.
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012380 */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012381int http_replace_req_line(int action, const char *replace, int len,
Willy Tarreau987e3fb2015-04-04 01:09:08 +020012382 struct proxy *px, struct stream *s)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012383{
Willy Tarreau987e3fb2015-04-04 01:09:08 +020012384 struct http_txn *txn = s->txn;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012385 char *cur_ptr, *cur_end;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012386 int offset = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012387 int delta;
12388
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012389 switch (action) {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012390 case 0: // method
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012391 cur_ptr = s->req.buf->p;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012392 cur_end = cur_ptr + txn->req.sl.rq.m_l;
12393
12394 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012395 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012396 txn->req.sl.rq.m_l += delta;
12397 txn->req.sl.rq.u += delta;
12398 txn->req.sl.rq.v += delta;
12399 break;
12400
12401 case 1: // path
12402 cur_ptr = http_get_path(txn);
12403 if (!cur_ptr)
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012404 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012405
12406 cur_end = cur_ptr;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012407 while (cur_end < s->req.buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?')
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012408 cur_end++;
12409
12410 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012411 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012412 txn->req.sl.rq.u_l += delta;
12413 txn->req.sl.rq.v += delta;
12414 break;
12415
12416 case 2: // query
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012417 offset = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012418 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012419 cur_end = cur_ptr + txn->req.sl.rq.u_l;
12420 while (cur_ptr < cur_end && *cur_ptr != '?')
12421 cur_ptr++;
12422
12423 /* skip the question mark or indicate that we must insert it
12424 * (but only if the format string is not empty then).
12425 */
12426 if (cur_ptr < cur_end)
12427 cur_ptr++;
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012428 else if (len > 1)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012429 offset = 0;
12430
12431 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012432 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012433 txn->req.sl.rq.u_l += delta;
12434 txn->req.sl.rq.v += delta;
12435 break;
12436
12437 case 3: // uri
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010012438 cur_ptr = s->req.buf->p + txn->req.sl.rq.u;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012439 cur_end = cur_ptr + txn->req.sl.rq.u_l;
12440
12441 /* adjust req line offsets and lengths */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012442 delta = len - offset - (cur_end - cur_ptr);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012443 txn->req.sl.rq.u_l += delta;
12444 txn->req.sl.rq.v += delta;
12445 break;
12446
12447 default:
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012448 return -1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012449 }
12450
12451 /* commit changes and adjust end of message */
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012452 delta = buffer_replace2(s->req.buf, cur_ptr, cur_end, replace + offset, len - offset);
Thierry FOURNIER7f6192c2015-04-26 18:01:40 +020012453 txn->req.sl.rq.l += delta;
12454 txn->hdr_idx.v[0].len += delta;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012455 http_msg_move_end(&txn->req, delta);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012456 return 0;
12457}
12458
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012459/* This function replace the HTTP status code and the associated message. The
12460 * variable <status> contains the new status code. This function never fails.
12461 */
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012462void http_set_status(unsigned int status, const char *reason, struct stream *s)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012463{
12464 struct http_txn *txn = s->txn;
12465 char *cur_ptr, *cur_end;
12466 int delta;
12467 char *res;
12468 int c_l;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012469 const char *msg = reason;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012470 int msg_len;
12471
12472 chunk_reset(&trash);
12473
12474 res = ultoa_o(status, trash.str, trash.size);
12475 c_l = res - trash.str;
12476
12477 trash.str[c_l] = ' ';
12478 trash.len = c_l + 1;
12479
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012480 /* Do we have a custom reason format string? */
12481 if (msg == NULL)
12482 msg = get_reason(status);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012483 msg_len = strlen(msg);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012484 strncpy(&trash.str[trash.len], msg, trash.size - trash.len);
12485 trash.len += msg_len;
12486
12487 cur_ptr = s->res.buf->p + txn->rsp.sl.st.c;
12488 cur_end = s->res.buf->p + txn->rsp.sl.st.r + txn->rsp.sl.st.r_l;
12489
12490 /* commit changes and adjust message */
12491 delta = buffer_replace2(s->res.buf, cur_ptr, cur_end, trash.str, trash.len);
12492
12493 /* adjust res line offsets and lengths */
12494 txn->rsp.sl.st.r += c_l - txn->rsp.sl.st.c_l;
12495 txn->rsp.sl.st.c_l = c_l;
12496 txn->rsp.sl.st.r_l = msg_len;
12497
12498 delta = trash.len - (cur_end - cur_ptr);
12499 txn->rsp.sl.st.l += delta;
12500 txn->hdr_idx.v[0].len += delta;
12501 http_msg_move_end(&txn->rsp, delta);
12502}
12503
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012504/* This function executes one of the set-{method,path,query,uri} actions. It
12505 * builds a string in the trash from the specified format string. It finds
Thierry FOURNIER3f4bc652015-08-26 16:23:34 +020012506 * the action to be performed in <http.action>, previously filled by function
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012507 * parse_set_req_line(). The replacement action is excuted by the function
Thierry FOURNIER3f4bc652015-08-26 16:23:34 +020012508 * http_action_set_req_line(). It always returns ACT_RET_CONT. If an error
12509 * occurs the action is canceled, but the rule processing continue.
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012510 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012511enum act_return http_action_set_req_line(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012512 struct session *sess, struct stream *s, int flags)
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012513{
12514 chunk_reset(&trash);
12515
12516 /* If we have to create a query string, prepare a '?'. */
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012517 if (rule->arg.http.action == 2)
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012518 trash.str[trash.len++] = '?';
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012519 trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.http.logfmt);
Thierry FOURNIERb77aece2015-03-14 13:55:46 +010012520
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012521 http_replace_req_line(rule->arg.http.action, trash.str, trash.len, px, s);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012522 return ACT_RET_CONT;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012523}
12524
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012525/* This function is just a compliant action wrapper for "set-status". */
12526enum act_return action_http_set_status(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012527 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012528{
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012529 http_set_status(rule->arg.status.code, rule->arg.status.reason, s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012530 return ACT_RET_CONT;
12531}
12532
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012533/* parse an http-request action among :
12534 * set-method
12535 * set-path
12536 * set-query
12537 * set-uri
12538 *
12539 * All of them accept a single argument of type string representing a log-format.
12540 * The resulting rule makes use of arg->act.p[0..1] to store the log-format list
12541 * head, and p[2] to store the action as an int (0=method, 1=path, 2=query, 3=uri).
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012542 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012543 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012544enum act_parse_ret parse_set_req_line(const char **args, int *orig_arg, struct proxy *px,
12545 struct act_rule *rule, char **err)
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012546{
12547 int cur_arg = *orig_arg;
12548
Thierry FOURNIER42148732015-09-02 17:17:33 +020012549 rule->action = ACT_CUSTOM;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012550
12551 switch (args[0][4]) {
12552 case 'm' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012553 rule->arg.http.action = 0;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012554 rule->action_ptr = http_action_set_req_line;
12555 break;
12556 case 'p' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012557 rule->arg.http.action = 1;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012558 rule->action_ptr = http_action_set_req_line;
12559 break;
12560 case 'q' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012561 rule->arg.http.action = 2;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012562 rule->action_ptr = http_action_set_req_line;
12563 break;
12564 case 'u' :
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012565 rule->arg.http.action = 3;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012566 rule->action_ptr = http_action_set_req_line;
12567 break;
12568 default:
12569 memprintf(err, "internal error: unhandled action '%s'", args[0]);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012570 return ACT_RET_PRS_ERR;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012571 }
12572
12573 if (!*args[cur_arg] ||
12574 (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) {
12575 memprintf(err, "expects exactly 1 argument <format>");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012576 return ACT_RET_PRS_ERR;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012577 }
12578
Thierry FOURNIER8855a922015-07-31 08:54:25 +020012579 LIST_INIT(&rule->arg.http.logfmt);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012580 proxy->conf.args.ctx = ARGC_HRQ;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +010012581 if (!parse_logformat_string(args[cur_arg], proxy, &rule->arg.http.logfmt, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010012582 (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, err)) {
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +010012583 return ACT_RET_PRS_ERR;
12584 }
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012585
12586 (*orig_arg)++;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012587 return ACT_RET_PRS_OK;
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010012588}
12589
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012590/* parse set-status action:
12591 * This action accepts a single argument of type int representing
12592 * an http status code. It returns ACT_RET_PRS_OK on success,
12593 * ACT_RET_PRS_ERR on error.
12594 */
12595enum act_parse_ret parse_http_set_status(const char **args, int *orig_arg, struct proxy *px,
12596 struct act_rule *rule, char **err)
12597{
12598 char *error;
12599
Thierry FOURNIER42148732015-09-02 17:17:33 +020012600 rule->action = ACT_CUSTOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012601 rule->action_ptr = action_http_set_status;
12602
12603 /* Check if an argument is available */
12604 if (!*args[*orig_arg]) {
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012605 memprintf(err, "expects 1 argument: <status>; or 3 arguments: <status> reason <fmt>");
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012606 return ACT_RET_PRS_ERR;
12607 }
12608
12609 /* convert status code as integer */
12610 rule->arg.status.code = strtol(args[*orig_arg], &error, 10);
12611 if (*error != '\0' || rule->arg.status.code < 100 || rule->arg.status.code > 999) {
12612 memprintf(err, "expects an integer status code between 100 and 999");
12613 return ACT_RET_PRS_ERR;
12614 }
12615
12616 (*orig_arg)++;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080012617
12618 /* set custom reason string */
12619 rule->arg.status.reason = NULL; // If null, we use the default reason for the status code.
12620 if (*args[*orig_arg] && strcmp(args[*orig_arg], "reason") == 0 &&
12621 (*args[*orig_arg + 1] && strcmp(args[*orig_arg + 1], "if") != 0 && strcmp(args[*orig_arg + 1], "unless") != 0)) {
12622 (*orig_arg)++;
12623 rule->arg.status.reason = strdup(args[*orig_arg]);
12624 (*orig_arg)++;
12625 }
12626
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020012627 return ACT_RET_PRS_OK;
12628}
12629
Willy Tarreaua9083d02015-05-08 15:27:59 +020012630/* This function executes the "capture" action. It executes a fetch expression,
12631 * turns the result into a string and puts it in a capture slot. It always
12632 * returns 1. If an error occurs the action is cancelled, but the rule
12633 * processing continues.
12634 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012635enum act_return http_action_req_capture(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012636 struct session *sess, struct stream *s, int flags)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012637{
Willy Tarreaua9083d02015-05-08 15:27:59 +020012638 struct sample *key;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012639 struct cap_hdr *h = rule->arg.cap.hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012640 char **cap = s->req_cap;
12641 int len;
12642
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012643 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.cap.expr, SMP_T_STR);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012644 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012645 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012646
12647 if (cap[h->index] == NULL)
12648 cap[h->index] = pool_alloc2(h->pool);
12649
12650 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012651 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012652
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012653 len = key->data.u.str.len;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012654 if (len > h->len)
12655 len = h->len;
12656
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012657 memcpy(cap[h->index], key->data.u.str.str, len);
Willy Tarreaua9083d02015-05-08 15:27:59 +020012658 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012659 return ACT_RET_CONT;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012660}
12661
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012662/* This function executes the "capture" action and store the result in a
12663 * capture slot if exists. It executes a fetch expression, turns the result
12664 * into a string and puts it in a capture slot. It always returns 1. If an
12665 * error occurs the action is cancelled, but the rule processing continues.
12666 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012667enum act_return http_action_req_capture_by_id(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012668 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012669{
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012670 struct sample *key;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012671 struct cap_hdr *h;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012672 char **cap = s->req_cap;
12673 struct proxy *fe = strm_fe(s);
12674 int len;
12675 int i;
12676
12677 /* Look for the original configuration. */
12678 for (h = fe->req_cap, i = fe->nb_req_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012679 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012680 i--, h = h->next);
12681 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012682 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012683
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012684 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012685 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012686 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012687
12688 if (cap[h->index] == NULL)
12689 cap[h->index] = pool_alloc2(h->pool);
12690
12691 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012692 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012693
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012694 len = key->data.u.str.len;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012695 if (len > h->len)
12696 len = h->len;
12697
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012698 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012699 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012700 return ACT_RET_CONT;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012701}
12702
Willy Tarreaua9083d02015-05-08 15:27:59 +020012703/* parse an "http-request capture" action. It takes a single argument which is
12704 * a sample fetch expression. It stores the expression into arg->act.p[0] and
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012705 * the allocated hdr_cap struct or the preallocated "id" into arg->act.p[1].
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012706 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Willy Tarreaua9083d02015-05-08 15:27:59 +020012707 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012708enum act_parse_ret parse_http_req_capture(const char **args, int *orig_arg, struct proxy *px,
12709 struct act_rule *rule, char **err)
Willy Tarreaua9083d02015-05-08 15:27:59 +020012710{
12711 struct sample_expr *expr;
12712 struct cap_hdr *hdr;
12713 int cur_arg;
Willy Tarreau3986ac12015-05-08 16:13:42 +020012714 int len = 0;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012715
12716 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12717 if (strcmp(args[cur_arg], "if") == 0 ||
12718 strcmp(args[cur_arg], "unless") == 0)
12719 break;
12720
12721 if (cur_arg < *orig_arg + 3) {
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012722 memprintf(err, "expects <expression> [ 'len' <length> | id <idx> ]");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012723 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012724 }
12725
Willy Tarreaua9083d02015-05-08 15:27:59 +020012726 cur_arg = *orig_arg;
12727 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12728 if (!expr)
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012729 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012730
12731 if (!(expr->fetch->val & SMP_VAL_FE_HRQ_HDR)) {
12732 memprintf(err,
12733 "fetch method '%s' extracts information from '%s', none of which is available here",
12734 args[cur_arg-1], sample_src_names(expr->fetch->use));
12735 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012736 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012737 }
12738
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012739 if (!args[cur_arg] || !*args[cur_arg]) {
12740 memprintf(err, "expects 'len or 'id'");
12741 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012742 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012743 }
12744
Willy Tarreaua9083d02015-05-08 15:27:59 +020012745 if (strcmp(args[cur_arg], "len") == 0) {
12746 cur_arg++;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012747
12748 if (!(px->cap & PR_CAP_FE)) {
12749 memprintf(err, "proxy '%s' has no frontend capability", px->id);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012750 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012751 }
12752
12753 proxy->conf.args.ctx = ARGC_CAP;
12754
Willy Tarreaua9083d02015-05-08 15:27:59 +020012755 if (!args[cur_arg]) {
12756 memprintf(err, "missing length value");
12757 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012758 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012759 }
12760 /* we copy the table name for now, it will be resolved later */
12761 len = atoi(args[cur_arg]);
12762 if (len <= 0) {
12763 memprintf(err, "length must be > 0");
12764 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012765 return ACT_RET_PRS_ERR;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012766 }
12767 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012768
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012769 if (!len) {
12770 memprintf(err, "a positive 'len' argument is mandatory");
12771 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012772 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012773 }
12774
Vincent Bernat02779b62016-04-03 13:48:43 +020012775 hdr = calloc(1, sizeof(*hdr));
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012776 hdr->next = px->req_cap;
12777 hdr->name = NULL; /* not a header capture */
12778 hdr->namelen = 0;
12779 hdr->len = len;
12780 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
12781 hdr->index = px->nb_req_cap++;
12782
12783 px->req_cap = hdr;
12784 px->to_log |= LW_REQHDR;
12785
Thierry FOURNIER42148732015-09-02 17:17:33 +020012786 rule->action = ACT_CUSTOM;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012787 rule->action_ptr = http_action_req_capture;
Thierry FOURNIER32b15002015-07-31 08:56:16 +020012788 rule->arg.cap.expr = expr;
12789 rule->arg.cap.hdr = hdr;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012790 }
12791
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012792 else if (strcmp(args[cur_arg], "id") == 0) {
12793 int id;
12794 char *error;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012795
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012796 cur_arg++;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012797
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012798 if (!args[cur_arg]) {
12799 memprintf(err, "missing id value");
12800 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012801 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012802 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012803
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012804 id = strtol(args[cur_arg], &error, 10);
12805 if (*error != '\0') {
12806 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12807 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012808 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012809 }
12810 cur_arg++;
12811
12812 proxy->conf.args.ctx = ARGC_CAP;
12813
Thierry FOURNIER42148732015-09-02 17:17:33 +020012814 rule->action = ACT_CUSTOM;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012815 rule->action_ptr = http_action_req_capture_by_id;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012816 rule->arg.capid.expr = expr;
12817 rule->arg.capid.idx = id;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012818 }
12819
12820 else {
12821 memprintf(err, "expects 'len' or 'id', found '%s'", args[cur_arg]);
12822 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012823 return ACT_RET_PRS_ERR;
Thierry FOURNIER82bf70d2015-05-26 17:58:29 +020012824 }
Willy Tarreaua9083d02015-05-08 15:27:59 +020012825
12826 *orig_arg = cur_arg;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012827 return ACT_RET_PRS_OK;
Willy Tarreaua9083d02015-05-08 15:27:59 +020012828}
12829
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012830/* This function executes the "capture" action and store the result in a
12831 * capture slot if exists. It executes a fetch expression, turns the result
12832 * into a string and puts it in a capture slot. It always returns 1. If an
12833 * error occurs the action is cancelled, but the rule processing continues.
12834 */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012835enum act_return http_action_res_capture_by_id(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +020012836 struct session *sess, struct stream *s, int flags)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012837{
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012838 struct sample *key;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012839 struct cap_hdr *h;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012840 char **cap = s->res_cap;
12841 struct proxy *fe = strm_fe(s);
12842 int len;
12843 int i;
12844
12845 /* Look for the original configuration. */
12846 for (h = fe->rsp_cap, i = fe->nb_rsp_cap - 1;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012847 h != NULL && i != rule->arg.capid.idx ;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012848 i--, h = h->next);
12849 if (!h)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012850 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012851
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012852 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012853 if (!key)
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012854 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012855
12856 if (cap[h->index] == NULL)
12857 cap[h->index] = pool_alloc2(h->pool);
12858
12859 if (cap[h->index] == NULL) /* no more capture memory */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012860 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012861
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012862 len = key->data.u.str.len;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012863 if (len > h->len)
12864 len = h->len;
12865
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020012866 memcpy(cap[h->index], key->data.u.str.str, len);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012867 cap[h->index][len] = 0;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +020012868 return ACT_RET_CONT;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012869}
12870
12871/* parse an "http-response capture" action. It takes a single argument which is
12872 * a sample fetch expression. It stores the expression into arg->act.p[0] and
12873 * the allocated hdr_cap struct od the preallocated id into arg->act.p[1].
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012874 * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error.
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012875 */
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012876enum act_parse_ret parse_http_res_capture(const char **args, int *orig_arg, struct proxy *px,
12877 struct act_rule *rule, char **err)
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012878{
12879 struct sample_expr *expr;
12880 int cur_arg;
12881 int id;
12882 char *error;
12883
12884 for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++)
12885 if (strcmp(args[cur_arg], "if") == 0 ||
12886 strcmp(args[cur_arg], "unless") == 0)
12887 break;
12888
12889 if (cur_arg < *orig_arg + 3) {
Willy Tarreau29bdb1c2016-06-24 15:36:34 +020012890 memprintf(err, "expects <expression> id <idx>");
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012891 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012892 }
12893
12894 cur_arg = *orig_arg;
12895 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
12896 if (!expr)
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012897 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012898
12899 if (!(expr->fetch->val & SMP_VAL_FE_HRS_HDR)) {
12900 memprintf(err,
12901 "fetch method '%s' extracts information from '%s', none of which is available here",
12902 args[cur_arg-1], sample_src_names(expr->fetch->use));
12903 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012904 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012905 }
12906
12907 if (!args[cur_arg] || !*args[cur_arg]) {
Willy Tarreau29bdb1c2016-06-24 15:36:34 +020012908 memprintf(err, "expects 'id'");
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012909 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012910 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012911 }
12912
12913 if (strcmp(args[cur_arg], "id") != 0) {
12914 memprintf(err, "expects 'id', found '%s'", args[cur_arg]);
12915 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012916 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012917 }
12918
12919 cur_arg++;
12920
12921 if (!args[cur_arg]) {
12922 memprintf(err, "missing id value");
12923 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012924 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012925 }
12926
12927 id = strtol(args[cur_arg], &error, 10);
12928 if (*error != '\0') {
12929 memprintf(err, "cannot parse id '%s'", args[cur_arg]);
12930 free(expr);
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012931 return ACT_RET_PRS_ERR;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012932 }
12933 cur_arg++;
12934
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012935 proxy->conf.args.ctx = ARGC_CAP;
12936
Thierry FOURNIER42148732015-09-02 17:17:33 +020012937 rule->action = ACT_CUSTOM;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012938 rule->action_ptr = http_action_res_capture_by_id;
Thierry FOURNIERe2097972015-07-31 08:56:35 +020012939 rule->arg.capid.expr = expr;
12940 rule->arg.capid.idx = id;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012941
12942 *orig_arg = cur_arg;
Thierry FOURNIERafa80492015-08-19 09:04:15 +020012943 return ACT_RET_PRS_OK;
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020012944}
12945
William Lallemand73025dd2014-04-24 14:38:37 +020012946/*
12947 * Return the struct http_req_action_kw associated to a keyword.
12948 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012949struct action_kw *action_http_req_custom(const char *kw)
William Lallemand73025dd2014-04-24 14:38:37 +020012950{
Thierry FOURNIER322a1242015-08-19 09:07:47 +020012951 return action_lookup(&http_req_keywords.list, kw);
William Lallemand73025dd2014-04-24 14:38:37 +020012952}
12953
12954/*
12955 * Return the struct http_res_action_kw associated to a keyword.
12956 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +020012957struct action_kw *action_http_res_custom(const char *kw)
William Lallemand73025dd2014-04-24 14:38:37 +020012958{
Thierry FOURNIER322a1242015-08-19 09:07:47 +020012959 return action_lookup(&http_res_keywords.list, kw);
William Lallemand73025dd2014-04-24 14:38:37 +020012960}
12961
Willy Tarreau12207b32016-11-22 19:48:51 +010012962
12963/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
12964 * now.
12965 */
12966static int cli_parse_show_errors(char **args, struct appctx *appctx, void *private)
12967{
12968 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
12969 return 1;
12970
Willy Tarreau234ba2d2016-11-25 08:39:10 +010012971 if (*args[2]) {
12972 struct proxy *px;
12973
12974 px = proxy_find_by_name(args[2], 0, 0);
12975 if (px)
12976 appctx->ctx.errors.iid = px->uuid;
12977 else
12978 appctx->ctx.errors.iid = atoi(args[2]);
12979
12980 if (!appctx->ctx.errors.iid) {
12981 appctx->ctx.cli.msg = "No such proxy.\n";
12982 appctx->st0 = CLI_ST_PRINT;
12983 return 1;
12984 }
12985 }
Willy Tarreau12207b32016-11-22 19:48:51 +010012986 else
Willy Tarreau234ba2d2016-11-25 08:39:10 +010012987 appctx->ctx.errors.iid = -1; // dump all proxies
12988
Willy Tarreau35069f82016-11-25 09:16:37 +010012989 appctx->ctx.errors.flag = 0;
12990 if (strcmp(args[3], "request") == 0)
12991 appctx->ctx.errors.flag |= 4; // ignore response
12992 else if (strcmp(args[3], "response") == 0)
12993 appctx->ctx.errors.flag |= 2; // ignore request
Willy Tarreau12207b32016-11-22 19:48:51 +010012994 appctx->ctx.errors.px = NULL;
Willy Tarreau12207b32016-11-22 19:48:51 +010012995 return 0;
12996}
12997
12998/* This function dumps all captured errors onto the stream interface's
12999 * read buffer. It returns 0 if the output buffer is full and it needs
13000 * to be called again, otherwise non-zero.
13001 */
13002static int cli_io_handler_show_errors(struct appctx *appctx)
13003{
13004 struct stream_interface *si = appctx->owner;
13005 extern const char *monthname[12];
13006
13007 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
13008 return 1;
13009
13010 chunk_reset(&trash);
13011
13012 if (!appctx->ctx.errors.px) {
13013 /* the function had not been called yet, let's prepare the
13014 * buffer for a response.
13015 */
13016 struct tm tm;
13017
13018 get_localtime(date.tv_sec, &tm);
13019 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
13020 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
13021 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
13022 error_snapshot_id);
13023
13024 if (bi_putchk(si_ic(si), &trash) == -1) {
13025 /* Socket buffer full. Let's try again later from the same point */
13026 si_applet_cant_put(si);
13027 return 0;
13028 }
13029
13030 appctx->ctx.errors.px = proxy;
Willy Tarreau12207b32016-11-22 19:48:51 +010013031 appctx->ctx.errors.bol = 0;
13032 appctx->ctx.errors.ptr = -1;
13033 }
13034
13035 /* we have two inner loops here, one for the proxy, the other one for
13036 * the buffer.
13037 */
13038 while (appctx->ctx.errors.px) {
13039 struct error_snapshot *es;
13040
Willy Tarreau35069f82016-11-25 09:16:37 +010013041 if ((appctx->ctx.errors.flag & 1) == 0) {
Willy Tarreau12207b32016-11-22 19:48:51 +010013042 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau35069f82016-11-25 09:16:37 +010013043 if (appctx->ctx.errors.flag & 2) // skip req
13044 goto next;
13045 }
13046 else {
Willy Tarreau12207b32016-11-22 19:48:51 +010013047 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau35069f82016-11-25 09:16:37 +010013048 if (appctx->ctx.errors.flag & 4) // skip resp
13049 goto next;
13050 }
Willy Tarreau12207b32016-11-22 19:48:51 +010013051
13052 if (!es->when.tv_sec)
13053 goto next;
13054
13055 if (appctx->ctx.errors.iid >= 0 &&
13056 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
13057 es->oe->uuid != appctx->ctx.errors.iid)
13058 goto next;
13059
13060 if (appctx->ctx.errors.ptr < 0) {
13061 /* just print headers now */
13062
13063 char pn[INET6_ADDRSTRLEN];
13064 struct tm tm;
13065 int port;
13066
13067 get_localtime(es->when.tv_sec, &tm);
13068 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
13069 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
13070 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
13071
13072 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
13073 case AF_INET:
13074 case AF_INET6:
13075 port = get_host_port(&es->src);
13076 break;
13077 default:
13078 port = 0;
13079 }
13080
Willy Tarreau35069f82016-11-25 09:16:37 +010013081 switch (appctx->ctx.errors.flag & 1) {
Willy Tarreau12207b32016-11-22 19:48:51 +010013082 case 0:
13083 chunk_appendf(&trash,
13084 " frontend %s (#%d): invalid request\n"
13085 " backend %s (#%d)",
13086 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
13087 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
13088 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
13089 break;
13090 case 1:
13091 chunk_appendf(&trash,
13092 " backend %s (#%d): invalid response\n"
13093 " frontend %s (#%d)",
13094 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
13095 es->oe->id, es->oe->uuid);
13096 break;
13097 }
13098
13099 chunk_appendf(&trash,
13100 ", server %s (#%d), event #%u\n"
13101 " src %s:%d, session #%d, session flags 0x%08x\n"
Willy Tarreau10e61cb2017-01-04 14:51:22 +010013102 " HTTP msg state %s(%d), msg flags 0x%08x, tx flags 0x%08x\n"
Willy Tarreau12207b32016-11-22 19:48:51 +010013103 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
13104 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
13105 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
13106 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
13107 es->ev_id,
13108 pn, port, es->sid, es->s_flags,
Willy Tarreau10e61cb2017-01-04 14:51:22 +010013109 http_msg_state_str(es->state), es->state, es->m_flags, es->t_flags,
Willy Tarreau12207b32016-11-22 19:48:51 +010013110 es->m_clen, es->m_blen,
13111 es->b_flags, es->b_out, es->b_tot,
13112 es->len, es->b_wrap, es->pos);
13113
13114 if (bi_putchk(si_ic(si), &trash) == -1) {
13115 /* Socket buffer full. Let's try again later from the same point */
13116 si_applet_cant_put(si);
13117 return 0;
13118 }
13119 appctx->ctx.errors.ptr = 0;
13120 appctx->ctx.errors.sid = es->sid;
13121 }
13122
13123 if (appctx->ctx.errors.sid != es->sid) {
13124 /* the snapshot changed while we were dumping it */
13125 chunk_appendf(&trash,
13126 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
13127 if (bi_putchk(si_ic(si), &trash) == -1) {
13128 si_applet_cant_put(si);
13129 return 0;
13130 }
13131 goto next;
13132 }
13133
13134 /* OK, ptr >= 0, so we have to dump the current line */
13135 while (es->buf && appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < global.tune.bufsize) {
13136 int newptr;
13137 int newline;
13138
13139 newline = appctx->ctx.errors.bol;
13140 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->len, &newline, appctx->ctx.errors.ptr);
13141 if (newptr == appctx->ctx.errors.ptr)
13142 return 0;
13143
13144 if (bi_putchk(si_ic(si), &trash) == -1) {
13145 /* Socket buffer full. Let's try again later from the same point */
13146 si_applet_cant_put(si);
13147 return 0;
13148 }
13149 appctx->ctx.errors.ptr = newptr;
13150 appctx->ctx.errors.bol = newline;
13151 };
13152 next:
13153 appctx->ctx.errors.bol = 0;
13154 appctx->ctx.errors.ptr = -1;
Willy Tarreau35069f82016-11-25 09:16:37 +010013155 appctx->ctx.errors.flag ^= 1;
13156 if (!(appctx->ctx.errors.flag & 1))
Willy Tarreau12207b32016-11-22 19:48:51 +010013157 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau12207b32016-11-22 19:48:51 +010013158 }
13159
13160 /* dump complete */
13161 return 1;
13162}
13163
13164/* register cli keywords */
13165static struct cli_kw_list cli_kws = {{ },{
13166 { { "show", "errors", NULL },
13167 "show errors : report last request and response errors for each proxy",
13168 cli_parse_show_errors, cli_io_handler_show_errors, NULL,
13169 },
13170 {{},}
13171}};
13172
Willy Tarreau4a568972010-05-12 08:08:50 +020013173/************************************************************************/
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013174/* All supported ACL keywords must be declared here. */
13175/************************************************************************/
13176
13177/* Note: must not be declared <const> as its list will be overwritten.
13178 * Please take care of keeping this list alphabetically sorted.
13179 */
Willy Tarreaudc13c112013-06-21 23:16:39 +020013180static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013181 { "base", "base", PAT_MATCH_STR },
13182 { "base_beg", "base", PAT_MATCH_BEG },
13183 { "base_dir", "base", PAT_MATCH_DIR },
13184 { "base_dom", "base", PAT_MATCH_DOM },
13185 { "base_end", "base", PAT_MATCH_END },
13186 { "base_len", "base", PAT_MATCH_LEN },
13187 { "base_reg", "base", PAT_MATCH_REG },
13188 { "base_sub", "base", PAT_MATCH_SUB },
Willy Tarreaua7ad50c2012-04-29 15:39:40 +020013189
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013190 { "cook", "req.cook", PAT_MATCH_STR },
13191 { "cook_beg", "req.cook", PAT_MATCH_BEG },
13192 { "cook_dir", "req.cook", PAT_MATCH_DIR },
13193 { "cook_dom", "req.cook", PAT_MATCH_DOM },
13194 { "cook_end", "req.cook", PAT_MATCH_END },
13195 { "cook_len", "req.cook", PAT_MATCH_LEN },
13196 { "cook_reg", "req.cook", PAT_MATCH_REG },
13197 { "cook_sub", "req.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013198
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013199 { "hdr", "req.hdr", PAT_MATCH_STR },
13200 { "hdr_beg", "req.hdr", PAT_MATCH_BEG },
13201 { "hdr_dir", "req.hdr", PAT_MATCH_DIR },
13202 { "hdr_dom", "req.hdr", PAT_MATCH_DOM },
13203 { "hdr_end", "req.hdr", PAT_MATCH_END },
13204 { "hdr_len", "req.hdr", PAT_MATCH_LEN },
13205 { "hdr_reg", "req.hdr", PAT_MATCH_REG },
13206 { "hdr_sub", "req.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013207
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013208 /* these two declarations uses strings with list storage (in place
13209 * of tree storage). The basic match is PAT_MATCH_STR, but the indexation
13210 * and delete functions are relative to the list management. The parse
13211 * and match method are related to the corresponding fetch methods. This
13212 * is very particular ACL declaration mode.
13213 */
13214 { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth },
13215 { "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 +020013216
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013217 { "path", "path", PAT_MATCH_STR },
13218 { "path_beg", "path", PAT_MATCH_BEG },
13219 { "path_dir", "path", PAT_MATCH_DIR },
13220 { "path_dom", "path", PAT_MATCH_DOM },
13221 { "path_end", "path", PAT_MATCH_END },
13222 { "path_len", "path", PAT_MATCH_LEN },
13223 { "path_reg", "path", PAT_MATCH_REG },
13224 { "path_sub", "path", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013225
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013226 { "req_ver", "req.ver", PAT_MATCH_STR },
13227 { "resp_ver", "res.ver", PAT_MATCH_STR },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013228
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013229 { "scook", "res.cook", PAT_MATCH_STR },
13230 { "scook_beg", "res.cook", PAT_MATCH_BEG },
13231 { "scook_dir", "res.cook", PAT_MATCH_DIR },
13232 { "scook_dom", "res.cook", PAT_MATCH_DOM },
13233 { "scook_end", "res.cook", PAT_MATCH_END },
13234 { "scook_len", "res.cook", PAT_MATCH_LEN },
13235 { "scook_reg", "res.cook", PAT_MATCH_REG },
13236 { "scook_sub", "res.cook", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013237
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013238 { "shdr", "res.hdr", PAT_MATCH_STR },
13239 { "shdr_beg", "res.hdr", PAT_MATCH_BEG },
13240 { "shdr_dir", "res.hdr", PAT_MATCH_DIR },
13241 { "shdr_dom", "res.hdr", PAT_MATCH_DOM },
13242 { "shdr_end", "res.hdr", PAT_MATCH_END },
13243 { "shdr_len", "res.hdr", PAT_MATCH_LEN },
13244 { "shdr_reg", "res.hdr", PAT_MATCH_REG },
13245 { "shdr_sub", "res.hdr", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013246
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013247 { "url", "url", PAT_MATCH_STR },
13248 { "url_beg", "url", PAT_MATCH_BEG },
13249 { "url_dir", "url", PAT_MATCH_DIR },
13250 { "url_dom", "url", PAT_MATCH_DOM },
13251 { "url_end", "url", PAT_MATCH_END },
13252 { "url_len", "url", PAT_MATCH_LEN },
13253 { "url_reg", "url", PAT_MATCH_REG },
13254 { "url_sub", "url", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013255
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +010013256 { "urlp", "urlp", PAT_MATCH_STR },
13257 { "urlp_beg", "urlp", PAT_MATCH_BEG },
13258 { "urlp_dir", "urlp", PAT_MATCH_DIR },
13259 { "urlp_dom", "urlp", PAT_MATCH_DOM },
13260 { "urlp_end", "urlp", PAT_MATCH_END },
13261 { "urlp_len", "urlp", PAT_MATCH_LEN },
13262 { "urlp_reg", "urlp", PAT_MATCH_REG },
13263 { "urlp_sub", "urlp", PAT_MATCH_SUB },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013264
Willy Tarreau8ed669b2013-01-11 15:49:37 +010013265 { /* END */ },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020013266}};
13267
13268/************************************************************************/
13269/* All supported pattern keywords must be declared here. */
Willy Tarreau4a568972010-05-12 08:08:50 +020013270/************************************************************************/
13271/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +020013272static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013273 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013274 { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013275 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
13276
Willy Tarreau87b09662015-04-03 00:22:06 +020013277 /* capture are allocated and are permanent in the stream */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020013278 { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020013279
13280 /* retrieve these captures from the HTTP logs */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020013281 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
13282 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
13283 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
Willy Tarreau3c1b5ec2014-04-24 23:41:57 +020013284
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020013285 { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
13286 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
William Lallemanda43ba4e2014-01-28 18:14:25 +010013287
Willy Tarreau409bcde2013-01-08 00:31:00 +010013288 /* cookie is valid in both directions (eg: for "stick ...") but cook*
13289 * are only here to match the ACL's name, are request-only and are used
13290 * for ACL compatibility only.
13291 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013292 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
13293 { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013294 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
13295 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013296
13297 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
13298 * only here to match the ACL's name, are request-only and are used for
13299 * ACL compatibility only.
13300 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013301 { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013302 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013303 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013304 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013305
Willy Tarreau0a0daec2013-04-02 22:44:58 +020013306 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013307 { "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 +010013308 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Thierry FOURNIERd4373142013-12-17 01:10:10 +010013309 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013310 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau49ad95c2015-01-19 15:06:26 +010013311 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013312
13313 /* HTTP protocol on the request path */
13314 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013315 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013316
13317 /* HTTP version on the request path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013318 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
13319 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013320
Willy Tarreaua5910cc2015-05-02 00:46:08 +020013321 { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013322 { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
13323 { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIERe28c4992015-05-19 14:45:09 +020013324 { "req.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreaua5910cc2015-05-02 00:46:08 +020013325
Willy Tarreau18ed2562013-01-14 15:56:36 +010013326 /* HTTP version on the response path */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013327 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
13328 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013329
Willy Tarreau18ed2562013-01-14 15:56:36 +010013330 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013331 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013332 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
13333 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013334
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013335 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013336 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013337 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013338 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013339 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010013340 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013341 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013342
13343 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013344 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013345 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
13346 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013347
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013348 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013349 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013350 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013351 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013352 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Willy Tarreaueb27ec72015-02-20 13:55:29 +010013353 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013354 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau18ed2562013-01-14 15:56:36 +010013355
Willy Tarreau409bcde2013-01-08 00:31:00 +010013356 /* scook is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013357 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013358 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
13359 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013360 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
Willy Tarreau409bcde2013-01-08 00:31:00 +010013361
13362 /* shdr is valid only on the response and is used for ACL compatibility */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013363 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013364 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013365 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013366 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013367
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013368 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
Thierry Fournier0e00dca2016-04-07 15:47:40 +020013369 { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +010013370 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013371 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Neil - HAProxy List39c63c52013-11-04 13:48:42 +000013372 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013373 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013374 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau1ede1da2015-05-07 16:06:18 +020013375 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
13376 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013377 { "urlp_val", smp_fetch_url_param_val, ARG2(0,STR,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Willy Tarreau409bcde2013-01-08 00:31:00 +010013378 { /* END */ },
Willy Tarreau4a568972010-05-12 08:08:50 +020013379}};
13380
Willy Tarreau8797c062007-05-07 00:55:35 +020013381
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013382/************************************************************************/
13383/* All supported converter keywords must be declared here. */
13384/************************************************************************/
Willy Tarreau276fae92013-07-25 14:36:01 +020013385/* Note: must not be declared <const> as its list will be overwritten */
13386static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +020013387 { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_T_STR},
Thierry FOURNIERad903512014-04-11 17:51:01 +020013388 { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020013389 { "capture-req", smp_conv_req_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
13390 { "capture-res", smp_conv_res_capture, ARG1(1,SINT), NULL, SMP_T_STR, SMP_T_STR},
Thierry FOURNIER82ff3c92015-05-07 15:46:20 +020013391 { "url_dec", sample_conv_url_dec, 0, NULL, SMP_T_STR, SMP_T_STR},
Willy Tarreau276fae92013-07-25 14:36:01 +020013392 { NULL, NULL, 0, 0, 0 },
13393}};
13394
Thierry FOURNIER35ab2752015-05-28 13:22:03 +020013395
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013396/************************************************************************/
13397/* All supported http-request action keywords must be declared here. */
13398/************************************************************************/
Thierry FOURNIER36481b82015-08-19 09:01:53 +020013399struct action_kw_list http_req_actions = {
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013400 .kw = {
Willy Tarreaua9083d02015-05-08 15:27:59 +020013401 { "capture", parse_http_req_capture },
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013402 { "set-method", parse_set_req_line },
13403 { "set-path", parse_set_req_line },
13404 { "set-query", parse_set_req_line },
13405 { "set-uri", parse_set_req_line },
Willy Tarreaucb703b02015-04-03 09:52:01 +020013406 { NULL, NULL }
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013407 }
13408};
13409
Thierry FOURNIER36481b82015-08-19 09:01:53 +020013410struct action_kw_list http_res_actions = {
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020013411 .kw = {
13412 { "capture", parse_http_res_capture },
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +020013413 { "set-status", parse_http_set_status },
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020013414 { NULL, NULL }
13415 }
13416};
13417
Willy Tarreau8797c062007-05-07 00:55:35 +020013418__attribute__((constructor))
13419static void __http_protocol_init(void)
13420{
13421 acl_register_keywords(&acl_kws);
Willy Tarreau12785782012-04-27 21:37:17 +020013422 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreau276fae92013-07-25 14:36:01 +020013423 sample_register_convs(&sample_conv_kws);
Willy Tarreaua0dc23f2015-01-22 20:46:11 +010013424 http_req_keywords_register(&http_req_actions);
Thierry FOURNIERe80fada2015-05-26 18:06:31 +020013425 http_res_keywords_register(&http_res_actions);
Willy Tarreau12207b32016-11-22 19:48:51 +010013426 cli_register_kw(&cli_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +020013427}
13428
13429
Willy Tarreau58f10d72006-12-04 02:26:12 +010013430/*
Willy Tarreaubaaee002006-06-26 02:48:02 +020013431 * Local variables:
13432 * c-indent-level: 8
13433 * c-basic-offset: 8
13434 * End:
13435 */