Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP protocol analyzer |
| 3 | * |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4 | * Copyright 2000-2011 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 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 Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 20 | #include <time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #include <sys/socket.h> |
| 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
| 25 | |
Willy Tarreau | b05405a | 2012-01-23 15:35:52 +0100 | [diff] [blame] | 26 | #include <netinet/tcp.h> |
| 27 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 28 | #include <common/appsession.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 29 | #include <common/base64.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 30 | #include <common/chunk.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 31 | #include <common/compat.h> |
| 32 | #include <common/config.h> |
Willy Tarreau | a4cd1f5 | 2006-12-16 19:57:26 +0100 | [diff] [blame] | 33 | #include <common/debug.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 34 | #include <common/memory.h> |
| 35 | #include <common/mini-clist.h> |
| 36 | #include <common/standard.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 37 | #include <common/ticks.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 38 | #include <common/time.h> |
| 39 | #include <common/uri_auth.h> |
| 40 | #include <common/version.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | |
| 42 | #include <types/capture.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 43 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 45 | #include <proto/acl.h> |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 46 | #include <proto/arg.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 47 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 49 | #include <proto/channel.h> |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 50 | #include <proto/checks.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 51 | #include <proto/compression.h> |
Willy Tarreau | 9186126 | 2007-10-17 17:06:05 +0200 | [diff] [blame] | 52 | #include <proto/dumpstats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 53 | #include <proto/fd.h> |
Willy Tarreau | 03fa5df | 2010-05-24 21:02:37 +0200 | [diff] [blame] | 54 | #include <proto/frontend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 55 | #include <proto/log.h> |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 56 | #include <proto/hdr_idx.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 57 | #include <proto/pattern.h> |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 58 | #include <proto/proto_tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 59 | #include <proto/proto_http.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 60 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 61 | #include <proto/queue.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 62 | #include <proto/sample.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 63 | #include <proto/server.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 64 | #include <proto/stream.h> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 65 | #include <proto/stream_interface.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | #include <proto/task.h> |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 67 | #include <proto/pattern.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 68 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 69 | const char HTTP_100[] = |
| 70 | "HTTP/1.1 100 Continue\r\n\r\n"; |
| 71 | |
| 72 | const struct chunk http_100_chunk = { |
| 73 | .str = (char *)&HTTP_100, |
| 74 | .len = sizeof(HTTP_100)-1 |
| 75 | }; |
| 76 | |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 77 | /* Warning: no "connection" header is provided with the 3xx messages below */ |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 78 | const char *HTTP_301 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 79 | "HTTP/1.1 301 Moved Permanently\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 80 | "Content-length: 0\r\n" |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 81 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 82 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 83 | const char *HTTP_302 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 84 | "HTTP/1.1 302 Found\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 85 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 86 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 87 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 88 | |
| 89 | /* same as 302 except that the browser MUST retry with the GET method */ |
| 90 | const char *HTTP_303 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 91 | "HTTP/1.1 303 See Other\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 92 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 93 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 94 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 95 | |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 96 | |
| 97 | /* same as 302 except that the browser MUST retry with the same method */ |
| 98 | const char *HTTP_307 = |
| 99 | "HTTP/1.1 307 Temporary Redirect\r\n" |
| 100 | "Cache-Control: no-cache\r\n" |
| 101 | "Content-length: 0\r\n" |
| 102 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 103 | |
| 104 | /* same as 301 except that the browser MUST retry with the same method */ |
| 105 | const char *HTTP_308 = |
| 106 | "HTTP/1.1 308 Permanent Redirect\r\n" |
| 107 | "Content-length: 0\r\n" |
| 108 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 109 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 110 | /* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */ |
| 111 | const char *HTTP_401_fmt = |
| 112 | "HTTP/1.0 401 Unauthorized\r\n" |
| 113 | "Cache-Control: no-cache\r\n" |
| 114 | "Connection: close\r\n" |
Willy Tarreau | 791d66d | 2006-07-08 16:53:38 +0200 | [diff] [blame] | 115 | "Content-Type: text/html\r\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 116 | "WWW-Authenticate: Basic realm=\"%s\"\r\n" |
| 117 | "\r\n" |
| 118 | "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
| 119 | |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 120 | const char *HTTP_407_fmt = |
| 121 | "HTTP/1.0 407 Unauthorized\r\n" |
| 122 | "Cache-Control: no-cache\r\n" |
| 123 | "Connection: close\r\n" |
| 124 | "Content-Type: text/html\r\n" |
| 125 | "Proxy-Authenticate: Basic realm=\"%s\"\r\n" |
| 126 | "\r\n" |
Godbach | 1f1fae6 | 2014-12-17 16:32:05 +0800 | [diff] [blame] | 127 | "<html><body><h1>407 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 128 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 129 | |
| 130 | const int http_err_codes[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 131 | [HTTP_ERR_200] = 200, /* used by "monitor-uri" */ |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 132 | [HTTP_ERR_400] = 400, |
| 133 | [HTTP_ERR_403] = 403, |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 134 | [HTTP_ERR_405] = 405, |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 135 | [HTTP_ERR_408] = 408, |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 136 | [HTTP_ERR_429] = 429, |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 137 | [HTTP_ERR_500] = 500, |
| 138 | [HTTP_ERR_502] = 502, |
| 139 | [HTTP_ERR_503] = 503, |
| 140 | [HTTP_ERR_504] = 504, |
| 141 | }; |
| 142 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 143 | static const char *http_err_msgs[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 144 | [HTTP_ERR_200] = |
| 145 | "HTTP/1.0 200 OK\r\n" |
| 146 | "Cache-Control: no-cache\r\n" |
| 147 | "Connection: close\r\n" |
| 148 | "Content-Type: text/html\r\n" |
| 149 | "\r\n" |
| 150 | "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n", |
| 151 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 152 | [HTTP_ERR_400] = |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 153 | "HTTP/1.0 400 Bad request\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 154 | "Cache-Control: no-cache\r\n" |
| 155 | "Connection: close\r\n" |
| 156 | "Content-Type: text/html\r\n" |
| 157 | "\r\n" |
| 158 | "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n", |
| 159 | |
| 160 | [HTTP_ERR_403] = |
| 161 | "HTTP/1.0 403 Forbidden\r\n" |
| 162 | "Cache-Control: no-cache\r\n" |
| 163 | "Connection: close\r\n" |
| 164 | "Content-Type: text/html\r\n" |
| 165 | "\r\n" |
| 166 | "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n", |
| 167 | |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 168 | [HTTP_ERR_405] = |
| 169 | "HTTP/1.0 405 Method Not Allowed\r\n" |
| 170 | "Cache-Control: no-cache\r\n" |
| 171 | "Connection: close\r\n" |
| 172 | "Content-Type: text/html\r\n" |
| 173 | "\r\n" |
| 174 | "<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", |
| 175 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 176 | [HTTP_ERR_408] = |
| 177 | "HTTP/1.0 408 Request Time-out\r\n" |
| 178 | "Cache-Control: no-cache\r\n" |
| 179 | "Connection: close\r\n" |
| 180 | "Content-Type: text/html\r\n" |
| 181 | "\r\n" |
| 182 | "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n", |
| 183 | |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 184 | [HTTP_ERR_429] = |
| 185 | "HTTP/1.0 429 Too Many Requests\r\n" |
| 186 | "Cache-Control: no-cache\r\n" |
| 187 | "Connection: close\r\n" |
| 188 | "Content-Type: text/html\r\n" |
| 189 | "\r\n" |
| 190 | "<html><body><h1>429 Too Many Requests</h1>\nYou have sent too many requests in a given amount of time.\n</body></html>\n", |
| 191 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 192 | [HTTP_ERR_500] = |
| 193 | "HTTP/1.0 500 Server Error\r\n" |
| 194 | "Cache-Control: no-cache\r\n" |
| 195 | "Connection: close\r\n" |
| 196 | "Content-Type: text/html\r\n" |
| 197 | "\r\n" |
| 198 | "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n", |
| 199 | |
| 200 | [HTTP_ERR_502] = |
| 201 | "HTTP/1.0 502 Bad Gateway\r\n" |
| 202 | "Cache-Control: no-cache\r\n" |
| 203 | "Connection: close\r\n" |
| 204 | "Content-Type: text/html\r\n" |
| 205 | "\r\n" |
| 206 | "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n", |
| 207 | |
| 208 | [HTTP_ERR_503] = |
| 209 | "HTTP/1.0 503 Service Unavailable\r\n" |
| 210 | "Cache-Control: no-cache\r\n" |
| 211 | "Connection: close\r\n" |
| 212 | "Content-Type: text/html\r\n" |
| 213 | "\r\n" |
| 214 | "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n", |
| 215 | |
| 216 | [HTTP_ERR_504] = |
| 217 | "HTTP/1.0 504 Gateway Time-out\r\n" |
| 218 | "Cache-Control: no-cache\r\n" |
| 219 | "Connection: close\r\n" |
| 220 | "Content-Type: text/html\r\n" |
| 221 | "\r\n" |
| 222 | "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n", |
| 223 | |
| 224 | }; |
| 225 | |
Cyril Bonté | 19979e1 | 2012-04-04 12:57:21 +0200 | [diff] [blame] | 226 | /* status codes available for the stats admin page (strictly 4 chars length) */ |
| 227 | const char *stat_status_codes[STAT_STATUS_SIZE] = { |
| 228 | [STAT_STATUS_DENY] = "DENY", |
| 229 | [STAT_STATUS_DONE] = "DONE", |
| 230 | [STAT_STATUS_ERRP] = "ERRP", |
| 231 | [STAT_STATUS_EXCD] = "EXCD", |
| 232 | [STAT_STATUS_NONE] = "NONE", |
| 233 | [STAT_STATUS_PART] = "PART", |
| 234 | [STAT_STATUS_UNKN] = "UNKN", |
| 235 | }; |
| 236 | |
| 237 | |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 238 | /* List head of all known action keywords for "http-request" */ |
| 239 | struct http_req_action_kw_list http_req_keywords = { |
| 240 | .list = LIST_HEAD_INIT(http_req_keywords.list) |
| 241 | }; |
| 242 | |
| 243 | /* List head of all known action keywords for "http-response" */ |
| 244 | struct http_res_action_kw_list http_res_keywords = { |
| 245 | .list = LIST_HEAD_INIT(http_res_keywords.list) |
| 246 | }; |
| 247 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 248 | /* We must put the messages here since GCC cannot initialize consts depending |
| 249 | * on strlen(). |
| 250 | */ |
| 251 | struct chunk http_err_chunks[HTTP_ERR_SIZE]; |
| 252 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 253 | /* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */ |
| 254 | static struct hdr_ctx static_hdr_ctx; |
| 255 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 256 | #define FD_SETS_ARE_BITFIELDS |
| 257 | #ifdef FD_SETS_ARE_BITFIELDS |
| 258 | /* |
| 259 | * This map is used with all the FD_* macros to check whether a particular bit |
| 260 | * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes |
| 261 | * which should be encoded. When FD_ISSET() returns non-zero, it means that the |
| 262 | * byte should be encoded. Be careful to always pass bytes from 0 to 255 |
| 263 | * exclusively to the macros. |
| 264 | */ |
| 265 | fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
| 266 | fd_set url_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 267 | fd_set http_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 268 | |
| 269 | #else |
| 270 | #error "Check if your OS uses bitfields for fd_sets" |
| 271 | #endif |
| 272 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 273 | static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn); |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 274 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 275 | void init_proto_http() |
| 276 | { |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 277 | int i; |
| 278 | char *tmp; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 279 | int msg; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 280 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 281 | for (msg = 0; msg < HTTP_ERR_SIZE; msg++) { |
| 282 | if (!http_err_msgs[msg]) { |
| 283 | Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg); |
| 284 | abort(); |
| 285 | } |
| 286 | |
| 287 | http_err_chunks[msg].str = (char *)http_err_msgs[msg]; |
| 288 | http_err_chunks[msg].len = strlen(http_err_msgs[msg]); |
| 289 | } |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 290 | |
| 291 | /* initialize the log header encoding map : '{|}"#' should be encoded with |
| 292 | * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ). |
| 293 | * URL encoding only requires '"', '#' to be encoded as well as non- |
| 294 | * printable characters above. |
| 295 | */ |
| 296 | memset(hdr_encode_map, 0, sizeof(hdr_encode_map)); |
| 297 | memset(url_encode_map, 0, sizeof(url_encode_map)); |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 298 | memset(http_encode_map, 0, sizeof(url_encode_map)); |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 299 | for (i = 0; i < 32; i++) { |
| 300 | FD_SET(i, hdr_encode_map); |
| 301 | FD_SET(i, url_encode_map); |
| 302 | } |
| 303 | for (i = 127; i < 256; i++) { |
| 304 | FD_SET(i, hdr_encode_map); |
| 305 | FD_SET(i, url_encode_map); |
| 306 | } |
| 307 | |
| 308 | tmp = "\"#{|}"; |
| 309 | while (*tmp) { |
| 310 | FD_SET(*tmp, hdr_encode_map); |
| 311 | tmp++; |
| 312 | } |
| 313 | |
| 314 | tmp = "\"#"; |
| 315 | while (*tmp) { |
| 316 | FD_SET(*tmp, url_encode_map); |
| 317 | tmp++; |
| 318 | } |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 319 | |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 320 | /* initialize the http header encoding map. The draft httpbis define the |
| 321 | * header content as: |
| 322 | * |
| 323 | * HTTP-message = start-line |
| 324 | * *( header-field CRLF ) |
| 325 | * CRLF |
| 326 | * [ message-body ] |
| 327 | * header-field = field-name ":" OWS field-value OWS |
| 328 | * field-value = *( field-content / obs-fold ) |
| 329 | * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] |
| 330 | * obs-fold = CRLF 1*( SP / HTAB ) |
| 331 | * field-vchar = VCHAR / obs-text |
| 332 | * VCHAR = %x21-7E |
| 333 | * obs-text = %x80-FF |
| 334 | * |
| 335 | * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB. |
| 336 | * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The |
| 337 | * "obs-fold" is volontary forgotten because haproxy remove this. |
| 338 | */ |
| 339 | memset(http_encode_map, 0, sizeof(http_encode_map)); |
| 340 | for (i = 0x00; i <= 0x08; i++) |
| 341 | FD_SET(i, http_encode_map); |
| 342 | for (i = 0x0a; i <= 0x1f; i++) |
| 343 | FD_SET(i, http_encode_map); |
| 344 | FD_SET(0x7f, http_encode_map); |
| 345 | |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 346 | /* memory allocations */ |
Willy Tarreau | 63986c7 | 2015-04-03 22:55:33 +0200 | [diff] [blame] | 347 | pool2_http_txn = create_pool("http_txn", sizeof(struct http_txn), MEM_F_SHARED); |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 348 | pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 349 | pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 350 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 351 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 352 | /* |
| 353 | * We have 26 list of methods (1 per first letter), each of which can have |
| 354 | * up to 3 entries (2 valid, 1 null). |
| 355 | */ |
| 356 | struct http_method_desc { |
Willy Tarreau | c8987b3 | 2013-12-06 23:43:17 +0100 | [diff] [blame] | 357 | enum http_meth_t meth; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 358 | int len; |
| 359 | const char text[8]; |
| 360 | }; |
| 361 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 362 | const struct http_method_desc http_methods[26][3] = { |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 363 | ['C' - 'A'] = { |
| 364 | [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" }, |
| 365 | }, |
| 366 | ['D' - 'A'] = { |
| 367 | [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" }, |
| 368 | }, |
| 369 | ['G' - 'A'] = { |
| 370 | [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" }, |
| 371 | }, |
| 372 | ['H' - 'A'] = { |
| 373 | [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" }, |
| 374 | }, |
| 375 | ['P' - 'A'] = { |
| 376 | [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" }, |
| 377 | [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" }, |
| 378 | }, |
| 379 | ['T' - 'A'] = { |
| 380 | [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" }, |
| 381 | }, |
| 382 | /* rest is empty like this : |
| 383 | * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" }, |
| 384 | */ |
| 385 | }; |
| 386 | |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 387 | const struct http_method_name http_known_methods[HTTP_METH_OTHER] = { |
| 388 | [HTTP_METH_NONE] = { "", 0 }, |
| 389 | [HTTP_METH_OPTIONS] = { "OPTIONS", 7 }, |
| 390 | [HTTP_METH_GET] = { "GET", 3 }, |
| 391 | [HTTP_METH_HEAD] = { "HEAD", 4 }, |
| 392 | [HTTP_METH_POST] = { "POST", 4 }, |
| 393 | [HTTP_METH_PUT] = { "PUT", 3 }, |
| 394 | [HTTP_METH_DELETE] = { "DELETE", 6 }, |
| 395 | [HTTP_METH_TRACE] = { "TRACE", 5 }, |
| 396 | [HTTP_METH_CONNECT] = { "CONNECT", 7 }, |
| 397 | }; |
| 398 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 399 | /* It is about twice as fast on recent architectures to lookup a byte in a |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 400 | * table than to perform a boolean AND or OR between two tests. Refer to |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 401 | * RFC2616 for those chars. |
| 402 | */ |
| 403 | |
| 404 | const char http_is_spht[256] = { |
| 405 | [' '] = 1, ['\t'] = 1, |
| 406 | }; |
| 407 | |
| 408 | const char http_is_crlf[256] = { |
| 409 | ['\r'] = 1, ['\n'] = 1, |
| 410 | }; |
| 411 | |
| 412 | const char http_is_lws[256] = { |
| 413 | [' '] = 1, ['\t'] = 1, |
| 414 | ['\r'] = 1, ['\n'] = 1, |
| 415 | }; |
| 416 | |
| 417 | const char http_is_sep[256] = { |
| 418 | ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1, |
| 419 | ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1, |
| 420 | ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1, |
| 421 | ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1, |
| 422 | [' '] = 1, ['\t'] = 1, ['\\'] = 1, |
| 423 | }; |
| 424 | |
| 425 | const char http_is_ctl[256] = { |
| 426 | [0 ... 31] = 1, |
| 427 | [127] = 1, |
| 428 | }; |
| 429 | |
| 430 | /* |
| 431 | * A token is any ASCII char that is neither a separator nor a CTL char. |
| 432 | * Do not overwrite values in assignment since gcc-2.95 will not handle |
| 433 | * them correctly. Instead, define every non-CTL char's status. |
| 434 | */ |
| 435 | const char http_is_token[256] = { |
| 436 | [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1, |
| 437 | ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1, |
| 438 | ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1, |
| 439 | [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0, |
| 440 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, |
| 441 | ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1, |
| 442 | ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0, |
| 443 | ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0, |
| 444 | ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1, |
| 445 | ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1, |
| 446 | ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1, |
| 447 | ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1, |
| 448 | ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1, |
| 449 | ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1, |
| 450 | ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0, |
| 451 | ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1, |
| 452 | ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1, |
| 453 | ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1, |
| 454 | ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1, |
| 455 | ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1, |
| 456 | ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1, |
| 457 | ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1, |
| 458 | ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0, |
| 459 | ['|'] = 1, ['}'] = 0, ['~'] = 1, |
| 460 | }; |
| 461 | |
| 462 | |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 463 | /* |
| 464 | * An http ver_token is any ASCII which can be found in an HTTP version, |
| 465 | * which includes 'H', 'T', 'P', '/', '.' and any digit. |
| 466 | */ |
| 467 | const char http_is_ver_token[256] = { |
| 468 | ['.'] = 1, ['/'] = 1, |
| 469 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1, |
| 470 | ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1, |
Thierry FOURNIER | 63d692c | 2015-02-28 19:03:56 +0100 | [diff] [blame] | 471 | ['H'] = 1, ['P'] = 1, ['R'] = 1, ['S'] = 1, ['T'] = 1, |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 472 | }; |
| 473 | |
| 474 | |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 475 | /* |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 476 | * Adds a header and its CRLF at the tail of the message's buffer, just before |
| 477 | * the last CRLF. Text length is measured first, so it cannot be NULL. |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 478 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 479 | * of headers is automatically adjusted. The number of bytes added is returned |
| 480 | * on success, otherwise <0 is returned indicating an error. |
| 481 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 482 | int http_header_add_tail(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text) |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 483 | { |
| 484 | int bytes, len; |
| 485 | |
| 486 | len = strlen(text); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 487 | bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 488 | if (!bytes) |
| 489 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 490 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 491 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 492 | } |
| 493 | |
| 494 | /* |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 495 | * Adds a header and its CRLF at the tail of the message's buffer, just before |
| 496 | * the last CRLF. <len> bytes are copied, not counting the CRLF. If <text> is NULL, then |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 497 | * the buffer is only opened and the space reserved, but nothing is copied. |
| 498 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 499 | * of headers is automatically adjusted. The number of bytes added is returned |
| 500 | * on success, otherwise <0 is returned indicating an error. |
| 501 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 502 | int http_header_add_tail2(struct http_msg *msg, |
| 503 | struct hdr_idx *hdr_idx, const char *text, int len) |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 504 | { |
| 505 | int bytes; |
| 506 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 507 | bytes = buffer_insert_line2(msg->chn->buf, msg->chn->buf->p + msg->eoh, text, len); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 508 | if (!bytes) |
| 509 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 510 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 511 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 512 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 513 | |
| 514 | /* |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 515 | * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon. |
| 516 | * If so, returns the position of the first non-space character relative to |
| 517 | * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries |
| 518 | * to return a pointer to the place after the first space. Returns 0 if the |
| 519 | * header name does not match. Checks are case-insensitive. |
| 520 | */ |
| 521 | int http_header_match2(const char *hdr, const char *end, |
| 522 | const char *name, int len) |
| 523 | { |
| 524 | const char *val; |
| 525 | |
| 526 | if (hdr + len >= end) |
| 527 | return 0; |
| 528 | if (hdr[len] != ':') |
| 529 | return 0; |
| 530 | if (strncasecmp(hdr, name, len) != 0) |
| 531 | return 0; |
| 532 | val = hdr + len + 1; |
| 533 | while (val < end && HTTP_IS_SPHT(*val)) |
| 534 | val++; |
| 535 | if ((val >= end) && (len + 2 <= end - hdr)) |
| 536 | return len + 2; /* we may replace starting from second space */ |
| 537 | return val - hdr; |
| 538 | } |
| 539 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 540 | /* Find the first or next occurrence of header <name> in message buffer <sol> |
| 541 | * using headers index <idx>, and return it in the <ctx> structure. This |
| 542 | * structure holds everything necessary to use the header and find next |
| 543 | * occurrence. If its <idx> member is 0, the header is searched from the |
| 544 | * beginning. Otherwise, the next occurrence is returned. The function returns |
| 545 | * 1 when it finds a value, and 0 when there is no more. It is very similar to |
| 546 | * http_find_header2() except that it is designed to work with full-line headers |
| 547 | * whose comma is not a delimiter but is part of the syntax. As a special case, |
| 548 | * if ctx->val is NULL when searching for a new values of a header, the current |
| 549 | * header is rescanned. This allows rescanning after a header deletion. |
| 550 | */ |
| 551 | int http_find_full_header2(const char *name, int len, |
| 552 | char *sol, struct hdr_idx *idx, |
| 553 | struct hdr_ctx *ctx) |
| 554 | { |
| 555 | char *eol, *sov; |
| 556 | int cur_idx, old_idx; |
| 557 | |
| 558 | cur_idx = ctx->idx; |
| 559 | if (cur_idx) { |
| 560 | /* We have previously returned a header, let's search another one */ |
| 561 | sol = ctx->line; |
| 562 | eol = sol + idx->v[cur_idx].len; |
| 563 | goto next_hdr; |
| 564 | } |
| 565 | |
| 566 | /* first request for this header */ |
| 567 | sol += hdr_idx_first_pos(idx); |
| 568 | old_idx = 0; |
| 569 | cur_idx = hdr_idx_first_idx(idx); |
| 570 | while (cur_idx) { |
| 571 | eol = sol + idx->v[cur_idx].len; |
| 572 | |
| 573 | if (len == 0) { |
| 574 | /* No argument was passed, we want any header. |
| 575 | * To achieve this, we simply build a fake request. */ |
| 576 | while (sol + len < eol && sol[len] != ':') |
| 577 | len++; |
| 578 | name = sol; |
| 579 | } |
| 580 | |
| 581 | if ((len < eol - sol) && |
| 582 | (sol[len] == ':') && |
| 583 | (strncasecmp(sol, name, len) == 0)) { |
| 584 | ctx->del = len; |
| 585 | sov = sol + len + 1; |
| 586 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 587 | sov++; |
| 588 | |
| 589 | ctx->line = sol; |
| 590 | ctx->prev = old_idx; |
| 591 | ctx->idx = cur_idx; |
| 592 | ctx->val = sov - sol; |
| 593 | ctx->tws = 0; |
| 594 | while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) { |
| 595 | eol--; |
| 596 | ctx->tws++; |
| 597 | } |
| 598 | ctx->vlen = eol - sov; |
| 599 | return 1; |
| 600 | } |
| 601 | next_hdr: |
| 602 | sol = eol + idx->v[cur_idx].cr + 1; |
| 603 | old_idx = cur_idx; |
| 604 | cur_idx = idx->v[cur_idx].next; |
| 605 | } |
| 606 | return 0; |
| 607 | } |
| 608 | |
Willy Tarreau | c90dc23 | 2015-02-20 13:51:36 +0100 | [diff] [blame] | 609 | /* Find the first or next header field in message buffer <sol> using headers |
| 610 | * index <idx>, and return it in the <ctx> structure. This structure holds |
| 611 | * everything necessary to use the header and find next occurrence. If its |
| 612 | * <idx> member is 0, the first header is retrieved. Otherwise, the next |
| 613 | * occurrence is returned. The function returns 1 when it finds a value, and |
| 614 | * 0 when there is no more. It is equivalent to http_find_full_header2() with |
| 615 | * no header name. |
| 616 | */ |
| 617 | int http_find_next_header(char *sol, struct hdr_idx *idx, struct hdr_ctx *ctx) |
| 618 | { |
| 619 | char *eol, *sov; |
| 620 | int cur_idx, old_idx; |
| 621 | int len; |
| 622 | |
| 623 | cur_idx = ctx->idx; |
| 624 | if (cur_idx) { |
| 625 | /* We have previously returned a header, let's search another one */ |
| 626 | sol = ctx->line; |
| 627 | eol = sol + idx->v[cur_idx].len; |
| 628 | goto next_hdr; |
| 629 | } |
| 630 | |
| 631 | /* first request for this header */ |
| 632 | sol += hdr_idx_first_pos(idx); |
| 633 | old_idx = 0; |
| 634 | cur_idx = hdr_idx_first_idx(idx); |
| 635 | while (cur_idx) { |
| 636 | eol = sol + idx->v[cur_idx].len; |
| 637 | |
| 638 | len = 0; |
| 639 | while (1) { |
| 640 | if (len >= eol - sol) |
| 641 | goto next_hdr; |
| 642 | if (sol[len] == ':') |
| 643 | break; |
| 644 | len++; |
| 645 | } |
| 646 | |
| 647 | ctx->del = len; |
| 648 | sov = sol + len + 1; |
| 649 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 650 | sov++; |
| 651 | |
| 652 | ctx->line = sol; |
| 653 | ctx->prev = old_idx; |
| 654 | ctx->idx = cur_idx; |
| 655 | ctx->val = sov - sol; |
| 656 | ctx->tws = 0; |
| 657 | |
| 658 | while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) { |
| 659 | eol--; |
| 660 | ctx->tws++; |
| 661 | } |
| 662 | ctx->vlen = eol - sov; |
| 663 | return 1; |
| 664 | |
| 665 | next_hdr: |
| 666 | sol = eol + idx->v[cur_idx].cr + 1; |
| 667 | old_idx = cur_idx; |
| 668 | cur_idx = idx->v[cur_idx].next; |
| 669 | } |
| 670 | return 0; |
| 671 | } |
| 672 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 673 | /* Find the end of the header value contained between <s> and <e>. See RFC2616, |
| 674 | * par 2.2 for more information. Note that it requires a valid header to return |
| 675 | * a valid result. This works for headers defined as comma-separated lists. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 676 | */ |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 677 | char *find_hdr_value_end(char *s, const char *e) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 678 | { |
| 679 | int quoted, qdpair; |
| 680 | |
| 681 | quoted = qdpair = 0; |
| 682 | for (; s < e; s++) { |
| 683 | if (qdpair) qdpair = 0; |
Willy Tarreau | 0f7f51f | 2010-08-30 11:06:34 +0200 | [diff] [blame] | 684 | else if (quoted) { |
| 685 | if (*s == '\\') qdpair = 1; |
| 686 | else if (*s == '"') quoted = 0; |
| 687 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 688 | else if (*s == '"') quoted = 1; |
| 689 | else if (*s == ',') return s; |
| 690 | } |
| 691 | return s; |
| 692 | } |
| 693 | |
| 694 | /* Find the first or next occurrence of header <name> in message buffer <sol> |
| 695 | * using headers index <idx>, and return it in the <ctx> structure. This |
| 696 | * structure holds everything necessary to use the header and find next |
| 697 | * occurrence. If its <idx> member is 0, the header is searched from the |
| 698 | * beginning. Otherwise, the next occurrence is returned. The function returns |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 699 | * 1 when it finds a value, and 0 when there is no more. It is designed to work |
| 700 | * with headers defined as comma-separated lists. As a special case, if ctx->val |
| 701 | * is NULL when searching for a new values of a header, the current header is |
| 702 | * rescanned. This allows rescanning after a header deletion. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 703 | */ |
| 704 | int http_find_header2(const char *name, int len, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 705 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 706 | struct hdr_ctx *ctx) |
| 707 | { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 708 | char *eol, *sov; |
| 709 | int cur_idx, old_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 710 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 711 | cur_idx = ctx->idx; |
| 712 | if (cur_idx) { |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 713 | /* We have previously returned a value, let's search |
| 714 | * another one on the same line. |
| 715 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 716 | sol = ctx->line; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 717 | ctx->del = ctx->val + ctx->vlen + ctx->tws; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 718 | sov = sol + ctx->del; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 719 | eol = sol + idx->v[cur_idx].len; |
| 720 | |
| 721 | if (sov >= eol) |
| 722 | /* no more values in this header */ |
| 723 | goto next_hdr; |
| 724 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 725 | /* values remaining for this header, skip the comma but save it |
| 726 | * for later use (eg: for header deletion). |
| 727 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 728 | sov++; |
| 729 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 730 | sov++; |
| 731 | |
| 732 | goto return_hdr; |
| 733 | } |
| 734 | |
| 735 | /* first request for this header */ |
| 736 | sol += hdr_idx_first_pos(idx); |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 737 | old_idx = 0; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 738 | cur_idx = hdr_idx_first_idx(idx); |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 739 | while (cur_idx) { |
| 740 | eol = sol + idx->v[cur_idx].len; |
| 741 | |
Willy Tarreau | 1ad7c6d | 2007-06-10 21:42:55 +0200 | [diff] [blame] | 742 | if (len == 0) { |
| 743 | /* No argument was passed, we want any header. |
| 744 | * To achieve this, we simply build a fake request. */ |
| 745 | while (sol + len < eol && sol[len] != ':') |
| 746 | len++; |
| 747 | name = sol; |
| 748 | } |
| 749 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 750 | if ((len < eol - sol) && |
| 751 | (sol[len] == ':') && |
| 752 | (strncasecmp(sol, name, len) == 0)) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 753 | ctx->del = len; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 754 | sov = sol + len + 1; |
| 755 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 756 | sov++; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 757 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 758 | ctx->line = sol; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 759 | ctx->prev = old_idx; |
| 760 | return_hdr: |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 761 | ctx->idx = cur_idx; |
| 762 | ctx->val = sov - sol; |
| 763 | |
| 764 | eol = find_hdr_value_end(sov, eol); |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 765 | ctx->tws = 0; |
Willy Tarreau | 275600b | 2011-09-16 08:11:26 +0200 | [diff] [blame] | 766 | while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) { |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 767 | eol--; |
| 768 | ctx->tws++; |
| 769 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 770 | ctx->vlen = eol - sov; |
| 771 | return 1; |
| 772 | } |
| 773 | next_hdr: |
| 774 | sol = eol + idx->v[cur_idx].cr + 1; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 775 | old_idx = cur_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 776 | cur_idx = idx->v[cur_idx].next; |
| 777 | } |
| 778 | return 0; |
| 779 | } |
| 780 | |
| 781 | int http_find_header(const char *name, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 782 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 783 | struct hdr_ctx *ctx) |
| 784 | { |
| 785 | return http_find_header2(name, strlen(name), sol, idx, ctx); |
| 786 | } |
| 787 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 788 | /* Remove one value of a header. This only works on a <ctx> returned by one of |
| 789 | * the http_find_header functions. The value is removed, as well as surrounding |
| 790 | * commas if any. If the removed value was alone, the whole header is removed. |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 791 | * The ctx is always updated accordingly, as well as the buffer and HTTP |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 792 | * message <msg>. The new index is returned. If it is zero, it means there is |
| 793 | * no more header, so any processing may stop. The ctx is always left in a form |
| 794 | * that can be handled by http_find_header2() to find next occurrence. |
| 795 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 796 | int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx) |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 797 | { |
| 798 | int cur_idx = ctx->idx; |
| 799 | char *sol = ctx->line; |
| 800 | struct hdr_idx_elem *hdr; |
| 801 | int delta, skip_comma; |
| 802 | |
| 803 | if (!cur_idx) |
| 804 | return 0; |
| 805 | |
| 806 | hdr = &idx->v[cur_idx]; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 807 | if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 808 | /* This was the only value of the header, we must now remove it entirely. */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 809 | delta = buffer_replace2(msg->chn->buf, sol, sol + hdr->len + hdr->cr + 1, NULL, 0); |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 810 | http_msg_move_end(msg, delta); |
| 811 | idx->used--; |
| 812 | hdr->len = 0; /* unused entry */ |
| 813 | idx->v[ctx->prev].next = idx->v[ctx->idx].next; |
Willy Tarreau | 5c4784f | 2011-02-12 13:07:35 +0100 | [diff] [blame] | 814 | if (idx->tail == ctx->idx) |
| 815 | idx->tail = ctx->prev; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 816 | ctx->idx = ctx->prev; /* walk back to the end of previous header */ |
Willy Tarreau | 7c1c217 | 2015-01-07 17:23:50 +0100 | [diff] [blame] | 817 | ctx->line -= idx->v[ctx->idx].len + idx->v[ctx->idx].cr + 1; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 818 | ctx->val = idx->v[ctx->idx].len; /* point to end of previous header */ |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 819 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 820 | return ctx->idx; |
| 821 | } |
| 822 | |
| 823 | /* This was not the only value of this header. We have to remove between |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 824 | * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the |
| 825 | * last entry of the list, we remove the last separator. |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 826 | */ |
| 827 | |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 828 | skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 829 | delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma, |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 830 | sol + ctx->val + ctx->vlen + ctx->tws + skip_comma, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 831 | NULL, 0); |
| 832 | hdr->len += delta; |
| 833 | http_msg_move_end(msg, delta); |
| 834 | ctx->val = ctx->del; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 835 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 836 | return ctx->idx; |
| 837 | } |
| 838 | |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 839 | /* This function handles a server error at the stream interface level. The |
| 840 | * stream interface is assumed to be already in a closed state. An optional |
| 841 | * message is copied into the input buffer, and an HTTP status code stored. |
| 842 | * The error flags are set to the values in arguments. Any pending request |
Willy Tarreau | 6f0aa47 | 2009-03-08 20:33:29 +0100 | [diff] [blame] | 843 | * in this buffer will be lost. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 844 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 845 | static void http_server_error(struct stream *s, struct stream_interface *si, |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 846 | int err, int finst, int status, const struct chunk *msg) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 847 | { |
Willy Tarreau | 2bb4a96 | 2014-11-28 11:11:05 +0100 | [diff] [blame] | 848 | channel_auto_read(si_oc(si)); |
| 849 | channel_abort(si_oc(si)); |
| 850 | channel_auto_close(si_oc(si)); |
| 851 | channel_erase(si_oc(si)); |
| 852 | channel_auto_close(si_ic(si)); |
| 853 | channel_auto_read(si_ic(si)); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 854 | if (status > 0 && msg) { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 855 | s->txn->status = status; |
Willy Tarreau | 2bb4a96 | 2014-11-28 11:11:05 +0100 | [diff] [blame] | 856 | bo_inject(si_ic(si), msg->str, msg->len); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 857 | } |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 858 | if (!(s->flags & SF_ERR_MASK)) |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 859 | s->flags |= err; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 860 | if (!(s->flags & SF_FINST_MASK)) |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 861 | s->flags |= finst; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 862 | } |
| 863 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 864 | /* This function returns the appropriate error location for the given stream |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 865 | * and message. |
| 866 | */ |
| 867 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 868 | struct chunk *http_error_message(struct stream *s, int msgnum) |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 869 | { |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 870 | if (s->be->errmsg[msgnum].str) |
| 871 | return &s->be->errmsg[msgnum]; |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 872 | else if (strm_fe(s)->errmsg[msgnum].str) |
| 873 | return &strm_fe(s)->errmsg[msgnum]; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 874 | else |
| 875 | return &http_err_chunks[msgnum]; |
| 876 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 877 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 878 | /* |
| 879 | * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text |
| 880 | * string), HTTP_METH_OTHER for unknown methods, or the identified method. |
| 881 | */ |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 882 | enum http_meth_t find_http_meth(const char *str, const int len) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 883 | { |
| 884 | unsigned char m; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 885 | const struct http_method_desc *h; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 886 | |
| 887 | m = ((unsigned)*str - 'A'); |
| 888 | |
| 889 | if (m < 26) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 890 | for (h = http_methods[m]; h->len > 0; h++) { |
| 891 | if (unlikely(h->len != len)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 892 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 893 | if (likely(memcmp(str, h->text, h->len) == 0)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 894 | return h->meth; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 895 | }; |
| 896 | return HTTP_METH_OTHER; |
| 897 | } |
| 898 | return HTTP_METH_NONE; |
| 899 | |
| 900 | } |
| 901 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 902 | /* Parse the URI from the given transaction (which is assumed to be in request |
| 903 | * phase) and look for the "/" beginning the PATH. If not found, return NULL. |
| 904 | * It is returned otherwise. |
| 905 | */ |
| 906 | static char * |
| 907 | http_get_path(struct http_txn *txn) |
| 908 | { |
| 909 | char *ptr, *end; |
| 910 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 911 | ptr = txn->req.chn->buf->p + txn->req.sl.rq.u; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 912 | end = ptr + txn->req.sl.rq.u_l; |
| 913 | |
| 914 | if (ptr >= end) |
| 915 | return NULL; |
| 916 | |
| 917 | /* RFC2616, par. 5.1.2 : |
| 918 | * Request-URI = "*" | absuri | abspath | authority |
| 919 | */ |
| 920 | |
| 921 | if (*ptr == '*') |
| 922 | return NULL; |
| 923 | |
| 924 | if (isalpha((unsigned char)*ptr)) { |
| 925 | /* this is a scheme as described by RFC3986, par. 3.1 */ |
| 926 | ptr++; |
| 927 | while (ptr < end && |
| 928 | (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')) |
| 929 | ptr++; |
| 930 | /* skip '://' */ |
| 931 | if (ptr == end || *ptr++ != ':') |
| 932 | return NULL; |
| 933 | if (ptr == end || *ptr++ != '/') |
| 934 | return NULL; |
| 935 | if (ptr == end || *ptr++ != '/') |
| 936 | return NULL; |
| 937 | } |
| 938 | /* skip [user[:passwd]@]host[:[port]] */ |
| 939 | |
| 940 | while (ptr < end && *ptr != '/') |
| 941 | ptr++; |
| 942 | |
| 943 | if (ptr == end) |
| 944 | return NULL; |
| 945 | |
| 946 | /* OK, we got the '/' ! */ |
| 947 | return ptr; |
| 948 | } |
| 949 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 950 | /* Parse the URI from the given string and look for the "/" beginning the PATH. |
| 951 | * If not found, return NULL. It is returned otherwise. |
| 952 | */ |
| 953 | static char * |
| 954 | http_get_path_from_string(char *str) |
| 955 | { |
| 956 | char *ptr = str; |
| 957 | |
| 958 | /* RFC2616, par. 5.1.2 : |
| 959 | * Request-URI = "*" | absuri | abspath | authority |
| 960 | */ |
| 961 | |
| 962 | if (*ptr == '*') |
| 963 | return NULL; |
| 964 | |
| 965 | if (isalpha((unsigned char)*ptr)) { |
| 966 | /* this is a scheme as described by RFC3986, par. 3.1 */ |
| 967 | ptr++; |
| 968 | while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.') |
| 969 | ptr++; |
| 970 | /* skip '://' */ |
| 971 | if (*ptr == '\0' || *ptr++ != ':') |
| 972 | return NULL; |
| 973 | if (*ptr == '\0' || *ptr++ != '/') |
| 974 | return NULL; |
| 975 | if (*ptr == '\0' || *ptr++ != '/') |
| 976 | return NULL; |
| 977 | } |
| 978 | /* skip [user[:passwd]@]host[:[port]] */ |
| 979 | |
| 980 | while (*ptr != '\0' && *ptr != ' ' && *ptr != '/') |
| 981 | ptr++; |
| 982 | |
| 983 | if (*ptr == '\0' || *ptr == ' ') |
| 984 | return NULL; |
| 985 | |
| 986 | /* OK, we got the '/' ! */ |
| 987 | return ptr; |
| 988 | } |
| 989 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 990 | /* Returns a 302 for a redirectable request that reaches a server working in |
| 991 | * in redirect mode. This may only be called just after the stream interface |
| 992 | * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will |
| 993 | * follow normal proxy processing. NOTE: this function is designed to support |
| 994 | * being called once data are scheduled for forwarding. |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 995 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 996 | void http_perform_server_redirect(struct stream *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 997 | { |
| 998 | struct http_txn *txn; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 999 | struct server *srv; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1000 | char *path; |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 1001 | int len, rewind; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1002 | |
| 1003 | /* 1: create the response header */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1004 | trash.len = strlen(HTTP_302); |
| 1005 | memcpy(trash.str, HTTP_302, trash.len); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1006 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1007 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1008 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1009 | /* 2: add the server's prefix */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1010 | if (trash.len + srv->rdr_len > trash.size) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1011 | return; |
| 1012 | |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 1013 | /* special prefix "/" means don't change URL */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1014 | if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1015 | memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len); |
| 1016 | trash.len += srv->rdr_len; |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 1017 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1018 | |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 1019 | /* 3: add the request URI. Since it was already forwarded, we need |
| 1020 | * to temporarily rewind the buffer. |
| 1021 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1022 | txn = s->txn; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1023 | b_rew(s->req.buf, rewind = http_hdr_rewind(&txn->req)); |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 1024 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1025 | path = http_get_path(txn); |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1026 | len = buffer_count(s->req.buf, path, b_ptr(s->req.buf, txn->req.sl.rq.u + txn->req.sl.rq.u_l)); |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 1027 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1028 | b_adv(s->req.buf, rewind); |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 1029 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1030 | if (!path) |
| 1031 | return; |
| 1032 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1033 | if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */ |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1034 | return; |
| 1035 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1036 | memcpy(trash.str + trash.len, path, len); |
| 1037 | trash.len += len; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1038 | |
| 1039 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1040 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 1041 | trash.len += 29; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1042 | } else { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1043 | memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23); |
| 1044 | trash.len += 23; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1045 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1046 | |
| 1047 | /* prepare to return without error. */ |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 1048 | si_shutr(si); |
| 1049 | si_shutw(si); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1050 | si->err_type = SI_ET_NONE; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1051 | si->state = SI_ST_CLO; |
| 1052 | |
| 1053 | /* send the message */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1054 | http_server_error(s, si, SF_ERR_LOCAL, SF_FINST_C, 302, &trash); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1055 | |
| 1056 | /* FIXME: we should increase a counter of redirects per server and per backend. */ |
Willy Tarreau | 4521ba6 | 2013-01-24 01:25:25 +0100 | [diff] [blame] | 1057 | srv_inc_sess_ctr(srv); |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 1058 | srv_set_sess_last(srv); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1059 | } |
| 1060 | |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 1061 | /* Return the error message corresponding to si->err_type. It is assumed |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1062 | * that the server side is closed. Note that err_type is actually a |
| 1063 | * bitmask, where almost only aborts may be cumulated with other |
| 1064 | * values. We consider that aborted operations are more important |
| 1065 | * than timeouts or errors due to the fact that nobody else in the |
| 1066 | * logs might explain incomplete retries. All others should avoid |
| 1067 | * being cumulated. It should normally not be possible to have multiple |
| 1068 | * aborts at once, but just in case, the first one in sequence is reported. |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1069 | * Note that connection errors appearing on the second request of a keep-alive |
| 1070 | * connection are not reported since this allows the client to retry. |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1071 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1072 | void http_return_srv_error(struct stream *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1073 | { |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 1074 | int err_type = si->err_type; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1075 | |
| 1076 | if (err_type & SI_ET_QUEUE_ABRT) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1077 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1078 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1079 | else if (err_type & SI_ET_CONN_ABRT) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1080 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C, |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1081 | 503, (s->txn->flags & TX_NOT_FIRST) ? NULL : |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1082 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1083 | else if (err_type & SI_ET_QUEUE_TO) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1084 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1085 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1086 | else if (err_type & SI_ET_QUEUE_ERR) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1087 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1088 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1089 | else if (err_type & SI_ET_CONN_TO) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1090 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C, |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1091 | 503, (s->txn->flags & TX_NOT_FIRST) ? NULL : |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1092 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1093 | else if (err_type & SI_ET_CONN_ERR) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1094 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C, |
| 1095 | 503, (s->flags & SF_SRV_REUSED) ? NULL : |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1096 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | 2d400bb | 2012-05-14 12:11:47 +0200 | [diff] [blame] | 1097 | else if (err_type & SI_ET_CONN_RES) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1098 | http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C, |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1099 | 503, (s->txn->flags & TX_NOT_FIRST) ? NULL : |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1100 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1101 | else /* SI_ET_CONN_OTHER and others */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1102 | http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1103 | 500, http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1104 | } |
| 1105 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1106 | extern const char sess_term_cond[8]; |
| 1107 | extern const char sess_fin_state[8]; |
| 1108 | extern const char *monthname[12]; |
Willy Tarreau | 63986c7 | 2015-04-03 22:55:33 +0200 | [diff] [blame] | 1109 | struct pool_head *pool2_http_txn; |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 1110 | struct pool_head *pool2_requri; |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 1111 | struct pool_head *pool2_capture = NULL; |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 1112 | struct pool_head *pool2_uniqueid; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1113 | |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1114 | /* |
| 1115 | * Capture headers from message starting at <som> according to header list |
Willy Tarreau | 54da8db | 2014-06-13 16:11:48 +0200 | [diff] [blame] | 1116 | * <cap_hdr>, and fill the <cap> pointers appropriately. |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1117 | */ |
| 1118 | void capture_headers(char *som, struct hdr_idx *idx, |
| 1119 | char **cap, struct cap_hdr *cap_hdr) |
| 1120 | { |
| 1121 | char *eol, *sol, *col, *sov; |
| 1122 | int cur_idx; |
| 1123 | struct cap_hdr *h; |
| 1124 | int len; |
| 1125 | |
| 1126 | sol = som + hdr_idx_first_pos(idx); |
| 1127 | cur_idx = hdr_idx_first_idx(idx); |
| 1128 | |
| 1129 | while (cur_idx) { |
| 1130 | eol = sol + idx->v[cur_idx].len; |
| 1131 | |
| 1132 | col = sol; |
| 1133 | while (col < eol && *col != ':') |
| 1134 | col++; |
| 1135 | |
| 1136 | sov = col + 1; |
| 1137 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 1138 | sov++; |
| 1139 | |
| 1140 | for (h = cap_hdr; h; h = h->next) { |
Willy Tarreau | 54da8db | 2014-06-13 16:11:48 +0200 | [diff] [blame] | 1141 | if (h->namelen && (h->namelen == col - sol) && |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1142 | (strncasecmp(sol, h->name, h->namelen) == 0)) { |
| 1143 | if (cap[h->index] == NULL) |
| 1144 | cap[h->index] = |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 1145 | pool_alloc2(h->pool); |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1146 | |
| 1147 | if (cap[h->index] == NULL) { |
| 1148 | Alert("HTTP capture : out of memory.\n"); |
| 1149 | continue; |
| 1150 | } |
| 1151 | |
| 1152 | len = eol - sov; |
| 1153 | if (len > h->len) |
| 1154 | len = h->len; |
| 1155 | |
| 1156 | memcpy(cap[h->index], sov, len); |
| 1157 | cap[h->index][len]=0; |
| 1158 | } |
| 1159 | } |
| 1160 | sol = eol + idx->v[cur_idx].cr + 1; |
| 1161 | cur_idx = idx->v[cur_idx].next; |
| 1162 | } |
| 1163 | } |
| 1164 | |
| 1165 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1166 | /* either we find an LF at <ptr> or we jump to <bad>. |
| 1167 | */ |
| 1168 | #define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0) |
| 1169 | |
| 1170 | /* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK, |
| 1171 | * otherwise to <http_msg_ood> with <state> set to <st>. |
| 1172 | */ |
| 1173 | #define EAT_AND_JUMP_OR_RETURN(good, st) do { \ |
| 1174 | ptr++; \ |
| 1175 | if (likely(ptr < end)) \ |
| 1176 | goto good; \ |
| 1177 | else { \ |
| 1178 | state = (st); \ |
| 1179 | goto http_msg_ood; \ |
| 1180 | } \ |
| 1181 | } while (0) |
| 1182 | |
| 1183 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1184 | /* |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 1185 | * This function parses a status line between <ptr> and <end>, starting with |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1186 | * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP, |
| 1187 | * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others |
| 1188 | * will give undefined results. |
| 1189 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1190 | * and that msg->sol points to the beginning of the response. |
| 1191 | * If a complete line is found (which implies that at least one CR or LF is |
| 1192 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1193 | * returned indicating an incomplete line (which does not mean that parts have |
| 1194 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1195 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1196 | * upon next call. |
| 1197 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1198 | * This function was intentionally designed to be called from |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1199 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1200 | * within its state machine and use the same macros, hence the need for same |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1201 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1202 | */ |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1203 | const char *http_parse_stsline(struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1204 | enum ht_state state, const char *ptr, const char *end, |
| 1205 | unsigned int *ret_ptr, enum ht_state *ret_state) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1206 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1207 | const char *msg_start = msg->chn->buf->p; |
Willy Tarreau | 62f791e | 2012-03-09 11:32:30 +0100 | [diff] [blame] | 1208 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1209 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1210 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1211 | http_msg_rpver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1212 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1213 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER); |
| 1214 | |
| 1215 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1216 | msg->sl.st.v_l = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1217 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1218 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1219 | state = HTTP_MSG_ERROR; |
| 1220 | break; |
| 1221 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1222 | case HTTP_MSG_RPVER_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1223 | http_msg_rpver_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1224 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1225 | msg->sl.st.c = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1226 | goto http_msg_rpcode; |
| 1227 | } |
| 1228 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1229 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1230 | /* so it's a CR/LF, this is invalid */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1231 | state = HTTP_MSG_ERROR; |
| 1232 | break; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1233 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1234 | case HTTP_MSG_RPCODE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1235 | http_msg_rpcode: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1236 | if (likely(!HTTP_IS_LWS(*ptr))) |
| 1237 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE); |
| 1238 | |
| 1239 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1240 | msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1241 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1242 | } |
| 1243 | |
| 1244 | /* so it's a CR/LF, so there is no reason phrase */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1245 | msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1246 | http_msg_rsp_reason: |
| 1247 | /* FIXME: should we support HTTP responses without any reason phrase ? */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1248 | msg->sl.st.r = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1249 | msg->sl.st.r_l = 0; |
| 1250 | goto http_msg_rpline_eol; |
| 1251 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1252 | case HTTP_MSG_RPCODE_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1253 | http_msg_rpcode_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1254 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1255 | msg->sl.st.r = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1256 | goto http_msg_rpreason; |
| 1257 | } |
| 1258 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1259 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1260 | /* so it's a CR/LF, so there is no reason phrase */ |
| 1261 | goto http_msg_rsp_reason; |
| 1262 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1263 | case HTTP_MSG_RPREASON: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1264 | http_msg_rpreason: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1265 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1266 | EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON); |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1267 | msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1268 | http_msg_rpline_eol: |
| 1269 | /* We have seen the end of line. Note that we do not |
| 1270 | * necessarily have the \n yet, but at least we know that we |
| 1271 | * have EITHER \r OR \n, otherwise the response would not be |
| 1272 | * complete. We can then record the response length and return |
| 1273 | * to the caller which will be able to register it. |
| 1274 | */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1275 | msg->sl.st.l = ptr - msg_start - msg->sol; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1276 | return ptr; |
| 1277 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1278 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1279 | #ifdef DEBUG_FULL |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1280 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1281 | exit(1); |
| 1282 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1283 | ; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1287 | /* out of valid data */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1288 | if (ret_state) |
| 1289 | *ret_state = state; |
| 1290 | if (ret_ptr) |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1291 | *ret_ptr = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1292 | return NULL; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1293 | } |
| 1294 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1295 | /* |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1296 | * This function parses a request line between <ptr> and <end>, starting with |
| 1297 | * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP, |
| 1298 | * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others |
| 1299 | * will give undefined results. |
| 1300 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1301 | * and that msg->sol points to the beginning of the request. |
| 1302 | * If a complete line is found (which implies that at least one CR or LF is |
| 1303 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1304 | * returned indicating an incomplete line (which does not mean that parts have |
| 1305 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1306 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1307 | * upon next call. |
| 1308 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1309 | * This function was intentionally designed to be called from |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1310 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1311 | * within its state machine and use the same macros, hence the need for same |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1312 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1313 | */ |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1314 | const char *http_parse_reqline(struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1315 | enum ht_state state, const char *ptr, const char *end, |
| 1316 | unsigned int *ret_ptr, enum ht_state *ret_state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1317 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1318 | const char *msg_start = msg->chn->buf->p; |
Willy Tarreau | 62f791e | 2012-03-09 11:32:30 +0100 | [diff] [blame] | 1319 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1320 | switch (state) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1321 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1322 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1323 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1324 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1325 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1326 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1327 | msg->sl.rq.m_l = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1328 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1329 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1330 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1331 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1332 | /* HTTP 0.9 request */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1333 | msg->sl.rq.m_l = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1334 | http_msg_req09_uri: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1335 | msg->sl.rq.u = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1336 | http_msg_req09_uri_e: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1337 | msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1338 | http_msg_req09_ver: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1339 | msg->sl.rq.v = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1340 | msg->sl.rq.v_l = 0; |
| 1341 | goto http_msg_rqline_eol; |
| 1342 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1343 | state = HTTP_MSG_ERROR; |
| 1344 | break; |
| 1345 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1346 | case HTTP_MSG_RQMETH_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1347 | http_msg_rqmeth_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1348 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1349 | msg->sl.rq.u = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1350 | goto http_msg_rquri; |
| 1351 | } |
| 1352 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1353 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1354 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1355 | goto http_msg_req09_uri; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1356 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1357 | case HTTP_MSG_RQURI: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1358 | http_msg_rquri: |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1359 | if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1360 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1361 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1362 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1363 | msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1364 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1365 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1366 | |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1367 | if (likely((unsigned char)*ptr >= 128)) { |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1368 | /* non-ASCII chars are forbidden unless option |
| 1369 | * accept-invalid-http-request is enabled in the frontend. |
| 1370 | * In any case, we capture the faulty char. |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1371 | */ |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1372 | if (msg->err_pos < -1) |
| 1373 | goto invalid_char; |
| 1374 | if (msg->err_pos == -1) |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1375 | msg->err_pos = ptr - msg_start; |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1376 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI); |
| 1377 | } |
| 1378 | |
| 1379 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1380 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1381 | goto http_msg_req09_uri_e; |
| 1382 | } |
| 1383 | |
| 1384 | /* OK forbidden chars, 0..31 or 127 */ |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1385 | invalid_char: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1386 | msg->err_pos = ptr - msg_start; |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1387 | state = HTTP_MSG_ERROR; |
| 1388 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1389 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1390 | case HTTP_MSG_RQURI_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1391 | http_msg_rquri_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1392 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1393 | msg->sl.rq.v = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1394 | goto http_msg_rqver; |
| 1395 | } |
| 1396 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1397 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1398 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1399 | goto http_msg_req09_ver; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1400 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1401 | case HTTP_MSG_RQVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1402 | http_msg_rqver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1403 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1404 | EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER); |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1405 | |
| 1406 | if (likely(HTTP_IS_CRLF(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1407 | msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1408 | http_msg_rqline_eol: |
| 1409 | /* We have seen the end of line. Note that we do not |
| 1410 | * necessarily have the \n yet, but at least we know that we |
| 1411 | * have EITHER \r OR \n, otherwise the request would not be |
| 1412 | * complete. We can then record the request length and return |
| 1413 | * to the caller which will be able to register it. |
| 1414 | */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1415 | msg->sl.rq.l = ptr - msg_start - msg->sol; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1416 | return ptr; |
| 1417 | } |
| 1418 | |
| 1419 | /* neither an HTTP_VER token nor a CRLF */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1420 | state = HTTP_MSG_ERROR; |
| 1421 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1422 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1423 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1424 | #ifdef DEBUG_FULL |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1425 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1426 | exit(1); |
| 1427 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1428 | ; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1429 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1430 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1431 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1432 | /* out of valid data */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1433 | if (ret_state) |
| 1434 | *ret_state = state; |
| 1435 | if (ret_ptr) |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1436 | *ret_ptr = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1437 | return NULL; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1438 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1439 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1440 | /* |
| 1441 | * Returns the data from Authorization header. Function may be called more |
| 1442 | * than once so data is stored in txn->auth_data. When no header is found |
| 1443 | * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid |
Thierry FOURNIER | 98d9695 | 2014-01-23 12:13:02 +0100 | [diff] [blame] | 1444 | * searching again for something we are unable to find anyway. However, if |
| 1445 | * the result if valid, the cache is not reused because we would risk to |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1446 | * have the credentials overwritten by another stream in parallel. |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1447 | */ |
| 1448 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1449 | /* This bufffer is initialized in the file 'src/haproxy.c'. This length is |
| 1450 | * set according to global.tune.bufsize. |
| 1451 | */ |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 1452 | char *get_http_auth_buff; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1453 | |
| 1454 | int |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1455 | get_http_auth(struct stream *s) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1456 | { |
| 1457 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1458 | struct http_txn *txn = s->txn; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1459 | struct chunk auth_method; |
| 1460 | struct hdr_ctx ctx; |
| 1461 | char *h, *p; |
| 1462 | int len; |
| 1463 | |
| 1464 | #ifdef DEBUG_AUTH |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1465 | printf("Auth for stream %p: %d\n", s, txn->auth.method); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1466 | #endif |
| 1467 | |
| 1468 | if (txn->auth.method == HTTP_AUTH_WRONG) |
| 1469 | return 0; |
| 1470 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1471 | txn->auth.method = HTTP_AUTH_WRONG; |
| 1472 | |
| 1473 | ctx.idx = 0; |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 1474 | |
| 1475 | if (txn->flags & TX_USE_PX_CONN) { |
| 1476 | h = "Proxy-Authorization"; |
| 1477 | len = strlen(h); |
| 1478 | } else { |
| 1479 | h = "Authorization"; |
| 1480 | len = strlen(h); |
| 1481 | } |
| 1482 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1483 | if (!http_find_header2(h, len, s->req.buf->p, &txn->hdr_idx, &ctx)) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1484 | return 0; |
| 1485 | |
| 1486 | h = ctx.line + ctx.val; |
| 1487 | |
| 1488 | p = memchr(h, ' ', ctx.vlen); |
| 1489 | if (!p || p == h) |
| 1490 | return 0; |
| 1491 | |
| 1492 | chunk_initlen(&auth_method, h, 0, p-h); |
| 1493 | chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1); |
| 1494 | |
| 1495 | if (!strncasecmp("Basic", auth_method.str, auth_method.len)) { |
| 1496 | |
| 1497 | len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len, |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 1498 | get_http_auth_buff, global.tune.bufsize - 1); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1499 | |
| 1500 | if (len < 0) |
| 1501 | return 0; |
| 1502 | |
| 1503 | |
| 1504 | get_http_auth_buff[len] = '\0'; |
| 1505 | |
| 1506 | p = strchr(get_http_auth_buff, ':'); |
| 1507 | |
| 1508 | if (!p) |
| 1509 | return 0; |
| 1510 | |
| 1511 | txn->auth.user = get_http_auth_buff; |
| 1512 | *p = '\0'; |
| 1513 | txn->auth.pass = p+1; |
| 1514 | |
| 1515 | txn->auth.method = HTTP_AUTH_BASIC; |
| 1516 | return 1; |
| 1517 | } |
| 1518 | |
| 1519 | return 0; |
| 1520 | } |
| 1521 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1522 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1523 | /* |
| 1524 | * This function parses an HTTP message, either a request or a response, |
Willy Tarreau | 8b1323e | 2012-03-09 14:46:19 +0100 | [diff] [blame] | 1525 | * depending on the initial msg->msg_state. The caller is responsible for |
| 1526 | * ensuring that the message does not wrap. The function can be preempted |
| 1527 | * everywhere when data are missing and recalled at the exact same location |
| 1528 | * with no information loss. The message may even be realigned between two |
| 1529 | * calls. The header index is re-initialized when switching from |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1530 | * MSG_R[PQ]BEFORE to MSG_RPVER|MSG_RQMETH. It modifies msg->sol among other |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1531 | * fields. Note that msg->sol will be initialized after completing the first |
| 1532 | * state, so that none of the msg pointers has to be initialized prior to the |
| 1533 | * first call. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1534 | */ |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 1535 | void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1536 | { |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1537 | enum ht_state state; /* updated only when leaving the FSM */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1538 | register char *ptr, *end; /* request pointers, to avoid dereferences */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1539 | struct buffer *buf; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1540 | |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1541 | state = msg->msg_state; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1542 | buf = msg->chn->buf; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1543 | ptr = buf->p + msg->next; |
| 1544 | end = buf->p + buf->i; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1545 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1546 | if (unlikely(ptr >= end)) |
| 1547 | goto http_msg_ood; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1548 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1549 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1550 | /* |
| 1551 | * First, states that are specific to the response only. |
| 1552 | * We check them first so that request and headers are |
| 1553 | * closer to each other (accessed more often). |
| 1554 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1555 | case HTTP_MSG_RPBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1556 | http_msg_rpbefore: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1557 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1558 | /* we have a start of message, but we have to check |
| 1559 | * first if we need to remove some CRLF. We can only |
Willy Tarreau | 2e046c6 | 2012-03-01 16:08:30 +0100 | [diff] [blame] | 1560 | * do this when o=0. |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1561 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1562 | if (unlikely(ptr != buf->p)) { |
| 1563 | if (buf->o) |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1564 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1565 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1566 | bi_fast_delete(buf, ptr - buf->p); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1567 | } |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1568 | msg->sol = 0; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 1569 | msg->sl.st.l = 0; /* used in debug mode */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1570 | hdr_idx_init(idx); |
| 1571 | state = HTTP_MSG_RPVER; |
| 1572 | goto http_msg_rpver; |
| 1573 | } |
| 1574 | |
| 1575 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1576 | goto http_msg_invalid; |
| 1577 | |
| 1578 | if (unlikely(*ptr == '\n')) |
| 1579 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1580 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR); |
| 1581 | /* stop here */ |
| 1582 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1583 | case HTTP_MSG_RPBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1584 | http_msg_rpbefore_cr: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1585 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1586 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1587 | /* stop here */ |
| 1588 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1589 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1590 | http_msg_rpver: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1591 | case HTTP_MSG_RPVER_SP: |
| 1592 | case HTTP_MSG_RPCODE: |
| 1593 | case HTTP_MSG_RPCODE_SP: |
| 1594 | case HTTP_MSG_RPREASON: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1595 | ptr = (char *)http_parse_stsline(msg, |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1596 | state, ptr, end, |
| 1597 | &msg->next, &msg->msg_state); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1598 | if (unlikely(!ptr)) |
| 1599 | return; |
| 1600 | |
| 1601 | /* we have a full response and we know that we have either a CR |
| 1602 | * or an LF at <ptr>. |
| 1603 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1604 | hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r'); |
| 1605 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1606 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1607 | if (likely(*ptr == '\r')) |
| 1608 | EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END); |
| 1609 | goto http_msg_rpline_end; |
| 1610 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1611 | case HTTP_MSG_RPLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1612 | http_msg_rpline_end: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1613 | /* msg->sol must point to the first of CR or LF. */ |
| 1614 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1615 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST); |
| 1616 | /* stop here */ |
| 1617 | |
| 1618 | /* |
| 1619 | * Second, states that are specific to the request only |
| 1620 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1621 | case HTTP_MSG_RQBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1622 | http_msg_rqbefore: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1623 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1624 | /* we have a start of message, but we have to check |
| 1625 | * first if we need to remove some CRLF. We can only |
Willy Tarreau | 2e046c6 | 2012-03-01 16:08:30 +0100 | [diff] [blame] | 1626 | * do this when o=0. |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1627 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1628 | if (likely(ptr != buf->p)) { |
| 1629 | if (buf->o) |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1630 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1631 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1632 | bi_fast_delete(buf, ptr - buf->p); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1633 | } |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1634 | msg->sol = 0; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 1635 | msg->sl.rq.l = 0; /* used in debug mode */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1636 | state = HTTP_MSG_RQMETH; |
| 1637 | goto http_msg_rqmeth; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1638 | } |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1639 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1640 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1641 | goto http_msg_invalid; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1642 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1643 | if (unlikely(*ptr == '\n')) |
| 1644 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
| 1645 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore_cr, HTTP_MSG_RQBEFORE_CR); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1646 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1647 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1648 | case HTTP_MSG_RQBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1649 | http_msg_rqbefore_cr: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1650 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1651 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1652 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1653 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1654 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1655 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1656 | case HTTP_MSG_RQMETH_SP: |
| 1657 | case HTTP_MSG_RQURI: |
| 1658 | case HTTP_MSG_RQURI_SP: |
| 1659 | case HTTP_MSG_RQVER: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1660 | ptr = (char *)http_parse_reqline(msg, |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1661 | state, ptr, end, |
| 1662 | &msg->next, &msg->msg_state); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1663 | if (unlikely(!ptr)) |
| 1664 | return; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1665 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1666 | /* we have a full request and we know that we have either a CR |
| 1667 | * or an LF at <ptr>. |
| 1668 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1669 | hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r'); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1670 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1671 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1672 | if (likely(*ptr == '\r')) |
| 1673 | EAT_AND_JUMP_OR_RETURN(http_msg_rqline_end, HTTP_MSG_RQLINE_END); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1674 | goto http_msg_rqline_end; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1675 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1676 | case HTTP_MSG_RQLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1677 | http_msg_rqline_end: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1678 | /* check for HTTP/0.9 request : no version information available. |
| 1679 | * msg->sol must point to the first of CR or LF. |
| 1680 | */ |
| 1681 | if (unlikely(msg->sl.rq.v_l == 0)) |
| 1682 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1683 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1684 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1685 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1686 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1687 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1688 | /* |
| 1689 | * Common states below |
| 1690 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1691 | case HTTP_MSG_HDR_FIRST: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1692 | http_msg_hdr_first: |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1693 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1694 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1695 | goto http_msg_hdr_name; |
| 1696 | } |
| 1697 | |
| 1698 | if (likely(*ptr == '\r')) |
| 1699 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1700 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1701 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1702 | case HTTP_MSG_HDR_NAME: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1703 | http_msg_hdr_name: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1704 | /* assumes msg->sol points to the first char */ |
| 1705 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1706 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1707 | |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1708 | if (likely(*ptr == ':')) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1709 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1710 | |
Willy Tarreau | 32a4ec0 | 2009-04-02 11:35:18 +0200 | [diff] [blame] | 1711 | if (likely(msg->err_pos < -1) || *ptr == '\n') |
| 1712 | goto http_msg_invalid; |
| 1713 | |
| 1714 | if (msg->err_pos == -1) /* capture error pointer */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1715 | msg->err_pos = ptr - buf->p; /* >= 0 now */ |
Willy Tarreau | 32a4ec0 | 2009-04-02 11:35:18 +0200 | [diff] [blame] | 1716 | |
| 1717 | /* and we still accept this non-token character */ |
| 1718 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_name, HTTP_MSG_HDR_NAME); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1719 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1720 | case HTTP_MSG_HDR_L1_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1721 | http_msg_hdr_l1_sp: |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1722 | /* assumes msg->sol points to the first char */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1723 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1724 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_sp, HTTP_MSG_HDR_L1_SP); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1725 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1726 | /* header value can be basically anything except CR/LF */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1727 | msg->sov = ptr - buf->p; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1728 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1729 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1730 | goto http_msg_hdr_val; |
| 1731 | } |
| 1732 | |
| 1733 | if (likely(*ptr == '\r')) |
| 1734 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF); |
| 1735 | goto http_msg_hdr_l1_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1736 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1737 | case HTTP_MSG_HDR_L1_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1738 | http_msg_hdr_l1_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1739 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1740 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lws, HTTP_MSG_HDR_L1_LWS); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1741 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1742 | case HTTP_MSG_HDR_L1_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1743 | http_msg_hdr_l1_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1744 | if (likely(HTTP_IS_SPHT(*ptr))) { |
| 1745 | /* replace HT,CR,LF with spaces */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1746 | for (; buf->p + msg->sov < ptr; msg->sov++) |
| 1747 | buf->p[msg->sov] = ' '; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1748 | goto http_msg_hdr_l1_sp; |
| 1749 | } |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 1750 | /* we had a header consisting only in spaces ! */ |
Willy Tarreau | 12e48b3 | 2012-03-05 16:57:34 +0100 | [diff] [blame] | 1751 | msg->eol = msg->sov; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1752 | goto http_msg_complete_header; |
| 1753 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1754 | case HTTP_MSG_HDR_VAL: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1755 | http_msg_hdr_val: |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1756 | /* assumes msg->sol points to the first char, and msg->sov |
| 1757 | * points to the first character of the value. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1758 | */ |
| 1759 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1760 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_val, HTTP_MSG_HDR_VAL); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1761 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1762 | msg->eol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1763 | /* Note: we could also copy eol into ->eoh so that we have the |
| 1764 | * real header end in case it ends with lots of LWS, but is this |
| 1765 | * really needed ? |
| 1766 | */ |
| 1767 | if (likely(*ptr == '\r')) |
| 1768 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF); |
| 1769 | goto http_msg_hdr_l2_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1770 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1771 | case HTTP_MSG_HDR_L2_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1772 | http_msg_hdr_l2_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1773 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1774 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lws, HTTP_MSG_HDR_L2_LWS); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1775 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1776 | case HTTP_MSG_HDR_L2_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1777 | http_msg_hdr_l2_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1778 | if (unlikely(HTTP_IS_SPHT(*ptr))) { |
| 1779 | /* LWS: replace HT,CR,LF with spaces */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1780 | for (; buf->p + msg->eol < ptr; msg->eol++) |
| 1781 | buf->p[msg->eol] = ' '; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1782 | goto http_msg_hdr_val; |
| 1783 | } |
| 1784 | http_msg_complete_header: |
| 1785 | /* |
| 1786 | * It was a new header, so the last one is finished. |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1787 | * Assumes msg->sol points to the first char, msg->sov points |
| 1788 | * to the first character of the value and msg->eol to the |
| 1789 | * first CR or LF so we know how the line ends. We insert last |
| 1790 | * header into the index. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1791 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1792 | if (unlikely(hdr_idx_add(msg->eol - msg->sol, buf->p[msg->eol] == '\r', |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1793 | idx, idx->tail) < 0)) |
| 1794 | goto http_msg_invalid; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1795 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1796 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1797 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1798 | goto http_msg_hdr_name; |
| 1799 | } |
| 1800 | |
| 1801 | if (likely(*ptr == '\r')) |
| 1802 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1803 | goto http_msg_last_lf; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1804 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1805 | case HTTP_MSG_LAST_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1806 | http_msg_last_lf: |
Willy Tarreau | 0558a02 | 2014-03-13 15:48:45 +0100 | [diff] [blame] | 1807 | /* Assumes msg->sol points to the first of either CR or LF. |
| 1808 | * Sets ->sov and ->next to the total header length, ->eoh to |
| 1809 | * the last CRLF, and ->eol to the last CRLF length (1 or 2). |
| 1810 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1811 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1812 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1813 | msg->sov = msg->next = ptr - buf->p; |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1814 | msg->eoh = msg->sol; |
| 1815 | msg->sol = 0; |
Willy Tarreau | 0558a02 | 2014-03-13 15:48:45 +0100 | [diff] [blame] | 1816 | msg->eol = msg->sov - msg->eoh; |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1817 | msg->msg_state = HTTP_MSG_BODY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1818 | return; |
Willy Tarreau | b56928a | 2012-04-16 14:51:55 +0200 | [diff] [blame] | 1819 | |
| 1820 | case HTTP_MSG_ERROR: |
| 1821 | /* this may only happen if we call http_msg_analyser() twice with an error */ |
| 1822 | break; |
| 1823 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1824 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1825 | #ifdef DEBUG_FULL |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1826 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1827 | exit(1); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1828 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1829 | ; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1830 | } |
| 1831 | http_msg_ood: |
| 1832 | /* out of data */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1833 | msg->msg_state = state; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1834 | msg->next = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1835 | return; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1836 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1837 | http_msg_invalid: |
| 1838 | /* invalid message */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1839 | msg->msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1840 | msg->next = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1841 | return; |
| 1842 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1843 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1844 | /* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the |
| 1845 | * conversion succeeded, 0 in case of error. If the request was already 1.X, |
| 1846 | * nothing is done and 1 is returned. |
| 1847 | */ |
Willy Tarreau | 418bfcc | 2012-03-09 13:56:20 +0100 | [diff] [blame] | 1848 | static int http_upgrade_v09_to_v10(struct http_txn *txn) |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1849 | { |
| 1850 | int delta; |
| 1851 | char *cur_end; |
Willy Tarreau | 418bfcc | 2012-03-09 13:56:20 +0100 | [diff] [blame] | 1852 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1853 | |
| 1854 | if (msg->sl.rq.v_l != 0) |
| 1855 | return 1; |
| 1856 | |
Apollon Oikonomopoulos | 25a1522 | 2014-04-06 02:46:00 +0300 | [diff] [blame] | 1857 | /* RFC 1945 allows only GET for HTTP/0.9 requests */ |
| 1858 | if (txn->meth != HTTP_METH_GET) |
| 1859 | return 0; |
| 1860 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1861 | cur_end = msg->chn->buf->p + msg->sl.rq.l; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1862 | delta = 0; |
| 1863 | |
| 1864 | if (msg->sl.rq.u_l == 0) { |
Apollon Oikonomopoulos | 25a1522 | 2014-04-06 02:46:00 +0300 | [diff] [blame] | 1865 | /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */ |
| 1866 | return 0; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1867 | } |
| 1868 | /* add HTTP version */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1869 | delta = buffer_replace2(msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11); |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 1870 | http_msg_move_end(msg, delta); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1871 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1872 | cur_end = (char *)http_parse_reqline(msg, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1873 | HTTP_MSG_RQMETH, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1874 | msg->chn->buf->p, cur_end + 1, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1875 | NULL, NULL); |
| 1876 | if (unlikely(!cur_end)) |
| 1877 | return 0; |
| 1878 | |
| 1879 | /* we have a full HTTP/1.0 request now and we know that |
| 1880 | * we have either a CR or an LF at <ptr>. |
| 1881 | */ |
| 1882 | hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r'); |
| 1883 | return 1; |
| 1884 | } |
| 1885 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1886 | /* Parse the Connection: header of an HTTP request, looking for both "close" |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1887 | * and "keep-alive" values. If we already know that some headers may safely |
| 1888 | * be removed, we remove them now. The <to_del> flags are used for that : |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1889 | * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses) |
| 1890 | * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1). |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 1891 | * Presence of the "Upgrade" token is also checked and reported. |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1892 | * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was |
| 1893 | * found, and TX_CON_*_SET is adjusted depending on what is left so only |
| 1894 | * harmless combinations may be removed. Do not call that after changes have |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1895 | * been processed. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1896 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1897 | void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1898 | { |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1899 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1900 | const char *hdr_val = "Connection"; |
| 1901 | int hdr_len = 10; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1902 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1903 | if (txn->flags & TX_HDR_CONN_PRS) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1904 | return; |
| 1905 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1906 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1907 | hdr_val = "Proxy-Connection"; |
| 1908 | hdr_len = 16; |
| 1909 | } |
| 1910 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1911 | ctx.idx = 0; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1912 | txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1913 | while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1914 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 1915 | txn->flags |= TX_HDR_CONN_KAL; |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1916 | if (to_del & 2) |
| 1917 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1918 | else |
| 1919 | txn->flags |= TX_CON_KAL_SET; |
| 1920 | } |
| 1921 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 1922 | txn->flags |= TX_HDR_CONN_CLO; |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1923 | if (to_del & 1) |
| 1924 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1925 | else |
| 1926 | txn->flags |= TX_CON_CLO_SET; |
| 1927 | } |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 1928 | else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) { |
| 1929 | txn->flags |= TX_HDR_CONN_UPG; |
| 1930 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1931 | } |
| 1932 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1933 | txn->flags |= TX_HDR_CONN_PRS; |
| 1934 | return; |
| 1935 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1936 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1937 | /* Apply desired changes on the Connection: header. Values may be removed and/or |
| 1938 | * added depending on the <wanted> flags, which are exclusively composed of |
| 1939 | * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The |
| 1940 | * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left. |
| 1941 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1942 | void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1943 | { |
| 1944 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1945 | const char *hdr_val = "Connection"; |
| 1946 | int hdr_len = 10; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1947 | |
| 1948 | ctx.idx = 0; |
| 1949 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1950 | |
| 1951 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1952 | hdr_val = "Proxy-Connection"; |
| 1953 | hdr_len = 16; |
| 1954 | } |
| 1955 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1956 | txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1957 | while (http_find_header2(hdr_val, hdr_len, msg->chn->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1958 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 1959 | if (wanted & TX_CON_KAL_SET) |
| 1960 | txn->flags |= TX_CON_KAL_SET; |
| 1961 | else |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1962 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1963 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1964 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 1965 | if (wanted & TX_CON_CLO_SET) |
| 1966 | txn->flags |= TX_CON_CLO_SET; |
| 1967 | else |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1968 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 1969 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1970 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1971 | |
| 1972 | if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 1973 | return; |
| 1974 | |
| 1975 | if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) { |
| 1976 | txn->flags |= TX_CON_CLO_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1977 | hdr_val = "Connection: close"; |
| 1978 | hdr_len = 17; |
| 1979 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1980 | hdr_val = "Proxy-Connection: close"; |
| 1981 | hdr_len = 23; |
| 1982 | } |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1983 | http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) { |
| 1987 | txn->flags |= TX_CON_KAL_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1988 | hdr_val = "Connection: keep-alive"; |
| 1989 | hdr_len = 22; |
| 1990 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1991 | hdr_val = "Proxy-Connection: keep-alive"; |
| 1992 | hdr_len = 28; |
| 1993 | } |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1994 | http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1995 | } |
| 1996 | return; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1997 | } |
| 1998 | |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 1999 | /* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to |
| 2000 | * the first byte of data after the chunk size, so that we know we can forward |
| 2001 | * exactly msg->next bytes. msg->sol contains the exact number of bytes forming |
| 2002 | * the chunk size. That way it is always possible to differentiate between the |
| 2003 | * start of the body and the start of the data. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2004 | * Return >0 on success, 0 when some data is missing, <0 on error. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2005 | * Note: this function is designed to parse wrapped CRLF at the end of the buffer. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2006 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 2007 | static inline int http_parse_chunk_size(struct http_msg *msg) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2008 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2009 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2010 | const char *ptr = b_ptr(buf, msg->next); |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2011 | const char *ptr_old = ptr; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2012 | const char *end = buf->data + buf->size; |
| 2013 | const char *stop = bi_end(buf); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2014 | unsigned int chunk = 0; |
| 2015 | |
| 2016 | /* The chunk size is in the following form, though we are only |
| 2017 | * interested in the size and CRLF : |
| 2018 | * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF |
| 2019 | */ |
| 2020 | while (1) { |
| 2021 | int c; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2022 | if (ptr == stop) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2023 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2024 | c = hex2i(*ptr); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2025 | if (c < 0) /* not a hex digit anymore */ |
| 2026 | break; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2027 | if (unlikely(++ptr >= end)) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2028 | ptr = buf->data; |
Willy Tarreau | 431946e | 2012-02-24 19:20:12 +0100 | [diff] [blame] | 2029 | if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */ |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2030 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2031 | chunk = (chunk << 4) + c; |
| 2032 | } |
| 2033 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2034 | /* empty size not allowed */ |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2035 | if (unlikely(ptr == ptr_old)) |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2036 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2037 | |
| 2038 | while (http_is_spht[(unsigned char)*ptr]) { |
| 2039 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2040 | ptr = buf->data; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2041 | if (unlikely(ptr == stop)) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2042 | return 0; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2043 | } |
| 2044 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2045 | /* Up to there, we know that at least one byte is present at *ptr. Check |
| 2046 | * for the end of chunk size. |
| 2047 | */ |
| 2048 | while (1) { |
| 2049 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 2050 | /* we now have a CR or an LF at ptr */ |
| 2051 | if (likely(*ptr == '\r')) { |
| 2052 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2053 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2054 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2055 | return 0; |
| 2056 | } |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2057 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2058 | if (*ptr != '\n') |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2059 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2060 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2061 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2062 | /* done */ |
| 2063 | break; |
| 2064 | } |
| 2065 | else if (*ptr == ';') { |
| 2066 | /* chunk extension, ends at next CRLF */ |
| 2067 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2068 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2069 | if (ptr == stop) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2070 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2071 | |
| 2072 | while (!HTTP_IS_CRLF(*ptr)) { |
| 2073 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2074 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2075 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2076 | return 0; |
| 2077 | } |
| 2078 | /* we have a CRLF now, loop above */ |
| 2079 | continue; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2080 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2081 | else |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2082 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2083 | } |
| 2084 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2085 | /* OK we found our CRLF and now <ptr> points to the next byte, |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2086 | * which may or may not be present. We save that into ->next, |
| 2087 | * and the number of bytes parsed into msg->sol. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2088 | */ |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2089 | msg->sol = ptr - ptr_old; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2090 | if (unlikely(ptr < ptr_old)) |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2091 | msg->sol += buf->size; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2092 | msg->next = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2093 | msg->chunk_len = chunk; |
| 2094 | msg->body_len += chunk; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2095 | msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2096 | return 1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2097 | error: |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2098 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2099 | return -1; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2100 | } |
| 2101 | |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2102 | /* This function skips trailers in the buffer associated with HTTP |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2103 | * message <msg>. The first visited position is msg->next. If the end of |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2104 | * the trailers is found, it is automatically scheduled to be forwarded, |
| 2105 | * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0. |
| 2106 | * If not enough data are available, the function does not change anything |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2107 | * except maybe msg->next if it could parse some lines, and returns zero. |
| 2108 | * If a parse error is encountered, the function returns < 0 and does not |
| 2109 | * change anything except maybe msg->next. Note that the message must |
| 2110 | * already be in HTTP_MSG_TRAILERS state before calling this function, |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2111 | * which implies that all non-trailers data have already been scheduled for |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2112 | * forwarding, and that msg->next exactly matches the length of trailers |
| 2113 | * already parsed and not forwarded. It is also important to note that this |
| 2114 | * function is designed to be able to parse wrapped headers at end of buffer. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2115 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 2116 | static int http_forward_trailers(struct http_msg *msg) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2117 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2118 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2119 | |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2120 | /* we have msg->next which points to next line. Look for CRLF. */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2121 | while (1) { |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2122 | const char *p1 = NULL, *p2 = NULL; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2123 | const char *ptr = b_ptr(buf, msg->next); |
| 2124 | const char *stop = bi_end(buf); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2125 | int bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2126 | |
| 2127 | /* scan current line and stop at LF or CRLF */ |
| 2128 | while (1) { |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2129 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2130 | return 0; |
| 2131 | |
| 2132 | if (*ptr == '\n') { |
| 2133 | if (!p1) |
| 2134 | p1 = ptr; |
| 2135 | p2 = ptr; |
| 2136 | break; |
| 2137 | } |
| 2138 | |
| 2139 | if (*ptr == '\r') { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2140 | if (p1) { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2141 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2142 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2143 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2144 | p1 = ptr; |
| 2145 | } |
| 2146 | |
| 2147 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2148 | if (ptr >= buf->data + buf->size) |
| 2149 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2150 | } |
| 2151 | |
| 2152 | /* after LF; point to beginning of next line */ |
| 2153 | p2++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2154 | if (p2 >= buf->data + buf->size) |
| 2155 | p2 = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2156 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2157 | bytes = p2 - b_ptr(buf, msg->next); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2158 | if (bytes < 0) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2159 | bytes += buf->size; |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2160 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2161 | if (p1 == b_ptr(buf, msg->next)) { |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2162 | /* LF/CRLF at beginning of line => end of trailers at p2. |
| 2163 | * Everything was scheduled for forwarding, there's nothing |
| 2164 | * left from this message. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 2165 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2166 | msg->next = buffer_count(buf, buf->p, p2); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2167 | msg->msg_state = HTTP_MSG_DONE; |
| 2168 | return 1; |
| 2169 | } |
| 2170 | /* OK, next line then */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2171 | msg->next = buffer_count(buf, buf->p, p2); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2172 | } |
| 2173 | } |
| 2174 | |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2175 | /* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF |
| 2176 | * or a possible LF alone at the end of a chunk. It automatically adjusts |
| 2177 | * msg->next in order to include this part into the next forwarding phase. |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2178 | * Note that the caller must ensure that ->p points to the first byte to parse. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2179 | * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If |
| 2180 | * not enough data are available, the function does not change anything and |
| 2181 | * returns zero. If a parse error is encountered, the function returns < 0 and |
| 2182 | * does not change anything. Note: this function is designed to parse wrapped |
| 2183 | * CRLF at the end of the buffer. |
| 2184 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 2185 | static inline int http_skip_chunk_crlf(struct http_msg *msg) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2186 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2187 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2188 | const char *ptr; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2189 | int bytes; |
| 2190 | |
| 2191 | /* NB: we'll check data availabilty at the end. It's not a |
| 2192 | * problem because whatever we match first will be checked |
| 2193 | * against the correct length. |
| 2194 | */ |
| 2195 | bytes = 1; |
Willy Tarreau | 0669d7d | 2014-04-17 11:40:10 +0200 | [diff] [blame] | 2196 | ptr = b_ptr(buf, msg->next); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2197 | if (*ptr == '\r') { |
| 2198 | bytes++; |
| 2199 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2200 | if (ptr >= buf->data + buf->size) |
| 2201 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2202 | } |
| 2203 | |
Willy Tarreau | 0669d7d | 2014-04-17 11:40:10 +0200 | [diff] [blame] | 2204 | if (msg->next + bytes > buf->i) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2205 | return 0; |
| 2206 | |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2207 | if (*ptr != '\n') { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2208 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2209 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2210 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2211 | |
| 2212 | ptr++; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2213 | if (unlikely(ptr >= buf->data + buf->size)) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2214 | ptr = buf->data; |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 2215 | /* Advance ->next to allow the CRLF to be forwarded */ |
Willy Tarreau | 0669d7d | 2014-04-17 11:40:10 +0200 | [diff] [blame] | 2216 | msg->next += bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2217 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 2218 | return 1; |
| 2219 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2220 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2221 | /* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the |
| 2222 | * value is larger than 1000, it is bound to 1000. The parser consumes up to |
| 2223 | * 1 digit, one dot and 3 digits and stops on the first invalid character. |
| 2224 | * Unparsable qvalues return 1000 as "q=1.000". |
| 2225 | */ |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 2226 | int parse_qvalue(const char *qvalue, const char **end) |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2227 | { |
| 2228 | int q = 1000; |
| 2229 | |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 2230 | if (!isdigit((unsigned char)*qvalue)) |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2231 | goto out; |
| 2232 | q = (*qvalue++ - '0') * 1000; |
| 2233 | |
| 2234 | if (*qvalue++ != '.') |
| 2235 | goto out; |
| 2236 | |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 2237 | if (!isdigit((unsigned char)*qvalue)) |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2238 | goto out; |
| 2239 | q += (*qvalue++ - '0') * 100; |
| 2240 | |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 2241 | if (!isdigit((unsigned char)*qvalue)) |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2242 | goto out; |
| 2243 | q += (*qvalue++ - '0') * 10; |
| 2244 | |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 2245 | if (!isdigit((unsigned char)*qvalue)) |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2246 | goto out; |
| 2247 | q += (*qvalue++ - '0') * 1; |
| 2248 | out: |
| 2249 | if (q > 1000) |
| 2250 | q = 1000; |
Willy Tarreau | 38b3aa5 | 2014-04-22 23:32:05 +0200 | [diff] [blame] | 2251 | if (end) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 2252 | *end = qvalue; |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2253 | return q; |
| 2254 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2255 | |
| 2256 | /* |
| 2257 | * Selects a compression algorithm depending on the client request. |
Willy Tarreau | 05d8460 | 2012-10-26 02:11:25 +0200 | [diff] [blame] | 2258 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2259 | int select_compression_request_header(struct stream *s, struct buffer *req) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2260 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 2261 | struct http_txn *txn = s->txn; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2262 | struct http_msg *msg = &txn->req; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2263 | struct hdr_ctx ctx; |
| 2264 | struct comp_algo *comp_algo = NULL; |
Willy Tarreau | 3c7b97b | 2012-10-26 14:50:26 +0200 | [diff] [blame] | 2265 | struct comp_algo *comp_algo_back = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2266 | |
Finn Arne Gangstad | cbb9a4b | 2012-10-29 21:43:01 +0100 | [diff] [blame] | 2267 | /* Disable compression for older user agents announcing themselves as "Mozilla/4" |
| 2268 | * unless they are known good (MSIE 6 with XP SP2, or MSIE 7 and later). |
Willy Tarreau | 05d8460 | 2012-10-26 02:11:25 +0200 | [diff] [blame] | 2269 | * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details. |
| 2270 | */ |
| 2271 | ctx.idx = 0; |
| 2272 | if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) && |
| 2273 | ctx.vlen >= 9 && |
Finn Arne Gangstad | cbb9a4b | 2012-10-29 21:43:01 +0100 | [diff] [blame] | 2274 | memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 && |
| 2275 | (ctx.vlen < 31 || |
| 2276 | memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 || |
| 2277 | ctx.line[ctx.val + 30] < '6' || |
| 2278 | (ctx.line[ctx.val + 30] == '6' && |
| 2279 | (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) { |
| 2280 | s->comp_algo = NULL; |
| 2281 | return 0; |
Willy Tarreau | 05d8460 | 2012-10-26 02:11:25 +0200 | [diff] [blame] | 2282 | } |
| 2283 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2284 | /* search for the algo in the backend in priority or the frontend */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2285 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) { |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2286 | int best_q = 0; |
| 2287 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2288 | ctx.idx = 0; |
| 2289 | while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2290 | const char *qval; |
| 2291 | int q; |
| 2292 | int toklen; |
| 2293 | |
| 2294 | /* try to isolate the token from the optional q-value */ |
| 2295 | toklen = 0; |
| 2296 | while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)]) |
| 2297 | toklen++; |
| 2298 | |
| 2299 | qval = ctx.line + ctx.val + toklen; |
| 2300 | while (1) { |
| 2301 | while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval]) |
| 2302 | qval++; |
| 2303 | |
| 2304 | if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') { |
| 2305 | qval = NULL; |
| 2306 | break; |
| 2307 | } |
| 2308 | qval++; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2309 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2310 | while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval]) |
| 2311 | qval++; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2312 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2313 | if (qval >= ctx.line + ctx.val + ctx.vlen) { |
| 2314 | qval = NULL; |
| 2315 | break; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2316 | } |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2317 | if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0) |
| 2318 | break; |
| 2319 | |
| 2320 | while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';') |
| 2321 | qval++; |
| 2322 | } |
| 2323 | |
| 2324 | /* here we have qval pointing to the first "q=" attribute or NULL if not found */ |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 2325 | q = qval ? parse_qvalue(qval + 2, NULL) : 1000; |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2326 | |
| 2327 | if (q <= best_q) |
| 2328 | continue; |
| 2329 | |
| 2330 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
| 2331 | if (*(ctx.line + ctx.val) == '*' || |
Willy Tarreau | 615105e | 2015-03-28 16:40:46 +0100 | [diff] [blame] | 2332 | word_match(ctx.line + ctx.val, toklen, comp_algo->ua_name, comp_algo->ua_name_len)) { |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2333 | s->comp_algo = comp_algo; |
| 2334 | best_q = q; |
| 2335 | break; |
| 2336 | } |
| 2337 | } |
| 2338 | } |
| 2339 | } |
| 2340 | |
| 2341 | /* remove all occurrences of the header when "compression offload" is set */ |
| 2342 | if (s->comp_algo) { |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2343 | if ((s->be->comp && s->be->comp->offload) || (strm_fe(s)->comp && strm_fe(s)->comp->offload)) { |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2344 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 2345 | ctx.idx = 0; |
| 2346 | while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) { |
| 2347 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2348 | } |
| 2349 | } |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2350 | return 1; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2351 | } |
| 2352 | |
| 2353 | /* identity is implicit does not require headers */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2354 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (strm_fe(s)->comp && (comp_algo_back = strm_fe(s)->comp->algos))) { |
Willy Tarreau | 3c7b97b | 2012-10-26 14:50:26 +0200 | [diff] [blame] | 2355 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
Willy Tarreau | 615105e | 2015-03-28 16:40:46 +0100 | [diff] [blame] | 2356 | if (comp_algo->cfg_name_len == 8 && memcmp(comp_algo->cfg_name, "identity", 8) == 0) { |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2357 | s->comp_algo = comp_algo; |
| 2358 | return 1; |
| 2359 | } |
| 2360 | } |
| 2361 | } |
| 2362 | |
| 2363 | s->comp_algo = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2364 | return 0; |
| 2365 | } |
| 2366 | |
| 2367 | /* |
| 2368 | * Selects a comression algorithm depending of the server response. |
| 2369 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2370 | int select_compression_response_header(struct stream *s, struct buffer *res) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2371 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 2372 | struct http_txn *txn = s->txn; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2373 | struct http_msg *msg = &txn->rsp; |
| 2374 | struct hdr_ctx ctx; |
| 2375 | struct comp_type *comp_type; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2376 | |
| 2377 | /* no common compression algorithm was found in request header */ |
| 2378 | if (s->comp_algo == NULL) |
| 2379 | goto fail; |
| 2380 | |
| 2381 | /* HTTP < 1.1 should not be compressed */ |
Willy Tarreau | 7257550 | 2013-12-24 14:41:35 +0100 | [diff] [blame] | 2382 | if (!(msg->flags & HTTP_MSGF_VER_11) || !(txn->req.flags & HTTP_MSGF_VER_11)) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2383 | goto fail; |
| 2384 | |
Jesse Hathaway | 2468d4e | 2015-03-06 20:16:15 +0000 | [diff] [blame] | 2385 | /* compress 200,201,202,203 responses only */ |
| 2386 | if ((txn->status != 200) && |
| 2387 | (txn->status != 201) && |
| 2388 | (txn->status != 202) && |
| 2389 | (txn->status != 203)) |
William Lallemand | d300261 | 2012-11-26 14:34:47 +0100 | [diff] [blame] | 2390 | goto fail; |
| 2391 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2392 | /* Content-Length is null */ |
| 2393 | if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0) |
| 2394 | goto fail; |
| 2395 | |
| 2396 | /* content is already compressed */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2397 | ctx.idx = 0; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2398 | if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx)) |
| 2399 | goto fail; |
| 2400 | |
Willy Tarreau | 56e9ffa | 2013-01-05 16:20:35 +0100 | [diff] [blame] | 2401 | /* no compression when Cache-Control: no-transform is present in the message */ |
| 2402 | ctx.idx = 0; |
| 2403 | while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) { |
| 2404 | if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12)) |
| 2405 | goto fail; |
| 2406 | } |
| 2407 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2408 | comp_type = NULL; |
| 2409 | |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2410 | /* we don't want to compress multipart content-types, nor content-types that are |
| 2411 | * not listed in the "compression type" directive if any. If no content-type was |
| 2412 | * found but configuration requires one, we don't compress either. Backend has |
| 2413 | * the priority. |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2414 | */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2415 | ctx.idx = 0; |
| 2416 | if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) { |
| 2417 | if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0) |
| 2418 | goto fail; |
| 2419 | |
| 2420 | if ((s->be->comp && (comp_type = s->be->comp->types)) || |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2421 | (strm_fe(s)->comp && (comp_type = strm_fe(s)->comp->types))) { |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2422 | for (; comp_type; comp_type = comp_type->next) { |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2423 | if (ctx.vlen >= comp_type->name_len && |
| 2424 | strncasecmp(ctx.line+ctx.val, comp_type->name, comp_type->name_len) == 0) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2425 | /* this Content-Type should be compressed */ |
| 2426 | break; |
| 2427 | } |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2428 | /* this Content-Type should not be compressed */ |
| 2429 | if (comp_type == NULL) |
| 2430 | goto fail; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2431 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2432 | } |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2433 | else { /* no content-type header */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2434 | if ((s->be->comp && s->be->comp->types) || (strm_fe(s)->comp && strm_fe(s)->comp->types)) |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2435 | goto fail; /* a content-type was required */ |
William Lallemand | d300261 | 2012-11-26 14:34:47 +0100 | [diff] [blame] | 2436 | } |
| 2437 | |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 2438 | /* limit compression rate */ |
| 2439 | if (global.comp_rate_lim > 0) |
| 2440 | if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim) |
| 2441 | goto fail; |
| 2442 | |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 2443 | /* limit cpu usage */ |
| 2444 | if (idle_pct < compress_min_idle) |
| 2445 | goto fail; |
| 2446 | |
William Lallemand | 4c49fae | 2012-11-07 15:00:23 +0100 | [diff] [blame] | 2447 | /* initialize compression */ |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 2448 | if (s->comp_algo->init(&s->comp_ctx, global.tune.comp_maxlevel) < 0) |
William Lallemand | 4c49fae | 2012-11-07 15:00:23 +0100 | [diff] [blame] | 2449 | goto fail; |
| 2450 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2451 | s->flags |= SF_COMP_READY; |
William Lallemand | ec3e389 | 2012-11-12 17:02:18 +0100 | [diff] [blame] | 2452 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2453 | /* remove Content-Length header */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2454 | ctx.idx = 0; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2455 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx)) |
| 2456 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 2457 | |
| 2458 | /* add Transfer-Encoding header */ |
| 2459 | if (!(msg->flags & HTTP_MSGF_TE_CHNK)) |
| 2460 | http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26); |
| 2461 | |
| 2462 | /* |
| 2463 | * Add Content-Encoding header when it's not identity encoding. |
| 2464 | * RFC 2616 : Identity encoding: This content-coding is used only in the |
| 2465 | * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding |
| 2466 | * header. |
| 2467 | */ |
Willy Tarreau | 615105e | 2015-03-28 16:40:46 +0100 | [diff] [blame] | 2468 | if (s->comp_algo->cfg_name_len != 8 || memcmp(s->comp_algo->cfg_name, "identity", 8) != 0) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2469 | trash.len = 18; |
| 2470 | memcpy(trash.str, "Content-Encoding: ", trash.len); |
Willy Tarreau | 615105e | 2015-03-28 16:40:46 +0100 | [diff] [blame] | 2471 | memcpy(trash.str + trash.len, s->comp_algo->ua_name, s->comp_algo->ua_name_len); |
| 2472 | trash.len += s->comp_algo->ua_name_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2473 | trash.str[trash.len] = '\0'; |
| 2474 | http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len); |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2475 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2476 | return 1; |
| 2477 | |
| 2478 | fail: |
Willy Tarreau | b97b619 | 2012-11-19 14:55:02 +0100 | [diff] [blame] | 2479 | s->comp_algo = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2480 | return 0; |
| 2481 | } |
| 2482 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2483 | void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg) |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2484 | { |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 2485 | struct proxy *fe = strm_fe(s); |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2486 | int tmp = TX_CON_WANT_KAL; |
| 2487 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2488 | if (!((fe->options2|s->be->options2) & PR_O2_FAKE_KA)) { |
| 2489 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN || |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2490 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 2491 | tmp = TX_CON_WANT_TUN; |
| 2492 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2493 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2494 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 2495 | tmp = TX_CON_WANT_TUN; |
| 2496 | } |
| 2497 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2498 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2499 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) { |
| 2500 | /* option httpclose + server_close => forceclose */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2501 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2502 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 2503 | tmp = TX_CON_WANT_CLO; |
| 2504 | else |
| 2505 | tmp = TX_CON_WANT_SCL; |
| 2506 | } |
| 2507 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2508 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL || |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2509 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL) |
| 2510 | tmp = TX_CON_WANT_CLO; |
| 2511 | |
| 2512 | if ((txn->flags & TX_CON_WANT_MSK) < tmp) |
| 2513 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp; |
| 2514 | |
| 2515 | if (!(txn->flags & TX_HDR_CONN_PRS) && |
| 2516 | (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) { |
| 2517 | /* parse the Connection header and possibly clean it */ |
| 2518 | int to_del = 0; |
| 2519 | if ((msg->flags & HTTP_MSGF_VER_11) || |
| 2520 | ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2521 | !((fe->options2|s->be->options2) & PR_O2_FAKE_KA))) |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2522 | to_del |= 2; /* remove "keep-alive" */ |
| 2523 | if (!(msg->flags & HTTP_MSGF_VER_11)) |
| 2524 | to_del |= 1; /* remove "close" */ |
| 2525 | http_parse_connection_header(txn, msg, to_del); |
| 2526 | } |
| 2527 | |
| 2528 | /* check if client or config asks for explicit close in KAL/SCL */ |
| 2529 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 2530 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) && |
| 2531 | ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */ |
| 2532 | (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */ |
| 2533 | !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2534 | fe->state == PR_STSTOPPED)) /* frontend is stopping */ |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 2535 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
| 2536 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2537 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2538 | /* This stream analyser waits for a complete HTTP request. It returns 1 if the |
| 2539 | * processing can continue on next analysers, or zero if it either needs more |
| 2540 | * data or wants to immediately abort the request (eg: timeout, error, ...). It |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2541 | * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2542 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 2543 | * abort. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2544 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2545 | int http_wait_for_request(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2546 | { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2547 | /* |
| 2548 | * We will parse the partial (or complete) lines. |
| 2549 | * We will check the request syntax, and also join multi-line |
| 2550 | * headers. An index of all the lines will be elaborated while |
| 2551 | * parsing. |
| 2552 | * |
| 2553 | * For the parsing, we use a 28 states FSM. |
| 2554 | * |
| 2555 | * Here is the information we currently have : |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2556 | * req->buf->p = beginning of request |
| 2557 | * req->buf->p + msg->eoh = end of processed headers / start of current one |
| 2558 | * req->buf->p + req->buf->i = end of input data |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 2559 | * msg->eol = end of current header or line (LF or CRLF) |
| 2560 | * msg->next = first non-visited byte |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2561 | * |
| 2562 | * At end of parsing, we may perform a capture of the error (if any), and |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2563 | * we will set a few fields (txn->meth, sn->flags/SF_REDIRECTABLE). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2564 | * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and |
| 2565 | * finally headers capture. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2566 | */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2567 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2568 | int cur_idx; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 2569 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 2570 | struct http_txn *txn = s->txn; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2571 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2572 | struct hdr_ctx ctx; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2573 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2574 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | 6bf1736 | 2009-02-24 10:48:35 +0100 | [diff] [blame] | 2575 | now_ms, __FUNCTION__, |
| 2576 | s, |
| 2577 | req, |
| 2578 | req->rex, req->wex, |
| 2579 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2580 | req->buf->i, |
Willy Tarreau | 6bf1736 | 2009-02-24 10:48:35 +0100 | [diff] [blame] | 2581 | req->analysers); |
| 2582 | |
Willy Tarreau | 52a0c60 | 2009-08-16 22:45:38 +0200 | [diff] [blame] | 2583 | /* we're speaking HTTP here, so let's speak HTTP to the client */ |
| 2584 | s->srv_error = http_return_srv_error; |
| 2585 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2586 | /* There's a protected area at the end of the buffer for rewriting |
| 2587 | * purposes. We don't want to start to parse the request if the |
| 2588 | * protected area is affected, because we may have to move processed |
| 2589 | * data later, which is much more complicated. |
| 2590 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2591 | if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) { |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 2592 | if (txn->flags & TX_NOT_FIRST) { |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 2593 | if (unlikely(!channel_is_rewritable(req))) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2594 | if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 2595 | goto failed_keep_alive; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2596 | /* some data has still not left the buffer, wake us once that's done */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2597 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2598 | req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | d7ad9f5 | 2013-12-31 17:26:25 +0100 | [diff] [blame] | 2599 | req->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2600 | return 0; |
| 2601 | } |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 2602 | if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) || |
| 2603 | bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite)) |
| 2604 | buffer_slow_realign(req->buf); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2605 | } |
| 2606 | |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2607 | /* Note that we have the same problem with the response ; we |
| 2608 | * may want to send a redirect, error or anything which requires |
| 2609 | * some spare space. So we'll ensure that we have at least |
| 2610 | * maxrewrite bytes available in the response buffer before |
| 2611 | * processing that one. This will only affect pipelined |
| 2612 | * keep-alive requests. |
| 2613 | */ |
| 2614 | if ((txn->flags & TX_NOT_FIRST) && |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2615 | unlikely(!channel_is_rewritable(&s->res) || |
| 2616 | bi_end(s->res.buf) < b_ptr(s->res.buf, txn->rsp.next) || |
| 2617 | bi_end(s->res.buf) > s->res.buf->data + s->res.buf->size - global.tune.maxrewrite)) { |
| 2618 | if (s->res.buf->o) { |
| 2619 | if (s->res.flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 2620 | goto failed_keep_alive; |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2621 | /* don't let a connection request be initiated */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2622 | channel_dont_connect(req); |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2623 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
| 2624 | s->res.flags |= CF_WAKE_WRITE; |
| 2625 | s->res.analysers |= an_bit; /* wake us up once it changes */ |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2626 | return 0; |
| 2627 | } |
| 2628 | } |
| 2629 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2630 | if (likely(msg->next < req->buf->i)) /* some unparsed data are available */ |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 2631 | http_msg_analyzer(msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2632 | } |
| 2633 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2634 | /* 1: we might have to print this header in debug mode */ |
| 2635 | if (unlikely((global.mode & MODE_DEBUG) && |
| 2636 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | 7d59e90 | 2014-10-21 19:36:09 +0200 | [diff] [blame] | 2637 | msg->msg_state >= HTTP_MSG_BODY)) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2638 | char *eol, *sol; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2639 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2640 | sol = req->buf->p; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 2641 | /* this is a bit complex : in case of error on the request line, |
| 2642 | * we know that rq.l is still zero, so we display only the part |
| 2643 | * up to the end of the line (truncated by debug_hdr). |
| 2644 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2645 | eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : req->buf->i); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2646 | debug_hdr("clireq", s, sol, eol); |
Willy Tarreau | 45e73e3 | 2006-12-17 00:05:15 +0100 | [diff] [blame] | 2647 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2648 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 2649 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2650 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2651 | while (cur_idx) { |
| 2652 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 2653 | debug_hdr("clihdr", s, sol, eol); |
| 2654 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 2655 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2656 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2657 | } |
| 2658 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2659 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2660 | /* |
| 2661 | * Now we quickly check if we have found a full valid request. |
| 2662 | * If not so, we check the FD and buffer states before leaving. |
| 2663 | * A full request is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2664 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2665 | * requests are checked first. When waiting for a second request |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2666 | * on a keep-alive stream, if we encounter and error, close, t/o, |
| 2667 | * we note the error in the stream flags but don't set any state. |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2668 | * Since the error will be noted there, it will not be counted by |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2669 | * process_stream() as a frontend error. |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2670 | * Last, we may increase some tracked counters' http request errors on |
| 2671 | * the cases that are deliberately the client's fault. For instance, |
| 2672 | * a timeout or connection reset is not counted as an error. However |
| 2673 | * a bad request is. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2674 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2675 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2676 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2677 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2678 | * First, let's catch bad requests. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2679 | */ |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2680 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2681 | stream_inc_http_req_ctr(s); |
| 2682 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2683 | proxy_inc_fe_req_ctr(sess->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2684 | goto return_bad_req; |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2685 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2686 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2687 | /* 1: Since we are in header mode, if there's no space |
| 2688 | * left for headers, we won't be able to free more |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2689 | * later, so the stream will never terminate. We |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2690 | * must terminate it now. |
| 2691 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2692 | if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2693 | /* FIXME: check if URI is set and return Status |
| 2694 | * 414 Request URI too long instead. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2695 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2696 | stream_inc_http_req_ctr(s); |
| 2697 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2698 | proxy_inc_fe_req_ctr(sess->fe); |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 2699 | if (msg->err_pos < 0) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2700 | msg->err_pos = req->buf->i; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2701 | goto return_bad_req; |
| 2702 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2703 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2704 | /* 2: have we encountered a read error ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2705 | else if (req->flags & CF_READ_ERROR) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2706 | if (!(s->flags & SF_ERR_MASK)) |
| 2707 | s->flags |= SF_ERR_CLICL; |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2708 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2709 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2710 | goto failed_keep_alive; |
| 2711 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2712 | /* we cannot return any message on error */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2713 | if (msg->err_pos >= 0) { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2714 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2715 | stream_inc_http_err_ctr(s); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2716 | } |
| 2717 | |
Willy Tarreau | dc979f2 | 2012-12-04 10:39:01 +0100 | [diff] [blame] | 2718 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2719 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2720 | msg->msg_state = HTTP_MSG_ERROR; |
| 2721 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2722 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2723 | stream_inc_http_req_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2724 | proxy_inc_fe_req_ctr(sess->fe); |
| 2725 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 2726 | if (sess->listener->counters) |
| 2727 | sess->listener->counters->failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2728 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2729 | if (!(s->flags & SF_FINST_MASK)) |
| 2730 | s->flags |= SF_FINST_R; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2731 | return 0; |
| 2732 | } |
Willy Tarreau | f9839bd | 2008-08-27 23:57:16 +0200 | [diff] [blame] | 2733 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2734 | /* 3: has the read timeout expired ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2735 | else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2736 | if (!(s->flags & SF_ERR_MASK)) |
| 2737 | s->flags |= SF_ERR_CLITO; |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2738 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2739 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2740 | goto failed_keep_alive; |
| 2741 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2742 | /* read timeout : give up with an error message. */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2743 | if (msg->err_pos >= 0) { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2744 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2745 | stream_inc_http_err_ctr(s); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2746 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2747 | txn->status = 408; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2748 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_408)); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2749 | msg->msg_state = HTTP_MSG_ERROR; |
| 2750 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2751 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2752 | stream_inc_http_req_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2753 | proxy_inc_fe_req_ctr(sess->fe); |
| 2754 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 2755 | if (sess->listener->counters) |
| 2756 | sess->listener->counters->failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2757 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2758 | if (!(s->flags & SF_FINST_MASK)) |
| 2759 | s->flags |= SF_FINST_R; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2760 | return 0; |
| 2761 | } |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 2762 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2763 | /* 4: have we encountered a close ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2764 | else if (req->flags & CF_SHUTR) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2765 | if (!(s->flags & SF_ERR_MASK)) |
| 2766 | s->flags |= SF_ERR_CLICL; |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2767 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2768 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2769 | goto failed_keep_alive; |
| 2770 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2771 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2772 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2773 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2774 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2775 | msg->msg_state = HTTP_MSG_ERROR; |
| 2776 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2777 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2778 | stream_inc_http_err_ctr(s); |
| 2779 | stream_inc_http_req_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2780 | proxy_inc_fe_req_ctr(sess->fe); |
| 2781 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 2782 | if (sess->listener->counters) |
| 2783 | sess->listener->counters->failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2784 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2785 | if (!(s->flags & SF_FINST_MASK)) |
| 2786 | s->flags |= SF_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 2787 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2788 | } |
| 2789 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2790 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2791 | req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2792 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2793 | #ifdef TCP_QUICKACK |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 2794 | if (sess->listener->options & LI_O_NOQUICKACK && req->buf->i && |
| 2795 | objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) { |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2796 | /* We need more data, we have to re-enable quick-ack in case we |
| 2797 | * previously disabled it, otherwise we might cause the client |
| 2798 | * to delay next data. |
| 2799 | */ |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 2800 | setsockopt(__objt_conn(sess->origin)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one)); |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2801 | } |
| 2802 | #endif |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 2803 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2804 | if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) { |
| 2805 | /* If the client starts to talk, let's fall back to |
| 2806 | * request timeout processing. |
| 2807 | */ |
| 2808 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2809 | req->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2810 | } |
| 2811 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2812 | /* just set the request timeout once at the beginning of the request */ |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2813 | if (!tick_isset(req->analyse_exp)) { |
| 2814 | if ((msg->msg_state == HTTP_MSG_RQBEFORE) && |
| 2815 | (txn->flags & TX_WAIT_NEXT_RQ) && |
| 2816 | tick_isset(s->be->timeout.httpka)) |
| 2817 | req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka); |
| 2818 | else |
| 2819 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
| 2820 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2821 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2822 | /* we're not ready yet */ |
| 2823 | return 0; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2824 | |
| 2825 | failed_keep_alive: |
| 2826 | /* Here we process low-level errors for keep-alive requests. In |
| 2827 | * short, if the request is not the first one and it experiences |
| 2828 | * a timeout, read error or shutdown, we just silently close so |
| 2829 | * that the client can try again. |
| 2830 | */ |
| 2831 | txn->status = 0; |
| 2832 | msg->msg_state = HTTP_MSG_RQBEFORE; |
| 2833 | req->analysers = 0; |
| 2834 | s->logs.logwait = 0; |
Willy Tarreau | abcd514 | 2013-06-11 17:18:02 +0200 | [diff] [blame] | 2835 | s->logs.level = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 2836 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2837 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2838 | return 0; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2839 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2840 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2841 | /* OK now we have a complete HTTP request with indexed headers. Let's |
| 2842 | * complete the request parsing by setting a few fields we will need |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2843 | * later. At this point, we have the last CRLF at req->buf->data + msg->eoh. |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 2844 | * If the request is in HTTP/0.9 form, the rule is still true, and eoh |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2845 | * points to the CRLF of the request line. msg->next points to the first |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 2846 | * byte after the last LF. msg->sov points to the first byte of data. |
| 2847 | * msg->eol cannot be trusted because it may have been left uninitialized |
| 2848 | * (for instance in the absence of headers). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2849 | */ |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 2850 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2851 | stream_inc_http_req_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2852 | proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */ |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 2853 | |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2854 | if (txn->flags & TX_WAIT_NEXT_RQ) { |
| 2855 | /* kill the pending keep-alive timeout */ |
| 2856 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
| 2857 | req->analyse_exp = TICK_ETERNITY; |
| 2858 | } |
| 2859 | |
| 2860 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2861 | /* Maybe we found in invalid header name while we were configured not |
| 2862 | * to block on that, so we have to capture it now. |
| 2863 | */ |
| 2864 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2865 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2866 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2867 | /* |
| 2868 | * 1: identify the method |
| 2869 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2870 | txn->meth = find_http_meth(req->buf->p, msg->sl.rq.m_l); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2871 | |
| 2872 | /* we can make use of server redirect on GET and HEAD */ |
| 2873 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2874 | s->flags |= SF_REDIRECTABLE; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 2875 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2876 | /* |
| 2877 | * 2: check if the URI matches the monitor_uri. |
| 2878 | * We have to do this for every request which gets in, because |
| 2879 | * the monitor-uri is defined by the frontend. |
| 2880 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2881 | if (unlikely((sess->fe->monitor_uri_len != 0) && |
| 2882 | (sess->fe->monitor_uri_len == msg->sl.rq.u_l) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2883 | !memcmp(req->buf->p + msg->sl.rq.u, |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2884 | sess->fe->monitor_uri, |
| 2885 | sess->fe->monitor_uri_len))) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2886 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2887 | * We have found the monitor URI |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2888 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2889 | struct acl_cond *cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2890 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2891 | s->flags |= SF_MONITOR; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2892 | sess->fe->fe_counters.intercepted_req++; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2893 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2894 | /* Check if we want to fail this monitor request or not */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2895 | list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 2896 | int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2897 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2898 | ret = acl_pass(ret); |
| 2899 | if (cond->pol == ACL_COND_UNLESS) |
| 2900 | ret = !ret; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2901 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2902 | if (ret) { |
| 2903 | /* we fail this request, let's return 503 service unavail */ |
| 2904 | txn->status = 503; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2905 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2906 | if (!(s->flags & SF_ERR_MASK)) |
| 2907 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2908 | goto return_prx_cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2909 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2910 | } |
Willy Tarreau | a5555ec | 2008-11-30 19:02:32 +0100 | [diff] [blame] | 2911 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2912 | /* nothing to fail, let's reply normaly */ |
| 2913 | txn->status = 200; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 2914 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_200)); |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2915 | if (!(s->flags & SF_ERR_MASK)) |
| 2916 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2917 | goto return_prx_cond; |
| 2918 | } |
| 2919 | |
| 2920 | /* |
| 2921 | * 3: Maybe we have to copy the original REQURI for the logs ? |
| 2922 | * Note: we cannot log anymore if the request has been |
| 2923 | * classified as invalid. |
| 2924 | */ |
| 2925 | if (unlikely(s->logs.logwait & LW_REQ)) { |
| 2926 | /* we have a complete HTTP request that we must log */ |
| 2927 | if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) { |
| 2928 | int urilen = msg->sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2929 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2930 | if (urilen >= REQURI_LEN) |
| 2931 | urilen = REQURI_LEN - 1; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2932 | memcpy(txn->uri, req->buf->p, urilen); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2933 | txn->uri[urilen] = 0; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2934 | |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 2935 | if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT))) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2936 | s->do_log(s); |
| 2937 | } else { |
| 2938 | Alert("HTTP logging : out of memory.\n"); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2939 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2940 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 2941 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2942 | /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */ |
Willy Tarreau | 418bfcc | 2012-03-09 13:56:20 +0100 | [diff] [blame] | 2943 | if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn)) |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 2944 | goto return_bad_req; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2945 | |
Willy Tarreau | 91852eb | 2015-05-01 13:26:00 +0200 | [diff] [blame^] | 2946 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 2947 | * exactly one digit "." one digit. This check may be disabled using |
| 2948 | * option accept-invalid-http-request. |
| 2949 | */ |
| 2950 | if (!(sess->fe->options2 & PR_O2_REQBUG_OK)) { |
| 2951 | if (msg->sl.rq.v_l != 8) { |
| 2952 | msg->err_pos = msg->sl.rq.v; |
| 2953 | goto return_bad_req; |
| 2954 | } |
| 2955 | |
| 2956 | if (req->buf->p[msg->sl.rq.v + 4] != '/' || |
| 2957 | !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 5]) || |
| 2958 | req->buf->p[msg->sl.rq.v + 6] != '.' || |
| 2959 | !isdigit((unsigned char)req->buf->p[msg->sl.rq.v + 7])) { |
| 2960 | msg->err_pos = msg->sl.rq.v + 4; |
| 2961 | goto return_bad_req; |
| 2962 | } |
| 2963 | } |
| 2964 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2965 | /* ... and check if the request is HTTP/1.1 or above */ |
| 2966 | if ((msg->sl.rq.v_l == 8) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2967 | ((req->buf->p[msg->sl.rq.v + 5] > '1') || |
| 2968 | ((req->buf->p[msg->sl.rq.v + 5] == '1') && |
| 2969 | (req->buf->p[msg->sl.rq.v + 7] >= '1')))) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2970 | msg->flags |= HTTP_MSGF_VER_11; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2971 | |
| 2972 | /* "connection" has not been parsed yet */ |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 2973 | txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL | TX_HDR_CONN_UPG); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2974 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2975 | /* if the frontend has "option http-use-proxy-header", we'll check if |
| 2976 | * we have what looks like a proxied connection instead of a connection, |
| 2977 | * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection. |
| 2978 | * Note that this is *not* RFC-compliant, however browsers and proxies |
| 2979 | * happen to do that despite being non-standard :-( |
| 2980 | * We consider that a request not beginning with either '/' or '*' is |
| 2981 | * a proxied connection, which covers both "scheme://location" and |
| 2982 | * CONNECT ip:port. |
| 2983 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 2984 | if ((sess->fe->options2 & PR_O2_USE_PXHDR) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2985 | req->buf->p[msg->sl.rq.u] != '/' && req->buf->p[msg->sl.rq.u] != '*') |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2986 | txn->flags |= TX_USE_PX_CONN; |
| 2987 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2988 | /* transfer length unknown*/ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2989 | msg->flags &= ~HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2990 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2991 | /* 5: we may need to capture headers */ |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 2992 | if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap)) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2993 | capture_headers(req->buf->p, &txn->hdr_idx, |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 2994 | s->req_cap, sess->fe->req_cap); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2995 | |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 2996 | /* 6: determine the transfer-length according to RFC2616 #4.4, updated |
| 2997 | * by RFC7230#3.3.3 : |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2998 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 2999 | * The length of a message body is determined by one of the following |
| 3000 | * (in order of precedence): |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3001 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 3002 | * 1. Any response to a HEAD request and any response with a 1xx |
| 3003 | * (Informational), 204 (No Content), or 304 (Not Modified) status |
| 3004 | * code is always terminated by the first empty line after the |
| 3005 | * header fields, regardless of the header fields present in the |
| 3006 | * message, and thus cannot contain a message body. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3007 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 3008 | * 2. Any 2xx (Successful) response to a CONNECT request implies that |
| 3009 | * the connection will become a tunnel immediately after the empty |
| 3010 | * line that concludes the header fields. A client MUST ignore any |
| 3011 | * Content-Length or Transfer-Encoding header fields received in |
| 3012 | * such a message. |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 3013 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 3014 | * 3. If a Transfer-Encoding header field is present and the chunked |
| 3015 | * transfer coding (Section 4.1) is the final encoding, the message |
| 3016 | * body length is determined by reading and decoding the chunked |
| 3017 | * data until the transfer coding indicates the data is complete. |
| 3018 | * |
| 3019 | * If a Transfer-Encoding header field is present in a response and |
| 3020 | * the chunked transfer coding is not the final encoding, the |
| 3021 | * message body length is determined by reading the connection until |
| 3022 | * it is closed by the server. If a Transfer-Encoding header field |
| 3023 | * is present in a request and the chunked transfer coding is not |
| 3024 | * the final encoding, the message body length cannot be determined |
| 3025 | * reliably; the server MUST respond with the 400 (Bad Request) |
| 3026 | * status code and then close the connection. |
| 3027 | * |
| 3028 | * If a message is received with both a Transfer-Encoding and a |
| 3029 | * Content-Length header field, the Transfer-Encoding overrides the |
| 3030 | * Content-Length. Such a message might indicate an attempt to |
| 3031 | * perform request smuggling (Section 9.5) or response splitting |
| 3032 | * (Section 9.4) and ought to be handled as an error. A sender MUST |
| 3033 | * remove the received Content-Length field prior to forwarding such |
| 3034 | * a message downstream. |
| 3035 | * |
| 3036 | * 4. If a message is received without Transfer-Encoding and with |
| 3037 | * either multiple Content-Length header fields having differing |
| 3038 | * field-values or a single Content-Length header field having an |
| 3039 | * invalid value, then the message framing is invalid and the |
| 3040 | * recipient MUST treat it as an unrecoverable error. If this is a |
| 3041 | * request message, the server MUST respond with a 400 (Bad Request) |
| 3042 | * status code and then close the connection. If this is a response |
| 3043 | * message received by a proxy, the proxy MUST close the connection |
| 3044 | * to the server, discard the received response, and send a 502 (Bad |
| 3045 | * Gateway) response to the client. If this is a response message |
| 3046 | * received by a user agent, the user agent MUST close the |
| 3047 | * connection to the server and discard the received response. |
| 3048 | * |
| 3049 | * 5. If a valid Content-Length header field is present without |
| 3050 | * Transfer-Encoding, its decimal value defines the expected message |
| 3051 | * body length in octets. If the sender closes the connection or |
| 3052 | * the recipient times out before the indicated number of octets are |
| 3053 | * received, the recipient MUST consider the message to be |
| 3054 | * incomplete and close the connection. |
| 3055 | * |
| 3056 | * 6. If this is a request message and none of the above are true, then |
| 3057 | * the message body length is zero (no message body is present). |
| 3058 | * |
| 3059 | * 7. Otherwise, this is a response message without a declared message |
| 3060 | * body length, so the message body length is determined by the |
| 3061 | * number of octets received prior to the server closing the |
| 3062 | * connection. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3063 | */ |
| 3064 | |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3065 | ctx.idx = 0; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 3066 | /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */ |
Willy Tarreau | 4979d5c | 2015-05-01 10:06:30 +0200 | [diff] [blame] | 3067 | while (http_find_header2("Transfer-Encoding", 17, req->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 3068 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3069 | msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
| 3070 | else if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | 34dfc60 | 2015-05-01 10:09:49 +0200 | [diff] [blame] | 3071 | /* chunked not last, return badreq */ |
| 3072 | goto return_bad_req; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 3073 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3074 | } |
| 3075 | |
Willy Tarreau | 1c91391 | 2015-04-30 10:57:51 +0200 | [diff] [blame] | 3076 | /* Chunked requests must have their content-length removed */ |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3077 | ctx.idx = 0; |
Willy Tarreau | 1c91391 | 2015-04-30 10:57:51 +0200 | [diff] [blame] | 3078 | if (msg->flags & HTTP_MSGF_TE_CHNK) { |
| 3079 | while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) |
| 3080 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 3081 | } |
Willy Tarreau | 34dfc60 | 2015-05-01 10:09:49 +0200 | [diff] [blame] | 3082 | else while (http_find_header2("Content-Length", 14, req->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3083 | signed long long cl; |
| 3084 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3085 | if (!ctx.vlen) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3086 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3087 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3088 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3089 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3090 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3091 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3092 | goto return_bad_req; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3093 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3094 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3095 | if (cl < 0) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3096 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3097 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3098 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3099 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3100 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3101 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3102 | goto return_bad_req; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 3103 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3104 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3105 | msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 3106 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 3107 | } |
| 3108 | |
Willy Tarreau | 34dfc60 | 2015-05-01 10:09:49 +0200 | [diff] [blame] | 3109 | /* even bodyless requests have a known length */ |
| 3110 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 3111 | |
Willy Tarreau | 179085c | 2014-04-28 16:48:56 +0200 | [diff] [blame] | 3112 | /* Until set to anything else, the connection mode is set as Keep-Alive. It will |
| 3113 | * only change if both the request and the config reference something else. |
| 3114 | * Option httpclose by itself sets tunnel mode where headers are mangled. |
| 3115 | * However, if another mode is set, it will affect it (eg: server-close/ |
| 3116 | * keep-alive + httpclose = close). Note that we avoid to redo the same work |
| 3117 | * if FE and BE have the same settings (common). The method consists in |
| 3118 | * checking if options changed between the two calls (implying that either |
| 3119 | * one is non-null, or one of them is non-null and we are there for the first |
| 3120 | * time. |
| 3121 | */ |
| 3122 | if (!(txn->flags & TX_HDR_CONN_PRS) || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 3123 | ((sess->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE))) |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 3124 | http_adjust_conn_mode(s, txn, msg); |
Willy Tarreau | 179085c | 2014-04-28 16:48:56 +0200 | [diff] [blame] | 3125 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3126 | /* end of job, return OK */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 3127 | req->analysers &= ~an_bit; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3128 | req->analyse_exp = TICK_ETERNITY; |
| 3129 | return 1; |
| 3130 | |
| 3131 | return_bad_req: |
| 3132 | /* We centralize bad requests processing here */ |
| 3133 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 3134 | /* we detected a parsing error. We want to archive this request |
| 3135 | * in the dedicated proxy area for later troubleshooting. |
| 3136 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 3137 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3138 | } |
| 3139 | |
| 3140 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3141 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 3142 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3143 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 3144 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 3145 | if (sess->listener->counters) |
| 3146 | sess->listener->counters->failed_req++; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3147 | |
| 3148 | return_prx_cond: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 3149 | if (!(s->flags & SF_ERR_MASK)) |
| 3150 | s->flags |= SF_ERR_PRXCOND; |
| 3151 | if (!(s->flags & SF_FINST_MASK)) |
| 3152 | s->flags |= SF_FINST_R; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3153 | |
| 3154 | req->analysers = 0; |
| 3155 | req->analyse_exp = TICK_ETERNITY; |
| 3156 | return 0; |
| 3157 | } |
| 3158 | |
Willy Tarreau | 4f8a83c | 2012-06-04 00:26:23 +0200 | [diff] [blame] | 3159 | |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3160 | /* This function prepares an applet to handle the stats. It can deal with the |
| 3161 | * "100-continue" expectation, check that admin rules are met for POST requests, |
| 3162 | * and program a response message if something was unexpected. It cannot fail |
| 3163 | * and always relies on the stats applet to complete the job. It does not touch |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3164 | * analysers nor counters, which are left to the caller. It does not touch |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3165 | * s->target which is supposed to already point to the stats applet. The caller |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3166 | * is expected to have already assigned an appctx to the stream. |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3167 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3168 | int http_handle_stats(struct stream *s, struct channel *req) |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3169 | { |
| 3170 | struct stats_admin_rule *stats_admin_rule; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 3171 | struct stream_interface *si = &s->si[1]; |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 3172 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 3173 | struct http_txn *txn = s->txn; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3174 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3175 | struct uri_auth *uri_auth = s->be->uri_auth; |
| 3176 | const char *uri, *h, *lookup; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3177 | struct appctx *appctx; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3178 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3179 | appctx = si_appctx(si); |
| 3180 | memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats)); |
| 3181 | appctx->st1 = appctx->st2 = 0; |
| 3182 | appctx->ctx.stats.st_code = STAT_STATUS_INIT; |
| 3183 | appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 3184 | if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn->meth != HTTP_METH_HEAD)) |
Willy Tarreau | af3cf70 | 2014-04-22 22:19:53 +0200 | [diff] [blame] | 3185 | appctx->ctx.stats.flags |= STAT_CHUNKED; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3186 | |
| 3187 | uri = msg->chn->buf->p + msg->sl.rq.u; |
| 3188 | lookup = uri + uri_auth->uri_len; |
| 3189 | |
| 3190 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) { |
| 3191 | if (memcmp(h, ";up", 3) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3192 | appctx->ctx.stats.flags |= STAT_HIDE_DOWN; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3193 | break; |
| 3194 | } |
| 3195 | } |
| 3196 | |
| 3197 | if (uri_auth->refresh) { |
| 3198 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) { |
| 3199 | if (memcmp(h, ";norefresh", 10) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3200 | appctx->ctx.stats.flags |= STAT_NO_REFRESH; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3201 | break; |
| 3202 | } |
| 3203 | } |
| 3204 | } |
| 3205 | |
| 3206 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) { |
| 3207 | if (memcmp(h, ";csv", 4) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3208 | appctx->ctx.stats.flags &= ~STAT_FMT_HTML; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3209 | break; |
| 3210 | } |
| 3211 | } |
| 3212 | |
| 3213 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) { |
| 3214 | if (memcmp(h, ";st=", 4) == 0) { |
| 3215 | int i; |
| 3216 | h += 4; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3217 | appctx->ctx.stats.st_code = STAT_STATUS_UNKN; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3218 | for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) { |
| 3219 | if (strncmp(stat_status_codes[i], h, 4) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3220 | appctx->ctx.stats.st_code = i; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3221 | break; |
| 3222 | } |
| 3223 | } |
| 3224 | break; |
| 3225 | } |
| 3226 | } |
| 3227 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3228 | appctx->ctx.stats.scope_str = 0; |
| 3229 | appctx->ctx.stats.scope_len = 0; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3230 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) { |
| 3231 | if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) { |
| 3232 | int itx = 0; |
| 3233 | const char *h2; |
| 3234 | char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1]; |
| 3235 | const char *err; |
| 3236 | |
| 3237 | h += strlen(STAT_SCOPE_INPUT_NAME) + 1; |
| 3238 | h2 = h; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3239 | appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3240 | while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') { |
| 3241 | itx++; |
| 3242 | h++; |
| 3243 | } |
| 3244 | |
| 3245 | if (itx > STAT_SCOPE_TXT_MAXLEN) |
| 3246 | itx = STAT_SCOPE_TXT_MAXLEN; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3247 | appctx->ctx.stats.scope_len = itx; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3248 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3249 | /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */ |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3250 | memcpy(scope_txt, h2, itx); |
| 3251 | scope_txt[itx] = '\0'; |
| 3252 | err = invalid_char(scope_txt); |
| 3253 | if (err) { |
| 3254 | /* bad char in search text => clear scope */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3255 | appctx->ctx.stats.scope_str = 0; |
| 3256 | appctx->ctx.stats.scope_len = 0; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3257 | } |
| 3258 | break; |
| 3259 | } |
| 3260 | } |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3261 | |
| 3262 | /* now check whether we have some admin rules for this request */ |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3263 | list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) { |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3264 | int ret = 1; |
| 3265 | |
| 3266 | if (stats_admin_rule->cond) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 3267 | ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3268 | ret = acl_pass(ret); |
| 3269 | if (stats_admin_rule->cond->pol == ACL_COND_UNLESS) |
| 3270 | ret = !ret; |
| 3271 | } |
| 3272 | |
| 3273 | if (ret) { |
| 3274 | /* no rule, or the rule matches */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3275 | appctx->ctx.stats.flags |= STAT_ADMIN; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3276 | break; |
| 3277 | } |
| 3278 | } |
| 3279 | |
| 3280 | /* Was the status page requested with a POST ? */ |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3281 | if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3282 | if (appctx->ctx.stats.flags & STAT_ADMIN) { |
Willy Tarreau | cfe7fdd | 2014-04-26 22:08:32 +0200 | [diff] [blame] | 3283 | /* we'll need the request body, possibly after sending 100-continue */ |
| 3284 | req->analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3285 | appctx->st0 = STAT_HTTP_POST; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3286 | } |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3287 | else { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3288 | appctx->ctx.stats.st_code = STAT_STATUS_DENY; |
| 3289 | appctx->st0 = STAT_HTTP_LAST; |
de Lafond Guillaume | 88c278f | 2013-04-15 19:27:10 +0200 | [diff] [blame] | 3290 | } |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3291 | } |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3292 | else { |
| 3293 | /* So it was another method (GET/HEAD) */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3294 | appctx->st0 = STAT_HTTP_HEAD; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3295 | } |
| 3296 | |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3297 | s->task->nice = -32; /* small boost for HTTP statistics */ |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3298 | return 1; |
| 3299 | } |
| 3300 | |
Lukas Tribus | 67db8df | 2013-06-23 17:37:13 +0200 | [diff] [blame] | 3301 | /* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets |
| 3302 | * (as per RFC3260 #4 and BCP37 #4.2 and #5.2). |
| 3303 | */ |
Thierry FOURNIER | 7fe75e0 | 2015-03-16 12:03:44 +0100 | [diff] [blame] | 3304 | void inet_set_tos(int fd, struct sockaddr_storage from, int tos) |
Lukas Tribus | 67db8df | 2013-06-23 17:37:13 +0200 | [diff] [blame] | 3305 | { |
| 3306 | #ifdef IP_TOS |
| 3307 | if (from.ss_family == AF_INET) |
| 3308 | setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); |
| 3309 | #endif |
| 3310 | #ifdef IPV6_TCLASS |
| 3311 | if (from.ss_family == AF_INET6) { |
| 3312 | if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr)) |
| 3313 | /* v4-mapped addresses need IP_TOS */ |
| 3314 | setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); |
| 3315 | else |
| 3316 | setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)); |
| 3317 | } |
| 3318 | #endif |
| 3319 | } |
| 3320 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3321 | int http_transform_header_str(struct stream* s, struct http_msg *msg, |
Thierry FOURNIER | 5531f87 | 2015-03-16 11:15:50 +0100 | [diff] [blame] | 3322 | const char* name, unsigned int name_len, |
| 3323 | const char *str, struct my_regex *re, |
| 3324 | int action) |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3325 | { |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3326 | struct hdr_ctx ctx; |
| 3327 | char *buf = msg->chn->buf->p; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 3328 | struct hdr_idx *idx = &s->txn->hdr_idx; |
Thierry FOURNIER | 5531f87 | 2015-03-16 11:15:50 +0100 | [diff] [blame] | 3329 | int (*http_find_hdr_func)(const char *name, int len, char *sol, |
| 3330 | struct hdr_idx *idx, struct hdr_ctx *ctx); |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3331 | struct chunk *output = get_trash_chunk(); |
| 3332 | |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3333 | ctx.idx = 0; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3334 | |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3335 | /* Choose the header browsing function. */ |
| 3336 | switch (action) { |
| 3337 | case HTTP_REQ_ACT_REPLACE_VAL: |
| 3338 | case HTTP_RES_ACT_REPLACE_VAL: |
| 3339 | http_find_hdr_func = http_find_header2; |
| 3340 | break; |
| 3341 | case HTTP_REQ_ACT_REPLACE_HDR: |
| 3342 | case HTTP_RES_ACT_REPLACE_HDR: |
| 3343 | http_find_hdr_func = http_find_full_header2; |
| 3344 | break; |
| 3345 | default: /* impossible */ |
| 3346 | return -1; |
| 3347 | } |
| 3348 | |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3349 | while (http_find_hdr_func(name, name_len, buf, idx, &ctx)) { |
| 3350 | struct hdr_idx_elem *hdr = idx->v + ctx.idx; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3351 | int delta; |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3352 | char *val = ctx.line + ctx.val; |
| 3353 | char* val_end = val + ctx.vlen; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3354 | |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3355 | if (!regex_exec_match2(re, val, val_end-val, MAX_MATCH, pmatch, 0)) |
| 3356 | continue; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3357 | |
Thierry FOURNIER | 5531f87 | 2015-03-16 11:15:50 +0100 | [diff] [blame] | 3358 | output->len = exp_replace(output->str, output->size, val, str, pmatch); |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3359 | if (output->len == -1) |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3360 | return -1; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3361 | |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3362 | delta = buffer_replace2(msg->chn->buf, val, val_end, output->str, output->len); |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3363 | |
| 3364 | hdr->len += delta; |
| 3365 | http_msg_move_end(msg, delta); |
Thierry FOURNIER | 191f9ef | 2015-03-16 23:23:53 +0100 | [diff] [blame] | 3366 | |
| 3367 | /* Adjust the length of the current value of the index. */ |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3368 | ctx.vlen += delta; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3369 | } |
| 3370 | |
| 3371 | return 0; |
| 3372 | } |
| 3373 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3374 | static int http_transform_header(struct stream* s, struct http_msg *msg, |
Thierry FOURNIER | 5531f87 | 2015-03-16 11:15:50 +0100 | [diff] [blame] | 3375 | const char* name, unsigned int name_len, |
| 3376 | struct list *fmt, struct my_regex *re, |
| 3377 | int action) |
| 3378 | { |
| 3379 | struct chunk *replace = get_trash_chunk(); |
| 3380 | |
| 3381 | replace->len = build_logline(s, replace->str, replace->size, fmt); |
| 3382 | if (replace->len >= replace->size - 1) |
| 3383 | return -1; |
| 3384 | |
| 3385 | return http_transform_header_str(s, msg, name, name_len, replace->str, re, action); |
| 3386 | } |
| 3387 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3388 | /* Executes the http-request rules <rules> for stream <s>, proxy <px> and |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3389 | * transaction <txn>. Returns the verdict of the first rule that prevents |
| 3390 | * further processing of the request (auth, deny, ...), and defaults to |
| 3391 | * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or |
| 3392 | * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT |
| 3393 | * on txn->flags if it encounters a tarpit rule. |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3394 | */ |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3395 | enum rule_result |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3396 | http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3397 | { |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3398 | struct session *sess = strm_sess(s); |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3399 | struct http_txn *txn = s->txn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3400 | struct connection *cli_conn; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3401 | struct http_req_rule *rule; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3402 | struct hdr_ctx ctx; |
Willy Tarreau | ae3c010 | 2014-04-28 23:22:08 +0200 | [diff] [blame] | 3403 | const char *auth_realm; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3404 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3405 | /* If "the current_rule_list" match the executed rule list, we are in |
| 3406 | * resume condition. If a resume is needed it is always in the action |
| 3407 | * and never in the ACL or converters. In this case, we initialise the |
| 3408 | * current rule, and go to the action execution point. |
| 3409 | */ |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3410 | if (s->current_rule) { |
| 3411 | rule = s->current_rule; |
| 3412 | s->current_rule = NULL; |
| 3413 | if (s->current_rule_list == rules) |
| 3414 | goto resume_execution; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3415 | } |
| 3416 | s->current_rule_list = rules; |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3417 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3418 | list_for_each_entry(rule, rules, list) { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3419 | if (rule->action >= HTTP_REQ_ACT_MAX) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3420 | continue; |
| 3421 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3422 | /* check optional condition */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3423 | if (rule->cond) { |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3424 | int ret; |
| 3425 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 3426 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3427 | ret = acl_pass(ret); |
| 3428 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3429 | if (rule->cond->pol == ACL_COND_UNLESS) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3430 | ret = !ret; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3431 | |
| 3432 | if (!ret) /* condition not matched */ |
| 3433 | continue; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3434 | } |
| 3435 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3436 | resume_execution: |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3437 | switch (rule->action) { |
| 3438 | case HTTP_REQ_ACT_ALLOW: |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3439 | return HTTP_RULE_RES_STOP; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3440 | |
| 3441 | case HTTP_REQ_ACT_DENY: |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 3442 | txn->rule_deny_status = rule->deny_status; |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3443 | return HTTP_RULE_RES_DENY; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3444 | |
Willy Tarreau | ccbcc37 | 2012-12-27 12:37:57 +0100 | [diff] [blame] | 3445 | case HTTP_REQ_ACT_TARPIT: |
| 3446 | txn->flags |= TX_CLTARPIT; |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 3447 | txn->rule_deny_status = rule->deny_status; |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3448 | return HTTP_RULE_RES_DENY; |
Willy Tarreau | ccbcc37 | 2012-12-27 12:37:57 +0100 | [diff] [blame] | 3449 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3450 | case HTTP_REQ_ACT_AUTH: |
Willy Tarreau | ae3c010 | 2014-04-28 23:22:08 +0200 | [diff] [blame] | 3451 | /* Auth might be performed on regular http-req rules as well as on stats */ |
| 3452 | auth_realm = rule->arg.auth.realm; |
| 3453 | if (!auth_realm) { |
| 3454 | if (px->uri_auth && rules == &px->uri_auth->http_req_rules) |
| 3455 | auth_realm = STATS_DEFAULT_REALM; |
| 3456 | else |
| 3457 | auth_realm = px->id; |
| 3458 | } |
| 3459 | /* send 401/407 depending on whether we use a proxy or not. We still |
| 3460 | * count one error, because normal browsing won't significantly |
| 3461 | * increase the counter but brute force attempts will. |
| 3462 | */ |
| 3463 | chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm); |
| 3464 | txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401; |
| 3465 | stream_int_retnclose(&s->si[0], &trash); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3466 | stream_inc_http_err_ctr(s); |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3467 | return HTTP_RULE_RES_ABRT; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3468 | |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 3469 | case HTTP_REQ_ACT_REDIR: |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3470 | if (!http_apply_redirect_rule(rule->arg.redir, s, txn)) |
| 3471 | return HTTP_RULE_RES_BADREQ; |
| 3472 | return HTTP_RULE_RES_DONE; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 3473 | |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 3474 | case HTTP_REQ_ACT_SET_NICE: |
| 3475 | s->task->nice = rule->arg.nice; |
| 3476 | break; |
| 3477 | |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3478 | case HTTP_REQ_ACT_SET_TOS: |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3479 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3480 | inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos); |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3481 | break; |
| 3482 | |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3483 | case HTTP_REQ_ACT_SET_MARK: |
| 3484 | #ifdef SO_MARK |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3485 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3486 | setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark)); |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3487 | #endif |
| 3488 | break; |
| 3489 | |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 3490 | case HTTP_REQ_ACT_SET_LOGL: |
| 3491 | s->logs.level = rule->arg.loglevel; |
| 3492 | break; |
| 3493 | |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3494 | case HTTP_REQ_ACT_REPLACE_HDR: |
| 3495 | case HTTP_REQ_ACT_REPLACE_VAL: |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3496 | if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name, |
| 3497 | rule->arg.hdr_add.name_len, |
| 3498 | &rule->arg.hdr_add.fmt, |
| 3499 | &rule->arg.hdr_add.re, rule->action)) |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3500 | return HTTP_RULE_RES_BADREQ; |
| 3501 | break; |
| 3502 | |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 3503 | case HTTP_REQ_ACT_DEL_HDR: |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3504 | ctx.idx = 0; |
| 3505 | /* remove all occurrences of the header */ |
| 3506 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3507 | txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3508 | http_remove_header2(&txn->req, &txn->hdr_idx, &ctx); |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3509 | } |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3510 | break; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3511 | |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3512 | case HTTP_REQ_ACT_SET_HDR: |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3513 | case HTTP_REQ_ACT_ADD_HDR: |
| 3514 | chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name); |
| 3515 | memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 3516 | trash.len = rule->arg.hdr_add.name_len; |
| 3517 | trash.str[trash.len++] = ':'; |
| 3518 | trash.str[trash.len++] = ' '; |
| 3519 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt); |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3520 | |
| 3521 | if (rule->action == HTTP_REQ_ACT_SET_HDR) { |
| 3522 | /* remove all occurrences of the header */ |
| 3523 | ctx.idx = 0; |
| 3524 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3525 | txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3526 | http_remove_header2(&txn->req, &txn->hdr_idx, &ctx); |
| 3527 | } |
| 3528 | } |
| 3529 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3530 | http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len); |
| 3531 | break; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3532 | |
| 3533 | case HTTP_REQ_ACT_DEL_ACL: |
| 3534 | case HTTP_REQ_ACT_DEL_MAP: { |
| 3535 | struct pat_ref *ref; |
| 3536 | char *key; |
| 3537 | int len; |
| 3538 | |
| 3539 | /* collect reference */ |
| 3540 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3541 | if (!ref) |
| 3542 | continue; |
| 3543 | |
| 3544 | /* collect key */ |
| 3545 | len = build_logline(s, trash.str, trash.size, &rule->arg.map.key); |
| 3546 | key = trash.str; |
| 3547 | key[len] = '\0'; |
| 3548 | |
| 3549 | /* perform update */ |
| 3550 | /* returned code: 1=ok, 0=ko */ |
| 3551 | pat_ref_delete(ref, key); |
| 3552 | |
| 3553 | break; |
| 3554 | } |
| 3555 | |
| 3556 | case HTTP_REQ_ACT_ADD_ACL: { |
| 3557 | struct pat_ref *ref; |
| 3558 | char *key; |
| 3559 | struct chunk *trash_key; |
| 3560 | int len; |
| 3561 | |
| 3562 | trash_key = get_trash_chunk(); |
| 3563 | |
| 3564 | /* collect reference */ |
| 3565 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3566 | if (!ref) |
| 3567 | continue; |
| 3568 | |
| 3569 | /* collect key */ |
| 3570 | len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key); |
| 3571 | key = trash_key->str; |
| 3572 | key[len] = '\0'; |
| 3573 | |
| 3574 | /* perform update */ |
| 3575 | /* add entry only if it does not already exist */ |
| 3576 | if (pat_ref_find_elt(ref, key) == NULL) |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 3577 | pat_ref_add(ref, key, NULL, NULL); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3578 | |
| 3579 | break; |
| 3580 | } |
| 3581 | |
| 3582 | case HTTP_REQ_ACT_SET_MAP: { |
| 3583 | struct pat_ref *ref; |
| 3584 | char *key, *value; |
| 3585 | struct chunk *trash_key, *trash_value; |
| 3586 | int len; |
| 3587 | |
| 3588 | trash_key = get_trash_chunk(); |
| 3589 | trash_value = get_trash_chunk(); |
| 3590 | |
| 3591 | /* collect reference */ |
| 3592 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3593 | if (!ref) |
| 3594 | continue; |
| 3595 | |
| 3596 | /* collect key */ |
| 3597 | len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key); |
| 3598 | key = trash_key->str; |
| 3599 | key[len] = '\0'; |
| 3600 | |
| 3601 | /* collect value */ |
| 3602 | len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value); |
| 3603 | value = trash_value->str; |
| 3604 | value[len] = '\0'; |
| 3605 | |
| 3606 | /* perform update */ |
| 3607 | if (pat_ref_find_elt(ref, key) != NULL) |
| 3608 | /* update entry if it exists */ |
| 3609 | pat_ref_set(ref, key, value, NULL); |
| 3610 | else |
| 3611 | /* insert a new entry */ |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 3612 | pat_ref_add(ref, key, value, NULL); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3613 | |
| 3614 | break; |
| 3615 | } |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 3616 | |
| 3617 | case HTTP_REQ_ACT_CUSTOM_CONT: |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3618 | if (!rule->action_ptr(rule, px, s)) { |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3619 | s->current_rule = rule; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3620 | return HTTP_RULE_RES_YIELD; |
| 3621 | } |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 3622 | break; |
| 3623 | |
| 3624 | case HTTP_REQ_ACT_CUSTOM_STOP: |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3625 | rule->action_ptr(rule, px, s); |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3626 | return HTTP_RULE_RES_DONE; |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 3627 | |
| 3628 | case HTTP_REQ_ACT_TRK_SC0 ... HTTP_REQ_ACT_TRK_SCMAX: |
| 3629 | /* Note: only the first valid tracking parameter of each |
| 3630 | * applies. |
| 3631 | */ |
| 3632 | |
| 3633 | if (stkctr_entry(&s->stkctr[http_req_trk_idx(rule->action)]) == NULL) { |
| 3634 | struct stktable *t; |
| 3635 | struct stksess *ts; |
| 3636 | struct stktable_key *key; |
| 3637 | void *ptr; |
| 3638 | |
| 3639 | t = rule->act_prm.trk_ctr.table.t; |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 3640 | key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr, NULL); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 3641 | |
| 3642 | if (key && (ts = stktable_get_entry(t, key))) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3643 | stream_track_stkctr(&s->stkctr[http_req_trk_idx(rule->action)], t, ts); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 3644 | |
| 3645 | /* let's count a new HTTP request as it's the first time we do it */ |
| 3646 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT); |
| 3647 | if (ptr) |
| 3648 | stktable_data_cast(ptr, http_req_cnt)++; |
| 3649 | |
| 3650 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE); |
| 3651 | if (ptr) |
| 3652 | update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate), |
| 3653 | t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1); |
| 3654 | |
| 3655 | stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_CONTENT); |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3656 | if (sess->fe != s->be) |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 3657 | stkctr_set_flags(&s->stkctr[http_req_trk_idx(rule->action)], STKCTR_TRACK_BACKEND); |
| 3658 | } |
| 3659 | } |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3660 | } |
| 3661 | } |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3662 | |
| 3663 | /* we reached the end of the rules, nothing to report */ |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 3664 | return HTTP_RULE_RES_CONT; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3665 | } |
| 3666 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3667 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3668 | /* Executes the http-response rules <rules> for stream <s>, proxy <px> and |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3669 | * transaction <txn>. Returns 3 states: HTTP_RULE_RES_CONT, HTTP_RULE_RES_YIELD |
| 3670 | * or HTTP_RULE_RES_STOP. If *CONT is returned, the process can continue the |
| 3671 | * evaluation of next rule list. If *STOP is returned, the process must stop |
| 3672 | * the evaluation. It may set the TX_SVDENY on txn->flags if it encounters a deny |
| 3673 | * rule. If *YIELD is returned, the czller must call again the function with |
| 3674 | * the same context. |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3675 | */ |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3676 | static enum rule_result |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3677 | http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s) |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3678 | { |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3679 | struct session *sess = strm_sess(s); |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3680 | struct http_txn *txn = s->txn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3681 | struct connection *cli_conn; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3682 | struct http_res_rule *rule; |
| 3683 | struct hdr_ctx ctx; |
| 3684 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3685 | /* If "the current_rule_list" match the executed rule list, we are in |
| 3686 | * resume condition. If a resume is needed it is always in the action |
| 3687 | * and never in the ACL or converters. In this case, we initialise the |
| 3688 | * current rule, and go to the action execution point. |
| 3689 | */ |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3690 | if (s->current_rule) { |
| 3691 | rule = s->current_rule; |
| 3692 | s->current_rule = NULL; |
| 3693 | if (s->current_rule_list == rules) |
| 3694 | goto resume_execution; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3695 | } |
| 3696 | s->current_rule_list = rules; |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3697 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3698 | list_for_each_entry(rule, rules, list) { |
| 3699 | if (rule->action >= HTTP_RES_ACT_MAX) |
| 3700 | continue; |
| 3701 | |
| 3702 | /* check optional condition */ |
| 3703 | if (rule->cond) { |
| 3704 | int ret; |
| 3705 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 3706 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3707 | ret = acl_pass(ret); |
| 3708 | |
| 3709 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 3710 | ret = !ret; |
| 3711 | |
| 3712 | if (!ret) /* condition not matched */ |
| 3713 | continue; |
| 3714 | } |
| 3715 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3716 | resume_execution: |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3717 | switch (rule->action) { |
| 3718 | case HTTP_RES_ACT_ALLOW: |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3719 | return HTTP_RULE_RES_STOP; /* "allow" rules are OK */ |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3720 | |
| 3721 | case HTTP_RES_ACT_DENY: |
| 3722 | txn->flags |= TX_SVDENY; |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3723 | return HTTP_RULE_RES_STOP; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3724 | |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 3725 | case HTTP_RES_ACT_SET_NICE: |
| 3726 | s->task->nice = rule->arg.nice; |
| 3727 | break; |
| 3728 | |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3729 | case HTTP_RES_ACT_SET_TOS: |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3730 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3731 | inet_set_tos(cli_conn->t.sock.fd, cli_conn->addr.from, rule->arg.tos); |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3732 | break; |
| 3733 | |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3734 | case HTTP_RES_ACT_SET_MARK: |
| 3735 | #ifdef SO_MARK |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 3736 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3737 | setsockopt(cli_conn->t.sock.fd, SOL_SOCKET, SO_MARK, &rule->arg.mark, sizeof(rule->arg.mark)); |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3738 | #endif |
| 3739 | break; |
| 3740 | |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 3741 | case HTTP_RES_ACT_SET_LOGL: |
| 3742 | s->logs.level = rule->arg.loglevel; |
| 3743 | break; |
| 3744 | |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3745 | case HTTP_RES_ACT_REPLACE_HDR: |
| 3746 | case HTTP_RES_ACT_REPLACE_VAL: |
Thierry FOURNIER | 5a33ac7 | 2015-03-16 23:54:35 +0100 | [diff] [blame] | 3747 | if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name, |
| 3748 | rule->arg.hdr_add.name_len, |
| 3749 | &rule->arg.hdr_add.fmt, |
| 3750 | &rule->arg.hdr_add.re, rule->action)) |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3751 | return HTTP_RULE_RES_STOP; /* note: we should report an error here */ |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 3752 | break; |
| 3753 | |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 3754 | case HTTP_RES_ACT_DEL_HDR: |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3755 | ctx.idx = 0; |
| 3756 | /* remove all occurrences of the header */ |
| 3757 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3758 | txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3759 | http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx); |
| 3760 | } |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3761 | break; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3762 | |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3763 | case HTTP_RES_ACT_SET_HDR: |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3764 | case HTTP_RES_ACT_ADD_HDR: |
| 3765 | chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name); |
| 3766 | memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 3767 | trash.len = rule->arg.hdr_add.name_len; |
| 3768 | trash.str[trash.len++] = ':'; |
| 3769 | trash.str[trash.len++] = ' '; |
| 3770 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt); |
Willy Tarreau | 8560328 | 2015-01-21 20:39:27 +0100 | [diff] [blame] | 3771 | |
| 3772 | if (rule->action == HTTP_RES_ACT_SET_HDR) { |
| 3773 | /* remove all occurrences of the header */ |
| 3774 | ctx.idx = 0; |
| 3775 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3776 | txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3777 | http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx); |
| 3778 | } |
| 3779 | } |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3780 | http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len); |
| 3781 | break; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3782 | |
| 3783 | case HTTP_RES_ACT_DEL_ACL: |
| 3784 | case HTTP_RES_ACT_DEL_MAP: { |
| 3785 | struct pat_ref *ref; |
| 3786 | char *key; |
| 3787 | int len; |
| 3788 | |
| 3789 | /* collect reference */ |
| 3790 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3791 | if (!ref) |
| 3792 | continue; |
| 3793 | |
| 3794 | /* collect key */ |
| 3795 | len = build_logline(s, trash.str, trash.size, &rule->arg.map.key); |
| 3796 | key = trash.str; |
| 3797 | key[len] = '\0'; |
| 3798 | |
| 3799 | /* perform update */ |
| 3800 | /* returned code: 1=ok, 0=ko */ |
| 3801 | pat_ref_delete(ref, key); |
| 3802 | |
| 3803 | break; |
| 3804 | } |
| 3805 | |
| 3806 | case HTTP_RES_ACT_ADD_ACL: { |
| 3807 | struct pat_ref *ref; |
| 3808 | char *key; |
| 3809 | struct chunk *trash_key; |
| 3810 | int len; |
| 3811 | |
| 3812 | trash_key = get_trash_chunk(); |
| 3813 | |
| 3814 | /* collect reference */ |
| 3815 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3816 | if (!ref) |
| 3817 | continue; |
| 3818 | |
| 3819 | /* collect key */ |
| 3820 | len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key); |
| 3821 | key = trash_key->str; |
| 3822 | key[len] = '\0'; |
| 3823 | |
| 3824 | /* perform update */ |
| 3825 | /* check if the entry already exists */ |
| 3826 | if (pat_ref_find_elt(ref, key) == NULL) |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 3827 | pat_ref_add(ref, key, NULL, NULL); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3828 | |
| 3829 | break; |
| 3830 | } |
| 3831 | |
| 3832 | case HTTP_RES_ACT_SET_MAP: { |
| 3833 | struct pat_ref *ref; |
| 3834 | char *key, *value; |
| 3835 | struct chunk *trash_key, *trash_value; |
| 3836 | int len; |
| 3837 | |
| 3838 | trash_key = get_trash_chunk(); |
| 3839 | trash_value = get_trash_chunk(); |
| 3840 | |
| 3841 | /* collect reference */ |
| 3842 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3843 | if (!ref) |
| 3844 | continue; |
| 3845 | |
| 3846 | /* collect key */ |
| 3847 | len = build_logline(s, trash_key->str, trash_key->size, &rule->arg.map.key); |
| 3848 | key = trash_key->str; |
| 3849 | key[len] = '\0'; |
| 3850 | |
| 3851 | /* collect value */ |
| 3852 | len = build_logline(s, trash_value->str, trash_value->size, &rule->arg.map.value); |
| 3853 | value = trash_value->str; |
| 3854 | value[len] = '\0'; |
| 3855 | |
| 3856 | /* perform update */ |
| 3857 | if (pat_ref_find_elt(ref, key) != NULL) |
| 3858 | /* update entry if it exists */ |
| 3859 | pat_ref_set(ref, key, value, NULL); |
| 3860 | else |
| 3861 | /* insert a new entry */ |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 3862 | pat_ref_add(ref, key, value, NULL); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 3863 | |
| 3864 | break; |
| 3865 | } |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 3866 | |
| 3867 | case HTTP_RES_ACT_CUSTOM_CONT: |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3868 | if (!rule->action_ptr(rule, px, s)) { |
Willy Tarreau | 152b81e | 2015-04-20 13:26:17 +0200 | [diff] [blame] | 3869 | s->current_rule = rule; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 3870 | return HTTP_RULE_RES_YIELD; |
| 3871 | } |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 3872 | break; |
| 3873 | |
| 3874 | case HTTP_RES_ACT_CUSTOM_STOP: |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 3875 | rule->action_ptr(rule, px, s); |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3876 | return HTTP_RULE_RES_STOP; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3877 | } |
| 3878 | } |
| 3879 | |
| 3880 | /* we reached the end of the rules, nothing to report */ |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 3881 | return HTTP_RULE_RES_CONT; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3882 | } |
| 3883 | |
| 3884 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3885 | /* Perform an HTTP redirect based on the information in <rule>. The function |
| 3886 | * returns non-zero on success, or zero in case of a, irrecoverable error such |
| 3887 | * as too large a request to build a valid response. |
| 3888 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3889 | static int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn) |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3890 | { |
| 3891 | struct http_msg *msg = &txn->req; |
| 3892 | const char *msg_fmt; |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3893 | const char *location; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3894 | |
| 3895 | /* build redirect message */ |
| 3896 | switch(rule->code) { |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 3897 | case 308: |
| 3898 | msg_fmt = HTTP_308; |
| 3899 | break; |
| 3900 | case 307: |
| 3901 | msg_fmt = HTTP_307; |
| 3902 | break; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3903 | case 303: |
| 3904 | msg_fmt = HTTP_303; |
| 3905 | break; |
| 3906 | case 301: |
| 3907 | msg_fmt = HTTP_301; |
| 3908 | break; |
| 3909 | case 302: |
| 3910 | default: |
| 3911 | msg_fmt = HTTP_302; |
| 3912 | break; |
| 3913 | } |
| 3914 | |
| 3915 | if (unlikely(!chunk_strcpy(&trash, msg_fmt))) |
| 3916 | return 0; |
| 3917 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3918 | location = trash.str + trash.len; |
| 3919 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3920 | switch(rule->type) { |
| 3921 | case REDIRECT_TYPE_SCHEME: { |
| 3922 | const char *path; |
| 3923 | const char *host; |
| 3924 | struct hdr_ctx ctx; |
| 3925 | int pathlen; |
| 3926 | int hostlen; |
| 3927 | |
| 3928 | host = ""; |
| 3929 | hostlen = 0; |
| 3930 | ctx.idx = 0; |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 3931 | if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3932 | host = ctx.line + ctx.val; |
| 3933 | hostlen = ctx.vlen; |
| 3934 | } |
| 3935 | |
| 3936 | path = http_get_path(txn); |
| 3937 | /* build message using path */ |
| 3938 | if (path) { |
| 3939 | pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path; |
| 3940 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 3941 | int qs = 0; |
| 3942 | while (qs < pathlen) { |
| 3943 | if (path[qs] == '?') { |
| 3944 | pathlen = qs; |
| 3945 | break; |
| 3946 | } |
| 3947 | qs++; |
| 3948 | } |
| 3949 | } |
| 3950 | } else { |
| 3951 | path = "/"; |
| 3952 | pathlen = 1; |
| 3953 | } |
| 3954 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3955 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 3956 | /* check if we can add scheme + "://" + host + path */ |
| 3957 | if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4) |
| 3958 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3959 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3960 | /* add scheme */ |
| 3961 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 3962 | trash.len += rule->rdr_len; |
| 3963 | } |
| 3964 | else { |
| 3965 | /* add scheme with executing log format */ |
| 3966 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt); |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3967 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3968 | /* check if we can add scheme + "://" + host + path */ |
| 3969 | if (trash.len + 3 + hostlen + pathlen > trash.size - 4) |
| 3970 | return 0; |
| 3971 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3972 | /* add "://" */ |
| 3973 | memcpy(trash.str + trash.len, "://", 3); |
| 3974 | trash.len += 3; |
| 3975 | |
| 3976 | /* add host */ |
| 3977 | memcpy(trash.str + trash.len, host, hostlen); |
| 3978 | trash.len += hostlen; |
| 3979 | |
| 3980 | /* add path */ |
| 3981 | memcpy(trash.str + trash.len, path, pathlen); |
| 3982 | trash.len += pathlen; |
| 3983 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3984 | /* append a slash at the end of the location if needed and missing */ |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3985 | if (trash.len && trash.str[trash.len - 1] != '/' && |
| 3986 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 3987 | if (trash.len > trash.size - 5) |
| 3988 | return 0; |
| 3989 | trash.str[trash.len] = '/'; |
| 3990 | trash.len++; |
| 3991 | } |
| 3992 | |
| 3993 | break; |
| 3994 | } |
| 3995 | case REDIRECT_TYPE_PREFIX: { |
| 3996 | const char *path; |
| 3997 | int pathlen; |
| 3998 | |
| 3999 | path = http_get_path(txn); |
| 4000 | /* build message using path */ |
| 4001 | if (path) { |
| 4002 | pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path; |
| 4003 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 4004 | int qs = 0; |
| 4005 | while (qs < pathlen) { |
| 4006 | if (path[qs] == '?') { |
| 4007 | pathlen = qs; |
| 4008 | break; |
| 4009 | } |
| 4010 | qs++; |
| 4011 | } |
| 4012 | } |
| 4013 | } else { |
| 4014 | path = "/"; |
| 4015 | pathlen = 1; |
| 4016 | } |
| 4017 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4018 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 4019 | if (trash.len + rule->rdr_len + pathlen > trash.size - 4) |
| 4020 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4021 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4022 | /* add prefix. Note that if prefix == "/", we don't want to |
| 4023 | * add anything, otherwise it makes it hard for the user to |
| 4024 | * configure a self-redirection. |
| 4025 | */ |
| 4026 | if (rule->rdr_len != 1 || *rule->rdr_str != '/') { |
| 4027 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 4028 | trash.len += rule->rdr_len; |
| 4029 | } |
| 4030 | } |
| 4031 | else { |
| 4032 | /* add prefix with executing log format */ |
| 4033 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt); |
| 4034 | |
| 4035 | /* Check length */ |
| 4036 | if (trash.len + pathlen > trash.size - 4) |
| 4037 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4038 | } |
| 4039 | |
| 4040 | /* add path */ |
| 4041 | memcpy(trash.str + trash.len, path, pathlen); |
| 4042 | trash.len += pathlen; |
| 4043 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4044 | /* append a slash at the end of the location if needed and missing */ |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4045 | if (trash.len && trash.str[trash.len - 1] != '/' && |
| 4046 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 4047 | if (trash.len > trash.size - 5) |
| 4048 | return 0; |
| 4049 | trash.str[trash.len] = '/'; |
| 4050 | trash.len++; |
| 4051 | } |
| 4052 | |
| 4053 | break; |
| 4054 | } |
| 4055 | case REDIRECT_TYPE_LOCATION: |
| 4056 | default: |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4057 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 4058 | if (trash.len + rule->rdr_len > trash.size - 4) |
| 4059 | return 0; |
| 4060 | |
| 4061 | /* add location */ |
| 4062 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 4063 | trash.len += rule->rdr_len; |
| 4064 | } |
| 4065 | else { |
| 4066 | /* add location with executing log format */ |
| 4067 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt); |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4068 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4069 | /* Check left length */ |
| 4070 | if (trash.len > trash.size - 4) |
| 4071 | return 0; |
| 4072 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4073 | break; |
| 4074 | } |
| 4075 | |
| 4076 | if (rule->cookie_len) { |
| 4077 | memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14); |
| 4078 | trash.len += 14; |
| 4079 | memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len); |
| 4080 | trash.len += rule->cookie_len; |
| 4081 | memcpy(trash.str + trash.len, "\r\n", 2); |
| 4082 | trash.len += 2; |
| 4083 | } |
| 4084 | |
| 4085 | /* add end of headers and the keep-alive/close status. |
| 4086 | * We may choose to set keep-alive if the Location begins |
| 4087 | * with a slash, because the client will come back to the |
| 4088 | * same server. |
| 4089 | */ |
| 4090 | txn->status = rule->code; |
| 4091 | /* let's log the request time */ |
| 4092 | s->logs.tv_request = now; |
| 4093 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 4094 | if (*location == '/' && |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4095 | (msg->flags & HTTP_MSGF_XFER_LEN) && |
| 4096 | !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len && |
| 4097 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL || |
| 4098 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) { |
| 4099 | /* keep-alive possible */ |
| 4100 | if (!(msg->flags & HTTP_MSGF_VER_11)) { |
| 4101 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 4102 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30); |
| 4103 | trash.len += 30; |
| 4104 | } else { |
| 4105 | memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24); |
| 4106 | trash.len += 24; |
| 4107 | } |
| 4108 | } |
| 4109 | memcpy(trash.str + trash.len, "\r\n\r\n", 4); |
| 4110 | trash.len += 4; |
| 4111 | bo_inject(txn->rsp.chn, trash.str, trash.len); |
| 4112 | /* "eat" the request */ |
| 4113 | bi_fast_delete(txn->req.chn->buf, msg->sov); |
Willy Tarreau | 6d8bac7 | 2014-04-25 12:19:32 +0200 | [diff] [blame] | 4114 | msg->next -= msg->sov; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4115 | msg->sov = 0; |
| 4116 | txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 4117 | s->res.analysers = AN_RES_HTTP_XFER_BODY; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4118 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4119 | txn->rsp.msg_state = HTTP_MSG_DONE; |
| 4120 | } else { |
| 4121 | /* keep-alive not possible */ |
| 4122 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 4123 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 4124 | trash.len += 29; |
| 4125 | } else { |
| 4126 | memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23); |
| 4127 | trash.len += 23; |
| 4128 | } |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4129 | stream_int_retnclose(&s->si[0], &trash); |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4130 | txn->req.chn->analysers = 0; |
| 4131 | } |
| 4132 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4133 | if (!(s->flags & SF_ERR_MASK)) |
| 4134 | s->flags |= SF_ERR_LOCAL; |
| 4135 | if (!(s->flags & SF_FINST_MASK)) |
| 4136 | s->flags |= SF_FINST_R; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4137 | |
| 4138 | return 1; |
| 4139 | } |
| 4140 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4141 | /* This stream analyser runs all HTTP request processing which is common to |
| 4142 | * frontends and backends, which means blocking ACLs, filters, connection-close, |
| 4143 | * reqadd, stats and redirects. This is performed for the designated proxy. |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4144 | * It returns 1 if the processing can continue on next analysers, or zero if it |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4145 | * either needs more data or wants to immediately abort the request (eg: deny, |
| 4146 | * error, ...). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4147 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4148 | int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px) |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4149 | { |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4150 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4151 | struct http_txn *txn = s->txn; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4152 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4153 | struct redirect_rule *rule; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 4154 | struct cond_wordlist *wl; |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4155 | enum rule_result verdict; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4156 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 4157 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 4158 | /* we need more data */ |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 4159 | goto return_prx_yield; |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 4160 | } |
| 4161 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4162 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4163 | now_ms, __FUNCTION__, |
| 4164 | s, |
| 4165 | req, |
| 4166 | req->rex, req->wex, |
| 4167 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4168 | req->buf->i, |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 4169 | req->analysers); |
| 4170 | |
Willy Tarreau | 6541083 | 2014-04-28 21:25:43 +0200 | [diff] [blame] | 4171 | /* just in case we have some per-backend tracking */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4172 | stream_inc_be_http_req_ctr(s); |
Willy Tarreau | 6541083 | 2014-04-28 21:25:43 +0200 | [diff] [blame] | 4173 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4174 | /* evaluate http-request rules */ |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4175 | if (!LIST_ISEMPTY(&px->http_req_rules)) { |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 4176 | verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s); |
Willy Tarreau | 5142594 | 2010-02-01 10:40:19 +0100 | [diff] [blame] | 4177 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4178 | switch (verdict) { |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 4179 | case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */ |
| 4180 | goto return_prx_yield; |
| 4181 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4182 | case HTTP_RULE_RES_CONT: |
| 4183 | case HTTP_RULE_RES_STOP: /* nothing to do */ |
| 4184 | break; |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4185 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4186 | case HTTP_RULE_RES_DENY: /* deny or tarpit */ |
| 4187 | if (txn->flags & TX_CLTARPIT) |
| 4188 | goto tarpit; |
| 4189 | goto deny; |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4190 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4191 | case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */ |
| 4192 | goto return_prx_cond; |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4193 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4194 | case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */ |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4195 | goto done; |
| 4196 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4197 | case HTTP_RULE_RES_BADREQ: /* failed with a bad request */ |
| 4198 | goto return_bad_req; |
| 4199 | } |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4200 | } |
| 4201 | |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4202 | /* OK at this stage, we know that the request was accepted according to |
| 4203 | * the http-request rules, we can check for the stats. Note that the |
| 4204 | * URI is detected *before* the req* rules in order not to be affected |
| 4205 | * by a possible reqrep, while they are processed *after* so that a |
| 4206 | * reqdeny can still block them. This clearly needs to change in 1.6! |
| 4207 | */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4208 | if (stats_check_uri(&s->si[1], txn, px)) { |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4209 | s->target = &http_stats_applet.obj_type; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4210 | if (unlikely(!stream_int_register_handler(&s->si[1], objt_applet(s->target)))) { |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4211 | txn->status = 500; |
| 4212 | s->logs.tv_request = now; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4213 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 4214 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4215 | if (!(s->flags & SF_ERR_MASK)) |
| 4216 | s->flags |= SF_ERR_RESOURCE; |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4217 | goto return_prx_cond; |
| 4218 | } |
| 4219 | |
| 4220 | /* parse the whole stats request and extract the relevant information */ |
| 4221 | http_handle_stats(s, req); |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 4222 | verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s); |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4223 | /* not all actions implemented: deny, allow, auth */ |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4224 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4225 | if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */ |
| 4226 | goto deny; |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4227 | |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4228 | if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */ |
| 4229 | goto return_prx_cond; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 4230 | } |
| 4231 | |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4232 | /* evaluate the req* rules except reqadd */ |
| 4233 | if (px->req_exp != NULL) { |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 4234 | if (apply_filters_to_request(s, req, px) < 0) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4235 | goto return_bad_req; |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4236 | |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4237 | if (txn->flags & TX_CLDENY) |
| 4238 | goto deny; |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 4239 | |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4240 | if (txn->flags & TX_CLTARPIT) |
| 4241 | goto tarpit; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4242 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4243 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4244 | /* add request headers from the rule sets in the same order */ |
| 4245 | list_for_each_entry(wl, &px->req_add, list) { |
| 4246 | if (wl->cond) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4247 | int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4248 | ret = acl_pass(ret); |
| 4249 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 4250 | ret = !ret; |
| 4251 | if (!ret) |
| 4252 | continue; |
| 4253 | } |
| 4254 | |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 4255 | if (unlikely(http_header_add_tail(&txn->req, &txn->hdr_idx, wl->s) < 0)) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 4256 | goto return_bad_req; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 4257 | } |
| 4258 | |
Willy Tarreau | 5254259 | 2014-04-28 18:33:26 +0200 | [diff] [blame] | 4259 | |
| 4260 | /* Proceed with the stats now. */ |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 4261 | if (unlikely(objt_applet(s->target) == &http_stats_applet)) { |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 4262 | /* process the stats request now */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4263 | if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
| 4264 | sess->fe->fe_counters.intercepted_req++; |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 4265 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4266 | if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is |
| 4267 | s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy |
| 4268 | if (!(s->flags & SF_FINST_MASK)) |
| 4269 | s->flags |= SF_FINST_R; |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 4270 | |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 4271 | /* we may want to compress the stats page */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4272 | if (sess->fe->comp || s->be->comp) |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 4273 | select_compression_request_header(s, req->buf); |
| 4274 | |
| 4275 | /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */ |
Willy Tarreau | 5506e3f | 2014-11-20 22:23:10 +0100 | [diff] [blame] | 4276 | req->analysers = (req->analysers & AN_REQ_HTTP_BODY) | AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4277 | goto done; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4278 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 4279 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4280 | /* check whether we have some ACLs set to redirect this request */ |
| 4281 | list_for_each_entry(rule, &px->redirect_rules, list) { |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 4282 | if (rule->cond) { |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4283 | int ret; |
| 4284 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4285 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 4286 | ret = acl_pass(ret); |
| 4287 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 4288 | ret = !ret; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4289 | if (!ret) |
| 4290 | continue; |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 4291 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 4292 | if (!http_apply_redirect_rule(rule, s, txn)) |
| 4293 | goto return_bad_req; |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4294 | goto done; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4295 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 4296 | |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 4297 | /* POST requests may be accompanied with an "Expect: 100-Continue" header. |
| 4298 | * If this happens, then the data will not come immediately, so we must |
| 4299 | * send all what we have without waiting. Note that due to the small gain |
| 4300 | * in waiting for the body of the request, it's easier to simply put the |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4301 | * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 4302 | * itself once used. |
| 4303 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4304 | req->flags |= CF_SEND_DONTWAIT; |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 4305 | |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4306 | done: /* done with this analyser, continue with next ones that the calling |
| 4307 | * points will have set, if any. |
| 4308 | */ |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4309 | req->analyse_exp = TICK_ETERNITY; |
Thierry FOURNIER | 7566e30 | 2014-08-22 06:55:26 +0200 | [diff] [blame] | 4310 | done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */ |
| 4311 | req->analysers &= ~an_bit; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4312 | return 1; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 4313 | |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4314 | tarpit: |
| 4315 | /* When a connection is tarpitted, we use the tarpit timeout, |
| 4316 | * which may be the same as the connect timeout if unspecified. |
| 4317 | * If unset, then set it to zero because we really want it to |
| 4318 | * eventually expire. We build the tarpit as an analyser. |
| 4319 | */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 4320 | channel_erase(&s->req); |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4321 | |
| 4322 | /* wipe the request out so that we can drop the connection early |
| 4323 | * if the client closes first. |
| 4324 | */ |
| 4325 | channel_dont_connect(req); |
| 4326 | req->analysers = 0; /* remove switching rules etc... */ |
| 4327 | req->analysers |= AN_REQ_HTTP_TARPIT; |
| 4328 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit); |
| 4329 | if (!req->analyse_exp) |
| 4330 | req->analyse_exp = tick_add(now_ms, 0); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4331 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4332 | sess->fe->fe_counters.denied_req++; |
| 4333 | if (sess->fe != s->be) |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4334 | s->be->be_counters.denied_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4335 | if (sess->listener->counters) |
| 4336 | sess->listener->counters->denied_req++; |
Thierry FOURNIER | 7566e30 | 2014-08-22 06:55:26 +0200 | [diff] [blame] | 4337 | goto done_without_exp; |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4338 | |
| 4339 | deny: /* this request was blocked (denied) */ |
Willy Tarreau | 0b74833 | 2014-04-29 00:13:29 +0200 | [diff] [blame] | 4340 | txn->flags |= TX_CLDENY; |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 4341 | txn->status = http_err_codes[txn->rule_deny_status]; |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4342 | s->logs.tv_request = now; |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 4343 | stream_int_retnclose(&s->si[0], http_error_message(s, txn->rule_deny_status)); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4344 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4345 | sess->fe->fe_counters.denied_req++; |
| 4346 | if (sess->fe != s->be) |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4347 | s->be->be_counters.denied_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4348 | if (sess->listener->counters) |
| 4349 | sess->listener->counters->denied_req++; |
Willy Tarreau | bbba2a8 | 2014-04-28 13:57:26 +0200 | [diff] [blame] | 4350 | goto return_prx_cond; |
| 4351 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4352 | return_bad_req: |
| 4353 | /* We centralize bad requests processing here */ |
| 4354 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 4355 | /* we detected a parsing error. We want to archive this request |
| 4356 | * in the dedicated proxy area for later troubleshooting. |
| 4357 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4358 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4359 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 4360 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4361 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4362 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4363 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4364 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4365 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4366 | if (sess->listener->counters) |
| 4367 | sess->listener->counters->failed_req++; |
Willy Tarreau | 6e4261e | 2007-09-18 18:36:05 +0200 | [diff] [blame] | 4368 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4369 | return_prx_cond: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4370 | if (!(s->flags & SF_ERR_MASK)) |
| 4371 | s->flags |= SF_ERR_PRXCOND; |
| 4372 | if (!(s->flags & SF_FINST_MASK)) |
| 4373 | s->flags |= SF_FINST_R; |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 4374 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4375 | req->analysers = 0; |
| 4376 | req->analyse_exp = TICK_ETERNITY; |
| 4377 | return 0; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 4378 | |
| 4379 | return_prx_yield: |
| 4380 | channel_dont_connect(req); |
| 4381 | return 0; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4382 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 4383 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4384 | /* This function performs all the processing enabled for the current request. |
| 4385 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 4386 | * needs more data, encounters an error, or wants to immediately abort the |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 4387 | * request. It relies on buffers flags, and updates s->req.analysers. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4388 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4389 | int http_process_request(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4390 | { |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4391 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4392 | struct http_txn *txn = s->txn; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4393 | struct http_msg *msg = &txn->req; |
Willy Tarreau | ee335e6 | 2015-04-21 18:15:13 +0200 | [diff] [blame] | 4394 | struct connection *cli_conn = objt_conn(strm_sess(s)->origin); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 4395 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 4396 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 4397 | /* we need more data */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4398 | channel_dont_connect(req); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 4399 | return 0; |
| 4400 | } |
| 4401 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4402 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4403 | now_ms, __FUNCTION__, |
| 4404 | s, |
| 4405 | req, |
| 4406 | req->rex, req->wex, |
| 4407 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4408 | req->buf->i, |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 4409 | req->analysers); |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4410 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4411 | if (sess->fe->comp || s->be->comp) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 4412 | select_compression_request_header(s, req->buf); |
| 4413 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4414 | /* |
| 4415 | * Right now, we know that we have processed the entire headers |
| 4416 | * and that unwanted requests have been filtered out. We can do |
| 4417 | * whatever we want with the remaining request. Also, now we |
| 4418 | * may have separate values for ->fe, ->be. |
| 4419 | */ |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4420 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4421 | /* |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4422 | * If HTTP PROXY is set we simply get remote server address parsing |
| 4423 | * incoming request. Note that this requires that a connection is |
| 4424 | * allocated on the server side. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4425 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4426 | if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) { |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 4427 | struct connection *conn; |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 4428 | char *path; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 4429 | |
Willy Tarreau | 9471b8c | 2013-12-15 13:31:35 +0100 | [diff] [blame] | 4430 | /* Note that for now we don't reuse existing proxy connections */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4431 | if (unlikely((conn = si_alloc_conn(&s->si[1], 0)) == NULL)) { |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 4432 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4433 | txn->status = 500; |
| 4434 | req->analysers = 0; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4435 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 4436 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4437 | if (!(s->flags & SF_ERR_MASK)) |
| 4438 | s->flags |= SF_ERR_RESOURCE; |
| 4439 | if (!(s->flags & SF_FINST_MASK)) |
| 4440 | s->flags |= SF_FINST_R; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 4441 | |
| 4442 | return 0; |
| 4443 | } |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 4444 | |
| 4445 | path = http_get_path(txn); |
| 4446 | url2sa(req->buf->p + msg->sl.rq.u, |
| 4447 | path ? path - (req->buf->p + msg->sl.rq.u) : msg->sl.rq.u_l, |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 4448 | &conn->addr.to, NULL); |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 4449 | /* if the path was found, we have to remove everything between |
| 4450 | * req->buf->p + msg->sl.rq.u and path (excluded). If it was not |
| 4451 | * found, we need to replace from req->buf->p + msg->sl.rq.u for |
| 4452 | * u_l characters by a single "/". |
| 4453 | */ |
| 4454 | if (path) { |
| 4455 | char *cur_ptr = req->buf->p; |
| 4456 | char *cur_end = cur_ptr + txn->req.sl.rq.l; |
| 4457 | int delta; |
| 4458 | |
| 4459 | delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0); |
| 4460 | http_msg_move_end(&txn->req, delta); |
| 4461 | cur_end += delta; |
| 4462 | if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL) |
| 4463 | goto return_bad_req; |
| 4464 | } |
| 4465 | else { |
| 4466 | char *cur_ptr = req->buf->p; |
| 4467 | char *cur_end = cur_ptr + txn->req.sl.rq.l; |
| 4468 | int delta; |
| 4469 | |
| 4470 | delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, |
| 4471 | req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1); |
| 4472 | http_msg_move_end(&txn->req, delta); |
| 4473 | cur_end += delta; |
| 4474 | if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL) |
| 4475 | goto return_bad_req; |
| 4476 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4477 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 4478 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4479 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 4480 | * 7: Now we can work with the cookies. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4481 | * Note that doing so might move headers in the request, but |
| 4482 | * the fields will stay coherent and the URI will not move. |
| 4483 | * This should only be performed in the backend. |
| 4484 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4485 | if ((s->be->cookie_name || s->be->appsession_name || sess->fe->capture_name) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4486 | && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) |
| 4487 | manage_client_side_cookies(s, req); |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4488 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4489 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 4490 | * 8: the appsession cookie was looked up very early in 1.2, |
| 4491 | * so let's do the same now. |
| 4492 | */ |
| 4493 | |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 4494 | /* It needs to look into the URI unless persistence must be ignored */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4495 | if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SF_IGNORE_PRST)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4496 | get_srv_from_appsession(s, req->buf->p + msg->sl.rq.u, msg->sl.rq.u_l); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 4497 | } |
| 4498 | |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4499 | /* add unique-id if "header-unique-id" is specified */ |
| 4500 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4501 | if (!LIST_ISEMPTY(&sess->fe->format_unique_id)) { |
William Lallemand | 5b7ea3a | 2013-08-28 15:44:19 +0200 | [diff] [blame] | 4502 | if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL) |
| 4503 | goto return_bad_req; |
| 4504 | s->unique_id[0] = '\0'; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4505 | build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id); |
William Lallemand | 5b7ea3a | 2013-08-28 15:44:19 +0200 | [diff] [blame] | 4506 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4507 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4508 | if (sess->fe->header_unique_id && s->unique_id) { |
| 4509 | chunk_printf(&trash, "%s: %s", sess->fe->header_unique_id, s->unique_id); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4510 | if (trash.len < 0) |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4511 | goto return_bad_req; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4512 | if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len) < 0)) |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4513 | goto return_bad_req; |
| 4514 | } |
| 4515 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 4516 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4517 | * 9: add X-Forwarded-For if either the frontend or the backend |
| 4518 | * asks for it. |
| 4519 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4520 | if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) { |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4521 | struct hdr_ctx ctx = { .idx = 0 }; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4522 | if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) && |
| 4523 | http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name, |
| 4524 | s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4525 | req->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4526 | /* The header is set to be added only if none is present |
| 4527 | * and we found it, so don't do anything. |
| 4528 | */ |
| 4529 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4530 | else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4531 | /* Add an X-Forwarded-For header unless the source IP is |
| 4532 | * in the 'except' network range. |
| 4533 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4534 | if ((!sess->fe->except_mask.s_addr || |
| 4535 | (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr) |
| 4536 | != sess->fe->except_net.s_addr) && |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4537 | (!s->be->except_mask.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4538 | (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4539 | != s->be->except_net.s_addr)) { |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 4540 | int len; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4541 | unsigned char *pn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4542 | pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4543 | |
| 4544 | /* Note: we rely on the backend to get the header name to be used for |
| 4545 | * x-forwarded-for, because the header is really meant for the backends. |
| 4546 | * However, if the backend did not specify any option, we have to rely |
| 4547 | * on the frontend's header name. |
| 4548 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4549 | if (s->be->fwdfor_hdr_len) { |
| 4550 | len = s->be->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4551 | memcpy(trash.str, s->be->fwdfor_hdr_name, len); |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4552 | } else { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4553 | len = sess->fe->fwdfor_hdr_len; |
| 4554 | memcpy(trash.str, sess->fe->fwdfor_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 4555 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4556 | len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 4557 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4558 | if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0)) |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4559 | goto return_bad_req; |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 4560 | } |
| 4561 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4562 | else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4563 | /* FIXME: for the sake of completeness, we should also support |
| 4564 | * 'except' here, although it is mostly useless in this case. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4565 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4566 | int len; |
| 4567 | char pn[INET6_ADDRSTRLEN]; |
| 4568 | inet_ntop(AF_INET6, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4569 | (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4570 | pn, sizeof(pn)); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4571 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4572 | /* Note: we rely on the backend to get the header name to be used for |
| 4573 | * x-forwarded-for, because the header is really meant for the backends. |
| 4574 | * However, if the backend did not specify any option, we have to rely |
| 4575 | * on the frontend's header name. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4576 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4577 | if (s->be->fwdfor_hdr_len) { |
| 4578 | len = s->be->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4579 | memcpy(trash.str, s->be->fwdfor_hdr_name, len); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4580 | } else { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4581 | len = sess->fe->fwdfor_hdr_len; |
| 4582 | memcpy(trash.str, sess->fe->fwdfor_hdr_name, len); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4583 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4584 | len += snprintf(trash.str + len, trash.size - len, ": %s", pn); |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4585 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4586 | if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0)) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4587 | goto return_bad_req; |
| 4588 | } |
| 4589 | } |
| 4590 | |
| 4591 | /* |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4592 | * 10: add X-Original-To if either the frontend or the backend |
| 4593 | * asks for it. |
| 4594 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4595 | if ((sess->fe->options | s->be->options) & PR_O_ORGTO) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4596 | |
| 4597 | /* FIXME: don't know if IPv6 can handle that case too. */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4598 | if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4599 | /* Add an X-Original-To header unless the destination IP is |
| 4600 | * in the 'except' network range. |
| 4601 | */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4602 | conn_get_to_addr(cli_conn); |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4603 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4604 | if (cli_conn->addr.to.ss_family == AF_INET && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4605 | ((!sess->fe->except_mask_to.s_addr || |
| 4606 | (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr) |
| 4607 | != sess->fe->except_to.s_addr) && |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 4608 | (!s->be->except_mask_to.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4609 | (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr) |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 4610 | != s->be->except_to.s_addr))) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4611 | int len; |
| 4612 | unsigned char *pn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4613 | pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4614 | |
| 4615 | /* Note: we rely on the backend to get the header name to be used for |
| 4616 | * x-original-to, because the header is really meant for the backends. |
| 4617 | * However, if the backend did not specify any option, we have to rely |
| 4618 | * on the frontend's header name. |
| 4619 | */ |
| 4620 | if (s->be->orgto_hdr_len) { |
| 4621 | len = s->be->orgto_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4622 | memcpy(trash.str, s->be->orgto_hdr_name, len); |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4623 | } else { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4624 | len = sess->fe->orgto_hdr_len; |
| 4625 | memcpy(trash.str, sess->fe->orgto_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 4626 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4627 | len += snprintf(trash.str + len, trash.size - len, ": %d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4628 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4629 | if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, len) < 0)) |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4630 | goto return_bad_req; |
| 4631 | } |
| 4632 | } |
| 4633 | } |
| 4634 | |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 4635 | /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. |
| 4636 | * If an "Upgrade" token is found, the header is left untouched in order not to have |
| 4637 | * to deal with some servers bugs : some of them fail an Upgrade if anything but |
| 4638 | * "Upgrade" is present in the Connection header. |
| 4639 | */ |
| 4640 | if (!(txn->flags & TX_HDR_CONN_UPG) && |
| 4641 | (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4642 | ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4643 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4644 | unsigned int want_flags = 0; |
| 4645 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4646 | if (msg->flags & HTTP_MSGF_VER_11) { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4647 | if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4648 | ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4649 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4650 | !((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4651 | want_flags |= TX_CON_CLO_SET; |
| 4652 | } else { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4653 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4654 | ((sess->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL && |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4655 | (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4656 | ((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4657 | want_flags |= TX_CON_KAL_SET; |
| 4658 | } |
| 4659 | |
| 4660 | if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 4661 | http_change_connection_header(txn, msg, want_flags); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4662 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4663 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4664 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4665 | /* If we have no server assigned yet and we're balancing on url_param |
| 4666 | * with a POST request, we may be interested in checking the body for |
| 4667 | * that parameter. This will be done in another analyser. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4668 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4669 | if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) && |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4670 | s->txn->meth == HTTP_METH_POST && s->be->url_param_name != NULL && |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4671 | (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4672 | channel_dont_connect(req); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4673 | req->analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4674 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4675 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4676 | if (msg->flags & HTTP_MSGF_XFER_LEN) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4677 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 4678 | #ifdef TCP_QUICKACK |
| 4679 | /* We expect some data from the client. Unless we know for sure |
| 4680 | * we already have a full request, we have to re-enable quick-ack |
| 4681 | * in case we previously disabled it, otherwise we might cause |
| 4682 | * the client to delay further data. |
| 4683 | */ |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4684 | if ((sess->listener->options & LI_O_NOQUICKACK) && |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 4685 | cli_conn && conn_ctrl_ready(cli_conn) && |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4686 | ((msg->flags & HTTP_MSGF_TE_CHNK) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4687 | (msg->body_len > req->buf->i - txn->req.eoh - 2))) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4688 | setsockopt(cli_conn->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one)); |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 4689 | #endif |
| 4690 | } |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 4691 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4692 | /************************************************************* |
| 4693 | * OK, that's finished for the headers. We have done what we * |
| 4694 | * could. Let's switch to the DATA state. * |
| 4695 | ************************************************************/ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4696 | req->analyse_exp = TICK_ETERNITY; |
| 4697 | req->analysers &= ~an_bit; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4698 | |
Willy Tarreau | 7bb68ab | 2012-05-13 14:48:59 +0200 | [diff] [blame] | 4699 | /* if the server closes the connection, we want to immediately react |
| 4700 | * and close the socket to save packets and syscalls. |
| 4701 | */ |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 4702 | if (!(req->analysers & AN_REQ_HTTP_XFER_BODY)) |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4703 | s->si[1].flags |= SI_FL_NOHALF; |
Willy Tarreau | 7bb68ab | 2012-05-13 14:48:59 +0200 | [diff] [blame] | 4704 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4705 | s->logs.tv_request = now; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4706 | /* OK let's go on with the BODY now */ |
| 4707 | return 1; |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4708 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4709 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4710 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 4711 | /* we detected a parsing error. We want to archive this request |
| 4712 | * in the dedicated proxy area for later troubleshooting. |
| 4713 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4714 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 4715 | } |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4716 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4717 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4718 | txn->status = 400; |
| 4719 | req->analysers = 0; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4720 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4721 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4722 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4723 | if (sess->listener->counters) |
| 4724 | sess->listener->counters->failed_req++; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4725 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4726 | if (!(s->flags & SF_ERR_MASK)) |
| 4727 | s->flags |= SF_ERR_PRXCOND; |
| 4728 | if (!(s->flags & SF_FINST_MASK)) |
| 4729 | s->flags |= SF_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 4730 | return 0; |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 4731 | } |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4732 | |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4733 | /* This function is an analyser which processes the HTTP tarpit. It always |
| 4734 | * returns zero, at the beginning because it prevents any other processing |
| 4735 | * from occurring, and at the end because it terminates the request. |
| 4736 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4737 | int http_process_tarpit(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4738 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4739 | struct http_txn *txn = s->txn; |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4740 | |
| 4741 | /* This connection is being tarpitted. The CLIENT side has |
| 4742 | * already set the connect expiration date to the right |
| 4743 | * timeout. We just have to check that the client is still |
| 4744 | * there and that the timeout has not expired. |
| 4745 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4746 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4747 | if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 && |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4748 | !tick_is_expired(req->analyse_exp, now_ms)) |
| 4749 | return 0; |
| 4750 | |
| 4751 | /* We will set the queue timer to the time spent, just for |
| 4752 | * logging purposes. We fake a 500 server error, so that the |
| 4753 | * attacker will not suspect his connection has been tarpitted. |
| 4754 | * It will not cause trouble to the logs because we can exclude |
| 4755 | * the tarpitted connections by filtering on the 'PT' status flags. |
| 4756 | */ |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4757 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 4758 | |
| 4759 | txn->status = 500; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4760 | if (!(req->flags & CF_READ_ERROR)) |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4761 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4762 | |
| 4763 | req->analysers = 0; |
| 4764 | req->analyse_exp = TICK_ETERNITY; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4765 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4766 | if (!(s->flags & SF_ERR_MASK)) |
| 4767 | s->flags |= SF_ERR_PRXCOND; |
| 4768 | if (!(s->flags & SF_FINST_MASK)) |
| 4769 | s->flags |= SF_FINST_T; |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4770 | return 0; |
| 4771 | } |
| 4772 | |
Willy Tarreau | 5a8f947 | 2014-04-10 11:16:06 +0200 | [diff] [blame] | 4773 | /* This function is an analyser which waits for the HTTP request body. It waits |
| 4774 | * for either the buffer to be full, or the full advertised contents to have |
| 4775 | * reached the buffer. It must only be called after the standard HTTP request |
| 4776 | * processing has occurred, because it expects the request to be parsed and will |
| 4777 | * look for the Expect header. It may send a 100-Continue interim response. It |
| 4778 | * takes in input any state starting from HTTP_MSG_BODY and leaves with one of |
| 4779 | * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it |
| 4780 | * needs to read more data, or 1 once it has completed its analysis. |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4781 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4782 | int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4783 | { |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4784 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4785 | struct http_txn *txn = s->txn; |
| 4786 | struct http_msg *msg = &s->txn->req; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4787 | |
| 4788 | /* We have to parse the HTTP request body to find any required data. |
| 4789 | * "balance url_param check_post" should have been the only way to get |
| 4790 | * into this. We were brought here after HTTP header analysis, so all |
| 4791 | * related structures are ready. |
| 4792 | */ |
| 4793 | |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4794 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
| 4795 | /* This is the first call */ |
| 4796 | if (msg->msg_state < HTTP_MSG_BODY) |
| 4797 | goto missing_data; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4798 | |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4799 | if (msg->msg_state < HTTP_MSG_100_SENT) { |
| 4800 | /* If we have HTTP/1.1 and Expect: 100-continue, then we must |
| 4801 | * send an HTTP/1.1 100 Continue intermediate response. |
| 4802 | */ |
| 4803 | if (msg->flags & HTTP_MSGF_VER_11) { |
| 4804 | struct hdr_ctx ctx; |
| 4805 | ctx.idx = 0; |
| 4806 | /* Expect is allowed in 1.1, look for it */ |
| 4807 | if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) && |
| 4808 | unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 4809 | bo_inject(&s->res, http_100_chunk.str, http_100_chunk.len); |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4810 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4811 | } |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4812 | msg->msg_state = HTTP_MSG_100_SENT; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4813 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4814 | |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 4815 | /* we have msg->sov which points to the first byte of message body. |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 4816 | * req->buf->p still points to the beginning of the message. We |
| 4817 | * must save the body in msg->next because it survives buffer |
| 4818 | * re-alignments. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4819 | */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 4820 | msg->next = msg->sov; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 4821 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4822 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4823 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 4824 | else |
| 4825 | msg->msg_state = HTTP_MSG_DATA; |
| 4826 | } |
| 4827 | |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4828 | if (!(msg->flags & HTTP_MSGF_TE_CHNK)) { |
| 4829 | /* We're in content-length mode, we just have to wait for enough data. */ |
| 4830 | if (req->buf->i - msg->sov < msg->body_len) |
| 4831 | goto missing_data; |
| 4832 | |
| 4833 | /* OK we have everything we need now */ |
| 4834 | goto http_end; |
| 4835 | } |
| 4836 | |
| 4837 | /* OK here we're parsing a chunked-encoded message */ |
| 4838 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4839 | if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4840 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 4841 | * set ->sov and ->next to point to the body and switch to DATA or |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4842 | * TRAILERS state. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4843 | */ |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 4844 | int ret = http_parse_chunk_size(msg); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4845 | |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4846 | if (!ret) |
| 4847 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4848 | else if (ret < 0) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4849 | stream_inc_http_err_ctr(s); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4850 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4851 | } |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4852 | } |
| 4853 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4854 | /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state. |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 4855 | * We have the first data byte is in msg->sov. We're waiting for at |
Willy Tarreau | 226071e | 2014-04-10 11:55:45 +0200 | [diff] [blame] | 4856 | * least a whole chunk or the whole content length bytes after msg->sov. |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4857 | */ |
Willy Tarreau | 890988f | 2014-04-10 11:59:33 +0200 | [diff] [blame] | 4858 | if (msg->msg_state == HTTP_MSG_TRAILERS) |
| 4859 | goto http_end; |
| 4860 | |
Willy Tarreau | 226071e | 2014-04-10 11:55:45 +0200 | [diff] [blame] | 4861 | if (req->buf->i - msg->sov >= msg->body_len) /* we have enough bytes now */ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4862 | goto http_end; |
| 4863 | |
| 4864 | missing_data: |
Willy Tarreau | 31a1995 | 2014-04-10 11:50:37 +0200 | [diff] [blame] | 4865 | /* we get here if we need to wait for more data. If the buffer is full, |
| 4866 | * we have the maximum we can expect. |
| 4867 | */ |
| 4868 | if (buffer_full(req->buf, global.tune.maxrewrite)) |
| 4869 | goto http_end; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4870 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4871 | if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4872 | txn->status = 408; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4873 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_408)); |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4874 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4875 | if (!(s->flags & SF_ERR_MASK)) |
| 4876 | s->flags |= SF_ERR_CLITO; |
| 4877 | if (!(s->flags & SF_FINST_MASK)) |
| 4878 | s->flags |= SF_FINST_D; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4879 | goto return_err_msg; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4880 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4881 | |
| 4882 | /* we get here if we need to wait for more data */ |
Willy Tarreau | 31a1995 | 2014-04-10 11:50:37 +0200 | [diff] [blame] | 4883 | if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) { |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4884 | /* Not enough data. We'll re-use the http-request |
| 4885 | * timeout here. Ideally, we should set the timeout |
| 4886 | * relative to the accept() date. We just set the |
| 4887 | * request timeout once at the beginning of the |
| 4888 | * request. |
| 4889 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4890 | channel_dont_connect(req); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4891 | if (!tick_isset(req->analyse_exp)) |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 4892 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4893 | return 0; |
| 4894 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4895 | |
| 4896 | http_end: |
| 4897 | /* The situation will not evolve, so let's give up on the analysis. */ |
| 4898 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 4899 | req->analysers &= ~an_bit; |
| 4900 | req->analyse_exp = TICK_ETERNITY; |
| 4901 | return 1; |
| 4902 | |
| 4903 | return_bad_req: /* let's centralize all bad requests */ |
| 4904 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4905 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4906 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4907 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 4908 | if (!(s->flags & SF_ERR_MASK)) |
| 4909 | s->flags |= SF_ERR_PRXCOND; |
| 4910 | if (!(s->flags & SF_FINST_MASK)) |
| 4911 | s->flags |= SF_FINST_R; |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4912 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4913 | return_err_msg: |
| 4914 | req->analysers = 0; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 4915 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 4916 | if (sess->listener->counters) |
| 4917 | sess->listener->counters->failed_req++; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4918 | return 0; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4919 | } |
| 4920 | |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4921 | /* send a server's name with an outgoing request over an established connection. |
| 4922 | * Note: this function is designed to be called once the request has been scheduled |
| 4923 | * for being forwarded. This is the reason why it rewinds the buffer before |
| 4924 | * proceeding. |
| 4925 | */ |
Willy Tarreau | 45c0d98 | 2012-03-09 12:11:57 +0100 | [diff] [blame] | 4926 | int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* srv_name) { |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4927 | |
| 4928 | struct hdr_ctx ctx; |
| 4929 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4930 | char *hdr_name = be->server_id_hdr_name; |
| 4931 | int hdr_name_len = be->server_id_hdr_len; |
Willy Tarreau | 394db37 | 2012-10-12 22:40:39 +0200 | [diff] [blame] | 4932 | struct channel *chn = txn->req.chn; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4933 | char *hdr_val; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4934 | unsigned int old_o, old_i; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4935 | |
William Lallemand | d9e9066 | 2012-01-30 17:27:17 +0100 | [diff] [blame] | 4936 | ctx.idx = 0; |
| 4937 | |
Willy Tarreau | 211cdec | 2014-04-17 20:18:08 +0200 | [diff] [blame] | 4938 | old_o = http_hdr_rewind(&txn->req); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4939 | if (old_o) { |
| 4940 | /* The request was already skipped, let's restore it */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4941 | b_rew(chn->buf, old_o); |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 4942 | txn->req.next += old_o; |
| 4943 | txn->req.sov += old_o; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4944 | } |
| 4945 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4946 | old_i = chn->buf->i; |
| 4947 | while (http_find_header2(hdr_name, hdr_name_len, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4948 | /* remove any existing values from the header */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 4949 | http_remove_header2(&txn->req, &txn->hdr_idx, &ctx); |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4950 | } |
| 4951 | |
| 4952 | /* Add the new header requested with the server value */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4953 | hdr_val = trash.str; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4954 | memcpy(hdr_val, hdr_name, hdr_name_len); |
| 4955 | hdr_val += hdr_name_len; |
| 4956 | *hdr_val++ = ':'; |
| 4957 | *hdr_val++ = ' '; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4958 | hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val); |
| 4959 | http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, hdr_val - trash.str); |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4960 | |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4961 | if (old_o) { |
| 4962 | /* If this was a forwarded request, we must readjust the amount of |
| 4963 | * data to be forwarded in order to take into account the size |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 4964 | * variations. Note that the current state is >= HTTP_MSG_BODY, |
| 4965 | * so we don't have to adjust ->sol. |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4966 | */ |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 4967 | old_o += chn->buf->i - old_i; |
| 4968 | b_adv(chn->buf, old_o); |
| 4969 | txn->req.next -= old_o; |
| 4970 | txn->req.sov -= old_o; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4971 | } |
| 4972 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4973 | return 0; |
| 4974 | } |
| 4975 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4976 | /* Terminate current transaction and prepare a new one. This is very tricky |
| 4977 | * right now but it works. |
| 4978 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4979 | void http_end_txn_clean_session(struct stream *s) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4980 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4981 | int prev_status = s->txn->status; |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 4982 | struct proxy *fe = strm_fe(s); |
Willy Tarreau | 068621e | 2013-12-23 15:11:25 +0100 | [diff] [blame] | 4983 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4984 | /* FIXME: We need a more portable way of releasing a backend's and a |
| 4985 | * server's connections. We need a safer way to reinitialize buffer |
| 4986 | * flags. We also need a more accurate method for computing per-request |
| 4987 | * data. |
| 4988 | */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4989 | |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4990 | /* unless we're doing keep-alive, we want to quickly close the connection |
| 4991 | * to the server. |
| 4992 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4993 | if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) || |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 4994 | !si_conn_ready(&s->si[1])) { |
| 4995 | s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF; |
| 4996 | si_shutr(&s->si[1]); |
| 4997 | si_shutw(&s->si[1]); |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4998 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4999 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5000 | if (s->flags & SF_BE_ASSIGNED) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5001 | s->be->beconn--; |
Willy Tarreau | 2d5cd47 | 2012-03-01 23:34:37 +0100 | [diff] [blame] | 5002 | if (unlikely(s->srv_conn)) |
| 5003 | sess_change_server(s, NULL); |
| 5004 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5005 | |
| 5006 | s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5007 | stream_process_counters(s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5008 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5009 | if (s->txn->status) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5010 | int n; |
| 5011 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5012 | n = s->txn->status / 100; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5013 | if (n < 1 || n > 5) |
| 5014 | n = 0; |
| 5015 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5016 | if (fe->mode == PR_MODE_HTTP) { |
| 5017 | fe->fe_counters.p.http.rsp[n]++; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5018 | if (s->comp_algo && (s->flags & SF_COMP_READY)) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5019 | fe->fe_counters.p.http.comp_rsp++; |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 5020 | } |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5021 | if ((s->flags & SF_BE_ASSIGNED) && |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 5022 | (s->be->mode == PR_MODE_HTTP)) { |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5023 | s->be->be_counters.p.http.rsp[n]++; |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 5024 | s->be->be_counters.p.http.cum_req++; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5025 | if (s->comp_algo && (s->flags & SF_COMP_READY)) |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 5026 | s->be->be_counters.p.http.comp_rsp++; |
| 5027 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5028 | } |
| 5029 | |
| 5030 | /* don't count other requests' data */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5031 | s->logs.bytes_in -= s->req.buf->i; |
| 5032 | s->logs.bytes_out -= s->res.buf->i; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5033 | |
| 5034 | /* let's do a final log if we need it */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5035 | if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait && |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5036 | !(s->flags & SF_MONITOR) && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5037 | (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5038 | s->do_log(s); |
| 5039 | } |
| 5040 | |
Willy Tarreau | d713bcc | 2014-06-25 15:36:04 +0200 | [diff] [blame] | 5041 | /* stop tracking content-based counters */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5042 | stream_stop_content_counters(s); |
| 5043 | stream_update_time_stats(s); |
Willy Tarreau | 4bfc580 | 2014-06-17 12:19:18 +0200 | [diff] [blame] | 5044 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5045 | s->logs.accept_date = date; /* user-visible date for logging */ |
| 5046 | s->logs.tv_accept = now; /* corrected date for internal use */ |
| 5047 | tv_zero(&s->logs.tv_request); |
| 5048 | s->logs.t_queue = -1; |
| 5049 | s->logs.t_connect = -1; |
| 5050 | s->logs.t_data = -1; |
| 5051 | s->logs.t_close = 0; |
| 5052 | s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */ |
| 5053 | s->logs.srv_queue_size = 0; /* we will get this number soon */ |
| 5054 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5055 | s->logs.bytes_in = s->req.total = s->req.buf->i; |
| 5056 | s->logs.bytes_out = s->res.total = s->res.buf->i; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5057 | |
| 5058 | if (s->pend_pos) |
| 5059 | pendconn_free(s->pend_pos); |
| 5060 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5061 | if (objt_server(s->target)) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5062 | if (s->flags & SF_CURR_SESS) { |
| 5063 | s->flags &= ~SF_CURR_SESS; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5064 | objt_server(s->target)->cur_sess--; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5065 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5066 | if (may_dequeue_tasks(objt_server(s->target), s->be)) |
| 5067 | process_srv_queue(objt_server(s->target)); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5068 | } |
| 5069 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5070 | s->target = NULL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5071 | |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5072 | /* only release our endpoint if we don't intend to reuse the |
| 5073 | * connection. |
| 5074 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5075 | if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) || |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5076 | !si_conn_ready(&s->si[1])) { |
| 5077 | si_release_endpoint(&s->si[1]); |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5078 | } |
| 5079 | |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5080 | s->si[1].state = s->si[1].prev_state = SI_ST_INI; |
| 5081 | s->si[1].err_type = SI_ET_NONE; |
| 5082 | s->si[1].conn_retries = 0; /* used for logging too */ |
| 5083 | s->si[1].exp = TICK_ETERNITY; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5084 | s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5085 | 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); |
| 5086 | 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 Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5087 | s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST); |
| 5088 | s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED); |
| 5089 | s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP); |
Willy Tarreau | 543db62 | 2012-11-15 16:41:22 +0100 | [diff] [blame] | 5090 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5091 | s->txn->meth = 0; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5092 | http_reset_txn(s); |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5093 | s->txn->flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ; |
Willy Tarreau | 068621e | 2013-12-23 15:11:25 +0100 | [diff] [blame] | 5094 | |
| 5095 | if (prev_status == 401 || prev_status == 407) { |
| 5096 | /* In HTTP keep-alive mode, if we receive a 401, we still have |
| 5097 | * a chance of being able to send the visitor again to the same |
| 5098 | * server over the same connection. This is required by some |
| 5099 | * broken protocols such as NTLM, and anyway whenever there is |
| 5100 | * an opportunity for sending the challenge to the proper place, |
| 5101 | * it's better to do it (at least it helps with debugging). |
| 5102 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5103 | s->txn->flags |= TX_PREFER_LAST; |
Willy Tarreau | 068621e | 2013-12-23 15:11:25 +0100 | [diff] [blame] | 5104 | } |
| 5105 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5106 | if (fe->options2 & PR_O2_INDEPSTR) |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5107 | s->si[1].flags |= SI_FL_INDEP_STR; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5108 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5109 | if (fe->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5110 | s->req.flags |= CF_NEVER_WAIT; |
| 5111 | s->res.flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 5112 | } |
| 5113 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5114 | /* if the request buffer is not empty, it means we're |
| 5115 | * about to process another request, so send pending |
| 5116 | * data with MSG_MORE to merge TCP packets when possible. |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 5117 | * Just don't do this if the buffer is close to be full, |
| 5118 | * because the request will wait for it to flush a little |
| 5119 | * bit before proceeding. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5120 | */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5121 | if (s->req.buf->i) { |
| 5122 | if (s->res.buf->o && |
| 5123 | !buffer_full(s->res.buf, global.tune.maxrewrite) && |
| 5124 | bi_end(s->res.buf) <= s->res.buf->data + s->res.buf->size - global.tune.maxrewrite) |
| 5125 | s->res.flags |= CF_EXPECT_MORE; |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 5126 | } |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 5127 | |
| 5128 | /* we're removing the analysers, we MUST re-enable events detection */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5129 | channel_auto_read(&s->req); |
| 5130 | channel_auto_close(&s->req); |
| 5131 | channel_auto_read(&s->res); |
| 5132 | channel_auto_close(&s->res); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5133 | |
Willy Tarreau | 2737562 | 2013-12-17 00:00:28 +0100 | [diff] [blame] | 5134 | /* we're in keep-alive with an idle connection, monitor it */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5135 | si_idle_conn(&s->si[1]); |
Willy Tarreau | 2737562 | 2013-12-17 00:00:28 +0100 | [diff] [blame] | 5136 | |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 5137 | s->req.analysers = strm_li(s)->analysers; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5138 | s->res.analysers = 0; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5139 | } |
| 5140 | |
| 5141 | |
| 5142 | /* This function updates the request state machine according to the response |
| 5143 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 5144 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 5145 | * it is only used to find when a request/response couple is complete. Both |
| 5146 | * this function and its equivalent should loop until both return zero. It |
| 5147 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 5148 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5149 | int http_sync_req_state(struct stream *s) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5150 | { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5151 | struct channel *chn = &s->req; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5152 | struct http_txn *txn = s->txn; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5153 | unsigned int old_flags = chn->flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5154 | unsigned int old_state = txn->req.msg_state; |
| 5155 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5156 | if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) |
| 5157 | return 0; |
| 5158 | |
| 5159 | if (txn->req.msg_state == HTTP_MSG_DONE) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 5160 | /* No need to read anymore, the request was completely parsed. |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 5161 | * We can shut the read side unless we want to abort_on_close, |
| 5162 | * or we have a POST request. The issue with POST requests is |
| 5163 | * that some browsers still send a CRLF after the request, and |
| 5164 | * this CRLF must be read so that it does not remain in the kernel |
| 5165 | * buffers, otherwise a close could cause an RST on some systems |
| 5166 | * (eg: Linux). |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 5167 | * Note that if we're using keep-alive on the client side, we'd |
| 5168 | * rather poll now and keep the polling enabled for the whole |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5169 | * stream's life than enabling/disabling it between each |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 5170 | * response and next request. |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 5171 | */ |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 5172 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) && |
| 5173 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) && |
| 5174 | !(s->be->options & PR_O_ABRT_CLOSE) && |
| 5175 | txn->meth != HTTP_METH_POST) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5176 | channel_dont_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5177 | |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 5178 | /* if the server closes the connection, we want to immediately react |
| 5179 | * and close the socket to save packets and syscalls. |
| 5180 | */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5181 | s->si[1].flags |= SI_FL_NOHALF; |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 5182 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5183 | if (txn->rsp.msg_state == HTTP_MSG_ERROR) |
| 5184 | goto wait_other_side; |
| 5185 | |
| 5186 | if (txn->rsp.msg_state < HTTP_MSG_DONE) { |
| 5187 | /* The server has not finished to respond, so we |
| 5188 | * don't want to move in order not to upset it. |
| 5189 | */ |
| 5190 | goto wait_other_side; |
| 5191 | } |
| 5192 | |
| 5193 | if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) { |
| 5194 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5195 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5196 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 5197 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5198 | goto wait_other_side; |
| 5199 | } |
| 5200 | |
| 5201 | /* When we get here, it means that both the request and the |
| 5202 | * response have finished receiving. Depending on the connection |
| 5203 | * mode, we'll have to wait for the last bytes to leave in either |
| 5204 | * direction, and sometimes for a close to be effective. |
| 5205 | */ |
| 5206 | |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5207 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 5208 | /* Server-close mode : queue a connection close to the server */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5209 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) |
| 5210 | channel_shutw_now(chn); |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5211 | } |
| 5212 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 5213 | /* Option forceclose is set, or either side wants to close, |
| 5214 | * let's enforce it now that we're not expecting any new |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5215 | * data to come. The caller knows the stream is complete |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5216 | * once both states are CLOSED. |
| 5217 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5218 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 5219 | channel_shutr_now(chn); |
| 5220 | channel_shutw_now(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5221 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5222 | } |
| 5223 | else { |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5224 | /* The last possible modes are keep-alive and tunnel. Tunnel mode |
| 5225 | * will not have any analyser so it needs to poll for reads. |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5226 | */ |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5227 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) { |
| 5228 | channel_auto_read(chn); |
| 5229 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
| 5230 | chn->flags |= CF_NEVER_WAIT; |
| 5231 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5232 | } |
| 5233 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5234 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5235 | /* if we've just closed an output, let's switch */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5236 | s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */ |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5237 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5238 | if (!channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5239 | txn->req.msg_state = HTTP_MSG_CLOSING; |
| 5240 | goto http_msg_closing; |
| 5241 | } |
| 5242 | else { |
| 5243 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 5244 | goto http_msg_closed; |
| 5245 | } |
| 5246 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5247 | goto wait_other_side; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5248 | } |
| 5249 | |
| 5250 | if (txn->req.msg_state == HTTP_MSG_CLOSING) { |
| 5251 | http_msg_closing: |
| 5252 | /* nothing else to forward, just waiting for the output buffer |
| 5253 | * to be empty and for the shutw_now to take effect. |
| 5254 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5255 | if (channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5256 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 5257 | goto http_msg_closed; |
| 5258 | } |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5259 | else if (chn->flags & CF_SHUTW) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5260 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 5261 | goto wait_other_side; |
| 5262 | } |
| 5263 | } |
| 5264 | |
| 5265 | if (txn->req.msg_state == HTTP_MSG_CLOSED) { |
| 5266 | http_msg_closed: |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 5267 | /* see above in MSG_DONE why we only do this in these states */ |
| 5268 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) && |
| 5269 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) && |
| 5270 | !(s->be->options & PR_O_ABRT_CLOSE)) |
Willy Tarreau | 2e7a165 | 2013-12-15 15:32:10 +0100 | [diff] [blame] | 5271 | channel_dont_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5272 | goto wait_other_side; |
| 5273 | } |
| 5274 | |
| 5275 | wait_other_side: |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5276 | return txn->req.msg_state != old_state || chn->flags != old_flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5277 | } |
| 5278 | |
| 5279 | |
| 5280 | /* This function updates the response state machine according to the request |
| 5281 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 5282 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 5283 | * it is only used to find when a request/response couple is complete. Both |
| 5284 | * this function and its equivalent should loop until both return zero. It |
| 5285 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 5286 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5287 | int http_sync_res_state(struct stream *s) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5288 | { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5289 | struct channel *chn = &s->res; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5290 | struct http_txn *txn = s->txn; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5291 | unsigned int old_flags = chn->flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5292 | unsigned int old_state = txn->rsp.msg_state; |
| 5293 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5294 | if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY)) |
| 5295 | return 0; |
| 5296 | |
| 5297 | if (txn->rsp.msg_state == HTTP_MSG_DONE) { |
| 5298 | /* In theory, we don't need to read anymore, but we must |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 5299 | * still monitor the server connection for a possible close |
| 5300 | * while the request is being uploaded, so we don't disable |
| 5301 | * reading. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5302 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5303 | /* channel_dont_read(chn); */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5304 | |
| 5305 | if (txn->req.msg_state == HTTP_MSG_ERROR) |
| 5306 | goto wait_other_side; |
| 5307 | |
| 5308 | if (txn->req.msg_state < HTTP_MSG_DONE) { |
| 5309 | /* The client seems to still be sending data, probably |
| 5310 | * because we got an error response during an upload. |
| 5311 | * We have the choice of either breaking the connection |
| 5312 | * or letting it pass through. Let's do the later. |
| 5313 | */ |
| 5314 | goto wait_other_side; |
| 5315 | } |
| 5316 | |
| 5317 | if (txn->req.msg_state == HTTP_MSG_TUNNEL) { |
| 5318 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5319 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5320 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 5321 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5322 | goto wait_other_side; |
| 5323 | } |
| 5324 | |
| 5325 | /* When we get here, it means that both the request and the |
| 5326 | * response have finished receiving. Depending on the connection |
| 5327 | * mode, we'll have to wait for the last bytes to leave in either |
| 5328 | * direction, and sometimes for a close to be effective. |
| 5329 | */ |
| 5330 | |
| 5331 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 5332 | /* Server-close mode : shut read and wait for the request |
| 5333 | * side to close its output buffer. The caller will detect |
| 5334 | * when we're in DONE and the other is in CLOSED and will |
| 5335 | * catch that for the final cleanup. |
| 5336 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5337 | if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW))) |
| 5338 | channel_shutr_now(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5339 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5340 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 5341 | /* Option forceclose is set, or either side wants to close, |
| 5342 | * let's enforce it now that we're not expecting any new |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5343 | * data to come. The caller knows the stream is complete |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5344 | * once both states are CLOSED. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5345 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5346 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 5347 | channel_shutr_now(chn); |
| 5348 | channel_shutw_now(chn); |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 5349 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5350 | } |
| 5351 | else { |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5352 | /* The last possible modes are keep-alive and tunnel. Tunnel will |
| 5353 | * need to forward remaining data. Keep-alive will need to monitor |
| 5354 | * for connection closing. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5355 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5356 | channel_auto_read(chn); |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 5357 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5358 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) |
| 5359 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5360 | } |
| 5361 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5362 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5363 | /* if we've just closed an output, let's switch */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5364 | if (!channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5365 | txn->rsp.msg_state = HTTP_MSG_CLOSING; |
| 5366 | goto http_msg_closing; |
| 5367 | } |
| 5368 | else { |
| 5369 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 5370 | goto http_msg_closed; |
| 5371 | } |
| 5372 | } |
| 5373 | goto wait_other_side; |
| 5374 | } |
| 5375 | |
| 5376 | if (txn->rsp.msg_state == HTTP_MSG_CLOSING) { |
| 5377 | http_msg_closing: |
| 5378 | /* nothing else to forward, just waiting for the output buffer |
| 5379 | * to be empty and for the shutw_now to take effect. |
| 5380 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5381 | if (channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5382 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 5383 | goto http_msg_closed; |
| 5384 | } |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5385 | else if (chn->flags & CF_SHUTW) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5386 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5387 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5388 | if (objt_server(s->target)) |
| 5389 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5390 | goto wait_other_side; |
| 5391 | } |
| 5392 | } |
| 5393 | |
| 5394 | if (txn->rsp.msg_state == HTTP_MSG_CLOSED) { |
| 5395 | http_msg_closed: |
| 5396 | /* drop any pending data */ |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 5397 | channel_truncate(chn); |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5398 | channel_auto_close(chn); |
| 5399 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5400 | goto wait_other_side; |
| 5401 | } |
| 5402 | |
| 5403 | wait_other_side: |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 5404 | /* We force the response to leave immediately if we're waiting for the |
| 5405 | * other side, since there is no pending shutdown to push it out. |
| 5406 | */ |
| 5407 | if (!channel_is_empty(chn)) |
| 5408 | chn->flags |= CF_SEND_DONTWAIT; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 5409 | return txn->rsp.msg_state != old_state || chn->flags != old_flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5410 | } |
| 5411 | |
| 5412 | |
| 5413 | /* Resync the request and response state machines. Return 1 if either state |
| 5414 | * changes. |
| 5415 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5416 | int http_resync_states(struct stream *s) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5417 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5418 | struct http_txn *txn = s->txn; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5419 | int old_req_state = txn->req.msg_state; |
| 5420 | int old_res_state = txn->rsp.msg_state; |
| 5421 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5422 | http_sync_req_state(s); |
| 5423 | while (1) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5424 | if (!http_sync_res_state(s)) |
| 5425 | break; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5426 | if (!http_sync_req_state(s)) |
| 5427 | break; |
| 5428 | } |
Willy Tarreau | 3ce10ff | 2014-04-22 08:24:38 +0200 | [diff] [blame] | 5429 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5430 | /* OK, both state machines agree on a compatible state. |
| 5431 | * There are a few cases we're interested in : |
| 5432 | * - HTTP_MSG_TUNNEL on either means we have to disable both analysers |
| 5433 | * - HTTP_MSG_CLOSED on both sides means we've reached the end in both |
| 5434 | * directions, so let's simply disable both analysers. |
| 5435 | * - HTTP_MSG_CLOSED on the response only means we must abort the |
| 5436 | * request. |
| 5437 | * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response |
| 5438 | * with server-close mode means we've completed one request and we |
| 5439 | * must re-initialize the server connection. |
| 5440 | */ |
| 5441 | |
| 5442 | if (txn->req.msg_state == HTTP_MSG_TUNNEL || |
| 5443 | txn->rsp.msg_state == HTTP_MSG_TUNNEL || |
| 5444 | (txn->req.msg_state == HTTP_MSG_CLOSED && |
| 5445 | txn->rsp.msg_state == HTTP_MSG_CLOSED)) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5446 | s->req.analysers = 0; |
| 5447 | channel_auto_close(&s->req); |
| 5448 | channel_auto_read(&s->req); |
| 5449 | s->res.analysers = 0; |
| 5450 | channel_auto_close(&s->res); |
| 5451 | channel_auto_read(&s->res); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5452 | } |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 5453 | else if ((txn->req.msg_state >= HTTP_MSG_DONE && |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5454 | (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->res.flags & CF_SHUTW))) || |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 5455 | txn->rsp.msg_state == HTTP_MSG_ERROR || |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 5456 | txn->req.msg_state == HTTP_MSG_ERROR) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5457 | s->res.analysers = 0; |
| 5458 | channel_auto_close(&s->res); |
| 5459 | channel_auto_read(&s->res); |
| 5460 | s->req.analysers = 0; |
| 5461 | channel_abort(&s->req); |
| 5462 | channel_auto_close(&s->req); |
| 5463 | channel_auto_read(&s->req); |
| 5464 | channel_truncate(&s->req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5465 | } |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5466 | else if ((txn->req.msg_state == HTTP_MSG_DONE || |
| 5467 | txn->req.msg_state == HTTP_MSG_CLOSED) && |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5468 | txn->rsp.msg_state == HTTP_MSG_DONE && |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 5469 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL || |
| 5470 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) { |
| 5471 | /* server-close/keep-alive: terminate this transaction, |
| 5472 | * possibly killing the server connection and reinitialize |
| 5473 | * a fresh-new transaction. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5474 | */ |
| 5475 | http_end_txn_clean_session(s); |
| 5476 | } |
| 5477 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5478 | return txn->req.msg_state != old_req_state || |
| 5479 | txn->rsp.msg_state != old_res_state; |
| 5480 | } |
| 5481 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5482 | /* This function is an analyser which forwards request body (including chunk |
| 5483 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 5484 | * zero byte. The only situation where it must not be called is when we're in |
| 5485 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 5486 | * remaining data and to resync after end of body. It expects the msg_state to |
| 5487 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5488 | * read more data, or 1 once we can go on with next request or end the stream. |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5489 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 5490 | * bytes of pending data + the headers if not already done. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5491 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5492 | int http_request_forward_body(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5493 | { |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 5494 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5495 | struct http_txn *txn = s->txn; |
| 5496 | struct http_msg *msg = &s->txn->req; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5497 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5498 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 5499 | return 0; |
| 5500 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5501 | if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5502 | ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5503 | /* Output closed while we were sending data. We must abort and |
| 5504 | * wake the other side up. |
| 5505 | */ |
| 5506 | msg->msg_state = HTTP_MSG_ERROR; |
| 5507 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 5508 | return 1; |
| 5509 | } |
| 5510 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5511 | /* Note that we don't have to send 100-continue back because we don't |
| 5512 | * need the data to complete our job, and it's up to the server to |
| 5513 | * decide whether to return 100, 417 or anything else in return of |
| 5514 | * an "Expect: 100-continue" header. |
| 5515 | */ |
| 5516 | |
Willy Tarreau | bb2e669 | 2014-07-10 19:06:10 +0200 | [diff] [blame] | 5517 | if (msg->sov > 0) { |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 5518 | /* we have msg->sov which points to the first byte of message |
| 5519 | * body, and req->buf.p still points to the beginning of the |
| 5520 | * message. We forward the headers now, as we don't need them |
| 5521 | * anymore, and we want to flush them. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5522 | */ |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 5523 | b_adv(req->buf, msg->sov); |
| 5524 | msg->next -= msg->sov; |
| 5525 | msg->sov = 0; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 5526 | |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 5527 | /* The previous analysers guarantee that the state is somewhere |
| 5528 | * between MSG_BODY and the first MSG_DATA. So msg->sol and |
| 5529 | * msg->next are always correct. |
| 5530 | */ |
| 5531 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
| 5532 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
| 5533 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 5534 | else |
| 5535 | msg->msg_state = HTTP_MSG_DATA; |
| 5536 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5537 | } |
| 5538 | |
Willy Tarreau | 7ba2354 | 2014-04-17 21:50:00 +0200 | [diff] [blame] | 5539 | /* Some post-connect processing might want us to refrain from starting to |
| 5540 | * forward data. Currently, the only reason for this is "balance url_param" |
| 5541 | * whichs need to parse/process the request after we've enabled forwarding. |
| 5542 | */ |
| 5543 | if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5544 | if (!(s->res.flags & CF_READ_ATTACHED)) { |
Willy Tarreau | 7ba2354 | 2014-04-17 21:50:00 +0200 | [diff] [blame] | 5545 | channel_auto_connect(req); |
Willy Tarreau | 644c101 | 2014-04-30 18:11:11 +0200 | [diff] [blame] | 5546 | req->flags |= CF_WAKE_CONNECT; |
Willy Tarreau | 7ba2354 | 2014-04-17 21:50:00 +0200 | [diff] [blame] | 5547 | goto missing_data; |
| 5548 | } |
| 5549 | msg->flags &= ~HTTP_MSGF_WAIT_CONN; |
| 5550 | } |
| 5551 | |
Willy Tarreau | 80a92c0 | 2014-03-12 10:41:13 +0100 | [diff] [blame] | 5552 | /* in most states, we should abort in case of early close */ |
| 5553 | channel_auto_close(req); |
| 5554 | |
Willy Tarreau | efdf094 | 2014-04-24 20:08:57 +0200 | [diff] [blame] | 5555 | if (req->to_forward) { |
| 5556 | /* We can't process the buffer's contents yet */ |
| 5557 | req->flags |= CF_WAKE_WRITE; |
| 5558 | goto missing_data; |
| 5559 | } |
| 5560 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5561 | while (1) { |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5562 | if (msg->msg_state == HTTP_MSG_DATA) { |
| 5563 | /* must still forward */ |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5564 | /* we may have some pending data starting at req->buf->p */ |
| 5565 | if (msg->chunk_len > req->buf->i - msg->next) { |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 5566 | req->flags |= CF_WAKE_WRITE; |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5567 | goto missing_data; |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 5568 | } |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5569 | msg->next += msg->chunk_len; |
| 5570 | msg->chunk_len = 0; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5571 | |
| 5572 | /* nothing left to forward */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5573 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5574 | msg->msg_state = HTTP_MSG_CHUNK_CRLF; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5575 | else |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5576 | msg->msg_state = HTTP_MSG_DONE; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5577 | } |
| 5578 | else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5579 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 5580 | * set ->next to point to the body and switch to DATA or |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5581 | * TRAILERS state. |
| 5582 | */ |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 5583 | int ret = http_parse_chunk_size(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5584 | |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5585 | if (ret == 0) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5586 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5587 | else if (ret < 0) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5588 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5589 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5590 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5591 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5592 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5593 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5594 | } |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5595 | else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5596 | /* we want the CRLF after the data */ |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5597 | int ret = http_skip_chunk_crlf(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5598 | |
| 5599 | if (ret == 0) |
| 5600 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5601 | else if (ret < 0) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5602 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5603 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5604 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5605 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5606 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5607 | /* we're in MSG_CHUNK_SIZE now */ |
| 5608 | } |
| 5609 | else if (msg->msg_state == HTTP_MSG_TRAILERS) { |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 5610 | int ret = http_forward_trailers(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5611 | |
| 5612 | if (ret == 0) |
| 5613 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5614 | else if (ret < 0) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5615 | stream_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5616 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5617 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5618 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5619 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5620 | /* we're in HTTP_MSG_DONE now */ |
| 5621 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5622 | else { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5623 | int old_state = msg->msg_state; |
| 5624 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5625 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5626 | |
| 5627 | /* we may have some pending data starting at req->buf->p |
| 5628 | * such as last chunk of data or trailers. |
| 5629 | */ |
| 5630 | b_adv(req->buf, msg->next); |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5631 | if (unlikely(!(s->req.flags & CF_WROTE_DATA))) |
Willy Tarreau | bb2e669 | 2014-07-10 19:06:10 +0200 | [diff] [blame] | 5632 | msg->sov -= msg->next; |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5633 | msg->next = 0; |
| 5634 | |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5635 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5636 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 5637 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5638 | channel_dont_close(req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5639 | if (http_resync_states(s)) { |
| 5640 | /* some state changes occurred, maybe the analyser |
| 5641 | * was disabled too. |
Willy Tarreau | face839 | 2010-01-03 11:37:54 +0100 | [diff] [blame] | 5642 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5643 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5644 | if (req->flags & CF_SHUTW) { |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5645 | /* request errors are most likely due to |
| 5646 | * the server aborting the transfer. |
| 5647 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5648 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5649 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5650 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5651 | http_capture_bad_message(&sess->fe->invalid_req, s, msg, old_state, s->be); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5652 | goto return_bad_req; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5653 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5654 | return 1; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5655 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5656 | |
| 5657 | /* If "option abortonclose" is set on the backend, we |
| 5658 | * want to monitor the client's connection and forward |
| 5659 | * any shutdown notification to the server, which will |
| 5660 | * decide whether to close or to go on processing the |
| 5661 | * request. |
| 5662 | */ |
| 5663 | if (s->be->options & PR_O_ABRT_CLOSE) { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5664 | channel_auto_read(req); |
| 5665 | channel_auto_close(req); |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5666 | } |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5667 | else if (s->txn->meth == HTTP_METH_POST) { |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 5668 | /* POST requests may require to read extra CRLF |
| 5669 | * sent by broken browsers and which could cause |
| 5670 | * an RST to be sent upon close on some systems |
| 5671 | * (eg: Linux). |
| 5672 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5673 | channel_auto_read(req); |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 5674 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5675 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5676 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5677 | } |
| 5678 | } |
| 5679 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5680 | missing_data: |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5681 | /* we may have some pending data starting at req->buf->p */ |
| 5682 | b_adv(req->buf, msg->next); |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5683 | if (unlikely(!(s->req.flags & CF_WROTE_DATA))) |
Willy Tarreau | bb2e669 | 2014-07-10 19:06:10 +0200 | [diff] [blame] | 5684 | msg->sov -= msg->next + MIN(msg->chunk_len, req->buf->i); |
| 5685 | |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5686 | msg->next = 0; |
| 5687 | msg->chunk_len -= channel_forward(req, msg->chunk_len); |
| 5688 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5689 | /* stop waiting for data if the input is closed before the end */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5690 | if (req->flags & CF_SHUTR) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5691 | if (!(s->flags & SF_ERR_MASK)) |
| 5692 | s->flags |= SF_ERR_CLICL; |
| 5693 | if (!(s->flags & SF_FINST_MASK)) { |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5694 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5695 | s->flags |= SF_FINST_H; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5696 | else |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5697 | s->flags |= SF_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5698 | } |
| 5699 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5700 | sess->fe->fe_counters.cli_aborts++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5701 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5702 | if (objt_server(s->target)) |
| 5703 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5704 | |
| 5705 | goto return_bad_req_stats_ok; |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 5706 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5707 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5708 | /* waiting for the last bits to leave the buffer */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5709 | if (req->flags & CF_SHUTW) |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5710 | goto aborted_xfer; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5711 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5712 | /* When TE: chunked is used, we need to get there again to parse remaining |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5713 | * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE. |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5714 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5715 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5716 | channel_dont_close(req); |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5717 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5718 | /* We know that more data are expected, but we couldn't send more that |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5719 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 5720 | * system knows it must not set a PUSH on this first part. Interactive |
Willy Tarreau | 869fc1e | 2012-03-05 08:29:20 +0100 | [diff] [blame] | 5721 | * modes are already handled by the stream sock layer. We must not do |
| 5722 | * this in content-length mode because it could present the MSG_MORE |
| 5723 | * flag with the last block of forwarded data, which would cause an |
| 5724 | * additional delay to be observed by the receiver. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5725 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5726 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5727 | req->flags |= CF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5728 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5729 | return 0; |
| 5730 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5731 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5732 | sess->fe->fe_counters.failed_req++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 5733 | if (sess->listener->counters) |
| 5734 | sess->listener->counters->failed_req++; |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5735 | |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5736 | return_bad_req_stats_ok: |
Willy Tarreau | bed410e | 2014-04-22 08:19:34 +0200 | [diff] [blame] | 5737 | /* we may have some pending data starting at req->buf->p */ |
| 5738 | b_adv(req->buf, msg->next); |
| 5739 | msg->next = 0; |
| 5740 | |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5741 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 5742 | if (txn->status) { |
| 5743 | /* Note: we don't send any error if some data were already sent */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5744 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5745 | } else { |
| 5746 | txn->status = 400; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5747 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5748 | } |
| 5749 | req->analysers = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5750 | s->res.analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5751 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5752 | if (!(s->flags & SF_ERR_MASK)) |
| 5753 | s->flags |= SF_ERR_PRXCOND; |
| 5754 | if (!(s->flags & SF_FINST_MASK)) { |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5755 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5756 | s->flags |= SF_FINST_H; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5757 | else |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5758 | s->flags |= SF_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5759 | } |
| 5760 | return 0; |
| 5761 | |
| 5762 | aborted_xfer: |
| 5763 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 5764 | if (txn->status) { |
| 5765 | /* Note: we don't send any error if some data were already sent */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5766 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5767 | } else { |
| 5768 | txn->status = 502; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5769 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5770 | } |
| 5771 | req->analysers = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5772 | s->res.analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5773 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5774 | sess->fe->fe_counters.srv_aborts++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5775 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5776 | if (objt_server(s->target)) |
| 5777 | objt_server(s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5778 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5779 | if (!(s->flags & SF_ERR_MASK)) |
| 5780 | s->flags |= SF_ERR_SRVCL; |
| 5781 | if (!(s->flags & SF_FINST_MASK)) { |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5782 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5783 | s->flags |= SF_FINST_H; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5784 | else |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5785 | s->flags |= SF_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5786 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5787 | return 0; |
| 5788 | } |
| 5789 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5790 | /* This stream analyser waits for a complete HTTP response. It returns 1 if the |
| 5791 | * processing can continue on next analysers, or zero if it either needs more |
| 5792 | * data or wants to immediately abort the response (eg: timeout, error, ...). It |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5793 | * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5794 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 5795 | * abort. |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 5796 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5797 | int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit) |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 5798 | { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5799 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 5800 | struct http_txn *txn = s->txn; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5801 | struct http_msg *msg = &txn->rsp; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5802 | struct hdr_ctx ctx; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5803 | int use_close_only; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5804 | int cur_idx; |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 5805 | int n; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 5806 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5807 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 5808 | now_ms, __FUNCTION__, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5809 | s, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 5810 | rep, |
| 5811 | rep->rex, rep->wex, |
| 5812 | rep->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5813 | rep->buf->i, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 5814 | rep->analysers); |
Willy Tarreau | 67f0eea | 2008-08-10 22:55:22 +0200 | [diff] [blame] | 5815 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5816 | /* |
| 5817 | * Now parse the partial (or complete) lines. |
| 5818 | * We will check the response syntax, and also join multi-line |
| 5819 | * headers. An index of all the lines will be elaborated while |
| 5820 | * parsing. |
| 5821 | * |
| 5822 | * For the parsing, we use a 28 states FSM. |
| 5823 | * |
| 5824 | * Here is the information we currently have : |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5825 | * rep->buf->p = beginning of response |
| 5826 | * rep->buf->p + msg->eoh = end of processed headers / start of current one |
| 5827 | * rep->buf->p + rep->buf->i = end of input data |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 5828 | * msg->eol = end of current header or line (LF or CRLF) |
| 5829 | * msg->next = first non-visited byte |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5830 | */ |
| 5831 | |
Willy Tarreau | 628c40c | 2014-04-24 19:11:26 +0200 | [diff] [blame] | 5832 | next_one: |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5833 | /* There's a protected area at the end of the buffer for rewriting |
| 5834 | * purposes. We don't want to start to parse the request if the |
| 5835 | * protected area is affected, because we may have to move processed |
| 5836 | * data later, which is much more complicated. |
| 5837 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5838 | if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) { |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 5839 | if (unlikely(!channel_is_rewritable(rep))) { |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5840 | /* some data has still not left the buffer, wake us once that's done */ |
| 5841 | if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) |
| 5842 | goto abort_response; |
| 5843 | channel_dont_close(rep); |
| 5844 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | d7ad9f5 | 2013-12-31 17:26:25 +0100 | [diff] [blame] | 5845 | rep->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5846 | return 0; |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5847 | } |
| 5848 | |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5849 | if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) || |
| 5850 | bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite)) |
| 5851 | buffer_slow_realign(rep->buf); |
| 5852 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5853 | if (likely(msg->next < rep->buf->i)) |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 5854 | http_msg_analyzer(msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5855 | } |
| 5856 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5857 | /* 1: we might have to print this header in debug mode */ |
| 5858 | if (unlikely((global.mode & MODE_DEBUG) && |
| 5859 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | 7d59e90 | 2014-10-21 19:36:09 +0200 | [diff] [blame] | 5860 | msg->msg_state >= HTTP_MSG_BODY)) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5861 | char *eol, *sol; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5862 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5863 | sol = rep->buf->p; |
| 5864 | eol = sol + (msg->sl.st.l ? msg->sl.st.l : rep->buf->i); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5865 | debug_hdr("srvrep", s, sol, eol); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5866 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5867 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 5868 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5869 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5870 | while (cur_idx) { |
| 5871 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 5872 | debug_hdr("srvhdr", s, sol, eol); |
| 5873 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 5874 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
| 5875 | } |
| 5876 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5877 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5878 | /* |
| 5879 | * Now we quickly check if we have found a full valid response. |
| 5880 | * If not so, we check the FD and buffer states before leaving. |
| 5881 | * A full response is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5882 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5883 | * responses are checked first. |
| 5884 | * |
| 5885 | * Depending on whether the client is still there or not, we |
| 5886 | * may send an error response back or not. Note that normally |
| 5887 | * we should only check for HTTP status there, and check I/O |
| 5888 | * errors somewhere else. |
| 5889 | */ |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5890 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5891 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5892 | /* Invalid response */ |
| 5893 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 5894 | /* we detected a parsing error. We want to archive this response |
| 5895 | * in the dedicated proxy area for later troubleshooting. |
| 5896 | */ |
| 5897 | hdr_response_bad: |
| 5898 | if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5899 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5900 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5901 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5902 | if (objt_server(s->target)) { |
| 5903 | objt_server(s->target)->counters.failed_resp++; |
| 5904 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5905 | } |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 5906 | abort_response: |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5907 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5908 | rep->analysers = 0; |
| 5909 | txn->status = 502; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5910 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 5911 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5912 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5913 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5914 | if (!(s->flags & SF_ERR_MASK)) |
| 5915 | s->flags |= SF_ERR_PRXCOND; |
| 5916 | if (!(s->flags & SF_FINST_MASK)) |
| 5917 | s->flags |= SF_FINST_H; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5918 | |
| 5919 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5920 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5921 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5922 | /* too large response does not fit in buffer. */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5923 | else if (buffer_full(rep->buf, global.tune.maxrewrite)) { |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 5924 | if (msg->err_pos < 0) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5925 | msg->err_pos = rep->buf->i; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5926 | goto hdr_response_bad; |
| 5927 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5928 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5929 | /* read error */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5930 | else if (rep->flags & CF_READ_ERROR) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5931 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5932 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5933 | else if (txn->flags & TX_NOT_FIRST) |
| 5934 | goto abort_keep_alive; |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 5935 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5936 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5937 | if (objt_server(s->target)) { |
| 5938 | objt_server(s->target)->counters.failed_resp++; |
| 5939 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5940 | } |
Willy Tarreau | 461f662 | 2008-08-15 23:43:19 +0200 | [diff] [blame] | 5941 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5942 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5943 | rep->analysers = 0; |
| 5944 | txn->status = 502; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5945 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 5946 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5947 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 5948 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5949 | if (!(s->flags & SF_ERR_MASK)) |
| 5950 | s->flags |= SF_ERR_SRVCL; |
| 5951 | if (!(s->flags & SF_FINST_MASK)) |
| 5952 | s->flags |= SF_FINST_H; |
Willy Tarreau | cebf57e | 2008-08-15 18:16:37 +0200 | [diff] [blame] | 5953 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5954 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5955 | |
Willy Tarreau | 6f0a7ba | 2014-06-23 15:22:31 +0200 | [diff] [blame] | 5956 | /* read timeout : return a 504 to the client. */ |
| 5957 | else if (rep->flags & CF_READ_TIMEOUT) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5958 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5959 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5960 | else if (txn->flags & TX_NOT_FIRST) |
| 5961 | goto abort_keep_alive; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5962 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5963 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5964 | if (objt_server(s->target)) { |
| 5965 | objt_server(s->target)->counters.failed_resp++; |
| 5966 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5967 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5968 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5969 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5970 | rep->analysers = 0; |
| 5971 | txn->status = 504; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5972 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 5973 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5974 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_504)); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 5975 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5976 | if (!(s->flags & SF_ERR_MASK)) |
| 5977 | s->flags |= SF_ERR_SRVTO; |
| 5978 | if (!(s->flags & SF_FINST_MASK)) |
| 5979 | s->flags |= SF_FINST_H; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5980 | return 0; |
| 5981 | } |
Willy Tarreau | a7c5276 | 2008-08-16 18:40:18 +0200 | [diff] [blame] | 5982 | |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 5983 | /* client abort with an abortonclose */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 5984 | else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 5985 | sess->fe->fe_counters.cli_aborts++; |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 5986 | s->be->be_counters.cli_aborts++; |
| 5987 | if (objt_server(s->target)) |
| 5988 | objt_server(s->target)->counters.cli_aborts++; |
| 5989 | |
| 5990 | rep->analysers = 0; |
| 5991 | channel_auto_close(rep); |
| 5992 | |
| 5993 | txn->status = 400; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 5994 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 5995 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 5996 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 5997 | if (!(s->flags & SF_ERR_MASK)) |
| 5998 | s->flags |= SF_ERR_CLICL; |
| 5999 | if (!(s->flags & SF_FINST_MASK)) |
| 6000 | s->flags |= SF_FINST_H; |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6001 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6002 | /* process_stream() will take care of the error */ |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6003 | return 0; |
| 6004 | } |
| 6005 | |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 6006 | /* close from server, capture the response if the server has started to respond */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6007 | else if (rep->flags & CF_SHUTR) { |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 6008 | if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6009 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 6010 | else if (txn->flags & TX_NOT_FIRST) |
| 6011 | goto abort_keep_alive; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 6012 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6013 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6014 | if (objt_server(s->target)) { |
| 6015 | objt_server(s->target)->counters.failed_resp++; |
| 6016 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 6017 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 6018 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6019 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6020 | rep->analysers = 0; |
| 6021 | txn->status = 502; |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 6022 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 6023 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 6024 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 6025 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6026 | if (!(s->flags & SF_ERR_MASK)) |
| 6027 | s->flags |= SF_ERR_SRVCL; |
| 6028 | if (!(s->flags & SF_FINST_MASK)) |
| 6029 | s->flags |= SF_FINST_H; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6030 | return 0; |
| 6031 | } |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 6032 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6033 | /* write error to client (we don't send any message then) */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6034 | else if (rep->flags & CF_WRITE_ERROR) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6035 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6036 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 6037 | else if (txn->flags & TX_NOT_FIRST) |
| 6038 | goto abort_keep_alive; |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 6039 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6040 | s->be->be_counters.failed_resp++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6041 | rep->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6042 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6043 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6044 | if (!(s->flags & SF_ERR_MASK)) |
| 6045 | s->flags |= SF_ERR_CLICL; |
| 6046 | if (!(s->flags & SF_FINST_MASK)) |
| 6047 | s->flags |= SF_FINST_H; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6048 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6049 | /* process_stream() will take care of the error */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6050 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6051 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 6052 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6053 | channel_dont_close(rep); |
Willy Tarreau | 3f3997e | 2013-12-15 15:21:32 +0100 | [diff] [blame] | 6054 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6055 | return 0; |
| 6056 | } |
| 6057 | |
| 6058 | /* More interesting part now : we know that we have a complete |
| 6059 | * response which at least looks like HTTP. We have an indicator |
| 6060 | * of each header's length, so we can parse them quickly. |
| 6061 | */ |
| 6062 | |
| 6063 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6064 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, sess->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6065 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6066 | /* |
| 6067 | * 1: get the status code |
| 6068 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6069 | n = rep->buf->p[msg->sl.st.c] - '0'; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6070 | if (n < 1 || n > 5) |
| 6071 | n = 0; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 6072 | /* when the client triggers a 4xx from the server, it's most often due |
| 6073 | * to a missing object or permission. These events should be tracked |
| 6074 | * because if they happen often, it may indicate a brute force or a |
| 6075 | * vulnerability scan. |
| 6076 | */ |
| 6077 | if (n == 4) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6078 | stream_inc_http_err_ctr(s); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 6079 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6080 | if (objt_server(s->target)) |
| 6081 | objt_server(s->target)->counters.p.http.rsp[n]++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6082 | |
Willy Tarreau | 91852eb | 2015-05-01 13:26:00 +0200 | [diff] [blame^] | 6083 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 6084 | * exactly one digit "." one digit. This check may be disabled using |
| 6085 | * option accept-invalid-http-response. |
| 6086 | */ |
| 6087 | if (!(s->be->options2 & PR_O2_RSPBUG_OK)) { |
| 6088 | if (msg->sl.st.v_l != 8) { |
| 6089 | msg->err_pos = 0; |
| 6090 | goto hdr_response_bad; |
| 6091 | } |
| 6092 | |
| 6093 | if (rep->buf->p[4] != '/' || |
| 6094 | !isdigit((unsigned char)rep->buf->p[5]) || |
| 6095 | rep->buf->p[6] != '.' || |
| 6096 | !isdigit((unsigned char)rep->buf->p[7])) { |
| 6097 | msg->err_pos = 4; |
| 6098 | goto hdr_response_bad; |
| 6099 | } |
| 6100 | } |
| 6101 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6102 | /* check if the response is HTTP/1.1 or above */ |
| 6103 | if ((msg->sl.st.v_l == 8) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6104 | ((rep->buf->p[5] > '1') || |
| 6105 | ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1')))) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6106 | msg->flags |= HTTP_MSGF_VER_11; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6107 | |
| 6108 | /* "connection" has not been parsed yet */ |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 6109 | 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 Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6110 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6111 | /* transfer length unknown*/ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6112 | msg->flags &= ~HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6113 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6114 | txn->status = strl2ui(rep->buf->p + msg->sl.st.c, msg->sl.st.c_l); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6115 | |
Willy Tarreau | 3965040 | 2010-03-15 19:44:39 +0100 | [diff] [blame] | 6116 | /* Adjust server's health based on status code. Note: status codes 501 |
| 6117 | * and 505 are triggered on demand by client request, so we must not |
| 6118 | * count them as server failures. |
| 6119 | */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6120 | if (objt_server(s->target)) { |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 6121 | if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505)) |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6122 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 6123 | else |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6124 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 6125 | } |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 6126 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6127 | /* |
| 6128 | * 2: check for cacheability. |
| 6129 | */ |
| 6130 | |
| 6131 | switch (txn->status) { |
Willy Tarreau | 628c40c | 2014-04-24 19:11:26 +0200 | [diff] [blame] | 6132 | case 100: |
| 6133 | /* |
| 6134 | * We may be facing a 100-continue response, in which case this |
| 6135 | * is not the right response, and we're waiting for the next one. |
| 6136 | * Let's allow this response to go to the client and wait for the |
| 6137 | * next one. |
| 6138 | */ |
| 6139 | hdr_idx_init(&txn->hdr_idx); |
| 6140 | msg->next -= channel_forward(rep, msg->next); |
| 6141 | msg->msg_state = HTTP_MSG_RPBEFORE; |
| 6142 | txn->status = 0; |
| 6143 | s->logs.t_data = -1; /* was not a response yet */ |
| 6144 | goto next_one; |
| 6145 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6146 | case 200: |
| 6147 | case 203: |
| 6148 | case 206: |
| 6149 | case 300: |
| 6150 | case 301: |
| 6151 | case 410: |
| 6152 | /* RFC2616 @13.4: |
| 6153 | * "A response received with a status code of |
| 6154 | * 200, 203, 206, 300, 301 or 410 MAY be stored |
| 6155 | * by a cache (...) unless a cache-control |
| 6156 | * directive prohibits caching." |
| 6157 | * |
| 6158 | * RFC2616 @9.5: POST method : |
| 6159 | * "Responses to this method are not cacheable, |
| 6160 | * unless the response includes appropriate |
| 6161 | * Cache-Control or Expires header fields." |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6162 | */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6163 | if (likely(txn->meth != HTTP_METH_POST) && |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 6164 | ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))) |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6165 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 6166 | break; |
| 6167 | default: |
| 6168 | break; |
| 6169 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6170 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6171 | /* |
| 6172 | * 3: we may need to capture headers |
| 6173 | */ |
| 6174 | s->logs.logwait &= ~LW_RESP; |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 6175 | if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap)) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6176 | capture_headers(rep->buf->p, &txn->hdr_idx, |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 6177 | s->res_cap, sess->fe->rsp_cap); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 6178 | |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6179 | /* 4: determine the transfer-length according to RFC2616 #4.4, updated |
| 6180 | * by RFC7230#3.3.3 : |
| 6181 | * |
| 6182 | * The length of a message body is determined by one of the following |
| 6183 | * (in order of precedence): |
| 6184 | * |
| 6185 | * 1. Any response to a HEAD request and any response with a 1xx |
| 6186 | * (Informational), 204 (No Content), or 304 (Not Modified) status |
| 6187 | * code is always terminated by the first empty line after the |
| 6188 | * header fields, regardless of the header fields present in the |
| 6189 | * message, and thus cannot contain a message body. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6190 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6191 | * 2. Any 2xx (Successful) response to a CONNECT request implies that |
| 6192 | * the connection will become a tunnel immediately after the empty |
| 6193 | * line that concludes the header fields. A client MUST ignore any |
| 6194 | * Content-Length or Transfer-Encoding header fields received in |
| 6195 | * such a message. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6196 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6197 | * 3. If a Transfer-Encoding header field is present and the chunked |
| 6198 | * transfer coding (Section 4.1) is the final encoding, the message |
| 6199 | * body length is determined by reading and decoding the chunked |
| 6200 | * data until the transfer coding indicates the data is complete. |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6201 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6202 | * If a Transfer-Encoding header field is present in a response and |
| 6203 | * the chunked transfer coding is not the final encoding, the |
| 6204 | * message body length is determined by reading the connection until |
| 6205 | * it is closed by the server. If a Transfer-Encoding header field |
| 6206 | * is present in a request and the chunked transfer coding is not |
| 6207 | * the final encoding, the message body length cannot be determined |
| 6208 | * reliably; the server MUST respond with the 400 (Bad Request) |
| 6209 | * status code and then close the connection. |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6210 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6211 | * If a message is received with both a Transfer-Encoding and a |
| 6212 | * Content-Length header field, the Transfer-Encoding overrides the |
| 6213 | * Content-Length. Such a message might indicate an attempt to |
| 6214 | * perform request smuggling (Section 9.5) or response splitting |
| 6215 | * (Section 9.4) and ought to be handled as an error. A sender MUST |
| 6216 | * remove the received Content-Length field prior to forwarding such |
| 6217 | * a message downstream. |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6218 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6219 | * 4. If a message is received without Transfer-Encoding and with |
| 6220 | * either multiple Content-Length header fields having differing |
| 6221 | * field-values or a single Content-Length header field having an |
| 6222 | * invalid value, then the message framing is invalid and the |
| 6223 | * recipient MUST treat it as an unrecoverable error. If this is a |
| 6224 | * request message, the server MUST respond with a 400 (Bad Request) |
| 6225 | * status code and then close the connection. If this is a response |
| 6226 | * message received by a proxy, the proxy MUST close the connection |
| 6227 | * to the server, discard the received response, and send a 502 (Bad |
| 6228 | * Gateway) response to the client. If this is a response message |
| 6229 | * received by a user agent, the user agent MUST close the |
| 6230 | * connection to the server and discard the received response. |
| 6231 | * |
| 6232 | * 5. If a valid Content-Length header field is present without |
| 6233 | * Transfer-Encoding, its decimal value defines the expected message |
| 6234 | * body length in octets. If the sender closes the connection or |
| 6235 | * the recipient times out before the indicated number of octets are |
| 6236 | * received, the recipient MUST consider the message to be |
| 6237 | * incomplete and close the connection. |
| 6238 | * |
| 6239 | * 6. If this is a request message and none of the above are true, then |
| 6240 | * the message body length is zero (no message body is present). |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6241 | * |
Willy Tarreau | 557f199 | 2015-05-01 10:05:17 +0200 | [diff] [blame] | 6242 | * 7. Otherwise, this is a response message without a declared message |
| 6243 | * body length, so the message body length is determined by the |
| 6244 | * number of octets received prior to the server closing the |
| 6245 | * connection. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6246 | */ |
| 6247 | |
| 6248 | /* Skip parsing if no content length is possible. The response flags |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 6249 | * remain 0 as well as the chunk_len, which may or may not mirror |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6250 | * the real header value, and we note that we know the response's length. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6251 | * FIXME: should we parse anyway and return an error on chunked encoding ? |
| 6252 | */ |
| 6253 | if (txn->meth == HTTP_METH_HEAD || |
| 6254 | (txn->status >= 100 && txn->status < 200) || |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6255 | txn->status == 204 || txn->status == 304) { |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6256 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 9101535 | 2012-11-27 07:31:33 +0100 | [diff] [blame] | 6257 | s->comp_algo = NULL; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6258 | goto skip_content_length; |
| 6259 | } |
| 6260 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6261 | use_close_only = 0; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6262 | ctx.idx = 0; |
Willy Tarreau | 4979d5c | 2015-05-01 10:06:30 +0200 | [diff] [blame] | 6263 | while (http_find_header2("Transfer-Encoding", 17, rep->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6264 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6265 | msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
| 6266 | else if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6267 | /* bad transfer-encoding (chunked followed by something else) */ |
| 6268 | use_close_only = 1; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6269 | msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 6270 | break; |
| 6271 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6272 | } |
| 6273 | |
Willy Tarreau | 1c91391 | 2015-04-30 10:57:51 +0200 | [diff] [blame] | 6274 | /* Chunked responses must have their content-length removed */ |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6275 | ctx.idx = 0; |
Willy Tarreau | b4d0c03 | 2015-05-01 10:25:45 +0200 | [diff] [blame] | 6276 | if (use_close_only || (msg->flags & HTTP_MSGF_TE_CHNK)) { |
Willy Tarreau | 1c91391 | 2015-04-30 10:57:51 +0200 | [diff] [blame] | 6277 | while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) |
| 6278 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 6279 | } |
Willy Tarreau | b4d0c03 | 2015-05-01 10:25:45 +0200 | [diff] [blame] | 6280 | else while (http_find_header2("Content-Length", 14, rep->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6281 | signed long long cl; |
| 6282 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6283 | if (!ctx.vlen) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6284 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6285 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6286 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6287 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6288 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6289 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6290 | goto hdr_response_bad; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6291 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6292 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6293 | if (cl < 0) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6294 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6295 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6296 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6297 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6298 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6299 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6300 | goto hdr_response_bad; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 6301 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6302 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6303 | msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 6304 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6305 | } |
| 6306 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6307 | if (sess->fe->comp || s->be->comp) |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6308 | select_compression_response_header(s, rep->buf); |
| 6309 | |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 6310 | skip_content_length: |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6311 | /* Now we have to check if we need to modify the Connection header. |
| 6312 | * This is more difficult on the response than it is on the request, |
| 6313 | * because we can have two different HTTP versions and we don't know |
| 6314 | * how the client will interprete a response. For instance, let's say |
| 6315 | * that the client sends a keep-alive request in HTTP/1.0 and gets an |
| 6316 | * HTTP/1.1 response without any header. Maybe it will bound itself to |
| 6317 | * HTTP/1.0 because it only knows about it, and will consider the lack |
| 6318 | * of header as a close, or maybe it knows HTTP/1.1 and can consider |
| 6319 | * the lack of header as a keep-alive. Thus we will use two flags |
| 6320 | * indicating how a request MAY be understood by the client. In case |
| 6321 | * of multiple possibilities, we'll fix the header to be explicit. If |
| 6322 | * ambiguous cases such as both close and keepalive are seen, then we |
| 6323 | * will fall back to explicit close. Note that we won't take risks with |
| 6324 | * HTTP/1.0 clients which may not necessarily understand keep-alive. |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6325 | * See doc/internals/connection-header.txt for the complete matrix. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6326 | */ |
| 6327 | |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 6328 | if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || |
| 6329 | txn->status == 101)) { |
| 6330 | /* Either we've established an explicit tunnel, or we're |
| 6331 | * switching the protocol. In both cases, we're very unlikely |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 6332 | * to understand the next protocols. We have to switch to tunnel |
| 6333 | * mode, so that we transfer the request and responses then let |
| 6334 | * this protocol pass unmodified. When we later implement specific |
| 6335 | * parsers for such protocols, we'll want to check the Upgrade |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 6336 | * header which contains information about that protocol for |
| 6337 | * responses with status 101 (eg: see RFC2817 about TLS). |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 6338 | */ |
| 6339 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN; |
| 6340 | } |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 6341 | else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) && |
| 6342 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6343 | ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 6344 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6345 | int to_del = 0; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6346 | |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 6347 | /* this situation happens when combining pretend-keepalive with httpclose. */ |
| 6348 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6349 | ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 6350 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 6351 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
| 6352 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6353 | /* on unknown transfer length, we must close */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6354 | if (!(msg->flags & HTTP_MSGF_XFER_LEN) && |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6355 | (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) |
| 6356 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6357 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6358 | /* now adjust header transformations depending on current state */ |
| 6359 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN || |
| 6360 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 6361 | to_del |= 2; /* remove "keep-alive" on any response */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6362 | if (!(msg->flags & HTTP_MSGF_VER_11)) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6363 | to_del |= 1; /* remove "close" for HTTP/1.0 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6364 | } |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6365 | else { /* SCL / KAL */ |
| 6366 | to_del |= 1; /* remove "close" on any response */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6367 | if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6368 | to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6369 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6370 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6371 | /* Parse and remove some headers from the connection header */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 6372 | http_parse_connection_header(txn, msg, to_del); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6373 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6374 | /* Some keep-alive responses are converted to Server-close if |
| 6375 | * the server wants to close. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6376 | */ |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6377 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) { |
| 6378 | if ((txn->flags & TX_HDR_CONN_CLO) || |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6379 | (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11))) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6380 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 6381 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 6382 | } |
| 6383 | |
Willy Tarreau | 7959a55 | 2013-09-23 16:44:27 +0200 | [diff] [blame] | 6384 | /* we want to have the response time before we start processing it */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 6385 | s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now); |
Willy Tarreau | 7959a55 | 2013-09-23 16:44:27 +0200 | [diff] [blame] | 6386 | |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6387 | /* end of job, return OK */ |
| 6388 | rep->analysers &= ~an_bit; |
| 6389 | rep->analyse_exp = TICK_ETERNITY; |
| 6390 | channel_auto_close(rep); |
| 6391 | return 1; |
| 6392 | |
| 6393 | abort_keep_alive: |
| 6394 | /* A keep-alive request to the server failed on a network error. |
| 6395 | * The client is required to retry. We need to close without returning |
| 6396 | * any other information so that the client retries. |
| 6397 | */ |
| 6398 | txn->status = 0; |
| 6399 | rep->analysers = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6400 | s->req.analysers = 0; |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6401 | channel_auto_close(rep); |
| 6402 | s->logs.logwait = 0; |
| 6403 | s->logs.level = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6404 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 6405 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 6406 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6407 | return 0; |
| 6408 | } |
| 6409 | |
| 6410 | /* This function performs all the processing enabled for the current response. |
| 6411 | * It normally returns 1 unless it wants to break. It relies on buffers flags, |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6412 | * and updates s->res.analysers. It might make sense to explode it into several |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6413 | * other functions. It works like process_request (see indications above). |
| 6414 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6415 | int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px) |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6416 | { |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 6417 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 6418 | struct http_txn *txn = s->txn; |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6419 | struct http_msg *msg = &txn->rsp; |
| 6420 | struct proxy *cur_proxy; |
| 6421 | struct cond_wordlist *wl; |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 6422 | enum rule_result ret = HTTP_RULE_RES_CONT; |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6423 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6424 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | f118d9f | 2014-04-24 18:26:08 +0200 | [diff] [blame] | 6425 | now_ms, __FUNCTION__, |
| 6426 | s, |
| 6427 | rep, |
| 6428 | rep->rex, rep->wex, |
| 6429 | rep->flags, |
| 6430 | rep->buf->i, |
| 6431 | rep->analysers); |
| 6432 | |
| 6433 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */ |
| 6434 | return 0; |
| 6435 | |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 6436 | /* The stats applet needs to adjust the Connection header but we don't |
| 6437 | * apply any filter there. |
| 6438 | */ |
Willy Tarreau | 612adb8 | 2015-03-10 15:25:54 +0100 | [diff] [blame] | 6439 | if (unlikely(objt_applet(s->target) == &http_stats_applet)) { |
| 6440 | rep->analysers &= ~an_bit; |
| 6441 | rep->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 6442 | goto skip_filters; |
Willy Tarreau | 612adb8 | 2015-03-10 15:25:54 +0100 | [diff] [blame] | 6443 | } |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 6444 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6445 | /* |
| 6446 | * We will have to evaluate the filters. |
| 6447 | * As opposed to version 1.2, now they will be evaluated in the |
| 6448 | * filters order and not in the header order. This means that |
| 6449 | * each filter has to be validated among all headers. |
| 6450 | * |
| 6451 | * Filters are tried with ->be first, then with ->fe if it is |
| 6452 | * different from ->be. |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 6453 | * |
| 6454 | * Maybe we are in resume condiion. In this case I choose the |
| 6455 | * "struct proxy" which contains the rule list matching the resume |
| 6456 | * pointer. If none of theses "struct proxy" match, I initialise |
| 6457 | * the process with the first one. |
| 6458 | * |
| 6459 | * In fact, I check only correspondance betwwen the current list |
| 6460 | * pointer and the ->fe rule list. If it doesn't match, I initialize |
| 6461 | * the loop with the ->be. |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6462 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6463 | if (s->current_rule_list == &sess->fe->http_res_rules) |
| 6464 | cur_proxy = sess->fe; |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 6465 | else |
| 6466 | cur_proxy = s->be; |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6467 | while (1) { |
| 6468 | struct proxy *rule_set = cur_proxy; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6469 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6470 | /* evaluate http-response rules */ |
Thierry FOURNIER | 9e2ef99 | 2015-02-25 13:51:19 +0100 | [diff] [blame] | 6471 | if (ret == HTTP_RULE_RES_CONT) |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 6472 | ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 6473 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 6474 | /* we need to be called again. */ |
| 6475 | if (ret == HTTP_RULE_RES_YIELD) { |
| 6476 | channel_dont_close(rep); |
| 6477 | return 0; |
| 6478 | } |
| 6479 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6480 | /* try headers filters */ |
| 6481 | if (rule_set->rsp_exp != NULL) { |
| 6482 | if (apply_filters_to_response(s, rep, rule_set) < 0) { |
| 6483 | return_bad_resp: |
| 6484 | if (objt_server(s->target)) { |
| 6485 | objt_server(s->target)->counters.failed_resp++; |
| 6486 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_RSP); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 6487 | } |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6488 | s->be->be_counters.failed_resp++; |
| 6489 | return_srv_prx_502: |
| 6490 | rep->analysers = 0; |
| 6491 | txn->status = 502; |
| 6492 | s->logs.t_data = -1; /* was not a valid response */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 6493 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 6494 | channel_truncate(rep); |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 6495 | stream_int_retnclose(&s->si[0], http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6496 | if (!(s->flags & SF_ERR_MASK)) |
| 6497 | s->flags |= SF_ERR_PRXCOND; |
| 6498 | if (!(s->flags & SF_FINST_MASK)) |
| 6499 | s->flags |= SF_FINST_H; |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6500 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6501 | } |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6502 | } |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 6503 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6504 | /* has the response been denied ? */ |
| 6505 | if (txn->flags & TX_SVDENY) { |
| 6506 | if (objt_server(s->target)) |
| 6507 | objt_server(s->target)->counters.failed_secu++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 6508 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6509 | s->be->be_counters.denied_resp++; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6510 | sess->fe->fe_counters.denied_resp++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 6511 | if (sess->listener->counters) |
| 6512 | sess->listener->counters->denied_resp++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6513 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6514 | goto return_srv_prx_502; |
| 6515 | } |
Willy Tarreau | 0bbc3cf | 2006-10-15 14:26:02 +0200 | [diff] [blame] | 6516 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6517 | /* add response headers from the rule sets in the same order */ |
| 6518 | list_for_each_entry(wl, &rule_set->rsp_add, list) { |
Willy Tarreau | ce730de | 2014-09-16 10:40:38 +0200 | [diff] [blame] | 6519 | if (txn->status < 200 && txn->status != 101) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6520 | break; |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6521 | if (wl->cond) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 6522 | int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6523 | ret = acl_pass(ret); |
| 6524 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 6525 | ret = !ret; |
| 6526 | if (!ret) |
| 6527 | continue; |
| 6528 | } |
| 6529 | if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0)) |
| 6530 | goto return_bad_resp; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6531 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6532 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6533 | /* check whether we're already working on the frontend */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6534 | if (cur_proxy == sess->fe) |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6535 | break; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6536 | cur_proxy = sess->fe; |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6537 | } |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 6538 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 6539 | /* After this point, this anayzer can't return yield, so we can |
| 6540 | * remove the bit corresponding to this analyzer from the list. |
| 6541 | * |
| 6542 | * Note that the intermediate returns and goto found previously |
| 6543 | * reset the analyzers. |
| 6544 | */ |
| 6545 | rep->analysers &= ~an_bit; |
| 6546 | rep->analyse_exp = TICK_ETERNITY; |
| 6547 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6548 | /* OK that's all we can do for 1xx responses */ |
Willy Tarreau | ce730de | 2014-09-16 10:40:38 +0200 | [diff] [blame] | 6549 | if (unlikely(txn->status < 200 && txn->status != 101)) |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6550 | goto skip_header_mangling; |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 6551 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6552 | /* |
| 6553 | * Now check for a server cookie. |
| 6554 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6555 | if (s->be->cookie_name || s->be->appsession_name || sess->fe->capture_name || |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6556 | (s->be->options & PR_O_CHK_CACHE)) |
| 6557 | manage_server_side_cookies(s, rep); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6558 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6559 | /* |
| 6560 | * Check for cache-control or pragma headers if required. |
| 6561 | */ |
Willy Tarreau | ce730de | 2014-09-16 10:40:38 +0200 | [diff] [blame] | 6562 | if (((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)) && txn->status != 101) |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6563 | check_response_for_cacheability(s, rep); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6564 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6565 | /* |
| 6566 | * Add server cookie in the response if needed |
| 6567 | */ |
| 6568 | if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) && |
| 6569 | !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) && |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6570 | (!(s->flags & SF_DIRECT) || |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6571 | ((s->be->cookie_maxidle || txn->cookie_last_date) && |
| 6572 | (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) || |
| 6573 | (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date |
| 6574 | (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date |
| 6575 | (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) && |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6576 | !(s->flags & SF_IGNORE_PRST)) { |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6577 | /* the server is known, it's not the one the client requested, or the |
| 6578 | * cookie's last seen date needs to be refreshed. We have to |
| 6579 | * insert a set-cookie here, except if we want to insert only on POST |
| 6580 | * requests and this one isn't. Note that servers which don't have cookies |
| 6581 | * (eg: some backup servers) will return a full cookie removal request. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6582 | */ |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6583 | if (!objt_server(s->target)->cookie) { |
| 6584 | chunk_printf(&trash, |
| 6585 | "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/", |
| 6586 | s->be->cookie_name); |
| 6587 | } |
| 6588 | else { |
| 6589 | chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6590 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6591 | if (s->be->cookie_maxidle || s->be->cookie_maxlife) { |
| 6592 | /* emit last_date, which is mandatory */ |
| 6593 | trash.str[trash.len++] = COOKIE_DELIM_DATE; |
| 6594 | s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len); |
| 6595 | trash.len += 5; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6596 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6597 | if (s->be->cookie_maxlife) { |
| 6598 | /* emit first_date, which is either the original one or |
| 6599 | * the current date. |
| 6600 | */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6601 | trash.str[trash.len++] = COOKIE_DELIM_DATE; |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6602 | s30tob64(txn->cookie_first_date ? |
| 6603 | txn->cookie_first_date >> 2 : |
| 6604 | (date.tv_sec+3) >> 2, trash.str + trash.len); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6605 | trash.len += 5; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6606 | } |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6607 | } |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6608 | chunk_appendf(&trash, "; path=/"); |
| 6609 | } |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 6610 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6611 | if (s->be->cookie_domain) |
| 6612 | chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain); |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6613 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6614 | if (s->be->ck_opts & PR_CK_HTTPONLY) |
| 6615 | chunk_appendf(&trash, "; HttpOnly"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6616 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6617 | if (s->be->ck_opts & PR_CK_SECURE) |
| 6618 | chunk_appendf(&trash, "; Secure"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6619 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6620 | if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0)) |
| 6621 | goto return_bad_resp; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6622 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6623 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6624 | if (objt_server(s->target)->cookie && (s->flags & SF_DIRECT)) |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6625 | /* the server did not change, only the date was updated */ |
| 6626 | txn->flags |= TX_SCK_UPDATED; |
| 6627 | else |
| 6628 | txn->flags |= TX_SCK_INSERTED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6629 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6630 | /* Here, we will tell an eventual cache on the client side that we don't |
| 6631 | * want it to cache this reply because HTTP/1.0 caches also cache cookies ! |
| 6632 | * Some caches understand the correct form: 'no-cache="set-cookie"', but |
| 6633 | * others don't (eg: apache <= 1.3.26). So we use 'private' instead. |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6634 | */ |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6635 | if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6636 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6637 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 6638 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6639 | if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, |
| 6640 | "Cache-control: private", 22) < 0)) |
| 6641 | goto return_bad_resp; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6642 | } |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6643 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6644 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6645 | /* |
| 6646 | * Check if result will be cacheable with a cookie. |
| 6647 | * We'll block the response if security checks have caught |
| 6648 | * nasty things such as a cacheable cookie. |
| 6649 | */ |
| 6650 | if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) == |
| 6651 | (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) && |
| 6652 | (s->be->options & PR_O_CHK_CACHE)) { |
| 6653 | /* we're in presence of a cacheable response containing |
| 6654 | * a set-cookie header. We'll block it as requested by |
| 6655 | * the 'checkcache' option, and send an alert. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6656 | */ |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6657 | if (objt_server(s->target)) |
| 6658 | objt_server(s->target)->counters.failed_secu++; |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6659 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6660 | s->be->be_counters.denied_resp++; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6661 | sess->fe->fe_counters.denied_resp++; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 6662 | if (sess->listener->counters) |
| 6663 | sess->listener->counters->denied_resp++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6664 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6665 | Alert("Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 6666 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
| 6667 | send_log(s->be, LOG_ALERT, |
| 6668 | "Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 6669 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
| 6670 | goto return_srv_prx_502; |
| 6671 | } |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 6672 | |
Willy Tarreau | 70730dd | 2014-04-24 18:06:27 +0200 | [diff] [blame] | 6673 | skip_filters: |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6674 | /* |
| 6675 | * Adjust "Connection: close" or "Connection: keep-alive" if needed. |
| 6676 | * If an "Upgrade" token is found, the header is left untouched in order |
| 6677 | * not to have to deal with some client bugs : some of them fail an upgrade |
Willy Tarreau | ce730de | 2014-09-16 10:40:38 +0200 | [diff] [blame] | 6678 | * if anything but "Upgrade" is present in the Connection header. We don't |
| 6679 | * want to touch any 101 response either since it's switching to another |
| 6680 | * protocol. |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6681 | */ |
Willy Tarreau | ce730de | 2014-09-16 10:40:38 +0200 | [diff] [blame] | 6682 | if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) && |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6683 | (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6684 | ((sess->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6685 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
| 6686 | unsigned int want_flags = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6687 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6688 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6689 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 6690 | /* we want a keep-alive response here. Keep-alive header |
| 6691 | * required if either side is not 1.1. |
| 6692 | */ |
| 6693 | if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11)) |
| 6694 | want_flags |= TX_CON_KAL_SET; |
| 6695 | } |
| 6696 | else { |
| 6697 | /* we want a close response here. Close header required if |
| 6698 | * the server is 1.1, regardless of the client. |
| 6699 | */ |
| 6700 | if (msg->flags & HTTP_MSGF_VER_11) |
| 6701 | want_flags |= TX_CON_CLO_SET; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6702 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6703 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6704 | if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 6705 | http_change_connection_header(txn, msg, want_flags); |
| 6706 | } |
| 6707 | |
| 6708 | skip_header_mangling: |
| 6709 | if ((msg->flags & HTTP_MSGF_XFER_LEN) || |
| 6710 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) |
| 6711 | rep->analysers |= AN_RES_HTTP_XFER_BODY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6712 | |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6713 | /* if the user wants to log as soon as possible, without counting |
| 6714 | * bytes from the server, then this is the right moment. We have |
| 6715 | * to temporarily assign bytes_out to log what we currently have. |
| 6716 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6717 | if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) { |
Willy Tarreau | 5897567 | 2014-04-24 21:13:57 +0200 | [diff] [blame] | 6718 | s->logs.t_close = s->logs.t_data; /* to get a valid end date */ |
| 6719 | s->logs.bytes_out = txn->rsp.eoh; |
| 6720 | s->do_log(s); |
| 6721 | s->logs.bytes_out = 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6722 | } |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 6723 | return 1; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6724 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6725 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6726 | /* This function is an analyser which forwards response body (including chunk |
| 6727 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 6728 | * zero byte. The only situation where it must not be called is when we're in |
| 6729 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 6730 | * remaining data and to resync after end of body. It expects the msg_state to |
| 6731 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6732 | * read more data, or 1 once we can go on with next request or end the stream. |
Willy Tarreau | d351021 | 2014-04-21 11:24:13 +0200 | [diff] [blame] | 6733 | * |
| 6734 | * It is capable of compressing response data both in content-length mode and |
| 6735 | * in chunked mode. The state machines follows different flows depending on |
| 6736 | * whether content-length and chunked modes are used, since there are no |
| 6737 | * trailers in content-length : |
| 6738 | * |
| 6739 | * chk-mode cl-mode |
| 6740 | * ,----- BODY -----. |
| 6741 | * / \ |
| 6742 | * V size > 0 V chk-mode |
| 6743 | * .--> SIZE -------------> DATA -------------> CRLF |
| 6744 | * | | size == 0 | last byte | |
| 6745 | * | v final crlf v inspected | |
| 6746 | * | TRAILERS -----------> DONE | |
| 6747 | * | | |
| 6748 | * `----------------------------------------------' |
| 6749 | * |
| 6750 | * Compression only happens in the DATA state, and must be flushed in final |
| 6751 | * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding |
| 6752 | * is performed at once on final states for all bytes parsed, or when leaving |
| 6753 | * on missing data. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6754 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6755 | int http_response_forward_body(struct stream *s, struct channel *res, int an_bit) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6756 | { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6757 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 6758 | struct http_txn *txn = s->txn; |
| 6759 | struct http_msg *msg = &s->txn->rsp; |
Willy Tarreau | f2f7d6b | 2014-11-24 11:55:08 +0100 | [diff] [blame] | 6760 | static struct buffer *tmpbuf = &buf_empty; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6761 | int compressing = 0; |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6762 | int ret; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6763 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 6764 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 6765 | return 0; |
| 6766 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6767 | if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6768 | ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) || |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6769 | !s->req.analysers) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6770 | /* Output closed while we were sending data. We must abort and |
| 6771 | * wake the other side up. |
| 6772 | */ |
| 6773 | msg->msg_state = HTTP_MSG_ERROR; |
| 6774 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 6775 | return 1; |
| 6776 | } |
| 6777 | |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6778 | /* in most states, we should abort in case of early close */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6779 | channel_auto_close(res); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 6780 | |
Willy Tarreau | bb2e669 | 2014-07-10 19:06:10 +0200 | [diff] [blame] | 6781 | if (msg->sov > 0) { |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 6782 | /* we have msg->sov which points to the first byte of message |
| 6783 | * body, and res->buf.p still points to the beginning of the |
| 6784 | * message. We forward the headers now, as we don't need them |
| 6785 | * anymore, and we want to flush them. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6786 | */ |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 6787 | b_adv(res->buf, msg->sov); |
| 6788 | msg->next -= msg->sov; |
| 6789 | msg->sov = 0; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 6790 | |
Willy Tarreau | b59c7bf | 2014-04-22 14:29:58 +0200 | [diff] [blame] | 6791 | /* The previous analysers guarantee that the state is somewhere |
| 6792 | * between MSG_BODY and the first MSG_DATA. So msg->sol and |
| 6793 | * msg->next are always correct. |
| 6794 | */ |
| 6795 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
| 6796 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
| 6797 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 6798 | else |
| 6799 | msg->msg_state = HTTP_MSG_DATA; |
| 6800 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6801 | } |
| 6802 | |
Willy Tarreau | efdf094 | 2014-04-24 20:08:57 +0200 | [diff] [blame] | 6803 | if (res->to_forward) { |
| 6804 | /* We can't process the buffer's contents yet */ |
| 6805 | res->flags |= CF_WAKE_WRITE; |
| 6806 | goto missing_data; |
| 6807 | } |
| 6808 | |
Willy Tarreau | 32b5ab2 | 2014-04-21 11:27:29 +0200 | [diff] [blame] | 6809 | if (unlikely(s->comp_algo != NULL) && msg->msg_state < HTTP_MSG_TRAILERS) { |
| 6810 | /* We need a compression buffer in the DATA state to put the |
| 6811 | * output of compressed data, and in CRLF state to let the |
| 6812 | * TRAILERS state finish the job of removing the trailing CRLF. |
| 6813 | */ |
Willy Tarreau | f2f7d6b | 2014-11-24 11:55:08 +0100 | [diff] [blame] | 6814 | if (unlikely(!tmpbuf->size)) { |
Willy Tarreau | 32b5ab2 | 2014-04-21 11:27:29 +0200 | [diff] [blame] | 6815 | /* this is the first time we need the compression buffer */ |
Willy Tarreau | e583ea5 | 2014-11-24 11:30:16 +0100 | [diff] [blame] | 6816 | if (b_alloc(&tmpbuf) == NULL) |
Willy Tarreau | 32b5ab2 | 2014-04-21 11:27:29 +0200 | [diff] [blame] | 6817 | goto aborted_xfer; /* no memory */ |
| 6818 | } |
| 6819 | |
| 6820 | ret = http_compression_buffer_init(s, res->buf, tmpbuf); |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6821 | if (ret < 0) { |
| 6822 | res->flags |= CF_WAKE_WRITE; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6823 | goto missing_data; /* not enough spaces in buffers */ |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6824 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6825 | compressing = 1; |
| 6826 | } |
| 6827 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6828 | while (1) { |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6829 | switch (msg->msg_state - HTTP_MSG_DATA) { |
| 6830 | case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */ |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6831 | /* we may have some pending data starting at res->buf->p */ |
| 6832 | if (unlikely(s->comp_algo)) { |
Willy Tarreau | 7f2f8d5 | 2014-04-18 00:20:14 +0200 | [diff] [blame] | 6833 | ret = http_compression_buffer_add_data(s, res->buf, tmpbuf); |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6834 | if (ret < 0) |
| 6835 | goto aborted_xfer; |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6836 | |
Willy Tarreau | d5a6783 | 2014-04-21 10:54:27 +0200 | [diff] [blame] | 6837 | if (msg->chunk_len) { |
| 6838 | /* input empty or output full */ |
| 6839 | if (res->buf->i > msg->next) |
| 6840 | res->flags |= CF_WAKE_WRITE; |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6841 | goto missing_data; |
| 6842 | } |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6843 | } |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6844 | else { |
Willy Tarreau | d5a6783 | 2014-04-21 10:54:27 +0200 | [diff] [blame] | 6845 | if (msg->chunk_len > res->buf->i - msg->next) { |
| 6846 | /* output full */ |
| 6847 | res->flags |= CF_WAKE_WRITE; |
| 6848 | goto missing_data; |
| 6849 | } |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6850 | msg->next += msg->chunk_len; |
| 6851 | msg->chunk_len = 0; |
| 6852 | } |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 6853 | |
| 6854 | /* nothing left to forward */ |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6855 | if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 6856 | msg->msg_state = HTTP_MSG_CHUNK_CRLF; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6857 | } else { |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 6858 | msg->msg_state = HTTP_MSG_DONE; |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6859 | break; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6860 | } |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6861 | /* fall through for HTTP_MSG_CHUNK_CRLF */ |
| 6862 | |
| 6863 | case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA: |
| 6864 | /* we want the CRLF after the data */ |
| 6865 | |
| 6866 | ret = http_skip_chunk_crlf(msg); |
| 6867 | if (ret == 0) |
| 6868 | goto missing_data; |
| 6869 | else if (ret < 0) { |
| 6870 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6871 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, sess->fe); |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6872 | goto return_bad_res; |
| 6873 | } |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6874 | /* we're in MSG_CHUNK_SIZE now, fall through */ |
| 6875 | |
| 6876 | case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA: |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 6877 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | c24715e | 2014-04-17 15:21:20 +0200 | [diff] [blame] | 6878 | * set ->next to point to the body and switch to DATA or |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 6879 | * TRAILERS state. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6880 | */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6881 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6882 | ret = http_parse_chunk_size(msg); |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 6883 | if (ret == 0) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6884 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6885 | else if (ret < 0) { |
| 6886 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6887 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, sess->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6888 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6889 | } |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 6890 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6891 | break; |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6892 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6893 | case HTTP_MSG_TRAILERS - HTTP_MSG_DATA: |
Willy Tarreau | 168ebc5 | 2014-04-18 00:53:43 +0200 | [diff] [blame] | 6894 | if (unlikely(compressing)) { |
| 6895 | /* we need to flush output contents before syncing FSMs */ |
| 6896 | http_compression_buffer_end(s, &res->buf, &tmpbuf, 1); |
| 6897 | compressing = 0; |
| 6898 | } |
| 6899 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6900 | ret = http_forward_trailers(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6901 | if (ret == 0) |
| 6902 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6903 | else if (ret < 0) { |
| 6904 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6905 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, sess->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6906 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6907 | } |
Willy Tarreau | 168ebc5 | 2014-04-18 00:53:43 +0200 | [diff] [blame] | 6908 | /* we're in HTTP_MSG_DONE now, fall through */ |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6909 | |
| 6910 | default: |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6911 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | 168ebc5 | 2014-04-18 00:53:43 +0200 | [diff] [blame] | 6912 | if (unlikely(compressing)) { |
| 6913 | /* we need to flush output contents before syncing FSMs */ |
| 6914 | http_compression_buffer_end(s, &res->buf, &tmpbuf, 1); |
| 6915 | compressing = 0; |
| 6916 | } |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6917 | |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6918 | /* we may have some pending data starting at res->buf->p |
| 6919 | * such as a last chunk of data or trailers. |
| 6920 | */ |
| 6921 | b_adv(res->buf, msg->next); |
| 6922 | msg->next = 0; |
| 6923 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6924 | ret = msg->msg_state; |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6925 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6926 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6927 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6928 | channel_dont_close(res); |
Willy Tarreau | 3ce10ff | 2014-04-22 08:24:38 +0200 | [diff] [blame] | 6929 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6930 | if (http_resync_states(s)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6931 | /* some state changes occurred, maybe the analyser |
| 6932 | * was disabled too. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6933 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6934 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6935 | if (res->flags & CF_SHUTW) { |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6936 | /* response errors are most likely due to |
| 6937 | * the client aborting the transfer. |
| 6938 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6939 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6940 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6941 | if (msg->err_pos >= 0) |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 6942 | http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, sess->fe); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6943 | goto return_bad_res; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6944 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6945 | return 1; |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6946 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6947 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6948 | } |
| 6949 | } |
| 6950 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6951 | missing_data: |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6952 | /* we may have some pending data starting at res->buf->p */ |
Willy Tarreau | 168ebc5 | 2014-04-18 00:53:43 +0200 | [diff] [blame] | 6953 | if (unlikely(compressing)) { |
| 6954 | http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS); |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6955 | compressing = 0; |
| 6956 | } |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6957 | |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 6958 | if ((s->comp_algo == NULL || msg->msg_state >= HTTP_MSG_TRAILERS)) { |
| 6959 | b_adv(res->buf, msg->next); |
| 6960 | msg->next = 0; |
| 6961 | msg->chunk_len -= channel_forward(res, msg->chunk_len); |
| 6962 | } |
| 6963 | |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6964 | if (res->flags & CF_SHUTW) |
| 6965 | goto aborted_xfer; |
| 6966 | |
| 6967 | /* stop waiting for data if the input is closed before the end. If the |
| 6968 | * client side was already closed, it means that the client has aborted, |
| 6969 | * so we don't want to count this as a server abort. Otherwise it's a |
| 6970 | * server abort. |
| 6971 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6972 | if (res->flags & CF_SHUTR) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6973 | if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW)) |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6974 | goto aborted_xfer; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 6975 | if (!(s->flags & SF_ERR_MASK)) |
| 6976 | s->flags |= SF_ERR_SRVCL; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6977 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6978 | if (objt_server(s->target)) |
| 6979 | objt_server(s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6980 | goto return_bad_res_stats_ok; |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6981 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 6982 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6983 | /* we need to obey the req analyser, so if it leaves, we must too */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6984 | if (!s->req.analysers) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6985 | goto return_bad_res; |
| 6986 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6987 | /* When TE: chunked is used, we need to get there again to parse remaining |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6988 | * chunks even if the server has closed, so we don't want to set CF_DONTCLOSE. |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6989 | * Similarly, with keep-alive on the client side, we don't want to forward a |
| 6990 | * close. |
| 6991 | */ |
Willy Tarreau | 08b4d79 | 2012-10-27 01:36:34 +0200 | [diff] [blame] | 6992 | if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo || |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6993 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6994 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6995 | channel_dont_close(res); |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6996 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 6997 | /* We know that more data are expected, but we couldn't send more that |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6998 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
Willy Tarreau | 0729303 | 2011-05-30 18:29:28 +0200 | [diff] [blame] | 6999 | * system knows it must not set a PUSH on this first part. Interactive |
Willy Tarreau | 869fc1e | 2012-03-05 08:29:20 +0100 | [diff] [blame] | 7000 | * modes are already handled by the stream sock layer. We must not do |
| 7001 | * this in content-length mode because it could present the MSG_MORE |
| 7002 | * flag with the last block of forwarded data, which would cause an |
| 7003 | * additional delay to be observed by the receiver. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 7004 | */ |
Willy Tarreau | 08b4d79 | 2012-10-27 01:36:34 +0200 | [diff] [blame] | 7005 | if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 7006 | res->flags |= CF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 7007 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7008 | /* the stream handler will take care of timeouts and errors */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 7009 | return 0; |
| 7010 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 7011 | return_bad_res: /* let's centralize all bad responses */ |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 7012 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7013 | if (objt_server(s->target)) |
| 7014 | objt_server(s->target)->counters.failed_resp++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7015 | |
| 7016 | return_bad_res_stats_ok: |
Willy Tarreau | d01f426 | 2014-04-21 11:00:13 +0200 | [diff] [blame] | 7017 | if (unlikely(compressing)) { |
Willy Tarreau | 168ebc5 | 2014-04-18 00:53:43 +0200 | [diff] [blame] | 7018 | http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS); |
Willy Tarreau | d01f426 | 2014-04-21 11:00:13 +0200 | [diff] [blame] | 7019 | compressing = 0; |
| 7020 | } |
| 7021 | |
Willy Tarreau | c623c17 | 2014-04-18 09:53:50 +0200 | [diff] [blame] | 7022 | /* we may have some pending data starting at res->buf->p */ |
| 7023 | if (s->comp_algo == NULL) { |
| 7024 | b_adv(res->buf, msg->next); |
| 7025 | msg->next = 0; |
| 7026 | } |
| 7027 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 7028 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 7029 | /* don't send any error message as we're in the body */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 7030 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 7031 | res->analysers = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7032 | s->req.analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7033 | if (objt_server(s->target)) |
| 7034 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 7035 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7036 | if (!(s->flags & SF_ERR_MASK)) |
| 7037 | s->flags |= SF_ERR_PRXCOND; |
| 7038 | if (!(s->flags & SF_FINST_MASK)) |
| 7039 | s->flags |= SF_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7040 | return 0; |
| 7041 | |
| 7042 | aborted_xfer: |
Willy Tarreau | 6fef8ae | 2014-04-22 21:22:06 +0200 | [diff] [blame] | 7043 | if (unlikely(compressing)) { |
| 7044 | http_compression_buffer_end(s, &res->buf, &tmpbuf, msg->msg_state >= HTTP_MSG_TRAILERS); |
| 7045 | compressing = 0; |
| 7046 | } |
| 7047 | |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7048 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
| 7049 | /* don't send any error message as we're in the body */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 7050 | stream_int_retnclose(&s->si[0], NULL); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7051 | res->analysers = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7052 | s->req.analysers = 0; /* we're in data phase, we want to abort both directions */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7053 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 7054 | sess->fe->fe_counters.cli_aborts++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 7055 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7056 | if (objt_server(s->target)) |
| 7057 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 7058 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7059 | if (!(s->flags & SF_ERR_MASK)) |
| 7060 | s->flags |= SF_ERR_CLICL; |
| 7061 | if (!(s->flags & SF_FINST_MASK)) |
| 7062 | s->flags |= SF_FINST_D; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 7063 | return 0; |
| 7064 | } |
| 7065 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7066 | /* Iterate the same filter through all request headers. |
| 7067 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7068 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 7069 | * DENY stats. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7070 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7071 | int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7072 | { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7073 | char *cur_ptr, *cur_end, *cur_next; |
| 7074 | int cur_idx, old_idx, last_hdr; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7075 | struct http_txn *txn = s->txn; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7076 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7077 | int delta; |
Willy Tarreau | 0f7562b | 2007-01-07 15:46:13 +0100 | [diff] [blame] | 7078 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7079 | last_hdr = 0; |
| 7080 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7081 | cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7082 | old_idx = 0; |
| 7083 | |
| 7084 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7085 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7086 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7087 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7088 | (exp->action == ACT_ALLOW || |
| 7089 | exp->action == ACT_DENY || |
| 7090 | exp->action == ACT_TARPIT)) |
| 7091 | return 0; |
| 7092 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7093 | cur_idx = txn->hdr_idx.v[old_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7094 | if (!cur_idx) |
| 7095 | break; |
| 7096 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7097 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7098 | cur_ptr = cur_next; |
| 7099 | cur_end = cur_ptr + cur_hdr->len; |
| 7100 | cur_next = cur_end + cur_hdr->cr + 1; |
| 7101 | |
| 7102 | /* Now we have one header between cur_ptr and cur_end, |
| 7103 | * and the next header starts at cur_next. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7104 | */ |
| 7105 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 7106 | if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7107 | switch (exp->action) { |
| 7108 | case ACT_SETBE: |
| 7109 | /* It is not possible to jump a second time. |
| 7110 | * FIXME: should we return an HTTP/500 here so that |
| 7111 | * the admin knows there's a problem ? |
| 7112 | */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 7113 | if (s->be != strm_fe(s)) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7114 | break; |
| 7115 | |
| 7116 | /* Swithing Proxy */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7117 | stream_set_backend(s, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7118 | last_hdr = 1; |
| 7119 | break; |
| 7120 | |
| 7121 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7122 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7123 | last_hdr = 1; |
| 7124 | break; |
| 7125 | |
| 7126 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7127 | txn->flags |= TX_CLDENY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7128 | last_hdr = 1; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7129 | break; |
| 7130 | |
| 7131 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7132 | txn->flags |= TX_CLTARPIT; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7133 | last_hdr = 1; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7134 | break; |
| 7135 | |
| 7136 | case ACT_REPLACE: |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 7137 | trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch); |
| 7138 | if (trash.len < 0) |
| 7139 | return -1; |
| 7140 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7141 | delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7142 | /* FIXME: if the user adds a newline in the replacement, the |
| 7143 | * index will not be recalculated for now, and the new line |
| 7144 | * will not be counted as a new header. |
| 7145 | */ |
| 7146 | |
| 7147 | cur_end += delta; |
| 7148 | cur_next += delta; |
| 7149 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7150 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7151 | break; |
| 7152 | |
| 7153 | case ACT_REMOVE: |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7154 | delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7155 | cur_next += delta; |
| 7156 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7157 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7158 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7159 | txn->hdr_idx.used--; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7160 | cur_hdr->len = 0; |
| 7161 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7162 | cur_idx = old_idx; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7163 | break; |
| 7164 | |
| 7165 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7166 | } |
| 7167 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7168 | /* keep the link from this header to next one in case of later |
| 7169 | * removal of next header. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7170 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7171 | old_idx = cur_idx; |
| 7172 | } |
| 7173 | return 0; |
| 7174 | } |
| 7175 | |
| 7176 | |
| 7177 | /* Apply the filter to the request line. |
| 7178 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 7179 | * or -1 if a replacement resulted in an invalid request line. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7180 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 7181 | * DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7182 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7183 | int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7184 | { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7185 | char *cur_ptr, *cur_end; |
| 7186 | int done; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7187 | struct http_txn *txn = s->txn; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7188 | int delta; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7189 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7190 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7191 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7192 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7193 | (exp->action == ACT_ALLOW || |
| 7194 | exp->action == ACT_DENY || |
| 7195 | exp->action == ACT_TARPIT)) |
| 7196 | return 0; |
| 7197 | else if (exp->action == ACT_REMOVE) |
| 7198 | return 0; |
| 7199 | |
| 7200 | done = 0; |
| 7201 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7202 | cur_ptr = req->buf->p; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7203 | cur_end = cur_ptr + txn->req.sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7204 | |
| 7205 | /* Now we have the request line between cur_ptr and cur_end */ |
| 7206 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 7207 | if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7208 | switch (exp->action) { |
| 7209 | case ACT_SETBE: |
| 7210 | /* It is not possible to jump a second time. |
| 7211 | * FIXME: should we return an HTTP/500 here so that |
| 7212 | * the admin knows there's a problem ? |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7213 | */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 7214 | if (s->be != strm_fe(s)) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7215 | break; |
| 7216 | |
| 7217 | /* Swithing Proxy */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7218 | stream_set_backend(s, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7219 | done = 1; |
| 7220 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7221 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7222 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7223 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7224 | done = 1; |
| 7225 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 7226 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7227 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7228 | txn->flags |= TX_CLDENY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7229 | done = 1; |
| 7230 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 7231 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7232 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7233 | txn->flags |= TX_CLTARPIT; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7234 | done = 1; |
| 7235 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 7236 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7237 | case ACT_REPLACE: |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 7238 | trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch); |
| 7239 | if (trash.len < 0) |
| 7240 | return -1; |
| 7241 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7242 | delta = buffer_replace2(req->buf, cur_ptr, cur_end, trash.str, trash.len); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7243 | /* FIXME: if the user adds a newline in the replacement, the |
| 7244 | * index will not be recalculated for now, and the new line |
| 7245 | * will not be counted as a new header. |
| 7246 | */ |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 7247 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7248 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7249 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 7250 | cur_end = (char *)http_parse_reqline(&txn->req, |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7251 | HTTP_MSG_RQMETH, |
| 7252 | cur_ptr, cur_end + 1, |
| 7253 | NULL, NULL); |
| 7254 | if (unlikely(!cur_end)) |
| 7255 | return -1; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 7256 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7257 | /* we have a full request and we know that we have either a CR |
| 7258 | * or an LF at <ptr>. |
| 7259 | */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7260 | txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l); |
| 7261 | hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r'); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7262 | /* there is no point trying this regex on headers */ |
| 7263 | return 1; |
| 7264 | } |
| 7265 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7266 | return done; |
| 7267 | } |
Willy Tarreau | 97de624 | 2006-12-27 17:18:38 +0100 | [diff] [blame] | 7268 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7269 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7270 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7271 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7272 | * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7273 | * Returns 0 if everything is alright, or -1 in case a replacement lead to an |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7274 | * unparsable request. Since it can manage the switch to another backend, it |
| 7275 | * updates the per-proxy DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7276 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7277 | int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7278 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 7279 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7280 | struct http_txn *txn = s->txn; |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7281 | struct hdr_exp *exp; |
| 7282 | |
| 7283 | for (exp = px->req_exp; exp; exp = exp->next) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7284 | int ret; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7285 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7286 | /* |
| 7287 | * The interleaving of transformations and verdicts |
| 7288 | * makes it difficult to decide to continue or stop |
| 7289 | * the evaluation. |
| 7290 | */ |
| 7291 | |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7292 | if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) |
| 7293 | break; |
| 7294 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7295 | if ((txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7296 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7297 | exp->action == ACT_TARPIT || exp->action == ACT_PASS)) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7298 | continue; |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7299 | |
| 7300 | /* if this filter had a condition, evaluate it now and skip to |
| 7301 | * next filter if the condition does not match. |
| 7302 | */ |
| 7303 | if (exp->cond) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 7304 | ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7305 | ret = acl_pass(ret); |
| 7306 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 7307 | ret = !ret; |
| 7308 | |
| 7309 | if (!ret) |
| 7310 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7311 | } |
| 7312 | |
| 7313 | /* Apply the filter to the request line. */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 7314 | ret = apply_filter_to_req_line(s, req, exp); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7315 | if (unlikely(ret < 0)) |
| 7316 | return -1; |
| 7317 | |
| 7318 | if (likely(ret == 0)) { |
| 7319 | /* The filter did not match the request, it can be |
| 7320 | * iterated through all headers. |
| 7321 | */ |
Willy Tarreau | 34d4c3c | 2015-01-30 20:58:58 +0100 | [diff] [blame] | 7322 | if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0)) |
| 7323 | return -1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7324 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7325 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7326 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7327 | } |
| 7328 | |
| 7329 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7330 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7331 | /* |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7332 | * Try to retrieve the server associated to the appsession. |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7333 | * If the server is found, it's assigned to the stream. |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7334 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7335 | void manage_client_side_appsession(struct stream *s, const char *buf, int len) { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7336 | struct http_txn *txn = s->txn; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7337 | appsess *asession = NULL; |
| 7338 | char *sessid_temp = NULL; |
| 7339 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7340 | if (len > s->be->appsession_len) { |
| 7341 | len = s->be->appsession_len; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7342 | } |
| 7343 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7344 | if (s->be->options2 & PR_O2_AS_REQL) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7345 | /* request-learn option is enabled : store the sessid in the stream for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7346 | if (txn->sessid != NULL) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7347 | /* free previously allocated memory as we don't need the stream id found in the URL anymore */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7348 | pool_free2(apools.sessid, txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7349 | } |
| 7350 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7351 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7352 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7353 | send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7354 | return; |
| 7355 | } |
| 7356 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7357 | memcpy(txn->sessid, buf, len); |
| 7358 | txn->sessid[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7359 | } |
| 7360 | |
| 7361 | if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) { |
| 7362 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7363 | send_log(s->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7364 | return; |
| 7365 | } |
| 7366 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7367 | memcpy(sessid_temp, buf, len); |
| 7368 | sessid_temp[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7369 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7370 | asession = appsession_hash_lookup(&(s->be->htbl_proxy), sessid_temp); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7371 | /* free previously allocated memory */ |
| 7372 | pool_free2(apools.sessid, sessid_temp); |
| 7373 | |
| 7374 | if (asession != NULL) { |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7375 | asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession); |
| 7376 | if (!(s->be->options2 & PR_O2_AS_REQL)) |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7377 | asession->request_count++; |
| 7378 | |
| 7379 | if (asession->serverid != NULL) { |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7380 | struct server *srv = s->be->srv; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 7381 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7382 | while (srv) { |
| 7383 | if (strcmp(srv->id, asession->serverid) == 0) { |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 7384 | if ((srv->state != SRV_ST_STOPPED) || |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7385 | (s->be->options & PR_O_PERSIST) || |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7386 | (s->flags & SF_FORCE_PRST)) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7387 | /* we found the server and it's usable */ |
| 7388 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 7389 | txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7390 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7391 | s->target = &srv->obj_type; |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 7392 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7393 | break; |
| 7394 | } else { |
| 7395 | txn->flags &= ~TX_CK_MASK; |
| 7396 | txn->flags |= TX_CK_DOWN; |
| 7397 | } |
| 7398 | } |
| 7399 | srv = srv->next; |
| 7400 | } |
| 7401 | } |
| 7402 | } |
| 7403 | } |
| 7404 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7405 | /* Find the end of a cookie value contained between <s> and <e>. It works the |
| 7406 | * same way as with headers above except that the semi-colon also ends a token. |
| 7407 | * See RFC2965 for more information. Note that it requires a valid header to |
| 7408 | * return a valid result. |
| 7409 | */ |
| 7410 | char *find_cookie_value_end(char *s, const char *e) |
| 7411 | { |
| 7412 | int quoted, qdpair; |
| 7413 | |
| 7414 | quoted = qdpair = 0; |
| 7415 | for (; s < e; s++) { |
| 7416 | if (qdpair) qdpair = 0; |
| 7417 | else if (quoted) { |
| 7418 | if (*s == '\\') qdpair = 1; |
| 7419 | else if (*s == '"') quoted = 0; |
| 7420 | } |
| 7421 | else if (*s == '"') quoted = 1; |
| 7422 | else if (*s == ',' || *s == ';') return s; |
| 7423 | } |
| 7424 | return s; |
| 7425 | } |
| 7426 | |
| 7427 | /* Delete a value in a header between delimiters <from> and <next> in buffer |
| 7428 | * <buf>. The number of characters displaced is returned, and the pointer to |
| 7429 | * the first delimiter is updated if required. The function tries as much as |
| 7430 | * possible to respect the following principles : |
| 7431 | * - replace <from> delimiter by the <next> one unless <from> points to a |
| 7432 | * colon, in which case <next> is simply removed |
| 7433 | * - set exactly one space character after the new first delimiter, unless |
| 7434 | * there are not enough characters in the block being moved to do so. |
| 7435 | * - remove unneeded spaces before the previous delimiter and after the new |
| 7436 | * one. |
| 7437 | * |
| 7438 | * It is the caller's responsibility to ensure that : |
| 7439 | * - <from> points to a valid delimiter or the colon ; |
| 7440 | * - <next> points to a valid delimiter or the final CR/LF ; |
| 7441 | * - there are non-space chars before <from> ; |
| 7442 | * - there is a CR/LF at or after <next>. |
| 7443 | */ |
Willy Tarreau | af81935 | 2012-08-27 22:08:00 +0200 | [diff] [blame] | 7444 | int del_hdr_value(struct buffer *buf, char **from, char *next) |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7445 | { |
| 7446 | char *prev = *from; |
| 7447 | |
| 7448 | if (*prev == ':') { |
| 7449 | /* We're removing the first value, preserve the colon and add a |
| 7450 | * space if possible. |
| 7451 | */ |
| 7452 | if (!http_is_crlf[(unsigned char)*next]) |
| 7453 | next++; |
| 7454 | prev++; |
| 7455 | if (prev < next) |
| 7456 | *prev++ = ' '; |
| 7457 | |
| 7458 | while (http_is_spht[(unsigned char)*next]) |
| 7459 | next++; |
| 7460 | } else { |
| 7461 | /* Remove useless spaces before the old delimiter. */ |
| 7462 | while (http_is_spht[(unsigned char)*(prev-1)]) |
| 7463 | prev--; |
| 7464 | *from = prev; |
| 7465 | |
| 7466 | /* copy the delimiter and if possible a space if we're |
| 7467 | * not at the end of the line. |
| 7468 | */ |
| 7469 | if (!http_is_crlf[(unsigned char)*next]) { |
| 7470 | *prev++ = *next++; |
| 7471 | if (prev + 1 < next) |
| 7472 | *prev++ = ' '; |
| 7473 | while (http_is_spht[(unsigned char)*next]) |
| 7474 | next++; |
| 7475 | } |
| 7476 | } |
| 7477 | return buffer_replace2(buf, prev, next, NULL, 0); |
| 7478 | } |
| 7479 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7480 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 7481 | * Manage client-side cookie. It can impact performance by about 2% so it is |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7482 | * desirable to call it only when needed. This code is quite complex because |
| 7483 | * of the multiple very crappy and ambiguous syntaxes we have to support. it |
| 7484 | * highly recommended not to touch this part without a good reason ! |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7485 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7486 | void manage_client_side_cookies(struct stream *s, struct channel *req) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7487 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7488 | struct http_txn *txn = s->txn; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 7489 | struct session *sess = s->sess; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7490 | int preserve_hdr; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 7491 | int cur_idx, old_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7492 | char *hdr_beg, *hdr_end, *hdr_next, *del_from; |
| 7493 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7494 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7495 | /* Iterate through the headers, we start with the start line. */ |
Willy Tarreau | 83969f4 | 2007-01-22 08:55:47 +0100 | [diff] [blame] | 7496 | old_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7497 | hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7498 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7499 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7500 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7501 | int val; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7502 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7503 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7504 | hdr_beg = hdr_next; |
| 7505 | hdr_end = hdr_beg + cur_hdr->len; |
| 7506 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7507 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7508 | /* We have one full header between hdr_beg and hdr_end, and the |
| 7509 | * next header starts at hdr_next. We're only interested in |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7510 | * "Cookie:" headers. |
| 7511 | */ |
| 7512 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7513 | val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7514 | if (!val) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7515 | old_idx = cur_idx; |
| 7516 | continue; |
| 7517 | } |
| 7518 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7519 | del_from = NULL; /* nothing to be deleted */ |
| 7520 | preserve_hdr = 0; /* assume we may kill the whole header */ |
| 7521 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7522 | /* Now look for cookies. Conforming to RFC2109, we have to support |
| 7523 | * attributes whose name begin with a '$', and associate them with |
| 7524 | * the right cookie, if we want to delete this cookie. |
| 7525 | * So there are 3 cases for each cookie read : |
| 7526 | * 1) it's a special attribute, beginning with a '$' : ignore it. |
| 7527 | * 2) it's a server id cookie that we *MAY* want to delete : save |
| 7528 | * some pointers on it (last semi-colon, beginning of cookie...) |
| 7529 | * 3) it's an application cookie : we *MAY* have to delete a previous |
| 7530 | * "special" cookie. |
| 7531 | * At the end of loop, if a "special" cookie remains, we may have to |
| 7532 | * remove it. If no application cookie persists in the header, we |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7533 | * *MUST* delete it. |
| 7534 | * |
| 7535 | * Note: RFC2965 is unclear about the processing of spaces around |
| 7536 | * the equal sign in the ATTR=VALUE form. A careful inspection of |
| 7537 | * the RFC explicitly allows spaces before it, and not within the |
| 7538 | * tokens (attrs or values). An inspection of RFC2109 allows that |
| 7539 | * too but section 10.1.3 lets one think that spaces may be allowed |
| 7540 | * after the equal sign too, resulting in some (rare) buggy |
| 7541 | * implementations trying to do that. So let's do what servers do. |
| 7542 | * Latest ietf draft forbids spaces all around. Also, earlier RFCs |
| 7543 | * allowed quoted strings in values, with any possible character |
| 7544 | * after a backslash, including control chars and delimitors, which |
| 7545 | * causes parsing to become ambiguous. Browsers also allow spaces |
| 7546 | * within values even without quotes. |
| 7547 | * |
| 7548 | * We have to keep multiple pointers in order to support cookie |
| 7549 | * removal at the beginning, middle or end of header without |
| 7550 | * corrupting the header. All of these headers are valid : |
| 7551 | * |
| 7552 | * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n |
| 7553 | * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n |
| 7554 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 7555 | * | | | | | | | | | |
| 7556 | * | | | | | | | | hdr_end <--+ |
| 7557 | * | | | | | | | +--> next |
| 7558 | * | | | | | | +----> val_end |
| 7559 | * | | | | | +-----------> val_beg |
| 7560 | * | | | | +--------------> equal |
| 7561 | * | | | +----------------> att_end |
| 7562 | * | | +---------------------> att_beg |
| 7563 | * | +--------------------------> prev |
| 7564 | * +--------------------------------> hdr_beg |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7565 | */ |
| 7566 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7567 | for (prev = hdr_beg + 6; prev < hdr_end; prev = next) { |
| 7568 | /* Iterate through all cookies on this line */ |
| 7569 | |
| 7570 | /* find att_beg */ |
| 7571 | att_beg = prev + 1; |
| 7572 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 7573 | att_beg++; |
| 7574 | |
| 7575 | /* find att_end : this is the first character after the last non |
| 7576 | * space before the equal. It may be equal to hdr_end. |
| 7577 | */ |
| 7578 | equal = att_end = att_beg; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7579 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7580 | while (equal < hdr_end) { |
| 7581 | if (*equal == '=' || *equal == ',' || *equal == ';') |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7582 | break; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7583 | if (http_is_spht[(unsigned char)*equal++]) |
| 7584 | continue; |
| 7585 | att_end = equal; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7586 | } |
| 7587 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7588 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 7589 | * is between <att_beg> and <equal>, both may be identical. |
| 7590 | */ |
| 7591 | |
| 7592 | /* look for end of cookie if there is an equal sign */ |
| 7593 | if (equal < hdr_end && *equal == '=') { |
| 7594 | /* look for the beginning of the value */ |
| 7595 | val_beg = equal + 1; |
| 7596 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 7597 | val_beg++; |
| 7598 | |
| 7599 | /* find the end of the value, respecting quotes */ |
| 7600 | next = find_cookie_value_end(val_beg, hdr_end); |
| 7601 | |
| 7602 | /* make val_end point to the first white space or delimitor after the value */ |
| 7603 | val_end = next; |
| 7604 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 7605 | val_end--; |
| 7606 | } else { |
| 7607 | val_beg = val_end = next = equal; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 7608 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7609 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7610 | /* We have nothing to do with attributes beginning with '$'. However, |
| 7611 | * they will automatically be removed if a header before them is removed, |
| 7612 | * since they're supposed to be linked together. |
| 7613 | */ |
| 7614 | if (*att_beg == '$') |
| 7615 | continue; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7616 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7617 | /* Ignore cookies with no equal sign */ |
| 7618 | if (equal == next) { |
| 7619 | /* This is not our cookie, so we must preserve it. But if we already |
| 7620 | * scheduled another cookie for removal, we cannot remove the |
| 7621 | * complete header, but we can remove the previous block itself. |
| 7622 | */ |
| 7623 | preserve_hdr = 1; |
| 7624 | if (del_from != NULL) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7625 | int delta = del_hdr_value(req->buf, &del_from, prev); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7626 | val_end += delta; |
| 7627 | next += delta; |
| 7628 | hdr_end += delta; |
| 7629 | hdr_next += delta; |
| 7630 | cur_hdr->len += delta; |
| 7631 | http_msg_move_end(&txn->req, delta); |
| 7632 | prev = del_from; |
| 7633 | del_from = NULL; |
| 7634 | } |
| 7635 | continue; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 7636 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7637 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7638 | /* if there are spaces around the equal sign, we need to |
| 7639 | * strip them otherwise we'll get trouble for cookie captures, |
| 7640 | * or even for rewrites. Since this happens extremely rarely, |
| 7641 | * it does not hurt performance. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7642 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7643 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 7644 | int stripped_before = 0; |
| 7645 | int stripped_after = 0; |
| 7646 | |
| 7647 | if (att_end != equal) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7648 | stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7649 | equal += stripped_before; |
| 7650 | val_beg += stripped_before; |
| 7651 | } |
| 7652 | |
| 7653 | if (val_beg > equal + 1) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7654 | stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7655 | val_beg += stripped_after; |
| 7656 | stripped_before += stripped_after; |
| 7657 | } |
| 7658 | |
| 7659 | val_end += stripped_before; |
| 7660 | next += stripped_before; |
| 7661 | hdr_end += stripped_before; |
| 7662 | hdr_next += stripped_before; |
| 7663 | cur_hdr->len += stripped_before; |
| 7664 | http_msg_move_end(&txn->req, stripped_before); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7665 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7666 | /* now everything is as on the diagram above */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7667 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7668 | /* First, let's see if we want to capture this cookie. We check |
| 7669 | * that we don't already have a client side cookie, because we |
| 7670 | * can only capture one. Also as an optimisation, we ignore |
| 7671 | * cookies shorter than the declared name. |
| 7672 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 7673 | if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL && |
| 7674 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 7675 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7676 | int log_len = val_end - att_beg; |
| 7677 | |
| 7678 | if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) { |
| 7679 | Alert("HTTP logging : out of memory.\n"); |
| 7680 | } else { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 7681 | if (log_len > sess->fe->capture_len) |
| 7682 | log_len = sess->fe->capture_len; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7683 | memcpy(txn->cli_cookie, att_beg, log_len); |
| 7684 | txn->cli_cookie[log_len] = 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7685 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7686 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7687 | |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7688 | /* Persistence cookies in passive, rewrite or insert mode have the |
| 7689 | * following form : |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7690 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7691 | * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]] |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7692 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7693 | * For cookies in prefix mode, the form is : |
| 7694 | * |
| 7695 | * Cookie: NAME=SRV~VALUE |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7696 | */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7697 | if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 7698 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
| 7699 | struct server *srv = s->be->srv; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7700 | char *delim; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7701 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7702 | /* if we're in cookie prefix mode, we'll search the delimitor so that we |
| 7703 | * have the server ID between val_beg and delim, and the original cookie between |
| 7704 | * delim+1 and val_end. Otherwise, delim==val_end : |
| 7705 | * |
| 7706 | * Cookie: NAME=SRV; # in all but prefix modes |
| 7707 | * Cookie: NAME=SRV~OPAQUE ; # in prefix mode |
| 7708 | * | || || | |+-> next |
| 7709 | * | || || | +--> val_end |
| 7710 | * | || || +---------> delim |
| 7711 | * | || |+------------> val_beg |
| 7712 | * | || +-------------> att_end = equal |
| 7713 | * | |+-----------------> att_beg |
| 7714 | * | +------------------> prev |
| 7715 | * +-------------------------> hdr_beg |
| 7716 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7717 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7718 | if (s->be->ck_opts & PR_CK_PFX) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7719 | for (delim = val_beg; delim < val_end; delim++) |
| 7720 | if (*delim == COOKIE_DELIM) |
| 7721 | break; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7722 | } else { |
| 7723 | char *vbar1; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7724 | delim = val_end; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7725 | /* Now check if the cookie contains a date field, which would |
| 7726 | * appear after a vertical bar ('|') just after the server name |
| 7727 | * and before the delimiter. |
| 7728 | */ |
| 7729 | vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg); |
| 7730 | if (vbar1) { |
| 7731 | /* OK, so left of the bar is the server's cookie and |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7732 | * right is the last seen date. It is a base64 encoded |
| 7733 | * 30-bit value representing the UNIX date since the |
| 7734 | * epoch in 4-second quantities. |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7735 | */ |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7736 | int val; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7737 | delim = vbar1++; |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7738 | if (val_end - vbar1 >= 5) { |
| 7739 | val = b64tos30(vbar1); |
| 7740 | if (val > 0) |
| 7741 | txn->cookie_last_date = val << 2; |
| 7742 | } |
| 7743 | /* look for a second vertical bar */ |
| 7744 | vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1); |
| 7745 | if (vbar1 && (val_end - vbar1 > 5)) { |
| 7746 | val = b64tos30(vbar1 + 1); |
| 7747 | if (val > 0) |
| 7748 | txn->cookie_first_date = val << 2; |
| 7749 | } |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7750 | } |
| 7751 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7752 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7753 | /* if the cookie has an expiration date and the proxy wants to check |
| 7754 | * it, then we do that now. We first check if the cookie is too old, |
| 7755 | * then only if it has expired. We detect strict overflow because the |
| 7756 | * time resolution here is not great (4 seconds). Cookies with dates |
| 7757 | * in the future are ignored if their offset is beyond one day. This |
| 7758 | * allows an admin to fix timezone issues without expiring everyone |
| 7759 | * and at the same time avoids keeping unwanted side effects for too |
| 7760 | * long. |
| 7761 | */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7762 | if (txn->cookie_first_date && s->be->cookie_maxlife && |
| 7763 | (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) || |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 7764 | ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7765 | txn->flags &= ~TX_CK_MASK; |
| 7766 | txn->flags |= TX_CK_OLD; |
| 7767 | delim = val_beg; // let's pretend we have not found the cookie |
| 7768 | txn->cookie_first_date = 0; |
| 7769 | txn->cookie_last_date = 0; |
| 7770 | } |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7771 | else if (txn->cookie_last_date && s->be->cookie_maxidle && |
| 7772 | (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) || |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 7773 | ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7774 | txn->flags &= ~TX_CK_MASK; |
| 7775 | txn->flags |= TX_CK_EXPIRED; |
| 7776 | delim = val_beg; // let's pretend we have not found the cookie |
| 7777 | txn->cookie_first_date = 0; |
| 7778 | txn->cookie_last_date = 0; |
| 7779 | } |
| 7780 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7781 | /* Here, we'll look for the first running server which supports the cookie. |
| 7782 | * This allows to share a same cookie between several servers, for example |
| 7783 | * to dedicate backup servers to specific servers only. |
| 7784 | * However, to prevent clients from sticking to cookie-less backup server |
| 7785 | * when they have incidentely learned an empty cookie, we simply ignore |
| 7786 | * empty cookies and mark them as invalid. |
| 7787 | * The same behaviour is applied when persistence must be ignored. |
| 7788 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7789 | if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7790 | srv = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7791 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7792 | while (srv) { |
| 7793 | if (srv->cookie && (srv->cklen == delim - val_beg) && |
| 7794 | !memcmp(val_beg, srv->cookie, delim - val_beg)) { |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 7795 | if ((srv->state != SRV_ST_STOPPED) || |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7796 | (s->be->options & PR_O_PERSIST) || |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7797 | (s->flags & SF_FORCE_PRST)) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7798 | /* we found the server and we can use it */ |
| 7799 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 7800 | txn->flags |= (srv->state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7801 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7802 | s->target = &srv->obj_type; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7803 | break; |
| 7804 | } else { |
| 7805 | /* we found a server, but it's down, |
| 7806 | * mark it as such and go on in case |
| 7807 | * another one is available. |
| 7808 | */ |
| 7809 | txn->flags &= ~TX_CK_MASK; |
| 7810 | txn->flags |= TX_CK_DOWN; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7811 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7812 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7813 | srv = srv->next; |
| 7814 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7815 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7816 | if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) { |
Willy Tarreau | c89ccb6 | 2012-04-05 21:18:22 +0200 | [diff] [blame] | 7817 | /* no server matched this cookie or we deliberately skipped it */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7818 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7819 | if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
Willy Tarreau | c89ccb6 | 2012-04-05 21:18:22 +0200 | [diff] [blame] | 7820 | txn->flags |= TX_CK_UNUSED; |
| 7821 | else |
| 7822 | txn->flags |= TX_CK_INVALID; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7823 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7824 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7825 | /* depending on the cookie mode, we may have to either : |
| 7826 | * - delete the complete cookie if we're in insert+indirect mode, so that |
| 7827 | * the server never sees it ; |
| 7828 | * - remove the server id from the cookie value, and tag the cookie as an |
| 7829 | * application cookie so that it does not get accidentely removed later, |
| 7830 | * if we're in cookie prefix mode |
| 7831 | */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7832 | if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7833 | int delta; /* negative */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7834 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7835 | delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7836 | val_end += delta; |
| 7837 | next += delta; |
| 7838 | hdr_end += delta; |
| 7839 | hdr_next += delta; |
| 7840 | cur_hdr->len += delta; |
| 7841 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7842 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7843 | del_from = NULL; |
| 7844 | preserve_hdr = 1; /* we want to keep this cookie */ |
| 7845 | } |
| 7846 | else if (del_from == NULL && |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7847 | (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7848 | del_from = prev; |
| 7849 | } |
| 7850 | } else { |
| 7851 | /* This is not our cookie, so we must preserve it. But if we already |
| 7852 | * scheduled another cookie for removal, we cannot remove the |
| 7853 | * complete header, but we can remove the previous block itself. |
| 7854 | */ |
| 7855 | preserve_hdr = 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7856 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7857 | if (del_from != NULL) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7858 | int delta = del_hdr_value(req->buf, &del_from, prev); |
Willy Tarreau | b810554 | 2010-11-24 18:31:28 +0100 | [diff] [blame] | 7859 | if (att_beg >= del_from) |
| 7860 | att_beg += delta; |
| 7861 | if (att_end >= del_from) |
| 7862 | att_end += delta; |
| 7863 | val_beg += delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7864 | val_end += delta; |
| 7865 | next += delta; |
| 7866 | hdr_end += delta; |
| 7867 | hdr_next += delta; |
| 7868 | cur_hdr->len += delta; |
| 7869 | http_msg_move_end(&txn->req, delta); |
| 7870 | prev = del_from; |
| 7871 | del_from = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7872 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7873 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7874 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7875 | /* Look for the appsession cookie unless persistence must be ignored */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 7876 | if (!(s->flags & SF_IGNORE_PRST) && (s->be->appsession_name != NULL)) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7877 | int cmp_len, value_len; |
| 7878 | char *value_begin; |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 7879 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7880 | if (s->be->options2 & PR_O2_AS_PFX) { |
| 7881 | cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len); |
| 7882 | value_begin = att_beg + s->be->appsession_name_len; |
| 7883 | value_len = val_end - att_beg - s->be->appsession_name_len; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7884 | } else { |
| 7885 | cmp_len = att_end - att_beg; |
| 7886 | value_begin = val_beg; |
| 7887 | value_len = val_end - val_beg; |
| 7888 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7889 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7890 | /* let's see if the cookie is our appcookie */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 7891 | if (cmp_len == s->be->appsession_name_len && |
| 7892 | memcmp(att_beg, s->be->appsession_name, cmp_len) == 0) { |
| 7893 | manage_client_side_appsession(s, value_begin, value_len); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7894 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7895 | } |
| 7896 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7897 | /* continue with next cookie on this header line */ |
| 7898 | att_beg = next; |
| 7899 | } /* for each cookie */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7900 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7901 | /* There are no more cookies on this line. |
| 7902 | * We may still have one (or several) marked for deletion at the |
| 7903 | * end of the line. We must do this now in two ways : |
| 7904 | * - if some cookies must be preserved, we only delete from the |
| 7905 | * mark to the end of line ; |
| 7906 | * - if nothing needs to be preserved, simply delete the whole header |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7907 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7908 | if (del_from) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7909 | int delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7910 | if (preserve_hdr) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7911 | delta = del_hdr_value(req->buf, &del_from, hdr_end); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7912 | hdr_end = del_from; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7913 | cur_hdr->len += delta; |
| 7914 | } else { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7915 | delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7916 | |
| 7917 | /* FIXME: this should be a separate function */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7918 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7919 | txn->hdr_idx.used--; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7920 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7921 | cur_idx = old_idx; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7922 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7923 | hdr_next += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7924 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7925 | } |
| 7926 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7927 | /* check next header */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7928 | old_idx = cur_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7929 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7930 | } |
| 7931 | |
| 7932 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7933 | /* Iterate the same filter through all response headers contained in <rtr>. |
| 7934 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
| 7935 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7936 | int apply_filter_to_resp_headers(struct stream *s, struct channel *rtr, struct hdr_exp *exp) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7937 | { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7938 | char *cur_ptr, *cur_end, *cur_next; |
| 7939 | int cur_idx, old_idx, last_hdr; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 7940 | struct http_txn *txn = s->txn; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7941 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7942 | int delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7943 | |
| 7944 | last_hdr = 0; |
| 7945 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7946 | cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7947 | old_idx = 0; |
| 7948 | |
| 7949 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7950 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7951 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7952 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7953 | (exp->action == ACT_ALLOW || |
| 7954 | exp->action == ACT_DENY)) |
| 7955 | return 0; |
| 7956 | |
| 7957 | cur_idx = txn->hdr_idx.v[old_idx].next; |
| 7958 | if (!cur_idx) |
| 7959 | break; |
| 7960 | |
| 7961 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 7962 | cur_ptr = cur_next; |
| 7963 | cur_end = cur_ptr + cur_hdr->len; |
| 7964 | cur_next = cur_end + cur_hdr->cr + 1; |
| 7965 | |
| 7966 | /* Now we have one header between cur_ptr and cur_end, |
| 7967 | * and the next header starts at cur_next. |
| 7968 | */ |
| 7969 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 7970 | if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7971 | switch (exp->action) { |
| 7972 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7973 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7974 | last_hdr = 1; |
| 7975 | break; |
| 7976 | |
| 7977 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7978 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7979 | last_hdr = 1; |
| 7980 | break; |
| 7981 | |
| 7982 | case ACT_REPLACE: |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 7983 | trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch); |
| 7984 | if (trash.len < 0) |
| 7985 | return -1; |
| 7986 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7987 | delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7988 | /* FIXME: if the user adds a newline in the replacement, the |
| 7989 | * index will not be recalculated for now, and the new line |
| 7990 | * will not be counted as a new header. |
| 7991 | */ |
| 7992 | |
| 7993 | cur_end += delta; |
| 7994 | cur_next += delta; |
| 7995 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7996 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7997 | break; |
| 7998 | |
| 7999 | case ACT_REMOVE: |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8000 | delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8001 | cur_next += delta; |
| 8002 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 8003 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8004 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 8005 | txn->hdr_idx.used--; |
| 8006 | cur_hdr->len = 0; |
| 8007 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 8008 | cur_idx = old_idx; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8009 | break; |
| 8010 | |
| 8011 | } |
| 8012 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8013 | |
| 8014 | /* keep the link from this header to next one in case of later |
| 8015 | * removal of next header. |
| 8016 | */ |
| 8017 | old_idx = cur_idx; |
| 8018 | } |
| 8019 | return 0; |
| 8020 | } |
| 8021 | |
| 8022 | |
| 8023 | /* Apply the filter to the status line in the response buffer <rtr>. |
| 8024 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 8025 | * or -1 if a replacement resulted in an invalid status line. |
| 8026 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8027 | int apply_filter_to_sts_line(struct stream *s, struct channel *rtr, struct hdr_exp *exp) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8028 | { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8029 | char *cur_ptr, *cur_end; |
| 8030 | int done; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8031 | struct http_txn *txn = s->txn; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8032 | int delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8033 | |
| 8034 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8035 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8036 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8037 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8038 | (exp->action == ACT_ALLOW || |
| 8039 | exp->action == ACT_DENY)) |
| 8040 | return 0; |
| 8041 | else if (exp->action == ACT_REMOVE) |
| 8042 | return 0; |
| 8043 | |
| 8044 | done = 0; |
| 8045 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8046 | cur_ptr = rtr->buf->p; |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 8047 | cur_end = cur_ptr + txn->rsp.sl.st.l; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8048 | |
| 8049 | /* Now we have the status line between cur_ptr and cur_end */ |
| 8050 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 8051 | if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8052 | switch (exp->action) { |
| 8053 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8054 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8055 | done = 1; |
| 8056 | break; |
| 8057 | |
| 8058 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8059 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8060 | done = 1; |
| 8061 | break; |
| 8062 | |
| 8063 | case ACT_REPLACE: |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 8064 | trash.len = exp_replace(trash.str, trash.size, cur_ptr, exp->replace, pmatch); |
| 8065 | if (trash.len < 0) |
| 8066 | return -1; |
| 8067 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8068 | delta = buffer_replace2(rtr->buf, cur_ptr, cur_end, trash.str, trash.len); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8069 | /* FIXME: if the user adds a newline in the replacement, the |
| 8070 | * index will not be recalculated for now, and the new line |
| 8071 | * will not be counted as a new header. |
| 8072 | */ |
| 8073 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 8074 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8075 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8076 | cur_end = (char *)http_parse_stsline(&txn->rsp, |
Willy Tarreau | 0278576 | 2007-04-03 14:45:44 +0200 | [diff] [blame] | 8077 | HTTP_MSG_RPVER, |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8078 | cur_ptr, cur_end + 1, |
| 8079 | NULL, NULL); |
| 8080 | if (unlikely(!cur_end)) |
| 8081 | return -1; |
| 8082 | |
| 8083 | /* we have a full respnse and we know that we have either a CR |
| 8084 | * or an LF at <ptr>. |
| 8085 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8086 | txn->status = strl2ui(rtr->buf->p + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l); |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 8087 | hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r'); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8088 | /* there is no point trying this regex on headers */ |
| 8089 | return 1; |
| 8090 | } |
| 8091 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8092 | return done; |
| 8093 | } |
| 8094 | |
| 8095 | |
| 8096 | |
| 8097 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8098 | * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of stream <s>. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8099 | * Returns 0 if everything is alright, or -1 in case a replacement lead to an |
| 8100 | * unparsable response. |
| 8101 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8102 | int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8103 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 8104 | struct session *sess = s->sess; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8105 | struct http_txn *txn = s->txn; |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 8106 | struct hdr_exp *exp; |
| 8107 | |
| 8108 | for (exp = px->rsp_exp; exp; exp = exp->next) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8109 | int ret; |
| 8110 | |
| 8111 | /* |
| 8112 | * The interleaving of transformations and verdicts |
| 8113 | * makes it difficult to decide to continue or stop |
| 8114 | * the evaluation. |
| 8115 | */ |
| 8116 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 8117 | if (txn->flags & TX_SVDENY) |
| 8118 | break; |
| 8119 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8120 | if ((txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8121 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
| 8122 | exp->action == ACT_PASS)) { |
| 8123 | exp = exp->next; |
| 8124 | continue; |
| 8125 | } |
| 8126 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 8127 | /* if this filter had a condition, evaluate it now and skip to |
| 8128 | * next filter if the condition does not match. |
| 8129 | */ |
| 8130 | if (exp->cond) { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 8131 | ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 8132 | ret = acl_pass(ret); |
| 8133 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 8134 | ret = !ret; |
| 8135 | if (!ret) |
| 8136 | continue; |
| 8137 | } |
| 8138 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8139 | /* Apply the filter to the status line. */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 8140 | ret = apply_filter_to_sts_line(s, rtr, exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8141 | if (unlikely(ret < 0)) |
| 8142 | return -1; |
| 8143 | |
| 8144 | if (likely(ret == 0)) { |
| 8145 | /* The filter did not match the response, it can be |
| 8146 | * iterated through all headers. |
| 8147 | */ |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 8148 | if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0)) |
| 8149 | return -1; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8150 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8151 | } |
| 8152 | return 0; |
| 8153 | } |
| 8154 | |
| 8155 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8156 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 8157 | * Manage server-side cookies. It can impact performance by about 2% so it is |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8158 | * desirable to call it only when needed. This function is also used when we |
| 8159 | * just need to know if there is a cookie (eg: for check-cache). |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8160 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8161 | void manage_server_side_cookies(struct stream *s, struct channel *res) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8162 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8163 | struct http_txn *txn = s->txn; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 8164 | struct session *sess = s->sess; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 8165 | struct server *srv; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8166 | int is_cookie2; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8167 | int cur_idx, old_idx, delta; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8168 | char *hdr_beg, *hdr_end, *hdr_next; |
| 8169 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8170 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8171 | /* Iterate through the headers. |
| 8172 | * we start with the start line. |
| 8173 | */ |
| 8174 | old_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8175 | hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8176 | |
| 8177 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
| 8178 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8179 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8180 | |
| 8181 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8182 | hdr_beg = hdr_next; |
| 8183 | hdr_end = hdr_beg + cur_hdr->len; |
| 8184 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8185 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8186 | /* We have one full header between hdr_beg and hdr_end, and the |
| 8187 | * next header starts at hdr_next. We're only interested in |
| 8188 | * "Set-Cookie" and "Set-Cookie2" headers. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8189 | */ |
| 8190 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8191 | is_cookie2 = 0; |
| 8192 | prev = hdr_beg + 10; |
| 8193 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8194 | if (!val) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8195 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11); |
| 8196 | if (!val) { |
| 8197 | old_idx = cur_idx; |
| 8198 | continue; |
| 8199 | } |
| 8200 | is_cookie2 = 1; |
| 8201 | prev = hdr_beg + 11; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8202 | } |
| 8203 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8204 | /* OK, right now we know we have a Set-Cookie* at hdr_beg, and |
| 8205 | * <prev> points to the colon. |
| 8206 | */ |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 8207 | txn->flags |= TX_SCK_PRESENT; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8208 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8209 | /* Maybe we only wanted to see if there was a Set-Cookie (eg: |
| 8210 | * check-cache is enabled) and we are not interested in checking |
| 8211 | * them. Warning, the cookie capture is declared in the frontend. |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 8212 | */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8213 | if (s->be->cookie_name == NULL && |
| 8214 | s->be->appsession_name == NULL && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 8215 | sess->fe->capture_name == NULL) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8216 | return; |
| 8217 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8218 | /* OK so now we know we have to process this response cookie. |
| 8219 | * The format of the Set-Cookie header is slightly different |
| 8220 | * from the format of the Cookie header in that it does not |
| 8221 | * support the comma as a cookie delimiter (thus the header |
| 8222 | * cannot be folded) because the Expires attribute described in |
| 8223 | * the original Netscape's spec may contain an unquoted date |
| 8224 | * with a comma inside. We have to live with this because |
| 8225 | * many browsers don't support Max-Age and some browsers don't |
| 8226 | * support quoted strings. However the Set-Cookie2 header is |
| 8227 | * clean. |
| 8228 | * |
| 8229 | * We have to keep multiple pointers in order to support cookie |
| 8230 | * removal at the beginning, middle or end of header without |
| 8231 | * corrupting the header (in case of set-cookie2). A special |
| 8232 | * pointer, <scav> points to the beginning of the set-cookie-av |
| 8233 | * fields after the first semi-colon. The <next> pointer points |
| 8234 | * either to the end of line (set-cookie) or next unquoted comma |
| 8235 | * (set-cookie2). All of these headers are valid : |
| 8236 | * |
| 8237 | * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n |
| 8238 | * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 8239 | * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 8240 | * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n |
| 8241 | * | | | | | | | | | | |
| 8242 | * | | | | | | | | +-> next hdr_end <--+ |
| 8243 | * | | | | | | | +------------> scav |
| 8244 | * | | | | | | +--------------> val_end |
| 8245 | * | | | | | +--------------------> val_beg |
| 8246 | * | | | | +----------------------> equal |
| 8247 | * | | | +------------------------> att_end |
| 8248 | * | | +----------------------------> att_beg |
| 8249 | * | +------------------------------> prev |
| 8250 | * +-----------------------------------------> hdr_beg |
| 8251 | */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8252 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8253 | for (; prev < hdr_end; prev = next) { |
| 8254 | /* Iterate through all cookies on this line */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8255 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8256 | /* find att_beg */ |
| 8257 | att_beg = prev + 1; |
| 8258 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 8259 | att_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8260 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8261 | /* find att_end : this is the first character after the last non |
| 8262 | * space before the equal. It may be equal to hdr_end. |
| 8263 | */ |
| 8264 | equal = att_end = att_beg; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8265 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8266 | while (equal < hdr_end) { |
| 8267 | if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ',')) |
| 8268 | break; |
| 8269 | if (http_is_spht[(unsigned char)*equal++]) |
| 8270 | continue; |
| 8271 | att_end = equal; |
| 8272 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8273 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8274 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 8275 | * is between <att_beg> and <equal>, both may be identical. |
| 8276 | */ |
| 8277 | |
| 8278 | /* look for end of cookie if there is an equal sign */ |
| 8279 | if (equal < hdr_end && *equal == '=') { |
| 8280 | /* look for the beginning of the value */ |
| 8281 | val_beg = equal + 1; |
| 8282 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 8283 | val_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8284 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8285 | /* find the end of the value, respecting quotes */ |
| 8286 | next = find_cookie_value_end(val_beg, hdr_end); |
| 8287 | |
| 8288 | /* make val_end point to the first white space or delimitor after the value */ |
| 8289 | val_end = next; |
| 8290 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 8291 | val_end--; |
| 8292 | } else { |
| 8293 | /* <equal> points to next comma, semi-colon or EOL */ |
| 8294 | val_beg = val_end = next = equal; |
| 8295 | } |
| 8296 | |
| 8297 | if (next < hdr_end) { |
| 8298 | /* Set-Cookie2 supports multiple cookies, and <next> points to |
| 8299 | * a colon or semi-colon before the end. So skip all attr-value |
| 8300 | * pairs and look for the next comma. For Set-Cookie, since |
| 8301 | * commas are permitted in values, skip to the end. |
| 8302 | */ |
| 8303 | if (is_cookie2) |
| 8304 | next = find_hdr_value_end(next, hdr_end); |
| 8305 | else |
| 8306 | next = hdr_end; |
| 8307 | } |
| 8308 | |
| 8309 | /* Now everything is as on the diagram above */ |
| 8310 | |
| 8311 | /* Ignore cookies with no equal sign */ |
| 8312 | if (equal == val_end) |
| 8313 | continue; |
| 8314 | |
| 8315 | /* If there are spaces around the equal sign, we need to |
| 8316 | * strip them otherwise we'll get trouble for cookie captures, |
| 8317 | * or even for rewrites. Since this happens extremely rarely, |
| 8318 | * it does not hurt performance. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8319 | */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8320 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 8321 | int stripped_before = 0; |
| 8322 | int stripped_after = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8323 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8324 | if (att_end != equal) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8325 | stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8326 | equal += stripped_before; |
| 8327 | val_beg += stripped_before; |
| 8328 | } |
| 8329 | |
| 8330 | if (val_beg > equal + 1) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8331 | stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8332 | val_beg += stripped_after; |
| 8333 | stripped_before += stripped_after; |
| 8334 | } |
| 8335 | |
| 8336 | val_end += stripped_before; |
| 8337 | next += stripped_before; |
| 8338 | hdr_end += stripped_before; |
| 8339 | hdr_next += stripped_before; |
| 8340 | cur_hdr->len += stripped_before; |
Willy Tarreau | 1fc1f45 | 2011-04-07 22:35:37 +0200 | [diff] [blame] | 8341 | http_msg_move_end(&txn->rsp, stripped_before); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8342 | } |
| 8343 | |
| 8344 | /* First, let's see if we want to capture this cookie. We check |
| 8345 | * that we don't already have a server side cookie, because we |
| 8346 | * can only capture one. Also as an optimisation, we ignore |
| 8347 | * cookies shorter than the declared name. |
| 8348 | */ |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 8349 | if (sess->fe->capture_name != NULL && |
Willy Tarreau | 3bac9ff | 2007-03-18 17:31:28 +0100 | [diff] [blame] | 8350 | txn->srv_cookie == NULL && |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 8351 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 8352 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8353 | int log_len = val_end - att_beg; |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 8354 | if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8355 | Alert("HTTP logging : out of memory.\n"); |
| 8356 | } |
Willy Tarreau | f70fc75 | 2010-11-19 11:27:18 +0100 | [diff] [blame] | 8357 | else { |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 8358 | if (log_len > sess->fe->capture_len) |
| 8359 | log_len = sess->fe->capture_len; |
Willy Tarreau | f70fc75 | 2010-11-19 11:27:18 +0100 | [diff] [blame] | 8360 | memcpy(txn->srv_cookie, att_beg, log_len); |
| 8361 | txn->srv_cookie[log_len] = 0; |
| 8362 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8363 | } |
| 8364 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8365 | srv = objt_server(s->target); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8366 | /* now check if we need to process it for persistence */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 8367 | if (!(s->flags & SF_IGNORE_PRST) && |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8368 | (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 8369 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 8370 | /* assume passive cookie by default */ |
| 8371 | txn->flags &= ~TX_SCK_MASK; |
| 8372 | txn->flags |= TX_SCK_FOUND; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8373 | |
| 8374 | /* If the cookie is in insert mode on a known server, we'll delete |
| 8375 | * this occurrence because we'll insert another one later. |
| 8376 | * We'll delete it too if the "indirect" option is set and we're in |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8377 | * a direct access. |
| 8378 | */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8379 | if (s->be->ck_opts & PR_CK_PSV) { |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 8380 | /* The "preserve" flag was set, we don't want to touch the |
| 8381 | * server's cookie. |
| 8382 | */ |
| 8383 | } |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8384 | else if ((srv && (s->be->ck_opts & PR_CK_INS)) || |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 8385 | ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8386 | /* this cookie must be deleted */ |
| 8387 | if (*prev == ':' && next == hdr_end) { |
| 8388 | /* whole header */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8389 | delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8390 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 8391 | txn->hdr_idx.used--; |
| 8392 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 8393 | cur_idx = old_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8394 | hdr_next += delta; |
| 8395 | http_msg_move_end(&txn->rsp, delta); |
| 8396 | /* note: while both invalid now, <next> and <hdr_end> |
| 8397 | * are still equal, so the for() will stop as expected. |
| 8398 | */ |
| 8399 | } else { |
| 8400 | /* just remove the value */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8401 | int delta = del_hdr_value(res->buf, &prev, next); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8402 | next = prev; |
| 8403 | hdr_end += delta; |
| 8404 | hdr_next += delta; |
| 8405 | cur_hdr->len += delta; |
| 8406 | http_msg_move_end(&txn->rsp, delta); |
| 8407 | } |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 8408 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8409 | txn->flags |= TX_SCK_DELETED; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8410 | /* and go on with next cookie */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8411 | } |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8412 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8413 | /* replace bytes val_beg->val_end with the cookie name associated |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8414 | * with this server since we know it. |
| 8415 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8416 | delta = buffer_replace2(res->buf, val_beg, val_end, srv->cookie, srv->cklen); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8417 | next += delta; |
| 8418 | hdr_end += delta; |
| 8419 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8420 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 8421 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8422 | |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 8423 | txn->flags &= ~TX_SCK_MASK; |
| 8424 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8425 | } |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8426 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8427 | /* insert the cookie name associated with this server |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8428 | * before existing cookie, and insert a delimiter between them.. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8429 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8430 | delta = buffer_replace2(res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8431 | next += delta; |
| 8432 | hdr_end += delta; |
| 8433 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8434 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 8435 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8436 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 8437 | val_beg[srv->cklen] = COOKIE_DELIM; |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 8438 | txn->flags &= ~TX_SCK_MASK; |
| 8439 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8440 | } |
| 8441 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 8442 | /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 8443 | else if (!(s->flags & SF_IGNORE_PRST) && (s->be->appsession_name != NULL)) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8444 | int cmp_len, value_len; |
| 8445 | char *value_begin; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8446 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8447 | if (s->be->options2 & PR_O2_AS_PFX) { |
| 8448 | cmp_len = MIN(val_end - att_beg, s->be->appsession_name_len); |
| 8449 | value_begin = att_beg + s->be->appsession_name_len; |
| 8450 | value_len = MIN(s->be->appsession_len, val_end - att_beg - s->be->appsession_name_len); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8451 | } else { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8452 | cmp_len = att_end - att_beg; |
| 8453 | value_begin = val_beg; |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8454 | value_len = MIN(s->be->appsession_len, val_end - val_beg); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8455 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8456 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8457 | if ((cmp_len == s->be->appsession_name_len) && |
| 8458 | (memcmp(att_beg, s->be->appsession_name, s->be->appsession_name_len) == 0)) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8459 | /* free a possibly previously allocated memory */ |
| 8460 | pool_free2(apools.sessid, txn->sessid); |
| 8461 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8462 | /* Store the sessid in the stream for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 8463 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8464 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8465 | send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8466 | return; |
| 8467 | } |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 8468 | memcpy(txn->sessid, value_begin, value_len); |
| 8469 | txn->sessid[value_len] = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8470 | } |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8471 | } |
| 8472 | /* that's done for this cookie, check the next one on the same |
| 8473 | * line when next != hdr_end (only if is_cookie2). |
| 8474 | */ |
| 8475 | } |
| 8476 | /* check next header */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8477 | old_idx = cur_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 8478 | } |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8479 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 8480 | if (txn->sessid != NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8481 | appsess *asession = NULL; |
| 8482 | /* only do insert, if lookup fails */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8483 | asession = appsession_hash_lookup(&(s->be->htbl_proxy), txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8484 | if (asession == NULL) { |
Willy Tarreau | 1fac753 | 2010-01-09 19:23:06 +0100 | [diff] [blame] | 8485 | size_t server_id_len; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8486 | if ((asession = pool_alloc2(pool2_appsess)) == NULL) { |
| 8487 | Alert("Not enough Memory process_srv():asession:calloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8488 | send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n"); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8489 | return; |
| 8490 | } |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 8491 | asession->serverid = NULL; /* to avoid a double free in case of allocation error */ |
| 8492 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8493 | if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) { |
| 8494 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8495 | send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 8496 | s->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8497 | return; |
| 8498 | } |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8499 | memcpy(asession->sessid, txn->sessid, s->be->appsession_len); |
| 8500 | asession->sessid[s->be->appsession_len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8501 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8502 | server_id_len = strlen(objt_server(s->target)->id) + 1; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8503 | if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) { |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 8504 | Alert("Not enough Memory process_srv():asession->serverid:malloc().\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8505 | send_log(s->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 8506 | s->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8507 | return; |
| 8508 | } |
| 8509 | asession->serverid[0] = '\0'; |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8510 | memcpy(asession->serverid, objt_server(s->target)->id, server_id_len); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8511 | |
| 8512 | asession->request_count = 0; |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8513 | appsession_hash_insert(&(s->be->htbl_proxy), asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8514 | } |
| 8515 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8516 | asession->expire = tick_add_ifset(now_ms, s->be->timeout.appsession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 8517 | asession->request_count++; |
| 8518 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8519 | } |
| 8520 | |
| 8521 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8522 | /* |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8523 | * Check if response is cacheable or not. Updates s->flags. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8524 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8525 | void check_response_for_cacheability(struct stream *s, struct channel *rtr) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8526 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8527 | struct http_txn *txn = s->txn; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8528 | char *p1, *p2; |
| 8529 | |
| 8530 | char *cur_ptr, *cur_end, *cur_next; |
| 8531 | int cur_idx; |
| 8532 | |
Willy Tarreau | 5df5187 | 2007-11-25 16:20:08 +0100 | [diff] [blame] | 8533 | if (!(txn->flags & TX_CACHEABLE)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8534 | return; |
| 8535 | |
| 8536 | /* Iterate through the headers. |
| 8537 | * we start with the start line. |
| 8538 | */ |
| 8539 | cur_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8540 | cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8541 | |
| 8542 | while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) { |
| 8543 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8544 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8545 | |
| 8546 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 8547 | cur_ptr = cur_next; |
| 8548 | cur_end = cur_ptr + cur_hdr->len; |
| 8549 | cur_next = cur_end + cur_hdr->cr + 1; |
| 8550 | |
| 8551 | /* We have one full header between cur_ptr and cur_end, and the |
| 8552 | * next header starts at cur_next. We're only interested in |
| 8553 | * "Cookie:" headers. |
| 8554 | */ |
| 8555 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8556 | val = http_header_match2(cur_ptr, cur_end, "Pragma", 6); |
| 8557 | if (val) { |
| 8558 | if ((cur_end - (cur_ptr + val) >= 8) && |
| 8559 | strncasecmp(cur_ptr + val, "no-cache", 8) == 0) { |
| 8560 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 8561 | return; |
| 8562 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8563 | } |
| 8564 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8565 | val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13); |
| 8566 | if (!val) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8567 | continue; |
| 8568 | |
| 8569 | /* OK, right now we know we have a cache-control header at cur_ptr */ |
| 8570 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 8571 | p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8572 | |
| 8573 | if (p1 >= cur_end) /* no more info */ |
| 8574 | continue; |
| 8575 | |
| 8576 | /* p1 is at the beginning of the value */ |
| 8577 | p2 = p1; |
| 8578 | |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 8579 | while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8580 | p2++; |
| 8581 | |
| 8582 | /* we have a complete value between p1 and p2 */ |
| 8583 | if (p2 < cur_end && *p2 == '=') { |
| 8584 | /* we have something of the form no-cache="set-cookie" */ |
| 8585 | if ((cur_end - p1 >= 21) && |
| 8586 | strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0 |
| 8587 | && (p1[20] == '"' || p1[20] == ',')) |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8588 | txn->flags &= ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8589 | continue; |
| 8590 | } |
| 8591 | |
| 8592 | /* OK, so we know that either p2 points to the end of string or to a comma */ |
| 8593 | if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) || |
Willy Tarreau | 5b15f90 | 2013-07-04 12:46:56 +0200 | [diff] [blame] | 8594 | ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) || |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8595 | ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) || |
| 8596 | ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) || |
| 8597 | ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8598 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8599 | return; |
| 8600 | } |
| 8601 | |
| 8602 | if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 8603 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 8604 | continue; |
| 8605 | } |
| 8606 | } |
| 8607 | } |
| 8608 | |
| 8609 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8610 | /* |
| 8611 | * Try to retrieve a known appsession in the URI, then the associated server. |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8612 | * If the server is found, it's assigned to the stream. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8613 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8614 | void get_srv_from_appsession(struct stream *s, const char *begin, int len) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8615 | { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8616 | char *end_params, *first_param, *cur_param, *next_param; |
| 8617 | char separator; |
| 8618 | int value_len; |
| 8619 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8620 | int mode = s->be->options2 & PR_O2_AS_M_ANY; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8621 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8622 | if (s->be->appsession_name == NULL || |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8623 | (s->txn->meth != HTTP_METH_GET && s->txn->meth != HTTP_METH_POST && s->txn->meth != HTTP_METH_HEAD)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8624 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8625 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8626 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8627 | first_param = NULL; |
| 8628 | switch (mode) { |
| 8629 | case PR_O2_AS_M_PP: |
| 8630 | first_param = memchr(begin, ';', len); |
| 8631 | break; |
| 8632 | case PR_O2_AS_M_QS: |
| 8633 | first_param = memchr(begin, '?', len); |
| 8634 | break; |
| 8635 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8636 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8637 | if (first_param == NULL) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8638 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8639 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8640 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8641 | switch (mode) { |
| 8642 | case PR_O2_AS_M_PP: |
| 8643 | if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) { |
| 8644 | end_params = (char *) begin + len; |
| 8645 | } |
| 8646 | separator = ';'; |
| 8647 | break; |
| 8648 | case PR_O2_AS_M_QS: |
| 8649 | end_params = (char *) begin + len; |
| 8650 | separator = '&'; |
| 8651 | break; |
| 8652 | default: |
| 8653 | /* unknown mode, shouldn't happen */ |
| 8654 | return; |
| 8655 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8656 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8657 | cur_param = next_param = end_params; |
| 8658 | while (cur_param > first_param) { |
| 8659 | cur_param--; |
| 8660 | if ((cur_param[0] == separator) || (cur_param == first_param)) { |
| 8661 | /* let's see if this is the appsession parameter */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8662 | if ((cur_param + s->be->appsession_name_len + 1 < next_param) && |
| 8663 | ((s->be->options2 & PR_O2_AS_PFX) || cur_param[s->be->appsession_name_len + 1] == '=') && |
| 8664 | (strncasecmp(cur_param + 1, s->be->appsession_name, s->be->appsession_name_len) == 0)) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8665 | /* Cool... it's the right one */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8666 | cur_param += s->be->appsession_name_len + (s->be->options2 & PR_O2_AS_PFX ? 1 : 2); |
| 8667 | value_len = MIN(s->be->appsession_len, next_param - cur_param); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8668 | if (value_len > 0) { |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8669 | manage_client_side_appsession(s, cur_param, value_len); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8670 | } |
| 8671 | break; |
| 8672 | } |
| 8673 | next_param = cur_param; |
| 8674 | } |
| 8675 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8676 | #if defined(DEBUG_HASH) |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 8677 | Alert("get_srv_from_appsession\n"); |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8678 | appsession_hash_dump(&(s->be->htbl_proxy)); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8679 | #endif |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8680 | } |
| 8681 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8682 | /* |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8683 | * In a GET, HEAD or POST request, check if the requested URI matches the stats uri |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8684 | * for the current backend. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8685 | * |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8686 | * It is assumed that the request is either a HEAD, GET, or POST and that the |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 8687 | * uri_auth field is valid. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8688 | * |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8689 | * Returns 1 if stats should be provided, otherwise 0. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8690 | */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 8691 | int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8692 | { |
| 8693 | struct uri_auth *uri_auth = backend->uri_auth; |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 8694 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8695 | const char *uri = msg->chn->buf->p+ msg->sl.rq.u; |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8696 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8697 | if (!uri_auth) |
| 8698 | return 0; |
| 8699 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8700 | if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST) |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8701 | return 0; |
| 8702 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 8703 | /* check URI size */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 8704 | if (uri_auth->uri_len > msg->sl.rq.u_l) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8705 | return 0; |
| 8706 | |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 8707 | if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8708 | return 0; |
| 8709 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8710 | return 1; |
| 8711 | } |
| 8712 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8713 | /* |
| 8714 | * Capture a bad request or response and archive it in the proxy's structure. |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8715 | * By default it tries to report the error position as msg->err_pos. However if |
| 8716 | * this one is not set, it will then report msg->next, which is the last known |
| 8717 | * parsing point. The function is able to deal with wrapping buffers. It always |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8718 | * displays buffers as a contiguous area starting at buf->p. |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8719 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8720 | void http_capture_bad_message(struct error_snapshot *es, struct stream *s, |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 8721 | struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 8722 | enum ht_state state, struct proxy *other_end) |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8723 | { |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 8724 | struct session *sess = strm_sess(s); |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8725 | struct channel *chn = msg->chn; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8726 | int len1, len2; |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 8727 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8728 | es->len = MIN(chn->buf->i, sizeof(es->buf)); |
| 8729 | len1 = chn->buf->data + chn->buf->size - chn->buf->p; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8730 | len1 = MIN(len1, es->len); |
| 8731 | len2 = es->len - len1; /* remaining data if buffer wraps */ |
| 8732 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8733 | memcpy(es->buf, chn->buf->p, len1); |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8734 | if (len2) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8735 | memcpy(es->buf + len1, chn->buf->data, len2); |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8736 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8737 | if (msg->err_pos >= 0) |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8738 | es->pos = msg->err_pos; |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8739 | else |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8740 | es->pos = msg->next; |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8741 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8742 | es->when = date; // user-visible date |
| 8743 | es->sid = s->uniq_id; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 8744 | es->srv = objt_server(s->target); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8745 | es->oe = other_end; |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 8746 | if (objt_conn(sess->origin)) |
| 8747 | es->src = __objt_conn(sess->origin)->addr.from; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 8748 | else |
| 8749 | memset(&es->src, 0, sizeof(es->src)); |
| 8750 | |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 8751 | es->state = state; |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 8752 | es->ev_id = error_snapshot_id++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8753 | es->b_flags = chn->flags; |
Willy Tarreau | d04b1bc | 2012-05-08 11:03:10 +0200 | [diff] [blame] | 8754 | es->s_flags = s->flags; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8755 | es->t_flags = s->txn->flags; |
Willy Tarreau | d04b1bc | 2012-05-08 11:03:10 +0200 | [diff] [blame] | 8756 | es->m_flags = msg->flags; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8757 | es->b_out = chn->buf->o; |
| 8758 | es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8759 | es->b_tot = chn->total; |
Willy Tarreau | d04b1bc | 2012-05-08 11:03:10 +0200 | [diff] [blame] | 8760 | es->m_clen = msg->chunk_len; |
| 8761 | es->m_blen = msg->body_len; |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8762 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8763 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8764 | /* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of |
| 8765 | * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is |
| 8766 | * performed over the whole headers. Otherwise it must contain a valid header |
| 8767 | * context, initialised with ctx->idx=0 for the first lookup in a series. If |
| 8768 | * <occ> is positive or null, occurrence #occ from the beginning (or last ctx) |
| 8769 | * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less |
| 8770 | * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 8771 | * -1. The value fetch stops at commas, so this function is suited for use with |
| 8772 | * list headers. |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8773 | * The return value is 0 if nothing was found, or non-zero otherwise. |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8774 | */ |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 8775 | unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen, |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8776 | struct hdr_idx *idx, int occ, |
| 8777 | struct hdr_ctx *ctx, char **vptr, int *vlen) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8778 | { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8779 | struct hdr_ctx local_ctx; |
| 8780 | char *ptr_hist[MAX_HDR_HISTORY]; |
| 8781 | int len_hist[MAX_HDR_HISTORY]; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8782 | unsigned int hist_ptr; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8783 | int found; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8784 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8785 | if (!ctx) { |
| 8786 | local_ctx.idx = 0; |
| 8787 | ctx = &local_ctx; |
| 8788 | } |
| 8789 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8790 | if (occ >= 0) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8791 | /* search from the beginning */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8792 | while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8793 | occ--; |
| 8794 | if (occ <= 0) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8795 | *vptr = ctx->line + ctx->val; |
| 8796 | *vlen = ctx->vlen; |
| 8797 | return 1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8798 | } |
| 8799 | } |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8800 | return 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8801 | } |
| 8802 | |
| 8803 | /* negative occurrence, we scan all the list then walk back */ |
| 8804 | if (-occ > MAX_HDR_HISTORY) |
| 8805 | return 0; |
| 8806 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8807 | found = hist_ptr = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8808 | while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8809 | ptr_hist[hist_ptr] = ctx->line + ctx->val; |
| 8810 | len_hist[hist_ptr] = ctx->vlen; |
| 8811 | if (++hist_ptr >= MAX_HDR_HISTORY) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8812 | hist_ptr = 0; |
| 8813 | found++; |
| 8814 | } |
| 8815 | if (-occ > found) |
| 8816 | return 0; |
| 8817 | /* OK now we have the last occurrence in [hist_ptr-1], and we need to |
Willy Tarreau | 67dad27 | 2013-06-12 22:27:44 +0200 | [diff] [blame] | 8818 | * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have |
| 8819 | * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ] |
| 8820 | * to remain in the 0..9 range. |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8821 | */ |
Willy Tarreau | 67dad27 | 2013-06-12 22:27:44 +0200 | [diff] [blame] | 8822 | hist_ptr += occ + MAX_HDR_HISTORY; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8823 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 8824 | hist_ptr -= MAX_HDR_HISTORY; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8825 | *vptr = ptr_hist[hist_ptr]; |
| 8826 | *vlen = len_hist[hist_ptr]; |
| 8827 | return 1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8828 | } |
| 8829 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 8830 | /* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of |
| 8831 | * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is |
| 8832 | * performed over the whole headers. Otherwise it must contain a valid header |
| 8833 | * context, initialised with ctx->idx=0 for the first lookup in a series. If |
| 8834 | * <occ> is positive or null, occurrence #occ from the beginning (or last ctx) |
| 8835 | * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less |
| 8836 | * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is |
| 8837 | * -1. This function differs from http_get_hdr() in that it only returns full |
| 8838 | * line header values and does not stop at commas. |
| 8839 | * The return value is 0 if nothing was found, or non-zero otherwise. |
| 8840 | */ |
| 8841 | unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen, |
| 8842 | struct hdr_idx *idx, int occ, |
| 8843 | struct hdr_ctx *ctx, char **vptr, int *vlen) |
| 8844 | { |
| 8845 | struct hdr_ctx local_ctx; |
| 8846 | char *ptr_hist[MAX_HDR_HISTORY]; |
| 8847 | int len_hist[MAX_HDR_HISTORY]; |
| 8848 | unsigned int hist_ptr; |
| 8849 | int found; |
| 8850 | |
| 8851 | if (!ctx) { |
| 8852 | local_ctx.idx = 0; |
| 8853 | ctx = &local_ctx; |
| 8854 | } |
| 8855 | |
| 8856 | if (occ >= 0) { |
| 8857 | /* search from the beginning */ |
| 8858 | while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
| 8859 | occ--; |
| 8860 | if (occ <= 0) { |
| 8861 | *vptr = ctx->line + ctx->val; |
| 8862 | *vlen = ctx->vlen; |
| 8863 | return 1; |
| 8864 | } |
| 8865 | } |
| 8866 | return 0; |
| 8867 | } |
| 8868 | |
| 8869 | /* negative occurrence, we scan all the list then walk back */ |
| 8870 | if (-occ > MAX_HDR_HISTORY) |
| 8871 | return 0; |
| 8872 | |
| 8873 | found = hist_ptr = 0; |
| 8874 | while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
| 8875 | ptr_hist[hist_ptr] = ctx->line + ctx->val; |
| 8876 | len_hist[hist_ptr] = ctx->vlen; |
| 8877 | if (++hist_ptr >= MAX_HDR_HISTORY) |
| 8878 | hist_ptr = 0; |
| 8879 | found++; |
| 8880 | } |
| 8881 | if (-occ > found) |
| 8882 | return 0; |
| 8883 | /* OK now we have the last occurrence in [hist_ptr-1], and we need to |
| 8884 | * find occurrence -occ, so we have to check [hist_ptr+occ]. |
| 8885 | */ |
| 8886 | hist_ptr += occ; |
| 8887 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 8888 | hist_ptr -= MAX_HDR_HISTORY; |
| 8889 | *vptr = ptr_hist[hist_ptr]; |
| 8890 | *vlen = len_hist[hist_ptr]; |
| 8891 | return 1; |
| 8892 | } |
| 8893 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8894 | /* |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 8895 | * Print a debug line with a header. Always stop at the first CR or LF char, |
| 8896 | * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an |
| 8897 | * arrow is printed after the line which contains the pointer. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8898 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8899 | void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8900 | { |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 8901 | struct session *sess = strm_sess(s); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8902 | int max; |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 8903 | |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 8904 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 8905 | dir, |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 8906 | objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->t.sock.fd : -1, |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 8907 | objt_conn(s->si[1].end) ? (unsigned short)objt_conn(s->si[1].end)->t.sock.fd : -1); |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 8908 | |
| 8909 | for (max = 0; start + max < end; max++) |
| 8910 | if (start[max] == '\r' || start[max] == '\n') |
| 8911 | break; |
| 8912 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8913 | UBOUND(max, trash.size - trash.len - 3); |
| 8914 | trash.len += strlcpy2(trash.str + trash.len, start, max + 1); |
| 8915 | trash.str[trash.len++] = '\n'; |
Willy Tarreau | 89efaed | 2013-12-13 15:14:55 +0100 | [diff] [blame] | 8916 | shut_your_big_mouth_gcc(write(1, trash.str, trash.len)); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8917 | } |
| 8918 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8919 | |
| 8920 | /* Allocate a new HTTP transaction for stream <s> unless there is one already. |
| 8921 | * The hdr_idx is allocated as well. In case of allocation failure, everything |
| 8922 | * allocated is freed and NULL is returned. Otherwise the new transaction is |
| 8923 | * assigned to the stream and returned. |
| 8924 | */ |
| 8925 | struct http_txn *http_alloc_txn(struct stream *s) |
| 8926 | { |
| 8927 | struct http_txn *txn = s->txn; |
| 8928 | |
| 8929 | if (txn) |
| 8930 | return txn; |
| 8931 | |
| 8932 | txn = pool_alloc2(pool2_http_txn); |
| 8933 | if (!txn) |
| 8934 | return txn; |
| 8935 | |
| 8936 | txn->hdr_idx.size = global.tune.max_http_hdr; |
| 8937 | txn->hdr_idx.v = pool_alloc2(pool2_hdr_idx); |
| 8938 | if (!txn->hdr_idx.v) { |
| 8939 | pool_free2(pool2_http_txn, txn); |
| 8940 | return NULL; |
| 8941 | } |
| 8942 | |
| 8943 | s->txn = txn; |
| 8944 | return txn; |
| 8945 | } |
| 8946 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8947 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8948 | * Initialize a new HTTP transaction for stream <s>. It is assumed that all |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8949 | * the required fields are properly allocated and that we only need to (re)init |
| 8950 | * them. This should be used before processing any new request. |
| 8951 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8952 | void http_init_txn(struct stream *s) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8953 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8954 | struct http_txn *txn = s->txn; |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 8955 | struct proxy *fe = strm_fe(s); |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8956 | |
| 8957 | txn->flags = 0; |
| 8958 | txn->status = -1; |
| 8959 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 8960 | txn->cookie_first_date = 0; |
| 8961 | txn->cookie_last_date = 0; |
| 8962 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8963 | txn->sessid = NULL; |
| 8964 | txn->srv_cookie = NULL; |
| 8965 | txn->cli_cookie = NULL; |
| 8966 | txn->uri = NULL; |
| 8967 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 8968 | txn->req.flags = 0; |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 8969 | txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */ |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 8970 | txn->req.next = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 8971 | txn->rsp.flags = 0; |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 8972 | txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */ |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 8973 | txn->rsp.next = 0; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 8974 | txn->req.chunk_len = 0LL; |
| 8975 | txn->req.body_len = 0LL; |
| 8976 | txn->rsp.chunk_len = 0LL; |
| 8977 | txn->rsp.body_len = 0LL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8978 | txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */ |
| 8979 | txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 8980 | txn->req.chn = &s->req; |
| 8981 | txn->rsp.chn = &s->res; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8982 | |
| 8983 | txn->auth.method = HTTP_AUTH_UNKNOWN; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8984 | |
| 8985 | txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */ |
| 8986 | if (fe->options2 & PR_O2_REQBUG_OK) |
| 8987 | txn->req.err_pos = -1; /* let buggy requests pass */ |
| 8988 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8989 | if (txn->hdr_idx.v) |
| 8990 | hdr_idx_init(&txn->hdr_idx); |
| 8991 | } |
| 8992 | |
| 8993 | /* to be used at the end of a transaction */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8994 | void http_end_txn(struct stream *s) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8995 | { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 8996 | struct http_txn *txn = s->txn; |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 8997 | struct proxy *fe = strm_fe(s); |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8998 | |
Willy Tarreau | 7519560 | 2014-03-11 15:48:55 +0100 | [diff] [blame] | 8999 | /* release any possible compression context */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 9000 | if (s->flags & SF_COMP_READY) |
Willy Tarreau | 7519560 | 2014-03-11 15:48:55 +0100 | [diff] [blame] | 9001 | s->comp_algo->end(&s->comp_ctx); |
| 9002 | s->comp_algo = NULL; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 9003 | s->flags &= ~SF_COMP_READY; |
Willy Tarreau | 7519560 | 2014-03-11 15:48:55 +0100 | [diff] [blame] | 9004 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9005 | /* these ones will have been dynamically allocated */ |
| 9006 | pool_free2(pool2_requri, txn->uri); |
| 9007 | pool_free2(pool2_capture, txn->cli_cookie); |
| 9008 | pool_free2(pool2_capture, txn->srv_cookie); |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 9009 | pool_free2(apools.sessid, txn->sessid); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 9010 | pool_free2(pool2_uniqueid, s->unique_id); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9011 | |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 9012 | s->unique_id = NULL; |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 9013 | txn->sessid = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9014 | txn->uri = NULL; |
| 9015 | txn->srv_cookie = NULL; |
| 9016 | txn->cli_cookie = NULL; |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 9017 | |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 9018 | if (s->req_cap) { |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 9019 | struct cap_hdr *h; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 9020 | for (h = fe->req_cap; h; h = h->next) |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 9021 | pool_free2(h->pool, s->req_cap[h->index]); |
| 9022 | memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *)); |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 9023 | } |
| 9024 | |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 9025 | if (s->res_cap) { |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 9026 | struct cap_hdr *h; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 9027 | for (h = fe->rsp_cap; h; h = h->next) |
Willy Tarreau | cb7dd01 | 2015-04-03 22:16:32 +0200 | [diff] [blame] | 9028 | pool_free2(h->pool, s->res_cap[h->index]); |
| 9029 | memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *)); |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 9030 | } |
| 9031 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9032 | } |
| 9033 | |
| 9034 | /* to be used at the end of a transaction to prepare a new one */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 9035 | void http_reset_txn(struct stream *s) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9036 | { |
| 9037 | http_end_txn(s); |
| 9038 | http_init_txn(s); |
| 9039 | |
Thierry FOURNIER | bc4c1ac | 2015-02-25 13:36:14 +0100 | [diff] [blame] | 9040 | /* reinitialise the current rule list pointer to NULL. We are sure that |
| 9041 | * any rulelist match the NULL pointer. |
| 9042 | */ |
| 9043 | s->current_rule_list = NULL; |
| 9044 | |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 9045 | s->be = strm_fe(s); |
| 9046 | s->logs.logwait = strm_fe(s)->to_log; |
Willy Tarreau | abcd514 | 2013-06-11 17:18:02 +0200 | [diff] [blame] | 9047 | s->logs.level = 0; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 9048 | stream_del_srv_conn(s); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 9049 | s->target = NULL; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 9050 | /* re-init store persistence */ |
| 9051 | s->store_count = 0; |
Willy Tarreau | 1f0da24 | 2014-01-25 11:01:50 +0100 | [diff] [blame] | 9052 | s->uniq_id = global.req_count++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 9053 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9054 | s->pend_pos = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9055 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9056 | s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */ |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9057 | |
Willy Tarreau | 739cfba | 2010-01-25 23:11:14 +0100 | [diff] [blame] | 9058 | /* We must trim any excess data from the response buffer, because we |
| 9059 | * may have blocked an invalid response from a server that we don't |
| 9060 | * want to accidentely forward once we disable the analysers, nor do |
| 9061 | * we want those data to come along with next response. A typical |
| 9062 | * example of such data would be from a buggy server responding to |
| 9063 | * a HEAD with some data, or sending more than the advertised |
| 9064 | * content-length. |
| 9065 | */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9066 | if (unlikely(s->res.buf->i)) |
| 9067 | s->res.buf->i = 0; |
Willy Tarreau | 739cfba | 2010-01-25 23:11:14 +0100 | [diff] [blame] | 9068 | |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 9069 | s->req.rto = strm_fe(s)->timeout.client; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9070 | s->req.wto = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9071 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9072 | s->res.rto = TICK_ETERNITY; |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 9073 | s->res.wto = strm_fe(s)->timeout.client; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9074 | |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9075 | s->req.rex = TICK_ETERNITY; |
| 9076 | s->req.wex = TICK_ETERNITY; |
| 9077 | s->req.analyse_exp = TICK_ETERNITY; |
| 9078 | s->res.rex = TICK_ETERNITY; |
| 9079 | s->res.wex = TICK_ETERNITY; |
| 9080 | s->res.analyse_exp = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 9081 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 9082 | |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9083 | void free_http_res_rules(struct list *r) |
| 9084 | { |
| 9085 | struct http_res_rule *tr, *pr; |
| 9086 | |
| 9087 | list_for_each_entry_safe(pr, tr, r, list) { |
| 9088 | LIST_DEL(&pr->list); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9089 | regex_free(&pr->arg.hdr_add.re); |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9090 | free(pr); |
| 9091 | } |
| 9092 | } |
| 9093 | |
| 9094 | void free_http_req_rules(struct list *r) |
| 9095 | { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9096 | struct http_req_rule *tr, *pr; |
| 9097 | |
| 9098 | list_for_each_entry_safe(pr, tr, r, list) { |
| 9099 | LIST_DEL(&pr->list); |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9100 | if (pr->action == HTTP_REQ_ACT_AUTH) |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 9101 | free(pr->arg.auth.realm); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9102 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9103 | regex_free(&pr->arg.hdr_add.re); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9104 | free(pr); |
| 9105 | } |
| 9106 | } |
| 9107 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9108 | /* parse an "http-request" rule */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9109 | struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy) |
| 9110 | { |
| 9111 | struct http_req_rule *rule; |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 9112 | struct http_req_action_kw *custom = NULL; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9113 | int cur_arg; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9114 | char *error; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9115 | |
| 9116 | rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule)); |
| 9117 | if (!rule) { |
| 9118 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9119 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9120 | } |
| 9121 | |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 9122 | rule->deny_status = HTTP_ERR_403; |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 9123 | if (!strcmp(args[0], "allow")) { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9124 | rule->action = HTTP_REQ_ACT_ALLOW; |
| 9125 | cur_arg = 1; |
Willy Tarreau | 5bd6759 | 2014-04-28 22:00:46 +0200 | [diff] [blame] | 9126 | } else if (!strcmp(args[0], "deny") || !strcmp(args[0], "block")) { |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 9127 | int code; |
| 9128 | int hc; |
| 9129 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9130 | rule->action = HTTP_REQ_ACT_DENY; |
| 9131 | cur_arg = 1; |
CJ Ess | 108b1dd | 2015-04-07 12:03:37 -0400 | [diff] [blame] | 9132 | if (strcmp(args[cur_arg], "deny_status") == 0) { |
| 9133 | cur_arg++; |
| 9134 | if (!args[cur_arg]) { |
| 9135 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing status code.\n", |
| 9136 | file, linenum, proxy_type_str(proxy), proxy->id, args[0]); |
| 9137 | goto out_err; |
| 9138 | } |
| 9139 | |
| 9140 | code = atol(args[cur_arg]); |
| 9141 | cur_arg++; |
| 9142 | for (hc = 0; hc < HTTP_ERR_SIZE; hc++) { |
| 9143 | if (http_err_codes[hc] == code) { |
| 9144 | rule->deny_status = hc; |
| 9145 | break; |
| 9146 | } |
| 9147 | } |
| 9148 | |
| 9149 | if (hc >= HTTP_ERR_SIZE) { |
| 9150 | Warning("parsing [%s:%d] : status code %d not handled, using default code 403.\n", |
| 9151 | file, linenum, code); |
| 9152 | } |
| 9153 | } |
Willy Tarreau | ccbcc37 | 2012-12-27 12:37:57 +0100 | [diff] [blame] | 9154 | } else if (!strcmp(args[0], "tarpit")) { |
| 9155 | rule->action = HTTP_REQ_ACT_TARPIT; |
| 9156 | cur_arg = 1; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9157 | } else if (!strcmp(args[0], "auth")) { |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9158 | rule->action = HTTP_REQ_ACT_AUTH; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9159 | cur_arg = 1; |
| 9160 | |
| 9161 | while(*args[cur_arg]) { |
| 9162 | if (!strcmp(args[cur_arg], "realm")) { |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 9163 | rule->arg.auth.realm = strdup(args[cur_arg + 1]); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9164 | cur_arg+=2; |
| 9165 | continue; |
| 9166 | } else |
| 9167 | break; |
| 9168 | } |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 9169 | } else if (!strcmp(args[0], "set-nice")) { |
| 9170 | rule->action = HTTP_REQ_ACT_SET_NICE; |
| 9171 | cur_arg = 1; |
| 9172 | |
| 9173 | if (!*args[cur_arg] || |
| 9174 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9175 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n", |
| 9176 | file, linenum, args[0]); |
| 9177 | goto out_err; |
| 9178 | } |
| 9179 | rule->arg.nice = atoi(args[cur_arg]); |
| 9180 | if (rule->arg.nice < -1024) |
| 9181 | rule->arg.nice = -1024; |
| 9182 | else if (rule->arg.nice > 1024) |
| 9183 | rule->arg.nice = 1024; |
| 9184 | cur_arg++; |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 9185 | } else if (!strcmp(args[0], "set-tos")) { |
| 9186 | #ifdef IP_TOS |
| 9187 | char *err; |
| 9188 | rule->action = HTTP_REQ_ACT_SET_TOS; |
| 9189 | cur_arg = 1; |
| 9190 | |
| 9191 | if (!*args[cur_arg] || |
| 9192 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9193 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n", |
| 9194 | file, linenum, args[0]); |
| 9195 | goto out_err; |
| 9196 | } |
| 9197 | |
| 9198 | rule->arg.tos = strtol(args[cur_arg], &err, 0); |
| 9199 | if (err && *err != '\0') { |
| 9200 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n", |
| 9201 | file, linenum, err, args[0]); |
| 9202 | goto out_err; |
| 9203 | } |
| 9204 | cur_arg++; |
| 9205 | #else |
| 9206 | Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]); |
| 9207 | goto out_err; |
| 9208 | #endif |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 9209 | } else if (!strcmp(args[0], "set-mark")) { |
| 9210 | #ifdef SO_MARK |
| 9211 | char *err; |
| 9212 | rule->action = HTTP_REQ_ACT_SET_MARK; |
| 9213 | cur_arg = 1; |
| 9214 | |
| 9215 | if (!*args[cur_arg] || |
| 9216 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9217 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n", |
| 9218 | file, linenum, args[0]); |
| 9219 | goto out_err; |
| 9220 | } |
| 9221 | |
| 9222 | rule->arg.mark = strtoul(args[cur_arg], &err, 0); |
| 9223 | if (err && *err != '\0') { |
| 9224 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n", |
| 9225 | file, linenum, err, args[0]); |
| 9226 | goto out_err; |
| 9227 | } |
| 9228 | cur_arg++; |
| 9229 | global.last_checks |= LSTCHK_NETADM; |
| 9230 | #else |
| 9231 | Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]); |
| 9232 | goto out_err; |
| 9233 | #endif |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 9234 | } else if (!strcmp(args[0], "set-log-level")) { |
| 9235 | rule->action = HTTP_REQ_ACT_SET_LOGL; |
| 9236 | cur_arg = 1; |
| 9237 | |
| 9238 | if (!*args[cur_arg] || |
| 9239 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9240 | bad_log_level: |
| 9241 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n", |
| 9242 | file, linenum, args[0]); |
| 9243 | goto out_err; |
| 9244 | } |
| 9245 | if (strcmp(args[cur_arg], "silent") == 0) |
| 9246 | rule->arg.loglevel = -1; |
| 9247 | else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0) |
| 9248 | goto bad_log_level; |
| 9249 | cur_arg++; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9250 | } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) { |
| 9251 | rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR; |
| 9252 | cur_arg = 1; |
| 9253 | |
Willy Tarreau | 8d1c516 | 2013-04-03 14:13:58 +0200 | [diff] [blame] | 9254 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 9255 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9256 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n", |
| 9257 | file, linenum, args[0]); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9258 | goto out_err; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9259 | } |
| 9260 | |
| 9261 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9262 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9263 | LIST_INIT(&rule->arg.hdr_add.fmt); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 9264 | |
Thierry FOURNIER | 1c0054f | 2013-11-20 15:09:52 +0100 | [diff] [blame] | 9265 | proxy->conf.args.ctx = ARGC_HRQ; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 9266 | parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 9267 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9268 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 9269 | free(proxy->conf.lfs_file); |
| 9270 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9271 | proxy->conf.lfs_line = proxy->conf.args.line; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 9272 | cur_arg += 2; |
Willy Tarreau | b854392 | 2014-06-17 18:58:26 +0200 | [diff] [blame] | 9273 | } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) { |
| 9274 | rule->action = args[0][8] == 'h' ? HTTP_REQ_ACT_REPLACE_HDR : HTTP_REQ_ACT_REPLACE_VAL; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9275 | cur_arg = 1; |
| 9276 | |
| 9277 | if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] || |
Baptiste Assmann | 92df370 | 2014-06-24 11:10:00 +0200 | [diff] [blame] | 9278 | (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) { |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9279 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 3 arguments.\n", |
| 9280 | file, linenum, args[0]); |
| 9281 | goto out_err; |
| 9282 | } |
| 9283 | |
| 9284 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9285 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9286 | LIST_INIT(&rule->arg.hdr_add.fmt); |
| 9287 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9288 | error = NULL; |
| 9289 | if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) { |
| 9290 | Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum, |
| 9291 | args[cur_arg + 1], error); |
| 9292 | free(error); |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9293 | goto out_err; |
| 9294 | } |
| 9295 | |
| 9296 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9297 | parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP, |
| 9298 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9299 | file, linenum); |
| 9300 | |
| 9301 | free(proxy->conf.lfs_file); |
| 9302 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9303 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9304 | cur_arg += 3; |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 9305 | } else if (strcmp(args[0], "del-header") == 0) { |
| 9306 | rule->action = HTTP_REQ_ACT_DEL_HDR; |
| 9307 | cur_arg = 1; |
| 9308 | |
| 9309 | if (!*args[cur_arg] || |
| 9310 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9311 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n", |
| 9312 | file, linenum, args[0]); |
| 9313 | goto out_err; |
| 9314 | } |
| 9315 | |
| 9316 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9317 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9318 | |
| 9319 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9320 | free(proxy->conf.lfs_file); |
| 9321 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9322 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9323 | cur_arg += 1; |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 9324 | } else if (strncmp(args[0], "track-sc", 8) == 0 && |
| 9325 | args[0][9] == '\0' && args[0][8] >= '0' && |
Willy Tarreau | e1cfc1f | 2014-10-17 11:53:05 +0200 | [diff] [blame] | 9326 | args[0][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */ |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 9327 | struct sample_expr *expr; |
| 9328 | unsigned int where; |
| 9329 | char *err = NULL; |
| 9330 | |
| 9331 | cur_arg = 1; |
| 9332 | proxy->conf.args.ctx = ARGC_TRK; |
| 9333 | |
| 9334 | expr = sample_parse_expr((char **)args, &cur_arg, file, linenum, &err, &proxy->conf.args); |
| 9335 | if (!expr) { |
| 9336 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n", |
| 9337 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], err); |
| 9338 | free(err); |
| 9339 | goto out_err; |
| 9340 | } |
| 9341 | |
| 9342 | where = 0; |
| 9343 | if (proxy->cap & PR_CAP_FE) |
| 9344 | where |= SMP_VAL_FE_HRQ_HDR; |
| 9345 | if (proxy->cap & PR_CAP_BE) |
| 9346 | where |= SMP_VAL_BE_HRQ_HDR; |
| 9347 | |
| 9348 | if (!(expr->fetch->val & where)) { |
| 9349 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule :" |
| 9350 | " fetch method '%s' extracts information from '%s', none of which is available here.\n", |
| 9351 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], |
| 9352 | args[cur_arg-1], sample_src_names(expr->fetch->use)); |
| 9353 | free(expr); |
| 9354 | goto out_err; |
| 9355 | } |
| 9356 | |
| 9357 | if (strcmp(args[cur_arg], "table") == 0) { |
| 9358 | cur_arg++; |
| 9359 | if (!args[cur_arg]) { |
| 9360 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : missing table name.\n", |
| 9361 | file, linenum, proxy_type_str(proxy), proxy->id, args[0]); |
| 9362 | free(expr); |
| 9363 | goto out_err; |
| 9364 | } |
| 9365 | /* we copy the table name for now, it will be resolved later */ |
| 9366 | rule->act_prm.trk_ctr.table.n = strdup(args[cur_arg]); |
| 9367 | cur_arg++; |
| 9368 | } |
| 9369 | rule->act_prm.trk_ctr.expr = expr; |
| 9370 | rule->action = HTTP_REQ_ACT_TRK_SC0 + args[0][8] - '0'; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9371 | } else if (strcmp(args[0], "redirect") == 0) { |
| 9372 | struct redirect_rule *redir; |
Willy Tarreau | 6d4890c | 2013-11-18 18:04:25 +0100 | [diff] [blame] | 9373 | char *errmsg = NULL; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9374 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 9375 | if ((redir = http_parse_redirect_rule(file, linenum, proxy, (const char **)args + 1, &errmsg, 1)) == NULL) { |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9376 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n", |
| 9377 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg); |
| 9378 | goto out_err; |
| 9379 | } |
| 9380 | |
| 9381 | /* this redirect rule might already contain a parsed condition which |
| 9382 | * we'll pass to the http-request rule. |
| 9383 | */ |
| 9384 | rule->action = HTTP_REQ_ACT_REDIR; |
| 9385 | rule->arg.redir = redir; |
| 9386 | rule->cond = redir->cond; |
| 9387 | redir->cond = NULL; |
| 9388 | cur_arg = 2; |
| 9389 | return rule; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9390 | } else if (strncmp(args[0], "add-acl", 7) == 0) { |
| 9391 | /* http-request add-acl(<reference (acl name)>) <key pattern> */ |
| 9392 | rule->action = HTTP_REQ_ACT_ADD_ACL; |
| 9393 | /* |
| 9394 | * '+ 8' for 'add-acl(' |
| 9395 | * '- 9' for 'add-acl(' + trailing ')' |
| 9396 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9397 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9398 | |
| 9399 | cur_arg = 1; |
| 9400 | |
| 9401 | if (!*args[cur_arg] || |
| 9402 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9403 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n", |
| 9404 | file, linenum, args[0]); |
| 9405 | goto out_err; |
| 9406 | } |
| 9407 | |
| 9408 | LIST_INIT(&rule->arg.map.key); |
| 9409 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9410 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9411 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9412 | file, linenum); |
| 9413 | free(proxy->conf.lfs_file); |
| 9414 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9415 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9416 | cur_arg += 1; |
| 9417 | } else if (strncmp(args[0], "del-acl", 7) == 0) { |
| 9418 | /* http-request del-acl(<reference (acl name)>) <key pattern> */ |
| 9419 | rule->action = HTTP_REQ_ACT_DEL_ACL; |
| 9420 | /* |
| 9421 | * '+ 8' for 'del-acl(' |
| 9422 | * '- 9' for 'del-acl(' + trailing ')' |
| 9423 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9424 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9425 | |
| 9426 | cur_arg = 1; |
| 9427 | |
| 9428 | if (!*args[cur_arg] || |
| 9429 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9430 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n", |
| 9431 | file, linenum, args[0]); |
| 9432 | goto out_err; |
| 9433 | } |
| 9434 | |
| 9435 | LIST_INIT(&rule->arg.map.key); |
| 9436 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9437 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9438 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9439 | file, linenum); |
| 9440 | free(proxy->conf.lfs_file); |
| 9441 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9442 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9443 | cur_arg += 1; |
| 9444 | } else if (strncmp(args[0], "del-map", 7) == 0) { |
| 9445 | /* http-request del-map(<reference (map name)>) <key pattern> */ |
| 9446 | rule->action = HTTP_REQ_ACT_DEL_MAP; |
| 9447 | /* |
| 9448 | * '+ 8' for 'del-map(' |
| 9449 | * '- 9' for 'del-map(' + trailing ')' |
| 9450 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9451 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9452 | |
| 9453 | cur_arg = 1; |
| 9454 | |
| 9455 | if (!*args[cur_arg] || |
| 9456 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9457 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument.\n", |
| 9458 | file, linenum, args[0]); |
| 9459 | goto out_err; |
| 9460 | } |
| 9461 | |
| 9462 | LIST_INIT(&rule->arg.map.key); |
| 9463 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9464 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9465 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9466 | file, linenum); |
| 9467 | free(proxy->conf.lfs_file); |
| 9468 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9469 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9470 | cur_arg += 1; |
| 9471 | } else if (strncmp(args[0], "set-map", 7) == 0) { |
| 9472 | /* http-request set-map(<reference (map name)>) <key pattern> <value pattern> */ |
| 9473 | rule->action = HTTP_REQ_ACT_SET_MAP; |
| 9474 | /* |
| 9475 | * '+ 8' for 'set-map(' |
| 9476 | * '- 9' for 'set-map(' + trailing ')' |
| 9477 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9478 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9479 | |
| 9480 | cur_arg = 1; |
| 9481 | |
| 9482 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 9483 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
| 9484 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n", |
| 9485 | file, linenum, args[0]); |
| 9486 | goto out_err; |
| 9487 | } |
| 9488 | |
| 9489 | LIST_INIT(&rule->arg.map.key); |
| 9490 | LIST_INIT(&rule->arg.map.value); |
| 9491 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9492 | |
| 9493 | /* key pattern */ |
| 9494 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9495 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9496 | file, linenum); |
| 9497 | |
| 9498 | /* value pattern */ |
| 9499 | parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP, |
| 9500 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 9501 | file, linenum); |
| 9502 | free(proxy->conf.lfs_file); |
| 9503 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9504 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9505 | |
| 9506 | cur_arg += 2; |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 9507 | } else if (((custom = action_http_req_custom(args[0])) != NULL)) { |
| 9508 | char *errmsg = NULL; |
| 9509 | cur_arg = 1; |
| 9510 | /* try in the module list */ |
| 9511 | if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) { |
| 9512 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n", |
| 9513 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg); |
| 9514 | free(errmsg); |
| 9515 | goto out_err; |
| 9516 | } |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9517 | } else { |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9518 | Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'add-acl', 'del-acl', 'del-map', 'set-map', but got '%s'%s.\n", |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 9519 | file, linenum, args[0], *args[0] ? "" : " (missing argument)"); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9520 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9521 | } |
| 9522 | |
| 9523 | if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
| 9524 | struct acl_cond *cond; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 9525 | char *errmsg = NULL; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9526 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 9527 | if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) { |
| 9528 | Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n", |
| 9529 | file, linenum, args[0], errmsg); |
| 9530 | free(errmsg); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9531 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9532 | } |
| 9533 | rule->cond = cond; |
| 9534 | } |
| 9535 | else if (*args[cur_arg]) { |
| 9536 | Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or" |
| 9537 | " either 'if' or 'unless' followed by a condition but found '%s'.\n", |
| 9538 | file, linenum, args[0], args[cur_arg]); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9539 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9540 | } |
| 9541 | |
| 9542 | return rule; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 9543 | out_err: |
| 9544 | free(rule); |
| 9545 | return NULL; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 9546 | } |
| 9547 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9548 | /* parse an "http-respose" rule */ |
| 9549 | struct http_res_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy) |
| 9550 | { |
| 9551 | struct http_res_rule *rule; |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 9552 | struct http_res_action_kw *custom = NULL; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9553 | int cur_arg; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9554 | char *error; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9555 | |
| 9556 | rule = calloc(1, sizeof(*rule)); |
| 9557 | if (!rule) { |
| 9558 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 9559 | goto out_err; |
| 9560 | } |
| 9561 | |
| 9562 | if (!strcmp(args[0], "allow")) { |
| 9563 | rule->action = HTTP_RES_ACT_ALLOW; |
| 9564 | cur_arg = 1; |
| 9565 | } else if (!strcmp(args[0], "deny")) { |
| 9566 | rule->action = HTTP_RES_ACT_DENY; |
| 9567 | cur_arg = 1; |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 9568 | } else if (!strcmp(args[0], "set-nice")) { |
| 9569 | rule->action = HTTP_RES_ACT_SET_NICE; |
| 9570 | cur_arg = 1; |
| 9571 | |
| 9572 | if (!*args[cur_arg] || |
| 9573 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9574 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n", |
| 9575 | file, linenum, args[0]); |
| 9576 | goto out_err; |
| 9577 | } |
| 9578 | rule->arg.nice = atoi(args[cur_arg]); |
| 9579 | if (rule->arg.nice < -1024) |
| 9580 | rule->arg.nice = -1024; |
| 9581 | else if (rule->arg.nice > 1024) |
| 9582 | rule->arg.nice = 1024; |
| 9583 | cur_arg++; |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 9584 | } else if (!strcmp(args[0], "set-tos")) { |
| 9585 | #ifdef IP_TOS |
| 9586 | char *err; |
| 9587 | rule->action = HTTP_RES_ACT_SET_TOS; |
| 9588 | cur_arg = 1; |
| 9589 | |
| 9590 | if (!*args[cur_arg] || |
| 9591 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9592 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n", |
| 9593 | file, linenum, args[0]); |
| 9594 | goto out_err; |
| 9595 | } |
| 9596 | |
| 9597 | rule->arg.tos = strtol(args[cur_arg], &err, 0); |
| 9598 | if (err && *err != '\0') { |
| 9599 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n", |
| 9600 | file, linenum, err, args[0]); |
| 9601 | goto out_err; |
| 9602 | } |
| 9603 | cur_arg++; |
| 9604 | #else |
| 9605 | Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]); |
| 9606 | goto out_err; |
| 9607 | #endif |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 9608 | } else if (!strcmp(args[0], "set-mark")) { |
| 9609 | #ifdef SO_MARK |
| 9610 | char *err; |
| 9611 | rule->action = HTTP_RES_ACT_SET_MARK; |
| 9612 | cur_arg = 1; |
| 9613 | |
| 9614 | if (!*args[cur_arg] || |
| 9615 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9616 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n", |
| 9617 | file, linenum, args[0]); |
| 9618 | goto out_err; |
| 9619 | } |
| 9620 | |
| 9621 | rule->arg.mark = strtoul(args[cur_arg], &err, 0); |
| 9622 | if (err && *err != '\0') { |
| 9623 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n", |
| 9624 | file, linenum, err, args[0]); |
| 9625 | goto out_err; |
| 9626 | } |
| 9627 | cur_arg++; |
| 9628 | global.last_checks |= LSTCHK_NETADM; |
| 9629 | #else |
| 9630 | Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]); |
| 9631 | goto out_err; |
| 9632 | #endif |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 9633 | } else if (!strcmp(args[0], "set-log-level")) { |
| 9634 | rule->action = HTTP_RES_ACT_SET_LOGL; |
| 9635 | cur_arg = 1; |
| 9636 | |
| 9637 | if (!*args[cur_arg] || |
| 9638 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 9639 | bad_log_level: |
| 9640 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n", |
| 9641 | file, linenum, args[0]); |
| 9642 | goto out_err; |
| 9643 | } |
| 9644 | if (strcmp(args[cur_arg], "silent") == 0) |
| 9645 | rule->arg.loglevel = -1; |
| 9646 | else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0) |
| 9647 | goto bad_log_level; |
| 9648 | cur_arg++; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9649 | } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) { |
| 9650 | rule->action = *args[0] == 'a' ? HTTP_RES_ACT_ADD_HDR : HTTP_RES_ACT_SET_HDR; |
| 9651 | cur_arg = 1; |
| 9652 | |
| 9653 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 9654 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
| 9655 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n", |
| 9656 | file, linenum, args[0]); |
| 9657 | goto out_err; |
| 9658 | } |
| 9659 | |
| 9660 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9661 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9662 | LIST_INIT(&rule->arg.hdr_add.fmt); |
| 9663 | |
Thierry FOURNIER | 1c0054f | 2013-11-20 15:09:52 +0100 | [diff] [blame] | 9664 | proxy->conf.args.ctx = ARGC_HRS; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 9665 | parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 9666 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9667 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 9668 | free(proxy->conf.lfs_file); |
| 9669 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9670 | proxy->conf.lfs_line = proxy->conf.args.line; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9671 | cur_arg += 2; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9672 | } else if (strcmp(args[0], "replace-header") == 0 || strcmp(args[0], "replace-value") == 0) { |
Willy Tarreau | b854392 | 2014-06-17 18:58:26 +0200 | [diff] [blame] | 9673 | rule->action = args[0][8] == 'h' ? HTTP_RES_ACT_REPLACE_HDR : HTTP_RES_ACT_REPLACE_VAL; |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9674 | cur_arg = 1; |
| 9675 | |
| 9676 | if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2] || |
Baptiste Assmann | 12cb00b | 2014-08-08 17:29:06 +0200 | [diff] [blame] | 9677 | (*args[cur_arg+3] && strcmp(args[cur_arg+3], "if") != 0 && strcmp(args[cur_arg+3], "unless") != 0)) { |
| 9678 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 3 arguments.\n", |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9679 | file, linenum, args[0]); |
| 9680 | goto out_err; |
| 9681 | } |
| 9682 | |
| 9683 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9684 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9685 | LIST_INIT(&rule->arg.hdr_add.fmt); |
| 9686 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 9687 | error = NULL; |
| 9688 | if (!regex_comp(args[cur_arg + 1], &rule->arg.hdr_add.re, 1, 1, &error)) { |
| 9689 | Alert("parsing [%s:%d] : '%s' : %s.\n", file, linenum, |
| 9690 | args[cur_arg + 1], error); |
| 9691 | free(error); |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9692 | goto out_err; |
| 9693 | } |
| 9694 | |
| 9695 | proxy->conf.args.ctx = ARGC_HRQ; |
| 9696 | parse_logformat_string(args[cur_arg + 2], proxy, &rule->arg.hdr_add.fmt, LOG_OPT_HTTP, |
| 9697 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9698 | file, linenum); |
| 9699 | |
| 9700 | free(proxy->conf.lfs_file); |
| 9701 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9702 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9703 | cur_arg += 3; |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 9704 | } else if (strcmp(args[0], "del-header") == 0) { |
| 9705 | rule->action = HTTP_RES_ACT_DEL_HDR; |
| 9706 | cur_arg = 1; |
| 9707 | |
| 9708 | if (!*args[cur_arg] || |
| 9709 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9710 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n", |
| 9711 | file, linenum, args[0]); |
| 9712 | goto out_err; |
| 9713 | } |
| 9714 | |
| 9715 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 9716 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 9717 | |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9718 | proxy->conf.args.ctx = ARGC_HRS; |
| 9719 | free(proxy->conf.lfs_file); |
| 9720 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9721 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9722 | cur_arg += 1; |
| 9723 | } else if (strncmp(args[0], "add-acl", 7) == 0) { |
| 9724 | /* http-request add-acl(<reference (acl name)>) <key pattern> */ |
| 9725 | rule->action = HTTP_RES_ACT_ADD_ACL; |
| 9726 | /* |
| 9727 | * '+ 8' for 'add-acl(' |
| 9728 | * '- 9' for 'add-acl(' + trailing ')' |
| 9729 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9730 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9731 | |
| 9732 | cur_arg = 1; |
| 9733 | |
| 9734 | if (!*args[cur_arg] || |
| 9735 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9736 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n", |
| 9737 | file, linenum, args[0]); |
| 9738 | goto out_err; |
| 9739 | } |
| 9740 | |
| 9741 | LIST_INIT(&rule->arg.map.key); |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 9742 | proxy->conf.args.ctx = ARGC_HRS; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9743 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9744 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9745 | file, linenum); |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 9746 | free(proxy->conf.lfs_file); |
| 9747 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9748 | proxy->conf.lfs_line = proxy->conf.args.line; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9749 | |
Thierry FOURNIER | dad3d1d | 2014-04-22 18:07:25 +0200 | [diff] [blame] | 9750 | cur_arg += 1; |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9751 | } else if (strncmp(args[0], "del-acl", 7) == 0) { |
| 9752 | /* http-response del-acl(<reference (acl name)>) <key pattern> */ |
| 9753 | rule->action = HTTP_RES_ACT_DEL_ACL; |
| 9754 | /* |
| 9755 | * '+ 8' for 'del-acl(' |
| 9756 | * '- 9' for 'del-acl(' + trailing ')' |
| 9757 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9758 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9759 | |
| 9760 | cur_arg = 1; |
| 9761 | |
| 9762 | if (!*args[cur_arg] || |
| 9763 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9764 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n", |
| 9765 | file, linenum, args[0]); |
| 9766 | goto out_err; |
| 9767 | } |
| 9768 | |
| 9769 | LIST_INIT(&rule->arg.map.key); |
| 9770 | proxy->conf.args.ctx = ARGC_HRS; |
| 9771 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9772 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9773 | file, linenum); |
| 9774 | free(proxy->conf.lfs_file); |
| 9775 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9776 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9777 | cur_arg += 1; |
| 9778 | } else if (strncmp(args[0], "del-map", 7) == 0) { |
| 9779 | /* http-response del-map(<reference (map name)>) <key pattern> */ |
| 9780 | rule->action = HTTP_RES_ACT_DEL_MAP; |
| 9781 | /* |
| 9782 | * '+ 8' for 'del-map(' |
| 9783 | * '- 9' for 'del-map(' + trailing ')' |
| 9784 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9785 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9786 | |
| 9787 | cur_arg = 1; |
| 9788 | |
| 9789 | if (!*args[cur_arg] || |
| 9790 | (*args[cur_arg+1] && strcmp(args[cur_arg+1], "if") != 0 && strcmp(args[cur_arg+1], "unless") != 0)) { |
| 9791 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument.\n", |
| 9792 | file, linenum, args[0]); |
| 9793 | goto out_err; |
| 9794 | } |
| 9795 | |
| 9796 | LIST_INIT(&rule->arg.map.key); |
| 9797 | proxy->conf.args.ctx = ARGC_HRS; |
| 9798 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9799 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9800 | file, linenum); |
| 9801 | free(proxy->conf.lfs_file); |
| 9802 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9803 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9804 | cur_arg += 1; |
| 9805 | } else if (strncmp(args[0], "set-map", 7) == 0) { |
| 9806 | /* http-response set-map(<reference (map name)>) <key pattern> <value pattern> */ |
| 9807 | rule->action = HTTP_RES_ACT_SET_MAP; |
| 9808 | /* |
| 9809 | * '+ 8' for 'set-map(' |
| 9810 | * '- 9' for 'set-map(' + trailing ')' |
| 9811 | */ |
Willy Tarreau | 6c09c2c | 2014-04-25 21:38:08 +0200 | [diff] [blame] | 9812 | rule->arg.map.ref = my_strndup(args[0] + 8, strlen(args[0]) - 9); |
Baptiste Assmann | fabcbe0 | 2014-04-24 22:16:59 +0200 | [diff] [blame] | 9813 | |
| 9814 | cur_arg = 1; |
| 9815 | |
| 9816 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 9817 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
| 9818 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n", |
| 9819 | file, linenum, args[0]); |
| 9820 | goto out_err; |
| 9821 | } |
| 9822 | |
| 9823 | LIST_INIT(&rule->arg.map.key); |
| 9824 | LIST_INIT(&rule->arg.map.value); |
| 9825 | |
| 9826 | proxy->conf.args.ctx = ARGC_HRS; |
| 9827 | |
| 9828 | /* key pattern */ |
| 9829 | parse_logformat_string(args[cur_arg], proxy, &rule->arg.map.key, LOG_OPT_HTTP, |
| 9830 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9831 | file, linenum); |
| 9832 | |
| 9833 | /* value pattern */ |
| 9834 | parse_logformat_string(args[cur_arg + 1], proxy, &rule->arg.map.value, LOG_OPT_HTTP, |
| 9835 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 9836 | file, linenum); |
| 9837 | |
| 9838 | free(proxy->conf.lfs_file); |
| 9839 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 9840 | proxy->conf.lfs_line = proxy->conf.args.line; |
| 9841 | |
| 9842 | cur_arg += 2; |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 9843 | } else if (((custom = action_http_res_custom(args[0])) != NULL)) { |
| 9844 | char *errmsg = NULL; |
| 9845 | cur_arg = 1; |
| 9846 | /* try in the module list */ |
| 9847 | if (custom->parse(args, &cur_arg, proxy, rule, &errmsg) < 0) { |
| 9848 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-response %s' rule : %s.\n", |
| 9849 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg); |
| 9850 | free(errmsg); |
| 9851 | goto out_err; |
| 9852 | } |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9853 | } else { |
Sasha Pachev | 218f064 | 2014-06-16 12:05:59 -0600 | [diff] [blame] | 9854 | Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'del-header', 'set-header', 'replace-header', 'replace-value', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', 'del-acl', 'add-acl', 'del-map', 'set-map', but got '%s'%s.\n", |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 9855 | file, linenum, args[0], *args[0] ? "" : " (missing argument)"); |
| 9856 | goto out_err; |
| 9857 | } |
| 9858 | |
| 9859 | if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
| 9860 | struct acl_cond *cond; |
| 9861 | char *errmsg = NULL; |
| 9862 | |
| 9863 | if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) { |
| 9864 | Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n", |
| 9865 | file, linenum, args[0], errmsg); |
| 9866 | free(errmsg); |
| 9867 | goto out_err; |
| 9868 | } |
| 9869 | rule->cond = cond; |
| 9870 | } |
| 9871 | else if (*args[cur_arg]) { |
| 9872 | Alert("parsing [%s:%d]: 'http-response %s' expects" |
| 9873 | " either 'if' or 'unless' followed by a condition but found '%s'.\n", |
| 9874 | file, linenum, args[0], args[cur_arg]); |
| 9875 | goto out_err; |
| 9876 | } |
| 9877 | |
| 9878 | return rule; |
| 9879 | out_err: |
| 9880 | free(rule); |
| 9881 | return NULL; |
| 9882 | } |
| 9883 | |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 9884 | /* Parses a redirect rule. Returns the redirect rule on success or NULL on error, |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 9885 | * with <err> filled with the error message. If <use_fmt> is not null, builds a |
| 9886 | * dynamic log-format rule instead of a static string. |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 9887 | */ |
| 9888 | struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy, |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 9889 | const char **args, char **errmsg, int use_fmt) |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 9890 | { |
| 9891 | struct redirect_rule *rule; |
| 9892 | int cur_arg; |
| 9893 | int type = REDIRECT_TYPE_NONE; |
| 9894 | int code = 302; |
| 9895 | const char *destination = NULL; |
| 9896 | const char *cookie = NULL; |
| 9897 | int cookie_set = 0; |
| 9898 | unsigned int flags = REDIRECT_FLAG_NONE; |
| 9899 | struct acl_cond *cond = NULL; |
| 9900 | |
| 9901 | cur_arg = 0; |
| 9902 | while (*(args[cur_arg])) { |
| 9903 | if (strcmp(args[cur_arg], "location") == 0) { |
| 9904 | if (!*args[cur_arg + 1]) |
| 9905 | goto missing_arg; |
| 9906 | |
| 9907 | type = REDIRECT_TYPE_LOCATION; |
| 9908 | cur_arg++; |
| 9909 | destination = args[cur_arg]; |
| 9910 | } |
| 9911 | else if (strcmp(args[cur_arg], "prefix") == 0) { |
| 9912 | if (!*args[cur_arg + 1]) |
| 9913 | goto missing_arg; |
| 9914 | |
| 9915 | type = REDIRECT_TYPE_PREFIX; |
| 9916 | cur_arg++; |
| 9917 | destination = args[cur_arg]; |
| 9918 | } |
| 9919 | else if (strcmp(args[cur_arg], "scheme") == 0) { |
| 9920 | if (!*args[cur_arg + 1]) |
| 9921 | goto missing_arg; |
| 9922 | |
| 9923 | type = REDIRECT_TYPE_SCHEME; |
| 9924 | cur_arg++; |
| 9925 | destination = args[cur_arg]; |
| 9926 | } |
| 9927 | else if (strcmp(args[cur_arg], "set-cookie") == 0) { |
| 9928 | if (!*args[cur_arg + 1]) |
| 9929 | goto missing_arg; |
| 9930 | |
| 9931 | cur_arg++; |
| 9932 | cookie = args[cur_arg]; |
| 9933 | cookie_set = 1; |
| 9934 | } |
| 9935 | else if (strcmp(args[cur_arg], "clear-cookie") == 0) { |
| 9936 | if (!*args[cur_arg + 1]) |
| 9937 | goto missing_arg; |
| 9938 | |
| 9939 | cur_arg++; |
| 9940 | cookie = args[cur_arg]; |
| 9941 | cookie_set = 0; |
| 9942 | } |
| 9943 | else if (strcmp(args[cur_arg], "code") == 0) { |
| 9944 | if (!*args[cur_arg + 1]) |
| 9945 | goto missing_arg; |
| 9946 | |
| 9947 | cur_arg++; |
| 9948 | code = atol(args[cur_arg]); |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 9949 | if (code < 301 || code > 308 || (code > 303 && code < 307)) { |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 9950 | memprintf(errmsg, |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 9951 | "'%s': unsupported HTTP code '%s' (must be one of 301, 302, 303, 307 or 308)", |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 9952 | args[cur_arg - 1], args[cur_arg]); |
| 9953 | return NULL; |
| 9954 | } |
| 9955 | } |
| 9956 | else if (!strcmp(args[cur_arg],"drop-query")) { |
| 9957 | flags |= REDIRECT_FLAG_DROP_QS; |
| 9958 | } |
| 9959 | else if (!strcmp(args[cur_arg],"append-slash")) { |
| 9960 | flags |= REDIRECT_FLAG_APPEND_SLASH; |
| 9961 | } |
| 9962 | else if (strcmp(args[cur_arg], "if") == 0 || |
| 9963 | strcmp(args[cur_arg], "unless") == 0) { |
| 9964 | cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg); |
| 9965 | if (!cond) { |
| 9966 | memprintf(errmsg, "error in condition: %s", *errmsg); |
| 9967 | return NULL; |
| 9968 | } |
| 9969 | break; |
| 9970 | } |
| 9971 | else { |
| 9972 | memprintf(errmsg, |
| 9973 | "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')", |
| 9974 | args[cur_arg]); |
| 9975 | return NULL; |
| 9976 | } |
| 9977 | cur_arg++; |
| 9978 | } |
| 9979 | |
| 9980 | if (type == REDIRECT_TYPE_NONE) { |
| 9981 | memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')"); |
| 9982 | return NULL; |
| 9983 | } |
| 9984 | |
| 9985 | rule = (struct redirect_rule *)calloc(1, sizeof(*rule)); |
| 9986 | rule->cond = cond; |
Willy Tarreau | 60e0838 | 2013-12-03 00:48:45 +0100 | [diff] [blame] | 9987 | LIST_INIT(&rule->rdr_fmt); |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 9988 | |
| 9989 | if (!use_fmt) { |
| 9990 | /* old-style static redirect rule */ |
| 9991 | rule->rdr_str = strdup(destination); |
| 9992 | rule->rdr_len = strlen(destination); |
| 9993 | } |
| 9994 | else { |
| 9995 | /* log-format based redirect rule */ |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 9996 | |
| 9997 | /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case, |
| 9998 | * if prefix == "/", we don't want to add anything, otherwise it |
| 9999 | * makes it hard for the user to configure a self-redirection. |
| 10000 | */ |
Godbach | d972203 | 2014-12-18 15:44:58 +0800 | [diff] [blame] | 10001 | curproxy->conf.args.ctx = ARGC_RDR; |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 10002 | if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) { |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 10003 | parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 10004 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 10005 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 10006 | free(curproxy->conf.lfs_file); |
| 10007 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 10008 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 10009 | } |
| 10010 | } |
| 10011 | |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 10012 | if (cookie) { |
| 10013 | /* depending on cookie_set, either we want to set the cookie, or to clear it. |
| 10014 | * a clear consists in appending "; path=/; Max-Age=0;" at the end. |
| 10015 | */ |
| 10016 | rule->cookie_len = strlen(cookie); |
| 10017 | if (cookie_set) { |
| 10018 | rule->cookie_str = malloc(rule->cookie_len + 10); |
| 10019 | memcpy(rule->cookie_str, cookie, rule->cookie_len); |
| 10020 | memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10); |
| 10021 | rule->cookie_len += 9; |
| 10022 | } else { |
| 10023 | rule->cookie_str = malloc(rule->cookie_len + 21); |
| 10024 | memcpy(rule->cookie_str, cookie, rule->cookie_len); |
| 10025 | memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21); |
| 10026 | rule->cookie_len += 20; |
| 10027 | } |
| 10028 | } |
| 10029 | rule->type = type; |
| 10030 | rule->code = code; |
| 10031 | rule->flags = flags; |
| 10032 | LIST_INIT(&rule->list); |
| 10033 | return rule; |
| 10034 | |
| 10035 | missing_arg: |
| 10036 | memprintf(errmsg, "missing argument for '%s'", args[cur_arg]); |
| 10037 | return NULL; |
| 10038 | } |
| 10039 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10040 | /************************************************************************/ |
| 10041 | /* The code below is dedicated to ACL parsing and matching */ |
| 10042 | /************************************************************************/ |
| 10043 | |
| 10044 | |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10045 | /* This function ensures that the prerequisites for an L7 fetch are ready, |
| 10046 | * which means that a request or response is ready. If some data is missing, |
| 10047 | * a parsing attempt is made. This is useful in TCP-based ACLs which are able |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10048 | * to extract data from L7. If <req_vol> is non-null during a request prefetch, |
| 10049 | * another test is made to ensure the required information is not gone. |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10050 | * |
| 10051 | * The function returns : |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10052 | * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to |
| 10053 | * decide whether or not an HTTP message is present ; |
| 10054 | * 0 if the requested data cannot be fetched or if it is certain that |
| 10055 | * we'll never have any HTTP message there ; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10056 | * 1 if an HTTP message is ready |
| 10057 | */ |
| 10058 | static int |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10059 | smp_prefetch_http(struct proxy *px, struct stream *s, unsigned int opt, |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10060 | const struct arg *args, struct sample *smp, int req_vol) |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10061 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10062 | struct http_txn *txn; |
| 10063 | struct http_msg *msg; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10064 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 10065 | /* Note: this function may only be used from places where |
| 10066 | * http_init_txn() has already been done, and implies that <s>, |
| 10067 | * <txn>, and <hdr_idx.v> are properly set. An extra check protects |
| 10068 | * against an eventual mistake in the fetch capability matrix. |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10069 | */ |
| 10070 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10071 | if (!s) |
| 10072 | return 0; |
| 10073 | txn = s->txn; |
| 10074 | |
| 10075 | if (!txn) |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10076 | return 0; |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10077 | msg = &txn->req; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10078 | |
| 10079 | /* Check for a dependency on a request */ |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10080 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10081 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 10082 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 10083 | /* If the buffer does not leave enough free space at the end, |
| 10084 | * we must first realign it. |
| 10085 | */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 10086 | if (s->req.buf->p > s->req.buf->data && |
| 10087 | s->req.buf->i + s->req.buf->p > s->req.buf->data + s->req.buf->size - global.tune.maxrewrite) |
| 10088 | buffer_slow_realign(s->req.buf); |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 10089 | |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10090 | if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 472b1ee | 2013-10-14 22:41:30 +0200 | [diff] [blame] | 10091 | if (msg->msg_state == HTTP_MSG_ERROR) |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10092 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10093 | |
| 10094 | /* Try to decode HTTP request */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 10095 | if (likely(msg->next < s->req.buf->i)) |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10096 | http_msg_analyzer(msg, &txn->hdr_idx); |
| 10097 | |
| 10098 | /* Still no valid request ? */ |
| 10099 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 10100 | if ((msg->msg_state == HTTP_MSG_ERROR) || |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 10101 | buffer_full(s->req.buf, global.tune.maxrewrite)) { |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10102 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10103 | } |
| 10104 | /* wait for final state */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10105 | smp->flags |= SMP_F_MAY_CHANGE; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10106 | return 0; |
| 10107 | } |
| 10108 | |
| 10109 | /* OK we just got a valid HTTP request. We have some minor |
| 10110 | * preparation to perform so that further checks can rely |
| 10111 | * on HTTP tests. |
| 10112 | */ |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 10113 | |
| 10114 | /* If the request was parsed but was too large, we must absolutely |
| 10115 | * return an error so that it is not processed. At the moment this |
| 10116 | * cannot happen, but if the parsers are to change in the future, |
| 10117 | * we want this check to be maintained. |
| 10118 | */ |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 10119 | if (unlikely(s->req.buf->i + s->req.buf->p > |
| 10120 | s->req.buf->data + s->req.buf->size - global.tune.maxrewrite)) { |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 10121 | msg->msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10122 | smp->data.uint = 1; |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 10123 | return 1; |
| 10124 | } |
| 10125 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10126 | txn->meth = find_http_meth(msg->chn->buf->p, msg->sl.rq.m_l); |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10127 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 10128 | s->flags |= SF_REDIRECTABLE; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10129 | |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10130 | if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn)) |
| 10131 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10132 | } |
| 10133 | |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10134 | if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) { |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10135 | return 0; /* data might have moved and indexes changed */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10136 | } |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10137 | |
| 10138 | /* otherwise everything's ready for the request */ |
| 10139 | } |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10140 | else { |
| 10141 | /* Check for a dependency on a response */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10142 | if (txn->rsp.msg_state < HTTP_MSG_BODY) { |
| 10143 | smp->flags |= SMP_F_MAY_CHANGE; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10144 | return 0; |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10145 | } |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10146 | } |
| 10147 | |
| 10148 | /* everything's OK */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 10149 | smp->data.uint = 1; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 10150 | return 1; |
| 10151 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10152 | |
Willy Tarreau | 6c616e0 | 2014-06-25 16:56:41 +0200 | [diff] [blame] | 10153 | /* Note: these functinos *do* modify the sample. Even in case of success, at |
| 10154 | * least the type and uint value are modified. |
| 10155 | */ |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10156 | #define CHECK_HTTP_MESSAGE_FIRST() \ |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10157 | do { int r = smp_prefetch_http(px, strm, opt, args, smp, 1); if (r <= 0) return r; } while (0) |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10158 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10159 | #define CHECK_HTTP_MESSAGE_FIRST_PERM() \ |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10160 | do { int r = smp_prefetch_http(px, strm, opt, args, smp, 0); if (r <= 0) return r; } while (0) |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10161 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10162 | |
| 10163 | /* 1. Check on METHOD |
| 10164 | * We use the pre-parsed method if it is known, and store its number as an |
| 10165 | * integer. If it is unknown, we use the pointer and the length. |
| 10166 | */ |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 10167 | static int pat_parse_meth(const char *text, struct pattern *pattern, int mflags, char **err) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10168 | { |
| 10169 | int len, meth; |
| 10170 | |
Thierry FOURNIER | 580c32c | 2014-01-24 10:58:12 +0100 | [diff] [blame] | 10171 | len = strlen(text); |
| 10172 | meth = find_http_meth(text, len); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10173 | |
| 10174 | pattern->val.i = meth; |
| 10175 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | 912c119 | 2014-08-29 15:15:50 +0200 | [diff] [blame] | 10176 | pattern->ptr.str = (char *)text; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10177 | pattern->len = len; |
| 10178 | } |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 10179 | else { |
| 10180 | pattern->ptr.str = NULL; |
| 10181 | pattern->len = 0; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 10182 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10183 | return 1; |
| 10184 | } |
| 10185 | |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 10186 | /* This function fetches the method of current HTTP request and stores |
| 10187 | * it in the global pattern struct as a chunk. There are two possibilities : |
| 10188 | * - if the method is known (not HTTP_METH_OTHER), its identifier is stored |
| 10189 | * in <len> and <ptr> is NULL ; |
| 10190 | * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and |
| 10191 | * <len> to its length. |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 10192 | * This is intended to be used with pat_match_meth() only. |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 10193 | */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 10194 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10195 | smp_fetch_meth(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10196 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10197 | { |
| 10198 | int meth; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10199 | struct http_txn *txn = strm->txn; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10200 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10201 | CHECK_HTTP_MESSAGE_FIRST_PERM(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10202 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10203 | meth = txn->meth; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 10204 | smp->type = SMP_T_METH; |
| 10205 | smp->data.meth.meth = meth; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10206 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10207 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 10208 | /* ensure the indexes are not affected */ |
| 10209 | return 0; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10210 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 10211 | smp->data.meth.str.len = txn->req.sl.rq.m_l; |
| 10212 | smp->data.meth.str.str = txn->req.chn->buf->p; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10213 | } |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10214 | smp->flags |= SMP_F_VOL_1ST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10215 | return 1; |
| 10216 | } |
| 10217 | |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 10218 | /* See above how the method is stored in the global pattern */ |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10219 | static struct pattern *pat_match_meth(struct sample *smp, struct pattern_expr *expr, int fill) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10220 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 10221 | int icase; |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10222 | struct pattern_list *lst; |
| 10223 | struct pattern *pattern; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 10224 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10225 | list_for_each_entry(lst, &expr->patterns, list) { |
| 10226 | pattern = &lst->pat; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10227 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10228 | /* well-known method */ |
| 10229 | if (pattern->val.i != HTTP_METH_OTHER) { |
| 10230 | if (smp->data.meth.meth == pattern->val.i) |
| 10231 | return pattern; |
| 10232 | else |
| 10233 | continue; |
| 10234 | } |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 10235 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10236 | /* Other method, we must compare the strings */ |
| 10237 | if (pattern->len != smp->data.meth.str.len) |
| 10238 | continue; |
| 10239 | |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 10240 | icase = expr->mflags & PAT_MF_IGNORE_CASE; |
Willy Tarreau | 4de2a94 | 2014-08-28 20:42:57 +0200 | [diff] [blame] | 10241 | if ((icase && strncasecmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) == 0) || |
| 10242 | (!icase && strncmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) == 0)) |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 10243 | return pattern; |
| 10244 | } |
| 10245 | return NULL; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10246 | } |
| 10247 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 10248 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10249 | smp_fetch_rqver(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10250 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10251 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10252 | struct http_txn *txn = strm->txn; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10253 | char *ptr; |
| 10254 | int len; |
| 10255 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10256 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10257 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10258 | len = txn->req.sl.rq.v_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10259 | ptr = txn->req.chn->buf->p + txn->req.sl.rq.v; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10260 | |
| 10261 | while ((len-- > 0) && (*ptr++ != '/')); |
| 10262 | if (len <= 0) |
| 10263 | return 0; |
| 10264 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10265 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10266 | smp->data.str.str = ptr; |
| 10267 | smp->data.str.len = len; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10268 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10269 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10270 | return 1; |
| 10271 | } |
| 10272 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 10273 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10274 | smp_fetch_stver(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10275 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10276 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10277 | struct http_txn *txn; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10278 | char *ptr; |
| 10279 | int len; |
| 10280 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10281 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10282 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10283 | txn = strm->txn; |
Willy Tarreau | f26b252 | 2012-12-14 08:33:14 +0100 | [diff] [blame] | 10284 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
| 10285 | return 0; |
| 10286 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10287 | len = txn->rsp.sl.st.v_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10288 | ptr = txn->rsp.chn->buf->p; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10289 | |
| 10290 | while ((len-- > 0) && (*ptr++ != '/')); |
| 10291 | if (len <= 0) |
| 10292 | return 0; |
| 10293 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10294 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10295 | smp->data.str.str = ptr; |
| 10296 | smp->data.str.len = len; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10297 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10298 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10299 | return 1; |
| 10300 | } |
| 10301 | |
| 10302 | /* 3. Check on Status Code. We manipulate integers here. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 10303 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10304 | smp_fetch_stcode(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10305 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10306 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10307 | struct http_txn *txn; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10308 | char *ptr; |
| 10309 | int len; |
| 10310 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10311 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10312 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10313 | txn = strm->txn; |
Willy Tarreau | f26b252 | 2012-12-14 08:33:14 +0100 | [diff] [blame] | 10314 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
| 10315 | return 0; |
| 10316 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10317 | len = txn->rsp.sl.st.c_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10318 | ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10319 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10320 | smp->type = SMP_T_UINT; |
| 10321 | smp->data.uint = __strl2ui(ptr, len); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10322 | smp->flags = SMP_F_VOL_1ST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10323 | return 1; |
| 10324 | } |
| 10325 | |
| 10326 | /* 4. Check on URL/URI. A pointer to the URI is stored. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 10327 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10328 | smp_fetch_url(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10329 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10330 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10331 | struct http_txn *txn; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10332 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10333 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10334 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10335 | txn = strm->txn; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10336 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10337 | smp->data.str.len = txn->req.sl.rq.u_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10338 | smp->data.str.str = txn->req.chn->buf->p + txn->req.sl.rq.u; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10339 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10340 | return 1; |
| 10341 | } |
| 10342 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10343 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10344 | smp_fetch_url_ip(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10345 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10346 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10347 | struct http_txn *txn; |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10348 | struct sockaddr_storage addr; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10349 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10350 | CHECK_HTTP_MESSAGE_FIRST(); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10351 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10352 | txn = strm->txn; |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 10353 | url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL); |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10354 | if (((struct sockaddr_in *)&addr)->sin_family != AF_INET) |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 10355 | return 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10356 | |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10357 | smp->type = SMP_T_IPV4; |
| 10358 | smp->data.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10359 | smp->flags = 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10360 | return 1; |
| 10361 | } |
| 10362 | |
| 10363 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10364 | smp_fetch_url_port(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10365 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10366 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10367 | struct http_txn *txn; |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10368 | struct sockaddr_storage addr; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10369 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10370 | CHECK_HTTP_MESSAGE_FIRST(); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10371 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10372 | txn = strm->txn; |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 10373 | url2sa(txn->req.chn->buf->p + txn->req.sl.rq.u, txn->req.sl.rq.u_l, &addr, NULL); |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10374 | if (((struct sockaddr_in *)&addr)->sin_family != AF_INET) |
| 10375 | return 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10376 | |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 10377 | smp->type = SMP_T_UINT; |
| 10378 | smp->data.uint = ntohs(((struct sockaddr_in *)&addr)->sin_port); |
Willy Tarreau | 21e5b0e | 2012-04-23 19:25:44 +0200 | [diff] [blame] | 10379 | smp->flags = 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 10380 | return 1; |
| 10381 | } |
| 10382 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10383 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 10384 | * Accepts an optional argument of type string containing the header field name, |
| 10385 | * and an optional argument of type signed or unsigned integer to request an |
| 10386 | * explicit occurrence of the header. Note that in the event of a missing name, |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10387 | * headers are considered from the first one. It does not stop on commas and |
| 10388 | * returns full lines instead (useful for User-Agent or Date for example). |
| 10389 | */ |
| 10390 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10391 | smp_fetch_fhdr(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10392 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10393 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10394 | struct hdr_idx *idx; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10395 | struct hdr_ctx *ctx = smp->ctx.a[0]; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10396 | const struct http_msg *msg; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10397 | int occ = 0; |
| 10398 | const char *name_str = NULL; |
| 10399 | int name_len = 0; |
| 10400 | |
| 10401 | if (!ctx) { |
| 10402 | /* first call */ |
| 10403 | ctx = &static_hdr_ctx; |
| 10404 | ctx->idx = 0; |
| 10405 | smp->ctx.a[0] = ctx; |
| 10406 | } |
| 10407 | |
| 10408 | if (args) { |
| 10409 | if (args[0].type != ARGT_STR) |
| 10410 | return 0; |
| 10411 | name_str = args[0].data.str.str; |
| 10412 | name_len = args[0].data.str.len; |
| 10413 | |
| 10414 | if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT) |
| 10415 | occ = args[1].data.uint; |
| 10416 | } |
| 10417 | |
| 10418 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10419 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10420 | idx = &strm->txn->hdr_idx; |
| 10421 | msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &strm->txn->req : &strm->txn->rsp; |
| 10422 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10423 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
| 10424 | /* search for header from the beginning */ |
| 10425 | ctx->idx = 0; |
| 10426 | |
| 10427 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 10428 | /* no explicit occurrence and single fetch => last header by default */ |
| 10429 | occ = -1; |
| 10430 | |
| 10431 | if (!occ) |
| 10432 | /* prepare to report multiple occurrences for ACL fetches */ |
| 10433 | smp->flags |= SMP_F_NOT_LAST; |
| 10434 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10435 | smp->type = SMP_T_STR; |
| 10436 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10437 | if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len)) |
| 10438 | return 1; |
| 10439 | |
| 10440 | smp->flags &= ~SMP_F_NOT_LAST; |
| 10441 | return 0; |
| 10442 | } |
| 10443 | |
| 10444 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
| 10445 | * Accepts exactly 1 argument of type string. It does not stop on commas and |
| 10446 | * returns full lines instead (useful for User-Agent or Date for example). |
| 10447 | */ |
| 10448 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10449 | smp_fetch_fhdr_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10450 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10451 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10452 | struct hdr_idx *idx; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10453 | struct hdr_ctx ctx; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10454 | const struct http_msg *msg; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10455 | int cnt; |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10456 | const char *name = NULL; |
| 10457 | int len = 0; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10458 | |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10459 | if (args && args->type == ARGT_STR) { |
| 10460 | name = args->data.str.str; |
| 10461 | len = args->data.str.len; |
| 10462 | } |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10463 | |
| 10464 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10465 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10466 | idx = &strm->txn->hdr_idx; |
| 10467 | msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &strm->txn->req : &strm->txn->rsp; |
| 10468 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10469 | ctx.idx = 0; |
| 10470 | cnt = 0; |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10471 | while (http_find_full_header2(name, len, msg->chn->buf->p, idx, &ctx)) |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10472 | cnt++; |
| 10473 | |
| 10474 | smp->type = SMP_T_UINT; |
| 10475 | smp->data.uint = cnt; |
| 10476 | smp->flags = SMP_F_VOL_HDR; |
| 10477 | return 1; |
| 10478 | } |
| 10479 | |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 10480 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10481 | smp_fetch_hdr_names(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10482 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 10483 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10484 | struct hdr_idx *idx; |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 10485 | struct hdr_ctx ctx; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10486 | const struct http_msg *msg; |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 10487 | struct chunk *temp; |
| 10488 | char del = ','; |
| 10489 | |
| 10490 | if (args && args->type == ARGT_STR) |
| 10491 | del = *args[0].data.str.str; |
| 10492 | |
| 10493 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10494 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10495 | idx = &strm->txn->hdr_idx; |
| 10496 | msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &strm->txn->req : &strm->txn->rsp; |
| 10497 | |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 10498 | temp = get_trash_chunk(); |
| 10499 | |
| 10500 | ctx.idx = 0; |
| 10501 | while (http_find_next_header(msg->chn->buf->p, idx, &ctx)) { |
| 10502 | if (temp->len) |
| 10503 | temp->str[temp->len++] = del; |
| 10504 | memcpy(temp->str + temp->len, ctx.line, ctx.del); |
| 10505 | temp->len += ctx.del; |
| 10506 | } |
| 10507 | |
| 10508 | smp->type = SMP_T_STR; |
| 10509 | smp->data.str.str = temp->str; |
| 10510 | smp->data.str.len = temp->len; |
| 10511 | smp->flags = SMP_F_VOL_HDR; |
| 10512 | return 1; |
| 10513 | } |
| 10514 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 10515 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 10516 | * Accepts an optional argument of type string containing the header field name, |
| 10517 | * and an optional argument of type signed or unsigned integer to request an |
| 10518 | * explicit occurrence of the header. Note that in the event of a missing name, |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10519 | * headers are considered from the first one. |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10520 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10521 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10522 | smp_fetch_hdr(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10523 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10524 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10525 | struct hdr_idx *idx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 10526 | struct hdr_ctx *ctx = smp->ctx.a[0]; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10527 | const struct http_msg *msg; |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10528 | int occ = 0; |
| 10529 | const char *name_str = NULL; |
| 10530 | int name_len = 0; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10531 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 10532 | if (!ctx) { |
| 10533 | /* first call */ |
| 10534 | ctx = &static_hdr_ctx; |
| 10535 | ctx->idx = 0; |
Willy Tarreau | ffb6f08 | 2013-04-02 23:16:53 +0200 | [diff] [blame] | 10536 | smp->ctx.a[0] = ctx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 10537 | } |
| 10538 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10539 | if (args) { |
| 10540 | if (args[0].type != ARGT_STR) |
| 10541 | return 0; |
| 10542 | name_str = args[0].data.str.str; |
| 10543 | name_len = args[0].data.str.len; |
| 10544 | |
| 10545 | if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT) |
| 10546 | occ = args[1].data.uint; |
| 10547 | } |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10548 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10549 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10550 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10551 | idx = &strm->txn->hdr_idx; |
| 10552 | msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &strm->txn->req : &strm->txn->rsp; |
| 10553 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10554 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10555 | /* search for header from the beginning */ |
| 10556 | ctx->idx = 0; |
| 10557 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10558 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 10559 | /* no explicit occurrence and single fetch => last header by default */ |
| 10560 | occ = -1; |
| 10561 | |
| 10562 | if (!occ) |
| 10563 | /* prepare to report multiple occurrences for ACL fetches */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10564 | smp->flags |= SMP_F_NOT_LAST; |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 10565 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10566 | smp->type = SMP_T_STR; |
| 10567 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10568 | if (http_get_hdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len)) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10569 | return 1; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10570 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10571 | smp->flags &= ~SMP_F_NOT_LAST; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10572 | return 0; |
| 10573 | } |
| 10574 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10575 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10576 | * Accepts exactly 1 argument of type string. |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10577 | */ |
| 10578 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10579 | smp_fetch_hdr_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10580 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10581 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10582 | struct hdr_idx *idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10583 | struct hdr_ctx ctx; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10584 | const struct http_msg *msg; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10585 | int cnt; |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10586 | const char *name = NULL; |
| 10587 | int len = 0; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10588 | |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10589 | if (args && args->type == ARGT_STR) { |
| 10590 | name = args->data.str.str; |
| 10591 | len = args->data.str.len; |
| 10592 | } |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10593 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10594 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10595 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10596 | idx = &strm->txn->hdr_idx; |
| 10597 | msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &strm->txn->req : &strm->txn->rsp; |
| 10598 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10599 | ctx.idx = 0; |
| 10600 | cnt = 0; |
Willy Tarreau | 601a4d1 | 2015-04-01 19:16:09 +0200 | [diff] [blame] | 10601 | while (http_find_header2(name, len, msg->chn->buf->p, idx, &ctx)) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10602 | cnt++; |
| 10603 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10604 | smp->type = SMP_T_UINT; |
| 10605 | smp->data.uint = cnt; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10606 | smp->flags = SMP_F_VOL_HDR; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10607 | return 1; |
| 10608 | } |
| 10609 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10610 | /* Fetch an HTTP header's integer value. The integer value is returned. It |
| 10611 | * takes a mandatory argument of type string and an optional one of type int |
| 10612 | * to designate a specific occurrence. It returns an unsigned integer, which |
| 10613 | * may or may not be appropriate for everything. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10614 | */ |
| 10615 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10616 | smp_fetch_hdr_val(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10617 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10618 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10619 | int ret = smp_fetch_hdr(px, sess, strm, opt, args, smp, kw, private); |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10620 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10621 | if (ret > 0) { |
| 10622 | smp->type = SMP_T_UINT; |
| 10623 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 10624 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10625 | |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 10626 | return ret; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10627 | } |
| 10628 | |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 10629 | /* Fetch an HTTP header's IP value. takes a mandatory argument of type string |
| 10630 | * and an optional one of type int to designate a specific occurrence. |
| 10631 | * It returns an IPv4 or IPv6 address. |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 10632 | */ |
| 10633 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10634 | smp_fetch_hdr_ip(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10635 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 10636 | { |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 10637 | int ret; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10638 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10639 | while ((ret = smp_fetch_hdr(px, sess, strm, opt, args, smp, kw, private)) > 0) { |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 10640 | if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) { |
| 10641 | smp->type = SMP_T_IPV4; |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 10642 | break; |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 10643 | } else { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 10644 | struct chunk *temp = get_trash_chunk(); |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 10645 | if (smp->data.str.len < temp->size - 1) { |
| 10646 | memcpy(temp->str, smp->data.str.str, smp->data.str.len); |
| 10647 | temp->str[smp->data.str.len] = '\0'; |
| 10648 | if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) { |
| 10649 | smp->type = SMP_T_IPV6; |
| 10650 | break; |
| 10651 | } |
| 10652 | } |
| 10653 | } |
| 10654 | |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 10655 | /* if the header doesn't match an IP address, fetch next one */ |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10656 | if (!(smp->flags & SMP_F_NOT_LAST)) |
| 10657 | return 0; |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 10658 | } |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 10659 | return ret; |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 10660 | } |
| 10661 | |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10662 | /* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at |
| 10663 | * the first '/' after the possible hostname, and ends before the possible '?'. |
| 10664 | */ |
| 10665 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10666 | smp_fetch_path(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10667 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10668 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10669 | struct http_txn *txn; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10670 | char *ptr, *end; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 10671 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10672 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 10673 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10674 | txn = strm->txn; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10675 | end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 10676 | ptr = http_get_path(txn); |
| 10677 | if (!ptr) |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10678 | return 0; |
| 10679 | |
| 10680 | /* OK, we got the '/' ! */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10681 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10682 | smp->data.str.str = ptr; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10683 | |
| 10684 | while (ptr < end && *ptr != '?') |
| 10685 | ptr++; |
| 10686 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10687 | smp->data.str.len = ptr - smp->data.str.str; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10688 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 10689 | return 1; |
| 10690 | } |
| 10691 | |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10692 | /* This produces a concatenation of the first occurrence of the Host header |
| 10693 | * followed by the path component if it begins with a slash ('/'). This means |
| 10694 | * that '*' will not be added, resulting in exactly the first Host entry. |
| 10695 | * If no Host header is found, then the path is returned as-is. The returned |
| 10696 | * value is stored in the trash so it does not need to be marked constant. |
Willy Tarreau | b169eba | 2013-12-16 15:14:43 +0100 | [diff] [blame] | 10697 | * The returned sample is of type string. |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10698 | */ |
| 10699 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10700 | smp_fetch_base(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10701 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10702 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10703 | struct http_txn *txn; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10704 | char *ptr, *end, *beg; |
| 10705 | struct hdr_ctx ctx; |
Willy Tarreau | 3caf2af | 2014-06-24 17:27:02 +0200 | [diff] [blame] | 10706 | struct chunk *temp; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10707 | |
| 10708 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10709 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10710 | txn = strm->txn; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10711 | ctx.idx = 0; |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 10712 | if (!http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx) || !ctx.vlen) |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10713 | return smp_fetch_path(px, sess, strm, opt, args, smp, kw, private); |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10714 | |
| 10715 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
Willy Tarreau | 3caf2af | 2014-06-24 17:27:02 +0200 | [diff] [blame] | 10716 | temp = get_trash_chunk(); |
| 10717 | memcpy(temp->str, ctx.line + ctx.val, ctx.vlen); |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10718 | smp->type = SMP_T_STR; |
Willy Tarreau | 3caf2af | 2014-06-24 17:27:02 +0200 | [diff] [blame] | 10719 | smp->data.str.str = temp->str; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10720 | smp->data.str.len = ctx.vlen; |
| 10721 | |
| 10722 | /* now retrieve the path */ |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 10723 | end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10724 | beg = http_get_path(txn); |
| 10725 | if (!beg) |
| 10726 | beg = end; |
| 10727 | |
| 10728 | for (ptr = beg; ptr < end && *ptr != '?'; ptr++); |
| 10729 | |
| 10730 | if (beg < ptr && *beg == '/') { |
| 10731 | memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg); |
| 10732 | smp->data.str.len += ptr - beg; |
| 10733 | } |
| 10734 | |
| 10735 | smp->flags = SMP_F_VOL_1ST; |
| 10736 | return 1; |
| 10737 | } |
| 10738 | |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10739 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 10740 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 10741 | * This means that '*' will not be added, resulting in exactly the first Host |
| 10742 | * entry. If no Host header is found, then the path is used. The resulting value |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10743 | * is hashed using the path hash followed by a full avalanche hash and provides a |
| 10744 | * 32-bit integer value. This fetch is useful for tracking per-path activity on |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10745 | * high-traffic sites without having to store whole paths. |
| 10746 | */ |
Thierry FOURNIER | 055b9d5 | 2014-07-15 16:11:07 +0200 | [diff] [blame] | 10747 | int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10748 | smp_fetch_base32(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10749 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10750 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10751 | struct http_txn *txn; |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10752 | struct hdr_ctx ctx; |
| 10753 | unsigned int hash = 0; |
| 10754 | char *ptr, *beg, *end; |
| 10755 | int len; |
| 10756 | |
| 10757 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10758 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10759 | txn = strm->txn; |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10760 | ctx.idx = 0; |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 10761 | if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10762 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
| 10763 | ptr = ctx.line + ctx.val; |
| 10764 | len = ctx.vlen; |
| 10765 | while (len--) |
| 10766 | hash = *(ptr++) + (hash << 6) + (hash << 16) - hash; |
| 10767 | } |
| 10768 | |
| 10769 | /* now retrieve the path */ |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 10770 | end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 10771 | beg = http_get_path(txn); |
| 10772 | if (!beg) |
| 10773 | beg = end; |
| 10774 | |
| 10775 | for (ptr = beg; ptr < end && *ptr != '?'; ptr++); |
| 10776 | |
| 10777 | if (beg < ptr && *beg == '/') { |
| 10778 | while (beg < ptr) |
| 10779 | hash = *(beg++) + (hash << 6) + (hash << 16) - hash; |
| 10780 | } |
| 10781 | hash = full_hash(hash); |
| 10782 | |
| 10783 | smp->type = SMP_T_UINT; |
| 10784 | smp->data.uint = hash; |
| 10785 | smp->flags = SMP_F_VOL_1ST; |
| 10786 | return 1; |
| 10787 | } |
| 10788 | |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10789 | /* This concatenates the source address with the 32-bit hash of the Host and |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10790 | * path as returned by smp_fetch_base32(). The idea is to have per-source and |
| 10791 | * per-path counters. The result is a binary block from 8 to 20 bytes depending |
| 10792 | * on the source address length. The path hash is stored before the address so |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10793 | * that in environments where IPv6 is insignificant, truncating the output to |
| 10794 | * 8 bytes would still work. |
| 10795 | */ |
| 10796 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10797 | smp_fetch_base32_src(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10798 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10799 | { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 10800 | struct chunk *temp; |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 10801 | struct connection *cli_conn = objt_conn(sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10802 | |
| 10803 | if (!cli_conn) |
| 10804 | return 0; |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10805 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10806 | if (!smp_fetch_base32(px, sess, strm, opt, args, smp, kw, private)) |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10807 | return 0; |
| 10808 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 10809 | temp = get_trash_chunk(); |
Willy Tarreau | 5ad6e1d | 2014-07-15 21:34:06 +0200 | [diff] [blame] | 10810 | *(unsigned int *)temp->str = htonl(smp->data.uint); |
| 10811 | temp->len += sizeof(unsigned int); |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10812 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10813 | switch (cli_conn->addr.from.ss_family) { |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10814 | case AF_INET: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10815 | memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4); |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10816 | temp->len += 4; |
| 10817 | break; |
| 10818 | case AF_INET6: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10819 | memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16); |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 10820 | temp->len += 16; |
| 10821 | break; |
| 10822 | default: |
| 10823 | return 0; |
| 10824 | } |
| 10825 | |
| 10826 | smp->data.str = *temp; |
| 10827 | smp->type = SMP_T_BIN; |
| 10828 | return 1; |
| 10829 | } |
| 10830 | |
Willy Tarreau | 49ad95c | 2015-01-19 15:06:26 +0100 | [diff] [blame] | 10831 | /* Extracts the query string, which comes after the question mark '?'. If no |
| 10832 | * question mark is found, nothing is returned. Otherwise it returns a sample |
| 10833 | * of type string carrying the whole query string. |
| 10834 | */ |
| 10835 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10836 | smp_fetch_query(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10837 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 49ad95c | 2015-01-19 15:06:26 +0100 | [diff] [blame] | 10838 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10839 | struct http_txn *txn; |
Willy Tarreau | 49ad95c | 2015-01-19 15:06:26 +0100 | [diff] [blame] | 10840 | char *ptr, *end; |
| 10841 | |
| 10842 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10843 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10844 | txn = strm->txn; |
Willy Tarreau | 49ad95c | 2015-01-19 15:06:26 +0100 | [diff] [blame] | 10845 | ptr = txn->req.chn->buf->p + txn->req.sl.rq.u; |
| 10846 | end = ptr + txn->req.sl.rq.u_l; |
| 10847 | |
| 10848 | /* look up the '?' */ |
| 10849 | do { |
| 10850 | if (ptr == end) |
| 10851 | return 0; |
| 10852 | } while (*ptr++ != '?'); |
| 10853 | |
| 10854 | smp->type = SMP_T_STR; |
| 10855 | smp->data.str.str = ptr; |
| 10856 | smp->data.str.len = end - ptr; |
| 10857 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
| 10858 | return 1; |
| 10859 | } |
| 10860 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10861 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10862 | smp_fetch_proto_http(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10863 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10864 | { |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10865 | /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged |
| 10866 | * as a layer7 ACL, which involves automatic allocation of hdr_idx. |
| 10867 | */ |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10868 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10869 | CHECK_HTTP_MESSAGE_FIRST_PERM(); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10870 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10871 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 197e10a | 2012-04-23 19:18:42 +0200 | [diff] [blame] | 10872 | smp->data.uint = 1; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 10873 | return 1; |
| 10874 | } |
| 10875 | |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 10876 | /* return a valid test if the current request is the first one on the connection */ |
| 10877 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10878 | smp_fetch_http_first_req(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10879 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 10880 | { |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10881 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10882 | smp->data.uint = !(strm->txn->flags & TX_NOT_FIRST); |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 10883 | return 1; |
| 10884 | } |
| 10885 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10886 | /* Accepts exactly 1 argument of type userlist */ |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 10887 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10888 | smp_fetch_http_auth(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10889 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 10890 | { |
| 10891 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10892 | if (!args || args->type != ARGT_USR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10893 | return 0; |
| 10894 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 10895 | CHECK_HTTP_MESSAGE_FIRST(); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 10896 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10897 | if (!get_http_auth(strm)) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 10898 | return 0; |
| 10899 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10900 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10901 | smp->data.uint = check_user(args->data.usr, strm->txn->auth.user, strm->txn->auth.pass); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 10902 | return 1; |
| 10903 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10904 | |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10905 | /* Accepts exactly 1 argument of type userlist */ |
| 10906 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 10907 | smp_fetch_http_auth_grp(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 10908 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10909 | { |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10910 | if (!args || args->type != ARGT_USR) |
| 10911 | return 0; |
| 10912 | |
| 10913 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10914 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10915 | if (!get_http_auth(strm)) |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10916 | return 0; |
| 10917 | |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10918 | /* if the user does not belong to the userlist or has a wrong password, |
| 10919 | * report that it unconditionally does not match. Otherwise we return |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 10920 | * a string containing the username. |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10921 | */ |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10922 | if (!check_user(args->data.usr, strm->txn->auth.user, strm->txn->auth.pass)) |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 10923 | return 0; |
| 10924 | |
| 10925 | /* pat_match_auth() will need the user list */ |
| 10926 | smp->ctx.a[0] = args->data.usr; |
| 10927 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10928 | smp->type = SMP_T_STR; |
| 10929 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 10930 | smp->data.str.str = strm->txn->auth.user; |
| 10931 | smp->data.str.len = strlen(strm->txn->auth.user); |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 10932 | |
| 10933 | return 1; |
| 10934 | } |
| 10935 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10936 | /* Try to find the next occurrence of a cookie name in a cookie header value. |
| 10937 | * The lookup begins at <hdr>. The pointer and size of the next occurrence of |
| 10938 | * the cookie value is returned into *value and *value_l, and the function |
| 10939 | * returns a pointer to the next pointer to search from if the value was found. |
| 10940 | * Otherwise if the cookie was not found, NULL is returned and neither value |
| 10941 | * nor value_l are touched. The input <hdr> string should first point to the |
| 10942 | * header's value, and the <hdr_end> pointer must point to the first character |
| 10943 | * not part of the value. <list> must be non-zero if value may represent a list |
| 10944 | * of values (cookie headers). This makes it faster to abort parsing when no |
| 10945 | * list is expected. |
| 10946 | */ |
| 10947 | static char * |
| 10948 | extract_cookie_value(char *hdr, const char *hdr_end, |
| 10949 | char *cookie_name, size_t cookie_name_l, int list, |
Willy Tarreau | 3fb818c | 2012-04-11 17:21:08 +0200 | [diff] [blame] | 10950 | char **value, int *value_l) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10951 | { |
| 10952 | char *equal, *att_end, *att_beg, *val_beg, *val_end; |
| 10953 | char *next; |
| 10954 | |
| 10955 | /* we search at least a cookie name followed by an equal, and more |
| 10956 | * generally something like this : |
| 10957 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 10958 | */ |
| 10959 | for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) { |
| 10960 | /* Iterate through all cookies on this line */ |
| 10961 | |
| 10962 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 10963 | att_beg++; |
| 10964 | |
| 10965 | /* find att_end : this is the first character after the last non |
| 10966 | * space before the equal. It may be equal to hdr_end. |
| 10967 | */ |
| 10968 | equal = att_end = att_beg; |
| 10969 | |
| 10970 | while (equal < hdr_end) { |
| 10971 | if (*equal == '=' || *equal == ';' || (list && *equal == ',')) |
| 10972 | break; |
| 10973 | if (http_is_spht[(unsigned char)*equal++]) |
| 10974 | continue; |
| 10975 | att_end = equal; |
| 10976 | } |
| 10977 | |
| 10978 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 10979 | * is between <att_beg> and <equal>, both may be identical. |
| 10980 | */ |
| 10981 | |
| 10982 | /* look for end of cookie if there is an equal sign */ |
| 10983 | if (equal < hdr_end && *equal == '=') { |
| 10984 | /* look for the beginning of the value */ |
| 10985 | val_beg = equal + 1; |
| 10986 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 10987 | val_beg++; |
| 10988 | |
| 10989 | /* find the end of the value, respecting quotes */ |
| 10990 | next = find_cookie_value_end(val_beg, hdr_end); |
| 10991 | |
| 10992 | /* make val_end point to the first white space or delimitor after the value */ |
| 10993 | val_end = next; |
| 10994 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 10995 | val_end--; |
| 10996 | } else { |
| 10997 | val_beg = val_end = next = equal; |
| 10998 | } |
| 10999 | |
| 11000 | /* We have nothing to do with attributes beginning with '$'. However, |
| 11001 | * they will automatically be removed if a header before them is removed, |
| 11002 | * since they're supposed to be linked together. |
| 11003 | */ |
| 11004 | if (*att_beg == '$') |
| 11005 | continue; |
| 11006 | |
| 11007 | /* Ignore cookies with no equal sign */ |
| 11008 | if (equal == next) |
| 11009 | continue; |
| 11010 | |
| 11011 | /* Now we have the cookie name between att_beg and att_end, and |
| 11012 | * its value between val_beg and val_end. |
| 11013 | */ |
| 11014 | |
| 11015 | if (att_end - att_beg == cookie_name_l && |
| 11016 | memcmp(att_beg, cookie_name, cookie_name_l) == 0) { |
| 11017 | /* let's return this value and indicate where to go on from */ |
| 11018 | *value = val_beg; |
| 11019 | *value_l = val_end - val_beg; |
| 11020 | return next + 1; |
| 11021 | } |
| 11022 | |
| 11023 | /* Set-Cookie headers only have the name in the first attr=value part */ |
| 11024 | if (!list) |
| 11025 | break; |
| 11026 | } |
| 11027 | |
| 11028 | return NULL; |
| 11029 | } |
| 11030 | |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11031 | /* Fetch a captured HTTP request header. The index is the position of |
| 11032 | * the "capture" option in the configuration file |
| 11033 | */ |
| 11034 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11035 | smp_fetch_capture_header_req(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11036 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11037 | { |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 11038 | struct proxy *fe = strm_fe(strm); |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11039 | int idx; |
| 11040 | |
| 11041 | if (!args || args->type != ARGT_UINT) |
| 11042 | return 0; |
| 11043 | |
| 11044 | idx = args->data.uint; |
| 11045 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11046 | if (idx > (fe->nb_req_cap - 1) || strm->req_cap == NULL || strm->req_cap[idx] == NULL) |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11047 | return 0; |
| 11048 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11049 | smp->type = SMP_T_STR; |
| 11050 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11051 | smp->data.str.str = strm->req_cap[idx]; |
| 11052 | smp->data.str.len = strlen(strm->req_cap[idx]); |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11053 | |
| 11054 | return 1; |
| 11055 | } |
| 11056 | |
| 11057 | /* Fetch a captured HTTP response header. The index is the position of |
| 11058 | * the "capture" option in the configuration file |
| 11059 | */ |
| 11060 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11061 | smp_fetch_capture_header_res(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11062 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11063 | { |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 11064 | struct proxy *fe = strm_fe(strm); |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11065 | int idx; |
| 11066 | |
| 11067 | if (!args || args->type != ARGT_UINT) |
| 11068 | return 0; |
| 11069 | |
| 11070 | idx = args->data.uint; |
| 11071 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11072 | if (idx > (fe->nb_rsp_cap - 1) || strm->res_cap == NULL || strm->res_cap[idx] == NULL) |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11073 | return 0; |
| 11074 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11075 | smp->type = SMP_T_STR; |
| 11076 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11077 | smp->data.str.str = strm->res_cap[idx]; |
| 11078 | smp->data.str.len = strlen(strm->res_cap[idx]); |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 11079 | |
| 11080 | return 1; |
| 11081 | } |
| 11082 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11083 | /* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */ |
| 11084 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11085 | smp_fetch_capture_req_method(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11086 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11087 | { |
| 11088 | struct chunk *temp; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11089 | struct http_txn *txn = strm->txn; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11090 | char *ptr; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11091 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11092 | if (!txn || !txn->uri) |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11093 | return 0; |
| 11094 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11095 | ptr = txn->uri; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11096 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11097 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 11098 | ptr++; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11099 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11100 | temp = get_trash_chunk(); |
| 11101 | temp->str = txn->uri; |
| 11102 | temp->len = ptr - txn->uri; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11103 | smp->data.str = *temp; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11104 | smp->type = SMP_T_STR; |
| 11105 | smp->flags = SMP_F_CONST; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11106 | |
| 11107 | return 1; |
| 11108 | |
| 11109 | } |
| 11110 | |
| 11111 | /* Extracts the path in the HTTP request, the txn->uri should be filled before the call */ |
| 11112 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11113 | smp_fetch_capture_req_uri(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11114 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11115 | { |
| 11116 | struct chunk *temp; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11117 | struct http_txn *txn = strm->txn; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11118 | char *ptr; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11119 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11120 | if (!txn || !txn->uri) |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11121 | return 0; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11122 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11123 | ptr = txn->uri; |
| 11124 | |
| 11125 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 11126 | ptr++; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11127 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11128 | if (!*ptr) |
| 11129 | return 0; |
| 11130 | |
| 11131 | ptr++; /* skip the space */ |
| 11132 | |
| 11133 | temp = get_trash_chunk(); |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11134 | ptr = temp->str = http_get_path_from_string(ptr); |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11135 | if (!ptr) |
| 11136 | return 0; |
| 11137 | while (*ptr != ' ' && *ptr != '\0') /* find space after URI */ |
| 11138 | ptr++; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11139 | |
| 11140 | smp->data.str = *temp; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 11141 | smp->data.str.len = ptr - temp->str; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11142 | smp->type = SMP_T_STR; |
| 11143 | smp->flags = SMP_F_CONST; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11144 | |
| 11145 | return 1; |
| 11146 | } |
| 11147 | |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11148 | /* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it |
| 11149 | * as a string (either "HTTP/1.0" or "HTTP/1.1"). |
| 11150 | */ |
| 11151 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11152 | smp_fetch_capture_req_ver(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11153 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11154 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11155 | struct http_txn *txn = strm->txn; |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11156 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11157 | if (!txn || txn->req.msg_state < HTTP_MSG_HDR_FIRST) |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11158 | return 0; |
| 11159 | |
| 11160 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 11161 | smp->data.str.str = "HTTP/1.1"; |
| 11162 | else |
| 11163 | smp->data.str.str = "HTTP/1.0"; |
| 11164 | |
| 11165 | smp->data.str.len = 8; |
| 11166 | smp->type = SMP_T_STR; |
| 11167 | smp->flags = SMP_F_CONST; |
| 11168 | return 1; |
| 11169 | |
| 11170 | } |
| 11171 | |
| 11172 | /* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it |
| 11173 | * as a string (either "HTTP/1.0" or "HTTP/1.1"). |
| 11174 | */ |
| 11175 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11176 | smp_fetch_capture_res_ver(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11177 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11178 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11179 | struct http_txn *txn = strm->txn; |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11180 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11181 | if (!txn || txn->rsp.msg_state < HTTP_MSG_HDR_FIRST) |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 11182 | return 0; |
| 11183 | |
| 11184 | if (txn->rsp.flags & HTTP_MSGF_VER_11) |
| 11185 | smp->data.str.str = "HTTP/1.1"; |
| 11186 | else |
| 11187 | smp->data.str.str = "HTTP/1.0"; |
| 11188 | |
| 11189 | smp->data.str.len = 8; |
| 11190 | smp->type = SMP_T_STR; |
| 11191 | smp->flags = SMP_F_CONST; |
| 11192 | return 1; |
| 11193 | |
| 11194 | } |
| 11195 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 11196 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11197 | /* Iterate over all cookies present in a message. The context is stored in |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11198 | * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 11199 | * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11200 | * the direction, multiple cookies may be parsed on the same line or not. |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11201 | * The cookie name is in args and the name length in args->data.str.len. |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11202 | * Accepts exactly 1 argument of type string. If the input options indicate |
| 11203 | * that no iterating is desired, then only last value is fetched if any. |
William Lallemand | 07c8b24 | 2014-05-02 17:11:07 +0200 | [diff] [blame] | 11204 | * The returned sample is of type CSTR. Can be used to parse cookies in other |
| 11205 | * files. |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11206 | */ |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11207 | int smp_fetch_cookie(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11208 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11209 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11210 | struct http_txn *txn; |
| 11211 | struct hdr_idx *idx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 11212 | struct hdr_ctx *ctx = smp->ctx.a[2]; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11213 | const struct http_msg *msg; |
| 11214 | const char *hdr_name; |
| 11215 | int hdr_name_len; |
| 11216 | char *sol; |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11217 | int occ = 0; |
| 11218 | int found = 0; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11219 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11220 | if (!args || args->type != ARGT_STR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 11221 | return 0; |
| 11222 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 11223 | if (!ctx) { |
| 11224 | /* first call */ |
| 11225 | ctx = &static_hdr_ctx; |
| 11226 | ctx->idx = 0; |
| 11227 | smp->ctx.a[2] = ctx; |
| 11228 | } |
| 11229 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11230 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11231 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11232 | txn = strm->txn; |
| 11233 | idx = &strm->txn->hdr_idx; |
| 11234 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 11235 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11236 | msg = &txn->req; |
| 11237 | hdr_name = "Cookie"; |
| 11238 | hdr_name_len = 6; |
| 11239 | } else { |
| 11240 | msg = &txn->rsp; |
| 11241 | hdr_name = "Set-Cookie"; |
| 11242 | hdr_name_len = 10; |
| 11243 | } |
| 11244 | |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11245 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 11246 | /* no explicit occurrence and single fetch => last cookie by default */ |
| 11247 | occ = -1; |
| 11248 | |
| 11249 | /* OK so basically here, either we want only one value and it's the |
| 11250 | * last one, or we want to iterate over all of them and we fetch the |
| 11251 | * next one. |
| 11252 | */ |
| 11253 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 11254 | sol = msg->chn->buf->p; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11255 | if (!(smp->flags & SMP_F_NOT_LAST)) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11256 | /* search for the header from the beginning, we must first initialize |
| 11257 | * the search parameters. |
| 11258 | */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11259 | smp->ctx.a[0] = NULL; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11260 | ctx->idx = 0; |
| 11261 | } |
| 11262 | |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11263 | smp->flags |= SMP_F_VOL_HDR; |
| 11264 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11265 | while (1) { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11266 | /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */ |
| 11267 | if (!smp->ctx.a[0]) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11268 | if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx)) |
| 11269 | goto out; |
| 11270 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11271 | if (ctx->vlen < args->data.str.len + 1) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11272 | continue; |
| 11273 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11274 | smp->ctx.a[0] = ctx->line + ctx->val; |
| 11275 | smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11276 | } |
| 11277 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11278 | smp->type = SMP_T_STR; |
| 11279 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11280 | smp->ctx.a[0] = extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1], |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11281 | args->data.str.str, args->data.str.len, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 11282 | (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 11283 | &smp->data.str.str, |
| 11284 | &smp->data.str.len); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11285 | if (smp->ctx.a[0]) { |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11286 | found = 1; |
| 11287 | if (occ >= 0) { |
| 11288 | /* one value was returned into smp->data.str.{str,len} */ |
| 11289 | smp->flags |= SMP_F_NOT_LAST; |
| 11290 | return 1; |
| 11291 | } |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11292 | } |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11293 | /* if we're looking for last occurrence, let's loop */ |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11294 | } |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11295 | /* all cookie headers and values were scanned. If we're looking for the |
| 11296 | * last occurrence, we may return it now. |
| 11297 | */ |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11298 | out: |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11299 | smp->flags &= ~SMP_F_NOT_LAST; |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 11300 | return found; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11301 | } |
| 11302 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11303 | /* Iterate over all cookies present in a request to count how many occurrences |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11304 | * match the name in args and args->data.str.len. If <multi> is non-null, then |
Willy Tarreau | b169eba | 2013-12-16 15:14:43 +0100 | [diff] [blame] | 11305 | * multiple cookies may be parsed on the same line. The returned sample is of |
| 11306 | * type UINT. Accepts exactly 1 argument of type string. |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11307 | */ |
| 11308 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11309 | smp_fetch_cookie_cnt(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11310 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11311 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11312 | struct http_txn *txn; |
| 11313 | struct hdr_idx *idx; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11314 | struct hdr_ctx ctx; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11315 | const struct http_msg *msg; |
| 11316 | const char *hdr_name; |
| 11317 | int hdr_name_len; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11318 | int cnt; |
| 11319 | char *val_beg, *val_end; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11320 | char *sol; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11321 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11322 | if (!args || args->type != ARGT_STR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 11323 | return 0; |
| 11324 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11325 | CHECK_HTTP_MESSAGE_FIRST(); |
| 11326 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11327 | txn = strm->txn; |
| 11328 | idx = &strm->txn->hdr_idx; |
| 11329 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 11330 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 11331 | msg = &txn->req; |
| 11332 | hdr_name = "Cookie"; |
| 11333 | hdr_name_len = 6; |
| 11334 | } else { |
| 11335 | msg = &txn->rsp; |
| 11336 | hdr_name = "Set-Cookie"; |
| 11337 | hdr_name_len = 10; |
| 11338 | } |
| 11339 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 11340 | sol = msg->chn->buf->p; |
Willy Tarreau | 46787ed | 2012-04-11 17:28:40 +0200 | [diff] [blame] | 11341 | val_end = val_beg = NULL; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11342 | ctx.idx = 0; |
| 11343 | cnt = 0; |
| 11344 | |
| 11345 | while (1) { |
| 11346 | /* Note: val_beg == NULL every time we need to fetch a new header */ |
| 11347 | if (!val_beg) { |
| 11348 | if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx)) |
| 11349 | break; |
| 11350 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11351 | if (ctx.vlen < args->data.str.len + 1) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11352 | continue; |
| 11353 | |
| 11354 | val_beg = ctx.line + ctx.val; |
| 11355 | val_end = val_beg + ctx.vlen; |
| 11356 | } |
| 11357 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11358 | smp->type = SMP_T_STR; |
| 11359 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11360 | while ((val_beg = extract_cookie_value(val_beg, val_end, |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 11361 | args->data.str.str, args->data.str.len, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 11362 | (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 11363 | &smp->data.str.str, |
| 11364 | &smp->data.str.len))) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11365 | cnt++; |
| 11366 | } |
| 11367 | } |
| 11368 | |
Willy Tarreau | b169eba | 2013-12-16 15:14:43 +0100 | [diff] [blame] | 11369 | smp->type = SMP_T_UINT; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 11370 | smp->data.uint = cnt; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 11371 | smp->flags |= SMP_F_VOL_HDR; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 11372 | return 1; |
| 11373 | } |
| 11374 | |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 11375 | /* Fetch an cookie's integer value. The integer value is returned. It |
| 11376 | * takes a mandatory argument of type string. It relies on smp_fetch_cookie(). |
| 11377 | */ |
| 11378 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11379 | smp_fetch_cookie_val(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11380 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 11381 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11382 | int ret = smp_fetch_cookie(px, sess, strm, opt, args, smp, kw, private); |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 11383 | |
| 11384 | if (ret > 0) { |
| 11385 | smp->type = SMP_T_UINT; |
| 11386 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 11387 | } |
| 11388 | |
| 11389 | return ret; |
| 11390 | } |
| 11391 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 11392 | /************************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 11393 | /* The code below is dedicated to sample fetches */ |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 11394 | /************************************************************************/ |
| 11395 | |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11396 | /* |
| 11397 | * Given a path string and its length, find the position of beginning of the |
| 11398 | * query string. Returns NULL if no query string is found in the path. |
| 11399 | * |
| 11400 | * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22: |
| 11401 | * |
| 11402 | * find_query_string(path, n) points to "yo=mama;ye=daddy" string. |
| 11403 | */ |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11404 | static inline char *find_param_list(char *path, size_t path_l, char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11405 | { |
| 11406 | char *p; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 11407 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11408 | p = memchr(path, delim, path_l); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11409 | return p ? p + 1 : NULL; |
| 11410 | } |
| 11411 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11412 | static inline int is_param_delimiter(char c, char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11413 | { |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11414 | return c == '&' || c == ';' || c == delim; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11415 | } |
| 11416 | |
| 11417 | /* |
| 11418 | * Given a url parameter, find the starting position of the first occurence, |
| 11419 | * or NULL if the parameter is not found. |
| 11420 | * |
| 11421 | * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye", |
| 11422 | * the function will return query_string+8. |
| 11423 | */ |
| 11424 | static char* |
| 11425 | find_url_param_pos(char* query_string, size_t query_string_l, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11426 | char* url_param_name, size_t url_param_name_l, |
| 11427 | char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11428 | { |
| 11429 | char *pos, *last; |
| 11430 | |
| 11431 | pos = query_string; |
| 11432 | last = query_string + query_string_l - url_param_name_l - 1; |
| 11433 | |
| 11434 | while (pos <= last) { |
| 11435 | if (pos[url_param_name_l] == '=') { |
| 11436 | if (memcmp(pos, url_param_name, url_param_name_l) == 0) |
| 11437 | return pos; |
| 11438 | pos += url_param_name_l + 1; |
| 11439 | } |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11440 | while (pos <= last && !is_param_delimiter(*pos, delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11441 | pos++; |
| 11442 | pos++; |
| 11443 | } |
| 11444 | return NULL; |
| 11445 | } |
| 11446 | |
| 11447 | /* |
| 11448 | * Given a url parameter name, returns its value and size into *value and |
| 11449 | * *value_l respectively, and returns non-zero. If the parameter is not found, |
| 11450 | * zero is returned and value/value_l are not touched. |
| 11451 | */ |
| 11452 | static int |
| 11453 | find_url_param_value(char* path, size_t path_l, |
| 11454 | char* url_param_name, size_t url_param_name_l, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11455 | char** value, int* value_l, char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11456 | { |
| 11457 | char *query_string, *qs_end; |
| 11458 | char *arg_start; |
| 11459 | char *value_start, *value_end; |
| 11460 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11461 | query_string = find_param_list(path, path_l, delim); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11462 | if (!query_string) |
| 11463 | return 0; |
| 11464 | |
| 11465 | qs_end = path + path_l; |
| 11466 | arg_start = find_url_param_pos(query_string, qs_end - query_string, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11467 | url_param_name, url_param_name_l, |
| 11468 | delim); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11469 | if (!arg_start) |
| 11470 | return 0; |
| 11471 | |
| 11472 | value_start = arg_start + url_param_name_l + 1; |
| 11473 | value_end = value_start; |
| 11474 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11475 | while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11476 | value_end++; |
| 11477 | |
| 11478 | *value = value_start; |
| 11479 | *value_l = value_end - value_start; |
Willy Tarreau | 0013433 | 2011-01-04 14:57:34 +0100 | [diff] [blame] | 11480 | return value_end != value_start; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11481 | } |
| 11482 | |
| 11483 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11484 | smp_fetch_url_param(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Thierry FOURNIER | f41a809 | 2014-12-07 18:37:57 +0100 | [diff] [blame] | 11485 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11486 | { |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11487 | char delim = '?'; |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11488 | struct http_msg *msg; |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 11489 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11490 | if (!args || args[0].type != ARGT_STR || |
| 11491 | (args[1].type && args[1].type != ARGT_STR)) |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 11492 | return 0; |
| 11493 | |
| 11494 | CHECK_HTTP_MESSAGE_FIRST(); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11495 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11496 | msg = &strm->txn->req; |
| 11497 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11498 | if (args[1].type) |
| 11499 | delim = *args[1].data.str.str; |
| 11500 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 11501 | if (!find_url_param_value(msg->chn->buf->p + msg->sl.rq.u, msg->sl.rq.u_l, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 11502 | args->data.str.str, args->data.str.len, |
| 11503 | &smp->data.str.str, &smp->data.str.len, |
| 11504 | delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11505 | return 0; |
| 11506 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 11507 | smp->type = SMP_T_STR; |
| 11508 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 11509 | return 1; |
| 11510 | } |
| 11511 | |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 11512 | /* Return the signed integer value for the specified url parameter (see url_param |
| 11513 | * above). |
| 11514 | */ |
| 11515 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11516 | smp_fetch_url_param_val(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11517 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 11518 | { |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11519 | int ret = smp_fetch_url_param(px, sess, strm, opt, args, smp, kw, private); |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 11520 | |
| 11521 | if (ret > 0) { |
| 11522 | smp->type = SMP_T_UINT; |
| 11523 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 11524 | } |
| 11525 | |
| 11526 | return ret; |
| 11527 | } |
| 11528 | |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11529 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 11530 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 11531 | * This means that '*' will not be added, resulting in exactly the first Host |
| 11532 | * entry. If no Host header is found, then the path is used. The resulting value |
| 11533 | * is hashed using the url hash followed by a full avalanche hash and provides a |
| 11534 | * 32-bit integer value. This fetch is useful for tracking per-URL activity on |
| 11535 | * high-traffic sites without having to store whole paths. |
| 11536 | * this differs from the base32 functions in that it includes the url parameters |
| 11537 | * as well as the path |
| 11538 | */ |
| 11539 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11540 | smp_fetch_url32(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11541 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11542 | { |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11543 | struct http_txn *txn; |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11544 | struct hdr_ctx ctx; |
| 11545 | unsigned int hash = 0; |
| 11546 | char *ptr, *beg, *end; |
| 11547 | int len; |
| 11548 | |
| 11549 | CHECK_HTTP_MESSAGE_FIRST(); |
| 11550 | |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11551 | txn = strm->txn; |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11552 | ctx.idx = 0; |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 11553 | if (http_find_header2("Host", 4, txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11554 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
| 11555 | ptr = ctx.line + ctx.val; |
| 11556 | len = ctx.vlen; |
| 11557 | while (len--) |
| 11558 | hash = *(ptr++) + (hash << 6) + (hash << 16) - hash; |
| 11559 | } |
| 11560 | |
| 11561 | /* now retrieve the path */ |
Willy Tarreau | 877e78d | 2013-04-07 18:48:08 +0200 | [diff] [blame] | 11562 | end = txn->req.chn->buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11563 | beg = http_get_path(txn); |
| 11564 | if (!beg) |
| 11565 | beg = end; |
| 11566 | |
| 11567 | for (ptr = beg; ptr < end ; ptr++); |
| 11568 | |
| 11569 | if (beg < ptr && *beg == '/') { |
| 11570 | while (beg < ptr) |
| 11571 | hash = *(beg++) + (hash << 6) + (hash << 16) - hash; |
| 11572 | } |
| 11573 | hash = full_hash(hash); |
| 11574 | |
| 11575 | smp->type = SMP_T_UINT; |
| 11576 | smp->data.uint = hash; |
| 11577 | smp->flags = SMP_F_VOL_1ST; |
| 11578 | return 1; |
| 11579 | } |
| 11580 | |
| 11581 | /* This concatenates the source address with the 32-bit hash of the Host and |
| 11582 | * URL as returned by smp_fetch_base32(). The idea is to have per-source and |
| 11583 | * per-url counters. The result is a binary block from 8 to 20 bytes depending |
| 11584 | * on the source address length. The URL hash is stored before the address so |
| 11585 | * that in environments where IPv6 is insignificant, truncating the output to |
| 11586 | * 8 bytes would still work. |
| 11587 | */ |
| 11588 | static int |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11589 | smp_fetch_url32_src(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt, |
Willy Tarreau | 15e91e1 | 2015-04-04 00:52:09 +0200 | [diff] [blame] | 11590 | const struct arg *args, struct sample *smp, const char *kw, void *private) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11591 | { |
| 11592 | struct chunk *temp; |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 11593 | struct connection *cli_conn = objt_conn(sess->origin); |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11594 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 11595 | if (!smp_fetch_url32(px, sess, strm, opt, args, smp, kw, private)) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11596 | return 0; |
| 11597 | |
| 11598 | temp = get_trash_chunk(); |
| 11599 | memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint)); |
| 11600 | temp->len += sizeof(smp->data.uint); |
| 11601 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 11602 | switch (cli_conn->addr.from.ss_family) { |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11603 | case AF_INET: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 11604 | memcpy(temp->str + temp->len, &((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr, 4); |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11605 | temp->len += 4; |
| 11606 | break; |
| 11607 | case AF_INET6: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 11608 | memcpy(temp->str + temp->len, &((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, 16); |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 11609 | temp->len += 16; |
| 11610 | break; |
| 11611 | default: |
| 11612 | return 0; |
| 11613 | } |
| 11614 | |
| 11615 | smp->data.str = *temp; |
| 11616 | smp->type = SMP_T_BIN; |
| 11617 | return 1; |
| 11618 | } |
| 11619 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 11620 | /* This function is used to validate the arguments passed to any "hdr" fetch |
| 11621 | * keyword. These keywords support an optional positive or negative occurrence |
| 11622 | * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It |
| 11623 | * is assumed that the types are already the correct ones. Returns 0 on error, |
| 11624 | * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an |
| 11625 | * error message in case of error, that the caller is responsible for freeing. |
| 11626 | * The initial location must either be freeable or NULL. |
| 11627 | */ |
Thierry FOURNIER | 49f45af | 2014-12-08 19:50:43 +0100 | [diff] [blame] | 11628 | int val_hdr(struct arg *arg, char **err_msg) |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 11629 | { |
| 11630 | if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 11631 | memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY); |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 11632 | return 0; |
| 11633 | } |
| 11634 | return 1; |
| 11635 | } |
| 11636 | |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 11637 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 11638 | * adds an optional offset found in args[0] and emits a string representing |
| 11639 | * the date in RFC-1123/5322 format. |
| 11640 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 11641 | static int sample_conv_http_date(struct stream *stream, const struct arg *args, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 11642 | struct sample *smp, void *private) |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 11643 | { |
| 11644 | const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }; |
| 11645 | const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; |
| 11646 | struct chunk *temp; |
| 11647 | struct tm *tm; |
| 11648 | time_t curr_date = smp->data.uint; |
| 11649 | |
| 11650 | /* add offset */ |
| 11651 | if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT)) |
| 11652 | curr_date += args[0].data.sint; |
| 11653 | |
| 11654 | tm = gmtime(&curr_date); |
| 11655 | |
| 11656 | temp = get_trash_chunk(); |
| 11657 | temp->len = snprintf(temp->str, temp->size - temp->len, |
| 11658 | "%s, %02d %s %04d %02d:%02d:%02d GMT", |
| 11659 | day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year, |
| 11660 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
| 11661 | |
| 11662 | smp->data.str = *temp; |
| 11663 | smp->type = SMP_T_STR; |
| 11664 | return 1; |
| 11665 | } |
| 11666 | |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11667 | /* Match language range with language tag. RFC2616 14.4: |
| 11668 | * |
| 11669 | * A language-range matches a language-tag if it exactly equals |
| 11670 | * the tag, or if it exactly equals a prefix of the tag such |
| 11671 | * that the first tag character following the prefix is "-". |
| 11672 | * |
| 11673 | * Return 1 if the strings match, else return 0. |
| 11674 | */ |
| 11675 | static inline int language_range_match(const char *range, int range_len, |
| 11676 | const char *tag, int tag_len) |
| 11677 | { |
| 11678 | const char *end = range + range_len; |
| 11679 | const char *tend = tag + tag_len; |
| 11680 | while (range < end) { |
| 11681 | if (*range == '-' && tag == tend) |
| 11682 | return 1; |
| 11683 | if (*range != *tag || tag == tend) |
| 11684 | return 0; |
| 11685 | range++; |
| 11686 | tag++; |
| 11687 | } |
| 11688 | /* Return true only if the last char of the tag is matched. */ |
| 11689 | return tag == tend; |
| 11690 | } |
| 11691 | |
| 11692 | /* Arguments: The list of expected value, the number of parts returned and the separator */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 11693 | static int sample_conv_q_prefered(struct stream *stream, const struct arg *args, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 11694 | struct sample *smp, void *private) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11695 | { |
| 11696 | const char *al = smp->data.str.str; |
| 11697 | const char *end = al + smp->data.str.len; |
| 11698 | const char *token; |
| 11699 | int toklen; |
| 11700 | int qvalue; |
| 11701 | const char *str; |
| 11702 | const char *w; |
| 11703 | int best_q = 0; |
| 11704 | |
| 11705 | /* Set the constant to the sample, because the output of the |
| 11706 | * function will be peek in the constant configuration string. |
| 11707 | */ |
| 11708 | smp->flags |= SMP_F_CONST; |
| 11709 | smp->data.str.size = 0; |
| 11710 | smp->data.str.str = ""; |
| 11711 | smp->data.str.len = 0; |
| 11712 | |
| 11713 | /* Parse the accept language */ |
| 11714 | while (1) { |
| 11715 | |
| 11716 | /* Jump spaces, quit if the end is detected. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11717 | while (al < end && isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11718 | al++; |
| 11719 | if (al >= end) |
| 11720 | break; |
| 11721 | |
| 11722 | /* Start of the fisrt word. */ |
| 11723 | token = al; |
| 11724 | |
| 11725 | /* Look for separator: isspace(), ',' or ';'. Next value if 0 length word. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11726 | while (al < end && *al != ';' && *al != ',' && !isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11727 | al++; |
| 11728 | if (al == token) |
| 11729 | goto expect_comma; |
| 11730 | |
| 11731 | /* Length of the token. */ |
| 11732 | toklen = al - token; |
| 11733 | qvalue = 1000; |
| 11734 | |
| 11735 | /* Check if the token exists in the list. If the token not exists, |
| 11736 | * jump to the next token. |
| 11737 | */ |
| 11738 | str = args[0].data.str.str; |
| 11739 | w = str; |
| 11740 | while (1) { |
| 11741 | if (*str == ';' || *str == '\0') { |
| 11742 | if (language_range_match(token, toklen, w, str-w)) |
| 11743 | goto look_for_q; |
| 11744 | if (*str == '\0') |
| 11745 | goto expect_comma; |
| 11746 | w = str + 1; |
| 11747 | } |
| 11748 | str++; |
| 11749 | } |
| 11750 | goto expect_comma; |
| 11751 | |
| 11752 | look_for_q: |
| 11753 | |
| 11754 | /* Jump spaces, quit if the end is detected. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11755 | while (al < end && isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11756 | al++; |
| 11757 | if (al >= end) |
| 11758 | goto process_value; |
| 11759 | |
| 11760 | /* If ',' is found, process the result */ |
| 11761 | if (*al == ',') |
| 11762 | goto process_value; |
| 11763 | |
| 11764 | /* If the character is different from ';', look |
| 11765 | * for the end of the header part in best effort. |
| 11766 | */ |
| 11767 | if (*al != ';') |
| 11768 | goto expect_comma; |
| 11769 | |
| 11770 | /* Assumes that the char is ';', now expect "q=". */ |
| 11771 | al++; |
| 11772 | |
| 11773 | /* Jump spaces, process value if the end is detected. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11774 | while (al < end && isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11775 | al++; |
| 11776 | if (al >= end) |
| 11777 | goto process_value; |
| 11778 | |
| 11779 | /* Expect 'q'. If no 'q', continue in best effort */ |
| 11780 | if (*al != 'q') |
| 11781 | goto process_value; |
| 11782 | al++; |
| 11783 | |
| 11784 | /* Jump spaces, process value if the end is detected. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11785 | while (al < end && isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11786 | al++; |
| 11787 | if (al >= end) |
| 11788 | goto process_value; |
| 11789 | |
| 11790 | /* Expect '='. If no '=', continue in best effort */ |
| 11791 | if (*al != '=') |
| 11792 | goto process_value; |
| 11793 | al++; |
| 11794 | |
| 11795 | /* Jump spaces, process value if the end is detected. */ |
Willy Tarreau | 506c69a | 2014-07-08 00:59:48 +0200 | [diff] [blame] | 11796 | while (al < end && isspace((unsigned char)*al)) |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 11797 | al++; |
| 11798 | if (al >= end) |
| 11799 | goto process_value; |
| 11800 | |
| 11801 | /* Parse the q value. */ |
| 11802 | qvalue = parse_qvalue(al, &al); |
| 11803 | |
| 11804 | process_value: |
| 11805 | |
| 11806 | /* If the new q value is the best q value, then store the associated |
| 11807 | * language in the response. If qvalue is the biggest value (1000), |
| 11808 | * break the process. |
| 11809 | */ |
| 11810 | if (qvalue > best_q) { |
| 11811 | smp->data.str.str = (char *)w; |
| 11812 | smp->data.str.len = str - w; |
| 11813 | if (qvalue >= 1000) |
| 11814 | break; |
| 11815 | best_q = qvalue; |
| 11816 | } |
| 11817 | |
| 11818 | expect_comma: |
| 11819 | |
| 11820 | /* Expect comma or end. If the end is detected, quit the loop. */ |
| 11821 | while (al < end && *al != ',') |
| 11822 | al++; |
| 11823 | if (al >= end) |
| 11824 | break; |
| 11825 | |
| 11826 | /* Comma is found, jump it and restart the analyzer. */ |
| 11827 | al++; |
| 11828 | } |
| 11829 | |
| 11830 | /* Set default value if required. */ |
| 11831 | if (smp->data.str.len == 0 && args[1].type == ARGT_STR) { |
| 11832 | smp->data.str.str = args[1].data.str.str; |
| 11833 | smp->data.str.len = args[1].data.str.len; |
| 11834 | } |
| 11835 | |
| 11836 | /* Return true only if a matching language was found. */ |
| 11837 | return smp->data.str.len != 0; |
| 11838 | } |
| 11839 | |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11840 | /* This function executes one of the set-{method,path,query,uri} actions. It |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11841 | * takes the string from the variable 'replace' with length 'len', then modifies |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11842 | * the relevant part of the request line accordingly. Then it updates various |
| 11843 | * pointers to the next elements which were moved, and the total buffer length. |
| 11844 | * It finds the action to be performed in p[2], previously filled by function |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11845 | * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal |
| 11846 | * error, though this can be revisited when this code is finally exploited. |
| 11847 | * |
| 11848 | * 'action' can be '0' to replace method, '1' to replace path, '2' to replace |
| 11849 | * query string and 3 to replace uri. |
| 11850 | * |
| 11851 | * In query string case, the mark question '?' must be set at the start of the |
| 11852 | * string by the caller, event if the replacement query string is empty. |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11853 | */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11854 | int http_replace_req_line(int action, const char *replace, int len, |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 11855 | struct proxy *px, struct stream *s) |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11856 | { |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 11857 | struct http_txn *txn = s->txn; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11858 | char *cur_ptr, *cur_end; |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11859 | int offset = 0; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11860 | int delta; |
| 11861 | |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11862 | switch (action) { |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11863 | case 0: // method |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 11864 | cur_ptr = s->req.buf->p; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11865 | cur_end = cur_ptr + txn->req.sl.rq.m_l; |
| 11866 | |
| 11867 | /* adjust req line offsets and lengths */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11868 | delta = len - offset - (cur_end - cur_ptr); |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11869 | txn->req.sl.rq.m_l += delta; |
| 11870 | txn->req.sl.rq.u += delta; |
| 11871 | txn->req.sl.rq.v += delta; |
| 11872 | break; |
| 11873 | |
| 11874 | case 1: // path |
| 11875 | cur_ptr = http_get_path(txn); |
| 11876 | if (!cur_ptr) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 11877 | cur_ptr = s->req.buf->p + txn->req.sl.rq.u; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11878 | |
| 11879 | cur_end = cur_ptr; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 11880 | while (cur_end < s->req.buf->p + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?') |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11881 | cur_end++; |
| 11882 | |
| 11883 | /* adjust req line offsets and lengths */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11884 | delta = len - offset - (cur_end - cur_ptr); |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11885 | txn->req.sl.rq.u_l += delta; |
| 11886 | txn->req.sl.rq.v += delta; |
| 11887 | break; |
| 11888 | |
| 11889 | case 2: // query |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11890 | offset = 1; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 11891 | cur_ptr = s->req.buf->p + txn->req.sl.rq.u; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11892 | cur_end = cur_ptr + txn->req.sl.rq.u_l; |
| 11893 | while (cur_ptr < cur_end && *cur_ptr != '?') |
| 11894 | cur_ptr++; |
| 11895 | |
| 11896 | /* skip the question mark or indicate that we must insert it |
| 11897 | * (but only if the format string is not empty then). |
| 11898 | */ |
| 11899 | if (cur_ptr < cur_end) |
| 11900 | cur_ptr++; |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11901 | else if (len > 1) |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11902 | offset = 0; |
| 11903 | |
| 11904 | /* adjust req line offsets and lengths */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11905 | delta = len - offset - (cur_end - cur_ptr); |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11906 | txn->req.sl.rq.u_l += delta; |
| 11907 | txn->req.sl.rq.v += delta; |
| 11908 | break; |
| 11909 | |
| 11910 | case 3: // uri |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 11911 | cur_ptr = s->req.buf->p + txn->req.sl.rq.u; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11912 | cur_end = cur_ptr + txn->req.sl.rq.u_l; |
| 11913 | |
| 11914 | /* adjust req line offsets and lengths */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11915 | delta = len - offset - (cur_end - cur_ptr); |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11916 | txn->req.sl.rq.u_l += delta; |
| 11917 | txn->req.sl.rq.v += delta; |
| 11918 | break; |
| 11919 | |
| 11920 | default: |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11921 | return -1; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11922 | } |
| 11923 | |
| 11924 | /* commit changes and adjust end of message */ |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11925 | delta = buffer_replace2(s->req.buf, cur_ptr, cur_end, replace + offset, len - offset); |
Thierry FOURNIER | 7f6192c | 2015-04-26 18:01:40 +0200 | [diff] [blame] | 11926 | txn->req.sl.rq.l += delta; |
| 11927 | txn->hdr_idx.v[0].len += delta; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11928 | http_msg_move_end(&txn->req, delta); |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11929 | return 0; |
| 11930 | } |
| 11931 | |
| 11932 | /* This function executes one of the set-{method,path,query,uri} actions. It |
| 11933 | * builds a string in the trash from the specified format string. It finds |
| 11934 | * the action to be performed in p[2], previously filled by function |
| 11935 | * parse_set_req_line(). The replacement action is excuted by the function |
| 11936 | * http_action_set_req_line_exec(). It always returns 1. If an error occurs |
| 11937 | * the action is canceled, but the rule processing continue. |
| 11938 | */ |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 11939 | int http_action_set_req_line(struct http_req_rule *rule, struct proxy *px, struct stream *s) |
Thierry FOURNIER | b77aece | 2015-03-14 13:55:46 +0100 | [diff] [blame] | 11940 | { |
| 11941 | chunk_reset(&trash); |
| 11942 | |
| 11943 | /* If we have to create a query string, prepare a '?'. */ |
| 11944 | if (*(int *)&rule->arg.act.p[2] == 2) |
| 11945 | trash.str[trash.len++] = '?'; |
| 11946 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, (struct list *)&rule->arg.act.p[0]); |
| 11947 | |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 11948 | http_replace_req_line(*(int *)&rule->arg.act.p[2], trash.str, trash.len, px, s); |
Thierry FOURNIER | 01c3012 | 2015-03-14 14:14:47 +0100 | [diff] [blame] | 11949 | return 1; |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 11950 | } |
| 11951 | |
| 11952 | /* parse an http-request action among : |
| 11953 | * set-method |
| 11954 | * set-path |
| 11955 | * set-query |
| 11956 | * set-uri |
| 11957 | * |
| 11958 | * All of them accept a single argument of type string representing a log-format. |
| 11959 | * The resulting rule makes use of arg->act.p[0..1] to store the log-format list |
| 11960 | * head, and p[2] to store the action as an int (0=method, 1=path, 2=query, 3=uri). |
| 11961 | * It returns 0 on success, < 0 on error. |
| 11962 | */ |
| 11963 | int parse_set_req_line(const char **args, int *orig_arg, struct proxy *px, struct http_req_rule *rule, char **err) |
| 11964 | { |
| 11965 | int cur_arg = *orig_arg; |
| 11966 | |
| 11967 | rule->action = HTTP_REQ_ACT_CUSTOM_CONT; |
| 11968 | |
| 11969 | switch (args[0][4]) { |
| 11970 | case 'm' : |
| 11971 | *(int *)&rule->arg.act.p[2] = 0; |
| 11972 | rule->action_ptr = http_action_set_req_line; |
| 11973 | break; |
| 11974 | case 'p' : |
| 11975 | *(int *)&rule->arg.act.p[2] = 1; |
| 11976 | rule->action_ptr = http_action_set_req_line; |
| 11977 | break; |
| 11978 | case 'q' : |
| 11979 | *(int *)&rule->arg.act.p[2] = 2; |
| 11980 | rule->action_ptr = http_action_set_req_line; |
| 11981 | break; |
| 11982 | case 'u' : |
| 11983 | *(int *)&rule->arg.act.p[2] = 3; |
| 11984 | rule->action_ptr = http_action_set_req_line; |
| 11985 | break; |
| 11986 | default: |
| 11987 | memprintf(err, "internal error: unhandled action '%s'", args[0]); |
| 11988 | return -1; |
| 11989 | } |
| 11990 | |
| 11991 | if (!*args[cur_arg] || |
| 11992 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 11993 | memprintf(err, "expects exactly 1 argument <format>"); |
| 11994 | return -1; |
| 11995 | } |
| 11996 | |
| 11997 | LIST_INIT((struct list *)&rule->arg.act.p[0]); |
| 11998 | proxy->conf.args.ctx = ARGC_HRQ; |
| 11999 | parse_logformat_string(args[cur_arg], proxy, (struct list *)&rule->arg.act.p[0], LOG_OPT_HTTP, |
| 12000 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 12001 | proxy->conf.args.file, proxy->conf.args.line); |
| 12002 | |
| 12003 | (*orig_arg)++; |
| 12004 | return 0; |
| 12005 | } |
| 12006 | |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 12007 | /* |
| 12008 | * Return the struct http_req_action_kw associated to a keyword. |
| 12009 | */ |
| 12010 | struct http_req_action_kw *action_http_req_custom(const char *kw) |
| 12011 | { |
| 12012 | if (!LIST_ISEMPTY(&http_req_keywords.list)) { |
| 12013 | struct http_req_action_kw_list *kw_list; |
| 12014 | int i; |
| 12015 | |
| 12016 | list_for_each_entry(kw_list, &http_req_keywords.list, list) { |
| 12017 | for (i = 0; kw_list->kw[i].kw != NULL; i++) { |
| 12018 | if (!strcmp(kw, kw_list->kw[i].kw)) |
| 12019 | return &kw_list->kw[i]; |
| 12020 | } |
| 12021 | } |
| 12022 | } |
| 12023 | return NULL; |
| 12024 | } |
| 12025 | |
| 12026 | /* |
| 12027 | * Return the struct http_res_action_kw associated to a keyword. |
| 12028 | */ |
| 12029 | struct http_res_action_kw *action_http_res_custom(const char *kw) |
| 12030 | { |
| 12031 | if (!LIST_ISEMPTY(&http_res_keywords.list)) { |
| 12032 | struct http_res_action_kw_list *kw_list; |
| 12033 | int i; |
| 12034 | |
| 12035 | list_for_each_entry(kw_list, &http_res_keywords.list, list) { |
| 12036 | for (i = 0; kw_list->kw[i].kw != NULL; i++) { |
| 12037 | if (!strcmp(kw, kw_list->kw[i].kw)) |
| 12038 | return &kw_list->kw[i]; |
| 12039 | } |
| 12040 | } |
| 12041 | } |
| 12042 | return NULL; |
| 12043 | } |
| 12044 | |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 12045 | /************************************************************************/ |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12046 | /* All supported ACL keywords must be declared here. */ |
| 12047 | /************************************************************************/ |
| 12048 | |
| 12049 | /* Note: must not be declared <const> as its list will be overwritten. |
| 12050 | * Please take care of keeping this list alphabetically sorted. |
| 12051 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 12052 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12053 | { "base", "base", PAT_MATCH_STR }, |
| 12054 | { "base_beg", "base", PAT_MATCH_BEG }, |
| 12055 | { "base_dir", "base", PAT_MATCH_DIR }, |
| 12056 | { "base_dom", "base", PAT_MATCH_DOM }, |
| 12057 | { "base_end", "base", PAT_MATCH_END }, |
| 12058 | { "base_len", "base", PAT_MATCH_LEN }, |
| 12059 | { "base_reg", "base", PAT_MATCH_REG }, |
| 12060 | { "base_sub", "base", PAT_MATCH_SUB }, |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 12061 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12062 | { "cook", "req.cook", PAT_MATCH_STR }, |
| 12063 | { "cook_beg", "req.cook", PAT_MATCH_BEG }, |
| 12064 | { "cook_dir", "req.cook", PAT_MATCH_DIR }, |
| 12065 | { "cook_dom", "req.cook", PAT_MATCH_DOM }, |
| 12066 | { "cook_end", "req.cook", PAT_MATCH_END }, |
| 12067 | { "cook_len", "req.cook", PAT_MATCH_LEN }, |
| 12068 | { "cook_reg", "req.cook", PAT_MATCH_REG }, |
| 12069 | { "cook_sub", "req.cook", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12070 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12071 | { "hdr", "req.hdr", PAT_MATCH_STR }, |
| 12072 | { "hdr_beg", "req.hdr", PAT_MATCH_BEG }, |
| 12073 | { "hdr_dir", "req.hdr", PAT_MATCH_DIR }, |
| 12074 | { "hdr_dom", "req.hdr", PAT_MATCH_DOM }, |
| 12075 | { "hdr_end", "req.hdr", PAT_MATCH_END }, |
| 12076 | { "hdr_len", "req.hdr", PAT_MATCH_LEN }, |
| 12077 | { "hdr_reg", "req.hdr", PAT_MATCH_REG }, |
| 12078 | { "hdr_sub", "req.hdr", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12079 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12080 | /* these two declarations uses strings with list storage (in place |
| 12081 | * of tree storage). The basic match is PAT_MATCH_STR, but the indexation |
| 12082 | * and delete functions are relative to the list management. The parse |
| 12083 | * and match method are related to the corresponding fetch methods. This |
| 12084 | * is very particular ACL declaration mode. |
| 12085 | */ |
| 12086 | { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth }, |
| 12087 | { "method", NULL, PAT_MATCH_STR, pat_parse_meth, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_meth }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12088 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12089 | { "path", "path", PAT_MATCH_STR }, |
| 12090 | { "path_beg", "path", PAT_MATCH_BEG }, |
| 12091 | { "path_dir", "path", PAT_MATCH_DIR }, |
| 12092 | { "path_dom", "path", PAT_MATCH_DOM }, |
| 12093 | { "path_end", "path", PAT_MATCH_END }, |
| 12094 | { "path_len", "path", PAT_MATCH_LEN }, |
| 12095 | { "path_reg", "path", PAT_MATCH_REG }, |
| 12096 | { "path_sub", "path", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12097 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12098 | { "req_ver", "req.ver", PAT_MATCH_STR }, |
| 12099 | { "resp_ver", "res.ver", PAT_MATCH_STR }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12100 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12101 | { "scook", "res.cook", PAT_MATCH_STR }, |
| 12102 | { "scook_beg", "res.cook", PAT_MATCH_BEG }, |
| 12103 | { "scook_dir", "res.cook", PAT_MATCH_DIR }, |
| 12104 | { "scook_dom", "res.cook", PAT_MATCH_DOM }, |
| 12105 | { "scook_end", "res.cook", PAT_MATCH_END }, |
| 12106 | { "scook_len", "res.cook", PAT_MATCH_LEN }, |
| 12107 | { "scook_reg", "res.cook", PAT_MATCH_REG }, |
| 12108 | { "scook_sub", "res.cook", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12109 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12110 | { "shdr", "res.hdr", PAT_MATCH_STR }, |
| 12111 | { "shdr_beg", "res.hdr", PAT_MATCH_BEG }, |
| 12112 | { "shdr_dir", "res.hdr", PAT_MATCH_DIR }, |
| 12113 | { "shdr_dom", "res.hdr", PAT_MATCH_DOM }, |
| 12114 | { "shdr_end", "res.hdr", PAT_MATCH_END }, |
| 12115 | { "shdr_len", "res.hdr", PAT_MATCH_LEN }, |
| 12116 | { "shdr_reg", "res.hdr", PAT_MATCH_REG }, |
| 12117 | { "shdr_sub", "res.hdr", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12118 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12119 | { "url", "url", PAT_MATCH_STR }, |
| 12120 | { "url_beg", "url", PAT_MATCH_BEG }, |
| 12121 | { "url_dir", "url", PAT_MATCH_DIR }, |
| 12122 | { "url_dom", "url", PAT_MATCH_DOM }, |
| 12123 | { "url_end", "url", PAT_MATCH_END }, |
| 12124 | { "url_len", "url", PAT_MATCH_LEN }, |
| 12125 | { "url_reg", "url", PAT_MATCH_REG }, |
| 12126 | { "url_sub", "url", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12127 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 12128 | { "urlp", "urlp", PAT_MATCH_STR }, |
| 12129 | { "urlp_beg", "urlp", PAT_MATCH_BEG }, |
| 12130 | { "urlp_dir", "urlp", PAT_MATCH_DIR }, |
| 12131 | { "urlp_dom", "urlp", PAT_MATCH_DOM }, |
| 12132 | { "urlp_end", "urlp", PAT_MATCH_END }, |
| 12133 | { "urlp_len", "urlp", PAT_MATCH_LEN }, |
| 12134 | { "urlp_reg", "urlp", PAT_MATCH_REG }, |
| 12135 | { "urlp_sub", "urlp", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12136 | |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 12137 | { /* END */ }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 12138 | }}; |
| 12139 | |
| 12140 | /************************************************************************/ |
| 12141 | /* All supported pattern keywords must be declared here. */ |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 12142 | /************************************************************************/ |
| 12143 | /* Note: must not be declared <const> as its list will be overwritten */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 12144 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12145 | { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12146 | { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12147 | { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 12148 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 12149 | /* capture are allocated and are permanent in the stream */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12150 | { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRQHP }, |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 12151 | |
| 12152 | /* retrieve these captures from the HTTP logs */ |
| 12153 | { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 12154 | { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 12155 | { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 12156 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12157 | { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRSHP }, |
Willy Tarreau | 3c1b5ec | 2014-04-24 23:41:57 +0200 | [diff] [blame] | 12158 | { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 12159 | |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12160 | /* cookie is valid in both directions (eg: for "stick ...") but cook* |
| 12161 | * are only here to match the ACL's name, are request-only and are used |
| 12162 | * for ACL compatibility only. |
| 12163 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12164 | { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 12165 | { "cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12166 | { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12167 | { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12168 | |
| 12169 | /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are |
| 12170 | * only here to match the ACL's name, are request-only and are used for |
| 12171 | * ACL compatibility only. |
| 12172 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12173 | { "hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12174 | { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12175 | { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 12176 | { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12177 | |
Willy Tarreau | 0a0daec | 2013-04-02 22:44:58 +0200 | [diff] [blame] | 12178 | { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12179 | { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12180 | { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 12181 | { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12182 | { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 49ad95c | 2015-01-19 15:06:26 +0100 | [diff] [blame] | 12183 | { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12184 | |
| 12185 | /* HTTP protocol on the request path */ |
| 12186 | { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12187 | { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12188 | |
| 12189 | /* HTTP version on the request path */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12190 | { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 12191 | { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12192 | |
| 12193 | /* HTTP version on the response path */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12194 | { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 12195 | { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12196 | |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12197 | /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12198 | { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12199 | { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12200 | { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12201 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12202 | { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 12203 | { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12204 | { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12205 | { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12206 | { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 12207 | { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12208 | { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12209 | |
| 12210 | /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12211 | { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12212 | { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12213 | { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12214 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12215 | { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 12216 | { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12217 | { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12218 | { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12219 | { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
Willy Tarreau | eb27ec7 | 2015-02-20 13:55:29 +0100 | [diff] [blame] | 12220 | { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 12221 | { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12222 | |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12223 | /* scook is valid only on the response and is used for ACL compatibility */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12224 | { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12225 | { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12226 | { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12227 | { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */ |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12228 | |
| 12229 | /* shdr is valid only on the response and is used for ACL compatibility */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12230 | { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12231 | { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12232 | { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
| 12233 | { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV }, |
| 12234 | |
| 12235 | { "status", smp_fetch_stcode, 0, NULL, SMP_T_UINT, SMP_USE_HRSHP }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12236 | { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 12237 | { "url32", smp_fetch_url32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12238 | { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12239 | { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 12240 | { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 12241 | { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 12242 | { "urlp" , smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 12243 | { "urlp_val", smp_fetch_url_param_val, ARG2(1,STR,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 12244 | { /* END */ }, |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 12245 | }}; |
| 12246 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 12247 | |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 12248 | /************************************************************************/ |
| 12249 | /* All supported converter keywords must be declared here. */ |
| 12250 | /************************************************************************/ |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 12251 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 12252 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
Thierry FOURNIER | ad90351 | 2014-04-11 17:51:01 +0200 | [diff] [blame] | 12253 | { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_T_STR}, |
| 12254 | { "language", sample_conv_q_prefered, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_T_STR}, |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 12255 | { NULL, NULL, 0, 0, 0 }, |
| 12256 | }}; |
| 12257 | |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 12258 | /************************************************************************/ |
| 12259 | /* All supported http-request action keywords must be declared here. */ |
| 12260 | /************************************************************************/ |
| 12261 | struct http_req_action_kw_list http_req_actions = { |
| 12262 | .scope = "http", |
| 12263 | .kw = { |
| 12264 | { "set-method", parse_set_req_line }, |
| 12265 | { "set-path", parse_set_req_line }, |
| 12266 | { "set-query", parse_set_req_line }, |
| 12267 | { "set-uri", parse_set_req_line }, |
Willy Tarreau | cb703b0 | 2015-04-03 09:52:01 +0200 | [diff] [blame] | 12268 | { NULL, NULL } |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 12269 | } |
| 12270 | }; |
| 12271 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 12272 | __attribute__((constructor)) |
| 12273 | static void __http_protocol_init(void) |
| 12274 | { |
| 12275 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 12276 | sample_register_fetches(&sample_fetch_keywords); |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 12277 | sample_register_convs(&sample_conv_kws); |
Willy Tarreau | a0dc23f | 2015-01-22 20:46:11 +0100 | [diff] [blame] | 12278 | http_req_keywords_register(&http_req_actions); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 12279 | } |
| 12280 | |
| 12281 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 12282 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 12283 | * Local variables: |
| 12284 | * c-indent-level: 8 |
| 12285 | * c-basic-offset: 8 |
| 12286 | * End: |
| 12287 | */ |